/*=============== COURSE HERO ===============*/
.course__hero {
    padding-block: 23rem 18.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--background);
    position: relative;

    .course__hero__container {

        .course__hero__content {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            flex-direction: column;
            gap: 33px;
            z-index: 5;

            h1 {
                font-size: 60px;
                font-weight: var(--font-semi-bold);
                color: var(--dark);
                margin-bottom: 7px;
                max-width: 851px;
                width: 100%;
                line-height: 1;
                z-index: 5;
            }

            .pra {
                position: relative;
                display: flex;
                justify-content: center;
                align-items: center;
                width: 464px;
                height: 56px;
                border-radius: 6.5px;
                font-size: 26.5px;
                font-weight: var(--font-medium);
                color: white;
                background-color: var(--green);
                box-shadow: 8.29px 6.63px 0px 0px #FFBF1B;
                z-index: 5;

                &::after {
                    content: "";
                    position: absolute;
                    right: 0;
                    bottom: -75px;
                    background-image: url(../image/arrow.webp);
                    width: 57.646706418723944px;
                    height: 50.67755196515229px;
                    z-index: 0;
                }

                &::before {
                    content: "";
                    position: absolute;
                    right: 10px;
                    bottom: -65px;
                    background-image: url(../image/Rocket.webp);
                    width: 58.043861389160156px;
                    height: 58.043861389160156px;
                    z-index: 0;
                }
            }

            span {
                font-size: 23px;
                font-weight: var(--font-regular);
                color: var(--dark);
                z-index: 5;
            }

            .wave_pra {
                display: flex;
                justify-content: center;
                align-items: center;
                position: absolute;
                width: 100%;
                max-width: 404px;
                height: 46px;
                border-radius: 40px;
                background-color: white;
                border: 1px solid #ACB3B71A;
                box-shadow: 0px 6.63px 6.63px 0px #0000000F;


                p {
                    font-size: 16.5px;
                    font-weight: 300;
                    color: #666666;

                    span {
                        font-size: 16.5px;
                    }

                    .green {
                        color: var(--green);
                    }

                    .yellow {
                        color: var(--yellow);
                    }
                }

            }

            .wave_pra1 {
                top: -35%;
                right: -60px;
            }

            .wave_pra2 {
                bottom: -35%;
                left: -60px;
            }

            &::after {
                content: "";
                position: absolute;
                top: -33px;
                left: 50%;
                transform: translateX(-50%);
                width: 175.5198211669922px;
                height: 191.72166442871094px;
                background-image: url(../image/cup.webp);
                background-size: cover;
                background-position: center;
                z-index: 0;
            }
        }
    }

    &::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        background-image: url(../image/bg.webp);
        background-size: cover;
        background-position: center;
    }
}
/*=============== COURSES ===============*/
.our__courses {
    padding-block: 170px;

    .our__courses__container {


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

            .our__courses__header {
                display: flex;
                justify-content: center;
                align-items: center;
                flex-direction: column;
                text-align: center;

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

                p {
                    font-size: 18px;
                    font-weight: var(--font-regular);
                    color: #404944;
                }

            }

            .course__cards {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 50px;

                .course__card {
                    display: flex;
                    justify-content: space-between;
                    align-items: start;
                    flex-direction: column;
                    gap: 32px;
                    box-shadow: 0px 25px 50px -12px #191C1D0D;
                    border: 1px solid #2C34370F;
                    background-color: white;
                    border-radius: 14px;
                    height: 100%;
                    min-height: 620px;

                    .img {
                        position: relative;
                        width: 100%;
                        height: 234px;
                        border-radius: 14px 14px 0 0;
                        overflow: hidden;

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

                        .type {
                            position: absolute;
                            top: 10px;
                            left: 10px;
                            background-color: white;
                            color: var(--yellow);
                            font-size: 12px;
                            font-weight: var(--font-bold);
                            padding: 5.5px 16px;
                            border-radius: 999px;
                            text-transform: uppercase;
                        }

                        .icon {
                            position: absolute;
                            top: 50%;
                            left: 50%;
                            transform: translate(-50%, -50%);
                            width: 49px;
                            height: 49px;
                            background-color: var(--green);
                            color: white;
                            border-radius: 50%;
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            font-size: 24px;
                            cursor: pointer;
                            transition: all 0.3s ease-in-out;
                            box-shadow: 0px 22.27px 44.55px -10.69px #191C1D0D;

                            &:hover {
                                background-color: var(--green-gray);
                            }
                        }
                    }

                    .course__content {
                        display: flex;
                        justify-content: center;
                        align-items: start;
                        flex-direction: column;
                        gap: 12px;
                        padding: 0 25px 32px 25px;
                        width: 100%;

                        h3 {
                            font-size: 24px;
                            font-weight: var(--font-bold);
                            color: var(--green);
                            display: -webkit-box;
                            width: 95%;
                            -webkit-line-clamp: 2;
                            -webkit-box-orient: vertical;
                            overflow: hidden;
                        }

                        p {
                            font-size: 14px;
                            color: #666666;
                            font-weight: var(--font-regular);
                            display: -webkit-box;
                            width: 95%;
                            -webkit-line-clamp: 3;
                            -webkit-box-orient: vertical;
                            overflow: hidden;
                        }

                        .course__data {
                            display: flex;
                            justify-content: start;
                            align-items: center;
                            flex-wrap: wrap;
                            gap: 11px;
                            margin-block: 12px;
                            width: 100%;

                            span {
                                font-size: 14px;
                                font-weight: var(--font-regular);
                                color: #666666;
                                border-radius: 999px;
                                background-color: #ACB3B71A;
                                padding: 6px 16px;
                            }
                        }

                        a {
                            width: 100%;
                            height: 48px;
                            background-color: var(--yellow);
                            color: white;
                            font-size: 16px;
                            font-weight: var(--font-semi-bold);
                            border-radius: 999px;
                        }
                    }
                }

                .spicial__card {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    flex-direction: column;
                    gap: 12px;
                    padding: 32px;
                    border-radius: 14px;
                    background-color: #064E3B;
                    height: 100%;
                    min-height: 620px;

                    .header__card {
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                        width: 100%;
                        margin-bottom: 12px;

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

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

                        span {
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            padding: 9px 12px;
                            border: 1px solid #FFBF1B;
                            background-color: white;
                            border-radius: 999px;
                            color: #FFBF1B;
                            font-size: 12px;
                            font-weight: var(--font-bold);
                        }
                    }

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

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

                        p {
                            font-size: 14px;
                            color: #80BEA6;
                            font-weight: var(--font-medium);
                            width: 80%;
                        }

                        ul {
                            display: flex;
                            justify-content: center;
                            align-items: start;
                            flex-direction: column;
                            gap: 16px;
                            margin-block: 20px 28px;

                            li {
                                display: flex;
                                justify-content: center;
                                align-items: center;
                                gap: 12px;
                                color: white;
                                font-size: 14px;
                                font-weight: var(--font-medium);

                                .icon {
                                    display: flex;
                                    justify-content: center;
                                    align-items: center;
                                    width: 24px;
                                    height: 24px;
                                    font-size: 12px;
                                    background-color: var(--yellow);
                                    border-radius: 50%;
                                }

                            }
                        }

                        a {
                            width: 100%;
                            height: 48px;
                            background-color: white;
                            border-radius: 999px;
                            font-size: 16px;
                            font-weight: var(--font-semi-bold);
                            color: var(--green);
                        }
                    }
                }
            }

        }
    }
}

