.single-banner-slide {
    height: 90vh;
    width: 100vw;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.single-banner-slide span {
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
}

.single-banner-slide h2 {
    color: #fff;
    text-transform: uppercase;
    font-size: 60px;
}

.single-banner-slide::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
    width: 100%;
    height: 100%;
}

.single-banner-slide p {
    color: #fff;
    font-size: 15px;
    max-width: 50%;
    margin: 0 auto;
    text-align: center;
}

.single-banner-slide a {
    color: #000;
    background: #fff;
    padding: 10px 45px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    margin-top: 30px;
    transition: 0.3s;
}

.single-banner-slide a:hover {
    color: #fff;
    background: #000;
}

body {
    font-family: "Platypi", serif;
    color: #3f4546;
    overflow-x: hidden;
    overflow-y: scroll;
}

.scroll-container {
    height: 100vh;
    transform-style: preserve-3d;
}

a {
    color: #CC252A;
    text-decoration: none;
    outline: none;
}

a:hover {
    color: #CC252A;
    text-decoration: none;
    outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Platypi", serif;
}

#topbar {
    background: #137143;
    height: 40px;
    font-size: 14px;
    transition: all 0.5s;
    z-index: 996;
}

#topbar.topbar-scrolled {
    top: -40px;
}

#topbar .contact-info a {
    line-height: 1;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin-right: 10px;
}

#topbar .contact-info a:hover {
    color: #fff;
}

#topbar .contact-info i {
    color: #fff;
    padding-right: 4px;
    margin-left: 15px;
    line-height: 0;
    font-size: 17px;
}

#topbar .social-links a {
    color: #fff;
    padding-left: 15px;
    display: inline-block;
    line-height: 1px;
    font-size: 25px
}

#topbar .social-links a:hover {
    color: #CC252A;
}

#topbar .social-links a:first-child {
    border-left: 0;
}

#header {
    background: #fff;
    transition: all 0.5s;
    z-index: 997;
    padding: 5px 0;
    top: 40px;
}

#header.header-scrolled {
    background: #fff;
    top: 0;
}

#header .logo img {
    max-height: 65px;
}

.appointment-btn {
    margin-left: 25px;
    background: #21724C;
    color: #fff;
    border-radius: 50px;
    padding: 8px 20px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    display: inline-block;
    text-transform: capitalize;
}

.appointment-btn:hover {
    background: #CC252A;
    opacity: 0.7;
    color: #fff;
}

@media (max-width: 768px) {
    .appointment-btn {
        margin: 0 5px 0 0;
        padding: 6px 18px;
    }
}

