/********** Template CSS **********/
:root {
    --primary: #0077bd;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091E3E;
    --text-primary: #0077bd;
}

.bg-primary {
    background-color: #0077bd !important;
}

.text-primary {
    color: #0077bd !important;
}

/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }

    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }

    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }

    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }

    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#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;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: anchor-center;
}


.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #0077bd;
}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }

    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: #0077bd;
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}


/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(42 52 68 / 70%);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 27px;
        font-weight: 600 !important;
        margin-bottom: 1rem;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: #0077bd;
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {
        left: 0;
    }

    50% {
        left: 145px;
    }

    100% {
        left: 0;
    }
}

@-webkit-keyframes section-title-run-center {
    0% {
        left: 50%;
        margin-left: -75px;
    }

    50% {
        left: 50%;
        margin-left: 45px;
    }

    100% {
        left: 50%;
        margin-left: -75px;
    }
}

@-webkit-keyframes section-title-run-sm {
    0% {
        left: 0;
    }

    50% {
        left: 85px;
    }

    100% {
        left: 0;
    }
}


/*** Service ***/
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0077bd;
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.bg-header-2 {
    background: linear-gradient(rgb(49 56 66 / 70%), rgba(9, 30, 62, .7)), url(../img/ddcdcf.jpg) center center no-repeat;
    background-size: cover;
}

.bg-header-3 {
    background: linear-gradient(rgb(49 56 66 / 70%), rgba(9, 30, 62, .7)), url(../img/WU9A0774.JPG) center center no-repeat;
    background-size: cover;
}

.bg-header-4 {
    background: linear-gradient(rgb(49 56 66 / 70%), rgba(9, 30, 62, .7)), url(../img/unnamed\ \(13\).jpg) center center no-repeat;
    background-size: cover;
}

.bg-header-5 {
    background: linear-gradient(rgb(87 91 96 / 70%), rgba(9, 30, 62, .7)), url(../img/academ.jpg) center center no-repeat;
    background-size: cover;
}

.bg-header-6 {
    background: linear-gradient(rgb(87 91 96 / 70%), rgba(9, 30, 62, .7)), url(../img/uk.jpg) center center no-repeat;
    background-size: cover;
}

.bg-header-7 {
    background: linear-gradient(rgb(87 91 96 / 70%), rgba(9, 30, 62, .7)), url(../img/Kazakhstan-Russian-Medical-University-Almaty-Kazakhstan.jpg) center center no-repeat;
    background-size: cover;
}

.bg-header-8 {
    background: linear-gradient(rgb(87 91 96 / 70%), rgba(9, 30, 62, .7)), url(../img/Caucasus\ University.jpg) center center no-repeat;
    background-size: cover;
}

.bg-header-9 {
    background: linear-gradient(rgb(87 91 96 / 70%), rgba(9, 30, 62, .7)), url(../img/Donishgohi_davlatii_tibbii_Tojikiston_ba_nomi_A_Sino.jpg) center center no-repeat;
    background-size: cover;
}

.bg-header-10 {
    background: linear-gradient(rgb(87 91 96 / 70%), rgba(9, 30, 62, .7)), url(../img/Bridgetown-International-University.jpg) center center no-repeat;
    background-size: cover;
}

.link-animated a {
    transition: .5s;
}

.bg-header-11 {
    background: linear-gradient(rgb(87 91 96 / 70%), rgba(9, 30, 62, .7)), url(../img/kj.jpg) center center no-repeat;
    background-size: cover;
}

.bg-header-12 {
    background: linear-gradient(rgb(87 91 96 / 70%), rgba(9, 30, 62, .7)), url(../img/kyrgyz-state-medical-academy-bishkek-kyrgyzstan-main-campus.jpg) center center no-repeat;
    background-size: cover;
}

.bg-header-13 {
    background: linear-gradient(rgb(87 91 96 / 70%), rgba(9, 30, 62, .7)), url(../img/ddcdcf.jpg) center center no-repeat;
    background-size: cover;
}

.bg-header-14 {
    background: linear-gradient(rgb(87 91 96 / 70%), rgba(9, 30, 62, .7)), url(../img/East\ European\ University.jpg) center center no-repeat;
    background-size: cover;
}

.bg-header-15 {
    background: linear-gradient(rgb(87 91 96 / 70%), rgba(9, 30, 62, .7)), url(../img/Akaki-Tsereteli-State-University.jpg) center center no-repeat;
    background-size: cover;
}

.bg-header-16 {
    background: linear-gradient(rgb(87 91 96 / 70%), rgba(9, 30, 62, .7)), url(../img/Bridgetown-International-University.jpg) center center no-repeat;
    background-size: cover;
}

.bg-header-17 {
    background: linear-gradient(rgb(87 91 96 / 70%), rgba(9, 30, 62, .7)), url(../img/Kazakhstan-Russian-Medical-University-Almaty-Kazakhstan.jpg) center center no-repeat;
    background-size: cover;
}

