/********** Template CSS **********/
:root {
    --primary: #ff4880;
    --light: #FFF5F3;
    --dark: #2412e4;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Heading ***/
h1,
h2,
h3,
h4,
.h1,
.h2,
.h3,
.h4,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
    font-family: 'Lobster Two', cursive;
    font-weight: 700;
}

h5,
h6,
.h5,
.h6 {
    font-weight: 600;
}

.font-secondary {
    font-family: 'Lobster Two', cursive;
}




/*** Topbar Start ***/
.topbar .top-info {
    font-size: medium;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.topbar .top-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar .top-link a {
    margin-right: 10px;
}

.topbar .top-link a:hover {
    background: var(--dark) !important;
}

.topbar .top-link a:hover i {
    color: var(--primary) !important;
}

/*** Topbar End ***/

/*** Navbar ***/
.navbar .navbar-nav .nav-link {
    padding: 26px 15px;
    color: var(--dark);
    font-weight: 600;
    font-size: 18px;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    transition: .5s;
}

.navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 11px 21px;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #ffffff;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        top: calc(100% - 15px);
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;

    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}



@media screen and (max-width: 840px) {
    .navbar-brand {
        width: 100px;
    }

    .navbar-collapse {
        position: absolute;
        background: rgb(255, 255, 255);
        height: 100vh;
        width: 221px;
        left: -282px;
        top: 52px;
        box-shadow: var(--box-shadow);
        padding-bottom: 10px;
        transition: .3s linear;
    }

    .navbar-collapse.show {
        top: 59px;
        left: 0px;
    }

    .nav-number {
        padding: 0 20px;
    }

    .navbar-light .navbar-toggler {
        color: var(--light) !important;
        /* border-color: var(--light) !important; */
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        align-items: center;
        justify-content: end;
    }
}


.navbar-toggler {
    float: right;
    border: none;
    padding-right: 0;

}

.navbar-toggler:active,
.navbar-toggler:focus {
    outline: none;
}

.navbar-light .navbar-toggler {
    color: var(--light) !important;
    /* border-color: var(--light) !important; */
}

.navbar-light .navbar-toggler-icon {
    width: 24px;
    height: 17px;
    background-image: none;
    position: relative;
    border-bottom: 2px solid var(--primary);
    transition: all 300ms linear;

}

.navbar-light .navbar-toggler-icon:after,
.navbar-light .navbar-toggler-icon:before {
    width: 24px;
    position: absolute;
    height: 2px;
    background-color: var(--primary);
    top: 0;
    left: 0;
    content: '';
    z-index: 2;
    transition: all 300ms linear;
}

.navbar-light .navbar-toggler-icon:after {
    top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
    transform: translateY(8px) rotate(-45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    border-color: transparent;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--green);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}



/*** Header ***/
.header-carousel::before,
.header-carousel::after,
.page-header::before,
.page-header::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 10px;
    top: 0;
    left: 0;
    z-index: 1;
}

.header-carousel::after,
.page-header::after {
    height: 19px;
    top: auto;
    bottom: 0;
}

@media (max-width: 576px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 203px !important;
    }

    .header-carousel .owl-nav {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 432px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }

}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .2), rgba(0, 0, 0, .2)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}


@media screen and (max-width: 840px) {

    .header-carousel::before,
    .header-carousel::after,
    .page-header::before,
    .page-header::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 10px;
        top: 0;
        left: 0;
        background: url(../img/bg-header-top.png) center center repeat-x;
        z-index: 1;
        display: none;
    }

    .header-carousel::after,
    .page-header::after {
        height: 19px;
        top: auto;
        bottom: 0;
        background: url(../img/bg-header-bottom.png) center center repeat-x;
        display: none;

    }
}

.header-carousel::before,
.header-carousel::after,
.page-header::before,
.page-header::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 10px;
    top: 0;
    left: 0;
    z-index: 1;
}

.header-carousel::after,
.page-header::after {
    height: 19px;
    top: auto;
    bottom: 0;
}




/*** activity ***/
.activity-item .activity-icon {
    position: relative;
    margin: 0 auto;
    width: 100px;
    height: 100px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.activity-item .activity-icon::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .9);
    transition: .5s;
    z-index: 1;
}

