/*=============== FONT ===============*/
@font-face {
    font-family: 'Tajawal';
    src: url('../fonts/Tajawal-Light.woff2') format('woff2');
    font-weight: 300;
}

@font-face {
    font-family: 'Tajawal';
    src: url('../fonts/Tajawal-Regular.woff2') format('woff2');
    font-weight: 400;
}

@font-face {
    font-family: 'Tajawal';
    src: url('../fonts/Tajawal-Medium.woff2') format('woff2');
    font-weight: 500;
}

@font-face {
    font-family: 'Tajawal';
    src: url('../fonts/Tajawal-Bold.woff2') format('woff2');
    font-weight: 700;
}

@font-face {
    font-family: 'Tajawal';
    src: url('../fonts/Tajawal-Black.woff2') format('woff2');
    font-weight: 900;
}


/*=============== VARIABLES CSS ===============*/
:root {
    --header-height: 3.5rem;

    /*========== Colors ==========*/
    --yellow-light: #fdf7e9;
    --yellow-light-hover: #fcf3de;
    --yellow-light-active: #f9e7ba;
    --yellow-normal: #ebb220;
    --yellow-normal-hover: #d4a01d;

    --green-normal: #164670;
    --green-normal-hover: #143f65;

    --blue-light: #eaf1f7;
    --blue-light-hover: #dfebf4;
    --blue-light-active: #bdd5e7;
    --blue-normal: #2a77b3;
    --blue-normal-hover: #266ba1;

    --light-blue-light: #edf6fa;
    --light-blue-light-active: #c6e2f1;
    --light-blue-normal: #47a3d1;
    --light-blue-normal-hover: #4093bc;



    /*========== Font and typography ==========*/
    --body-font: 'Tajawal', sans-serif;
    --h1-font-size: 64px;
    --h2-font-size: 48px;
    --h3-font-size: 36px;
    --title-size: 32px;
    --paragraph-size: 20px;
    --note-size: 16px;

    /*========== Font weight ==========*/
    --font-regular: 400;
    --font-medium: 500;
    --font-semi-bold: 600;
    --font-bold: 700;

    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
}


/*=============== BASE ===============*/
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: var(--body-font);
}

html {
    scroll-behavior: smooth;
}

input,
button {
    outline: none;
    border: none;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

body {
    position: relative;
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
    width: 0.6rem;
    background-color: hsl(24, 32%, 95%);
    border-radius: 0.2rem;
}

::-webkit-scrollbar-thumb {
    background-color: var(--blue-normal);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--blue-normal-hover);
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
    max-width: 1320px;
    margin: 0 auto;
}

.section {
    padding-block: 5rem 3rem;
    padding-inline: 3rem;
}

/*=============== HEADER ===============*/
header {
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: 40px;
    z-index: var(--z-fixed);

    .nav {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;

        .nav__logo {
            width: 141px;
            height: 160px;

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }

        .nav__menu {

            .nav__list {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 40px;

                .nav__item {

                    .nav__link {
                        position: relative;
                        font-size: 18px;
                        color: rgba(181, 181, 181, 0.32);
                        font-weight: var(--font-mediumsemi-bold);
                        transition: color 0.3s ease;

                        &::after {
                            content: '';
                            position: absolute;
                            bottom: -5px;
                            left: 0;
                            width: 100%;
                            height: 2px;
                            background-color: var(--light-blue-normal);
                            border-radius: 10px;

                            /* البداية مخفي */
                            transform: scaleX(0);
                            transform-origin: left;
                            /* يبدأ من اليمين */
                            transition: transform 0.3s ease;
                        }

                        &:hover {
                            color: var(--light-blue-light);

                            &::after {
                                transform: scaleX(1);
                                /* يتمدد */
                                transform-origin: right;
                                /* يكمل لحد الشمال */
                            }
                        }

                        &.active-link {
                            color: var(--light-blue-light);

                            &::after {
                                transform: scaleX(1);
                                transform-origin: left;
                            }
                        }
                    }
                }
            }
        }

        .nav_btn {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 278px;
            height: 48px;
            background-color: var(--yellow-normal);
            color: #fff;
            border-radius: 100px;
            padding: 4px;
            font-size: var(--note-size);
            font-weight: var(--font-bold);
            transition: background-color 0.3s ease;

            .arrow {
                position: absolute;
                display: flex;
                justify-content: center;
                align-items: center;
                right: 4px;
                width: 40px;
                height: 40px;
                background-color: rgba(252, 243, 222, 1);
                transform: rotate(-45deg);
                border-radius: 50%;

                i {
                    color: var(--yellow-normal);

                }
            }

            &:hover {
                background-color: var(--yellow-normal-hover);
            }
        }



        .btns {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 18px;
        }

        .nav__toggle {
            display: none;
            grid-template-columns: repeat(2, 1fr);
            gap: 4px;
            width: 28px;
            height: 28px;

            span {
                width: 12px;
                height: 12px;
                background-color: white;
                border-radius: 1px;
            }
        }
    }
}

