.inscricao-header img{ max-width: 100%; width: 100%; }


.cortain-wrapper{
   display: none;
   position: fixed;
   background: #fff;
   width: 100%;
   height: 100%;
   top: 0px;
   left: 0px;
   bottom: 0px;
   right: 0px;
   z-index: 999999;
   overflow: hidden;
}
.cortain{
   background: rgb(255,238,0);
   background: linear-gradient(90deg, rgba(255,238,0,0) 0%, rgba(255,238,0,1) 10%, rgba(255,238,0,1) 100%);
   width: 200%;
   height: 150%;
   transform: skew(25deg);

   -webkit-transition: all 2.5s ease;
   -moz-transition: all 2.5s ease;
   -ms-transition: all 2.5s ease;
   -o-transition: all 2.5s ease;
   transition: all 2.5s ease;
}

.cortain-wrapper.active{ background: transparent; }
.cortain-wrapper.active .cortain{
   -moz-transform: translateX(30%) translateY(-15%);
   -webkit-transform: translateX(30%) translateY(-15%);
   -o-transform: translateX(30%) translateY(-15%);
   -ms-transform: translateX(30%) translateY(-15%);
   transform: translateX(30%) translateY(-15%);
   opacity: 0;
}