.activity-item .activity-icon span {
    position: absolute;
    content: "";
    width: 15px;
    height: 30px;
    top: 0;
    left: 0;
    border-radius: 50%;
}

.activity-item .activity-icon span:last-child {
    left: auto;
    right: 0;
}

.activity-item .activity-icon i {
    position: relative;
    z-index: 2;
}

.activity-item .activity-text {
    position: relative;
    min-height: 250px;
    padding: 30px;
    border-radius: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
    flex-direction: column;
}

.activity-item .activity-text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .9);
    transition: .5s;
    z-index: 1;
}

.activity-item .activity-text * {
    position: relative;
    z-index: 2;
}

.activity-item:hover .activity-icon::before,
.activity-item:hover .activity-text::before {
    background: transparent;
}

.activity-item * {
    transition: .5s;
}

.activity-item:hover * {
    color: #FFFFFF !important;
}


/*** About ***/
.about-img img {
    transition: .5s;
}

.about-img img:hover {
    background: var(--primary) !important;
}

.ceo-right-border {
    border-right: 1px solid var(--primary);
}

@media screen and (max-width: 840px) {
    .ceo-right-border {
        border-right: none;
    }
}


/* about about section ================================================== */

.img-border {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.img-border::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 3rem;
    bottom: 3rem;
    border: 5px solid var(--primary);
}

.img-border img {
    position: absolute;
    top: 3rem;
    left: 3rem;
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
    object-fit: cover;
}




/*** About Start ***/
.about-about .tab-class .nav .nav-item a.active,
.about-about .tab-class .nav .nav-item a.active span {
    background: var(--primary) !important;
    color: var(--light) !important;
}

.about-about .tab-class {
    background-color: pink;
}

/*** About End ***/



/*** Classes ***/
.classes-item {
    transition: .5s;
}

.classes-item:hover {
    margin-top: -10px;
}


/*** Footer Start ***/
.footer {
    background: linear-gradient(rgba(255, 255, 255, .8), rgba(255, 255, 255, 1)), url(../img/background.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}

.footer .footer-galary-img img {
    width: 100%;
    border-style: dotted;
    border-color: var(--primary);
    transition: 0.5s;
}

.footer .footer-galary-img img:hover {
    transform: scale(1.2);
}

.footer-item a.text-body:hover {
    color: var(--primary) !important;
}

/*** Footer End ***/



.bg-registration {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../img/registration.jpg), no-repeat center center;
    background-size: cover;
}


/* <!-- Child Future Ready start ========================================================================= --> */
.future {
    background-color: #fe88c9;
}

.future-item {
    padding: 16px;
    border: 1px solid #ffffff;
    background-color: #FFFFFF;
    border-radius: 10px;
}

/* <!-- Child Future Ready end ========================================================================= --> */

/* <!-- safety start =============================================== --> */
.safety {
    background-color: #ffd48b;
}

.safety .card img {
    width: 90px;
    margin: 0 auto;
}

.safety .card {
    height: 227px;
}

/* <!-- safety end =============================================== --> */




/*** classes Start ***/
.classes .classes-item {
    border-radius: 16x;
    background: var(--bs-white);
    transition: 0.5s;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    margin-bottom: 4px;
}

.classes .classes-item a {
    transition: 0.5s;
}

.classes .classes-item:hover a:hover {
    color: var(--bs-primary);
}

.classes .classes-item .classes-img {
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.classes .classes-item .classes-img img {
    transition: 0.5s;
}

.classes .classes-item:hover .classes-img img {
    transform: scale(1.2);
}

.classes .classes-item .classes-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(0, 208, 132, 0.1);
    opacity: 0;
    transition: 0.5s;
    z-index: 1;
}

.classes .classes-item:hover .classes-img::after {
    opacity: 1;
}

.classes .classes-item .classes-img .classes-title {
    position: absolute;
    bottom: 25px;
    left: 25px;
    z-index: 5;
}

.classes .classes-item .classes-img .classes-title a {
    color: var(--bs-white);
    background: var(--bs-primary);
    transition: 0.5s;
}

.classes .classes-item:hover .classes-img .classes-title a:hover {
    color: var(--bs-dark);
}

.classes-carousel .owl-stage-outer {
    margin-top: 58px;
}