.bg-header-18 {
    background: linear-gradient(rgb(87 91 96 / 70%), rgba(9, 30, 62, .7)), url(../img/cism.jpg) center center no-repeat;
    background-size: cover;
}

.bg-header-19 {
    background: linear-gradient(rgb(87 91 96 / 70%), rgba(9, 30, 62, .7)), url(../img/KOKSHETAU\ State\ University.jpg) center center no-repeat;
    background-size: cover;
}

.bg-header-20 {
    background: linear-gradient(rgb(87 91 96 / 70%), rgba(9, 30, 62, .7)), url(../img/Donishgohi_davlatii_tibbii_Tojikiston_ba_nomi_A_Sino.jpg) center center no-repeat;
    background-size: cover;
}

.bg-header-21 {
    background: linear-gradient(rgb(87 91 96 / 70%), rgba(9, 30, 62, .7)), url(../img/scholarship-banner.jpg) center center no-repeat;
    background-size: cover;
}

.link-animated a:hover {
    padding-left: 10px;
}

.bg-header-33 {
    background: linear-gradient(rgb(87 91 96 / 70%), rgba(9, 30, 62, .7)), url(../img/MBBS-IN-MADHYA-PRADESH.jpg) center center no-repeat;
    background-size: cover;
}
.bg-header-34 {
    background: linear-gradient(rgb(87 91 96 / 70%), rgba(9, 30, 62, .7)), url(../img/UPP.jpg) center center no-repeat;
    background-size: cover;
}
.bg-header-35 {
    background: linear-gradient(rgb(87 91 96 / 70%), rgba(9, 30, 62, .7)), url(../img/BIKK.jpg) center center no-repeat;
    background-size: cover;
}
.bg-header-36 {
    background: linear-gradient(rgb(87 91 96 / 70%), rgba(9, 30, 62, .7)), url(../img/DELH.jpg) center center no-repeat;
    background-size: cover;
}
.bg-header-37 {
    background: linear-gradient(rgb(87 91 96 / 70%), rgba(9, 30, 62, .7)), url(../img/BEB.jpg) center center no-repeat;
    background-size: cover;
}
.bg-header-38 {
    background: linear-gradient(rgb(87 91 96 / 70%), rgba(9, 30, 62, .7)), url(../img/RAJ.jpg) center center no-repeat;
    background-size: cover;
}
.bg-header-39 {
    background: linear-gradient(rgb(87 91 96 / 70%), rgba(9, 30, 62, .7)), url(../img/mbbs-admission-in-karnataka.jpg) center center no-repeat;
    background-size: cover;
}
.bg-header-40 {
    background: linear-gradient(rgb(87 91 96 / 70%), rgba(9, 30, 62, .7)), url(../img/sikiki.jpg) center center no-repeat;
    background-size: cover;
}
.bg-header-41 {
    background: linear-gradient(rgb(87 91 96 / 70%), rgba(9, 30, 62, .7)), url(../img/Study-Mbbs-In-Pondicherry.jpg) center center no-repeat;
    background-size: cover;
}
.bg-header-42 {
    background: linear-gradient(rgb(87 91 96 / 70%), rgba(9, 30, 62, .7)), url(../img/mjk.jpg) center center no-repeat;
    background-size: cover;
}
.bg-header-43 {
    background: linear-gradient(rgb(87 91 96 / 70%), rgba(9, 30, 62, .7)), url(../img/utas.jpg) center center no-repeat;
    background-size: cover;
}
.bg-header-44 {
    background: linear-gradient(rgb(87 91 96 / 70%), rgba(9, 30, 62, .7)), url(../img/himal.jpg) center center no-repeat;
    background-size: cover;
}
.bg-header-45 {
    background: linear-gradient(rgb(87 91 96 / 70%), rgba(9, 30, 62, .7)), url(../img/jar.jpg) center center no-repeat;
    background-size: cover;
}
.bg-header-46 {
    background: linear-gradient(rgb(87 91 96 / 70%), rgba(9, 30, 62, .7)), url(../img/haroiyana.jpg) center center no-repeat;
    background-size: cover;
}
.bg-header-50 {
    background: linear-gradient(rgb(87 91 96 / 70%), rgba(9, 30, 62, .7)), url(../img/medic.jpeg) center center no-repeat;
    background-size: cover;
}
.bg-header-51 {
    background: linear-gradient(rgb(87 91 96 / 70%), rgba(9, 30, 62, .7)), url(../img/sria.jpeg) center center no-repeat;
    background-size: cover;
}
.bg-header-nepal {
    background: linear-gradient(rgb(87 91 96 / 70%), rgba(9, 30, 62, .7)), url("https://media.istockphoto.com/id/530450181/photo/nepal.jpg?s=612x612&w=0&k=20&c=JWuNfPs8iWGm4ewOUkq2pgVG_Ad2a4lvyTT8-YciIIY=") center center no-repeat;
    background-size: cover;
}
.bg-header-russia {
    background: linear-gradient(rgb(87 91 96 / 70%), rgba(9, 30, 62, .7)), url("https://www.eiu.com/n/wp-content/uploads/2022/03/shutterstock_1923669935-scaled.jpg") center center no-repeat;
    background-size: cover;
}
.bg-header-uzbekistan {
    background: linear-gradient(rgb(87 91 96 / 70%), rgba(9, 30, 62, .7)), url("https://www.gokitetours.com/wp-content/uploads/2024/09/10-Popular-Uzbekistan-Cities-to-Visit-on-Your-Trip-.webp") center center no-repeat;
    background-size: cover;
}
@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}