/*=============== PAGE CURRICULUM ===============*/
.page__curriculum {
    position: relative;
    background-color: var(--green-normal);
    display: flex;
    justify-content: center;
    align-items: start;
    padding-top: 15rem;

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

        .page__curriculum__content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-direction: column;
            gap: 197px;
            width: 100%;

            .page__curriculum__text {
                display: flex;
                justify-content: space-between;
                align-items: center;
                flex-direction: column;
                text-align: center;
                gap: 31px;

                .text_header {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    flex-direction: column;
                    gap: 5px;
                    margin-bottom: 5px;

                    span {
                        font-size: 32px;
                        font-weight: 300;
                        color: var(--yellow-normal);
                    }

                    h1 {
                        font-size: 48px;
                        font-weight: var(--font-bold);
                        color: white;
                    }
                }

                h2 {
                    font-size: 24px;
                    font-weight: var(--font-bold);
                    color: #7997AE;
                }

                .slogan {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    gap: 195px;
                    margin-bottom: 70px;

                    span {
                        position: relative;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        gap: 10px;
                        font-size: 40px;
                        font-weight: var(--font-bold);

                        .icon {
                            width: 30px;
                            height: 30px;
                            background-color: var(--yellow-normal);
                            color: white;
                            border-radius: 50%;
                            font-size: 20px;
                            border: 1px solid white;
                            margin-top: 10px;
                            text-shadow: none;
                        }

                        &:nth-child(1) {
                            color: var(--yellow-normal);
                            text-shadow: 0 4px 0 #A57B10;
                        }

                        &:nth-child(2) {
                            color: #FDF7E9;
                            text-shadow: 0 4px 0 #848A8D;

                            &::after {
                                background-image: url(../image/arrow3.webp);
                                top: 45%;
                                left: 95px;
                            }
                        }

                        &:nth-child(3) {
                            color: var(--light-blue-normal-hover);
                            text-shadow: 0 4px 0 #6CBEE6;

                            &::after {
                                background-image: url(../image/arrow2.webp);
                                top: 45%;
                                left: 85px;
                            }
                        }

                        &::after {
                            content: '';
                            position: absolute;
                            transform: translateY(-50%);
                            width: 157.7045440673828px;
                            height: 30px;
                            background-size: cover;
                            background-repeat: no-repeat;
                            background-position: center;
                            transform: rotate(180deg);
                        }
                    }
                }

                .btns {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    gap: 24px;
                    margin-bottom: 27.5px;

                    a {
                        width: 188px;
                        height: 48px;
                        border-radius: 4px;
                        font-size: var(--note-size);
                        font-weight: var(--font-bold);
                    }

                    .btn_sec {
                        background-color: var(--light-blue-light);
                        color: #B2B8BC;
                        transition: background-color 0.3s ease;

                        &:hover {
                            background-color: var(--light-blue-light-active);
                        }
                    }

                    .btn_prim {
                        background-color: var(--light-blue-normal);
                        color: white;
                        transition: background-color 0.3s ease;
                        box-shadow: 0px 10px 60px 0px #262D7614;

                        &:hover {
                            background-color: var(--light-blue-normal-hover);
                        }
                    }
                }

                p {
                    font-size: 22px;
                    font-weight: var(--font-medium);
                    color: var(--light-blue-light);
                    max-width: 684px;
                }
            }

            .group__levels {
                display: flex;
                justify-content: space-between;
                align-items: center;
                flex-direction: column;
                gap: 167px;
                width: 100%;

                .page__curriculum__levels {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    flex-direction: column;
                    gap: 160px;
                    width: 100%;

                    .level {
                        position: relative;
                        display: flex;
                        justify-content: start;
                        align-items: center;
                        gap: 24px;
                        padding: 14.5px 20px;
                        border: 1.22px solid #0000001A;
                        border-radius: 7.3px;
                        box-shadow: 0px 1px 160px 0px #CCD0D31A;
                        background-color: white;
                        width: 580px;

                        .img {
                            width: 164px;
                            height: 220px;
                            border: 1px solid #F9E7BA;

                            img {
                                width: 100%;
                                height: 100%;
                                object-fit: cover;
                            }
                        }

                        .level__text {
                            display: flex;
                            justify-content: center;
                            align-items: start;
                            flex-direction: column;
                            gap: 11px;

                            .header__level {
                                display: flex;
                                justify-content: center;
                                align-items: start;
                                flex-direction: column;
                                gap: 2.43px;

                                h3 {
                                    font-size: 24px;
                                    font-weight: var(--font-medium);
                                    color: var(--yellow-normal);
                                }

                                span {
                                    font-size: var(--note-size);
                                    font-weight: var(--font-regular);
                                    color: #00000080;
                                }
                            }

                            .body__level {
                                display: flex;
                                justify-content: center;
                                align-items: start;
                                flex-direction: column;
                                gap: 3px;

                                p {
                                    font-size: var(--note-size);
                                    font-weight: var(--font-regular);
                                    color: #1E1E1E;
                                }

                                ul {
                                    display: flex;
                                    justify-content: center;
                                    align-items: start;
                                    flex-direction: column;
                                    gap: 1px;
                                    list-style: disc;

                                    li {
                                        font-size: var(--note-size);
                                        font-weight: var(--font-medium);
                                        color: var(--light-blue-normal);
                                        margin-right: 15px;
                                    }
                                }
                            }

                        }

                        .slog {
                            position: absolute;
                            top: 0;
                            left: 0;
                            background-color: var(--blue-normal);
                            color: white;
                            border-radius: 6.08px 0 1.22px 0;
                            font-size: 24px;
                            font-weight: var(--font-regular);
                            padding: 1.86px 5.58px;
                        }

                        &:first-child {

                            &::before {
                                content: '';
                                position: absolute;
                                top: -55%;
                                right: 95px;
                                width: 5px;
                                height: 125.01000213623047px;
                                border-left: 3px dashed var(--blue-light);
                            }
                        }

                        &:nth-child(odd) {
                            margin-right: 23.5rem;

                            &::after {
                                content: '';
                                position: absolute;
                                bottom: -58%;
                                right: 160px;
                                width: 5px;
                                height: 125.01000213623047px;
                                border-left: 3px dashed var(--blue-light);
                            }
                        }

                        &:nth-child(even) {
                            margin-left: 23.5rem;

                            &::after {
                                content: '';
                                position: absolute;
                                bottom: -58%;
                                right: 80%;
                                width: 5px;
                                height: 125.01000213623047px;
                                border-left: 3px dashed var(--blue-light);
                            }
                        }
                    }
                }

                .btn_spicail {
                    width: 435px;
                    height: 53px;
                    gap: 13px;
                    background-color: white;
                    border-radius: 8px;
                    font-size: var(--paragraph-size);
                    font-weight: var(--font-bold);
                    color: var(--blue-normal);
                    box-shadow: 0px 1px 30px 0px #CCD0D380;
                    transition: transform 0.3s ease-in-out;

                    &:hover {
                        transform: scale(1.05);
                    }
                }
            }

        }
    }



    &::before {
        position: absolute;
        content: "";
        width: 360px;
        height: 300px;
        top: 0;
        right: 0;
        border-bottom-left-radius: 100%;
        background: linear-gradient(180deg, #F7FAFC 0%, rgba(237, 242, 247, 0.9) 100%);
    }
}