.classes .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 6px 35px;
    border-radius: 30px;
    transition: 0.5s;
}

.classes .owl-nav .owl-prev:hover {
    background: var(--bs-dark);
    color: var(--bs-primary);
}

.classes .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 6px 35px;
    border-radius: 30px;
    transition: 0.5s;
}

.classes .owl-nav .owl-next:hover {
    background: var(--bs-dark);
    color: var(--bs-primary);
}

/*** classes End ***/




/*---------------------
	Enroll Section
-----------------------*/

.enroll-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../img/registration.jpg), no-repeat center center;
    background-size: cover;
}

.enroll-section:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0.8;
}

.enroll-section .container {
    position: relative;
    z-index: 1;
}

.enroll-section .section-title {
    margin-bottom: 40px;
}

.enroll-list-item {
    padding-left: 70px;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 10px;
}

.enroll-list-item span {
    position: absolute;
    width: 40px;
    height: 40px;
    left: 0;
    top: 0;
    text-align: center;
    border-radius: 50px;
    background: var(--primary);
    font-size: 16px;
    font-weight: 500;
    padding-top: 10px;
}

.enroll-list-item h5 {
    font-weight: 400;
    margin-bottom: 10px;
}

.enroll-list-item:after {
    position: absolute;
    content: '';
    height: calc(100% - 45px);
    left: 20px;
    top: 48px;
    border-left: 1px dashed #6c6e70;
}

.enroll-list-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.enroll-list-item:last-child:after {
    display: none;
}






/*********************************
11. Team
*********************************/

.team {
    background: url(../img/team_background.jpg), no-repeat center center;
    background-size: cover;
}

.team_image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: -80px;
    z-index: 5;
    overflow: hidden;
}

.team_image img {
    max-width: 100%;
}

.team_body {
    width: 100%;
    padding-top: 108px;
    padding-bottom: 24px;
    background: #FFFFFF;
    border-radius: 0px 20px;
    box-shadow: 0px 1px 10px rgba(29, 34, 47, 0.1);
    border: 1px solid var(--primary);
    text-align: center;
    transition: .3s linear ease-in-out;
}

.team_item:hover .team_body {
    box-shadow: 0px 5px 40px rgba(29, 34, 47, 0.15);
    background-color: var(--primary);
}

.team_title a {
    font-family: 'Roboto Slab', serif;
    font-size: 20px;
    font-weight: 700;
    color: #384158;
}

.team_title a:hover {
    color: var(--light);
}

.team_subtitle {
    font-size: 14px;
    font-weight: 400;
    color: #76777a;
    margin-top: 6px;
}

.team_item:hover .team_subtitle {
    color: #ffffff;
}

/* Count Down Area section ******** */

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .count-down-area {
        padding-bottom: 60px;
        padding-top: 60px
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .count-down-area {
        padding-bottom: 60px;
        padding-top: 60px
    }
}

@media (max-width: 575px) {
    .count-down-area {
        padding-bottom: 60px;
        padding-top: 60px
    }
}

.count-down-area .count-down-wrapper {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center
}

.count-down-area .count-down-wrapper .single-counter {
    padding: 44px 10px 44px 9px;
    margin-bottom: 30px;
    border: 3px dashed var(--primary);
    border-radius: 20px;
}

.count-down-area .count-down-wrapper .single-counter i {
    font-size: 48px;
    line-height: 1;
    margin: 0 auto;
    margin-bottom: 16px;
    display: block;
    font-weight: 600;
    color: var(--primary);
}

.count-down-area .count-down-wrapper .single-counter .counter {
    font-size: 24px;
    font-family: "Sen", sans-serif;
    line-height: 1;
    margin-bottom: 12px;
    display: inline-block;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--dark);
}


.count-down-area .count-down-wrapper .single-counter p {
    font-size: 24px;
    line-height: 1;
    margin: 0;
    padding: 0;
    font-weight: 600;
    display: inline-block;
    font-family: "Sen", sans-serif;
    color: var(--dark);
}





/* founder start ================================================= */
.founder .pic {
    /* width: 22%; */
    padding: 20px 0;
    margin: 0 6% 0 2%;
    float: left;
    position: relative;
    z-index: 1;
}

/*  */

