* {
    margin: 0;
    padding: 0;
}

html{
    scroll-behavior: smooth;

    width: 100%;
    overflow-x: hidden !important;
    overflow-y: scroll;
    height: 100vh;
}

.thankyou__html{
    overflow-y: unset;
    height: unset;
}

.html__loaded{

}

body{
    width: 100%;
}

.wrapper{
    font-family: 'Muli', Helvetica, Arial, Lucid, sans-serif;
    overflow-x: hidden;
    max-height: 100vh;
}

.wrapper__thankyou{
    min-height: 100vh;
}

.wrapper__loaded{
    max-height: unset;
}

a {
    text-decoration: none;
    color: #000;
}

.container{
    margin: 0 auto;
    width: 1240px;
}

/* Header */


.header{
    position: fixed;
    top: 0;
    display: flex;
    width: 100%;
    padding: 25px 0;
    z-index: 99;
    transition: .5s all;
}

.header__scroll-show{
    transition: .5s all;
    background: rgba(255, 255, 255, .9);
    border-bottom: 1px solid #dfdacb;
    padding: 15px 0;
}

.logo{
    fill: #fff;
    width: 113px;
    height: 50px;
    transition-delay: .2s;
    transition: .3s all;
    cursor: pointer;
}

.header__scroll-show .logo:hover{
    opacity: .65;
    transition: .3s all;
}

.header__scroll-show .phone__desc, .header__scroll-show .phone__link{
    color: #000;
    transition: .5s all;
}

.header__scroll-show .logo{
    fill: #000;
    transition: .5s all;
}

.header__container{
    display: flex;
    justify-content: space-between;
}

.header__right{
    display: flex;
    align-items: center;
}

.social__link:hover > img{
    transform: scale(1.2);
    transition: transform .25s cubic-bezier(.445,.05,.55,.95);
}

.social__link > img{
    transition: transform .325s cubic-bezier(.445,.05,.55,.95);
}

.phone__desc{
    color: #fff;
    font-size: 14px;
    transition-delay: .2s;
    transition: .3s all;
}

.phone__link{
    font-size: 21px;
    color: #fff;
    margin-top: 5px;
    transition-delay: .2s;
    transition: .3s all;
    position: relative;
}

.phone__link:hover:after {
    transform: scaleX(1);
}
.phone__link:after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #FF8970;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .9s cubic-bezier(.86,0,.07,1);
}

.social{
    margin-right: 90px;
}

.whatsapp{
    margin: 0 25px;
}

/* ThankYou */

