/*=============== 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;
}

/*=============== ANIMATION ===============*/
@keyframes arrowLeft {

    0%,
    100% {
        transform: translateY(-50%) translateX(0);
    }

    50% {
        transform: translateY(-50%) translateX(15px);
    }
}

@keyframes arrowRight {

    0%,
    100% {
        transform: translateY(-50%) translateX(0) rotate(180deg);
    }

    50% {
        transform: translateY(-50%) translateX(-15px) rotate(180deg);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@keyframes wave {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/*=============== 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: 20px;

                .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;
            }
        }
    }
}

/*=============== HOME ===============*/
.home {
    position: relative;
    background-image: url(../image/bg\ home.webp);
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    max-height: 135vh;
    display: flex;
    justify-content: center;
    align-items: start;
    padding-top: 15rem;

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

        .home__content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-direction: column;
            gap: 70px;
            z-index: 5;

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

                .span__title {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    width: fit-content;
                    height: 40px;
                    padding: 0 20px;
                    gap: 8px;
                    border-radius: 24px;
                    background-color: white;
                    border: 1px solid #FCFDFF;
                    font-size: var(--paragraph-size);
                    font-weight: var(--font-regular);
                    color: var(--blue-normal);
                }

                h1 {
                    font-size: 41px;
                    font-weight: var(--font-bold);
                    color: #fff;
                }

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

                .btn {
                    gap: 10px;
                    background-color: transparent;
                    color: var(--yellow-normal);
                    font-size: var(--paragraph-size);
                    font-weight: var(--font-regular);
                    cursor: pointer;
                    margin-top: 5px;

                    .arrow {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        width: 32px;
                        height: 32px;
                        border: 3px solid white;
                        background-color: var(--yellow-normal);
                        border-radius: 50%;

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

            .home__book {
                display: flex;
                justify-content: space-between;
                align-items: center;
                border: 13.9px solid var(--blue-light);
                border-radius: 10px;
                height: 639px;
                width: 848px;

                .img_book {
                    position: relative;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    flex-direction: column;
                    height: 100%;
                    padding: 35px 33px 42px 33px;
                    background-color: #164670;
                    /* border-radius: 0 6.5px 6.5px 0; */
                    overflow: hidden;

                    .logo__book {
                        width: 113px;
                        height: 128px;

                        img {
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                            filter: brightness(0) invert(1) drop-shadow(0px 2.77px 16.64px #FFFFFF40);
                        }
                    }

                    .img {
                        width: 390px;
                        height: 219px;
                        border-radius: 6.5px;

                        img {
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                            border-radius: 6.5px;
                        }
                    }

                    .text__book {
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                        flex-direction: column;
                        text-align: center;
                        max-width: 265px;
                        width: 100%;
                        gap: 9px;

                        h3 {
                            font-size: 19px;
                            font-weight: var(--font-bold);
                            color: white;
                        }

                        p {
                            font-size: 12px;
                            font-weight: var(--font-regular);
                            color: var(--blue-light);
                        }
                    }

                    &::before {
                        content: '';
                        position: absolute;
                        width: 300px;
                        height: 300px;
                        background: linear-gradient(180deg, rgba(247, 250, 252, 0.4) 0%, rgba(237, 242, 247, 0) 100%);
                        top: -20%;
                        right: -30%;
                        border-radius: 50%;
                    }
                }

                .book {
                    position: relative;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    flex-direction: column;
                    background: #FBFBFB;
                    width: 50%;
                    /* border-radius: 6.5px 0 0 6.5px; */
                    height: 100%;

                    .book__session {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        flex-direction: column;
                        gap: 20px;
                        max-width: 307.4499816894531px;
                        width: 100%;
                        border-radius: 7.15px;
                        padding: 15.5px 17px 15.5px 17px;
                        text-align: center;
                        background-color: white;
                        box-shadow: 0px 0px 8.34px 0px #B1AEAE1F;

                        .img {
                            width: 61.9667px;
                            height: 61.9667px;

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

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

                            h3 {
                                font-size: 19px;
                                font-weight: var(--font-bold);
                                color: var(--blue-normal);

                                span {
                                    color: var(--yellow-normal);
                                }
                            }

                            p {
                                font-size: 12px;
                                font-weight: var(--font-medium);
                                color: #6E7176;
                            }
                        }

                        a {
                            width: 100%;
                            height: 31px;
                            font-size: 12px;
                            font-weight: var(--font-bold);
                            color: white;
                            background-color: var(--blue-normal);
                            border-radius: 19px;
                            transition: all 0.3s ease-in-out;

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

                    .register_group_types {
                        position: absolute;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        gap: 7.5px;
                        top: 95%;
                        left: 50%;
                        transform: translate(-50%, -50%);
                        width: 100%;

                        .type {
                            display: flex;
                            justify-content: start;
                            align-items: center;
                            padding: 3px 7px;
                            height: 20px;
                            border-radius: 4px;
                            gap: 2px;
                            animation: wave 1.6s ease-in-out infinite;

                            i {
                                font-size: 8px;
                                color: white;
                            }

                            h4 {
                                font-size: 8px;
                                font-weight: var(--font-bold);
                                color: #EDFFFF;
                            }

                            &:nth-child(1) {
                                background-color: var(--light-blue-normal);
                                animation-delay: 0s;
                            }

                            &:nth-child(2) {
                                background-color: var(--yellow-normal);
                                animation-delay: 0.3s;
                            }

                            &:nth-child(3) {
                                background-color: var(--blue-normal);
                                animation-delay: 0.6s;
                            }

                            &:nth-child(4) {
                                background-color: var(--green-normal);
                                animation-delay: 0.9s;
                            }
                        }
                    }
                }
            }
        }
    }




    &::after {
        position: absolute;
        content: "";
        width: 400px;
        height: 400px;
        bottom: 0;
        left: 0;
        border-top-right-radius: 100%;
        background: linear-gradient(180deg,
                rgba(247, 250, 252, 0.4) 0%,
                rgba(237, 242, 247, 0) 100%);
    }

    &::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%);
    }
}

/*=============== PLATFORM STATS ===============*/
.platform__stats {
    padding-top: 17rem;

    .platform__container {

        .platform__content {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            gap: 45px;

            h2 {
                font-size: var(--title-size);
                font-weight: var(--font-regular);
                color: #6E7176;
                text-align: center;
                width: 70%;
            }

            .stats_data {
                display: flex;
                justify-content: space-between;
                align-items: center;
                border-radius: 22px;
                gap: 36px;
                height: 275px;
                background-color: white;
                box-shadow: 0px 0px 60px 0px #262D7614;
                padding-left: 30px;

                .stat_percint {
                    display: flex;
                    justify-content: center;
                    align-items: start;
                    flex-direction: column;
                    gap: 49px;
                    width: 253px;
                    height: 100%;
                    border-radius: 0 22px 22px 0;
                    padding: 17px 19px;
                    background: linear-gradient(270deg, #47A3D1 0%, #3C92C6 37.71%, #2A77B3 100%);

                    .header_percint {
                        position: relative;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        width: 170px;
                        height: 30px;
                        background-color: white;
                        border: 1px solid var(--blue-light);
                        border-radius: 20px;
                        font-size: 14px;
                        font-weight: var(--font-medium);
                        color: black;

                        .icon {
                            position: absolute;
                            right: 2px;
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            width: 26px;
                            height: 26px;
                            border-radius: 20px;
                            background-color: var(--light-blue-normal);

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

                    .body_percint {
                        display: flex;
                        justify-content: space-between;
                        align-items: start;
                        flex-direction: column;
                        gap: 11px;
                        color: white;

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


                            h3 {
                                font-size: var(--h1-font-size);
                                font-weight: var(--font-medium);
                                line-height: 0.8;
                            }

                            .reda {
                                font-size: 12px;
                                font-weight: 900;
                            }
                        }

                        p {
                            font-size: 12px;
                            font-weight: var(--font-regular);
                        }
                    }
                }

                .stat {
                    display: flex;
                    justify-content: center;
                    align-items: start;
                    flex-direction: column;
                    gap: 10px;
                    width: 230px;

                    .header_stat {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        gap: 5px;

                        p {
                            font-size: 16px;
                            font-weight: var(--font-medium);
                        }

                        .icon {
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            border-radius: 20px;

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

                    .bar {
                        position: relative;
                        width: 100%;
                        height: 8px;
                        background-color: var(--light-blue-light);
                        border-radius: 10px;

                        .progress {
                            position: absolute;
                            width: 0;
                            top: 0;
                            right: 0;
                            height: 100%;
                            border-radius: 20px;
                            transition: width 2s cubic-bezier(0.22, 1, 0.36, 1);
                        }
                    }

                    .stat_num {
                        font-size: var(--paragraph-size);
                        font-weight: var(--font-bold);
                        color: #171B41;
                    }
                }

                .stat1 {

                    .header_stat {

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

                        .icon {

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

                    .bar {

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

                .stat2 {

                    .header_stat {

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

                        .icon {

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

                    .bar {

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

                .stat3 {

                    .header_stat {

                        p {
                            color: var(--blue-normal);
                        }

                        .icon {

                            i {
                                color: var(--blue-normal);
                            }
                        }
                    }

                    .bar {

                        .progress {
                            background-color: var(--blue-normal);
                        }
                    }
                }
            }
        }
    }
}

/*=============== USER TYPE ===============*/
.user__type {
    padding-block: 12.875rem;

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

        .user__type__content {
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-direction: column;
            padding: 67px 10px 10px 10px;
            gap: 50px;
            border: 4px solid var(--light-blue-normal);
            border-bottom: none;
            border-radius: 22px;
            width: 95%;

            h2 {
                font-size: var(--h2-font-size);
                font-weight: var(--font-bold);
                color: #171B41;
                text-align: center;
                width: 60%;
                margin-bottom: 6px;
            }

            .group__question {
                display: flex;
                justify-content: space-between;
                align-items: center;
                background: linear-gradient(90deg, rgba(202, 222, 238, 0.5) 0%, rgba(255, 255, 255, 0.5) 100%);
                padding-inline: 12px;

                h3 {
                    font-size: var(--title-size);
                    font-weight: var(--font-medium);
                    color: var(--blue-normal);
                }

            }

            p {
                font-size: var(--paragraph-size);
                font-weight: var(--font-medium);
                color: #696984;
            }

            a {
                position: relative;
                display: flex;
                justify-content: center;
                align-items: center;
                width: 437px;
                height: 52px;
                background-color: var(--blue-normal);
                border-radius: 8px;
                color: white;
                font-size: var(--paragraph-size);
                font-weight: var(--font-bold);
                transition: background-color 0.3s ease;
                margin-top: 7.5rem;

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

                &::after,
                &::before {
                    content: '';
                    position: absolute;
                    top: 50%;
                    background-image: url(../image/arrow.webp);
                    background-size: cover;
                    background-position: center;
                    background-repeat: no-repeat;
                    width: 130.5px;
                    height: 33px;
                }

                &::after {
                    right: -155px;
                    transform: translateY(-50%) rotate(180deg);
                    animation: arrowRight 1.5s ease-in-out infinite;
                }

                &::before {
                    left: -155px;
                    transform: translateY(-50%);
                    animation: arrowLeft 1.5s ease-in-out infinite;
                }
            }

            img {
                position: absolute;
                width: 300px;
                height: 300px;
                object-fit: cover;
                border: 3px solid var(--light-blue-light);
                border-radius: 50%;
                box-shadow: 0px 5px 14px 0px #47A3D147;
            }

            .img1 {
                bottom: -20px;
                left: -70px;
            }

            .img2 {
                bottom: -20px;
                right: -70px;
            }

        }
    }
}

/*=============== BENEFITS ===============*/
.benefits {
    padding-block: 80px;

    .benefits__container {

        .benefits__content {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            gap: 91px;

            .benefits__header {
                display: flex;
                justify-content: center;
                align-items: center;
                flex-direction: column;
                gap: 8px;
                margin-bottom: 8px;

                h2 {
                    font-size: var(--h2-font-size);
                    font-weight: var(--font-bold);
                    color: var(--green-normal);
                    text-align: center;

                    span {
                        color: var(--yellow-normal);
                    }
                }

                p {
                    font-size: var(--paragraph-size);
                    font-weight: var(--font-medium);
                    color: #696984;
                    text-align: center;
                }
            }

            .benefits__group__imgs {
                position: relative;
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 95px;
                padding-block: 90px 40px;
                padding-inline: 32px;
                background: #F4F4F499;
                backdrop-filter: blur(80px);
                border-radius: 20px;
                z-index: 1;

                .group__imgs {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    gap: 12.5px;

                    .imgs {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        flex-direction: column;
                        gap: 14px;

                        .img {
                            position: relative;
                            width: 166.3740234375px;
                            height: 166.3740234375px;
                            border-radius: 10px;

                            img {
                                width: 100%;
                                height: 100%;
                                object-fit: cover;
                                border-radius: 10px;
                            }
                        }
                    }

                    .hero__img {
                        height: 345px;

                        .img {
                            position: relative;
                            width: 202px;
                            height: 100%;
                            border-radius: 10px;

                            img {
                                width: 100%;
                                height: 100%;
                                object-fit: cover;
                                border-radius: 10px;
                            }
                        }
                    }

                }

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

                    .img {
                        position: relative;
                        width: 255.3379px;
                        height: 246.82662963867188px;
                        border-radius: 17px;
                        backdrop-filter: blur(51px);

                        img {
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                            border-radius: 17px;
                            backdrop-filter: blur(51px);
                        }
                    }

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

                        .live {
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            gap: 10px;
                            width: 169px;
                            height: 65px;
                            padding: 0 20px;
                            border-radius: 51px;
                            background-color: #F39200;
                            border: 5px solid #F9e7ba;
                            font-size: 22px;
                            font-weight: var(--font-regular);
                            color: white;
                            box-shadow: 0px 8.51px 20.43px 0px #F392004D;
                        }

                        .meet {
                            display: flex;
                            justify-content: end;
                            align-items: center;
                            gap: 10px;
                            width: 165px;
                            height: 51px;
                            padding: 0 12px;
                            border-radius: 51px;
                            background-color: var(--blue-normal-hover);
                            font-size: 22px;
                            font-weight: var(--font-regular);
                            color: white;
                            margin-right: -50px;
                            z-index: -1;
                        }
                    }
                }

                .header_group {
                    position: absolute;
                    display: flex;
                    justify-content: end;
                    align-items: center;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 35px;
                    padding-inline: 31px;
                    background: #EAEAEA99;
                    backdrop-filter: blur(80px);
                    border-radius: 20px 20px 0 0;
                    gap: 5px;

                    .yallow {
                        width: 15px;
                        height: 15px;
                        background-color: #F6C566;
                        border-radius: 50%;
                    }

                    .green {
                        width: 15px;
                        height: 15px;
                        background-color: #5BEB7B;
                        border-radius: 50%;
                    }

                    .red {
                        width: 15px;
                        height: 15px;
                        background-color: #EE6767;
                        border-radius: 50%;
                    }
                }

                .data_img {
                    position: absolute;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    padding: 5px;
                    background: #C9D3E766;
                    backdrop-filter: blur(11px);
                    border-radius: 5.55px;
                    bottom: 10px;
                    left: 10px;
                    gap: 6px;
                    width: fit-content;
                    color: white;

                    h3 {
                        font-size: 11px;
                        font-weight: var(--font-semi-bold);
                    }

                    span {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        background-color: var(--light-blue-normal);
                        border-radius: 3.55px;
                        padding: 1px 7px;
                        font-size: 10px;
                        font-weight: var(--font-semi-bold);
                    }

                    i {
                        font-size: 10px;
                    }
                }

            }

            .circle1 {
                position: absolute;
                width: 140px;
                height: 140px;
                border-radius: 50%;
                background-color: var(--light-blue-normal);
                top: 12%;
                left: 14%;
                z-index: 0;
            }

            .circle2 {
                position: absolute;
                width: 264px;
                height: 264px;
                border-radius: 50%;
                background-color: var(--yellow-normal);
                top: 43%;
                right: 22%;
                z-index: 0;
            }

            .circle3,
            .circle4 {
                position: absolute;
                width: 30px;
                height: 30px;
                border-radius: 50%;
                z-index: 0;
            }

            .circle3 {
                background-color: var(--yellow-normal);
                top: 16%;
                left: 10%;
            }

            .circle4 {
                background-color: var(--blue-normal);
                top: 60.5%;
                right: 50%;
            }

            .benefits__text {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                row-gap: 17.5px;
                column-gap: 90px;
                justify-items: center;
                align-self: center;

                .text {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    gap: 13px;
                    padding: 14px 18px;
                    box-shadow: 0px 10.96px 65.79px 0px #262D7614;
                    border-radius: 8.77px;
                    max-width: 457px;
                    background-color: white;
                    z-index: 1;

                    .squares {
                        display: grid;
                        grid-template-columns: repeat(2, 1fr);
                        gap: 2px;
                        justify-items: center;
                        align-self: center;

                        .square {
                            width: 13px;
                            height: 13px;
                            background-color: var(--blue-normal);
                            border-radius: 2px;
                        }
                    }

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

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

                        p {
                            font-size: 17px;
                            font-weight: var(--font-medium);
                            color: var(--blue-normal);
                        }
                    }

                    &:nth-child(1) {

                        .squares {
                            .square {

                                &:nth-child(1) {
                                    background-color: var(--yellow-normal);
                                }
                            }
                        }

                    }

                    &:nth-child(2) {

                        .squares {
                            .square {

                                &:nth-child(1),
                                &:nth-child(2) {
                                    background-color: var(--yellow-normal);
                                }
                            }
                        }

                    }

                    &:nth-child(3) {

                        .squares {
                            .square {

                                &:nth-child(1),
                                &:nth-child(2),
                                &:nth-child(3) {
                                    background-color: var(--yellow-normal);
                                }
                            }
                        }

                    }

                    &:nth-child(4) {

                        .squares {
                            .square {

                                &:nth-child(1),
                                &:nth-child(2),
                                &:nth-child(3),
                                &:nth-child(4) {
                                    background-color: var(--yellow-normal);
                                }
                            }
                        }

                    }

                    &:nth-child(5) {

                        .squares {
                            .square {

                                &:nth-child(1),
                                &:nth-child(2),
                                &:nth-child(3),
                                &:nth-child(4),
                                &:nth-child(5) {
                                    background-color: var(--yellow-normal);
                                }
                            }
                        }

                    }

                    &:nth-child(6) {

                        .squares {
                            .square {

                                background-color: var(--yellow-normal);
                            }
                        }

                    }
                }

            }
        }
    }
}

/*=============== STUDENTS SHOWCASE ===============*/
.students__showcase {
    padding-bottom: 7rem;

    .students__container {
        position: relative;

        .students__content {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            gap: 46px;

            h2 {
                position: relative;
                font-size: 40px;
                font-weight: var(--font-bold);
                color: var(--yellow-normal);
                z-index: 1;

                span {
                    color: var(--blue-normal);
                }

                &::before {
                    position: absolute;
                    content: '';
                    width: 40px;
                    height: 40px;
                    background-color: #FDF7E9;
                    bottom: -5px;
                    left: -10px;
                    border-radius: 50%;
                    z-index: -1;
                }

                &::after {
                    position: absolute;
                    content: '';
                    width: 73px;
                    height: 73px;
                    background-color: var(--blue-light);
                    top: -5px;
                    right: -10px;
                    border-radius: 50%;
                    z-index: -1;
                }
            }

            .students__swiper {
                max-width: 637px;
                height: 440px;
                border-radius: 8px;

                .video-card {
                    height: 100%;
                }

                .slide-video {
                    width: 100%;
                    height: 100%;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    object-fit: cover;
                    border-radius: 8px;

                    .video-card {
                        position: relative;
                        width: 100%;
                        height: 100%;
                        border-radius: 8px;
                        overflow: hidden;

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

                }

                .play-btn {
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    width: 60px;
                    height: 60px;
                    background-color: white;
                    color: var(--blue-normal);
                    border-radius: 50%;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    font-size: 24px;
                    cursor: pointer;
                    transition: all 0.3s ease-in-out;

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

            .custom-nav {
                position: absolute;
                display: flex;
                justify-content: space-between;
                align-items: center;
                width: 75%;
                top: 60%;
                transform: translateY(-50%);

                .my-prev,
                .my-next {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    width: 72px;
                    height: 72px;
                    background-color: white;
                    color: #696984;
                    border-radius: 50%;
                    font-size: var(--paragraph-size);
                    cursor: pointer;
                    box-shadow: 0px 3.6px 54px 0px #292C7C26;
                    transition: all 0.3s ease-in-out;

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

            &::before {
                position: absolute;
                content: '';
                width: 118.58483123779297px;
                height: 118.58483123779297px;
                background-color: var(--blue-normal);
                border-radius: 17px;
                top: 17%;
                left: 24.5%;
                z-index: 0;
                animation: float 4s ease-in-out infinite;
            }

            &::after {
                position: absolute;
                content: '';
                width: 198.5006866455078px;
                height: 198.5006866455078px;
                background-color: var(--yellow-normal);
                border-radius: 17px;
                top: 67%;
                left: 60.5%;
                z-index: 0;
                animation: float 4s ease-in-out infinite;
            }
        }

        &::before {
            position: absolute;
            content: '';
            width: 30px;
            height: 30px;
            background-color: var(--blue-light);
            border-radius: 50%;
            top: 100%;
            left: 22%;
            z-index: 0;
        }
    }
}

/*==================== SUBSCRIPTION ====================*/
.subscription {
    .subscription__container {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;

        .subscription__content {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            gap: 36px;
            max-width: 90%;
            width: 100%;
            padding: 55px 40px 30px 40px;
            border: 1px solid var(--light-blue-light);
            border-radius: 6px;
            box-shadow: 0px 4px 224px 0px #B6C3C95C;

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

                h2 {
                    font-size: 32px;
                    font-weight: var(--font-bold);
                    color: #252641;
                }

                p {
                    position: relative;
                    font-size: var(--paragraph-size);
                    font-weight: var(--font-regular);
                    color: #696984;

                    &::before {
                        position: absolute;
                        content: '';
                        width: 180px;
                        height: 2px;
                        background-color: #BDD5E733;
                        top: 60%;
                        left: 165%;
                        transform: translate(-50%, -50%);
                    }

                    &::after {
                        position: absolute;
                        content: '';
                        width: 180px;
                        height: 2px;
                        background-color: #BDD5E733;
                        top: 60%;
                        right: 70%;
                        transform: translate(-50%, -50%);
                    }
                }
            }

            .subscription__steps {
                display: flex;
                justify-content: center;
                align-items: center;
                flex-direction: column;
                gap: 18px;

                .img {
                    position: relative;
                    max-width: 90%;
                    width: 100%;
                    height: auto;

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

                    .step {
                        position: absolute;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        flex-direction: column;
                        text-align: center;

                        span {
                            font-size: 165px;
                            font-weight: var(--font-bold);
                            color: #E3E3E3;
                            line-height: 0.8;
                        }

                        .dote {
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            width: 55px;
                            height: 55px;
                            border-radius: 17px;
                        }

                        p {
                            font-size: var(--note-size);
                            font-weight: var(--font-bold);
                        }
                    }

                    .step1 {
                        gap: 10px;
                        top: -39%;
                        left: -50px;


                        .dote {
                            border: 2px solid var(--light-blue-normal);
                            color: var(--light-blue-normal);
                        }

                        p {
                            color: #47A3D1;
                            width: 153px;
                        }
                    }

                    .step2 {
                        gap: 10px;
                        top: 15.5%;
                        left: 30%;


                        .dote {
                            border: 2px solid var(--yellow-normal);
                            color: var(--yellow-normal);
                        }

                        p {
                            color: var(--yellow-normal);
                            width: 153px;
                        }
                    }

                    .step3 {
                        gap: 10px;
                        top: 33.5%;
                        left: 72%;


                        .dote {
                            border: 2px solid var(--blue-normal);
                            color: var(--blue-normal);
                            order: 3;
                        }

                        p {
                            color: var(--blue-normal);
                            width: 153px;
                        }
                    }
                }

                a {
                    width: 100%;
                    height: 48px;
                    background: linear-gradient(90deg, #2A77B3 0%, #47A3D1 100%);
                    gap: 13px;
                    border-radius: 8px;
                    color: white;
                    font-size: var(--paragraph-size);
                    font-weight: var(--font-medium);
                    transition: all 0.3s ease-in-out;

                    i {
                        transition: transform 0.3s ease-in-out;
                    }

                    &:hover {
                        filter: brightness(1.08);

                        i {
                            transform: translateX(5px);
                        }

                    }
                }
            }
        }
    }
}

/*==================== PROGRAMS ====================*/
.programs {

    .programs__container {

        .programs__content {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            gap: 70px;

            .programs__header {
                display: flex;
                justify-content: center;
                align-items: center;
                flex-direction: column;
                gap: 10px;

                h2 {
                    font-size: 40px;
                    font-weight: var(--font-bold);
                    color: #252641;
                }

                p {
                    font-size: var(--paragraph-size);
                    font-weight: var(--font-regular);
                    color: #696984;
                }

                a {
                    width: 308px;
                    height: 52px;
                    font-size: 18px;
                    font-weight: var(--font-bold);
                    color: white;
                    border-radius: 8px;
                    background: linear-gradient(90deg, #F48C06 0%, #EBB220 100%);
                    margin-top: 16px;
                    transition: filter 0.3s ease-in-out, transform 0.3s ease-in-out;

                    &:hover {
                        filter: brightness(1.08);
                        transform: translateY(-2px);
                    }
                }


            }

            .prgrams__items {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 37px;

                .item {
                    position: relative;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    flex-direction: column;
                    text-align: center;
                    /* gap: 19px; */
                    max-width: 306px;
                    border-radius: 18px;
                    background-color: white;
                    padding: 66px 13px 27px 13px;
                    box-shadow: 0px 10px 60px 0px #262D7614;
                    animation: float 2s ease-in-out infinite;

                    .icon {
                        position: absolute;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        width: 76px;
                        height: 76px;
                        border-radius: 50%;
                        color: white;
                        box-shadow: 0px 12.16px 30.4px 0px #252C711A;
                        font-size: 30px;
                        top: -2px;
                        left: 50%;
                        transform: translate(-50%, -50%);
                    }

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

                        h3 {
                            font-size: 24px;
                            font-weight: var(--font-bold);
                            margin-bottom: 8px;
                        }

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

                        a {
                            width: 100%;
                            height: 42px;
                            color: white;
                            font-size: var(--note-size);
                            font-weight: var(--font-medium);
                            border-radius: 26px;
                            transition: all 0.3s ease-in-out;
                        }
                    }

                    &:nth-child(1) {
                        margin-top: 40px;

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

                        .text {

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

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

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

                    &:nth-child(2) {

                        .icon {
                            background-color: var(--yellow-normal);
                        }

                        .text {

                            h3 {
                                color: var(--yellow-normal);
                            }

                            a {
                                background-color: var(--yellow-normal);

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

                    &:nth-child(3) {
                        margin-top: 60px;

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

                        .text {

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

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

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

                            }
                        }
                    }
                }
            }
        }
    }
}

/*==================== COURSE FEATURES ====================*/
.course__features {
    .course__features__container {
        .course__features__content {
            display: flex;
            justify-content: space-between;
            align-items: center;

            .course__features__data {
                display: flex;
                justify-content: space-between;
                align-items: start;
                flex-direction: column;
                gap: 49px;

                .data__header {
                    display: flex;
                    justify-content: space-between;
                    align-items: start;
                    flex-direction: column;
                    gap: 12px;
                    max-width: 587px;

                    h2 {
                        font-size: 40px;
                        font-weight: var(--font-bold);
                        color: var(--blue-normal);

                        span {
                            color: var(--yellow-normal);
                        }
                    }

                    p {
                        font-size: var(--paragraph-size);
                        font-weight: var(--font-regular);
                        color: #6B6B6B;
                    }
                }

                .features__items {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    gap: 17.5px;

                    .itms_group {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        flex-direction: column;
                        gap: 18px;

                        .item {
                            position: relative;
                            display: flex;
                            justify-content: space-between;
                            align-items: center;
                            height: 128px;
                            gap: 22px;
                            border-radius: 18px;
                            padding: 21px 22px 16px 6px;
                            box-shadow: 0px 18.21px 52.8px 0px #282B6F14;

                            .icon {
                                display: flex;
                                justify-content: center;
                                align-items: center;
                                width: 67px;
                                height: 67px;
                                border-radius: 50%;

                                i {
                                    font-size: 25px;
                                }
                            }

                            .item__text {
                                display: flex;
                                justify-content: space-between;
                                align-items: start;
                                flex-direction: column;

                                h3 {
                                    font-size: 18px;
                                    font-weight: var(--font-bold);
                                    color: #252641;
                                }

                                p {
                                    font-size: var(--note-size);
                                    font-weight: var(--font-regular);
                                    color: #696984;
                                    max-width: 249px;
                                }
                            }

                            &:nth-child(1) {
                                .icon {
                                    background-color: #FDF7E9;
                                    color: var(--yellow-normal);
                                }

                                &::after {
                                    position: absolute;
                                    content: '';
                                    width: 38px;
                                    height: 38px;
                                    background-color: #FDF7E9;
                                    border-radius: 50%;
                                    bottom: 25px;
                                    left: 20px;
                                    z-index: -1;
                                }
                            }

                            &:nth-child(2) {
                                .icon {
                                    background-color: var(--blue-light);
                                    color: var(--blue-normal);
                                }

                                &::after {
                                    position: absolute;
                                    content: '';
                                    width: 32px;
                                    height: 32px;
                                    background-color: var(--blue-light);
                                    border-radius: 50%;
                                    bottom: 30px;
                                    left: 140px;
                                    z-index: -1;
                                }
                            }
                        }
                    }

                    .itms_group2 {
                        height: 274.033203125px;

                        .item {
                            position: relative;
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            flex-direction: column;
                            max-width: 181px;
                            height: 100%;
                            padding: 10px;
                            gap: 20px;
                            border-radius: 18px;
                            box-shadow: 0px 18.21px 52.8px 0px #282B6F14;

                            .icon {
                                display: flex;
                                justify-content: center;
                                align-items: center;
                                width: 67px;
                                height: 67px;
                                border-radius: 50%;
                                background-color: var(--blue-light);

                                i {
                                    font-size: 25px;
                                    color: var(--light-blue-normal);
                                }
                            }

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

                                h3 {
                                    font-size: 18px;
                                    font-weight: var(--font-bold);
                                    color: #252641;
                                }

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

                            &::after {
                                position: absolute;
                                content: "";
                                width: 21px;
                                height: 21px;
                                background-color: var(--blue-light);
                                border-radius: 50%;
                                left: 35px;
                                bottom: 35px;
                                z-index: -1;
                            }
                        }
                    }
                }

                a {
                    width: 100%;
                    height: 52px;
                    background: linear-gradient(90deg, #37B1EE 0%, #0A8FCE 100%);
                    border-radius: 8px;
                    font-size: var(--paragraph-size);
                    font-weight: var(--font-medium);
                    color: white;
                    transition: all 0.3s ease-in-out;

                    &:hover {
                        filter: brightness(1.08);
                    }
                }
            }

            .course__features__img {
                position: relative;
                display: flex;
                justify-content: center;
                align-items: center;
                flex-direction: column;
                gap: 28px;
                text-align: center;
                width: 466px;
                height: 523px;
                border: 4px solid white;
                border-radius: 18px;
                background-color: var(--blue-light);
                box-shadow: 0px 9.1px 43.69px 0px #282B6F1A;

                img {
                    width: 239px;
                    height: 296.44px;
                }

                h3 {
                    position: relative;
                    font-size: 35px;
                    font-weight: var(--font-bold);
                    background: linear-gradient(267.28deg, #3294C5 19.64%, #62BAFF 83.33%);
                    -webkit-background-clip: text;
                    -webkit-text-fill-color: transparent;
                    width: 70%;
                    z-index: 1;

                    /* &::after {
                        position: absolute;
                        content: 'كل المميزات في مكان واحد';
                        width: 100%;
                        height: 100%;
                        text-shadow: 0px 4.46px 0px #FFFFFF;
                        top: 50%;
                        right: 50%;
                        transform: translate(50%, -50%);
                        z-index: 0;
                    } */
                }

                .icon {
                    position: absolute;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    width: 51px;
                    height: 51px;
                    color: white;
                    font-size: 25px;
                    border-radius: 50%;
                    animation: float 2s ease-in-out infinite;
                }

                .icon1 {
                    background-color: var(--light-blue-normal);
                    top: 15px;
                    left: 15px;
                }

                .icon2 {
                    background-color: var(--yellow-normal);
                    top: 65px;
                    right: 15px;
                }

                .icon3 {
                    background-color: var(--yellow-normal);
                    bottom: 150px;
                    left: 25px;
                }

                .icon4 {
                    background-color: var(--blue-normal);
                    bottom: 55px;
                    right: 25px;
                }

                &::before {
                    position: absolute;
                    content: "";
                    width: 23px;
                    height: 23px;
                    border-radius: 50%;
                    background-color: var(--light-blue-normal);
                    border: 15px solid var(--blue-light-hover);
                    top: -60px;
                    right: -15px;
                }
            }
        }
    }
}

/*==================== TEACHERS ====================*/
.teachers {
    padding-block: 11.375rem;

    .teachers__container {

        .teachers__content {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            gap: 55px;

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

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

                    span {
                        color: #696984;
                    }
                }

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

                a {
                    width: 203px;
                    height: 41px;
                    font-size: var(--note-size);
                    font-weight: var(--font-bold);
                    color: white;
                    background-color: var(--yellow-normal);
                    border-radius: 4px;
                    margin-top: 26px;
                    text-shadow: 0px 3.15px 11.02px #FFFFFF80;
                    transition: all 0.3s ease-in-out;

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

            .teachers__swiper {
                width: 100%;
                height: fit-content;

                .teacher__slide {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    flex-direction: column;
                    text-align: center;
                    gap: 10px;
                    /* margin-left: 50px !important; */

                    .img {
                        position: relative;
                        display: flex;
                        justify-content: center;
                        align-items: end;
                        width: 285.68px;
                        height: 351.95px;
                        overflow: hidden;

                        img {
                            width: 100%;
                            height: 290.4986267089844px;
                            object-fit: cover;
                            object-position: top;
                        }
                    }

                    .data_teacher {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        flex-direction: column;
                        gap: 3.15px;
                        width: 155.7875px;

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

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

                .teacher--blue {
                    .img {
                        background-color: var(--light-blue-normal);
                        clip-path: path('M0 50C102.85 100 205.54 100 285.68 50V301.95C205.54 351.95 102.85 382.95 0 301.95V50Z');
                    }
                }

                .teacher--yellow {
                    .img {
                        clip-path: path('M0 50C102.85 0 205.54 0 285.68 50V301.95C205.54 251.95 102.85 220.95 0 301.95V50Z');
                        background-color: var(--yellow-normal);

                        img {
                            height: 325.498627px;
                        }
                    }
                }
            }

            .teachers-pagination {
                display: flex;
                justify-content: center;
                align-items: center;
                margin-top: 73px;
                gap: 14px;
                width: 100%;
                flex-wrap: wrap;

                .swiper-pagination-bullet {
                    width: 64px;
                    height: 9px;
                    background-color: var(--blue-light);
                    border-radius: 8px;
                }

                .swiper-pagination-bullet-active {
                    background-color: var(--light-blue-normal);
                }
            }
        }
    }
}

/*==================== STUDENT TESTIMONIALS ====================*/
.student__testimonials {
    padding-block: 100px 130px;
    background-color: #F8FAFD;

    .student__testimonials__container {

        .student__testimonials__content {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            gap: 108px;

            .student__testimonials__header {
                display: flex;
                justify-content: center;
                align-items: center;
                flex-direction: column;
                gap: 24px;

                h2 {
                    font-size: 40px;
                    font-weight: var(--font-bold);
                    color: #252641;
                }

                .stars__pra {
                    display: flex;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    flex-direction: column;
                    gap: 11.5px;

                    .stars {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        gap: 8px;
                        text-shadow: 0px 4px 4px #FBA33352;


                        i {
                            color: var(--yellow-normal);
                            font-size: 25px;
                        }
                    }

                    .pra {
                        padding: 2.5px 10px;
                        border-radius: 2px;
                        background-color: var(--light-blue-normal);

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

                }

            }

            .testimonials__swiper {
                width: 75%;
                height: fit-content;

                .testimonial__slide {
                    width: 307px;
                    height: 486.39422607421875px;
                    border-radius: 20px;
                    opacity: 0.5;
                    transform: scale(0.9);
                    transition: transform 0.4s ease, opacity 0.4s ease;

                    img {
                        width: 100%;
                        height: 100%;
                        border-radius: 20px;
                    }
                }

                .swiper-slide-active.testimonial__slide {
                    opacity: 1;
                    transform: scale(1);
                }
            }

            .custom-nav {
                position: absolute;
                display: flex;
                justify-content: space-between;
                align-items: center;
                width: 100%;
                top: 70%;
                transform: translateY(-50%);
                z-index: 5;

                .my-prev-testimonials,
                .my-next-testimonials {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    width: 60px;
                    height: 60px;
                    background-color: white;
                    color: #696984;
                    border-radius: 50%;
                    font-size: var(--paragraph-size);
                    cursor: pointer;
                    box-shadow: 0px 3.01px 45.12px 0px #292C7C26;
                    transition: all 0.3s ease-in-out;

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

/*==================== REAL EXPERIENCE ====================*/
.real__experience {
    position: relative;
    padding-block: 14rem 12.5rem;

    .real__experience__container {

        .real__experience__content {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            gap: 60px;
            z-index: 1;

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

                h2 {
                    font-size: 40px;
                    font-weight: var(--font-bold);
                    color: var(--light-blue-normal);
                    text-align: center;

                    span {
                        color: var(--yellow-normal);
                    }
                }

                p {
                    font-size: var(--paragraph-size);
                    font-weight: var(--font-regular);
                    color: #6B6B6B;
                    width: 75%;
                }

                a {
                    width: 308px;
                    height: 52px;
                    border-radius: 8px;
                    font-size: var(--paragraph-size);
                    font-weight: var(--font-medium);
                    color: white;
                    margin-top: 8px;
                    background: linear-gradient(90deg, #47A3D1 0%, #47A3D1 100%);
                    transition: all 0.3s ease-in-out;

                    &:hover {
                        filter: brightness(1.08);
                    }
                }
            }

            .real__experience__video {
                position: relative;
                width: 80%;
                height: 671px;
                padding: 15px;
                background-color: white;
                border-radius: 20px;

                iframe {
                    width: 100%;
                    height: 100%;
                    border: none;
                }

                &::before {
                    position: absolute;
                    content: '';
                    inset: -1px;
                    background: radial-gradient(94.82% 426.01% at 6.81% 11.21%, #47A3D1 4.33%, rgba(181, 181, 181, 0.32) 40.87%, #FFBC11 95.67%);
                    z-index: -1;
                    border-radius: 20px;
                }
            }
        }
    }

    &::before {
        position: absolute;
        content: '';
        width: 191px;
        height: 353px;
        background: linear-gradient(120deg, #47A3D1, #2A77B3);
        filter: blur(200px);
        top: 60%;
        left: 10%;
        transform: translateY(-50%);
        z-index: 0;
    }

    &::after {
        position: absolute;
        content: '';
        width: 191px;
        height: 353px;
        background: radial-gradient(circle at 10% 10%, #EBB220, #CD9E43);
        filter: blur(200px);
        top: 60%;
        right: 10%;
        transform: translateY(-50%);
        z-index: 0;
    }
}

/*==================== 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;
        }
    }
}

/*=============== WATCH VIDEO ===============*/
.myvideo {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.myvideo.show {
    opacity: 1;
    visibility: visible;
}

.myvideo .video_container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.myvideo video {
    width: 100%;
    max-width: 60%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0px 1px 250px 0px #CCD0D366;
    border: 10px solid var(--blue-light);
}

.myvideo .closeVideo {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 25px;
    color: var(--blue-normal);
    cursor: pointer;
    z-index: 2;
}

/*=============== 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;
            }
        }
    }

    /*=============== HOME ===============*/
    .home {
        max-height: 120vh;
        padding-top: 13rem;

        .home__container {
            .home__content {
                gap: 60px;

                .home__text {
                    gap: 26px;

                    h1 {
                        font-size: 36px;
                    }

                    p {
                        max-width: 700px;
                    }
                }

                .home__img {
                    width: 760px;
                    height: 540px;
                    margin-bottom: -6rem;

                    img {
                        border-width: 12px;
                    }
                }
            }
        }

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

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

    /*=============== PLATFORM STATS ===============*/
    .platform__stats {
        padding-top: 9rem;

        .platform__container {
            .platform__content {
                gap: 40px;

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

                .stats_data {
                    gap: 28px;
                    height: 260px;

                    .stat_percint {
                        width: 230px;
                        gap: 40px;

                        .header_percint {
                            width: 160px;
                        }
                    }

                    .stat {
                        width: 210px;
                    }
                }
            }
        }
    }

    /*=============== USER TYPE ===============*/
    .user__type {
        padding-block: 11rem;
        padding-inline: 7rem;

        .user__type__container {
            .user__type__content {
                width: 100%;
                max-width: 1100px;
                padding: 60px 16px 16px 16px;
                gap: 42px;

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

                a {
                    max-width: 300px;
                    margin-top: 6.5rem;

                    &::after,
                    &::before {
                        width: 100px;
                        height: 24px;
                    }

                    &::after {
                        right: -135px;
                    }

                    &::before {
                        left: -135px;
                    }
                }

                img {
                    width: 230px;
                    height: 230px;
                }

                .img1 {
                    left: -100px;
                }

                .img2 {
                    right: -100px;
                }
            }
        }
    }

    /*=============== BENEFITS ===============*/
    .benefits {
        padding-block: 70px;

        .benefits__container {
            .benefits__content {
                gap: 75px;

                .benefits__group__imgs {
                    gap: 60px;
                    padding-block: 80px 35px;

                    .group__imgs {
                        gap: 10px;

                        .imgs {
                            .img {
                                width: 150px;
                                height: 150px;
                            }
                        }

                        .hero__img {
                            height: 310px;

                            .img {
                                width: 180px;
                            }
                        }
                    }

                    .group__imgs1 {
                        .img {
                            width: 220px;
                            height: 210px;
                        }
                    }
                }

                .benefits__text {
                    column-gap: 60px;

                    .text {
                        max-width: 400px;
                    }
                }
            }
        }
    }

    /*=============== STUDENTS SHOWCASE ===============*/
    .students__showcase {
        padding-bottom: 6rem;

        .students__container {
            .students__content {
                gap: 40px;

                h2 {
                    font-size: 36px;
                }

                .students__swiper {
                    max-width: 580px;
                    height: 400px;
                }

                .custom-nav {
                    width: 80%;

                    .my-prev,
                    .my-next {
                        width: 64px;
                        height: 64px;
                    }
                }
            }
        }
    }

    /*==================== SUBSCRIPTION ====================*/
    .subscription {
        .subscription__container {
            .subscription__content {
                padding: 50px 30px 28px;
                gap: 32px;

                .subscription__header {
                    h2 {
                        font-size: 28px;
                    }

                    p {

                        &::before,
                        &::after {
                            width: 140px;
                        }
                    }
                }

                .subscription__steps {
                    .img {
                        max-width: 100%;

                        .step {
                            z-index: 5;

                            span {
                                font-size: 130px;
                            }
                        }

                        .step1 {
                            left: -30px;
                            top: -41%;
                        }

                        .step2 {
                            top: 13.5%;
                        }

                        .step3 {
                            left: 70%;
                            top: 28.5%;
                        }
                    }
                }
            }
        }
    }

    /*==================== PROGRAMS ====================*/
    .programs {
        .programs__container {
            .programs__content {
                gap: 60px;

                .programs__header {
                    h2 {
                        font-size: 36px;
                    }

                    a {
                        width: 280px;
                        height: 50px;
                    }
                }

                .prgrams__items {
                    gap: 28px;

                    .item {
                        max-width: 280px;
                        padding: 60px 12px 25px;

                        .text {
                            h3 {
                                font-size: 22px;
                            }
                        }
                    }
                }
            }
        }
    }

    /*==================== COURSE FEATURES ====================*/
    .course__features {
        .course__features__container {
            .course__features__content {
                gap: 40px;

                .course__features__data {
                    gap: 40px;

                    .data__header {
                        h2 {
                            font-size: 34px;
                        }
                    }

                    .features__items {
                        gap: 14px;

                        .itms_group {
                            .item {
                                height: 120px;
                                padding: 18px;

                                .icon {
                                    width: 60px;
                                    height: 60px;
                                }
                            }
                        }

                        .itms_group2 {
                            .item {
                                max-width: 160px;
                            }
                        }
                    }
                }

                .course__features__img {
                    width: 420px;
                    height: 500px;

                    img {
                        width: 210px;
                    }

                    h3 {
                        font-size: 30px;
                    }
                }
            }
        }
    }

    /*==================== TEACHERS ====================*/
    .teachers {
        padding-block: 9rem;

        .teachers__container {
            .teachers__content {
                gap: 48px;

                .teachers__swiper {
                    .teacher__slide {
                        .img {
                            width: 250px;
                            height: 320px;

                            img {
                                height: 265px;
                            }
                        }

                        .data_teacher {
                            h3 {
                                font-size: 22px;
                            }
                        }
                    }

                    .teacher--blue {
                        .img {
                            clip-path: path('M0 45.45C90.0 90.9 180.0 90.9 250 45.45V274.55C180.0 320 90.0 347.73 0 274.55V45.45Z');
                        }
                    }

                    .teacher--yellow {
                        .img {
                            clip-path: path('M0 45.46C90 0 179.81 0 250 45.46V274.54C179.81 229.08 90 200.89 0 274.54V45.46Z');

                            img {
                                height: 295px;
                            }
                        }
                    }
                }

                .teachers-pagination {
                    margin-top: 60px;
                    gap: 12px;

                    .swiper-pagination-bullet {
                        width: 56px;
                    }
                }
            }
        }
    }

    /*==================== STUDENT TESTIMONIALS ====================*/
    .student__testimonials {
        padding-block: 90px 110px;

        .student__testimonials__container {
            .student__testimonials__content {
                gap: 90px;

                .student__testimonials__header {
                    gap: 20px;

                    h2 {
                        font-size: 36px;
                    }

                    .stars__pra {
                        .stars {
                            i {
                                font-size: 23px;
                            }
                        }
                    }
                }

                .testimonials__swiper {
                    width: 82%;

                    .testimonial__slide {
                        width: 280px;
                        height: 440px;
                    }
                }

                .custom-nav {

                    .my-prev-testimonials,
                    .my-next-testimonials {
                        width: 56px;
                        height: 56px;
                    }
                }
            }
        }
    }

    /*==================== REAL EXPERIENCE ====================*/
    .real__experience {
        padding-block: 12rem 10rem;

        .real__experience__container {
            .real__experience__content {
                gap: 50px;

                .real__experience__header {
                    h2 {
                        font-size: 36px;
                    }

                    p {
                        width: 82%;
                    }

                    a {
                        width: 290px;
                        height: 50px;
                    }
                }

                .real__experience__video {
                    width: 88%;
                    height: 580px;
                    padding: 13px;
                }
            }
        }

        &::before,
        &::after {
            width: 170px;
            height: 320px;
            filter: blur(180px);
        }
    }

    /*==================== 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;
            }
        }
    }

    /*=============== HOME ===============*/
    .home {
        max-height: auto;
        padding-top: 11rem;
        padding-bottom: 6rem;
        background-position: center;

        .home__container {
            .home__content {
                gap: 54px;

                .home__text {
                    gap: 24px;

                    .span__title {
                        height: 32px;
                        padding: 0 18px;
                        font-size: 18px;
                    }

                    h1 {
                        font-size: 40px;
                    }

                    p {
                        max-width: 620px;
                        font-size: var(--note-size);
                    }

                    .btn {
                        font-size: var(--paragraph-size);

                        .arrow {
                            width: 32px;
                            height: 32px;
                        }
                    }
                }

                .home__book {
                    border-width: 10px;
                    height: 476.9952697753906px;
                    width: 634px;

                    .img_book {
                        padding: 35px 33px 42px 33px;

                        .logo__book {
                            width: 84.48348999023438px;
                            height: 95.87108612060547px;
                        }

                        .img {
                            width: 291.05987548828125px;
                            height: 163.93592834472656px;
                            border-radius: 5px;

                            img {
                                border-radius: 5px;
                            }
                        }

                        .text__book {
                            max-width: 200px;
                            width: 100%;
                            gap: 6.5px;

                            h3 {
                                font-size: 14.26px;
                            }

                            p {
                                font-size: 9px;
                            }
                        }

                        &::before {
                            top: -40%;
                            right: -50%;
                        }
                    }

                    .book {

                        .book__session {
                            gap: 15px;
                            max-width: 229.8623809814453px;
                            border-radius: 5.35px;
                            padding: 20px 12px 15.5px 20px;

                            .img {
                                width: 46.328853607177734px;
                                height: 46.328853607177734px;
                            }

                            .book__session__text {
                                gap: 7.3px;

                                h3 {
                                    font-size: 14px;
                                }

                                p {
                                    font-size: 9px;
                                }
                            }

                            a {
                                height: 23px;
                                font-size: 9px;
                                border-radius: 14px;
                            }
                        }

                        .register_group_types {
                            gap: 5.35px;
                            top: 95%;

                            .type {
                                padding: 2px 3.5px;
                                height: 15px;
                                border-radius: 2px;

                                i {
                                    font-size: 6.24px;
                                }

                                h4 {
                                    font-size: 6.24px;
                                }
                            }
                        }
                    }
                }
            }
        }

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

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

    /*=============== PLATFORM STATS ===============*/
    .platform__stats {
        padding-top: 8rem;

        .platform__container {
            .platform__content {
                gap: 36px;

                h2 {
                    width: 100%;
                    max-width: 650px;
                    font-size: 24px;
                }

                .stats_data {
                    justify-content: center;
                    height: auto;
                    gap: 25px;


                    .stat {
                        width: 100%;
                        max-width: 182px;
                    }

                    .stat_percint {
                        width: 100%;
                        max-width: 220px;
                        border-radius: 0 17.5px 17.5px 0;

                        .header_percint {
                            width: 135px;
                            height: 23px;
                            border-radius: 16px;
                            font-size: 11px;

                            .icon {
                                right: 2px;
                                width: 21px;
                                height: 21px;
                                border-radius: 16px;

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

                        .body_percint {
                            gap: 9px;

                            .percint {
                                gap: 9px;


                                h3 {
                                    font-size: 51px;
                                    line-height: 0.8;
                                }

                                .reda {
                                    font-size: 10px;
                                }
                            }

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

                    .stat {
                        gap: 17px;
                        width: 230px;

                        .header_stat {

                            p {
                                font-size: 13px;
                            }

                            .icon {

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

                        .bar {
                            height: 6px;
                        }

                        .stat_num {
                            font-size: var(--note-size);
                        }
                    }
                }
            }
        }
    }

    /*=============== USER TYPE ===============*/
    .user__type {
        padding-block: 9rem;
        padding-inline: 5rem;

        .user__type__container {
            .user__type__content {
                padding: 52px 18px 18px 18px;
                gap: 34px;
                width: 100%;

                h2 {
                    width: 85%;
                    font-size: 32px;
                }

                .group__question {
                    padding-inline: 10px;

                    h3 {
                        font-size: var(--paragraph-size);
                    }
                }

                p {
                    font-size: 14px;
                    text-align: center;
                }

                a {
                    max-width: 255px;
                    height: 34px;
                    margin-top: 7rem;
                    font-size: var(--note-size);

                    &::after,
                    &::before {
                        width: 64px;
                        height: 16px;
                    }

                    &::after {
                        right: -100px;
                    }

                    &::before {
                        left: -100px;
                    }
                }

                img {
                    width: 195.7699432373047px;
                    height: 195.7699432373047px;
                }

                .img1 {
                    left: -50px;
                    bottom: -20px;
                }

                .img2 {
                    right: -50px;
                    bottom: -20px;
                }
            }
        }
    }

    /*=============== BENEFITS ===============*/
    .benefits {
        padding-block: 60px;

        .benefits__container {
            .benefits__content {
                gap: 53px;

                .benefits__header {
                    margin-bottom: 5px;

                    h2 {
                        font-size: 40px;
                    }

                    p {
                        font-size: 18px;
                    }
                }

                .benefits__group__imgs {
                    gap: 40px;
                    padding: 60px 20px 30px;

                    .group__imgs {
                        .imgs {
                            .img {
                                width: 121.14613342285156px;
                                height: 117.10792541503906px;
                            }
                        }

                        .hero__img {
                            height: 243.93203735351562px;

                            .img {
                                width: 147.08737182617188px;
                            }
                        }
                    }

                    .group__imgs1 {
                        .img {
                            width: 185.92564392089844px;
                            height: 184.56201171875px;
                        }

                        .group__meet {

                            .live {
                                width: 123px;
                                height: 47px;
                                font-size: var(--note-size);
                            }

                            .meet {
                                width: 140px;
                                height: 47px;
                                font-size: var(--note-size);
                            }
                        }
                    }

                    .data_img {
                        border-radius: 4px;
                        bottom: 6px;
                        left: 6px;
                        gap: 4px;
                        padding: 3px;

                        h3 {
                            font-size: 8px;
                        }

                        span {
                            border-radius: 4.55px;
                            font-size: 7px;
                        }

                        i {
                            font-size: 7px;
                        }
                    }

                    .header_group {
                        height: 25px;
                        border-radius: 14.5px 14.5px 0 0;

                        .yallow,
                        .green,
                        .red {
                            width: 10px;
                            height: 10px;
                        }
                    }
                }

                .benefits__text {
                    row-gap: 34px;
                    column-gap: 12px;
                    justify-items: start;

                    .text {
                        max-width: 100%;
                        width: 100%;
                        justify-content: start;

                        .squares {
                            .square {
                                width: 9px;
                                height: 9px;
                            }
                        }

                        .body_text {
                            h3 {
                                font-size: 15px;
                            }

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

                /* .circle1,
                .circle2,
                .circle3,
                .circle4 {
                    display: none;
                } */

                .circle1 {
                    width: 102px;
                    height: 102px;
                    top: 14%;
                    left: 5%;
                }

                .circle2 {
                    width: 192.23301696777344px;
                    height: 192.23301696777344px;
                    top: 40%;
                }

                .circle3 {
                    width: 21.84465980529785px;
                    height: 21.84465980529785px;
                    top: 13%;
                    left: 4%;
                }

                .circle4 {
                    width: 21.8447px;
                    height: 21.8447px;
                    top: 60.5%;
                    right: 45%;
                }
            }
        }
    }

    /*=============== STUDENTS SHOWCASE ===============*/
    .students__showcase {
        padding-bottom: 5.5rem;

        .students__container {
            .students__content {
                gap: 61px;

                h2 {
                    font-size: 36px;
                    text-align: center;
                }

                .students__swiper {
                    height: 360px;
                    max-width: 540px;
                }

                .custom-nav {
                    width: 90%;
                    top: 58%;

                    .my-prev,
                    .my-next {
                        width: 60px;
                        height: 60px;
                        font-size: 18px;
                    }
                }

                &::before {
                    top: 20%;
                    left: 14.5%;
                }

                &::after {
                    top: 63%;
                    left: 61.5%;
                }
            }
        }
    }

    /*==================== SUBSCRIPTION ====================*/
    .subscription {
        padding-inline: 1rem;

        .subscription__container {
            .subscription__content {
                padding: 38px 28px 13px 28px;
                gap: 28px;

                .subscription__header {
                    gap: 18px;

                    h2 {
                        font-size: 24px;
                    }

                    p {
                        font-size: 14px;

                        &::before,
                        &::after {
                            width: 115px;
                        }

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

                        &::after {
                            left: -135px;
                        }
                    }
                }

                .subscription__steps {
                    .img {
                        .step {
                            span {
                                font-size: 100px;
                            }

                            p {
                                font-size: 14px;
                            }
                        }

                        .step1 {
                            top: -35.5%;
                            left: 0;
                        }

                        .step2 {
                            left: 28%;
                            top: 17.5%;
                        }

                        .step3 {
                            left: 69%;
                            top: 32.5%;
                        }
                    }

                    a {
                        height: 34px;
                        font-size: var(--note-size);
                        gap: 9px;

                        i {

                            margin-top: 3px;
                        }
                    }
                }
            }
        }
    }

    /*==================== PROGRAMS ====================*/
    .programs {
        .programs__container {
            .programs__content {
                gap: 56px;

                .programs__header {
                    h2 {
                        font-size: 32px;
                        text-align: center;
                    }

                    p {
                        max-width: 600px;
                        text-align: center;
                        font-size: 16px;
                    }

                    a {
                        width: 251px;
                        height: 42px;
                        font-size: var(--note-size);
                    }
                }

                .prgrams__items {
                    gap: 24px;

                    .item {
                        flex-wrap: wrap;
                        width: 100%;
                        max-width: 250px;

                        .icon {
                            width: 62px;
                            height: 62px;
                        }

                        .text {
                            gap: 9px;

                            h3 {
                                font-size: 20px;
                                margin-bottom: 4px;
                            }


                            p {
                                font-size: 13px;
                            }

                            a {
                                height: 34px;
                                font-size: 13px;
                            }
                        }
                    }
                }
            }
        }
    }

    /*==================== COURSE FEATURES ====================*/
    .course__features {
        .course__features__container {
            .course__features__content {
                gap: 50px;

                .course__features__data {
                    align-items: start;

                    .data__header {

                        h2 {
                            font-size: 36px;
                        }

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

                    .features__items {
                        flex-direction: column;

                        .itms_group,
                        .itms_group2 {
                            width: 100%;
                            align-items: start;

                            .item {
                                max-width: 100%;

                                .icon {
                                    width: 67.4006px;
                                    height: 67.4006px;
                                }

                                .item__text {
                                    align-items: start;
                                    text-align: start;
                                    gap: 8px;
                                    width: 77%;

                                    h3 {
                                        font-size: 18px;
                                    }

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

                        .itms_group2 {
                            height: auto;

                            .item {
                                flex-direction: row;
                                gap: 20px;

                            }
                        }
                    }

                    a {
                        max-width: 100%;
                        width: 100%;
                        font-size: var(--paragraph-size);
                    }
                }

                .course__features__img {
                    width: 100%;
                    max-width: 320.3108215332031px;
                    height: 366.5701599121094px;

                    img {
                        width: 167px;
                        height: 207.77685546875px;
                    }

                    h3 {
                        font-size: 25px;
                    }

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

    /*==================== TEACHERS ====================*/
    .teachers {
        padding-block: 7.5rem;

        .teachers__container {
            .teachers__content {
                gap: 42px;

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

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

                    a {
                        width: 203px;
                        height: 41px;
                        margin-top: 20px;
                        font-size: var(--note-size);
                    }
                }

                .teachers__swiper {
                    .teacher__slide {
                        width: 224.7761688232422px !important;
                        gap: 8px;

                        .img {
                            width: 224.7761688232422px;
                            height: 304.7053527832031px;

                            img {
                                height: 240px;
                            }
                        }

                        .data_teacher {
                            width: 100%;

                            h3 {
                                font-size: 24px;
                            }

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

                    .teacher--blue {
                        .img {
                            clip-path: path('M0 43.30C80.92 86.59 161.84 86.59 224.78 43.30V261.41C161.84 304.71 80.92 331.16 0 261.41V43.30Z');
                        }
                    }

                    .teacher--yellow {

                        .img {
                            clip-path: path('M0 43.30C92.50 0 185.00 0 224.78 43.30V261.41C185.00 217.96 92.50 191.64 0 261.41V43.30Z');

                            img {
                                height: 270px;
                            }
                        }
                    }
                }

                .teachers-pagination {
                    margin-top: 50px;
                    gap: 10px;

                    .swiper-pagination-bullet {
                        width: 48px;
                        height: 8px;
                    }
                }
            }
        }
    }

    /*==================== STUDENT TESTIMONIALS ====================*/
    .student__testimonials {
        padding-block: 80px 95px;

        .student__testimonials__container {
            .student__testimonials__content {
                gap: 77px;

                .student__testimonials__header {
                    gap: 18px;

                    h2 {
                        font-size: 29px;
                        text-align: center;
                    }

                    .stars__pra {
                        gap: 10px;

                        .stars {
                            gap: 7px;

                            i {
                                font-size: 21px;
                            }
                        }

                        .pra {

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

                .testimonials__swiper {
                    width: 85%;

                    .testimonial__slide {
                        width: 242.81097412109375px;
                    }
                }

                .custom-nav {
                    top: 68%;

                    .my-prev-testimonials,
                    .my-next-testimonials {
                        width: 50px;
                        height: 50px;
                        font-size: 14px;
                    }
                }
            }
        }
    }

    /*==================== REAL EXPERIENCE ====================*/
    .real__experience {
        padding-block: 10rem 8.5rem;

        .real__experience__container {
            .real__experience__content {
                gap: 44px;

                .real__experience__header {
                    h2 {
                        font-size: 36px;
                    }

                    p {
                        width: 100%;
                        font-size: 18px;
                        max-width: 400px;
                    }

                    a {
                        width: 265px;
                        height: 42px;
                        font-size: var(--paragraph-size);
                        margin-top: 8px;
                    }
                }

                .real__experience__video {
                    width: 100%;
                    max-width: 700px;
                    height: 420px;
                    padding: 12px;

                    &::before {
                        inset: -5px;
                    }
                }
            }
        }

        &::before,
        &::after {
            width: 129.497314453125px;
            height: 239.33273315429688px;
            filter: blur(165px);
            opacity: 0.9;
        }

        &::before {
            left: 4%;
        }

        &::after {
            right: 4%;
        }
    }

    /*==================== 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;
                        }
                    }
                }
            }
        }
    }

    /*=============== HOME ===============*/
    .home {
        padding-top: 12rem;
        padding-bottom: 5rem;
        background-position: center;

        .home__container {
            .home__content {
                gap: 35px;

                .home__text {
                    gap: 18px;

                    .span__title {
                        height: 30px;
                        padding: 0 16px;
                        gap: 8px;
                        font-size: 15px;
                    }

                    h1 {
                        font-size: 32px;
                        line-height: 1.4;
                    }

                    p {
                        font-size: var(--note-size);
                        line-height: 1.8;
                    }

                    .btn {
                        gap: 10px;
                        font-size: var(--paragraph-size);

                        .arrow {
                            width: 32px;
                            height: 32px;
                        }
                    }
                }

                .home__book {
                    border-width: 9px;
                    width: 563px;
                    height: 423.57781982421875px;

                    .img_book {
                        padding: 23px 22px 28px 22px;

                        .logo__book {
                            width: 75.02240753173828px;
                            height: 85.13472747802734px;
                        }

                        .img {
                            width: 258.46484375px;
                            height: 145.57716369628906px;
                            border-radius: 4px;

                            img {
                                border-radius: 4px;
                            }
                        }

                        .text__book {
                            max-width: 180px;
                            gap: 6px;

                            h3 {
                                font-size: 12.66px;
                            }

                            p {
                                font-size: 8px;
                            }
                        }

                        &::before {
                            top: -50%;
                            right: -65%;
                        }
                    }

                    .book {

                        .book__session {
                            gap: 13px;
                            max-width: 204.12066650390625px;
                            border-radius: 5.35px;
                            padding: 17px 10px;

                            .img {
                                width: 41.14060974121094px;
                                height: 41.14060974121094px;
                            }

                            .book__session__text {
                                gap: 6.3px;

                                h3 {
                                    font-size: 12.66px;
                                }

                                p {
                                    font-size: 8px;
                                }
                            }

                            a {
                                height: 20.5px;
                                font-size: 8px;
                                border-radius: 12.6px;
                            }
                        }

                        .register_group_types {
                            gap: 4.75px;
                            top: 95%;

                            .type {
                                padding: 1.5px 3.1px;
                                height: 13.45px;
                                border-radius: 1.5px;

                                i {
                                    font-size: 5.5px;
                                }

                                h4 {
                                    font-size: 5.5px;
                                    padding-bottom: 2px;
                                }
                            }
                        }
                    }
                }
            }
        }

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

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

    /*=============== PLATFORM STATS ===============*/
    .platform__stats {
        padding-top: 8rem;

        .platform__container {
            .platform__content {
                gap: 32px;

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

                .stats_data {
                    display: grid;
                    grid-template-columns: repeat(3, 1fr);
                    /* 3 أعمدة */
                    gap: 20px;
                    padding-left: 0;
                    width: 100%;

                    .stat_percint {
                        gap: 30px;
                        padding: 15px;
                        width: 100%;
                        max-width: 100%;
                        border-radius: 17.5px 17.5px 0 0;

                        .header_percint {
                            width: 135px;
                            font-size: 11.15px;
                        }

                        .body_percint {
                            gap: 8.8px;

                            .percint {
                                gap: 8.8px;

                                h3 {
                                    font-size: 48px;
                                }

                                .reda {
                                    font-size: 12.75px;
                                }
                            }


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

                    .stat {
                        width: 100%;
                        max-width: 182px;
                        padding: 1rem;
                        gap: 8px;

                        .header_stat {
                            p {
                                font-size: 12.75px;
                            }
                        }

                        .stat_num {
                            font-size: var(--note-size);
                        }
                    }

                    &>div:first-child {
                        grid-column: 1 / -1;
                    }
                }
            }
        }
    }

    /*=============== USER TYPE ===============*/
    .user__type {
        padding-block: 7rem;
        padding-inline: 3rem;

        .user__type__container {
            .user__type__content {
                padding: 44px 16px 20px 16px;
                gap: 28px;
                border-width: 3px;
                border-radius: 18px;

                h2 {
                    width: 70%;
                    font-size: 24px;
                    line-height: 1.5;
                }

                .group__question {
                    gap: 8px;
                    padding: 0 10px;

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

                p {
                    font-size: 12px;
                    line-height: 1.8;
                }

                a {
                    width: 100%;
                    max-width: 200px;
                    height: 34px;
                    margin-top: 2rem;
                    font-size: var(--note-size);

                    &::after,
                    &::before {
                        width: 52px;
                        height: 12px;
                    }

                    &::after {
                        right: -70px;
                    }

                    &::before {
                        left: -70px;
                    }
                }

                img {
                    width: 156px;
                    height: 156px;
                }

                .img1 {
                    left: -40px;
                    bottom: -4px;
                }

                .img2 {
                    right: -40px;
                    bottom: -4px;
                }
            }
        }
    }

    /*=============== BENEFITS ===============*/
    .benefits {
        padding-block: 50px;

        .benefits__container {
            .benefits__content {
                gap: 50px;

                .benefits__header {
                    h2 {
                        font-size: 32px;
                    }

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

                .benefits__group__imgs {
                    padding: 50px 15px 25px;
                    gap: 30px;

                    .group__imgs {
                        gap: 6.85px;

                        .hero__img {
                            height: 188.65px;

                            .img {
                                width: 100%;
                                max-width: 110px;
                                height: 100%;
                            }
                        }

                        .imgs {
                            .img {
                                width: 100%;
                                max-width: 90.21537780761719px;
                                height: 87.20819854736328px;
                            }
                        }
                    }

                    .group__imgs1 {
                        gap: 18px;

                        .img {
                            width: 138.45553588867188px;
                            height: 133.84036254882812px;
                        }

                        .group__meet {

                            .live {
                                width: 100%;
                                max-width: 83.07332611083984px;
                                height: 27.69110870361328px;
                                border-width: 3px;
                                font-size: 12px;
                            }

                            .meet {
                                width: 100.00205993652344px;
                                height: 27.69110870361328px;
                                font-size: 12px;
                                margin-right: -34px;
                            }
                        }
                    }

                    .data_img {
                        border-radius: 3px;
                        gap: 1.5px;
                        padding: 1px;
                        left: 4px;
                        bottom: 4px;

                        h3 {
                            font-size: 6px;
                        }

                        span {
                            border-radius: 3px;
                            font-size: 5.42px;
                        }
                    }

                    .header_group {
                        padding-inline: 13px;
                    }
                }

                .benefits__text {
                    row-gap: 10px;
                    column-gap: 20px;

                    .squares {
                        gap: 1.86px;

                        .square {
                            width: 7.3196868896484375px;
                            height: 7.3196868896484375px;
                        }
                    }

                    .text {
                        padding: 12px 14px;
                        gap: 14px;

                        .body_text {
                            h3 {
                                font-size: 12px;
                            }

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

                .circle2 {
                    width: 143.15252685546875px;
                    height: 143.15252685546875px;
                    top: 35%;
                }

                .circle4 {
                    top: 50.5%;
                }
            }
        }
    }

    /*=============== STUDENTS SHOWCASE ===============*/
    .students__showcase {
        padding-bottom: 5rem;

        .students__container {
            .students__content {
                gap: 49px;

                h2 {
                    font-size: 28px;

                    &::before {
                        width: 30px;
                        height: 30px;
                    }

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

                .students__swiper {
                    height: 289.4831848144531px;
                    max-width: 433.22998046875px;
                    border-radius: 5.7px;
                }

                .play-btn {
                    width: 43px;
                    height: 43px;
                    font-size: 20px;
                }

                .custom-nav {
                    width: 100%;
                    top: 60%;
                    z-index: 5;

                    .my-prev,
                    .my-next {
                        width: 46px;
                        height: 46px;
                    }
                }

                &::before {
                    top: 22%;
                    left: 11.5%;
                    width: 84.8025px;
                    height: 84.8025px;
                }

                &::after {
                    top: 67%;
                    left: 65.5%;
                    width: 141.952px;
                    height: 141.952px;
                }
            }
        }
    }

    /*==================== SUBSCRIPTION ====================*/
    .subscription {
        .subscription__container {
            .subscription__content {
                padding: 40px 16px 15px 16px;
                gap: 24px;
                max-width: 95%;

                .subscription__header {
                    h2 {
                        font-size: var(--paragraph-size);
                    }

                    p {
                        font-size: 12px;
                        line-height: 1.6;
                    }
                }

                .subscription__steps {
                    gap: 16px;

                    .img {
                        max-width: 85%;

                        .step {
                            span {
                                font-size: 85px;
                            }

                            .dote {
                                width: 30px;
                                height: 30px;
                                border-radius: 9px;
                                font-size: 12px;
                            }

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

                        .step1 {
                            top: -42.5%;
                            left: -45px;
                        }

                        .step2 {
                            top: 11.5%;
                        }

                        .step3 {
                            top: 20.5%;
                        }
                    }

                    a {
                        height: 29px;
                        font-size: 13.45px;
                        border-radius: 3.36px;
                    }
                }
            }
        }
    }

    /*==================== PROGRAMS ====================*/
    .programs {
        .programs__container {
            .programs__content {
                gap: 70px;

                .programs__header {
                    gap: 2px;

                    h2 {
                        font-size: 32px;
                    }

                    p {
                        font-size: 18px;
                    }

                    a {
                        width: 100%;
                        max-width: 251px;
                        height: 38px;
                        font-size: 14px;
                        margin-top: 6px;
                    }
                }

                .prgrams__items {
                    display: grid;
                    grid-template-columns: repeat(2, 1fr);
                    justify-items: center;
                    column-gap: 70px;
                    row-gap: 64px;

                    .item {
                        width: 100%;
                        max-width: 248.83251953125px;
                        padding: 55px 11px 25px 11px;
                        margin-top: 0 !important;

                        .icon {
                            width: 62px;
                            height: 62px;
                            font-size: 24px;
                        }

                        .text {
                            h3 {
                                font-size: var(--paragraph-size);
                            }

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

                    &>.item:first-child {
                        grid-column: 1 / -1;
                    }
                }
            }
        }
    }

    /*==================== COURSE FEATURES ====================*/
    .course__features {
        .course__features__container {
            .course__features__content {
                flex-direction: column-reverse;
                gap: 80px;

                .course__features__data {
                    gap: 32px;

                    .data__header {
                        align-items: center;
                        text-align: center;

                        h2 {
                            font-size: 36px;
                        }

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

                    .features__items {
                        flex-direction: column;
                        gap: 12px;

                        .itms_group,
                        .itms_group2 {
                            gap: 12px;

                            .item {
                                width: 100%;
                                max-width: 100%;
                                justify-content: start;
                                height: auto;
                                gap: 22px;
                                box-shadow: 0px 18.21px 52.8px 0px #282B6F14;

                                .icon {
                                    width: 67.4006px;
                                    height: 67.4006px;
                                }

                                .item__text {
                                    gap: 8px;

                                    h3 {
                                        font-size: 18px;
                                    }

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

                        .itms_group2 {
                            .item {
                                max-width: 100%;
                                box-shadow: 0px 18.21px 52.8px 0px #282B6F14;
                            }
                        }
                    }

                    a {
                        height: 48px;
                        font-size: var(--paragraph-size);
                    }
                }

                .course__features__img {
                    width: 320.3108px;
                    height: auto;
                    padding: 30px 15px;

                    img {
                        width: 167.51486206054688px;
                        height: auto;
                    }

                    h3 {
                        font-size: 32px;
                        width: 90%;
                    }

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

                    &::before {
                        top: -35px;
                        right: -35px;
                        z-index: -1;
                    }
                }
            }
        }
    }

    /*==================== TEACHERS ====================*/
    .teachers {
        padding-block: 6rem;

        .teachers__container {
            .teachers__content {
                gap: 36px;

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

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

                    a {
                        width: 203px;
                        height: 38px;
                        margin-top: 18px;
                        font-size: var(--note-size);
                    }
                }

                .teachers__swiper {
                    .teacher__slide {
                        .img {
                            width: 224.7761688232422px;
                            height: 304.7053527832031px;

                            img {
                                height: 215px;
                            }
                        }

                        .data_teacher {
                            h3 {
                                font-size: 24px;
                            }

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

                    .teacher--yellow {
                        .img {
                            align-items: center;

                            img {
                                height: 240px;
                            }
                        }
                    }
                }

                .teachers-pagination {
                    margin-top: 40px;
                    gap: 11px;

                    .swiper-pagination-bullet {
                        width: 50px;
                        height: 7px;
                    }
                }
            }
        }
    }

    /*==================== STUDENT TESTIMONIALS ====================*/
    .student__testimonials {
        padding-block: 65px 80px;

        .student__testimonials__container {
            .student__testimonials__content {
                gap: 55px;

                .student__testimonials__header {
                    gap: 17px;

                    h2 {
                        font-size: 29px;
                    }

                    .stars__pra {
                        gap: 9px;

                        .stars {
                            gap: 6px;

                            i {
                                font-size: 19px;
                            }
                        }

                        .pra {
                            padding: 2px 8px;

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

                .testimonials__swiper {
                    width: 100%;

                    .testimonial__slide {
                        width: 230px;
                        height: 334px;
                        border-radius: 16px;

                        img {
                            border-radius: 16px;
                        }
                    }
                }

                .custom-nav {
                    top: 64%;

                    .my-prev-testimonials,
                    .my-next-testimonials {
                        width: 40px;
                        height: 40px;
                        font-size: 13px;
                    }
                }
            }
        }
    }

    /*==================== REAL EXPERIENCE ====================*/
    .real__experience {
        padding-block: 8rem 7rem;

        .real__experience__container {
            .real__experience__content {
                gap: 35px;

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

                    p {
                        font-size: 14px;
                        width: 100%;
                        max-width: 560px;
                        line-height: 1.8;
                    }

                    a {
                        width: 100%;
                        max-width: 213px;
                        height: 38px;
                        font-size: 16px;
                    }
                }

                .real__experience__video {
                    width: 100%;
                    height: 360px;
                    padding: 10px;
                    border-radius: 10px;

                    &::before {
                        border-radius: 10px;
                    }
                }
            }
        }

        &::before,
        &::after {
            width: 103.89900970458984px;
            height: 192.0227813720703px;
            filter: blur(145px);
            opacity: 0.75;
        }
    }

    /*==================== 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;
            }
        }
    }

    .myvideo video {
        border: 5px solid var(--blue-light);
    }
}

@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;
                    }
                }
            }

        }
    }

    /*=============== HOME ===============*/
    .home {
        padding-top: 8rem;
        padding-bottom: 4rem;
        max-height: 100vh;

        .home__container {
            .home__content {
                gap: 35px;

                .home__text {
                    gap: 18px;

                    .span__title {
                        height: auto;
                        padding: 8px;
                        font-size: 12px;
                        line-height: 1.4;
                    }

                    h1 {
                        font-size: 28px;
                        line-height: 1.5;
                    }

                    p {
                        font-size: 12px;
                        line-height: 1.8;
                    }

                    .btn {
                        font-size: var(--note-size);

                        .arrow {
                            width: 28px;
                            height: 28px;

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

                .home__book {
                    border-width: 7px;
                    width: 174px;
                    height: 300px;
                    flex-direction: column;
                    gap: 14px;
                    background-color: white;
                    padding: 4px;

                    .img_book {
                        padding: 0;
                        background-color: transparent;

                        .logo__book {
                            display: none;
                        }

                        .img {
                            width: 100%;
                            height: 115px;
                            border-radius: 2px 2px 1px 1px;

                            img {
                                border-radius: 2px 2px 1px 1px;
                            }
                        }

                        .text__book {
                            display: none;
                        }

                        &::before {
                            display: none;
                        }
                    }

                    .book {
                        width: 100%;
                        height: fit-content;

                        .book__session {
                            gap: 12px;
                            max-width: 100%;
                            padding: 12.7px 12.5px 22px 12.5px;

                            .img {
                                width: 37.50613784790039px;
                                height: 37.50613784790039px;
                            }

                            .book__session__text {
                                gap: 5.77px;

                                h3 {
                                    font-size: 11.5px;
                                }

                                p {
                                    font-size: 7.21px;
                                }
                            }

                            a {
                                height: 18.75px;
                                font-size: 7.21px;
                                border-radius: 11.6px;
                            }
                        }

                        .register_group_types {
                            display: none;
                        }
                    }
                }
            }
        }


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

    /*=============== PLATFORM STATS ===============*/
    .platform__stats {
        padding-top: 9rem;

        .platform__container {
            .platform__content {
                gap: 28px;

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

                .stats_data {
                    gap: 18px;
                    grid-template-columns: 1fr;
                    padding-bottom: 2rem;

                    .stat_percint {
                        align-items: center;
                        padding: 14px;
                        gap: 24px;
                        padding-block: 1rem;

                        .header_percint {
                            width: fit-content;
                            height: 30px;
                            font-size: 12px;
                            justify-content: start;
                            gap: 10px;
                            padding: 0 1px 0 10px;

                            .icon {
                                position: static;
                                width: 26px;
                                height: 26px;
                            }
                        }

                        .body_percint {
                            align-items: center;
                            text-align: center;

                            .percint {
                                align-items: center;
                                text-align: center;

                                h3 {
                                    font-size: 64px;
                                }

                            }
                        }
                    }

                    .stat {
                        width: 100%;
                        max-width: 100%;
                        padding: 0 2rem;

                        .header_stat {
                            p {
                                font-size: 16px;
                            }
                        }

                        .bar {
                            height: 7px;
                        }

                        .stat_num {
                            font-size: 16px;
                        }
                    }

                    &>div:first-child {
                        grid-column: auto;
                    }
                }
            }
        }
    }

    /*=============== USER TYPE ===============*/
    .user__type {
        padding-block: 5.5rem;

        .user__type__container {
            .user__type__content {
                position: relative;
                padding: 36px 12px 18px 12px;
                height: 442px;
                justify-content: start;
                gap: 22px;
                border-radius: 15px 15px 4px 4px;
                border: 3px solid var(--light-blue-normal);

                h2 {
                    width: 90%;
                    font-size: var(--paragraph-size);
                }

                .group__question {

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

                p {
                    font-size: 12px;
                }

                a {
                    position: absolute;
                    max-width: 85%;
                    height: 38px;
                    font-size: var(--note-size);
                    margin-top: 0;
                    top: 100%;
                    left: 50%;
                    transform: translate(-50%, -50%) !important;

                    &::after,
                    &::before {
                        display: none;
                    }
                }

                img {
                    width: 140px;
                    height: 140px;
                    border-width: 2px;
                }

                .img1 {
                    left: -30px;
                    bottom: 35px;
                }

                .img2 {
                    right: -30px;
                    bottom: 65px;
                }
            }
        }
    }

    /*=============== BENEFITS ===============*/
    .benefits {
        padding-block: 40px;
        padding-inline: 2rem;

        .benefits__container {
            .benefits__content {
                gap: 40px;

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

                    p {
                        font-size: 14px;
                    }
                }

                .benefits__group__imgs {
                    padding: 40px 10px 20px;
                    border-radius: 6.02px;
                    gap: 28.5px;
                    backdrop-filter: blur(15px);

                    .group__imgs {
                        gap: 3.85px;

                        .imgs {
                            gap: 4.21px;

                            .img {
                                width: 50.05412292480469px;
                                height: 50.05412292480469px;
                                border-radius: 4px;

                                img {
                                    border-radius: 4px;
                                }
                            }
                        }

                        .hero__img {
                            height: 116.65390014648438px;
                            width: 60.7723px;

                            .img {
                                width: 100%;
                                max-width: 60px;
                                height: 100%;
                                border-radius: 4px;

                                img {
                                    border-radius: 4px;
                                }
                            }
                        }

                    }

                    .group__imgs1 {
                        .img {
                            width: 76.81916046142578px;
                            height: 88.26180267333984px;
                            border-radius: 5.12px;

                            img {
                                border-radius: 5.12px;
                            }
                        }

                        .group__meet {

                            .live {
                                width: 100%;
                                max-width: 46.31159210205078px;
                                height: 17.78278350830078px;
                                border-width: 2px;
                                font-size: 6.66px;
                            }

                            .meet {
                                width: 49.93576431274414px;
                                height: 17.78278350830078px;
                                font-size: 5.66px;
                                margin-right: -18px;
                                padding: 0 12px 0 5px;
                            }
                        }
                    }

                    .data_img {
                        gap: 1.33px;
                        left: 2px;
                        border-radius: 1.67px;
                        bottom: 2px;

                        h3 {
                            font-size: 3.3px;
                        }

                        span {
                            border-radius: 1.67px;
                            font-size: 3px;
                            padding: 1px;
                        }

                        i {
                            font-size: 3px;
                        }
                    }

                    .header_group {
                        padding-inline: 8px;
                        height: 12px;
                        gap: 0.5px;
                        border-radius: 6.02px 6.02px 0 0;

                        .red,
                        .green,
                        .yallow {
                            width: 4.2119px;
                            height: 4.2119px;
                        }
                    }
                }

                .benefits__text {
                    row-gap: 8px;
                    column-gap: 16px;
                    grid-template-columns: repeat(1, 1fr);

                    .text {
                        padding: 8.33px 15px;
                        gap: 7px;
                        border-radius: 4.95px;

                        .squares {
                            gap: 1.24px;

                            .square {
                                width: 7.3196868896484375px;
                                height: 7.3196868896484375px;
                            }
                        }

                        .body_text {
                            h3 {
                                font-size: 12px;
                            }

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

                .circle1 {
                    width: 42.12px;
                    height: 42.12px;
                    top: 19%;
                    left: 5%;
                }

                .circle2 {
                    width: 79.4px;
                    height: 79.4px;
                    top: 30%;
                    right: 10%;
                }

                .circle3,
                .circle4 {
                    width: 9px;
                    height: 9px;
                }

                .circle3 {
                    top: 15%;
                    left: 20%;
                }

                .circle4 {
                    top: 42%;
                    right: 20%;
                }


            }
        }
    }

    /*=============== STUDENTS SHOWCASE ===============*/
    .students__showcase {
        padding-bottom: 4rem;
        padding-inline: 1rem;

        .students__container {
            .students__content {
                gap: 35px;

                h2 {
                    font-size: 18px;

                    &::before {
                        width: 16px;
                        height: 13.48px;
                        left: -9px;
                        bottom: 5px;
                    }

                    &::after {
                        width: 23px;
                        height: 19.37px;
                        right: 0;
                        top: 5px;
                    }
                }

                .students__swiper {
                    height: 204.0927276611328px;
                    max-width: 305.43768310546875px;
                }


                .play-btn {
                    width: 45px;
                    height: 45px;
                    font-size: 18px;
                }

                .custom-nav {
                    width: 100%;
                    top: 115%;
                    z-index: 5;
                    justify-content: center;
                    gap: 44px;

                    .my-prev,
                    .my-next {
                        width: 40px;
                        height: 40px;
                        font-size: 16px;
                    }
                }

                &::before {
                    top: 22%;
                    left: 3.5%;
                    width: 59.78780746459961px;
                    height: 59.78780746459961px;
                    border-radius: 8.66px;
                }

                &::after {
                    top: 67%;
                    left: 68.5%;
                    width: 100px;
                    height: 100px;
                    border-radius: 8.66px;
                }
            }


        }
    }

    /*==================== SUBSCRIPTION ====================*/
    .subscription {
        .subscription__container {
            .subscription__content {
                padding: 30px 23px 15px 23px;
                justify-content: start;
                gap: 45px;
                overflow: hidden;

                .subscription__header {
                    h2 {
                        font-size: 22px;
                    }

                    p {
                        font-size: 14px;

                        &::after,
                        &::before {
                            width: 68px;
                            height: 0.5px;
                        }

                        &::after {
                            right: 100px;
                        }

                        &::before {
                            right: -115px;
                        }
                    }
                }

                .subscription__steps {
                    .img {
                        max-width: 100%;
                        transform: rotate(90deg) !important;
                        width: 452.27813720703125px;
                        height: 182.12701416015625px;
                        margin-top: 10rem;

                        .step {
                            flex-direction: row;
                            gap: 5rem;
                            transform: rotate(-90deg);

                            span {
                                font-size: 102.05pxpx;
                            }

                            .dote {
                                width: 29.45745086669922px;
                                height: 29.45745086669922px;
                                border-radius: 9px;
                                position: absolute;
                                top: -25px;
                                left: 60px;

                                i {
                                    font-size: 10px;
                                }
                            }

                            p {
                                font-size: 14px;
                                max-width: 160px;
                                width: 100%;
                            }
                        }

                        .step1 {
                            top: 30.5%;
                            left: -115px;
                        }

                        .step2 {
                            top: 47%;
                            left: 15%;

                            p {
                                max-width: 135px;
                            }

                            .dote {
                                left: 55px;
                            }
                        }

                        .step3 {
                            top: 40%;
                            left: 50%;
                            gap: 3rem;
                            flex-direction: row-reverse;

                            p {
                                max-width: 135px;
                            }

                            .dote {
                                left: 140px;
                            }
                        }
                    }

                    a {
                        margin-top: 9rem;
                        height: 38px;
                        max-width: 272px;
                        width: 100%;
                        font-size: 13.45px;
                    }
                }
            }
        }
    }

    /*==================== PROGRAMS ====================*/
    .programs {
        .programs__container {
            .programs__content {
                gap: 55px;

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

                    p {
                        font-size: 16px;
                    }

                    a {
                        height: 34px;
                        font-size: 14px;
                        border-radius: 4px;
                    }
                }

                .prgrams__items {
                    gap: 52px;
                    grid-template-columns: 1fr;

                    .item {
                        padding: 50px 20px 25px 20px;

                        .icon {
                            width: 61px;
                            height: 61px;
                            font-size: 24px;
                        }

                        .text {
                            h3 {
                                font-size: 19.5px;
                            }

                            p {
                                font-size: 13px;
                            }

                            a {
                                height: 34px;
                                font-size: 13px;
                            }
                        }
                    }

                    &>.item:first-child {
                        grid-column: auto;
                    }
                }
            }
        }
    }

    /*==================== COURSE FEATURES ====================*/
    .course__features {
        .course__features__container {
            .course__features__content {
                gap: 80px;

                .course__features__data {
                    gap: 23px;

                    .data__header {
                        h2 {
                            font-size: 32px;
                        }

                        p {
                            font-size: 14px;
                        }
                    }

                    .features__items {
                        gap: 16px;

                        .itms_group,
                        .itms_group2 {
                            .item {
                                flex-direction: column;
                                align-items: center;
                                padding: 14px;
                                gap: 14px;

                                .icon {
                                    width: 50px;
                                    height: 50px;

                                    i {
                                        font-size: 20px;
                                    }
                                }

                                .item__text {
                                    align-items: center;
                                    text-align: center;
                                    width: 90%;

                                    h3 {
                                        font-size: 18px;
                                    }

                                    p {
                                        font-size: 14px;
                                        width: 100%;
                                    }
                                }
                            }
                        }
                    }

                    a {
                        height: 42px;
                        font-size: 18px;
                    }
                }

                .course__features__img {
                    max-width: 250.15936279296875px;
                    width: 100%;
                    height: 257.7052px;
                    gap: 14px;

                    img {
                        width: 115.9916px;
                        height: 143.8700714111328px;
                    }

                    h3 {
                        font-size: 17px;
                    }

                    .icon {
                        width: 24px;
                        height: 24px;
                        font-size: 12px;
                    }

                    .icon3 {
                        bottom: 80px;
                    }

                    .icon4 {
                        bottom: 70px;
                    }
                }
            }
        }
    }

    /*==================== TEACHERS ====================*/
    .teachers {
        padding-block: 5rem;

        .teachers__container {
            .teachers__content {
                gap: 30px;

                .teachers__header {
                    h2 {
                        font-size: 22px;
                    }

                    p {
                        font-size: 16px;
                    }

                    a {
                        width: 203px;
                        height: 32px;
                        font-size: 14px;
                        margin-top: 16px;
                    }
                }

                .teachers__swiper {
                    .teacher__slide {
                        width: 149.3878631591797px !important;

                        .img {
                            width: 149.3878631591797px;
                            height: 202.50938415527344px;


                            img {
                                height: 170px;
                            }
                        }

                        .data_teacher {
                            gap: 8px;

                            h3 {
                                font-size: 16px;
                            }

                            span {
                                font-size: 10px;
                            }
                        }
                    }

                    .teacher--blue {
                        .img {
                            clip-path: path('M0 35.78C53.78 57.57 107.48 57.57 149.39 33.78V173.73C107.48 202.51 53.78 220.31 0 173.73V28.78Z');
                        }
                    }

                    .teacher--yellow {
                        .img {
                            clip-path: path('M0 32.53C53.78 -1 108.48 3 241.39 81.53V202.51C107.48 150.98 61.78 143.18 0 173.51V33.53Z');

                            img {
                                height: 190px;
                            }
                        }
                    }
                }

                .teachers-pagination {
                    margin-top: 32px;
                    gap: 6px;

                    .swiper-pagination-bullet {
                        width: 28px;
                        height: 6px;
                    }
                }
            }
        }
    }

    /*==================== STUDENT TESTIMONIALS ====================*/
    .student__testimonials {
        padding-block: 55px 65px;

        .student__testimonials__container {
            .student__testimonials__content {
                gap: 42px;

                .student__testimonials__header {
                    gap: 14px;

                    h2 {
                        font-size: 22px;
                    }

                    .stars__pra {
                        gap: 8px;

                        .stars {
                            gap: 5px;

                            i {
                                font-size: 17px;
                            }
                        }

                        .pra {
                            p {
                                font-size: 11px;
                            }
                        }
                    }
                }

                .testimonials__swiper {
                    .testimonial__slide {
                        width: 180px;
                        height: 285px;
                        border-radius: 14px;

                        img {
                            border-radius: 14px;
                        }
                    }
                }

                .custom-nav {
                    display: none;
                }
            }
        }
    }

    /*==================== REAL EXPERIENCE ====================*/
    .real__experience {
        padding-block: 6.5rem 5.5rem;

        .real__experience__container {
            .real__experience__content {
                gap: 28px;

                .real__experience__header {
                    h2 {
                        font-size: 22px;
                    }

                    p {
                        font-size: 14px;
                        line-height: 1.8;
                    }

                    a {
                        max-width: 100%;
                        height: 32px;
                        font-size: 14px;
                        margin-top: 6px;
                        border-radius: 3px;
                    }
                }

                .real__experience__video {
                    height: 240px;
                    padding: 8px;
                    border-radius: 7px;

                    &::before {
                        border-radius: 7px;
                    }
                }
            }
        }

        &::before,
        &::after {
            width: 90px;
            height: 180px;
            filter: blur(120px);
            opacity: 0.6;
        }
    }

    /*==================== 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;
            }
        }
    }

    .myvideo video {
        border: 3px solid var(--blue-light);
    }
}