/********** Template CSS **********/
:root {
    --primary: #0778be;
    --secondary: #FF6922;
    --light: #EFFDF5;
    --dark: #0E2E50;
}
body{
    background-color: #fff;
    margin: 0;
    padding: 0;
}
.text-primary {
    color: #0778be !important;
}
.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}   
.btn-primary {
    background-color: #d10016;
    border-color: #d10016;
}
.btn-primary:hover{
  background-color: #eea137;
    border-color: #eea137;  
}
.bg-primary {
    background-color: #0778be !important;
}
.btn-dark{
     background-color: #d10016;
    border-color: #d10016;
}
.bg-dark {
    background-color: #000000 !important;
}
.bg-light {
    background-color: #dbe9ff !important;
}
a {
    color: #0778be;
}
a:hover{
    color: #d10016;
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6{
    color: #000;
}

/*** 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 {
    transition: .5s;
}

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

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

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

.btn-lg-square {
    width: 48px;
    height: 48px;
    margin: 0 -20px 110px 0;
}

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

.logo img{
    width: 100px;
    height: auto;
    padding: 5px;
}

/*** Navbar ***/
.nav-bar {
    position: relative;
    /*margin-top: 24px;
    padding: 0 3rem;*/
    transition: .5s;
    z-index: 9999;
}

.nav-bar.sticky-top {
    position: sticky;
    padding: 0;
    z-index: 999;
}

.navbar {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
}

.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;
}
.dropdown_user .dropdown-toggle:after{
    display: none;
}
.hdr_content_btn {
    font-size: 24px;
}
.hdr_content_btn a {
    color: #fff;
    font-weight: 500;
}
.hdr_content_btn i {
    font-size: 28px;
    color: #fff;
}
.dropdown.dropdown_user {
    text-align: right;
    font-size: 18px;
    color: #fff;
}
.hdr_btn_group {
    background: #d10016;
    padding: 10px;
    margin-right: -20px;
}
.sticky-top .hdr_btn_group{
    margin-right: -22px;
}

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

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

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

@media (max-width: 991.98px) {
    .nav-bar {
        margin: 0;
        padding: 0;
    }

    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        top: 100%;
        margin-top: 0;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
        
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
@media (min-width: 992px) {
    .header {
        margin-top: -120px;
    }
}

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

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 40px;
    font-size: 20px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}
ul.pagination.m-5.d-flex.justify-content-between.w-100 {
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .header-carousel .owl-nav {
        left: 25px;
    }
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #DDDDDD;
}


/*** Icon ***/
.icon {
    padding: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF !important;
    border-radius: 50px;
    border: 1px dashed var(--primary) !important;
}


/*** About ***/
.about-img img {
    position: relative;
    z-index: 2;
}

.about-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transform: skew(20deg);
    z-index: 1;
}


/*** Category ***/
.cat-item div {
    background: #FFFFFF;
    border: 1px dashed rgba(0, 185, 142, .3);
    transition: .5s;
}

.cat-item:hover div {
    background: var(--primary);
    border-color: transparent;
}

.cat-item div * {
    transition: .5s;
}

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


/*** schoolList List ***/
.nav-pills .nav-item .btn {
    color: var(--dark);
}

.nav-pills .nav-item .btn:hover,
.nav-pills .nav-item .btn.active {
    color: #FFFFFF;
}

.schoolList-item {
/*    box-shadow: 0 0 30px rgba(0, 0, 0, .08);*/
border: 1px solid #ccc;
    height: 100%;
}

.schoolList-item img {
    transition: .5s;
    height: 250px;
    object-fit: cover;
    width: 100%;
}

.schoolList-item:hover img {
    transform: scale(1.1);
}

.schoolList-item .border-top {
    border-top: 1px dashed rgba(0, 185, 142, .3) !important;
}

.schoolList-item .border-end {
    border-right: 1px dashed rgba(0, 185, 142, .3) !important;
}


/*** Team ***/
.team-item {
/*    box-shadow: 0 0 30px rgba(0, 0, 0, .08);*/
border: 1px solid #ccc;
    transition: .5s;
}

.team-item .btn {
    color: var(--primary);
    background: #FFFFFF;
    box-shadow: 0 0 30px rgba(0, 0, 0, .15);
}

.team-item .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.team-item:hover {
    border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
    background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
    color: var(--secondary) !important;
}


