@import "../reset.css";

html {
    scroll-behavior:smooth;
}
body{
    font-family: "Montserrat", sans-serif;
}
.container{
    max-width: 1590px;
    padding: 0 30px;
    margin: 0 auto;    
}


/*Burger-menu*/
.menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1000;
    position: relative;
}
.btn-line {
    width: 100%;
    height: 2px;
    background-color: black;
}
/*header-nav*/
header{
    background-color: #121b3a;
}
.header-nav-logo{
    width: 70px;
}
.header-nav-logo a img{
    transition: 0.3s linear;
}
.header-nav-logo a img:hover{
    filter: drop-shadow(0px 0px 15px rgba(255, 50, 40, 0.5));
}
.header-nav{
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 80px;
}
.nav ul li a{
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
    position: relative;
}
.nav ul li a::before{
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    transform-origin: left;
    transform: scaleX(0);
    transition: 0.3s linear;
}
.nav ul li a:hover::before{
    transform: scaleX(1);
}
/*header content*/
.header__content{
    background-color: #121b3a;
}
.header__content__block{
    padding-top: 60px;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.header__content__title h1{
    font-size: min(6rem, 6vw);
    font-family: "Nunito", sans-serif;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 60px;
}
.header__content__flex{
   font-weight: 600;
   font-size: 24px;
   color: #fff;
   max-width: 600px;
}
.header__content__text__span{
    font-size: 32px;
    font-weight: 700;
    
}
/*tutorial*/
.tutorial{
    padding: 30px 0 80px 0;
}
.tutorial__title h2{
    font-size: 80px;
    font-weight: 700;
    letter-spacing: 3px;
    font-family: "Nunito", sans-serif;
    text-align: center;

    margin-bottom: 20px;
}
.tutorial__block{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.tutorial__block__item{
    max-width: 33%;
}
.tutorial__block__item p{
    font-size: 22px;
    font-weight: 600;

    margin-bottom: 20px;
    
}
.tutorial__block__item a{
    background-color: #222;
    color: #fff;
    font-size: 22px;
    border-radius: 10px;
    padding: 17px 40px;

    transition: 0.3s linear;
}
.tutorial__block__item a:hover{
    background-color: #444;
}
/*flow*/
.flow{
    background-color: #121b3a;
    padding: 30px 0;
}
.flow__title h2{
    color: #fff;
    font-size: 80px;
    font-weight: 700;
    text-align: center;
    font-family: "Nunito", sans-serif;
    margin-bottom: 15px;
}
.flow__video{
    margin: 0 auto;
    text-align: center;
    display: flex;
}
.flow__video video{
    margin: 0 auto;
    max-width: 80%;
}
/*program*/
.program{
    padding: 15px 0 80px 0;
}
.program__title h2{
    font-size: 130px;
    font-weight: 700;
    color: #222;
    margin-bottom: 30px;
    font-family: "Nunito", sans-serif;
}
.program__block{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 70px;
}
.program__item{
    display: flex;
    justify-content: left;
    align-items: center;

    column-gap: 60px;
}
.program__item__h3 h3{ 
    font-size: 150px;
    font-weight: 700;
    color: #222;
    letter-spacing: 2px;
    font-family: "Nunito", sans-serif;
    margin-bottom: 20px;
}
.program__item__text h4{
    font-size: 40px;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
}
.program__item__text p{
    color: #222;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 7px;
}
.program__item__text p:before{
    content: '- ';
}
.program__item__text p:last-child::before{
    content: '';
}
.program__none{
    text-indent: 0;
    font-size: 24px;
}
.program__none strong{
    font-size: 28px;
    font-weight: 600;
}
.program__showMoreBtn{
    margin-top: 40px;
    text-align: center;
}
.showMoreBtn{
    background-color: #0d0e11;
    color: #fff;
    padding: 15px 40px;
    text-align: center;
    margin: 0 auto;
    transition: 0.3s linear;
}
.showMoreBtn:hover{
    background-color: #1b2b64;
}
/*application*/
.application{
    background-color: #121b3a;

    padding: 20px 0 40px 0;
    border-bottom: 2px solid #ffffff;
}
.application__h2{
    text-align: center;
    font-size: 70px;
    color: #fff;
    font-family: "Nunito", sans-serif;
    font-weight: 600;

    margin-top: 30px;
    margin-bottom: 30px;
}
.application__form{
    text-align: center;
}
.application__name input,
.application__email input,
.application__tel input{
    border-radius:5px;
    border: 2px solid #fff;
    padding: 20px 30px;
    width: 500px;

    color: #fff;
    font-weight: 400;
    font-size: 26px;
}
.application__name input::placeholder,
.application__email input::placeholder,
.application__tel input::placeholder{
    color: #fff;
    font-size: 26px;
    font-weight: 400;

}
.application__name,
.application__email,
.application__tel{
    margin-bottom: 15px;
}
.application__btn{
    margin-bottom: 5px;
    height: 70px;
}
.application__btn button{
    background-color: #fff;
    color: #222;
    border-radius: 2px;
    font-size: 22px;
    font-weight: 500;
    max-width: 750px;
    padding: 20px 30px;
    transition: 0.3s linear;

}
.application__btn button:hover{
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
}
.application__info{
    text-align: center;
    max-width: 750px;
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    margin: 0 auto;
}
/*footer*/
footer{
    padding: 100px 0px 0px 0;
    background-color: #121b3a;
}
.footer-block{
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 60px;
}
.footer-logo{
    width: 70px;
}
.footer-logo a img{
    transition: .3s linear;
}
.footer-logo a img:hover{ 
    filter: drop-shadow(0px 0px 15px rgba(255, 50, 40, 0.5));
}
.footer-links ul li{
    margin-bottom: 20px;
}
.footer-links ul li:last-child{
    margin-bottom: 0;
}
.footer-links ul li a{
    color: #F1F2FB;
    font-weight: 600;
    font-size: 18px;
    position: relative;
}
.footer-links ul li a::before{
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #F1F2FB;
    transform-origin: left;
    transform: scaleX(0);
    transition: 0.3s linear;
}
.footer-links ul li a:hover::before{
    transform: scaleX(1);
}
.footer-h4{
    font-weight: 600;
    font-size: 20px;
    color: #F1F2FB;
}
.ft-c-local,
.ft-c-email,
.ft-c-tel{
    display: flex;
    align-items: center;
    column-gap: 10px;
    color: #F1F2FB;
    font-weight: 300;
    font-size: 20px;
    margin-bottom: 20px;
}
.ft-c-email{
    margin-bottom: 0;
}
.ft-c-local{
    margin-top: 20px;
}
.mes{
    display: flex;
    align-items: center;
    column-gap: 20px;
}
.footer-block-2{
    border-top: 1px solid #9e9e9e;
    border-radius: 10px;
    padding: 30px 0;

    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-block-2 p{
    color: #F1F2FB;
    font-size: 16px;
}