:root {
    --pink: #ED1164;
    --poppins: "Poppins", sans-serif;
    --manrope: "Manrope", sans-serif;
    --marquee-width: 90%;
    --marquee-height: 120px;
    --marquee-elements-displayed: 4;
    --marquee-element-width: calc(var(--marquee-width) / var(--marquee-elements-displayed));
    --marquee-animation-duration: calc(var(--marquee-elements) * 3s);
}

.banner-slider .swiper-wrapper .swiper-slide {
    cursor: pointer;
}

p {
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    color: #000000;
    margin-bottom: 15px;
}

.search_container {
    position: relative;
    box-sizing: border-box;
    width: fit-content;
}

.mainbox {
    box-sizing: border-box;
    position: relative;
    width: 230px;
    height: 50px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    border-radius: 160px;
    background-color: var(--pink);
    transition: all 0.3s ease;
}

.checkbox:focus {
    border: none;
    outline: none;
}

.checkbox:checked {
    right: 10px;
}

.checkbox:checked~.mainbox {
    width: 50px;
}

.checkbox:checked~.mainbox .search_input {
    width: 0;
    height: 0px;
}

.checkbox:checked~.mainbox .iconContainer {
    padding-right: 10px;
}

.checkbox {
    box-sizing: border-box;
    width: 30px;
    height: 30px;
    position: absolute;
    right: 17px;
    top: 10px;
    z-index: 9;
    cursor: pointer;
    appearance: none;
}

.search_input {
    box-sizing: border-box;
    height: 100%;
    width: 170px;
    background-color: transparent;
    border: none;
    outline: none;
    padding-bottom: 4px;
    padding-left: 10px;
    font-size: 1em;
    color: white;
    transition: all 0.3s ease;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.search_input::placeholder {
    color: rgba(255, 255, 255, 0.776);
}

.iconContainer {
    box-sizing: border-box;
    width: fit-content;
    transition: all 0.3s ease;
}

.search_icon {
    box-sizing: border-box;
    fill: white;
    font-size: 1.3em;
}

header#header-sticky {
    background: var(--pink);
}


/* =========header========= */

/* Hide mobile header by default */
.header-mobile {
    display: none;
}

/* Below 1200px: show mobile, hide desktop */
@media (max-width: 1199px) {
    .header-desktop {
        display: none;
    }

    .header-mobile {
        display: block;
    }

    .pre-head {
        display: none;
    }

    /* .mean__menu-wrapper {
                display: none;
            } */

    header#header-sticky {
        background: white;
        padding: 20px;
    }

    .header-main {
        justify-content: space-between;
    }
}

/* Above 1200px: show desktop, hide mobile */
@media (min-width: 1200px) {
    .header-desktop {
        display: block;
    }

    .header-mobile {
        display: none;
    }
}

/* responsive header end */

.pre-head {
    background-color: white;
    padding: 10px 80px;
    position: sticky;
    top: 0;
}

.pre-logo img {
    width: 300px;
}

