@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

@import url(https://fonts.googleapis.com/css?family=PT+Sans+Narrow);

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #fff;
}

* {
    list-style: none;
    font-weight: normal;
    padding: 0;
    margin: 0;
    text-decoration: none;
}

.container {
    width: 1170px;
    margin: 0 auto;
}

/* ------------top-header------------- */

.top-header {
    background-color: #0871a0;
    height: 35px;
    display: flex;
    align-items: center;
}

.email a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
}


.email a:hover {
    text-decoration: none;
    color: #fff;
}


.email i.fa-solid.fa-envelope-circle-check {
    font-size: 20px;
    padding-right: 10px;
}

.number {
    text-align: end;
}

.number a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
}

.number a:hover {
    text-decoration: none;
    color: #fff;
}

.number i.fa-solid.fa-mobile {
    padding-right: 10px;
    font-size: 20px;
}

/* ---------main-header-------------- */

.header {
    background-color: #fff;
    box-shadow: inset 0px -3px 11px #0871a0;
}

nav {
    width: 100%;
}

nav .wrapper {
    position: relative;
    max-width: 1300px;
    height: 70px;
    margin: auto;
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.logo img {
    width: 55%;
}


.wrapper .nav-links {
    display: inline-flex;
}

.nav-links li {
    list-style: none;
}

.nav-links li a {
    color: #0871a0;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 9px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-links li a:hover {
    background: #0871a0;
    color: #fff;
}

.nav-links .mobile-item {
    display: none;
}

.nav-links .drop-menu {
    position: absolute;
    background: #0871a0;
    width: 225px;
    line-height: 45px;
    padding: 0;
    top: 85px;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box {
    transition: all 0.3s ease;
    top: 50px;
    opacity: 1;
    visibility: visible;
    z-index: 9999;
}

.drop-menu li a {
    width: 100%;
    display: block;
    color: #fff;
    padding: 0 0 0 15px;
    font-weight: 400;
    border-radius: 0px;
}

.mega-box {
    position: absolute;
    left: 0px;
    width: 100%;
    padding: 0px;
    top: 50px;
    opacity: 0;
    visibility: hidden;
}

.mega-box .content {
    background: #0871a0;
    padding: 10px 15px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.mega-box .content .row {
    line-height: 45px;
}

.content .row .mega-links {
    border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.row .mega-links li {
    padding: 0 20px;
}

.row .mega-links li a {
    padding: 0px;
    padding: 0 20px;
    color: #d9d9d9;
    font-size: 17px;
    display: block;
}

.row .mega-links li a:hover {
    color: #f2f2f2;
}

.wrapper .btn {
    color: #0871a0;
    font-size: 20px;
    cursor: pointer;
    display: none;
}

i.fa-solid.fa-caret-down {
    padding-left: 10px;
    font-size: 18px;
}

.wrapper .btn.close-btn {
    position: absolute;
    right: 30px;
    top: 10px;
    font-size: 30px;
    color: #fff;
}

@media screen and (max-width: 970px) {
    .wrapper .btn {
        display: block;
    }

    .wrapper .nav-links {
        position: fixed;
        height: 100vh;
        width: 100%;
        max-width: 350px;
        top: 0;
        left: -100%;
        background: #0871a0;
        display: block;
        padding: 50px 10px;
        line-height: 30px;
        overflow-y: auto;
        box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.18);
        transition: all 0.3sease;
    }

    nav .wrapper {
        align-items: center;
        display: flex;
    }

    /* custom scroll bar */
    ::-webkit-scrollbar {
        width: 10px;
    }

    ::-webkit-scrollbar-track {
        background: #242526;
    }

    ::-webkit-scrollbar-thumb {
        background: #3A3B3C;
    }

    #menu-btn:checked~.nav-links {
        left: 0%;
        z-index: 9999;
    }

    #menu-btn:checked~.btn.menu-btn {
        display: none;
    }

    #close-btn:checked~.btn.menu-btn {
        display: flex;
        align-items: center;
        font-size: 25px;
    }

    .nav-links li {
        margin: 15px 10px;
    }

    .nav-links li a {
        padding: 0 20px;
        display: block;
        color: #fff;
        font-size: 18px;
    }

    .nav-links .drop-menu {
        position: static;
        opacity: 1;
        top: 65px;
        visibility: visible;
        padding-left: 20px;
        width: 100%;
        max-height: 0px;
        overflow: hidden;
        box-shadow: none;
        transition: all 0.3s ease;
    }

    #showDrop:checked~.drop-menu,
    #showMega:checked~.mega-box {
        max-height: 100%;
        padding: 0;
    }

    .nav-links .desktop-item {
        display: none;
    }

    .nav-links .mobile-item {
        display: block;
        color: #f2f2f2;
        font-size: 18px;
        font-weight: 500;
        padding-left: 20px;
        cursor: pointer;
        border-radius: 5px;
        transition: all 0.3s ease;
    }


    .drop-menu li {
        margin: 0;
    }

    .drop-menu li a {
        border-radius: 5px;
        font-size: 18px;
    }

    i.fa-solid.fa-caret-down {
        padding-left: 10px;
        font-size: 18px;
    }

    .mega-box {
        position: static;
        top: 65px;
        opacity: 1;
        visibility: visible;
        padding: 0 20px;
        max-height: 0px;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .mega-box .content {
        box-shadow: none;
        flex-direction: column;
    }

    .mega-box .content .row {
        width: 100%;
        margin-bottom: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .mega-box .content .row:nth-child(1),
    .mega-box .content .row:nth-child(2) {
        border-top: 0px;
    }

    .content .row .mega-links {
        border-left: 0px;
        padding: 0;
    }

    .row .mega-links li {
        margin: 0;
        padding: 0;
    }

    .content .row header {
        font-size: 19px;
    }
}

nav input {
    display: none;
}


/* -------------banner------------ */

#slider {
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.4);
    ;
}