.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar>ul>li {
    position: relative;
    white-space: nowrap;
    padding: 8px 0 8px 20px;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    color: #3f4546;
    white-space: nowrap;
    transition: 0.3s;
    border-bottom: 2px solid #fff;
    padding: 5px 2px;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #21724C;
    border-color: #21724C;
    outline: none;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: -320px;
    top: calc(100% + 200px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    transition: 0.3s;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 24px
}

.navbar .dropdown ul li {
    min-width: 800px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;
    text-transform: none;
    color: #3f4546;
    border: none;
    outline: none;
}

.navbar .dropdown ul a i {
    font-size: 12px;
    color: #3f4546;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #3f4546;
    text-decoration: underline;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 100px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }
    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

.mobile-nav-toggle {
    color: #2c4964;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }
    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(28, 47, 65, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile>ul>li {
    padding: 0;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 16px;
    color: #333;
    border: none;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #21724C;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #1977cc;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}

.banner-area {
    margin-top: 5em;
    position: relative;
}

.multihospital {
    color: #fff;
}

.multihospital h3 {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.4em;
    letter-spacing: 1px;
}

.multihospital h1 {
    margin: 0;
    font-size: 3em;
    font-weight: 700;
    line-height: 1.3;
    text-transform: capitalize;
}

.why-us {
    position: relative;
    margin-top: -120px;
    z-index: 9;
}

.why-us .content .more-btn:hover {
    color: #fff;
    background: #fff;
}

.why-us .icon-boxes .icon-box {
    text-align: center;
    border-radius: 10px;
    background: #21724C;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding: 40px 25px;
    width: 100%;
    cursor: pointer;
}

.why-us .icon-boxes .icon-box img {
    width: 80px;
}

.why-us .icon-boxes .icon-box h4 {
    font-size: 1.2em;
    font-weight: 600;
    color: #fff;
    line-height: 1.5;
    text-transform: uppercase;
}

#about-home {
    padding: 100px 0 60px;
}

.hosp-ab h2,
.hosp-ab h3 {
    font-size: 1.7em;
    font-weight: 600;
    line-height: 1.3;
    text-transform: capitalize;
}

.hosp-ab p {
    font-size: 1em;
    font-weight: 400;
    line-height: 1.7;
}

.abot_cta_pa {
    margin-bottom: 30px;
}

.aboutcta {
    appearance: none;
    background-color: #21724C;
    border: 2px solid #21724C;
    border-radius: 50px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    outline: none;
    text-align: center;
    padding: 10px 44px;
    text-transform: capitalize;
}

.aboutcta:hover {
    background: #CC252A;
    color: #fff;
    border: 2px solid #CC252A;
}

.img-abo img {
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

#book-appointment {
    background-image: url(../images/banners/services.jpg);
    position: relative;
    padding: 80px 0 80px;
    background-size: cover;
    background-repeat: no-repeat;
}

.rating-box {
    display: flex;
    justify-content: space-between;
    gap: 1em;
}

.rating-desc {
    width: 90%;
}

.emergency-1 h5 {
    font-size: 1.4em;
    font-weight: 600;
    line-height: 1.5;
    color: #666;
    margin-bottom: 1em;
}

.rating-desc h4 {
    font-size: 2em;
    font-weight: 800;
    line-height: 1.3;
}

.rating-desc h6 {
    font-size: 1.2em;
    font-weight: 600;
    line-height: 1.3;
    color: #CC252A;
}

.rating-desc p {
    font-size: 1em;
    font-weight: 400;
    line-height: 1.4;
}

#need-sec-id {
    background: #C5D8CC;
    padding: 2em 0 2em;
}

.need-sec h3 {
    font-size: 1.7em;
    font-weight: 600;
    line-height: 1.3;
    text-transform: capitalize;
}

.cta-1 {
    font-size: 1.1em;
    font-weight: 500;
    line-height: 1.6;
    color: #fff;
    background-color: #21724C;
    border-radius: 50px;
    padding: 10px 44px;
}

.cta-1:hover {
    background-color: #CC252A;
    color: #fff;
}

.cta-button {
    text-align: right;
    margin-top: 1em;
}

.need-sec {
    margin-top: 1em;
}

#department-sect {
    background-color: #fff;
    padding: 80px 0 80px;
}

.excell {
    text-align: center;
    margin-bottom: 40px;
}

.excell h2 {
    font-size: 1.8em;
    font-weight: 600;
    line-height: 1.3;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.excell p {
    font-size: 1em;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 0;
}

.media-29103-doctors {
    cursor: pointer;
    border: 3px solid #C5D8CC;
    padding: 30px;
    margin-bottom: 20px;
    /*display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1em;*/
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 24px;
    position: relative;
}
.media-29103-doctors-wrap{
    border: 3px solid #C5D8CC;
    padding: 30px;
    margin-bottom: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1em;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 24px;
    position: relative;
}
.docr-imaf1{
    width:50%;}
.oever-doctor{
    margin-top:10px;
}

.card-wrapper {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.doctor-page-head h2 {
    font-size: 1.8em;
    font-weight: 600;
    line-height: 1.3;
    text-transform: capitalize;
    margin-bottom: 30px;
    text-align: center;
}

.card-bottom {
    width: 35%;
    position: absolute;
    z-index: 20;
    background-color: rgba(33, 114, 69, 0.65);
    padding: 10px 20px;
    color: #ffffff;
    right: 0;
    bottom: 0;
    height: 40px;
}

.docr-imaf i {
    font-size: 50px;
    color: #3f4546;
    margin-bottom: 5px;
}

.oever-doctor h5 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    text-transform: capitalize;
    margin-bottom: 0;
}

.oever-doctor h6 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    text-transform: capitalize;
    margin-bottom: 4px;
    color: #21724C;
}

.oever-doctor p {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 0;
}

.oever-doctor .card-bottom p {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 0;
    position: absolute;
    top: 20%;
    color: #fff;
}

.oever-doctor .card-bottom p a {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 0;
    color: #fff;
}

#foctors-sec {
    padding: 100px 0 80px;
}