.p-btn {
    background-color: var(--pink);
    font-family: var(--manrope);
    color: white;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s;
    border: 1px solid var(--pink);
    width: 124px;
    height: 48px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-btn:hover {
    color: var(--pink);
    background-color: white;
}

.dream-sticky-head {
    position: sticky;
    top: 0;
    z-index: 500;
}

.swiper-slide img {
    width: 100%;
    object-fit: cover;
    height: auto;
    display: block;
}

.swiper-slide {
    position: relative;
}

.swiper-slide h2 {
    position: absolute;
    bottom: 10%;
    color: white;
    font-family: var(--poppins);
    font-weight: 400;
    font-size: 40px;
    text-transform: capitalize;
    background: var(--pink);
    padding: 20px;
    padding-left: 70px;
    border-radius: 0px 10px 10px 0;
}

.about-section {
    padding-top: 100px;
    position: relative;
}

img.flower {
    position: absolute;
    top: 0;
    z-index: 9;
}

.about-section h1 {
    font-family: var(--poppins);
    font-weight: 500;
    font-size: 40px;
    text-transform: capitalize;
}

.about-section h2 {
    font-family: var(--poppins);
    font-weight: 500;
    font-size: 32px;
    text-transform: capitalize;
}

.about-section h6 {
    font-family: Poppins;
    font-weight: 400;
    font-size: 24px;
    color: var(--pink);
    margin-bottom: 10px;
    text-transform: capitalize;
}

.counter-section {
    background-color: var(--pink);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
}

.count-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.count-card span,
.count-card h3 {
    font-family: Barlow Condensed;
    font-weight: 700;
    font-style: Bold;
    font-size: 48px;
    color: white;
}

.count-card h6 {
    font-family: Barlow Condensed;
    font-weight: 500;
    font-size: 24px;
    color: white;
}

.count-card p {
    color: white;
    font-family: Barlow Condensed;
    font-weight: 400;
    line-height: 0;
    font-size: 16px;
}

.counter-wrapper {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.counter-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.graphical-section h3 {
    font-family: var(--poppins);
    font-weight: 500;
    font-style: Medium;
    font-size: 32px;
    text-transform: capitalize;
    position: absolute;
    top: 123px;
    left: 400px;
}

.course-section {
    background: url(../img/courses-bg.jpg);
    background-size: cover;
    padding: 100px 0;
}

.course-title h2 {
    font-family: Barlow Condensed;
    font-weight: 400;
    font-size: 40px;
    text-transform: capitalize;
}

.course-title span {
    font-family: Barlow Condensed;
    font-weight: 700;
    font-size: 40px;
    color: var(--pink);
    text-transform: capitalize;
}

.course-card {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    height: 350px;
}

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

.course-card h4 {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-family: var(--poppins);
    font-weight: 600;
    font-size: 24px;
}

.card-hover {
    background: var(--pink);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-radius: 5px;
    height: 100%;
    /* padding: 25px 45px; */
    padding: 20px;
    opacity: 0;
    transition: 0.5s ease;
}

.course-card:hover .card-hover {
    opacity: 1;
}

.card-hover-content h5 {
    font-family: var(--poppins);
    font-weight: 600;
    font-size: 24px;
    color: white;
    text-align: center;
    margin-bottom: 16px;
    text-transform: capitalize;
}

.card-hover-content p,
.card-hover-content ul li {
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    color: white;
}

.card-hover-content ul {
    list-style: disc;
    padding-left: 24px;
}

.news-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--pink);
    background-image: url(../img/white-graph.png);
    background-position: right;
    background-repeat: no-repeat;
    padding: 40px 0;
}

.news-head h5 {
    font-family: Poppins;
    font-weight: 500;
    font-size: 24px;
    color: white;
    text-transform: capitalize;
}

.news-head h4 {
    font-family: Poppins;
    font-weight: 300;
    font-size: 32px;
    color: white;
    line-height: 48px;
    text-align: center;
    text-transform: capitalize;
}

.card-hover-content a {
    background: white;
    color: var(--pink);
    display: inline-block;
    padding: 10px 20px;
}

.pink_span {
    color: white;
    font-family: Poppins;
    font-weight: 500;
    font-size: 16px;
    background: var(--pink);
    text-transform: capitalize;
    padding: 8px 16px;
    border-radius: 10px;
}

.featured_news h3 {
    font-family: var(--poppins);
    font-weight: 400;
    font-size: 20px;
    padding: 10px 0;
    text-transform: capitalize;
    color: var(--pink);
}

.featured_news.small h3 {
    font-size: 20px;
    line-height: 28.8px;
    margin-top: 10px;
}

.featured_news h4 {
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
}

.featured_news.small h4 {
    font-size: 12px;
    margin-top: 10px;
}

.featured_news p {
    /* max-width: 70%; */
    margin-top: 15px;
    margin-bottom: 30px;
}

.featured_news.small p {
    max-width: 100%;
    margin-bottom: 0;
}

.sub_news_img {
    height: 135px;
    overflow: hidden;
}

.news_title {
    font-family: Poppins;
    font-weight: 500;
    font-size: 24px;
    line-height: 100%;
    text-transform: capitalize;
    position: relative;
    padding-left: 12px;
}

.news_title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background-color: var(--pink);
}

.news_card {
    margin-top: 30px;
    padding: 20px;
    box-shadow: 0px 0px 10px 0px #00000040;
}

.highlight {
    background-color: var(--pink);
    padding-bottom: 40px;
}

.mid_banner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.left_mid {
    position: relative;
    height: 100%;
    background-color: var(--pink);
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 20px;
    padding-right: 100px;
}

.strips {
    position: absolute;
    top: 0;
    left: 10%;
}

.left_mid h3,
.left_mid span {
    font-family: var(--poppins);
    font-weight: 600;
    font-size: 32px;
    color: white;
    text-transform: capitalize;
}

