*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
svg:not(:root) {
    overflow: hidden;
}
body {
    color: rgba(0, 0, 0, .8);
    font-family: georgia, sans-serif;
    font-weight: 400;
    word-wrap: break-word;
    -webkit-font-kerning: normal;
    font-kerning: normal;
}
input {
    border: none;
    outline: none;
  }
.registration{
    align-items: center;
    display: flex;
    flex-direction: column;
    margin-top: 0px;
    gap: 30px;
    z-index: 2;
    width: -webkit-fill-available;
    max-width: 100%;
}
.success_msg{
    display: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-radius: 12px;
    background: #0E9E69;
    box-shadow: 0 10px 20px rgb(63 136 90 / 50%);
}
.success_msg.active{
    display: flex;
}
.form_container.active{
    display: none;
}
.success_msg_wrapper{
    border-radius: 12px;
    padding: 10px 10px;
    display: flex;
    gap: 10px;
    color: white;
    align-items: center;
    font-weight: 500;
    background: #0E9E69;
    font-size: 20px;
}
.timer_wrapper{
    background: rgb(250, 251, 255);
    height: 100%;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.content{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    /*width: 100%;*/
    height: 80vh;
    position: relative;
    z-index: 1;
}
.timer_container{
    display: flex;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    position: relative;
/*    margin-top: 120px;
    width: 45%;
    margin-right: 100px;*/
}
.timer_container h2{
    font-size: 40px;
    font-family: Roboto, serif;
    color: rgb(17, 35, 53);
    line-height: 56px;
    text-align: center;
    max-width: 700px;
    font-weight: 400;
    letter-spacing: -0.25px;
    margin-bottom: 60px;
    margin-top: 60px;
}
.timer_container h2 span{
    color: #01974E;
    font-weight: 600;
}
.timer_subtitle{
    margin-top: 15px;
    line-height: 1.3;
    font-size: 14px;
}
.timer_desc{
    position: relative;
    margin-bottom: 70px;
}
.clock{
    width: 600px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.part_of_clock{
    display: block;
    position: relative;
    width: 140px;
    height: auto;
    perspective-origin: 50% 50%;
    perspective: 300px;
    border-radius: 5px;
    background-color: rgb(250, 251, 255);
}
.card{
    align-items: flex-end;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    display: flex;
    position: relative;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.card span{
    font-size: 50px;
    font-family: Comfortaa;
    color: rgb(17, 35, 53);
    font-weight: bold;
    line-height: 1;
    text-align: center;
    letter-spacing: 0.025em;
}
.digit_label{
    font-size: 14px;
    font-family: Roboto;
    color: rgb(136, 155, 183);
    text-transform: uppercase;
    text-align: center;
    font-weight: 500;
    letter-spacing: 2px;
    margin-top: 12px;
}
.form_container{
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 100%;
    margin: 0;
    padding: 0;
    z-index: 2;
    width: -webkit-fill-available;
}
.field-wrapper{
    position: relative;
}
.field-wrapper input {
    background-color: rgb(239, 245, 249);
    border: transparent;
    height: 48px;
    font-family: Roboto;
    font-size: 18px;
    border-radius: 3px;
    padding-left: 30px;
    padding-right: 30px;
    width: -webkit-fill-available;
}
.form_container button {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    background-image: -webkit-linear-gradient(-31deg, rgb(250, 171, 75) 0%, rgb(246, 139, 59) 100%);
    padding: 13px 33px 15px 34px;
    height: 48px;
    transition: 0.5s;
    width: 50%;
    margin: 0 auto;
    color: white;
}
.form_container button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0.3), rgba(255,255,255,0.1), rgba(255,255,255,0.3));
    transform: skewX(-25deg);
}
.form_container button.shine::before {
    left: 125%;
    transition: left 0.7s ease-in-out;
}
.form_container h4{
    font-family: Roboto, serif;
    color: #363730;
}

.button{
    cursor: pointer;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    color: rgb(255, 255, 255);
    background-color: rgb(2, 132, 137);
    min-height: 48px;
    min-width: 48px;
    border-radius: 3px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    text-transform: capitalize;
    padding: 8px 15px;
    border: 0px;
}
.img_container{
    width: 55%;
    padding-top: 220px;
}
.img_container img{
    object-fit: contain;
    width: 100%;
    height: 100%;
    margin-bottom: -10px;
}
img{
    max-width: 100%;
    padding: 0;
    margin: 0 0 1.45rem;
}
.clouds{
    display: block;
}
.clouds img{
    animation-fill-mode: both;
    animation-duration: 1000ms;
    animation-delay: 400ms;
    animation-iteration-count: 1;
    opacity: 1;
}
.cloud1{
    animation-delay: 400ms;
    position: absolute;
    left: 10%;
    right: 0px;
    top: 120px;
    animation-name: react-reveal-971423831909953-1;
}
.cloud2{
    position: absolute;
    right: 40%;
    top: 16%;
    animation-delay: 800ms;
    animation-name: react-reveal-971423831909953-3;
}
.cloud3{
    animation-delay: 600ms;
    position: absolute;
    right: 3%;
    top: 28%;
    animation-name: react-reveal-971423831909953-2;
}
.bottom_animation{
    margin-top: auto;
}
.bottom_animation_wrapper{

    display: block;
    overflow: hidden;
}
.bottom_animation_wrapper img{
    animation-fill-mode: both;
    animation-duration: 1000ms;
    animation-delay: 0ms;
    animation-iteration-count: 1;
    opacity: 1;
}
.pice_left{
    position: absolute;
    left: 0%;
    bottom: -30px;
    animation-name: pice-1;
}
.pice_right{
    animation-name: pice-2;
    position: absolute;
    right: 0%;
    bottom: -30px;
}
.social_links{
    position: absolute;
    bottom: 0px;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    flex-direction: column;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 40px;
    padding-bottom: 40px;
}
.social_links_wrapper{
    position: relative;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    justify-content: center;
}
.social_profile_item{
    margin: 0px 9px;
    border-radius: 50%;
    background-color: rgb(239, 245, 249);
    width: 46px;
    height: 46px;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    transition: 0.5s;
    cursor: pointer;
}
.social_profile_item a{
    color: rgb(17, 35, 53);
    font-size: 17px;
    transition: 0.15s ease-in-out;
}
.social_profile_item:hover {
    background-color: rgb(17, 35, 53);
}
.social_profile_item:hover a {
    color: rgb(239, 245, 249);
}
.social_links p{
    margin-top: 10px;
    font-size: 14px;
    font-family: Roboto;
    color: rgb(142, 147, 154);
    line-height: 1.6;
    margin-bottom: 0px;
}
.logo_container{
    text-align: center;
    padding-top: 40px;
}
.logo_container > a img{
 margin: 0;
}