.media-29101 img {
    position: relative;
}

.owl-2-style .owl-nav {
    display: none;
}

.owl-3-style .owl-dots {
    text-align: center;
    position: relative;
    bottom: 0px;
}

.owl-3-style .owl-dots .owl-dot {
    display: inline-block;
}

.owl-3-style .owl-dots .owl-dot span {
    display: inline-block;
    width: 15px;
    height: 3px;
    border-radius: 0px;
    background: #cccccc;
    -webkit-transition: 0.3s all cubic-bezier(0.32, 0.71, 0.53, 0.53);
    -o-transition: 0.3s all cubic-bezier(0.32, 0.71, 0.53, 0.53);
    transition: 0.3s all cubic-bezier(0.32, 0.71, 0.53, 0.53);
    margin: 3px;
}

.owl-3-style .owl-dots .owl-dot.active span {
    background: #CC252A;
}

.owl-3-style .owl-dots .owl-dot:active,
.owl-3-style .owl-dots .owl-dot:focus {
    outline: none;
}

.media-29101 {
    position: relative;
}

.media-29101::before {
    content: '';
    background-color: rgb(0, 0, 0, 0.2);
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    border-radius: 20px;
}

.case-1 {
    position: relative;
}

.oever-lap {
    position: absolute;
    bottom: 5%;
    left: 5%;
}

.media-29101 img {
    margin-bottom: 20px;
    border-radius: 20px;
    height: 40vh;
}

.media-29101 h3 {
    font-size: 16px;
    font-weight: 500;
    color: #222;
    position: relative;
    background-color: #fff;
    padding: 10px;
}

.space-gap {
    margin-top: 2em;
}

.media-29101 h3 a {
    color: #fff;
}

.owl-2-style .owl-dots {
    text-align: center;
    position: relative;
    bottom: 0px;
}

.owl-2-style .owl-dots .owl-dot {
    display: inline-block;
}

.owl-2-style .owl-dots .owl-dot span {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50px;
    background: #cccccc;
    -webkit-transition: 0.3s all cubic-bezier(0.32, 0.71, 0.53, 0.53);
    -o-transition: 0.3s all cubic-bezier(0.32, 0.71, 0.53, 0.53);
    transition: 0.3s all cubic-bezier(0.32, 0.71, 0.53, 0.53);
    margin: 3px;
}

.owl-2-style .owl-dots .owl-dot.active span {
    background: #CC252A;
}

.owl-2-style .owl-dots .owl-dot:active,
.owl-2-style .owl-dots .owl-dot:focus {
    outline: none;
}

#facilities {
    padding: 20px 0 60px;
}

.com-1 {
    height: 100%;
}

.com-1 img {
    width: 80%;
}

.com-1 h5 {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 600;
}

.facty-box1 {
    background-color: #6BB28B;
    text-align: center;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 5px;
}

.facty-box2 {
    background-color: #DA7D7C;
    text-align: center;
    padding: 20px;
    color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 5px;
}

.facty-box3 {
    background-color: #C5D8CC;
    text-align: center;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 5px;
}