.founder .pic img {
    border-radius: 30px 30px 30px 30px;
    width: 100%;
    height: auto;
    border: 3px solid #e1c37d;
}

.founder .founder-content {
    /* width: 70%; */
    float: right;
}

.founder .title {
    display: block;
    font-size: 32px;
    font-weight: 600;
    color: #bf1212;
    margin: 0;
    text-transform: uppercase;
    padding-top: 65px;
    padding-left: 15px;
}



@media (max-width: 576px) {
    .founder .title {
        padding-top: 40px;
    }
}

.founder .post {
    display: block;
    font-size: 24px;
    font-weight: 400;
    line-height: 27px;
    color: #04b52a;
    text-transform: capitalize;
    margin-bottom: 10px;
    padding-left: 15px;
}

.founder .description {
    font-size: 16px;
    color: #0e20a8;
    padding: 0 15px;
    margin: 0;
    position: relative;
}

.founder .description:before,
.founder .description:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 17px;
    color: var(--dark);
    position: relative;
}

.founder .description:before {
    content: "\f10d";
    margin-right: 5px;
    top: 0;
    left: 0;
}

.founder .description:after {
    content: "\f10e";
    margin-left: 5px;
    position: relative;
    bottom: 0;
    right: 0;
}

/* founder end ================================================= */


/* faq start ===================================================== */

.faq .accordion-item {
    background-color: #FFFFFF;
    /* White background for items */
    border: 1px solid #E0E0E0;
    /* Light border */
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* Softer shadow */
}

.faq .accordion-header {
    background-color: var(--primary);
    /* Soft purple */
    color: #FFFFFF;
    /* White text */
    padding: 15px;
    font-size: 18px;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px 8px 0 0;
    transition: background-color 0.3s ease;
}

.faq .accordion-header:hover {
    background-color: var(--dark);
    /* Darker shade of purple */
}

.faq .accordion-content {
    background-color: #FAFAFA;
    /* Very light grey for content */
    overflow: hidden;
    padding: 0 15px;
    max-height: 0;
    transition: max-height 0.3s ease;
}

.faq .accordion-content p {
    margin: 15px 0;
    line-height: 1.5;
}

.faq .icon {
    transition: transform 0.3s ease;
}

.faq .active .icon {
    transform: rotate(45deg);
}

/* faq end ===================================================== */