.slide {
    width: 100%;

    display: none;
    animation-name: fade;
    animation-duration: 1s;

}

img {
    width: 100%;
}

@keyframes fade {
    from {
        opacity: 0.5;
    }

    to {
        opacity: 1;
    }
}

.controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    padding: 15px 10px;
    color: #fff !important;
    border-radius: 5px;
}

.controls:hover {
    background: #0871a0;
    transition: 0.3s;
    color: #fff;
}

.controls:active {
    color: #fff;
}

#left-arrow {
    left: 10px;
}

#right-arrow {
    right: 10px;
}

#dots-con {

    text-align: center;
}

.dot {
    display: inline-block;
    background: #0871a0;
    padding: 5px;
    border-radius: 50%;
    margin: 10px 5px;
}


@media (max-width:576px) {
    #slider {
        width: 100%;

    }

    .controls {
        font-size: 1em;
    }

    #dots-con {
        display: none;
    }
}



/* about-doctor--------------------- */

.about-heading {
    text-align: center;
    margin: 60px 0 70px 0;
}

.about-heading h2:before {
    content: '';
    background: #0871a0;
    width: 15%;
    height: 4px;
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    margin: auto;
}

.about-heading h2 {
    position: relative;
    font-size: 35px;
    margin: 0;
    font-weight: 600;
    color: #0871a0;
}

.doctor-img {
    text-align: center;
}

.doctor-img img {
    width: 90%;
    border-radius: 0 20px 0 20px;
}

.doctor-about h6 {
    font-size: 27px;
    color: #0871a0;
    margin: 0;
    font-weight: 600;
}

.doctor-about p {
    font-size: 16px;
    padding-top: 25px;
    display: flex;
    font-weight: 500;
    text-align: justify;
    color: #0871a0;
}


.education h5 {
    font-size: 25px;
    color: #0871a0;
    margin: 0;
    padding: 20px 0;
    font-weight: 500;
}

.education h4 {
    font-size: 19px;
    color: #0871a0;
    margin: 0;
    padding: 15px 0;
    font-weight: 500;
}