.agrasec-advante h2 {
    font-size: 2.2em;
    font-weight: 600;
    line-height: 1.3;
    text-transform: capitalize;
    color: #CC252A;
    margin-bottom: 10px;
}

.transform-sect {
    margin: 2em 0 2em;
}

.transform-sect h5 {
    font-size: 1.6em;
    font-weight: 600;
    line-height: 1.5;
}

.agrasec-advante {
    margin-bottom: 3em;
}

.appoint-block {
    display: flex;
    gap: 2em;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    border: 3px solid #C5D8CC;
    padding: 20px;
    width: 600px;
    background-color: #C5D8CC;
}

.cal-link h4 {
    font-size: 1.6em;
    font-weight: 600;
    line-height: 1.5;
    text-transform: capitalize;
}

.cal-link p {
    font-size: 1em;
    font-weight: 400;
    line-height: 1.5;
}

.emer-cta {
    font-size: 1.3em;
    font-weight: 600;
    line-height: 1.5;
    color: #3f4546;
}

.counts {
    background: #fff;
    background-image: url(../images/new-agraseni-hospitals-transparent.png);
    position: relative;
    padding: 80px 0 80px;
    background-size: cover;
    background-repeat: no-repeat;
}

.list-advantage ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    gap: 3em;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
}

.flex-count {
    display: flex;
    align-items: center;
    justify-content: center;
}

.counts .count-box {
    width: 100%;
    position: relative;
    text-align: center;
}

.counts .count-box span {
    font-size: 32px;
    display: block;
    font-weight: 600;
}

.social-icons img {
    width: 30px;
}

.counts .count-box p {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

#insurance-home {
    padding-top: 40px;
    padding-bottom: 80px;
}

.vieo-teast {
    text-align: center;
    margin-bottom: 20px;
}

.vieo-teast h5 {
    font-size: 1.5em;
    font-weight: 700;
    line-height: 1.4;
    text-transform: capitalize;
    margin-top: 5px;
}

.vieo-teast h4 {
    font-size: 1.8em;
    font-weight: 700;
    line-height: 1.4;
    text-transform: capitalize;
    margin-top: 5px;
}

.mar-ques-item {
    display: flex;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
}

.mar-ques-item div {
    margin: 10px;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    border-radius: 6px;
    width: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 130px;
}

.mar-ques-item div img {
    width: 100%;
}

#footer .footer-top {
    background: #3C4C58;
    padding: 80px 0 40px 0;
    color: #fff;
}

#footer .footer-info img {
    width: 70%;
}

#footer .footer-top .footer-info p {
    transition: 0.3s;
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 400;
}

#footer .footer-top h4 {
    font-size: 1.5em;
    font-weight: 600;
    position: relative;
    padding-top: 10px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.2em;
}

#footer .footer-top .footer-links ul li {
    padding: 7px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul a {
    color: #fff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 500;
}

#footer .footer-newsletter p {
    color: #fff;
    line-height: 2;
    font-size: 1rem;
    font-weight: 500;
}

#footer .footer-newsletter p a {
    color: #fff;
    transition: 0.3s;
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 500;
}

#footer .copyright {
    padding-top: 3em;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.3;
    text-align: center;
}

#footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 15px;
}

.copyright a {
    color: #fff;
}

.footer-social {
    display: flex;
}

.footer-social a {
    width: 55px;
    height: 55px;
    display: flex;
    border-radius: 50%;
    margin-right: 14px;
    align-items: center;
    justify-content: center;
    transition: all .5s ease-in;
    transform: translateY(0);
    background-color: #fff;
}

.footer-social a img {
    max-width: 30px;
}

#about-head {
    width: 100%;
    height: 450px;
    background: url("../images/banners/about-1.jpg") center center;
    background-size: cover;
    background-color: #21724C;
    margin-top: 6em;
}

#doctos-head {
    width: 100%;
    height: 280px;
    background: url("../images/banners/about-1.jpg") center center;
    background-size: cover;
    background-color: #21724C;
    margin-top: 6em;
}