@media (max-width: 991px) {

    /*=============== COURSE HERO ===============*/
    .course__hero {
        padding-block: 20rem 12rem;

        .course__hero__container {

            .course__hero__content {
                gap: 30px;

                h1 {
                    font-size: 44px;
                    margin-bottom: 0px;
                    max-width: 630px;
                }

                .pra {
                    width: 343px;
                    height: 41px;
                    font-size: 19.5px;

                    &::before {
                        content: "";
                        position: absolute;
                        right: 10px;
                        bottom: -65px;
                        background-image: url(../image/Rocket.webp);
                        width: 58.043861389160156px;
                        height: 58.043861389160156px;
                        z-index: 0;
                    }
                }

                span {
                    font-size: 17px;
                }

                .wave_pra {
                    max-width: 265.81951904296875px;
                    height: 34px;


                    p {
                        font-size: 12px;

                        span {
                            font-size: 12px;
                        }

                    }

                }

                .wave_pra1 {
                    right: -40px;
                }

                .wave_pra2 {
                    left: -40px;
                }

                &::after {
                    top: -25px;
                    width: 130px;
                    height: 142px;
                }
            }
        }
    }

    /*=============== COURSES ===============*/
    .our__courses {
        padding-block: 77px 170px;

        .our__courses__container {


            .our__courses__content {

                .our__courses__header {

                    h2 {
                        font-size: 32px;
                    }

                    p {
                        font-size: 16px;
                    }

                }

                .course__cards {
                    display: grid;
                    grid-template-columns: repeat(2, 1fr);
                    gap: 32px;
                    max-width: 780px;
                    width: 100%;


                    .spicial__card {
                        width: 100%;
                        min-height: 464px;
                        grid-column: 1 / -1;


                        .content__card {


                            ul {
                                display: grid;
                                grid-template-columns: repeat(2, 1fr);

                                li {
                                    justify-content: start;
                                }
                            }

                        }
                    }
                }

            }
        }
    }
}