.left_mid span {
    font-weight: 400;
}

.logos {
    background-color: white;
    padding: 40px 0;
}

.marquee-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.marquee {
    width: var(--marquee-width);
    height: var(--marquee-height);
    margin: auto;
    background-color: #fff;
    overflow: hidden;
    position: relative;
}

.marquee::before,
.marquee::after {
    position: absolute;
    top: 0;
    width: 10rem;
    height: 100%;
    content: "";
    z-index: 2;
    pointer-events: none;
}

.marquee::before {
    left: 0;
    background: linear-gradient(to right, #fff 0%, transparent 100%);
}

.marquee::after {
    right: 0;
    background: linear-gradient(to left, #fff 0%, transparent 100%);
}

.marquee-content {
    list-style: none;
    height: 100%;
    display: flex;
    align-items: center;
    animation: scrolling var(--marquee-animation-duration) linear infinite;
    padding: 0;
    margin: 0;
}

.marquee.reverse .marquee-content {
    animation: scrolling-reverse var(--marquee-animation-duration) linear infinite;
}

@keyframes scrolling {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-1 * var(--marquee-element-width) * var(--marquee-elements)));
    }
}

@keyframes scrolling-reverse {
    0% {
        transform: translateX(calc(-1 * var(--marquee-element-width) * var(--marquee-elements)));
    }

    100% {
        transform: translateX(0);
    }
}

.marquee-content li {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: var(--marquee-element-width);
    height: 100%;
    padding: 1rem;
}

.marquee-content li img {
    max-height: 90%;
    max-width: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    :root {
        --marquee-elements-displayed: 3;
    }

    .marquee::before,
    .marquee::after {
        width: 5rem;
    }
}

@media (max-width: 480px) {
    :root {
        --marquee-elements-displayed: 1;
    }

    .marquee::before,
    .marquee::after {
        width: 3rem;
    }
}

.empty_divider {
    width: 100%;
    height: 40px;
    background: var(--pink);
}

.success {
    background: url(../img/success-bg.jpg) no-repeat center;
    background-size: cover;
    padding: 40px 0 100px;
}

.success h2 {
    font-family: Barlow Condensed;
    font-weight: 500;
    font-size: 40px;
    line-height: 48px;
    text-align: center;
    text-transform: capitalize;
}

.test_card {
    background-color: white;
    box-shadow: 0px 0px 10px 0px #B51E4F40;
    padding: 8px;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.test_card:hover {
    box-shadow: 0px 0px 10px 0px #B51E4F80;
    transform: scale(1.01);
}

.test_img {
    height: 397px;
    border-radius: 10px;
    overflow: hidden;
}

.test_content p {
    font-family: Poppins;
    font-weight: 300;
    font-size: 16px;
}

.test_content h6 {
    font-family: Poppins;
    font-weight: 400;
    font-style: Italic;
    font-size: 14px;
}

.foot_bo {
    width: 100%;
    height: 1px;
    background: #000000;
    margin: 5px 0 20px;
}

.footer-section .foot_logo {
    width: 300px;
}

.foot_ul li {
    display: flex;
    gap: 10px;
}

.foot_ul li a {
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    color: #000;
}

.foot_icons {
    color: var(--pink) !important;
}

.foot_logo_grid {
    margin: 40px 0;
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(2, auto);
    justify-content: start;
}

.foot_title {
    font-family: var(--poppins);
    font-weight: 500;
    font-size: 18px;
    color: #000;
    text-align: center;
    text-transform: capitalize;
}

.foot_list {
    list-style: disc;
    color: #000;
    padding-left: 2rem;
}

.foot_list li a {
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    color: #000;
    line-height: 200%;
    text-transform: capitalize;
}

.foot_bottom {
    background: var(--pink);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-family: Poppins;
    font-weight: 400;
    text-align: center;
    font-size: 16px;
}

.sticky_icons {
    position: fixed;
    width: fit-content;
    right: 3%;
    bottom: 5%;
    z-index: 15;
}

.sticky_icons ul li {
    margin-bottom: 20px;
}

@media (min-width: 1024px) {
    .mt-special {
        margin-top: 63px;
    }
}

@media(max-width:1024px) {
    .mid_banner {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    .left_mid {
        justify-content: center;
        padding: 20px !important;
    }

    .strips {
        display: none;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding-top: 50px;
    }

    .swiper-slide h2 {
        font-size: 28px;
    }

    .about-section h1 {
        font-size: 32px;
    }

    .about-section h2 {
        font-size: 26px;
    }

    .about-section h6 {
        font-size: 20px;
    }

    .featured_news h3,
    .featured_news.small h3 {
        line-height: normal;
        margin-top: 10px;
        font-size: 18px;
    }

    .featured_news.small h4 {
        font-size: 14px;
    }

    .success {
        padding: 40px 0 60px;
    }
}

@media (max-width: 575px) {
    .pre-head {
        padding: 10px;
    }

    .pre-logo img {
        width: 170px;
    }

    .swiper-slide h2 {
        font-size: 16px;
        padding: 10px;
    }

    .about-section h1 {
        font-size: 26px;
    }

    .about-section h2 {
        font-size: 22px;
    }

    .about-section h6 {
        font-size: 18px;
    }

    p {
        font-size: 14px;
    }

    .news-head {
        background-image: none;
    }

    .left_mid h3,
    .left_mid span {
        font-size: 22px;
    }

    .news-head h4 {
        font-size: 22px;
    }

    .course-section {
        padding: 40px 0;
    }

    .featured_news h3,
    .featured_news.small h3 {
        font-size: 16px;
    }


}

/* ===================== inner pages =================== */

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 30vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: white;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.3);
    margin-bottom: 0;
}