.contact.container {
    position: relative;
    width: 100%;
    /* min-height: 100vh; */
    padding: 2rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact .form {
    width: 100%;
    max-width: 920px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.contact .contact-form {
    background-color: var(--primary);
    position: relative;
}

.contact .circle {
    border-radius: 50%;
    background: linear-gradient(135deg, transparent 20%, var(--dark));
    position: absolute;
}

.contact .circle.one {
    width: 130px;
    height: 130px;
    top: 130px;
    right: -40px;
}

.contact .circle.two {
    width: 80px;
    height: 80px;
    top: 10px;
    right: 30px;
}

.contact .contact-form:before {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    background-color: var(--primary);
    transform: rotate(45deg);
    top: 50px;
    left: -13px;
}

.contact form {
    padding: 2.3rem 2.2rem;
    z-index: 10;
    overflow: hidden;
    position: relative;
}

.contact .title {
    color: #fff;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 0.7rem;
}

.contact .input-container {
    position: relative;
    margin: 1rem 0;
}

.contact .f-input {
    width: 100%;
    outline: none;
    border: 2px solid #fafafa;
    background: none;
    padding: 0.6rem 1.2rem;
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border-radius: 5px;
    transition: 0.3s;
}

.contact textarea.f-input {
    padding: 0.8rem 1.2rem;
    min-height: 150px;
    border-radius: 5px;
    resize: none;
    overflow-y: auto;
}

.contact .btn {
    padding: 0.6rem 1.3rem;
    background-color: #fff;
    border: 2px solid #fafafa;
    font-size: 0.95rem;
    color: var(--primary);
    line-height: 1;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
    margin: 0;
    width: 100%;
}

.contact .btn:hover {
    background-color: transparent;
    color: #fff;
}

.contact .contact-info {
    padding: 2.3rem 2.2rem;
    position: relative;
}

.contact .contact-info .title {
    color: var(--primary);
}

.contact .text {
    color: #333;
    margin: 1.5rem 0 2rem 0;
}

.contact .information {
    display: flex;
    /* border: 1px solid red; */
    color: #555;
    margin: 0.7rem 0;
    /* align-items: center; */
    font-size: 0.95rem;
}

.contact .information i {
    color: var(--primary);
}

.contact .icon {
    width: 28px;
    margin-right: 0.7rem;
}

.contact .social-media {
    padding: 2rem 0 0 0;
}

.contact .social-media p {
    color: #333;
}

.contact .social-icons {
    display: flex;
    margin-top: 0.5rem;
}

.contact .social-icons a {
    width: 35px;
    height: 35px;
    border-radius: 5px;
    background: linear-gradient(45deg, var(--primary), var(--dark));
    color: #fff;
    text-align: center;
    line-height: 35px;
    margin-right: 0.5rem;
    transition: 0.3s;
}

.contact .social-icons a:hover {
    transform: scale(1.05);
}

.contact .contact-info:before {
    content: "";
    position: absolute;
    width: 110px;
    height: 100px;
    border: 22px solid var(--primary);
    border-radius: 50%;
    bottom: -77px;
    right: 50px;
    opacity: 0.3;
}

.contact .big-circle {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: linear-gradient(to bottom, var(--primary), var(--primary));
    bottom: 50%;
    right: 50%;
    transform: translate(-40%, 38%);
}

.contact .big-circle:after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    background-color: #fafafa;
    border-radius: 50%;
    top: calc(50% - 180px);
    left: calc(50% - 180px);
}

.contact .square {
    position: absolute;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(181%, 11%);
    opacity: 0.2;
}

@media (max-width: 850px) {
    .contact .form {
        grid-template-columns: 1fr;
    }

    .contact .contact-info:before {
        bottom: initial;
        top: -75px;
        right: 65px;
        transform: scale(0.95);
    }

    .contact .contact-form:before {
        top: -13px;
        left: initial;
        right: 70px;
    }

    .contact .square {
        transform: translate(140%, 43%);
        height: 350px;
    }

    .contact .big-circle {
        bottom: 75%;
        transform: scale(0.9) translate(-40%, 30%);
        right: 50%;
    }

    .contact .text {
        margin: 1rem 0 1.5rem 0;
    }

    .contact .social-media {
        padding: 1.5rem 0 0 0;
    }
}

@media (max-width: 480px) {
    .contact .container {
        padding: 1.5rem;
    }

    .contact .contact-info:before {
        display: none;
    }

    .contact .square,
    .contact .big-circle {
        display: none;
    }

    .contact form,
    .contact .contact-info {
        padding: 1.7rem 1.6rem;
    }

    .contact .text,
    .contact .information,
    .contact .social-media p {
        font-size: 0.8rem;
    }

    .contact .title {
        font-size: 1.15rem;
    }

    .contact .social-icons a {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }

    .contact .icon {
        width: 23px;
    }

    .contact .f-input {
        padding: 0.45rem 1.2rem;
    }

    .contact .btn {
        padding: 0.45rem 1.2rem;
    }
}


/* donation ================================== */
.donation .container {
    width: 90%;
    height: 100%;
    max-width: 1170px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    grid-gap: 60px;
    padding: 35px 0;
}

.donation .contentLeft,
.donation .contentRight {
    width: 100%;
}

.donation .contentLeft .row {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
}

.donation .contentLeft .row .imgWrapper {
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 5px 10px 10px rgba(0, 0, 0, 0.15);
}

.donation .contentLeft .row .imgWrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    transition: 0.3s ease;
}

.donation .contentLeft .row .imgWrapper:hover img {
    transform: scale(1.5);
}

.donation .contentLeft .row .imgWrapper:nth-child(odd) {
    transform: translateY(-20px);
}

.donation .contentLeft .row .imgWrapper:nth-child(even) {
    transform: translateY(20px);
}

.donation .contentRight .content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.donation .contentRight .content h4 {
    font-size: 22px;
    font-weight: 400;
    color: var(--primary);
}

.donation .contentRight .content h2 {
    font-size: 40px;
    color: #1e272e;
}

.donation .contentRight .content p {
    font-size: 16px;
    color: #343434;
    line-height: 28px;
    padding-bottom: 10px;
}