/*** Testimonial ***/
.testimonial-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 576px) {
    .testimonial-carousel {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.testimonial-carousel .testimonial-item .border {
    border: 1px dashed rgba(0, 185, 142, .3) !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    top: calc(50% - 20px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 40px;
    font-size: 20px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}


/*** Footer ***/
.footer a, 
.footer p, 
.footer .btn.btn-link{
    color: #fff;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    border-color: var(--light);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
    display: none;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: rgba(255,255,255,0.5);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.mostViewSchool{
    list-style-type: none;
    margin: 0;
    padding: 20px 20px 0;
    max-height: 290px;
    overflow: auto;
}


.mostViewSchool li{
    padding: 6px 0;
    border-bottom: 1px dotted #eee;
    text-align: left;
}

.mostViewSchool li a{
    display: flex;
    gap: 10px;
    color: #000;
}
.mostViewSchool li img{
  width: 40px;
  height: 40px;
  object-fit: cover;
}
.mostly_section_video iframe{
    width: 100%;
}

.listed-school-carousel .owl-nav .owl-prev,
.listed-school-carousel .owl-nav .owl-next, 
.school-compare-carousel .owl-nav .owl-prev,
.school-compare-carousel .owl-nav .owl-next, 
.blog-school-carousel .owl-nav .owl-prev,
.blog-school-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 40px;
    font-size: 20px;
    transition: .5s;
    position: absolute;
    top: 50%;
}
.listed-school-carousel .owl-nav .owl-next, 
.school-compare-carousel .owl-nav .owl-next, 
.blog-school-carousel .owl-nav .owl-next{
    right: -25px;
    left: unset;
}
.listed-school-carousel .owl-nav .owl-prev, 
.school-compare-carousel .owl-nav .owl-prev, 
.blog-school-carousel .owl-nav .owl-prev{
    left: -25px;
    right: unset;
}

.listed-school-carousel .owl-nav .owl-prev:hover,
.listed-school-carousel .owl-nav .owl-next:hover, 
.school-compare-carousel .owl-nav .owl-prev:hover, 
.school-compare-carousel .owl-nav .owl-next:hover, 
.blog-school-carousel .owl-nav .owl-prev:hover, 
.blog-school-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}
.team-item .position-relative input {
    position: absolute;
    top: 20px;
    right: 10px;
    width: 20px;
    height: 20px;
}
.team-item .position-relative img{
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.profile_pic_img{
width: 100px;
height: 100px;
border-radius: 100%;
}
.custom_tab_bx {
padding: 10px 10px;
border: 1px solid #eee;
height: 100%;
background-color: #fff;
}
.custom_tab_bx h3{
font-size: 18px;
}
.custom_tab_bx ul{
list-style-type: none;
padding: 0;
margin: 0;
max-height: 700px;
overflow: auto;
}
/* width */
.custom_tab_bx ul::-webkit-scrollbar {
width: 5px;
}
/* Track */
.custom_tab_bx ul::-webkit-scrollbar-track {
background: #f1f1f1;
}

/* Handle */
.custom_tab_bx ul::-webkit-scrollbar-thumb {
background: #888;
}
/* Handle on hover */
.custom_tab_bx ul::-webkit-scrollbar-thumb:hover {
background: #555;
}
.custom_tab_bx ul li > a{
display: flex;
gap: 10px;
text-decoration: none;
}
.custom_tab_bx ul li img{
width: 80px;
height: 80px;
object-fit: cover;
flex: none;
}
.custom_tab_bx ul li p{
margin: 0;
}
.custom_tab_bx ul li p span{
display: block;
width: 100%;
color: #000;
}
.custom_tab_bx h3 {
border-bottom: 2px solid #0d6efd;
margin: 0 0 20px;
padding: 0 0 10px;
}
.custom_tab_bx ul li {
border-bottom: 1px solid #ccc;
margin-bottom: 10px;
padding: 0 0 10px;
}
.custom_tab_bx ul li:last-child{
padding: 0;
margin: 0;
border: none;
}
.profileParentBx {
position: relative;
}
.profileParentBx img.bg_section_pro {
width: 100%;
position: absolute;
height: 100%;
object-fit: contain;
}
.profileParentBx .bg-dark{
z-index: 99;
position: relative;
background-color: rgb(0 0 0 / 79%)!important;
}
.social-share.mt-4 {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}
a.whatsapp-box {
    position: fixed;
    width: 50px;
    height: 50px;
    background: #0dbc00;
    right: 20px;
    bottom: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    border-radius: 100%;
    color: #fff!important;
    z-index: 999999;
}

.quickFacts:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100px;
    width: 5px;
    background: #1a83c5;
}
.quickFacts {
    box-shadow: 0px 0px 4px 0px #ccc;
    position: relative;
}    
.details_infra ul.list-group {
    flex-direction: inherit;
    flex-wrap: wrap;
    gap: 6px;
}
.details_infra ul.list-group li.list-group-item {
    flex: 1 1 calc(33.33% - 6px);
    max-width: calc(33.33% - 6px);
    font-size: 17px;
    border-radius: 0;
    padding: 10px 10px 10px 40px;
}
.details_infra ul.list-group .list-group-item+.list-group-item{
    border: 1px solid #ccc;
}
.details_infra ul.list-group li i{
    position: absolute;
    left: 10px;
}
.details_infra ul.list-group .btn-outline-primary{
    position: relative;
    padding: 5px 20px;
    font-size: 16px;
}
.details_infra ul.list-group .btn-outline-primary:hover{
    background-color: inherit;
    color: inherit;
    cursor: default;
}
.details_infra ul.list-group .btn-outline-primary i{
 left: -17px;
    font-size: 21px;
    z-index: 9;
    top: -5px;
}
.details_infra ul.list-group .btn-outline-primary:hover{
    color: inherit;
} 
.details_infra .btn-outline-primary {
    color: #1a83c5;
    border-color: #1a83c5;
}
.cat-item div{
    border-radius: 0;
} 
.galleryBx {
    background-color: #000;
    padding: 50px 0 0;
    color: #fff;
    margin: 40px 0 0;
} 
.galleryBx h2{
    color: #fff;
}
.galleryBx img{
    width: 100%;
    height: 280px;
    object-fit: cover;
}
.galleryBx .owl-nav.disabled, 
.mostLiky_Bs_section .owl-nav.disabled{
    display: block!important;
}
.galleryBx .owl-nav .owl-prev, 
.galleryBx .owl-nav .owl-next,
.newschools .owl-nav .owl-prev, 
.newschools .owl-nav .owl-next{
    margin: 7px 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 40px;
    font-size: 20px;
    transition: .5s;
}
.galleryBx .owl-nav .owl-prev, 
.newschools .owl-nav .owl-prev{
    position: absolute;
    bottom: 40%;
    left: 40px;
}
.galleryBx .owl-nav .owl-next,
.newschools .owl-nav .owl-next{
    position: absolute;
    bottom: 40%;
    right: 40px;
}
.scl_list_logo img{
    width: 80px;
    border-radius: 100%;
    padding: 10px;
    height: 80px;
    object-fit: contain;
    border: 1px solid #ccc;
    margin-bottom: 10px;
}
.scl_list_logo {
    display: flex;
    align-items: center;
    justify-content: unset;
    gap: 20px;
}
.scl_list_section .header-carousel .owl-item .owl-carousel-item {
    min-height: 400px;
    height: 400px;
}
.scl_list_section .header-carousel img.img-fluid {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 767px){
.btn{
    padding:5px 10px!important;
    font-size: 13px!important;
}
.details_infra{
    padding: 10px!important;
}
.details_infra h2{
    font-size: 18px;
}    
.details_infra ul.list-group li.list-group-item {
    flex: 1 1 100%;
    max-width: 100%;
    font-size: 15px;
    padding: 8px 8px 8px 30px;
}
.details_infra ul.list-group .btn-outline-primary i {
    left: -11px;
    font-size: 14px;
}

.details_infra ul.list-group li.list-group-item span{
     font-size: 12px;
}
.details_infra ul.list-group .btn-outline-primary {
    position: relative;
    padding: 3px 10px!important;
    font-size: 13px!important;
}
.details_infra span{
        font-size: 14px;
}
.galleryBx img{
    height: 130px;
}
.aboutUs-Section iframe{
    height: 210px;
}
.aboutUs-Section .col-lg-6:last-child {
    margin: 0;
}
.galleryBx {
    padding: 30px 0 0;
    margin: 20px 0 0;
}
.galleryBx .text-center.mx-auto.mb-5 {
    margin: 0!important;
}
.mostLiky_Bs_section h2 {
    font-size: 20px;
    margin: 0!important;
}
.mostLiky_Bs_section .text-center.mx-auto.mb-5 {
    margin: 0 0 16px!important;
}
.mostLiky_Bs_section img {
    height: 100px;
    width: 100px;
    object-fit: cover;
}
.quick_add .text-white.p-5.p-xl-0 {
    padding: 30px!important;
}
.quick_add h2.h1.text-white {
    font-size: 20px;
}
.quick_add p.mb-0 {
    font-size: 14px;
}
.scl_list_section h2.mb-3 {
    font-size: 18px;
}
.scl_list_section p , 
.scl_list_section td, 
.scl_list_section th{
    font-size: 14px;
}
.scl_list_section .owl-carousel .owl-item img{
    height: 200px;
    object-fit: cover;
}
.scl_list_logo{
    padding: 0;
    border: none;
}
.galleryBx .owl-nav .owl-prev, 
.galleryBx .owl-nav .owl-next{
   width: 20px;
    height: 20px;
    font-size: 11px; 
}
.scl_list_section .header-carousel .owl-item .owl-carousel-item {
    min-height: 200px;
    height: 200px;
}
.scl_list_logo{
    gap: 10px;
    flex-direction: column;  
}
.scl_list_logo .btn-group {
    margin-bottom: 20px;
}
}
.container-fluid.header.bg-dark.p-0 .owl-item {
    position: relative;
}
.homeBanner_sec .caption_bx {
    position: absolute;
    width: 100%;
    background-color: rgb(255 255 255 / 75%);
    padding: 20px;
    z-index: 9999;
    bottom: 15%;
}
.homeBanner_sec .caption_bx h2{
    font-size: 22px;
}
@media only screen and (min-width: 1200px){
.bannerFormHm {
    margin-top: -86px;
    z-index: 99;
    position: relative;
}    
}
@media only screen and (max-width: 767px){
.container-fluid.header.bg-dark.p-0.pt-5 {
    padding-top: 0px!important;
}
.container-fluid.header.bg-dark.p-0.pt-5 .col-md-12.p-5.mt-lg-5 {
    padding: 20px 20px 30px!important;
}
.container-fluid.header.bg-dark.p-0.pt-5 .col-md-12.p-5.mt-lg-5 h1.display-5 {
    font-size: 20px;
}
.container-fluid.header.bg-dark.p-0.pt-5 .breadcrumb li{
    font-size: 12px;
}    
.header-carousel .owl-nav .owl-prev, .header-carousel .owl-nav .owl-next {
    width: 20px;
    height: 20px;
    font-size: 11px;
}
.logo img {
    width: 80px;
}
.container-fluid.header .owl-carousel-item img{
    height: 350px;
}
.homeBanner_sec .caption_bx{
    bottom: 0;
}

.header-carousel .owl-nav .owl-next, .listed-school-carousel .owl-nav .owl-next, .school-compare-carousel .owl-nav .owl-next, .blog-school-carousel .owl-nav .owl-next{
    right: 0!important;
}
.header-carousel .owl-nav .owl-prev, .listed-school-carousel .owl-nav .owl-prev, .school-compare-carousel .owl-nav .owl-prev, .blog-school-carousel .owl-nav .owl-prev{
    left: 0!important;
}

.pagination {
    flex-wrap: wrap;
    gap: 30px;
}
.pagination ul.pagination.m-5.d-flex.justify-content-between.w-100 {
    margin: 0!important;
}
.pagination .pagination .d-flex {
    flex-wrap: wrap;
}
.admission-image{
    position: static!important;
    margin: 0 0 10px;
}
.hdr_btn_group {
    margin-right: 0;
    text-align: center;
}
.dropdown.dropdown_user {
    text-align: center;
    font-size: 22px;
}
.comparisonResults table.table-responsive {
    width: 640px!important;
}
.comparisonResults {
    width: 100%;
    overflow: auto;
} 
#addSchoolPopup #schoolList{
    width: 100%;
}
}

.container-fluid.header{
    background: #524d61!important;
}
.container-fluid.header .text-primary {
    color: #eea137 !important;
}
.container-fluid.header .owl-carousel-item img {
    height: 650px;
    object-fit: cover;
}
.container-fluid.header{
    min-height: 500px;
}
.school-details-banner-carousel .owl-item img {
    height: 300px;
    object-fit: cover;
    width: 100%;
}
.school-details-banner-carousel .owl-carousel-item{
    position: relative;
}
.school-details-banner-carousel .caption_bx {
    position: absolute;
    z-index: 999;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    padding: 10px 0;
    background: #fff9;
}
.school-details-banner-carousel .caption_bx h2{
    font-size: 20px;
}
.school-details-banner-carousel .caption_bx p{
    color: #000;
}
.container-fluid.header.bg-dark.p-0.pt-5 {
    min-height: auto;
    background: #524d61!important;
}
.container-fluid.header.bg-dark.p-0.pt-5 .text-white, 
.container-fluid.header.bg-dark.p-0.pt-5 .text-white a {
    color: #fff !important;
}
span#dropdownMenuButton1{
    cursor: pointer;
}
.modal-open .modal{
    z-index: 99999;
}
.school_list_wrap .school_cart_wrap .card_school_info form {
    position: absolute;
    right: 0;
    top: 0;
}
.school_list_wrap .school_cart_wrap h2.school-name {
    font-size: 22px;
}
.right-sidebar li.list-group-item {
    display: flex;
    gap: 6px;
}