.education ul.any {
    padding-top: 40px;
}

.education li {
    list-style: disc;
    color: #0871a0;
    font-size: 15px;
    padding-bottom: 10px;
    font-weight: 500;
}

.education ul {
    margin: 0;
}

.education span {
    font-size: 17px;
    font-weight: 500;
}

.education p {
    color: #0871a0;
    font-size: 16px;
    font-weight: 500;
}

.education-more a {
    font-size: 17px;
    background-color: #0871a0;
    color: #fff;
    text-decoration: none;
    padding: 7px 13px 7px 13px;
}

.education-more {
    padding-top: 25px;
}


.education-more a:hover {
    background-color: #fff;
    color: #0871a0;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid #0871a0;
}


/* why-chooes-us-------------- */


.why-img img {
    width: 100%;
}

.why-chooes-about h5 {
    font-size: 25px;
    color: #0871a0;
    margin: 0;
    padding: 10px 0;
    font-weight: 500;
}

.why-chooes-about h4 {
    font-size: 19px;
    color: #0871a0;
    margin: 0;
    padding: 15px 0;
    font-weight: 500;
}

.why-chooes-about h6 {
    font-size: 23px;
    color: #0871a0;
    margin: 0;
    font-weight: 600;
}

.why-chooes-about p {
    font-size: 16px;
    padding-top: 25px;
    display: flex;
    font-weight: 500;
    text-align: justify;
    color: #0871a0;
}


.why-chooes-about li {
    list-style: disc;
    color: #0871a0;
    font-size: 15px;
    padding-bottom: 10px;
    font-weight: 500;
}

.why-chooes-about ul {
    margin: 0;
}


.education p.perag {
    padding-top: 30px;
}


.education-more-why a {
    font-size: 17px;
    background-color: #0871a0;
    color: #fff;
    text-decoration: none;
    padding: 7px 13px 7px 13px;
}

.education-more-why {
    padding-top: 20px;
}

.education-more-why a:hover {
    background-color: #fff;
    color: #0871a0;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid #0871a0;
}


/* ---------------aviable--------------------------------- */

.avibale {

    margin-top: 80px;
}

.social-links {
    text-align: center;
    padding-top: 30px;
    padding-bottom: 40px;
}

.social-links h2 {
    color: #0871a0;
    font-size: 35px;
}


.ablbatn {
    width: 100%;
    height: auto;
    float: left;
    background: #0871a0;
    padding: 11px;
    border-radius: 10px;
    color: #fff;
    transition: 1s;
    margin-bottom: 10px;
    height: 60px;
}

.ablbatn:hover {
    background-color: #0871a0;
    box-shadow: inset 0 0 30px -7px #000;
}

.ablbatn img {
    background: #fff;
    padding: 5px;
    border-radius: 5px;
    width: 100px;
    height: 41px;
    margin-top: -1px;
}

.ablbatn span {
    float: right;
    margin-right: 3px;
    margin-top: 5px;
}

/* ---service---------------------- */


.box-hover a {
    text-decoration: none;
}


.view-service {
    text-align: center;
    padding-top: 40px;
}

.view-service a {
    background-color: #0871a0;
    padding: 5px 10px 5px 10px;
    color: #fff;
    font-size: 17px;
    border-radius: 5px;
    font-weight: 500;
}


.view-service a:hover {
    background-color: #fff;
    border: 2px solid #0871a0;
    color: #0871a0;
    text-decoration: none;
    border-radius: 5px;
}

.go-corner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 40px;
    height: 35px;
    overflow: hidden;
    top: 0;
    right: 0;
    background-color: #0871a0;
    border-radius: 0 4px 0 32px;
}

.go-arrow {
    margin-top: -4px;
    margin-right: -4px;
    color: white;
    font-family: courier, sans;
}