#gynic-head {
    width: 100%;
    height: 470px;
    background: url("../images/banners/about-bg2.jpg") center center;
    background-size: cover;
    background-color: #21724C;
    margin-top: 6em;
}

#criticalcare-head {
    width: 100%;
    height: 470px;
    background: url("../images/banners/criticalcare_banner1.jpg") center center;
    background-size: cover;
    background-color: #21724C;
    margin-top: 6em;
}

#gastro1-head {
    width: 100%;
    height: 470px;
    background: url("../images/banners/gastro-banner1.png") center center;
    background-size: cover;
    background-color: #21724C;
    margin-top: 6em;
}

#dermotology-head {
    width: 100%;
    height: 470px;
    background: url("../images/banners/dermatology-banner.jpg") center center;
    background-size: cover;
    background-color: #21724C;
    margin-top: 6em;
}

#urology-head {
    width: 100%;
    height: 470px;
    background: url("../images/banners/urology-banner.jpg") center center;
    background-size: cover;
    background-color: #21724C;
    margin-top: 6em;
}

#orthopedic-head {
    width: 100%;
    height: 470px;
    background: url("../images/banners/orthopedics-banner.jpg") center center;
    background-size: cover;
    background-color: #21724C;
    margin-top: 6em;
}

#plastic-head {
    width: 100%;
    height: 470px;
    background: url("../images/banners/plastic-surgery.jpg") center center;
    background-size: cover;
    background-color: #21724C;
    margin-top: 6em;
}

#dental-head {
    width: 100%;
    height: 470px;
    background: url("../images/banners/oral-banner.jpeg") center center;
    background-size: cover;
    background-color: #21724C;
    margin-top: 6em;
}

#neuo-head {
    width: 100%;
    height: 470px;
    background: url("../images/banners/neurology1-banner.jpg") center center;
    background-size: cover;
    background-color: #21724C;
    margin-top: 6em;
}

#cardio-head {
    width: 100%;
    height: 470px;
    background: url("../images/banners/heart-banner.jpeg") center center;
    background-size: cover;
    background-color: #21724C;
    margin-top: 6em;
}

#rheumat-head {
    width: 100%;
    height: 470px;
    background: url("../images/banners/rheumatology-1.webp") center center;
    background-size: cover;
    background-color: #21724C;
    margin-top: 6em;
}

#neph-head {
    width: 100%;
    height: 470px;
    background: url("../images/banners/nephrology-1.jpg") center center;
    background-size: cover;
    background-color: #21724C;
    margin-top: 6em;
}

#ent-head {
    width: 100%;
    height: 470px;
    background: url("../images/banners/ent-banner.jpg") center center;
    background-size: cover;
    background-color: #21724C;
    margin-top: 6em;
}

#pediatric-head {
    width: 100%;
    height: 470px;
    background: url("../images/banners/pediatrics-banner.jpg") center center;
    background-size: cover;
    background-color: #21724C;
    margin-top: 6em;
}

#vascular-head {
    width: 100%;
    height: 470px;
    background: url("../images/banners/vascular-surgery-1.webp") center center;
    background-size: cover;
    background-color: #21724C;
    margin-top: 6em;
}

#pain-head {
    width: 100%;
    height: 470px;
    background: url("../images/banners/pain-management1.jpg") center center;
    background-size: cover;
    background-color: #21724C;
    margin-top: 6em;
}

#contact-head {
    width: 100%;
    height: 300px;
    background: url("../images/banners/banner_contact.jpg") center center;
    background-size: cover;
    background-color: #21724C;
    margin-top: 6em;
}

.content-serv h4 {
    font-size: 1.4em;
    font-weight: 600;
    line-height: 1.4;
    text-transform: capitalize;
}

#pulmonology-head {
    width: 100%;
    height: 470px;
    background: url("../images/banners/pulmonology.jpeg") center center;
    background-size: cover;
    background-color: #21724C;
    margin-top: 6em;
}