@media (max-width: 768px) {

    /*=============== COURSE HERO ===============*/
    .course__hero {
        padding-block: 20rem 12rem;

        .course__hero__container {

            .course__hero__content {


                .wave_pra1 {
                    right: 30px;
                }

                .wave_pra2 {
                    left: 30px;
                }
            }
        }
    }

    /*=============== COURSES ===============*/
    .our__courses {
        padding-block: 77px 170px;

        .our__courses__container {


            .our__courses__content {

                .our__courses__header {

                    h2 {
                        font-size: 32px;
                    }

                    p {
                        font-size: 16px;
                    }

                }

                .course__cards {
                    display: grid;
                    grid-template-columns: repeat(1, 1fr);
                    gap: 32px;
                    max-width: 480px;
                    width: 100%;


                    .spicial__card {
                        width: 100%;
                        min-height: 464px;
                        grid-column: 1;


                        .content__card {


                            ul {
                                display: grid;
                                grid-template-columns: repeat(1, 1fr);

                            }

                        }
                    }
                }

            }
        }
    }
}

@media (max-width: 576px) {

    /*=============== COURSE HERO ===============*/
    .course__hero {
        padding-block: 14.5rem 7.5rem;

        .course__hero__container {

            .course__hero__content {
                gap: 30px;

                h1 {
                    font-size: 32px;
                    max-width: 300px;
                }

                .pra {
					width: fit-content;
                    padding: 8px 16px;
                    height: 34px;
                    font-size: 16px;
                    border-radius: 4px;
                    box-shadow: 5px 4px 0px 0px #FFBF1B;
                    margin-bottom: 11px;

                    &::before {
                        bottom: -33px;
                        width: 30px;
                        height: 30px;
                        background-position: center;
                        background-size: cover;
                    }

                    &::after {
                        right: -5px;
                        bottom: -38px;
                        width: 42px;
                        height: 36px;
                        background-position: center;
                        background-size: cover;
                        z-index: -1;
                    }
                }

                span {
                    font-size: 14px;
                }

                .wave_pra {
                    max-width: 126px;
                    height: 28px;


                    p {
                        font-size: 10px;

                        span {
                            font-size: 10px;
                        }

                    }

                }


                &::after {
                    top: -3px;
                    width: 96px;
                    height: 96px;
                }
            }
        }
    }

    /*=============== COURSES ===============*/
    .our__courses {
        padding-block: 87px 78px;

        .our__courses__container {


            .our__courses__content {
                gap: 40px;

                .our__courses__header {


                    p {
                        font-size: 14px;
                    }

                }

                .course__cards {

                    .course__card {

                        .img {


                            .icon {
                                width: 40px;
                                height: 40px;
                                font-size: 20px;
                            }
                        }

                    }

                }

            }
        }
    }
}