.donation .contentRight .content a {
    display: inline-block;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 13px 30px;
    color: #fff;
    background: var(--primary);
    border-radius: 8px;
    user-select: none;
}

@media(max-width: 768px) {
    .donation .container {
        grid-template-columns: 1fr;
    }

    .donation .contentLeft .row {
        grid-template-columns: repeat(2, 1fr);
    }

    .donation .contentLeft .row .imgWrapper {
        height: 150px;
    }

    .donation .contentRight .content h4 {
        font-size: 18px;
    }

    .donation .contentRight .content h2 {
        font-size: 30px;
    }
}



/*** Donation Start ***/
.donation-one .donation-item {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.donation-one .donation-item::after {
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    display: flex;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}


.donation-one .donation-item .donation-content {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 20px;
    justify-content: end;
    bottom: -60px;
    left: 0;
    transition: 0.5s;
    z-index: 3;
}

.donation-one .donation-item:hover .donation-content {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 20px;
    justify-content: end;
    bottom: 0px;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
}

.donation-one .donation-item .donation-btn {
    visibility: hidden;
    opacity: 0;
    transition: 0.5s;
}

.donation-one .donation-item:hover .donation-btn {
    visibility: visible;
    opacity: 1;
}

/*** Donation End ***/


.call-to-action {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/Donate-Bg.jpg) center center no-repeat;
    background-size: cover;
}


/*** Programs Start ***/
.program .program-text {
    background: linear-gradient(rgba(255, 72, 128, 0.1), rgba(255, 72, 128, 0.1));
}

.program .program-teacher {
    background: linear-gradient(rgba(255, 72, 128, 0.1), rgba(255, 72, 128, 0.1));
}

.program .program-item .program-img .program-rate {
    position: absolute;
    width: 100px;
    top: -20px;
    left: 50%;
    margin-left: -50px;
    border-radius: 10% / 50%;
}

.program .program-item .program-text {
    padding-top: 150px;
    margin-top: -125px;
}

.program .program-item .program-img img,
.program .program-item .program-teacher img,
.program .program-item:hover .program-text-inner a.h4 {
    transition: 0.5s;
}

.program .program-item:hover .program-img img,
.program .program-item:hover .program-teacher img {
    transform: scale(1.2);
}

.program .program-item:hover .program-text-inner a.h4 {
    color: var(--primary) !important;
}

.program .img-border-radius {
    border-radius: 50% 20% / 10% 40%;
}

.coursees .courses-overlay {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.5);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.coursees:hover .courses-overlay {
    height: 100%;
    opacity: 1;
}

/*** Programs End ***/


/* scholarship start ========================================================== */

.skill-card {
    border: 3px dotted var(--primary);
    border-bottom: 6px solid var(--primary);
    padding: 10px;
    border-radius: 16px;
}


.applay-now-banner {
    background: var(--primary);
}

.applay-now-banner h1 {
    text-align: center;
    color: var(--light);
}