.us-head {
    margin-top: 7em;
}

.us-head h2 {
    font-size: 1.4em;
    font-weight: 600;
    line-height: 1.3;
    text-transform: capitalize;
    color: #CC252A;
}

.us-head h1 {
    font-size: 2.6em;
    font-weight: 700;
    line-height: 1.4;
    text-transform: capitalize;
}

#about-make {
    padding: 80px 0 80px;
}

#mission {
    padding: 30px 0 30px;
}

.vison-1 {
    background-color: #6BB28B;
    text-align: center;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 5px;
    color: #fff;
    height: 100%;
}

.vis-2 h3 {
    font-size: 30px;
    line-height: 1.4;
    font-weight: 600;
    text-transform: capitalize;
}

.vis-2 p {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
}

.vison-2 {
    background-color: #DA7D7C;
    text-align: center;
    padding: 20px;
    color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 5px;
    height: 100%;
}

.vison-3 {
    background-color: #C5D8CC;
    text-align: center;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 5px;
    height: 100%;
}

.com-img img {
    background-color: #6BB28B;
    padding: 10px;
    width: 120px;
}

.value-flex {
    display: flex;
    gap: 1em;
    margin-bottom: 1em;
}

.com-para {
    width: 70%;
}

.com-para h5 {
    font-size: 22px;
    line-height: 1.4;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.com-para p {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
}

#core-values {
    padding: 100px 0 100px;
}

.boxe-12 {
    position: relative;
    top: -60px;
    background-color: #fff;
    padding: 30px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.content h6 {
    font-size: 1.3em;
    font-weight: 600;
    line-height: 1.3;
    text-transform: capitalize;
    margin-top: 5px;
}

.content p {
    font-size: 1em;
    font-weight: 500;
    line-height: 1.3;
    text-transform: capitalize;
    margin-bottom: 0;
}

.content-serv h2,
.content-serv h3 {
    font-size: 1.6em;
    font-weight: 600;
    line-height: 1.4;
    text-transform: capitalize;
}

.content-serv p {
    font-size: 1.1em;
    font-weight: 400;
    line-height: 1.7;
}

.treatment-list li {
    font-size: 1.1em;
    font-weight: 400;
    line-height: 1.8;
}

.appoint-block-services {
    display: flex;
    gap: 1em;
    justify-content: flex-start;
    align-items: center;
    border: 3px solid #21724C;
    padding: 20px;
    color: #fff;
    background-color: #21724C;
}

.cal-link-services h4 {
    font-size: 1.6em;
    font-weight: 600;
    line-height: 1.5;
    text-transform: capitalize;
    color: #fff;
}

.emer-cta-services {
    font-size: 1.2em;
    font-weight: 600;
    line-height: 1.5;
    color: #fff;
}

.exlpoe {
    margin-bottom: 40px;
    background-color: #fff;
    padding: 10px;
    border-radius: 24px;
    margin-top: 30px;
}

.exlpoe h3 {
    font-size: 1.6em;
    font-weight: 800;
    margin: 10px 0 5px;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.4;
}

.tra_list {
    list-style-type: none;
    padding: 0;
}

.tra_list li {
    line-height: 2;
    padding: 5px 0 2px 0;
    border-bottom: 1px solid #3F3A44;
    list-style-type: none;
}

.tra_list li a {
    font-size: 16px;
    font-weight: 500;
    color: #3F3A44;
}

#on-agraseni {
    padding: 80px 0 60px;
}

.pregene-list h2 {
    font-size: 1.8em;
    font-weight: 600;
    line-height: 1.4;
    text-transform: capitalize;
}

.pregene-list p {
    font-size: 1.1em;
    font-weight: 400;
    line-height: 1.6;
}

.cta-button1 {
    margin-top: 2em;
}

#us-letter {
    padding: 50px 0 50px;
}

.query h6 {
    margin-top: 30px;
    font-size: 1.4em;
    font-weight: 500;
    line-height: 1.25;
    text-transform: capitalize;
}