.breadcrumb h1 {
    color: white;
    font-family: var(--poppins);
    font-weight: 500;
    font-size: 40px;
    position: relative;
    z-index: 1;
}

.breadcrumb h1::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -6px;
    width: 50%;
    height: 3px;
    z-index: -1;
    background: var(--pink);
}

.sticky-img {
    position: sticky;
    top: 180px;
    border-bottom: 10px solid var(--pink);
    border-right: 10px solid var(--pink);
}

.contact-contentv2 {
    background: var(--pink);
    color: white;
    padding: 40px;
    border-radius: 20px;
}

.write-comment h4 {
    color: white;
    font-family: var(--poppins);
}

.details {
    background: rgba(245, 222, 179, 0.50);
    padding: 40px;
    border-radius: 20px;
    height: 100%;
}

.details h4 {
    font-size: 28px;
    font-family: var(--poppins);
}

.detail_div {
    display: flex;
    align-items: center;
    gap: 15px;
}

.detail_div span {
    background: var(--pink);
    padding: 10px;
    display: flex;
    justify-content: center;
    color: white;
    border-radius: 8px;
    font-size: 25px;
    align-items: center;
}

.sticky-form {
    position: sticky;
    top: 180px;
}

.check_list {
    margin-bottom: 15px;
}

.check_list p {
    padding-left: 24px;
    opacity: 0.8;
    font-weight: 300;
}

.check_list li i {
    color: var(--pink);
}

.check_list li {
    display: flex;
    align-items: baseline;
    gap: 10px;
    color: #000;
    font-size: 16px;
}

.course_img_wrapper {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 30px;
}

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

.faq_col {
    background: #f5deb380;
    padding: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 100px;
}

.blog_card {
    width: 100%;
    padding: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.blog_card .blog_img {
    width: 100%;
    height: 330px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

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

.blog_card .blog_content h3 {
    font-family: var(--poppins);
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
}

.blog_content span {
    display: flex;
    align-items: center;
    font-size: 16px;
    gap: 10px;
    color: #000;
}

.blog_content span i {
    color: var(--pink);
}

.page-link {
    color: var(--pink);
}

@media (max-width: 768px) {
    .breadcrumb h1 {
        font-size: 32px;
    }

}

@media (max-width: 480px) {
    .breadcrumb h1 {
        font-size: 26px;
    }

    .check_list li {
        font-size: 14px;
    }
}

.modal-content {
    border-radius: 22px;
}

.btn-close {
    float: right;
    filter: invert(1) grayscale(100%) brightness(200%);
    opacity: 1;
}

.des-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    /* padding: 40px 0; */
}

.cal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.3);
}

.cal h5 {
    font-weight: 400;
    margin: 0;
}

.cal span {
    font-weight: 600;
    color: #000;
    margin: 0;
}

.scope_text {
    padding: 10px 18px;
    border-radius: 4px;
    background: var(--pink);
    color: white;
}

.scope_text.alt {
    background: white;
    border: 1px solid var(--pink);
    color: #000;
}