.btn-applay {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    overflow: hidden;
    display: inline-block;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    letter-spacing: 0.14em;
    border-radius: 3px;
    border: none;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    color: #fff;
    background-color: #121212;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    position: relative;
    z-index: 1;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.btn-applay {
    font-size: 13px;
    padding: 0 34px;
    line-height: 46px;
    background-color: var(--dark);
}

.btn-applay span {
    position: relative;
    display: inline-block;
    left: 0;
    -webkit-transition: left 0.2s ease-in-out, right 0.2s ease-in-out;
    -moz-transition: left 0.2s ease-in-out, right 0.2s ease-in-out;
    -ms-transition: left 0.2s ease-in-out, right 0.2s ease-in-out;
    -o-transition: left 0.2s ease-in-out, right 0.2s ease-in-out;
    transition: left 0.2s ease-in-out, right 0.2s ease-in-out;
}

.btn-applay>i {
    position: absolute;
    left: auto;
    font-size: 18px;
    width: 36px;
    line-height: 46px;
    background-color: rgba(0, 0, 0, 0.05);
    right: -36px;
    top: 0;
    text-align: center;
    display: block;
    border-radius: 0 3px 3px 0;
    -webkit-transition: left 0.2s ease-in-out, right 0.2s ease-in-out;
    -moz-transition: left 0.2s ease-in-out, right 0.2s ease-in-out;
    -ms-transition: left 0.2s ease-in-out, right 0.2s ease-in-out;
    -o-transition: left 0.2s ease-in-out, right 0.2s ease-in-out;
    transition: left 0.2s ease-in-out, right 0.2s ease-in-out;
}

.btn-applay:hover {
    color: #fff;
    opacity: .9;
    border-color: transparent;
}

.btn-applay:hover span {
    left: -16px;
}

.btn-applay:hover i {
    right: 0;
}





.sch-info .food_arena-end {
    background: linear-gradient(rgb(203, 27, 153), rgb(17, 17, 208)), center center no-repeat;
    background-size: cover;
    padding: 32px;
}

.sch-info h3 {
    color: var(--light);
    margin-bottom: 32px;
    font-size: 40px;
}

.sch-info p {
    color: var(--light);
}

@media (min-width: 992px) {

    .sch-info .food_arena-end {
        position: relative;
        margin-left: -90px;
        z-index: 1;
    }
}

/* scholarship start ========================================================== */




/* why us start ================================== */
.whyus-section .whyus-box {
    border: none;
    border-bottom: 10px solid var(--primary);
    border-radius: 20px;
    box-shadow: rgb(204, 219, 232) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
    margin-top: 18px;
}

.whyus-section .whyus-box i {
    font-size: 48px;
    color: var(--primary);
}

.whyus-section .whyus-box h3 {
    color: var(--dark);
}

/* why us end ================================== */


/* community start ----------------------------------------------- */

.sectionHeading {
    margin-bottom: 20px;
    color: var(--primary);
}

::-moz-selection {
    background: #fcfcfc;
    background: rgba(224, 224, 224, 0.2);
    text-shadow: none;
}

::selection {
    background: #fcfcfc;
    background: rgba(224, 224, 224, 0.2);
    text-shadow: none;
}

img::-moz-selection {
    background: transparent;
}

img::selection {
    background: transparent;
}

img::-moz-selection {
    background: transparent;
}

.shadow-nohover {
    box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
    transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

@-webkit-keyframes animatop {
    0% {
        opacity: 0;
        bottom: -500px;
    }

    100% {
        opacity: 1;
        bottom: 0px;
    }
}

@keyframes animatop {
    0% {
        opacity: 0;
        bottom: -500px;
    }

    100% {
        opacity: 1;
        bottom: 0px;
    }
}

@-webkit-keyframes rotatemagic {
    0% {
        opacity: 0;
        transform: rotate(0deg);
        top: -24px;
        left: -253px;
    }

    100% {
        transform: rotate(-30deg);
        top: -24px;
        left: -78px;
    }
}

@keyframes rotatemagic {
    0% {
        opacity: 0;
        transform: rotate(0deg);
        top: -24px;
        left: -253px;
    }

    100% {
        transform: rotate(-30deg);
        top: -24px;
        left: -78px;
    }
}

h3 {
    margin: 20px 0;
}

.experience {
    border-left: 3px solid var(--primary);
    padding: 0 30px;
    margin-left: 185px;
}

@media (max-width: 767px) {
    .experience {
        margin-left: 0;
        padding-right: 0;
    }
}

.experience .item {
    position: relative;
    margin-bottom: 40px;
}

.experience .item::before {
    content: "";
    position: absolute;
    left: -43px;
    top: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #000000;
    border: 3px solid var(--primary);
}

.experience .item::after {
    content: "";
    position: absolute;
    left: -37px;
    top: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
}

.experience .company-name {
    color: var(--primary);
}

.experience .location {
    position: absolute;
    right: 0;
    top: 2px;
}

.experience .location .fa {
    margin-right: 8px;
}

.experience .job-info {
    position: absolute;
    left: -185px;
    top: 0;
}

.experience .job-info .title {
    color: var(--primary);
}

@media (max-width: 767px) {
    .experience .job-info {
        position: static;
        margin-bottom: 1rem;
    }
}


/* end============================ */


/* activity start ================================= */
.gallery .gallery-item {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.gallery .gallery-item img {
    transition: 0.5s;
}

.gallery .gallery-item:hover img {
    transform: scale(1.2);
}

.gallery .gallery-item .gallery-content {
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    background: rgba(235, 139, 177, 0.4);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: end;
    transition: 0.5s;
    z-index: 2;
}

.gallery .gallery-item:hover .gallery-content {
    height: 100%;
}

.gallery .gallery-item .gallery-content .gallery-inner {
    transition: 0.5s;
    background: rgba(0, 0, 0, 0.1);
    padding-top: 40px;
}

.gallery .gallery-item:hover .gallery-content .gallery-inner {
    background: rgb(237, 128, 190);
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gallery .gallery-item .search-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: -80px;
    opacity: 0;
    transition: 0.5s;
    z-index: 3;
}

.gallery .gallery-item:hover .search-icon {
    opacity: 1;
}


.service .service-item {
    position: relative;
    overflow: hidden;
}

.service .service-item .service-inner .service-title {
    position: relative;
    margin-top: -30px;
    text-align: center;
    transition: 0.5s;
}

.service .service-item .service-inner .service-title .service-content {
    position: absolute;
    bottom: -100%;
    left: 0;
    margin-left: 30px;
    margin-right: 30px;
    text-align: center;
    border-radius: 10px;
    background: var(--bs-primary);
    opacity: 0;
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-title .service-content {
    bottom: 0;
    opacity: 1;
}

.service .service-item .service-inner .service-title .service-content a h4 {
    border-bottom: 1px solid rgba(256, 256, 256, .1);
}

.service .service-item .service-inner .service-title .service-title-name {
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-title .service-title-name {
    opacity: 0;
}

.service .service-item .service-inner .service-img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.service .service-item .service-inner .service-img::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, .5);
    transition: 0.5s;
    opacity: 0;
}

.service .service-item:hover .service-inner .service-img::after {
    height: 100%;
    opacity: 1;
}

.service .service-item .service-inner .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-img img {
    transform: scale(1.3);
}


/*** activity End ***/



/*** Project ***/
.project-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.project-item .project-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    padding-top: 60px;
    transition: .5s;
}

.project-item:hover .project-overlay {
    opacity: 1;
    padding-top: 0;
}

.project-carousel .owl-nav {
    position: absolute;
    top: -100px;
    right: 0;
    display: flex;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
    margin-left: 15px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    border-radius: 55px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .15);
    font-size: 25px;
    transition: .5s;
}

.project-carousel .owl-nav .owl-prev:hover,
.project-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .project-carousel .owl-nav {
        top: -70px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .project-carousel .owl-nav .owl-prev,
    .project-carousel .owl-nav .owl-next {
        margin: 0 7px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}




/* donation counter start ---------------------------------------------- */

/*** Counter Facts Start ***/

.counter-facts {
    background: linear-gradient(rgba(255, 255, 255, .8), rgba(255, 255, 255, 0.7)), url(../img/counter-bg.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
}


.counter-facts .counter {
    position: relative;
    text-align: center;
    width: 200px;
    min-height: 215px;
    padding: 10px 15px;
    margin: 0 auto;
    border-radius: 100px;
    box-shadow: 0 8px 5px rgba(0, 0, 0, 0.2);
    background: var(--bs-white);
}

.counter-facts .counter:before {
    content: "";
    position: absolute;
    height: 105px;
    width: 100%;
    left: 0;
    top: 0;
    border-radius: 10px 10px 0 0;
    background-color: var(--bs-primary);

}

.counter-facts .counter .counter-icon {
    position: relative;
    width: 120px;
    height: 100px;
    border-radius: 10px 10px 0 0;
    font-size: 50px;
    line-height: 90px;
    color: var(--bs-primary) !important;
    display: flex;

}

.counter-facts .counter h3 {
    color: var(--bs-white);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 5px 0;
    display: flex;
}

.counter-facts .counter .counter-value {
    font-size: 30px;
    font-weight: 700;
    display: block;
    color: var(--bs-secondary);
}

@media screen and (max-width: 1200px) {
    .counter-facts .counter {
        margin-bottom: 40px;
    }
}

/*** Counter Facts End ***/


/*** testimonial Start ***/
.testimonial .testimonial-carousel {
    position: relative;

}

.testimonial .testimonial-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--bs-primary);
    border-radius: 10px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--bs-secondary);
}

.testimonial .border {
    border-radius: 20px;

}

/*** testimonial End ***/