.et_pb_module {
    background-color: #137143;
    color: #fff;
    border-radius: 0;
}

.et_pb_blurb_content {
    display: flex;
    gap: 1em;
    align-items: center;
    justify-content: center;
}

.et_pb_main_blurb_image {
    background-color: #CC252A;
    color: #fff;
    border-radius: 50px;
    width: 55px;
    height: 55px;
    font-size: 30px;
    position: relative;
}

.et_pb_main_blurb_image {
    color: #fff;
    font-size: 30px;
}

.et_pb_main_blurb_image i {
    position: absolute;
    left: 20%;
    top: 20%;
}

.et_pb_blurb_container {
    padding: 10px;
}

.et_pb_module_header {
    font-size: 1.2em;
    font-weight: 600;
    line-height: 1.25;
    text-transform: capitalize;
    margin-top: 10px;
}

.et_pb_module {
    color: #fff;
}

.et_pb_blurb_description p a {
    font-size: 1.2em;
    font-weight: 600;
    line-height: 1.25;
    text-transform: capitalize;
    color: #fff;
}

#conntet {
    padding: 40px 0 70px;
}

.fill-out {
    text-align: center;
}

.fill-out h2 {
    margin-bottom: 5px;
    font-size: 2em;
    font-weight: 600;
    line-height: 1.25;
    text-transform: capitalize;
}

.fill-out p {
    font-size: 1.1em;
    font-weight: 400;
    line-height: 1.55;
}

.form {
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 24px;
}

.subbut-buttin {
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    background-clip: padding-box;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    color: #495057;
    display: block;
    font-size: 1rem;
    font-weight: 400;
    height: calc(1.5em + .75rem + 2px);
    line-height: 1.5;
    padding: .375rem .75rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    width: 100%;
}

button {
    color: #FFFFFF;
    background-color: #137143;
    border-radius: 5px 5px 5px 5px;
    margin: 12px 0px 0px 0px;
    padding: 10px 30px 10px 30px;
    font-size: 1em;
    font-weight: 600;
    color: #fff;
}

textarea.form-control {
    min-height: 150px;
    margin-bottom: 20px;
}

.address-contact h3 {
    margin-top: 3em;
    font-size: 1.8em;
    font-weight: 600;
    line-height: 1.25;
    text-transform: capitalize;
}

.destal_list-contact ul li {
    line-height: 1.7;
    font-size: 1.1em;
    line-height: 2;
    font-weight: 500;
}

.destal_list-contact ul {
    list-style-type: none;
    padding: 0;
}

#doctos-page {
    padding: 60px 0 60px;
}

#gallery-page {
    padding: 60px 0 60px;
}

.gallery-block.grid-gallery {
    padding-bottom: 80px;
    padding-top: 80px;
}

.gallery-block.grid-gallery .heading {
    margin-bottom: 50px;
    text-align: center;
}

.gallery-block.grid-gallery .heading h2 {
    font-weight: bold;
    font-size: 1.4rem;
    text-transform: uppercase;
}

.gallery-block.grid-gallery a:hover {
    opacity: 0.8;
}

.gallery-block.grid-gallery .item img {
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
    transition: 0.4s;
}

.gallery-block.grid-gallery .item {
    margin-bottom: 20px;
}

@media (min-width: 576px) {
    .gallery-block.grid-gallery .scale-on-hover:hover {
        transform: scale(1.05);
        box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.15) !important;
    }
}

.gallery-home {
    padding: 80px 0 40px;
}

.galler-head h2 {
    font-size: 1.8em;
    font-weight: 600;
    line-height: 1.3;
    text-transform: capitalize;
    margin-bottom: 30px;
    text-align: center;
}

.abot_cta_pa-galley {
    text-align: center;
    margin-top: 30px;
}

.top-doctora h3 {
    font-size: 1.6em;
    font-weight: 700;
    margin: 10px 0 5px;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.4;
}