.thankyou{
    height: 100vh;
    background: url("../img/Questions BG.png") 50% 50% no-repeat;
    background-size: cover;
    background-position: right;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.thankyou__title{
    color: #fff;
    font-size: 40px;
    line-height: 50px;
    margin: 20px 0;
}

.thankyou__text{
    color: #fff;
    font-size: 16px;
    line-height: 24px;
}

/* Preloader */

.preloader__one{
    height: 100vh;
    width: 100%;
    background: #000;
    position: absolute;
    transform: translate(0, 0%);

    z-index: 5;
}

.preloader__logo{
    width: 220px;
    fill: #fff;
    z-index: 3;
    position: relative;
}

.preloader__figure{
    height: 400px;
    width: 400px;
    border-radius: 50%;

    transform: scale(.1);

    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;
}

.preloader__figure-bg{
    content: '';
    background: linear-gradient(283.51deg, #A4012D 7.54%, #DE2626 92.34%);
    position: absolute;
    height: 100%;
    width: 100%;
    border-radius: 50%;
}

.preloader__two-run .preloader__figure{
    transform: scale(1);
    /*transition: 1.5s all;*/
    transition: transform 2.5s cubic-bezier(.86,0,.07,1);
}

.preloader__two-run .preloader__figure-last > .preloader__figure-bg{
    border-radius: 36px;
    animation: wobble 3s ease-in-out alternate infinite;
}

@keyframes wobble {
    0%{
        border-radius: 50%;
        transform: rotate(0);
    }

    50% {
        border-radius: 133px;
        transform: rotate(90deg);
    }
    100% {
        border-radius: 36px;
        transform: rotate(360deg);
    }
}

.preloader__two-run .preloader__figure-scale{
    border-radius: 36px;
    animation: preloaderFirst 1s cubic-bezier(.86,0,.07,1) normal forwards;
}

.preloader__two-run .preloader__figure-scale > .preloader__figure-bg{
    border-radius: unset;
    animation: scaller 1s cubic-bezier(.86,0,.07,1) normal forwards;
}

.preloader__two-run .preloader__figure-scale > .preloader__logo{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes scaller {
    from{
        border-radius: 36px;
    }

    to{
        border-radius: 0px;
    }
}


@keyframes preloaderFirst {
    from{
        height: 400px;
        width: 400px;
    }

    to{
        height: 100%;
        width: 100%;
    }
}

.preloader__two{
    height: 100vh;
    width: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 4;
    position: absolute;
    transform: translate(0, 100%);
}

.preloader__container{
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: fixed;
    z-index: 999;
    background: #fff;
}

.preloader__container-finish{
    opacity: 0;
    transition: .7s cubic-bezier(.445,.05,.55,.95);
}

.preloader__two-run{
    transform: translate(0, 0%);
    transition: 1s all;
}


.preloader__one-run{
    transform: translate(0, -100%);
    transition: 1s all;
}

/* First */

.first{
    min-height: 1080px;
    background: url("../img/First BG.png") 50% 50% no-repeat;
    background-size: cover;
    position: relative;
}

.first__wrapper{
    padding-top: 165px;
    position: relative;
    z-index: 3;
}

.first__h1{
    font-size: 58px;
    line-height: 73px;
    width: 820px;
    color: #fff;
}

.orange__span{
    color: #ff787a;
}

.first__h1 span{
    display: block;
}

.first__bonus-predesc{
    margin-top: 70px;
    margin-bottom: 50px;
    color: #fff;
    font-size: 24px;
    line-height: 28px;
}

.first__bonus-text{
    width: 245px;
    margin-top: 10px;
    font-size: 18px;
    line-height: 23px;
    color: #fff;
}

.first__bonus-container{
    display: flex;
    margin-bottom: 65px;
}

.first__bonus-item{
    width: 245px;
}

.first__bonus-item:nth-child(2){
    margin: 0 30px;
}

.button{
    border-radius: 56px;
    font-size: 22px;
    line-height: 28px;
    font-weight: bold;
    color: #fff;
    padding: 18px 36px;

    display: flex;
    flex-direction: column;
    align-items: center;
    width: 410px;
    overflow: hidden;

    position: relative;
}

.button > div{
    position: relative;
    z-index: 3;
}

.button:before{
    content: '';
    position: absolute;
    background: linear-gradient(283.51deg, #A4012D 7.54%, #DE2626 92.34%);
    width: 200%;
    height: 200%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0);
}

.button:hover:before{
    -webkit-animation-name: rotate;
    -webkit-animation-duration: 1s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: rotate;
    -moz-animation-duration: 1s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
}

/*@-webkit-keyframes rotate {*/
/*    0% {-webkit-transform: translate(-50%, -50%)}*/
/*    50% {-webkit-transform: translate(0%, -50%)}*/
/*    100% {-webkit-transform: translate(-50%, -50%)}*/
/*}*/

@-webkit-keyframes rotate {
    0% {
        width: 200%;
        opacity: 1;
    }
    50% {
        width: 100%;
        opacity: .7;
    }
    100% {
        width: 200%;
        opacity: 1;
    }
}

.button span{
    font-size: 16px;
    line-height: 20px;
    color: #fff;
    font-weight: normal;
    position: relative;
    z-index: 3;
}

.first__facts-container{
    display: flex;
    margin-top: 50px;
}

.first__facts-item{
    display: flex;
    align-items: center;
    color: #FF8970;
    width: 280px;
}

.first__facts-big{
    margin-right: 25px;
    font-size: 58px;
    line-height: 73px;
    color: #FF8970;
    display: flex;
}

.first__factstext{
    font-size: 18px;
    line-height: 23px;
    color: #FF8970;
    font-weight: bold;
}

.first__factstext span{
    display: block;
}

.first__facts-item:nth-child(2){
    margin: 0 45px;
}

.first__pic{
    position: absolute;
    right: 0;
    top: 0;
}

.first__pic-photo{
    position: relative;
    z-index: 2;
    width: 100%;
}

.first__pic-instagram-link{
    position: absolute;
    z-index: 3;
    right: 330px;
    bottom: 50px;
}

.first__pic-instagram-container{
    position: relative;
    height: 100%;
    width: 100%;
}

.first__pic-instagram-icon{
    width: 100%;
}

/* Hello */

.hello{
    background: url('../img/Edu BG.png') 50% 50% no-repeat;
    background-size: cover;
    min-height: 2016px;
}

.hello__round{
    background: url("../img/hello__round.svg") 50% 50% no-repeat;
    background-size: cover;
    min-height: 1099px;
}

.hello__title{
    font-weight: bold;
    font-size: 58px;
    line-height: 73px;
    width: 540px;
}

.hello__title span{
    color: #D62625;
}

.hello__top{
    display: flex;
    justify-content: space-between;
    margin-top: 130px;
    background: #fff;
}

.hello__desc{
    font-size: 24px;
    line-height: 30px;
    width: 460px;
}

.hello__facts{
    display: flex;
    justify-content: space-between;
    margin-top: 135px;
}

.hello__facts__item{
    width: 290px;
}

.hello__facts-pic{
    height: 110px;
    width: 110px;
    margin-bottom: 50px;
}

.hello__facts-text{
    font-size: 18px;
    line-height: 23px;
}

.hello__edu{
    margin-top: 240px;
}

.hello__edu-wrapper{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.hello__edu-item{
    width: 470px;
    display: flex;
}

.hello__edu-item:nth-child(2){
    margin: 45px 0;
}

.hello__edu-img{
    width: 60px;
    height: 60px;
    margin-right: 20px;
}

.hello_edu-text{
    font-size: 24px;
    line-height: 28px;
    color: #FFFFFF;
}

/* Work */

.work{
    margin: 200px 0;
    position: relative;
    opacity: 1 !important;
    transform: translate3d(0, 0, 0) scale(1) !important;
}

.work:before{
    content: '';
    position: absolute;
    background: url('../img/work-round-gradient.svg') 50% 50% no-repeat;
    width: 1500px;
    height: 1500px;
    right: -120px;
    top: 325px;

    transform: translate3d(100px, 0, 0);
    opacity: 0;
    transition-property: opacity, transform;
    transition: 1s all;

}

.work.aos-animate::before {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    transition: 1s all;
 }

.work__title{
    font-size: 58px;
    line-height: 73px;
    margin-bottom: 60px;
}

.work__item-title{
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 15px;
    font-weight: bold;
}

.work__item-title span{
    white-space: nowrap;
}

.work__item-desc{
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 55px;
    color: #D62625;
}

.work__item-text{
    font-size: 18px;
    line-height: 23px;
    width: 380px;
}

.work__item-textoid{
    width: 475px;
    padding-top: 130px
}

.work__item{
    display: flex;
}

.work__item:nth-child(2){
    margin: 120px 0 80px 0;
}

.work__item:nth-child(2) .work__item-title, .work__item:nth-child(2) .work__item-text{
    color: #fff;
}

.work__item:nth-child(2) .work__item-desc{
    color: #FF8970;

}

.work__left, .work__right{
    width: 50%;
}

.work__img{
    width: 585px;
}

.work__right .work__item-textoid{
    margin: 0 auto;
}

.work__container{
    position: relative;
    z-index: 3;
}

.work__photo-item{
    position: relative;
}

.work__photo-1-round{
    width: 90px;
    height: 90px;
    background: linear-gradient(272.78deg, #A4012D 7.54%, #DE2626 92.34%);
    border-radius: 50%;

    position: absolute;
    bottom: 0;
    right: 20%;
}

.work__photo-2-round-up{
    background: linear-gradient(272.78deg, #A4012D 7.54%, #DE2626 92.34%);
    width: 116px;
    height: 116px;
    border-radius: 50%;
    position: absolute;
    top: -25px;
    left: 10%;
    z-index: 4;
}

.work__img-2{
    z-index: 3;
    position: relative;
}

.work__photo-2-round-down{
    background: linear-gradient(272.78deg, #A4012D 7.54%, #DE2626 92.34%);
    width: 179px;
    height: 179px;
    border-radius: 50%;
    position: absolute;
    bottom: -10px;
    right: 60px;
}

.work__img-3{
    position: relative;
    z-index: 3;
}

.work__photo-3-round-down{
    top: -5%;
    right: 20%;
    width: 144px;
    height: 144px;
    background: linear-gradient(272.78deg, #A4012D 7.54%, #DE2626 92.34%);
    border-radius: 50%;
    position: absolute;
}

/* Ticker */

.course__targets-h2{
    font-size: 58px;
    line-height: 73px;
    margin-bottom: 150px;
    font-weight: bold;
}

.course__targets{
    margin-bottom: 150px;
}

.ticker__text{
    font-weight: bold;
    font-size: 26px;
    line-height: 33px;
    padding: 42px 55px;
    border-radius: 90px;
    color: #fff;
    background: linear-gradient(274.51deg, #A4012D 7.54%, #DE2626 92.34%);
    text-align: center;

    display: flex;
    align-items: center;
    justify-content: center;
}

.round{
    width: 150px;
    height: 150px;
    margin: 0 30px;
    border-radius: 50%;
}

.round__with-border{
    height: 122px;
    width: 122px;
}

.round__purple{
    border: 14px solid #862F49;
}

.round__orange{
    border: 14px solid #FF8970;
}

.round__red{
    background: #DD2627;
}

.round__rose{
    background: #C04E6D;
}

.round__red-onborder{
    border: 14px solid #DF2626;
}

.round__purple-gradient{
    background: linear-gradient(#862F49 0%, #051125 100%);
    position: relative;
}

.round__purple-gradient:before{
    content: '';
    height: 122px;
    width: 122px;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.ticker, .ticker__reverse {
    display: flex;
}

/* Ticker Mechanical */

.ticker__wrapper {
    position: relative;
    width: 100%;
    height: 150px;
    overflow-x: hidden;
}

.ticker__wrapper:before{
    content: '';
    background: linear-gradient(89.85deg, rgba(255, 255, 255, 0.77) 12.81%, rgba(255, 255, 255, 0) 74.27%);
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    height: 100%;
    z-index: 11;
}

.ticker__wrapper:after{
    content: '';
    background: linear-gradient(-89.85deg, rgba(255, 255, 255, 0.77) 12.81%, rgba(255, 255, 255, 0) 74.27%);
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    height: 100%;
    z-index: 11;
}

.ticker__wrapper-reverse{
    margin-top: 45px;
}

.ticker {
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    animation: marquee 35s linear infinite;
}

.ticker__reverse{
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    right: 0;
    animation: marqueeReverse 15s linear infinite;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes marqueeReverse {
    from { transform: translateX(0); }
    to { transform: translateX(50%); }
}


/* Attention */

.attention{
    background: url('../img/Attention BG.png') 50% 50% no-repeat;
    padding: 100px 0 140px 0;
}

.attention__top{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.attention__title{
    font-size: 54px;
    line-height: 68px;
    color: #fff;
    margin-bottom: 70px;
}

.attention__desc{
    font-size: 54px;
    line-height: 68px;
    color: #fff;
    margin-bottom: 70px;
    width: 865px;
}

.attention__time{
    color: #ff787a;
}

.attention__facts-container{
    margin-top: 120px;
    display: flex;
    justify-content: space-between;
}

.attention__fact{
    width: 320px;
}

.attention__fact-title{
    color: #fff;
    font-size: 58px;
    line-height: 73px;
    font-weight: bold;
}

.attention__fact-title span{
    font-size: 26px;
    line-height: 33px;
    color: #fff;
    font-weight: bold;
}

.attention__fact-text{
    margin-top: 10px;
    font-size: 18px;
    line-height: 23px;
    color: #fff;
}

.review{
    width: 1074px;
    height: 1074px;
    border-radius: 50%;
    background: #fff;
    margin: 0 auto;
    margin-top: 210px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.review__container{
    padding: 165px 255px 174px 288px;
}

.review__title{
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 30px;
}

.review__text{
    font-size: 18px;
    line-height: 23px;
    margin-bottom: 70px;
}

.review__person{
    font-size: 18px;
    line-height: 23px;
    color: #FD876C;
    margin-bottom: 70px;
}

.review__more{
    display: flex;
    align-items: center;
    transition: .5s all;
}

.review__more__text span{
    transition: .5s all;
}

.review__more:hover .review__more__text span{
    color: #d72127;
    transition: .5s all;
}

.review__more .review__more-icon{
    transform: scale(1);
    transition: .5s all;
}

.review__more:hover .review__more-icon{
    transform: scale(.7);
    transition: .5s all;
}

.review__quote{
    margin-bottom: 15px;
}

.review__more__text{
    font-size: 18px;
    line-height: 21px;
    margin-left: 15px;
}

.review__more__text span{
    font-weight: bold;
    text-decoration: underline;
}

/* Instagram */

.instagram{
    margin: 180px 0 160px 0;
}

.instagram__title{
    font-weight: bold;
    font-size: 58px;
    line-height: 73px;

    margin-bottom: 30px;
}

.instagram__desc{
    font-size: 24px;
    line-height: 30px;
    color: #FF787A;
    width: 1040px;
    margin-bottom: 90px;
}

/* Questions */

.questions{
    background: url("../img/Questions BG.png") 50% 50% no-repeat;
    min-height: 1255px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: right;
}

.questions__wrapper{
    width: 1101px;
    height: 1080px;
    background: url("../img/questions-rounds.svg") 50% 50% no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;

    position: relative;
    z-index: 3;
}

.questions__wrapper-global{
    position: relative;
}

.questions__round{
    position: absolute;
    background: linear-gradient(272.78deg, #A4012D 7.54%, #DE2626 92.34%);
    border-radius: 50%;
    width: 427px;
    height: 427px;
    left: 10%;
    bottom: -2%;
}

.questions__content{
    width: 660px;
    margin-top: 175px;
}

.questions__title{
    font-size: 58px;
    line-height: 73px;
}

.questions__top{
    border-bottom: 1px solid #000;
    padding: 25px 35px;
}

.questions__toptext{
    font-size: 18px;
    line-height: 23px;
    position: relative;
}

.questions__toptext-img{
    width: 17px;
    height: 17px;
}

.questions__items-container{
    margin-top: 60px;
}

.questions__top{
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.questions__toptext-icon{
    width: 17px;
    height: 17px;
    fill: #000;
}

.questions__top:hover .questions__toptext-icon{
    fill: #ff787a;
    transition: .3s all;
}

.questions__toptext-icon-toggled{
    fill: #ff787a;
    transform: rotate(45deg);
}

.answer__item{
    overflow: hidden;
    display: none;
    padding: 25px 30px;
    background: #F9EDF0;
    border-bottom: 1px solid #000;
}

.answer__item-text{
    width: 500px;
    font-size: 18px;
    line-height: 23px;
}

/* Form */

.form{
    margin: 200px 0 110px 0;
}

.form__info-item-enterme{
    margin: 60px 0;
}

.form__title-contact{
    font-weight: bold;
    font-size: 53px;
    line-height: 62px;
    margin-bottom: 125px;
}

.form__title-contact-mob{
    display: none;
}

.form__info-desc{
    font-size: 24px;
    line-height: 30px;
}

.form__info-link{
    font-weight: bold;
    font-size: 26px;
    line-height: 38px;
}

.form__info-link:hover .form__link-address-1:after {
    transform: scaleX(1);
}

.form__info-link:hover .form__link-address-2:after {
    transform: scaleX(1);
    transition-delay: .5s;
}

.form__info-link:hover .form__link-address-3:after {
    transform: scaleX(1);
    transition-delay: 1s;
}

.form__link-address{
    position: relative;
}

.form__link-address:after{
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #FF8970;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .9s cubic-bezier(.86,0,.07,1);
}

.form__info-link-mob{
    position: relative;
}

.form__info-link-mob:after{
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #FF8970;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .9s cubic-bezier(.86,0,.07,1);
}

.form__info-link-mob:hover::after {
    transform: scaleX(1);
}

.form__info-item{
    width: 375px;
}

.form__info-item:nth-child(3){
    margin-top: 60px;
    margin-bottom: 45px;
}

.form__left, .form__right{
    width: 50%;
}

.form__container{
    position: relative;
}

.form__round{
    width: 115px;
    height: 115px;
    background: linear-gradient(272.78deg, #A4012D 7.54%, #DE2626 92.34%);
    position: absolute;
    top: 5%;
    right: 10%;
    border-radius: 50%;
}

.form__wrapper{
    display: flex;
}

.form__right{
    background: url("../img/Send Form - Background.png") 50% 50% no-repeat;
    background-size: contain;
    height: 712px;
    width: 712px;
    z-index: 3;
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;
}

.form__title{
    font-weight: bold;
    font-size: 40px;
    line-height: 50px;
    color: #fff;
    margin-bottom: 45px;
}

.send-form-all{
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 3;
}

.form__input{
    background: unset;
    border: 1px solid #fff;
    font-size: 18px;
    color: #fff;
    padding: 15px 20px;
    resize: vertical;
    transition: .3s all;
}

.f-message{
    max-height: 150px;
    min-height: 50px;
}

.form__input-used{
    border-color: #FF8970;
    background: rgba(0, 0, 0, .5);
    transition: .3s all;
}

.form__input::placeholder{
    color: #fff;
}

.f-phone{
    margin: 30px 0;
}

.send-form-button{
    margin: 0 auto;
    margin-top: 50px;

    border-radius: 56px;
    font-size: 18px;
    line-height: 23px;
    color: #fff;
    padding: 18px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: unset;
    position: relative;
    overflow: hidden;
    background: transparent;
    cursor: pointer;
}

.send-form-button > span{
    position: relative;
    z-index: 3;
}

.send-form-button:before{
    content: '';
    position: absolute;
    background: linear-gradient(283.51deg, #A4012D 7.54%, #DE2626 92.34%);
    width: 200%;
    height: 200%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0);
}

.send-form-button:hover:before{
    -webkit-animation-name: rotate;
    -webkit-animation-duration: 1s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: rotate;
    -moz-animation-duration: 1s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
}

.send-form-main-success{

    color: #fff;
    flex-direction: column;
    align-items: center;
    text-align: center;

    display: flex;
}

.send-form-success-wrapper{
    display: none;
    transform: translate3d(100px, 0, 0) scale(.6);
    opacity: 0;
    transition-property: opacity, transform;
    position: relative;
    z-index: 50;
}

.send-form-main-success-anim{
    display: flex;
    transition: 10s all;
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.send-form-success-text{
    font-size: 18px;
}

.send-form-success-title{
    font-size: 36px;
    margin: 20px 0;
}

/* Footer */

.footer{
    background: linear-gradient(352.74deg, #862F49 7.32%, #051125 89.94%);
}

.footer__wrapper{
    display: flex;
    justify-content: space-between;
    padding: 40px 0;
}

.footer__copy{
    font-size: 18px;
    line-height: 23px;
    margin-right: 30px;
    color: #fff;
}

.footer__bigly{
    font-size: 18px;
    line-height: 23px;
    margin-left: 30px;
    color: #fff;
    position: relative;
}

.footer__bigly:hover::after {
    transform: scaleX(1);
}
.footer__bigly:after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .9s cubic-bezier(.86,0,.07,1);
}

.first__mob-img-container{
    display: none;
    position: relative;
}

.first__mob-round{
    border-radius: 50%;
    width: 51px;
    height: 51px;
    background: linear-gradient(272.78deg, #A4012D 7.54%, #DE2626 92.34%);
    left: 15%;
    bottom: 5%;
    position: absolute;
}

.form__info-desc-writeme{
    display: none;
}

/* Media */

@media (max-width: 1920px) {
    .first__pic {
        width: 38%;
    }

    .work:before{
        background-size: contain;
        width: 75%;
        height: 75%;
    }
}

@media (max-width: 1600px) {
    .first__pic{
        width: 40%;
        right: -5%;
    }

    .first__pic-instagram-link{
        right: 35%;
        bottom: 0%;
    }

    .first__pic-instagram-container{
        position: unset;
    }
}

@media (max-width: 1400px) {
    .container{
        width: 90%;
    }

    .first__h1{
        width: 55%;
        font-size: 38px;
        line-height: 46px;
    }

    .first__bonus-predesc{
        font-size: 20px;
        line-height: 24px;
    }

    .first__bonus-text{
        font-size: 16px;
        line-height: 21px;
    }

    .hello__title{
        font-size: 38px;
        line-height: 46px;
    }

    .hello__title span{
        display: block;
    }

    .hello__desc{
        font-size: 21px;
        line-height: 24px;
        width: 50%;
    }

    .hello__facts__item{
        width: 30%;
    }

    .hello__facts-pic{
        width: 80px;
        height: 80px;
    }

    .hello__facts-text{
        font-size: 16px;
        line-height: 21px;
    }

    .hello__round{
        min-height: 860px;
    }

    .hello{
        min-height: 1650px;
    }

    .hello__edu-item{
        width: 50%;
        align-items: center;
    }

    .hello_edu-text{
        font-size: 18px;
        line-height: 24px;
    }

    .hello__edu-img{
        width: 40px;
        height: 40px;
    }

    .work{
        margin: 100px 0 150px 0;
    }

    .work__right .work__item-textoid{
        width: 50%;
    }

    .work__item-textoid{
        width: 60%;
    }

    .attention__fact-title{
        font-size: 48px;
        line-height: 54px;
    }

    .attention__fact-text{
        margin-top: 20px;
        font-size: 16px;
        line-height: 24px;
    }

    .attention{
        background-size: cover;
    }

    .review__title{
        font-size: 28px;
        line-height: 34px;
    }

    .review__text{
        font-size: 16px;
        line-height: 24px;
    }

    .questions__title{
        font-size: 48px;
        line-height: 54px;
    }

    .answer__item-text{
        width: 80%;
        font-size: 16px;
        line-height: 24px;
    }

    .form__title-contact{
        font-size: 42px;
        line-height: 48px;
        margin-bottom: 155px;

    }

    .form__info-link{
        font-size: 21px;
        line-height: 28px;
    }

    .form__info-desc{
        margin-bottom: 10px;
    }

    .first{
        min-height: unset;
        padding-bottom: 120px;
    }

    .orange__span{

    }

    .first__h1 span{
        display: inline-block;
    }

    .social{
        margin-right: 40px;
    }
}

@media (max-width: 1240px) {
    .first__bonus-item{
        width: 21%;
    }

    .first__bonus-text{
        font-size: 15px;
        line-height: 18px;
        width: 100%;
    }

    .first__facts-item{
        width: 27%;
    }

    .first__factstext{
        font-size: 16px;
        line-height: 21px;
    }

    .work__item-title{
        font-size: 28px;
        line-height: 36px;
    }

    .work__item-desc{
        font-size: 18px;
        line-height: 26px;
    }

    .work__item-text{
        font-size: 16px;
        line-height: 23px;
    }

    .work__img{
        width: 90%;
    }

    .work:before{
        top: 225px;
    }

    .attention__title, .attention__desc{
        font-size: 42px;
        line-height: 56px;
    }

    .attention__fact{
        width: 28%;
    }

    .instagram__title{
        font-size: 42px;
        line-height: 48px;
    }

    .instagram__desc{
        font-size: 18px;
        line-height: 24px;
        width: 80%;
    }

    .footer__bigly{
        font-size: 16px;
        line-height: 23px;
    }

    .first__pic-instagram-link{
        width: 60px;
    }
}

@media (max-width: 1140px) {
    .form__info-desc-writeme{
        display: block;
    }

    .first__facts-container{
        justify-content: space-between;
    }

    .first__facts-big{
        font-size: 48px;
        line-height: 56px;
    }

    .first__facts-item{
        width: 30%;
    }

    .first__facts-item:nth-child(2){
        margin: 0 25px;
    }

    .first__facts-pic{
        width: 60px;
    }

    .hello__desc{
        font-size: 18px;
    }

    .hello__edu{
        margin-top: 100px;
    }

    .hello__round{
        min-height: 800px;
    }

    .hello{
        min-height: 1450px;
    }

    .course__targets-h2{
        font-size: 42px;
        line-height: 48px;
    }

    .ticker__text{
        font-size: 18px;
        line-height: 24px;
        padding: 31px 55px;
    }

    .round{
        width: 110px;
        height: 110px;
    }

    .round__purple-gradient:before{
        height: 82px;
        width: 82px;
    }

    .round__with-border{
        height: 82px;
        width: 82px;
    }

    .ticker__wrapper{
        height: 110px;
    }

    .course__targets-h2{
        margin-bottom: 75px;
    }

    .course__targets{
        margin-bottom: 75px;
    }

    .attention__desc{
        width: 100%;
    }

    .work__title{
        font-size: 42px;
        line-height: 48px;
    }

    .work__item-textoid{
        padding-top: 30px;
        width: 90%;
    }

    .work__item-text{
        width: 100%;
    }

    .work__right .work__item-textoid{
        width: 90%;
    }

    .review__content{
        width: 50%;
        padding: 10%;
    }

    .review__container{
        padding: unset;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .review__text{
        margin-bottom: 30px;
    }

    .review__person{
        margin-bottom: 40px;
        font-size: 14px;
    }

    .review__more-icon{
        width: 60px;
    }

    .review__more__text{
        font-size: 16px;
        line-height: 18px;
    }

    .review{
        width: 820px;
        height: 820px;
    }

    .questions__wrapper{
        width: 801px;
        height: 786px;
    }

    .questions__title{
        font-size: 30px;
        line-height: 34px;

        width: 60%;
        text-align: center;
        margin: 0 auto;
    }

    .questions__content{
        width: auto;
        margin-top: 100px;
    }

    .questions__content{
        width: 70%;
    }

    .questions__items-container{
        width: 70%;
        margin: 0 auto;
        margin-top: 70px;
    }

    .questions__item{
        width: 100%;
    }

    .answer__item{
        width: calc(100% - 60px);
    }

    .questions__top{
        width: calc(100% - 40px);
        align-items: center;
        padding: 20px 20px;
    }

    .questions__toptext{
        font-size: 14px;
        line-height: 18px;
    }

    .answer__item-text{
        font-size: 14px;
        line-height: 18px;
        width: 100%;
    }

    .form__wrapper{
        flex-direction: column-reverse;
    }

    .form__left, .form__right{
        width: 100%;
    }

    .form__info-content{
        width: 100%;
        display: flex;
        justify-content: space-around;
    }

    .form__info-item-enterme{
        margin: unset;
    }

    .form__info-item{
        width: 28%;
    }

    .form{
        margin-top: 100px;
    }

    .form__title-contact{
        margin-bottom: 55px;
    }

    .social__form{
        margin-right: unset;
    }

    .form__info-link{
        font-size: 16px;
        line-height: 21px;
    }

    .form__title-contact{
        display: none;
    }

    .form__title-contact-mob{
        display: block;

        text-align: center;
        font-size: 36px;
        line-height: 42px;
        margin-bottom: 80px;
    }

    .form__info-content{
        margin-top: 60px;
    }

    .social__form > img{
        width: 21px;
        height: 21px;
    }

    .form__info-desc{
        margin-bottom: 20px;
    }

    .social__form .whatsapp{
        margin: 0 15px;
    }

    .footer__copy{
        font-size: 16px;
        line-height: 21px;
    }

    .footer__bigly{
        font-size: 14px;
        line-height: 16px;
    }

    .footer__wrapper{
        padding: 30px 0;
    }

    .form__round{
        top: 5%;
        right: 20%;
    }
}

@media (max-width: 970px) {
    .form__round{
        right: 18%;
    }
}

@media (max-width: 920px) {

    .first__facts-container{
        display: none;
    }

    .first__wrapper{
        display: flex;
        flex-direction: column;
    }

    .first__bonus-predesc{
        order: 4;

        margin-top: 80px;
        margin-bottom: 30px;
    }

    .first__bonus-container{
        order: 5;
    }

    .first__bonus-item{
        width: 33%;
    }

    .first__h1{
        margin-bottom: 70px;
        font-size: 34px;
        line-height: 42px;
    }

    .first{
        padding-bottom: 30px;
    }

    .button{
        padding: 12px 24px;
        font-size: 18px;
        line-height: 24px;
        width: 350px;
    }

    .button span{
        font-size: 14px;
        line-height: 18px;
    }

    .first__bonus-text{
        width: 90%;
    }

    .first__bonus-predesc{
        font-size: 18px;
        line-height: 24px;
    }

    .hello__top{
        margin-top: 80px;
    }

    .hello__desc{
        font-size: 16px;
        line-height: 21px;
    }

    .hello__facts{
        flex-direction: column;
    }

    .hello__facts__item{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hello__facts{
        margin-top: 55px;
    }

    .hello__facts-pic{
        margin-bottom: unset;
    }

    .hello__facts__item{
        margin-bottom: 60px;
    }

    .hello__facts-text{
        width: 60%;
        margin-left: 60px;
    }

    .hello{
        background-size: contain;
        background-position: bottom;
        min-height: unset;
        padding-bottom: 70px;
    }

    .hello_edu-text{
        font-size: 16px;
        line-height: 21px;
    }

    .hello__edu-item:nth-child(2){
        margin: 65px 0;
    }

    .work:before{
        top: 280px;
        right: -80px;
    }

    .work__item-title{
        font-size: 24px;
        line-height: 28px;
    }

    .work__item-text{
        font-size: 16px;
        line-height: 18px;
    }

    .course__targets-h2{
        font-size: 32px;
        line-height: 38px;
    }

    .attention__title, .attention__desc{
        font-size: 38px;
        line-height: 46px;
    }

    .attention__fact-title{
        font-size: 36px;
        line-height: 42px;
    }

    .attention__facts-container{
        flex-direction: column;
        width: 70%;
        margin: 0 auto;
        margin-top: 80px;
        align-items: center;
        text-align: center;
    }

    .attention__fact:nth-child(2){
        margin: 60px 0;
    }

    .attention__fact{
        width: 60%;
    }

    .instagram__desc{
        font-size: 14px;
        line-height: 18px;
        width: 90%;
        margin-bottom: 40px;
    }

    .instagram{
        margin-top: 90px;
        margin-bottom: 100px;
    }

    .questions__wrapper{
        width: 700px;
        height: 687px;
    }

    .questions__content{
        margin-top: 60px;
    }

    .questions__items-container{
        margin-top: 60px;
    }

    .questions__title{
        font-size: 24px;
        line-height: 28px;
    }

    .questions__top{
        padding: 18px 20px;
    }

    .answer__item-text{
        width: 100%;
    }

    .answer__item{
        padding: 15px 30px;
    }

    .questions{
        min-height: unset;
        padding: 150px 0;
        background-position: right;
        background-size: cover;
    }

    .form__info-link{
        font-size: 14px;
        line-height: 18px;
    }

    .form__round{
        right: 15%;
    }
}

@media (max-width: 860px) {
    .first__pic{
        width: 45%;
    }

    .work__photo-2-round-down{
        width: 129px;
        height: 129px;
    }

    .work__photo-2-round-up{
        width: 86px;
        height: 86px;
    }

    .questions__round{
        left: 0;
    }

    .form__round{
        right: 10%;
    }


}

@media (max-width: 760px) {
    .hello__top{
        flex-direction: column;
        padding-top: 80px;
    }

    .hello__desc{
        margin-top: 40px;
        width: 100%;
    }

    .hello__facts{
        width: 85%;
        margin: 0 auto;
        padding: 75px 0;
    }

    .hello__facts-text{
        width: unset;
    }

    .hello__top{
        width: 85%;
        margin: 0 auto;
    }

    .hello__edu-item{
        width: 58%;
    }

    .attention__facts-container{
        width: 90%;
    }

    .review__title{
        font-size: 21px;
        line-height: 24px;
    }

    .review{
        width: 740px;
        height: 740px;
    }

    .review__text{
        font-size: 14px;
        line-height: 18px;
    }

    .questions__container-global{
        width: 100%;
    }

    .questions__wrapper{
        width: 100%;
        height: 786px;
    }

    .questions__items-container{
        width: 85%;
    }

    .questions__title{
        font-size: 32px;
        line-height: 38px;
        width: 65%;
    }

    .questions__content{
        margin-top: 120px;
    }

    .header .social{
        margin-right: 30px;
    }

    .first__h1{
        font-size: 28px;
        line-height: 36px;
    }

    .work__item{
        flex-direction: column-reverse;
    }

    .work__left, .work__right{
        width: 100%;
    }

    .work__item:nth-child(2){
        flex-direction: column;
    }

    .work:before{
        width: 125%;
        height: 110%;
    }

    .questions__content{
        width: 100%;
        position: relative;
        z-index: 2;
        margin-top: 90px;
    }

    .questions__wrapper{
        height: 800px;
        background: unset;
        position: relative;
    }

    .questions__wrapper:before{
        content: '';
        position: absolute;
        background: #fff;
        border-radius: 50%;
        background-size: cover;
        min-height: 840px;
        min-width: 840px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
    }

    .form__right{
        background: unset;
        position: relative;
    }

    .form__right:before{
        content: '';
        position: absolute;
        background: url("../img/Send Form - Background.png") 50% 50% no-repeat;
        background-size: contain;
        height: 100%;
        width: 115%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
    }

    .social__form img{
        width: 30px;
        height: 30px;
    }

    .social__form .whatsapp {
        margin: 0 45px;
    }

    .form__info-content{
        margin-top: 10%;
    }

    .form__info-item-enterme{
        margin-top: 50px;
    }

    .form__info-link {
        font-size: 16px;
        line-height: 24px;
    }

    .form__info-desc{
        margin-bottom: 10px;
    }

    .form__info-content{
        flex-direction: column;
    }

    .form__info-desc-writeme{
        display: none;
    }

    .form__info-item-callme{
        order: 2;
    }

    .form__info-item-enterme{
        order: 3;
    }

    .form__info-item{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .social__form{
        width: 100%;
        order: 1;

        margin-bottom: 50px;
        justify-content: center;
        display: flex;
    }

    .form{
        margin-bottom: 50px;
    }

    .form__round{
        right: 5%;
    }
}

@media (max-width: 640px) {
    .first__wrapper{
        padding-top: 90px;
    }

    .preloader__figure{
        width: 200px;
        height: 200px;
    }

    .preloader__logo{
        width: 120px;
    }

    @keyframes preloaderFirst {
        from{
            height: 200px;
            width: 200px;
        }

        to{
            height: 100%;
            width: 100%;
        }
    }

    @keyframes wobble {
        0%{
            border-radius: 50%;
            transform: rotate(0);
        }

        50% {
            border-radius: 54px;
            transform: rotate(90deg);
        }
        100% {
            border-radius: 36px;
            transform: rotate(360deg);
        }
    }


    .form__right:before{
        background-size: cover;
    }

    .first__bonus-container {
        flex-direction: column;
    }

    .header .phone {
        display: none;
    }

    .header .social {
        margin-right: unset;
    }

    .round {
        width: 90px;
        height: 90px;
    }

    .round__purple-gradient:before {
        height: 62px;
        width: 62px;
    }

    .round__with-border {
        height: 62px;
        width: 62px;
    }

    .ticker__text {
        padding: 21px 55px;
    }

    .ticker__wrapper {
        height: 90px;
    }

    .first__bonus-item {
        display: flex;
        align-items: center;
        width: 100%;
    }

    .first__bonus-item:nth-child(2) {
        margin: 30px 0;
    }

    .first__bonus-text {
        margin-left: 20px;
        margin-top: unset;
        width: 70%;
    }

    .first__pic {
        display: none;
    }

    .first__h1 {
        margin-bottom: 30px;
        width: 100%;
        text-align: center;
        font-size: 25px;
        line-height: 30px;
    }

    .first__mob-img-container {
        display: block;
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 30px;
    }

    .first__mob-img {
        display: block;
        width: 80%;
    }

    .first__mob-img > img {
        width: 100%;
    }

    .button {
        margin: 0 auto;
    }

    .hello {
        background-image: url("../img/Edu BG Mobile.jpg");
        background-size: contain;
    }

    .hello__edu-item {
        width: 75%;
    }

    .work:before {
        height: 105%;
    }

    .attention__fact {
        width: 70%;
    }

    .review{
        width: 100%;
        height: unset;
    }

    .review__content{
        width: 100%;
        padding: unset;
    }

    .review{
        background: unset;
        border-radius: unset;
        position: relative;
    }

    .review__container{
        position: relative;
        z-index: 2;
    }

    .review:before{
        content: '';
        position: absolute;
        background: #fff;
        border-radius: 50%;
        min-height: 750px;
        min-width: 750px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
    }

    .attention{
        padding-bottom: 340px;
    }

    .attention__facts-container{
        padding-bottom: 110px;
    }

    .questions__title{
        width: 75%;
    }

    .thankyou img{
        width: 20%;
    }

    .thankyou__title{
        font-size: 21px;
        line-height: 26px;
    }

    .thankyou__text{
        font-size: 14px;
        line-height: 16px;
    }

    .form__round{
        right: 0%;
        top: 1%;
    }
}

@media (max-width: 500px) {
    .review:before{
        min-height: 700px;
        min-width: 700px;
    }

    .attention__facts-container{
        padding-bottom: unset;
    }

    .work:before{
        width: 160%;
        height: 100%;
    }

    .work__right .work__item-textoid{
        width: 100%;
    }

    .work__item-textoid{
        width: 100%;
    }

    .button{
        width: calc(100% - 48px);
        font-size: 16px;
    }

    .first__bonus-predesc{
        margin-top: 30px;
    }

    .hello{
        background-size: 140%;
    }

    .hello__title{
        font-size: 28px;
        line-height: 34px;
    }

    .hello__top{
        width: 100%;
    }

    .hello__facts-pic{
        width: 60px !important;
        height: 60px !important;
        margin-left: 15px;
    }

    .hello__facts{
        width: 100%;
    }

    .hello__facts-text{
        font-size: 14px;
        line-height: 18px;
        margin-left: 20px;
    }

    .attention__fact{
        width: 100%;
    }

    .form{
        margin-bottom: 50px;
    }

    .footer__wrapper{
        flex-direction: column-reverse;
        align-items: center;
    }

    .footer__bigly{
        margin: 10px 10px 20px 10px;
    }

    .footer__copy{
        margin: 0 10px 0 10px;
        font-size: 12px;
        line-height: 14px;
    }

    .questions__title{
        font-size: 28px;
        line-height: 32px;
        width: 90%;
    }

    .instagram__title{
        font-size: 28px;
        line-height: 34px;
    }

    .instagram__desc{
        font-size: 14px;
        line-height: 16px;
        width: 100%;
        margin-bottom: 40px;
    }

    .instagram{
        margin-bottom: 80px;
    }

    .work{
        margin-bottom: 80px;
        margin-top: 50px;
    }

    .work__item-desc{
        margin-bottom: 30px;
    }

    .work__item-title{
        margin-bottom: 15px;
    }

    .work__title{
        font-size: 32px;
        line-height: 36px;
    }

    .hello__edu-item{
        width: 100%;
    }

    .attention__title, .attention__desc{
        font-size: 28px;
        line-height: 32px;
    }

    .form__title{
        font-size: 36px;
        line-height: 42px;
    }

    .logo{
        width: 78px;
        height: 35px;
    }

    .header .social__link > img{
        height: 20px;
        width: 20px;
    }

    .whatsapp{
        margin: 0 15px;
    }

    .header__scroll-show{
        padding: 10px 0;
    }

    .attention__title{
        margin-bottom: 40px;
    }

    .attention__desc{
        margin-bottom: 40px;
    }

    .review__text{
        width: 100%;
    }

    .form__info-content{
        margin-top: 15%;
    }

    .questions__wrapper:before{
        min-height: 740px;
        min-width: 740px;
    }

    .questions__content{
        margin-top: 120px;
    }

    .form__title-contact-mob{
        font-size: 32px;
        line-height: 40px;
    }

    .form__round{
        right: -20px;
        top: -3%;
    }
}

@media (max-width: 360px) {
    .questions__title{
        width: 95%;
        font-size: 24px;
        line-height: 28px;
    }

    .preloader__figure{
        width: 150px;
        height: 150px;
    }

    @keyframes preloaderFirst {
        from{
            height: 150px;
            width: 150px;
        }

        to{
            height: 100%;
            width: 100%;
        }
    }

    .preloader__logo{
        height: 100px;
        width: 100px;
    }

    .form__title-contact-mob{
        font-size: 28px;
        line-height: 36px;
    }
}