.card1 {
    display: block;
    position: relative;
    background-color: #7ea3b5;
    border-radius: 4px;
    padding: 10px 10px;
    margin: 12px;
    text-align: center;
    text-decoration: none;
    z-index: 0;
    overflow: hidden;

    &:before {
        content: "";
        position: absolute;
        z-index: -1;
        top: -16px;
        right: -16px;
        background: #0871a0;
        height: 50px;
        width: 32px;
        transform: scale(1);
        transform-origin: 50% 50%;
        transition: transform 0.25s ease-out;
    }

    &:hover:before {
        transform: scale(21);
    }
}

.card1:hover {
    p {
        transition: all 0.3s ease-out;
        color: rgba(255, 255, 255, 0.8);
    }

    h3 {
        transition: all 0.3s ease-out;
        color: #ffffff;
    }
}

.box-hover a:hover {
    text-decoration: none;
}

.card1 h4 {
    font-size: 19px;
    color: #fff;
    text-align: center;
    padding-top: 10px;
}

.card1 p.small {
    color: #fff;
    display: flex;
}

.card1 img {
    width: 80%;
}

.card1 button {
    background-color: unset;
    border: navajowhite;
    text-align: center;
    color: #fff;
}


/* banner----------------- */

.banners {
    margin: 100px 0;
}

.banners img {
    width: 100%;
}


/* happy-patients-------------- */



.sectionClass {
    position: relative;
    display: block;
}

.fullWidth {
    width: 100% !important;
    display: table;
    float: none;
    padding: 0;
    min-height: 1px;
    height: 100%;
    position: relative;
}


.sectiontitle {
    background-position: center;
    margin: 30px 0 0px;
    text-align: center;
    min-height: 20px;
}

.sectiontitle h2 {
    font-size: 30px;
    color: #222;
    margin-bottom: 0px;
    padding-right: 10px;
    padding-left: 10px;
}


.headerLine {
    width: 160px;
    height: 2px;
    display: inline-block;
    background: #101F2E;
}


.projectFactsWrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    background: #0871a0;
}


#projectFacts .fullWidth {
    padding: 0;
}

.projectFactsWrap .item {
    width: 25%;
    height: 100%;
    padding: 50px 0px;
    text-align: center;
}

.projectFactsWrap .item p.number {
    font-size: 40px;
    padding: 0;
    text-align: center;
    font-weight: bold;
}

.projectFactsWrap .item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin: 0;
    padding: 10px;
    font-family: 'Open Sans';
}


.projectFactsWrap .item span {
    width: 60px;
    background: rgba(255, 255, 255, 0.8);
    height: 2px;
    display: block;
    margin: 0 auto;
}


.projectFactsWrap .item i {
    vertical-align: middle;
    font-size: 50px;
    color: rgba(255, 255, 255, 0.8);
}


.projectFactsWrap .item:hover i,
.projectFactsWrap .item:hover p {
    color: white;
}

.projectFactsWrap .item:hover span {
    background: white;
}

@media (max-width: 786px) {
    .projectFactsWrap .item {
        flex: 0 0 50%;
    }
}

footer {
    z-index: 100;
    padding-top: 50px;
    padding-bottom: 50px;
    width: 100%;
    bottom: 0;
    left: 0;
}

footer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    opacity: 0;
    font-family: 'Open Sans';
    width: 100%;
    word-wrap: break-word;
    line-height: 25px;
    -webkit-transform: translateX(-200px);
    transform: translateX(-200px);
    margin: 0;
    -webkit-transition: all 250ms ease;
    -moz-transition: all 250ms ease;
    transition: all 250ms ease;
}

footer .authorWindow a {
    color: white;
    text-decoration: none;
}

footer p strong {
    color: rgba(255, 255, 255, 0.9);
}

.about-me-img {
    width: 120px;
    height: 120px;
    left: 10px;
    /* bottom: 30px; */
    position: relative;
    border-radius: 100px;
}


.authorWindow {
    width: 600px;
    background: #75439a;
    padding: 22px 20px 22px 20px;
    border-radius: 5px;
    overflow: hidden;
}

.authorWindowWrapper {
    display: none;
    left: 110px;
    top: 0;
    padding-left: 25px;
    position: absolute;
}