@keyframes pice-1{
    0% {
        opacity: 0;
        transform: translate3d(-100%, 0px, 0px);
    }
    100%{
        opacity: 1;
        transform: none;
    }
}
@keyframes pice-2{
    0% {
        opacity: 0;
        transform: translate3d(100%, 0px, 0px);
    }
    100%{
        opacity: 1;
        transform: none;
    }
}

@keyframes react-reveal-971423831909953-1{
    0% {
        opacity: 0;
        transform: translate3d(-100%, 0px, 0px);
    }
    100%{
        opacity: 1;
        transform: none;
    }
}
@keyframes react-reveal-971423831909953-2{
    0% {
        opacity: 0;
        transform: translate3d(100%, 0px, 0px);
    }
    100%{
        opacity: 1;
        transform: none;
    }
}
@keyframes react-reveal-971423831909953-3{
    0% {
        opacity: 0;
        transform: translate3d(0px, -100%, 0px);
    }
    100%{
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1620px) {
    .cloud3 {
        right: -6%;
    }
    .cloud1 {
        left: -6%;
    }
}
@media(max-width: 1600px){
    .logo_container{
        padding-top: 30px;
    }
    .social_links {
        padding-bottom: 30px;
    }
}
@media (max-width: 1440px) {
    .cloud3 {
        top: 15%;
        right: 3%;
    }
    .cloud1 {
        left: 10%;
    }
    .bottom_animation{
        display: none;
    }
    .timer_container h2, .card span{
        font-size: 36px;
        line-height: 48px;
    }
    .social_links{
        margin-top: 80px;
        position: relative;
        bottom: 0px;
    }
    .social_links p{
        margin-top: 15px;
    }
    .digit_label{
        margin-top: 5px;
    }
}
@media(max-width: 1200px){
    .clouds{
        display: none;
    }
    .timer_container{
        width: 50%;
        height: 100%;
        margin-top: 0px;
    }
    .img_container{
        width: 50%;
        padding-top: 120px;
    }
    .content{
        flex-direction: column;
    }
/*    .form_container{
        max-width: 50%;
    }*/
    .timer_container{
        width: 100%;
        margin-right: 0px;
        margin-top: 0px;
        height: 100%;
    }
    .img_container{
        width: 60%;
        padding-top: 0px;
        margin: 60px auto 0px;
    }
}
@media(max-width: 1099px){
    .timer_container{
        width: 100%;
        margin-right: 0px;
        margin-top: 0px;
        height: fit-content;
    }
    .timer_wrapper{
        justify-content: center;
    }
    .content{
        height: auto;
    }
    .social_links{
        position: relative;
        bottom: 0px;
        margin-top: 80px;
    }
}
@media(max-width: 768px){
    .timer_container h2, .card span {
        font-size: 30px;
        line-height: 40px;
    }
    .form_container {
        max-width: 90%;
    }
}
@media(max-width: 600px){
    .timer_wrapper {
        justify-content: space-around;
    }
    .content{
        height: 100%;
        width: 85%;
    }
    .timer_desc{
        width: 100%;
    }
    .clock{
        width: 100%;
    }
    .card{
        height: 50px;
    }
    .form_container {
       max-width: 100%;
        margin: 0px 0px 40px 0px;
    }
    .timer_container h2, .card span{
        font-size: 30px;
        line-height: 36px;
    }
    .digit_label{
        letter-spacing: 1px;
    }
    .timer_desc{
        margin-bottom: 45px;
    }
    .form_container{
        flex-direction: column;
        width: 100%;
    }
    .form_container button{
        margin-left: 0px;
        margin-top: 15px;
        width: 100%;
    }
    .registration{
        width: 100%;
    }
    .field-wrapper input{
        width: 100%;
    }
    .img_container {
        padding-top: 0px;
        width: 80%;
        margin-top: 40px;
    }
    .social_links{
        margin-top: 60px;
    }
   
}
@media(max-width: 575px){
    .registration{
        margin-bottom: 25px;
    }
}
@media(max-width: 480px){
    .timer_container h2{
        font-size: 24px;
        line-height: 30px;
        max-width: 100%;
        margin-top: 60px;
        margin-bottom: 30px;
    }
}
  
