* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

.container {
    max-width: 1400px;
    padding: 0 20px;
    margin: 0 auto;
    box-sizing: border-box;
}

:root {
    --main-color: #2D487D;
    --secound-color: #F75929;
    --title-size: 40px;
    --font-mont: Montserrat;
    --font-bebas: Bebas Neue;
    --font-sora: Sora;
}


.section {
    padding: 120px 0;
}

.navbar {
    position: fixed;
    width: 100%;
    background: rgb(252, 250, 250);
    padding: 25px 0;
    z-index: 100000;
    transition: .5s ease;
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav__text {
    font-family: Montserrat;
    max-width: 186px;
    color: var(--main-color);
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    text-align: left;
}

.nav__list {
    display: flex;
    gap: 24px;
    font-family: var(--font--sora);
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    backdrop-filter: blur(1px);
    background: #EFF1F5;
    padding: 15px 18px;
    border-radius: 64px;
}

.nav__list li {
    list-style-type: none;
}

.nav__list li a {
    font-family: Sora;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    text-align: left;
    text-decoration: none;
    color: #2D487D;
}

.navbar__contact_list,
.nav__btn_list {
    display: none;
    
}

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

.navbar__contact {
    display: flex;
    gap: 12px;
}

.nav__contact a {
    text-decoration: none;
    color: #2D487D;
    font-family: Sora;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
}

.nav__contact span {
    font-family: Sora;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    text-align: left;
}

.btn {
    background: #F75929;
    color: white;
    border: none;
    outline: none;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn:hover {
    background: #fd7a53;
}

.btn:active {
    transform: scale(0.9);
}

.nav__btn {
    font-family: Sora;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    text-align: left;
    padding: 12px 21px;
    display: inline-block;
}

.nav_toggle {
    display: none;
    position: relative;
    width: 70px;
    height: 70px;
    background: white;
    box-shadow: 0 10px 20px rgb(0, 0, 0, 0.08);
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    overflow: hidden;
    transition: .3s ease
}

.nav_toggle span {
    position: absolute;
    width: 40px;
    height: 4px;
    background: #F75929;
    border-radius: 4px;
    transition: .5s ease;
}

.nav_toggle span:nth-child(1) {
    transform: translate(-15px);
    width: 25px;
    top: 15px;
    left: 30px;
}

.nav_toggle.active_toggle span:nth-child(1) {
    width: 40px;
    transform: translate(-15px, 15px) rotate(45deg);
}

.nav_toggle span:nth-child(2) {
    transform: translate(15px);
    width: 15px;
    bottom: 15px;
    left: 0px;
}

.nav_toggle.active_toggle span:nth-child(2) {
    width: 40px;
    /* transform: translateX(-5px); */
    transform: translate(15px, -21px) rotate(315deg);
}

.nav_toggle.active_toggle span:nth-child(3) {
    transform: translateX(60px);
    opacity: 0;
}


.nav_modall{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(168, 161, 161, 0.8);
    display: none;
}

.active_nav_modal{
    display: block;
}



.nav_modall_register{
    position: absolute;
    width: 50%;
    height: 60%;
    background: white;
    border-radius: 25px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 40px 30px;
}

.nav_modall_register .nav_modal_inp_name,
.nav_modall_register div{   
    border: 1px solid #2D487D;
    width: 70%;
}

.nav_modall_register div {
    margin-top: 40px;
    padding: 20px 20px;
}

.nav_modall_register .enroll_box_btn{
    position: absolute;
    bottom: 40px;
    right: 40px;
    padding: 20px;
}


.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.active {
    opacity: 1;
    transform: translateY(0);
}


@media (max-width:1215px) {

    .nav_modall_register {
            width: 70%;
            height: 50%;
        }

    .nav__list {
        gap: 18px;
    }
    
    .nav__logo {

        gap: 10px;
    }
    
    .nav__text {
        max-width: 130px;
    }
}

@media (max-width:1180px) {


    .enroll_box_btn{
        padding: 20px;
        line-height: 20px;
    }
}

@media (max-width:1130px) {
    .nav__text {
        position: absolute;
        max-width: none;
        bottom: 10px;
        width: 100%;
        text-align: center;
    }
}


@media (max-width:990px) {

    .nav__list li a {
        font-size: 24px;
        line-height: 30px;
    }

    .nav__btn {
        font-size: 20px;
    }

    .section {
        padding: 60px 0;
    }

    .nav_toggle {
        display: flex;
    }

    .navbar__contact {
        display: none;
    }

    .nav__text {
        display: none;
    }

    .nav__btn_list,
    .navbar__contact_list {
        display: block;
    }

    .nav__list {
        border-radius: 0;
        position: absolute;
        width: 100%;
        left: 0;
        top: 103px;
        height: calc(100vh - 80px);
        flex-direction: column;
        justify-content: space-around;
        padding: 50px 0;
        align-items: center;
        transform: translateX(-100vw);
        transition: .3s ease
    }

    .active_nav_list {
        transform: translateX(0);
    }
}

@media (max-width:850px) {
    .nav_modall .nav_modal_inp_name{
        padding: 20px;
    }
    
    .nav_modall_register {
        width: 90%;
        height: 50%;
    }
    .nav_modall_register .nav_modal_inp_name,
    .nav_modall_register div{
        width: 90%;
    }

    .nav_modall_register{
    height: 350px;
    transform: translate(-50%, -55%);
}

}

@media (max-width:620px) {

    .nav_modall_register .nav_modal_inp_name,
        .nav_modall_register div{
            width: 100%;
        }

    .nav__list {
        top: 85px;
    }

    .nav__logo__img img {
        max-width: 120px;
    }

    .nav_toggle {
        width: 50px;
        height: 50px;
    }

    .nav_toggle span {
        width: 30px;
    }

    .nav_toggle span:nth-child(1) {
        transform: translate(-20px);
        width: 25px;
        top: 15px;
        left: 30px;
    }

    .nav_toggle.active_toggle span:nth-child(1) {
        width: 30px;
        transform: translate(-20px, 7px) rotate(45deg);
    }

    .nav_toggle span:nth-child(2) {
        transform: translate(10px);
        width: 15px;
        bottom: 15px;
        left: 0px;
    }

    .nav_toggle.active_toggle span:nth-child(2) {
        width: 30px;
        /* transform: translateX(-5px); */
        transform: translate(11px, -10px) rotate(315deg);
    }

    .nav_toggle.active_toggle span:nth-child(3) {
        transform: translateX(60px);
        opacity: 0;
    }

}

@media (max-width:450px) {

    .enroll_box_btn{
        padding: 19px;
        line-height: 15px;
        height: 55px;
        display: flex;
            justify-content: center;
            align-items: center;
    }
}