.trans {
    opacity: 1;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    transition: all 500ms ease;
}

@media screen and (max-width: 768px) {
    .authorWindow {
        width: 210px;
    }

    .authorWindowWrapper {
        bottom: -170px;
        margin-bottom: 20px;
    }

    footer p {
        font-size: 14px;
    }
}




/* ....latest-gallery---------- */

.img-wrapper img {
    width: 100%;
    height: auto;
}

.inner-img {
    transition: 0.3s;
}

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

.img-wrapper {
    display: inline-block;
    box-sizing: border-box;
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    box-shadow: 0 0px 8px 0px #000;
    border-radius: 5px;
    border: 1px solid #0871a0;
    overflow: hidden;
}



.view-more {
    padding-top: 20px;
    text-align: center;
}

.view-more a {
    color: #fff;
    background-color: #0871a0;
    border-radius: 5px 5px;
    padding: 7px 13px 7px 13px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.view-more {
    padding-top: 50px;
    text-align: center;
}

.view-more a:hover {
    background-color: #fff;
    color: #0871a0;
    text-decoration: none;
    border: 2px solid #0871a0;
}



/* -----------testmonial----------- */

.heading-section {
    text-align: center;
}

.sub-heading {
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    display: block;
    font-weight: 600;
    color: #2e9ca1;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.heading-section h2 {
    font-size: 28px;
    font-weight: 600;
    padding-top: 10px;
    color: #0871a0;
    padding-bottom: 15px;
}


.testimonial-box {
    display: block;
    position: relative;
    padding: 30px 20px;
    background: #0871a0;
    border-radius: 5px;
    box-shadow: 0 0 14px -3px #000;
}

.user-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: relative;
    min-width: 80px;
    background-size: 100%;
}

.carousel-testimonial .item {
    padding: 30px 10px;
}

.text p {
    color: #fff;
}


.name {
    margin-bottom: 0;
    line-height: 14px;
    font-size: 17px;
    font-weight: 500;
}

.position {
    color: #fff;
    font-size: 14px;
}

.carousel-testimonial .owl-nav {
    text-align: center;
}

.carousel-testimonial .owl-nav button.owl-next,
.carousel-testimonial .owl-nav button.owl-prev {
    padding: 0 12px !important;
}

.carousel-testimonial .owl-nav button {
    outline: none;
    padding: 0;
}

.carousel-testimonial .owl-nav button.owl-next span,
.carousel-testimonial .owl-nav button.owl-prev span {
    display: block;
    font-size: 60px;
    width: 25px;
    color: #0871a0;
    height: 25px;
    vertical-align: 0px;
    line-height: 16px;
}

.carousel-testimonial .owl-nav button.owl-next.disabled,
.carousel-testimonial .owl-nav button.owl-prev.disabled {
    opacity: 0.5;
}


/* ----------footer--------------- */


.footer {
    background-color: #0871a0;
    margin-top: 50px;
}

.quick h3 {
    color: #fff;
    font-size: 25px;
}

.quick-links {
    padding-top: 15px;
}

.quick-links li {
    text-decoration: none;
    padding: 0 0 5px 0;
}

.quick-links li a {
    color: #fff;
    font-weight: 500;
    font-size: 17px;
}

.quick-links li a:hover {
    text-decoration: none;
}

.quick-links a {
    color: #fff;
    font-size: 17px;
}

.quick-links i.fa-solid.fa-location-dot {
    font-size: 23px;
    padding-right: 10px;
}

.quick-links a:hover {
    color: #fff;
    text-decoration: none;
}

.contact {
    padding-top: 15px;
}

.contact a {
    color: #fff;
    font-size: 17px;
    font-weight: 500;
}


.contact a:hover {
    color: #fff;
    text-decoration: none;
}

.contact i.fa-solid.fa-phone {
    font-size: 23px;
    padding-right: 10px;
}

.contact i.fa-solid.fa-envelope {
    font-size: 23px;
    padding-right: 10px;
}