.anand-webs {
    max-width: 80% !important;
    height: auto;
}

.video {
    background-image: url(../img/dd.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 100px 0px 250px 0px;
    position: relative;
}

.offset-lg-4 {
    margin-left: 33.33333333%;
}

.section-heading {
    margin-bottom: 70px;
}

.section-heading h6 {
    color: #ee626b;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 700;
}

.video .section-heading h2 {
    color: #fff;
}

.section-heading h2 {
    font-size: 40px;
    font-weight: 700;
    text-transform: capitalize;
    margin-top: 20px;
    line-height: 56px;
}

.video-content {
    margin-top: -240px;
}

.offset-lg-1 {
    margin-left: 8.33333333%;
}

.video-content .video-frame {
    position: relative;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
}

.video-content .video-frame a {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-26px, -26px);
    width: 52px;
    height: 52px;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    line-height: 52px;
    color: #f35525;
    outline: 15px solid rgba(254, 85, 37, 0.5);
    font-size: 18px;
}

.applys {
    background-color: #0077bd;
}

.btn-primary {
    border-color: #0077bd;
}

.applys-v {
    color: #054365 !important;
}

.solu-dark {
    background-color: #054365;
}

.anoutsd {
    color: #0077bd;
}

.anoutsd-f {
    background-color: #0077bd;
}

.fw-normal {
    color: #FFF !important;
}






.best-deal {
    background-color: #eef9ff;
    padding: 100px 0px;
}

.section-heading {
    margin-bottom: 70px;
}

.section-heading h6 {
    color: #ee626b;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 700;
}

.section-heading h2 {
    font-size: 40px;
    font-weight: 700;
    text-transform: capitalize;
    margin-top: 20px;
    line-height: 56px;
}

.best-deal .tabs-content {
    padding: 0px;
    background-color: transparent;
}

.best-deal .tabs-content ul.nav-tabs {
    border-bottom: none !important;
    margin-bottom: 80px;
    align-items: end;
    justify-content: end;
    margin-top: -130px;
}

.nav-tabs {
    --bs-nav-tabs-border-width: var(--bs-border-width);
    --bs-nav-tabs-border-color: var(--bs-border-color);
    --bs-nav-tabs-border-radius: var(--bs-border-radius);
    --bs-nav-tabs-link-hover-border-color: var(--bs-secondary-bg) var(--bs-secondary-bg) var(--bs-border-color);
    --bs-nav-tabs-link-active-color: var(--bs-emphasis-color);
    --bs-nav-tabs-link-active-bg: var(--bs-body-bg);
    --bs-nav-tabs-link-active-border-color: var(--bs-border-color) var(--bs-border-color) var(--bs-body-bg);
    border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
}

.best-deal .tabs-content ul.nav-tabs li {
    padding-right: 0px;
    border-right: none;
    margin-left: 20px;
}

.best-deal .tabs-content .nav-tabs .nav-link.active {
    background-color: #0077bd !important;
    color: #fff;
}

.best-deal .tabs-content .nav-link {
    font-size: 16px;
    font-weight: 500;
    background-color: #1e1e1e !important;
    border-radius: 5px;
    height: 50px;
    line-height: 50px;
    display: inline-block;
    padding: 0px 25px;
    color: #fff;
}

.best-deal .tabs-content ul.nav-tabs li {
    padding-right: 0px;
    border-right: none;
    margin-left: 20px;
}

.best-deal .tabs-content .nav-link {
    font-size: 16px;
    font-weight: 500;
    background-color: #1e1e1e !important;
    border-radius: 5px;
    height: 50px;
    line-height: 50px;
    display: inline-block;
    padding: 0px 25px;
    color: #fff;
}

.nav-tabs .nav-link {
    margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
    background: 0 0;
    border: var(--bs-nav-tabs-border-width) solid transparent;
    border-top-left-radius: var(--bs-nav-tabs-border-radius);
    border-top-right-radius: var(--bs-nav-tabs-border-radius);
}

.tab-content>.active {
    display: block;
}

.best-deal .info-table {
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
    padding: 35px 30px;
    background-color: #fff;
}

.best-deal .info-table ul li {
    display: block;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #eee;
    text-align: left;
    font-size: 15px;
    color: #aaa;
    font-weight: 400;
}