/*==================== FOOTER ====================*/
.footer {
    background-color: #F8FAFC;
    padding-top: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 66px;

    .footer__container {
        width: 100%;

        .footer__content {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            gap: 100px;
            width: 100%;

            .bannar {
                position: relative;
                display: flex;
                justify-content: center;
                align-items: center;
                padding: 80px 20px 40px 20px;
                background-color: var(--blue-normal);
                width: 90%;
                border-radius: 20px;
                overflow: hidden;
                margin-bottom: 15px;

                .bannat__content {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    flex-direction: column;
                    text-align: center;
                    gap: 35px;

                    h2 {
                        font-size: var(--h2-font-size);
                        font-weight: var(--font-bold);
                        color: white;
                        width: 90%;
                    }

                    a {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        width: 420px;
                        height: 52px;
                        background-color: var(--yellow-normal);
                        border-radius: 8px;
                        color: white;
                        font-size: 24px;
                        font-weight: var(--font-medium);
                        transition: background-color 0.3s ease;

                        &:hover {
                            background-color: var(--yellow-normal-hover);
                        }
                    }

                }

                &::before {
                    position: absolute;
                    content: '';
                    width: 245.59387484535858px;
                    height: 245.59387484535858px;
                    background-color: transparent;
                    border: 7px solid #F1F5F9;
                    border-radius: 50%;
                    top: -45%;
                    left: -10%;
                    opacity: 0.2;
                    z-index: 0;
                }

                &::after {
                    position: absolute;
                    content: '';
                    width: 245.59387484535858px;
                    height: 245.59387484535858px;
                    background-color: transparent;
                    border: 7px solid white;
                    border-radius: 50%;
                    bottom: -45%;
                    right: -10%;
                    z-index: 0;
                }
            }

            .footer__links {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 47px;

                a {
                    font-size: 21px;
                    font-weight: var(--font-medium);
                    color: #696984;
                    transition: color 0.3s ease;

                    &:hover {
                        color: var(--blue-normal);
                    }

                }
            }

            .footer__media {
                display: flex;
                justify-content: space-between;
                align-items: center;
                width: 100%;

                .mail__num {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    gap: 13px;

                    .item {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        gap: 13px;

                        .icon {
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            width: 41px;
                            height: 41px;
                            border: 1px solid #FCF3DE;
                            background-color: var(--yellow-normal);
                            border-radius: 50%;
                            color: white;
                            font-size: 22px;
                        }

                        a {
                            font-size: var(--paragraph-size);
                            font-weight: var(--font-medium);
                            color: #696984;
                            transition: color 0.3s ease;

                            &:hover {
                                color: var(--blue-normal);
                            }
                        }
                    }
                }

                .social {
                    display: flex;
                    justify-content: center;
                    align-items: center;

                    a {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        width: 57.653629302978516px;
                        height: 57.653629302978516px;
                        border: 4px solid #FBFBFB;
                        background-color: var(--yellow-normal);
                        border-radius: 50%;
                        color: white;
                        font-size: var(--title-size);
                        transition: background-color 0.3s ease;

                        &:nth-child(1) {
                            background-color: var(--light-blue-normal);
                            margin-left: -12px;

                            &:hover {
                                background-color: var(--light-blue-normal-hover);
                            }
                        }

                        &:nth-child(2) {
                            background-color: var(--blue-normal);
                            margin-left: -12px;

                            &:hover {
                                background-color: var(--blue-normal-hover);
                            }
                        }

                        &:nth-child(3) {
                            background-color: var(--light-blue-normal-hover);

                            &:hover {
                                background-color: var(--light-blue-normal);
                            }
                        }
                    }
                }
            }
        }
    }

    .footer__copyright {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 7px;
        padding-block: 18px 9px;
        background: linear-gradient(90deg, #2B669A 0%, #4093BC 100%);

        a {
            width: 147.8184px;
            height: 18.1514px;

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

        p {
            font-size: var(--note-size);
            font-weight: var(--font-medium);
            color: white;
        }
    }
}

/*=============== RESPONSIVE ===============*/
@media (max-width: 1200px) {

    /*===============HEADER===============*/
    header {
        padding-inline: 24px;

        .nav {
            .nav__logo {
                width: 120px;
                height: 135px;
            }

            .nav__menu {
                .nav__list {
                    gap: 28px;

                    .nav__item {
                        .nav__link {
                            font-size: 16px;
                        }
                    }
                }
            }

            .nav_btn {
                width: 240px;
                height: 46px;
                padding: 0 30px 0 0;
            }

            .btns {
                gap: 14px;
            }
        }
    }

    /*=============== PAGE CURRICULUM ===============*/
    .page__curriculum {


        &::after {
            width: 320px;
            height: 320px;
        }

        &::before {
            width: 300px;
            height: 250px;
        }
    }

    /*==================== FOOTER ====================*/
    .footer {
        padding-top: 90px;
        gap: 55px;

        .footer__container {
            padding-inline: 2rem;

            .footer__content {
                gap: 80px;

                .bannar {
                    padding: 70px 20px 35px;

                    .bannat__content {
                        gap: 28px;

                        h2 {
                            width: 100%;
                            font-size: calc(var(--h2-font-size) * 0.95);
                        }

                        a {
                            width: 360px;
                            height: 50px;
                            font-size: 20px;
                        }
                    }
                }

                .footer__links {
                    gap: 35px;

                    a {
                        font-size: 19px;
                    }
                }

                .footer__media {
                    .social {
                        a {
                            width: 52px;
                            height: 52px;
                        }
                    }
                }
            }
        }
    }
}


@media (max-width: 991px) {

    /*===============HEADER===============*/
    header {
        top: 12px;
        padding-inline: 30px;

        .nav {
            .nav__logo {
                width: 128px;
                height: 145.25283813476562px;
            }

            .nav__menu {
                position: absolute;
                top: 85%;
                left: 0;
                width: 209px;
                background: white;
                border: 1px solid #EEEEEE;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
                overflow: hidden;
                opacity: 0;
                visibility: hidden;
                transform: translateY(15px);
                transition: all 0.3s ease-in-out;
                z-index: 20;

                .nav__list {
                    display: flex;
                    justify-content: start;
                    align-items: start;
                    flex-direction: column;
                    gap: 0;
                    width: 100%;

                    .nav__item {
                        width: 100%;

                        .nav__link {
                            display: flex;
                            justify-content: start;
                            align-items: center;
                            width: 100%;
                            padding: 10px 10px 10px 18px;
                            font-size: var(--note-size);
                            color: #1E1E1E;
                            font-weight: var(--font-regular);
                            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
                            background-color: white;
                            transition: 0.3s ease;

                            &::after {
                                display: none;
                            }

                            &:hover {
                                background-color: var(--blue-normal);
                                color: white;
                            }

                            &.active-link {
                                background-color: var(--blue-normal);
                                color: white;
                                font-weight: var(--font-bold);
                            }
                        }
                    }
                }
            }

            .nav__menu.show-menu {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }

            .btns {
                gap: 12px;
            }

            .nav_btn {
                height: 48px;
                font-size: 18px;
            }

            .nav__toggle {
                display: grid;
                cursor: pointer;
            }
        }
    }

    /*=============== PAGE CURRICULUM ===============*/
    .page__curriculum {

        .page__curriculum__container {

            .page__curriculum__content {


                .group__levels {
                    gap: 171px;

                    .page__curriculum__levels {

                        .level {
                            gap: 17.47px;
                            padding: 19.47px;
                            width: 560px;

                            .level__text {

                                .header__level {

                                    span {
                                        font-size: 17px;
                                    }
                                }

                            }

                            &:first-child {

                                &::before {
                                    content: '';
                                    position: absolute;
                                    top: -55%;
                                    right: 95px;
                                    width: 5px;
                                    height: 125.01000213623047px;
                                    border-left: 3px dashed var(--blue-light);
                                }
                            }

                            &:nth-child(odd) {
                                margin-right: 10.5rem;
                            }

                            &:nth-child(even) {
                                margin-left: 10.5rem;
                            }
                        }
                    }
                }

            }
        }


        &::before {
            width: 245px;
            height: 235px;
        }
    }

    /*==================== FOOTER ====================*/
    .footer {
        padding-top: 80px;
        gap: 45px;

        .footer__container {
            .footer__content {
                gap: 73px;

                .bannar {
                    width: 100%;
                    padding: 60px 18px 30px;
                    margin-bottom: 12px;

                    .bannat__content {
                        h2 {
                            font-size: 24px;
                        }

                        a {
                            width: 270px;
                            height: 39px;
                            font-size: var(--note-size);
                        }
                    }

                    &::before,
                    &::after {
                        width: 168.3267629201328px;
                        height: 168.3267629201328px;
                    }
                }

                .footer__links {
                    flex-wrap: wrap;
                    gap: 35px;

                    a {
                        font-size: var(--note-size);
                    }
                }

                .footer__media {
                    gap: 25px;

                    .social {
                        a {
                            width: 40px;
                            height: 40px;
                            font-size: 18px;
                            border: 3px solid #FBFBFB;
                        }
                    }

                    .mail__num {
                        gap: 10px;

                        .item {

                            a {
                                font-size: 15px;
                            }

                            .icon {
                                width: 31px;
                                height: 31px;
                                font-size: 16px;
                            }
                        }
                    }
                }
            }
        }
    }
}


@media (max-width: 768px) {

    /*===============HEADER===============*/
    header {
        top: 10px;
        padding-inline: 20px;

        .nav {
            .nav__logo {
                width: 95.74427795410156px;
                height: 108.6494369506836px;
            }

            .nav__menu {
                width: 240px;
                top: 95%;

                .nav__list {
                    .nav__item {
                        .nav__link {
                            padding: 14px 16px;
                            font-size: 16px;
                        }
                    }
                }
            }

            .btns {
                gap: 18px;

                .nav_btn {
                    height: 35px;
                    font-size: 14px;
                    width: 181px;

                    .arrow {
                        width: 30px;
                        height: 30px;
                        right: 3px;

                        i {
                            font-size: 12px;
                        }
                    }
                }
            }
        }
    }

    /*=============== PAGE CURRICULUM ===============*/
    .page__curriculum {
        padding-bottom: 8rem;

        .page__curriculum__container {

            .page__curriculum__content {
                gap: 200px;

                .page__curriculum__text {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    flex-direction: column;
                    text-align: center;
                    gap: 35px;

                    .text_header {
                        gap: 4px;
                        margin-bottom: 1px;

                        span {
                            font-size: 24px;
                        }

                        h1 {
                            font-size: 40px;
                        }
                    }

                    h2 {
                        font-size: 24px;
                    }

                    .slogan {
                        gap: 163px;
                        margin-bottom: 40px;

                        span {
                            gap: 7px;
                            font-size: 33.5px;
                            font-weight: var(--font-bold);

                            .icon {
                                width: 25px;
                                height: 25px;
                                font-size: 18px;
                            }

                            &:nth-child(2) {

                                &::after {
                                    left: 75px;
                                }
                            }

                            &:nth-child(3) {

                                &::after {
                                    left: 75px;
                                }
                            }

                            &::after {
                                width: 132.23260498046875px;
                                height: 25.154495239257812px;
                            }
                        }
                    }

                    .btns {
                        margin-bottom: 25.5px;
                    }

                    p {
                        max-width: 637px;
                    }
                }

                .group__levels {
                    gap: 218px;

                    .page__curriculum__levels {
                        gap: 186px;

                        .level {
                            gap: 18px;
                            border-radius: 6.3px;
                            width: 520px;

                            .img {
                                width: 152.80320739746094px;
                                height: 204.97991943359375px;
                            }

                            .level__text {
                                gap: 10px;

                                .header__level {

                                    h3 {
                                        font-size: 20.5px;
                                    }

                                    span {
                                        font-size: 15.87px;
                                    }
                                }

                                .body__level {

                                    p {
                                        font-size: 14px;
                                    }

                                    ul {

                                        li {
                                            font-size: 14px;
                                            margin-right: 15px;
                                        }
                                    }
                                }

                            }

                            .slog {
                                border-radius: 5.67px 0 1.13px 0;
                                font-size: 22px;
                            }

                            &:first-child {

                                &::before {
                                    right: 195px;
                                }
                            }

                            &:nth-child(odd) {
                                margin-right: 7.5rem;

                                &::after {
                                    right: 160px;
                                }
                            }

                            &:nth-child(even) {
                                margin-left: 7.5rem;

                                &::after {
                                    bottom: -65%;
                                }
                            }
                        }
                    }

                    .btn_spicail {
                        width: 332px;
                    }
                }

            }
        }



        &::before {
            width: 190px;
            height: 180px;
        }
    }

    /*==================== FOOTER ====================*/
    .footer {
        padding-top: 65px;
        gap: 35px;

        .footer__container {
            .footer__content {
                gap: 65px;

                .bannar {
                    padding: 50px 15px 25px;

                    .bannat__content {
                        gap: 23px;

                        h2 {
                            font-size: var(--paragraph-size);
                            line-height: 1.6;
                        }

                        a {
                            width: 100%;
                            max-width: 225px;
                            height: 39px;
                            font-size: 14px;
                        }
                    }

                    &::before,
                    &::after {
                        width: 104.89582824707031px;
                        height: 104.89582824707031px;
                    }
                }

                .footer__links {
                    gap: 35px;

                    a {
                        font-size: 14px;
                    }
                }

                .footer__media {

                    .mail__num {
                        gap: 15px;

                        .item {
                            gap: 9px;

                            .icon {
                                width: 28px;
                                height: 28px;
                                font-size: 15px;
                            }

                            a {
                                font-size: 14px;
                            }
                        }
                    }

                    .social {
                        a {
                            width: 35px;
                            height: 35px;
                            font-size: 18px;
                        }
                    }
                }
            }
        }

        .footer__copyright {
            padding: 13px 15px;

            a {
                width: 110px;
                height: 14px;
            }

            p {
                font-size: 12px;
            }
        }
    }
}


@media (max-width: 576px) {

    /*===============HEADER===============*/
    header {
        top: 8px;
        padding-inline: 15px;

        .nav {
            .nav__logo {
                width: 63.53670120239258px;
                height: 72.10066986083984px;
            }

            .nav__menu {
                width: 230px;

                .nav__list {
                    .nav__item {
                        .nav__link {
                            padding: 13px 14px;
                            font-size: 15px;
                        }
                    }
                }
            }

            .btns {
                gap: 14px;

                .nav_btn {
                    width: fit-content;
                    height: 33px;
                    font-size: 12px;
                    padding: 0px 3px 0 10px;
                    gap: 7px;
                    flex-direction: row-reverse;

                    .arrow {
                        position: static;
                    }
                }
            }

        }
    }

    /*=============== PAGE CURRICULUM ===============*/
    .page__curriculum {
        padding-bottom: 8rem;
        padding-top: 10rem;
        padding-inline: 1rem;

        .page__curriculum__container {

            .page__curriculum__content {
                gap: 143px;

                .page__curriculum__text {
                    gap: 17px;

                    .text_header {
                        gap: 2px;
                        margin-bottom: 1px;

                        span {
                            font-size: 20px;
                        }

                        h1 {
                            font-size: 28px;
                        }
                    }

                    h2 {
                        font-size: var(--note-size);
                    }

                    .slogan {
                        gap: 75px;
                        margin-bottom: 42px;

                        span {
                            gap: 4.75px;
                            font-size: 19px;

                            .icon {
                                width: 15px;
                                height: 15px;
                                font-size: 10px;
                            }

                            &:nth-child(1) {
                                text-shadow: 0 1.9px 0 #A57B10;
                            }

                            &:nth-child(2) {
                                text-shadow: 0 1.9px 0 #848A8D;

                                &::after {
                                    left: 40px;
                                }
                            }

                            &:nth-child(3) {
                                text-shadow: 0 1.9px 0 #6CBEE6;

                                &::after {
                                    left: 40px;
                                }
                            }

                            &::after {
                                width: 58px;
                                height: 11px;
                            }
                        }
                    }

                    .btns {
                        flex-direction: column;
                        margin-bottom: 26px;
                        gap: 24px;

                        a {
                            width: 233px;
                            height: 37px;
                            font-size: var(--note-size);
                        }
                    }

                    p {
                        max-width: 100%;
                        width: 100%;
                        font-size: var(--note-size);
                    }
                }

                .group__levels {
                    gap: 140px;

                    .page__curriculum__levels {
                        gap: 140px;

                        .level {
                            padding: 2px;
                            padding-bottom: 2rem;
                            flex-direction: column;
                            gap: 22px;
                            border-radius: 6.8px;
                            width: 284px;
                            margin: 0 !important;

                            .img {
                                width: 100%;
                                height: 204.97991943359375px;
                                border-radius: 2.27px;

                                img {
                                    border-radius: 2.27px;
                                }
                            }

                            .level__text {

                                .header__level {

                                    span {
                                        font-size: 15px;
                                    }
                                }

                            }

                            .slog {
                                top: 2px;
                                left: 2px;
                            }

                            &:first-child {

                                &::before {
                                    height: 97px;
                                    right: 50%;
                                    top: -30%;
                                }
                            }

                            &::after {
                                height: 97px !important;
                                right: 50% !important;
                                bottom: -30% !important;
                            }
                        }
                    }

                    .btn_spicail {
                        width: 280px;
                        height: 48px;
                        border-radius: 4px;
                        font-size: var(--note-size);
                    }
                }

            }
        }



        &::before {
            width: 120px;
            height: 110px;
        }
    }


    /*==================== FOOTER ====================*/
    .footer {
        padding-top: 55px;
        gap: 28px;

        .footer__container {
            .footer__content {
                gap: 45px;

                .bannar {
                    padding: 40px 12px 20px;

                    .bannat__content {
                        gap: 23px;
                        z-index: 1;

                        h2 {
                            font-size: 20px;
                        }

                        a {
                            max-width: 80%;
                            height: 32px;
                            font-size: 14px;
                        }
                    }

                    &::before,
                    &::after {
                        width: 90px;
                        height: 90px;
                    }

                    &::before {
                        top: -40%;
                        left: -19%;
                    }

                    &::after {
                        bottom: -40%;
                        right: -19%;
                    }
                }

                .footer__links {
                    row-gap: 22px;
                    column-gap: 35px;

                    a {
                        font-size: 12px;
                    }
                }

                .footer__media {
                    flex-direction: column-reverse;

                    .mail__num {
                        gap: 17px;

                        .item {
                            gap: 9px;

                            .icon {
                                width: 28px;
                                height: 28px;
                                font-size: 15px;
                            }

                            a {
                                font-size: 12px;
                            }
                        }
                    }

                    .social {
                        a {
                            width: 32px;
                            height: 32px;
                            font-size: 14px;

                            &:nth-child(2) {
                                margin-left: -7px;
                            }

                            &:nth-child(3) {
                                margin-left: -7px;
                            }

                        }
                    }
                }
            }
        }

        .footer__copyright {
            padding-block: 13px 8px 7px 8px;

            p {
                font-size: 12px;
            }
        }
    }
}