.social-media {
    padding-top: 20px;
}

.social-media a {
    color: #fff;
    font-size: 30px;
}

.social-media a:hover {
    color: #fff;
}

.social-media {
    padding-top: 20px;
    align-content: space-around;
}

.copy-right {
    text-align: center;
    padding-bottom: 15px;
    margin-top: 15px;
    border-bottom: 2px solid #0871a0;
}

.copys-right a {
    color: #0871a0;
    font-weight: 500;
    font-size: 17px;
}

.copys-right a:hover {
    color: #0871a0;
    text-decoration: none;
}

.copyss-right img {
    padding: 0;
    width: 25%;
    margin: 0;
}

.copys-right {
    padding-top: 15px;
}

.sticky-social {
    position: fixed;
    top: 300px;
    left: -40px;
    padding: 0px;
    margin: 0px;
    z-index: 9999;
}

.social {
    list-style: none;
}

.social li {
    padding: 10px 15px;
    font-size: 25px;
    transition: all 0.8sease-in-out;
}

.social li a {
    color: #fff;
}

li.fb {
    background-color: #0871a0;
}

.social li {
    padding: 10px 15px;
    font-size: 25px;
}

.whats {
    background-color: #18e43a;
}

.social li a {
    color: #fff;
}

/* ---------contact-page------------ */

.location-icon i.fa-solid.fa-location-dot {
    background-color: #0871a0;
    border-radius: 50%;
    padding: 7px 10px;
}

.location-icon {
    text-align: center;
    font-size: 25px;
    color: #fff;
}

.location {
    text-align: center;
    padding-top: 15px;
}

.location a {
    font-size: 17px;
    font-weight: 500;
}

.location a:hover {
    text-decoration: none;
    color: #0871a0;
}

.location-icon i.fa-solid.fa-phone {
    background-color: #0871a0;
    border-radius: 50%;
    padding: 8px 9px;
    font-size: 22px;
}

.location-icon i.fa-solid.fa-envelope {
    background-color: #0871a0;
    border-radius: 50%;
    padding: 8px 9px;
    font-size: 22px;
}

.responsive-map {
    overflow: hidden;
    padding-bottom: 40.25%;
    position: relative;
    height: 0;
    margin-top: 100px;
}

.responsive-map iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}


/* --------------------responsive--------------------------------------------- */

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

    .top-header {
        height: auto;
    }

    .email {
        padding: 10px 0;
    }

    .number {
        padding: 5px 0;
        text-align: start;
    }

    .about-heading {
        text-align: center;
        margin: 30px 0 60px 0;
    }


    .about-heading h2 {
        font-size: 31px;
    }

    .about-heading h2:before {
        width: 50%;
    }

    .doctor-about {
        padding-top: 45px;
    }

    .doctor-about h6 {
        font-size: 24px;
    }

    .education h5 {
        font-size: 22px;
    }

    .education span {
        font-size: 16px;
    }

    .education li {
        font-size: 15px;
    }

    .education-more {
        text-align: center;
    }



    .why-chooes-about h6 {
        font-size: 20px;
        padding-top: 40px;
    }

    .education-more-why {
        text-align: center;
    }


    .banners {
        margin: 35px 0;
    }

    .projectFactsWrap .item {
        padding: 10px 0px;
    }

    .view-more {
        padding-bottom: 15px;
    }

    .carousel-testimonial .item {
        padding: 25px 0;
    }

    .footer {
        margin-top: 20px;
    }


    .education p {
        display: flex;
        text-align: justify;
    }

    .education ul.any {
        padding-top: 10px;
    }

    .location {
        padding-bottom: 35px;
    }

    .responsive-map {
        padding-bottom: 70.25%;
        margin-top: 20px;
    }


    .copy-right {
        margin-top: 0;
        text-align: unset;
        border-bottom: 5px solid #0871a0;
    }

    .copyss-right {
        text-align: end;
    }

    .copyss-right img {
        width: 45%;
    }






}