.best-deal .info-table ul li span {
    font-size: 20px;
    color: #1e1e1e;
    font-weight: 700;
    float: right;
    display: inline-block;
}

.best-deal .tab-content img {
    padding: 0px 45px;
}

.best-deal .tabs-content h4 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 30px;
}

.best-deal .icon-button {
    margin-top: 30px;
}

.icon-button a {
    display: inline-block;
    background-color: #1e1e1e;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    height: 50px;
    line-height: 50px;
    padding: 0px 30px 0px 0px;
    border-radius: 25px;
    transition: all .3s;
}

.icon-button a i {
    background-color: #0077bd;
    height: 50px;
    width: 50px;
    text-align: center;
    border-radius: 50%;
    line-height: 50px;
    display: inline-block;
    margin-right: 15px;
    margin-left: -1px;
}

.fade:not(.show) {
    opacity: 0;
}

.fade {
    transition: opacity .15s linear;
}

.best-deal .info-table {
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
    padding: 35px 30px;
}

@media (max-width: 992px) {
    .best-deal .tabs-content ul.nav-tabs {
        margin-top: 0px;
        justify-content: center;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        padding-top: 0px;
    }

    .best-deal .tabs-content ul.nav-tabs li {
        padding-top: 20px;
    }

    .best-deal .tabs-content ul.nav-tabs li {
        margin-left: 0px !important;
    }

    .best-deal .tabs-content ul.nav-tabs {
        margin-bottom: 50px;
    }

    .properties ul.properties-filter {
        display: grid;
        grid-template-columns: 1fr 1fr;
        text-align: inherit !important;
    }

    .properties ul.properties-filter-2 {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr !important;
        text-align: inherit !important;
    }

    .best-deal .tab-content img {
        padding: 0px;
    }

    .best-deal .tabs-content h4 {
        margin-top: 45px;
    }

    .FONTS {
        font-size: 13PX;
    }
}

.properties ul.properties-filter {
    list-style: none;
    text-align: center;
    margin-bottom: 70px;
}

.properties ul.properties-filter li {
    display: inline-block;
    margin: 5px 8px;
}

.properties ul.properties-filter li a.is_active {
    background-color: #0077bd;
    color: #fff;
}

.properties ul.properties-filter li a {
    display: inline-block;
    text-align: center;
    font-size: 15px;
    text-transform: capitalize;
    font-weight: 500;
    color: #fff;
    background-color: #1e1e1e;
    padding: 12px 25px;
    border-radius: 5px;
    transition: all .3s;
}

.properties .item {
    background-color: #eef9ff;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
}

.ban {
    color: #6b6a75;
}

.properties .item img {
    border-radius: 10px;
}

.properties .item img {
    border-radius: 10px;
}

img {
    width: 100%;
    overflow: hidden;
}

@media (max-width: 767px) {
    .properties ul.properties-filter li a {
        font-size: 14px;
        padding: 10px 15px;
    }

    .asked {
        margin-bottom: 30px !important;
    }

    .clents-img {
        width: 70% !important;
    }

    .properties ul.properties-filter li {
        margin: 5px;
    }

    .accordion-title {
        padding: 0 !important;
    }

    .accordion button .icon {
        right: -25px !important;
    }

    .py-5 {
        padding-bottom: 0rem !important;
    }

    .mt-5 {
        margin-top: 0rem !important;
    }

    .px-5 {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }

    .section-heading h2 {
        font-size: 28px !important;
        line-height: 39px;
    }

    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .bj2 {
        height: 45px !important;
        width: auto !important;
    }

    .newas {
        height: 42vh;
    }

    .frequences {
        padding: 0rem !important;
    }
}

.urop {
    border-radius: 10px !important;
}

.usk {
    width: 30% !important;
    height: auto !important;
}




.faq-section-area {
    background: #eef9ff;
    position: relative;
    z-index: 0;
    padding: 140px 0px;
}

.margin-top-90 {
    margin-top: 90px;
}

.faq-section-area .theme-section-title {
    margin-bottom: 0;
}

.theme-section-title .subtitle {
    font-size: 16px;
    line-height: 1.25;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
    color: var(--main-color-one);
}

.theme-section-title .title {
    font-size: 45px;
    line-height: 1.34;
    font-weight: 600;
    margin-bottom: 14px;
    position: relative;
    z-index: 0;
    margin-bottom: 0;
    color: #091e3e;
}

.faq-section-area .faq-content {
    position: relative;
    z-index: 0;
    margin-top: 45px;
    padding-top: 45px;
    margin-bottom: 50px;
}

.faq-section-area .faq-content::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 2px;
    background: #0077bd;
}

.faq-section-area .faq-content .subtitle {
    font-size: 24px;
    line-height: 1.67;
    font-weight: 600;
    margin-bottom: 65px;
}

.btn-common {
    display: inline-block;
    font-family: var(--body-font);
    font-size: 18px;
    font-weight: 600;
    line-height: 0;
    text-transform: capitalize;
    color: var(--heading-color);
    background-color: #fff;
    padding: 37px 42px 36px;
    border: 1px solid #E4E4E4;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    -webkit-transition: all ease-in-out 0.2s;
    transition: all ease-in-out 0.2s;
    position: relative;
    z-index: 1;
}

.btn-common::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 10%;
    height: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #764af1;
    z-index: -1;
    -webkit-transition: all ease-in-out 0.2s;
    transition: all ease-in-out 0.2s;
    opacity: 0;
    border-radius: 12px;
}

.accordion-wrapper .card {
    border: none;
    background-color: #fff;
    border-radius: 20px;
    -webkit-transition: 0.7s all ease;
    transition: 0.7s all ease;
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: 0.25rem;
}

.accordion-wrapper .card .card-header {
    background-color: transparent;
    padding: 0;
    border: none;
}

.card-header:first-child {
    border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-header {
    padding: 0.5rem 1rem;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, .03);
    border-bottom: 1px solid rgba(0, 0, 0, .125);
}

.accordion-wrapper .card .card-header a {
    display: block;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 400;
    color: var(--heading-color);
    padding: 20px 20px 20px 20px;
    cursor: pointer;
    position: relative;
}

.accordion-wrapper .card .card-header a:after {
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #000;
    content: "\f067";
    font-family: "fontawesome";
    font-weight: 900;
    font-size: 18px;
}

.accordion-wrapper .card .card-body {
    padding: 10px 20px 20px 20px;
    font-size: 16px;
    line-height: 1.5;
    font-family: var(--body-font);
    font-weight: 400;
    color: var(--paragraph-color);
    -webkit-transition: 0.7s alternate;
    transition: 0.7s alternate;
}

.accordion-wrapper .card {
    border: none;
    background-color: #fff;
    border-radius: 20px;
    -webkit-transition: 0.7s all ease;
    transition: 0.7s all ease;
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: 0.25rem;
}

.accordion-wrapper .card+.card {
    margin-top: 20px;
}

.accordion-wrapper .card {
    border: none;
    background-color: #fff;
    border-radius: 20px;
    -webkit-transition: 0.7s all ease;
    transition: 0.7s all ease;
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: 0.25rem;
}

@media only screen and (max-width: 767px) {
    .theme-section-title .title {
        font-size: 28px;
        line-height: 38px;
    }

    .subtitle br {
        display: none;
    }

    .event_list .single_event_list h2 {
        font-size: 13px !important;
    }

    .event_list.section_padding {
        padding: 40px 0 !important;
    }

    .university {
        padding: 10px 0 0 0 !important;
    }

    .uni-img {
        width: 12% !important;
    }

    .mbbs {
        font-size: 21px !important;
    }

    .medicine {
        font-size: 14px !important;
    }

    .btn-common {
        font-size: 15px;
        padding: 28px 28px 29px;
    }

    .accordion-wrapper .card .card-header a {
        padding: 20px 40px 20px 20px;
    }

    .margin-top-90 {
        margin-top: 0px !important;
    }

    .faq-section-area {
        padding: 50px 0 !important;
    }

    .faq-section-area .faq-content .subtitle {
        margin-bottom: 10px;
    }
}

.university {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 5px solid;
    box-shadow: 2px 2px 7px 0;
    padding: 20px 0 0 0;
    margin-bottom: 20px;
    color: #eef9ff;
}

.uni-img {
    width: 10%;
    text-align: center;
    margin-bottom: 20px;
}

.name {
    width: 85%;
    text-align: center;
}

.higher-nmae {
    margin-top: 30px;
    margin-bottom: 30px;
}

.medicine {
    font-size: 23px;
}






.vc-column {
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}

.stm-news {
    position: relative;
}

.stm_news .news_list {
    list-style: none;
    padding: 0;
    margin: 0 -15px;
    font-size: 0;
}

.stm_news .news_list li.view_style_3 {
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 30px;
}

.stm_news .news_list li {
    display: inline-block;
    vertical-align: top;
    width: 25%;
    padding: 0 15px;
    margin-bottom: 30px;
    font-size: 13px;
}

.stm_news .news_list li.view_style_3 .post_item {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.stm_news .news_list li.view_style_3 .post_item {
    border: 2px solid #eef9ff;
    border-radius: 10px 0 0 10px;
    box-shadow: rgba(100, 100, 111, .2) 0 4px 10px 0;
}

.stm_news .news_list li.view_style_3 .post_item .image {
    margin-bottom: 0;
    display: block;
    overflow: hidden;
    border-radius: 0;
    width: 260px;
    flex: 0 0 260px;
}

.stm_news .news_list li .image {
    margin: 0 0 30px;
}

.entry-content a {
    box-shadow: none !important;
}

.stm_news .news_list li.view_style_3 .post_item .image img {
    border-radius: 10px 0 0 10px !important;
}

.stm_news .news_list li .image img {
    display: block;
    max-width: 100%;
    height: auto;
}

.stm_news .news_list li.view_style_3 .post_item .image {
    margin-bottom: 0;
    display: block;
    overflow: hidden;
    border-radius: 0;
    width: 260px;
    flex: 0 0 260px;
}

.stm_news .news_list li .image {
    margin: 0 0 30px;
}

.entry-content a {
    box-shadow: none !important;
}

.stm_news .news_list li.view_style_3 .post_item .content {
    padding-left: 30px;
    padding-top: 10px;
    width: calc(100% - 260px);
    flex: 0 0 calc(100% - 260px);
}

.stm_news .news_list li.view_style_3 .post_item .content .title h5 {
    font-size: 21px;
    line-height: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    transition: .3s;
    padding-left: 0;
    padding-right: 0;
}

.stm_news .news_list li h5 {
    margin-bottom: 17px;
    padding-top: 0;
    font-weight: 500;
    line-height: 22px;
    font-size: 16px;
}

.stm_news .news_list li.view_style_3 .post_item .content .description {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 20px;
}

.description {
    font-size: 17px;
    color: #717583;
    line-height: 1.6;
    margin-top: 10px;
}

.stm_news .news_list li.view_style_3 .post_item .content .read_more {
    font-size: 14px;
}

.base_font_color,
.stm_news .news_list li.view_style_3 .post_item .content .read_more {
    color: #333 !important;
}

.entry-content a {
    box-shadow: none !important;
}

.consulting-custom-title {
    margin-bottom: 40px;
}

.events {
    padding-top: 80px;
}

@media (max-width: 460px) {
    .stm_news .news_list li {
        width: 100% !important;
    }
}

@media (max-width: 975px) {
    .stm_news .news_list li.view_style_3 .post_item .image {
        width: 100%;
        flex: 0 0 100%;
    }

    .stm_news .news_list li.view_style_3 .post_item .content {
        width: 100%;
        flex: 0 0 100%;
        padding-left: 0;
    }

    .stm_news .news_list li.view_style_3 .post_item .content .title h5 {
        font-size: 18px;
        text-align: left;
        padding-left: 15px;
    }

    .read_more span {
        text-align: center;
        padding-left: 25px;
    }

    .w-img {
        right: 15px !important;
        height: 40px !important;
        width: 40px !important;
        float: right !important;
        bottom: 150px !important;
        position: fixed !important;
    }

    .sticky-button {
        width: 65px !important;
        height: 65px !important;
    }

    .button-text {
        font-size: 7px !important;
    }

    .sticky-button-container {
        bottom: 210px !important;
        right: 10px !important;
    }
}

.galleryus {
    margin-top: 30px;
}

.country-img {
    width: 100%;
    height: 184px;
    margin-bottom: 25px;
}


.event_list {
    position: relative;
}

.section_padding {
    padding: 45px 0px;
}

[data-aos^=fade][data-aos^=fade].aos-animate {
    opacity: 1;
    transform: translateZ(0);
}

[data-aos][data-aos][data-aos-duration="1200"],
body[data-aos-duration="1200"] [data-aos] {
    transition-duration: 1.2s;
}

.section_tittle {
    text-align: center;
    margin-bottom: 62px;
}

.section_tittle h2 {
    font-weight: 700;
    margin-bottom: 12px;
}

.event_list .single_event_list {
    display: flex;
    align-items: center;
    padding: 21px 14px;
    box-shadow: 0px 30px 70px 0px rgba(2, 25, 55, 0.08);
    border-radius: 10px;
    margin-bottom: 40px;
}

[data-aos^=fade][data-aos^=fade] {
    opacity: 0;
    transition-property: opacity, transform;
}

.event_list .single_event_list img {
    border-radius: 0% 0 0% 50%;
    margin-right: 50px;
    max-width: 193px;
}

.event_list .single_event_list h2 {
    font-size: 19px;
    line-height: 23px;
    font-weight: 600;
    margin-bottom: 24px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

[data-aos^=fade][data-aos^=fade].aos-animate {
    opacity: 1;
    transform: translateZ(0);
}

[data-aos][data-aos][data-aos-easing=ease],
body[data-aos-easing=ease] [data-aos] {
    transition-timing-function: ease;
}

[data-aos][data-aos][data-aos-duration="400"],
body[data-aos-duration="400"] [data-aos] {
    transition-duration: .4s;
}

.event_list .event_list_btn {
    text-align: center;
    margin: 0 auto;
}

.event_list .btn_3 {
    margin-top: 22px;
}

.btn_3 {
    color: #2572ff;
    border: 2px solid #7aa8fd;
    display: inline-block;
    padding: 14px 39px;
    text-transform: capitalize;
    line-height: 18px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 50px;
    background-color: #fff;
    white-space: nowrap;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}





.sticky-button-container {
    position: fixed;
    bottom: 200px !important;
    right: 40px;
    text-align: center;
    z-index: 999;
    transition: bottom 0.3s ease-in-out;
}

.sticky-button {
    background-color: #0077bd;
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.button-text {
    font-size: 9px;
    margin-top: 5px;
}




.section2 {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    clear: both;
    overflow: hidden;
    /* background: url(../images/section1Bg.jpg) no-repeat fixed 100% 0; */
    backface-visibility: hidden;
    background-size: cover;
    padding: 70px 0 80px 0;
    border-bottom: 1px solid #d5d5d5;
}

.section2 .sectionLeft .sectionLeftInner {
    display: block;
    position: relative;
    padding: 70px 50px 70px 100px;
    z-index: 3;
}

.section2 .sectionLeft:before {
    top: 0;
    left: 0;
    background: rgb(0, 119, 189);
    z-index: 2;
    opacity: 1;
}

.section2 .sectionLeft:before,
.section2 .sectionLeft:after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    /* transform: skew(20deg); */
}

.headingss {
    display: inline-block;
    position: relative;
    padding-bottom: 10px;
    font-weight: 600;
    color: #fff;
}

.section2 .sectionLeft .headingss:after {
    background: #fff;
}

.headingss:after {
    left: 0%;
}

.headingss:after,
.headingss-center:after {
    content: "";
    display: block;
    width: 100px;
    height: 3px;
    background: #21317e;
    position: absolute;
    bottom: 0;
}

.gehis {
    color: #fff;
}

.btn-rounded {
    border-radius: 30px !important;
}

.btn-transparent {
    display: inline-block;
    padding: 8px 35px;
    border: solid 2px #fff;
    background: transparent;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    transition: all 300ms ease-in-out;
}

.space10 {
    display: block;
    clear: both;
    padding: 10px 0;
}

.featursBolck {
    border-left: 2px dashed #fff;
    display: block;
    padding-left: 50px;
}

.pointlist {
    list-style: none;
    padding: 0;
    margin-top: 35px !important;
    position: relative;
    color: #fff;
    padding-right: 60px;
}

.pointlist li {
    list-style: none;
    padding: 12px 0px;
    text-align: left;
    padding-left: 35px;
    position: relative;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.pointlist li::before {
    content: "\f046";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    color: rgb(238, 249, 255);
    font-size: 20px;
    display: inline-block;
    padding-right: 0.5em;
    position: absolute;
    top: 13px;
    left: 3px;
}

@media (max-width: 975px) {
    .section2 {
        padding: 0px 0;
    }

    .section2::before {
        opacity: 0.7;
    }

    .section2 .sectionLeft {
        width: 100%;
    }

    .display-1 {
        font-size: calc(0.625rem + 4.5vw);
    }

    .back-to-top {
        position: fixed;
        display: none;
        right: 15px;
        bottom: 85px;
        z-index: 99;
    }

    .section2 .sectionLeft .sectionLeftInner {

        padding: 50px 0px;
    }

    .section-heading br {
        display: none;
    }

    .featursBolck {
        border-top: 2px dashed #fff;
        display: block;
        padding-left: 0px;
        border-left: 0px;
    }
}

@media (min-width: 1200px) {
    .display-1 {
        font-size: 4rem;
    }

    .text-light {
        font-size: 13px !important;
    }
}

.pt-100 {
    padding-top: 100px;
}

.color-secondary {
    color: #0077bd !important;
    font-weight: 800;
    font-size: 22px;
}

.promo-icon {
    position: relative;
    display: block;
    width: 100%;
}

.promo-icon i {
    z-index: 1;
    font-size: 75px;
    position: relative;
    color: #0077bd;
}

.fa-check-square-o:before {
    content: "\f046";
}

.promo-single-wrap {
    padding: 10px 20px;
    margin: 20px
}

#whatsapp-chat {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 300px;
    border-radius: 10px;
    overflow: hidden;
    z-index: 9999;
}

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    z-index: 9999;
}

.w-img {
    width: 60px;
    height: 60px;
    float: left;

    position: fixed;
    z-index: 10;
    right: 45px;
    bottom: 120px;
    z-index: 99;

}

@media (max-width: 1200px) {

    .text-light {
        font-size: 10px !important;
    }

    .display-1 {
        font-size: calc(0.625rem + 4.5vw);
    }
}

.students_name {
    color: #fff;
}

.dataTables_wrapper {
    position: relative;
    clear: both;
    zoom: 1;
}

.dataTables_wrapper .dataTables_scroll {
    clear: both;
}

.dataTables_scrollHead table.tablepress {
    margin: 0;
}

.dataTables_scroll .tablepress {
    width: 100% !important;
}

.dataTables_wrapper .tablepress {
    clear: both;
    margin-bottom: 0;
}

table.dataTable,
table.dataTable td,
table.dataTable th {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

table.dataTable {
    width: 100%;
    margin: 0 auto;
    clear: both;
    border-collapse: separate;
    border-spacing: 0;
}

.tablepress {
    --head-active-bg-color: #049cdb;
    --head-active-text-color: var(--head-text-color);
}

.tablepress {
    --text-color: #111;
    --head-text-color: var(--text-color);
    --head-bg-color: #d9edf7;
    --odd-text-color: var(--text-color);
    --odd-bg-color: #f9f9f9;
    --even-text-color: var(--text-color);
    --even-bg-color: #fff;
    --hover-text-color: var(--text-color);
    --hover-bg-color: #f3f3f3;
    --border-color: #ddd;
    --padding: 0.5rem;
    border: none;
    border-collapse: collapse;
    border-spacing: 0;
    clear: both;
    margin: 0 auto 1rem;
    table-layout: auto;
    width: 100%;
}

table.dataTable {
    width: 100%;
    margin: 0 auto;
    clear: both;
    border-collapse: separate;
    border-spacing: 0;
}

.tablepress {
    --head-active-bg-color: #049cdb;
    --head-active-text-color: var(--head-text-color);
}

table.dataTable thead td:active,
table.dataTable thead th:active {
    outline: 0;
}

table.dataTable thead td,
table.dataTable thead th {
    padding: 10px 18px;
    border-bottom: 1px solid #111;
}

table.dataTable tfoot th,
table.dataTable thead th {
    font-weight: 700;
}

table.dataTable th {
    background-color: #003463;
    color: #fff;
}

table.dataTable,
table.dataTable td,
table.dataTable th {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

.tablepress>:where(thead, tfoot)>*>th {
    background-color: #003463;
    color: white;
}

.tablepress>:where(thead, tfoot)>*>th {
    background-color: var(--head-bg-color);
    color: var(--head-text-color);
    font-weight: 700;
    vertical-align: middle;
    word-break: normal;
}

.tablepress>:not(caption)>*>* {
    background: none;
    border: none;
    box-sizing: initial;
    float: none !important;
    padding: var(--padding);
    text-align: left;
    vertical-align: top;
}

table.dataTable thead td,
table.dataTable thead th {
    padding: 10px 18px;
    border-bottom: 1px solid #111;
}

table.dataTable tfoot th,
table.dataTable thead th {
    font-weight: 700;
}

table.dataTable th {
    background-color: #003463;
    color: #fff;
}

table.dataTable,
table.dataTable td,
table.dataTable th {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

.tablepress>:where(thead, tfoot)>*>th {
    background-color: #003463;
    color: white;
}

.tablepress>:where(thead, tfoot)>*>th {
    background-color: var(--head-bg-color);
    color: var(--head-text-color);
    font-weight: 700;
    vertical-align: middle;
    word-break: normal;
}

.tablepress>:not(caption)>*>* {
    background: none;
    border: none;
    box-sizing: initial;
    float: none !important;
    padding: var(--padding);
    text-align: left;
    vertical-align: top;
}

.dataTables_scroll .tablepress {
    width: 100% !important;
}

.dataTables_wrapper .tablepress {
    clear: both;
    margin-bottom: 0;
}

table.dataTable,
table.dataTable td,
table.dataTable th {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

table.dataTable {
    width: 100%;
    margin: 0 auto;
    clear: both;
    border-collapse: separate;
    border-spacing: 0;
}

.tablepress {
    --head-active-bg-color: #049cdb;
    --head-active-text-color: var(--head-text-color);
}

.tablepress {
    --text-color: #111;
    --head-text-color: var(--text-color);
    --head-bg-color: #d9edf7;
    --odd-text-color: var(--text-color);
    --odd-bg-color: #f9f9f9;
    --even-text-color: var(--text-color);
    --even-bg-color: #fff;
    --hover-text-color: var(--text-color);
    --hover-bg-color: #f3f3f3;
    --border-color: #ddd;
    --padding: 0.5rem;
    border: none;
    border-collapse: collapse;
    border-spacing: 0;
    clear: both;
    margin: 0 auto 1rem;
    table-layout: auto;
    width: 100%;
}

table.dataTable tbody tr {
    background-color: #fff;
}

.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>td,
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>th,
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>td,
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>th {
    vertical-align: middle;
}

table.dataTable tbody td,
table.dataTable tbody th {
    padding: 8px 10px;
}

table.dataTable,
table.dataTable td,
table.dataTable th {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

.tablepress>*+tbody>*>*,
.tablepress>tbody>*~*>*,
.tablepress>tfoot>*>* {
    border-top: 1px solid var(--border-color);
}

.tablepress>:not(caption)>*>* {
    background: none;
    border: none;
    box-sizing: initial;
    float: none !important;
    padding: var(--padding);
    text-align: left;
    vertical-align: top;
}
.tablepress>*+tbody>*>*, .tablepress>tbody>*~*>*, .tablepress>tfoot>*>* {
    border-top: 1px solid #ddd;
}
.digit-plus{
    display:flex;
}
.rounded-circle:hover i {
    color: black;
}

