body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Figtree;
    color: var(--black-color);
}

html {
    font-size: 16px;
}

ul {
    list-style: none;
}

.pad-50 {
    padding: 50px 0;
}

.pad-top-50 {
    padding-top: 50px;
}

:root {
    --white-color: #FFFFFF;
    --cyan-color: #00B1C2;
    --dark-purple: #7C91B4;
    --red-color: #EE3138;
    --purple-color: #323890;
    --black-color: #000000;
    --blue-color: #007ABE;
    --yellow-color: #FBCF11;
    --green-color : #2A7F8A ;
}

h2.sec-hed {
    color: var(--black-color);
    text-align: center;
    font-size: 3rem;
    font-style: normal;
    font-weight: 700;
    line-height: 4.0625rem;
}


h2.sec-hed span {
    font-weight: 400;
}

h3.headings {
    display: inline-block;
    background: var(--purple-color);
    color: var(--white-color);
    padding: 2px 25px;
    border-radius: 30px;
    font-size: 2.125rem;
    font-style: normal;
    font-weight: 700;
    line-height: 2.5rem;
}

h3.headings span {
    font-weight: 500;
}


a {
    text-decoration: none;
}

/* header */

.header-button {
    padding: 9px 18px;
    background: var(--red-color);
    color: var(--white-color);
    text-align: center;
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.32px;
    text-transform: uppercase;
    border-radius: 30px;
    transition: 0.3s;
    border: 1px solid var(--red-color);
}

.header-button:hover {
    background-color: var(--white-color);
    color: var(--red-color);
}

.header-contact {
    color: var(--black-color);
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    transition: 0.3s;
}


/* Appointment */

.Appointment {
    background: url(./img/form-bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
}

.form {
    border-radius: 15px;
    background: #F5F5F5;
    box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(12.5px);
    padding: 40px;
}

.form .sub-button {
    border-radius: 50px;
    background: var(--purple-color);
    border: 1px solid var(--purple-color);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.04);
    color: #FFF;
    text-align: center;
    font-family: Figtree;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    text-transform: uppercase;
    padding: 10px 40px;
    margin-top: 30px;
    transition: 0.3s;
}

.form .sub-button:hover {
    background: var(--white-color);
    color: var(--purple-color);
}

.form h3 {
    color: var(--black-color);
    text-align: center;
    font-size: 2rem;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    text-transform: uppercase;
}

.form p {
    font-size:1.25rem;
    color: var(--blue-color);
} 

.header-contact:hover {
    color: var(--red-color);
}

.form-group {
    margin-top: 20px;
}

.form-group .form-control {
    border: none;
    border-bottom: 0.7px solid #5C5C5C;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.04);
    border-radius: 0px;
}

/* types */

.types {
    background: #F5F5F5;
    position: relative;
}

.types h2.sec-hed {
    color: var(--blue-color);

}

.hernia-types .types-main {
    padding: 5px 10px;
    border-radius: 20px;
    height: 100%;
}

.types-main p {
    color: var(--white-color);
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.625rem;
    margin-bottom: 0;
}

.types-main p span {
    font-weight: 700;
}

.types-main.one {
    background: #08B9AE;
}

.types-main.two {
    background: #693284;
}

.types-main.three {
    background: #0A7BC1;
}

.types-main.four {
    background: #ED76A3;
}

.types-main.five {
    background: #323890;
}

.main-types {
    background: #693284;
}

.side-plus {
    position: absolute;

}

.types .side-plus {
    top: 20px;
    left: 20px;
}


/* types-treatments */

.types-treatments {
    position: relative;
}

.types-treatments .side-plus {
    position: absolute;
    top: -100px;
    right: 25px ; 
}

.types-treatments h2.sec-hed {
    color: var(--purple-color);
}

.types-treatments h2.sec-hed span {
    color: var(--black-color);
}

.types-treatments h2.sec-hed span strong {
    font-weight: 700;
}

.types-treatments h3.headings {
    background: #1E4B82;
}

.Treat {
    background: #FFEAD8;
    padding: 20px 25px;
    border-radius: 20px;
    height: 100%;
}

.Treat h4 {
    margin-top: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.875rem;
}

.Treat p {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.5rem;
    margin-bottom: 0;
}

.contact-section {
    background: var(--purple-color);
    padding: 20px 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact-section p {
    color: var(--white-color);
    font-size: 2.5rem !important;
    font-weight: 500;
    line-height: 118%;
    margin-bottom: 0;
}

.contact-section a {
    background: var(--yellow-color);
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 15px 22px;
    border-radius: 10px;
    color: var(--black-color);
    border: 1px solid var(--yellow-color);
    transition: 0.3s;
}

.contact-section a:hover {
    background: transparent;
    color: var(--yellow-color);
}

.emergency {
    text-align: center;
}

.emergency p {
    display: inline-block;
    background: #0A7BC1;
    color: var(--white-color);
    font-size: 1.5rem !important;
    font-style: normal;
    font-weight: 700;
    line-height: 1.75rem;
    padding: 10px 25px;
    border-radius: 25px;
    margin-bottom: 30px !important;
}

/* need-surgery */

.need-surgery {
    background: url(./img/need-surgery-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.need-surgery h2.sec-hed {
    color: var(--blue-color);
    text-align: start;
    font-size: 3.625rem;
}

.need-surgery h2.sec-hed span {
    font-size: 3rem;
    font-weight: 700;
    color: var(--black-color);
}

.need-surgery h3.headings {
    font-size: 2.125rem;
}

.backdrop {
    backdrop-filter: blur(10px);
    padding: 30px 25px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.70);
}

.backdrop ul {
    padding-left: 40px;

}

.backdrop ul li {
    font-size: 1.375rem;
    font-style: normal;
    font-weight: 500;
    line-height: 3.1875rem;
    position: relative;
}

.backdrop ul li::before {
    background: url(./img/list-icon.png);
    background-repeat: no-repeat;
    background-size: contain;
    height: 32px;
    width: 32px;
    position: absolute;
    content: "";
    left: -40px;
    top: 6px;
}


/* Know Your Doctor */

.doctor {
    background: url(./img/doctor-section-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    padding-top: 100px;
}

.doctor .side-plus {
    top: 30px;
    right: 30px;
}


.doctor .sec-title {
    position: absolute;
    width: 100%;
    top: 30px;
    left: 0;
}

.specialization {
    border-radius: 10px;
    border: 1px solid var(--white-color);
    background: rgba(255, 255, 255, 0.40);
    backdrop-filter: blur(7px);
    padding: 10px 5px;
    height: 100%;
}

.doctor .doctor-contact {
    position: relative;
}

.doctor .doctor-contact .contact-section {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -50px;
}

.specialization {
    display: flex;
    align-items: center;
    gap: 10px;
}

.specialization p {
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.75rem;
    margin-bottom: 0;
}

.specialization p span {
    font-weight: 700;
}

.doctor-data h4 {
    font-size: 2rem;
    font-weight: 700;
    line-height: normal;
}

.doctor-data p {
    font-size: 1.375rem;
    font-weight: 400;
    line-height: normal;
}

/* hernia-surgery */

.hernia-surgery-types {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.hernia-surgery-types h4 {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    padding-top: 5px;
    color: var(--white-color);
    text-align: center;
    font-size: 1.75rem;
    font-style: normal;
    font-weight: 600;
    line-height: 2.25rem;
    /* 128.571% */
    background: linear-gradient(180deg, #02283D 0%, rgba(102, 102, 102, 0.00) 100%);
}

/* Common-Hernias */


.Common-Hernias {
    position: relative;
}

.Common-Hernias .side-plus {
    top: 30px;
    right: 30px;
}


.Common-Hernias .harnias-in-men {
    background: url(./img/Hernias-in-Men-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    padding: 35px 25px;
    border-radius: 20px;
}

.Common-Hernias .harnias-in-women {
    background: url(./img/harnias-in-women-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    padding: 35px 20px;
    border-radius: 20px;
}

.Common-Hernias h4 {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 55px;
}

.Common-Hernias ul {
    padding-left: 0px;
    margin: 0;
}

.Common-Hernias ul li {
    margin-top: 12px;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.875rem;
}


/* best-hospital */

.best-hospital {
    background: url(./img/best-hospital-bg.jpg);
    background-position: center;
    background-size: cover;
}

.best-hospital h2.sec-hed {
    color: var(--white-color);
}

.Infrastructure-points p {
    margin-bottom: 0;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.75rem;
}


/* Hospital */


.Hospital {
    background: url(./img/Hospital.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.Hospital h2 {
    color: var(--white-color);
    font-size: 2.7rem;
    font-style: normal;
    font-weight: 400;
    line-height: 3.875rem;
    margin-bottom: 40px;
}

.Hospital h2 span {
    font-weight: 700;
}

/* choose-marengo */


.choose-marengo {
    background: url(./img/choose-marengo-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.choose-marengo h2.sec-hed {
    text-align: left;
    font-size: 2.5rem;
    line-height: 3.4375rem;
}

.choose-marengo h3.headings {
    font-size: 1.75rem;
}

.choose-marengo .backdrop {
    margin-top: 25px;
}

.choose-marengo .backdrop ul {
    margin-bottom: 0;
}

.choose-marengo .backdrop ul li {
    line-height: 3.125rem;
    font-size: 1.25rem;
}

.choose-marengo .backdrop ul li::before {
    background: url(./img/right-icon-2.png);
    /* height: 30px;
    width: 30px; */
    background-repeat: no-repeat;
    background-size: contain;
    /* top: 7px; */
}




/* Testimonials */


.Testimonials h2.sec-hed {
    color: var(--blue-color);
}

.owl-carousel {
    margin-top: 30px;
}

.owl-carousel .item {
    background: #F3F3F3;
    padding: 40px 30px;
    border-radius: 20px;
    min-height: 465px;
}

.owl-carousel .item h5 {
    font-family: Poppins;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: 25px;
}

.owl-carousel .item p {
    font-size: 1rem;
}

.owl-carousel .item a {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black-color);
}

.owl-nav {
    display: none;
}

.owl-dots {
    margin-top: 20px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--blue-color) !important;
}


/* Services */

.Services-first {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.Services p {
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem;
}

/* faq */

.faq {
    background: var(--dark-purple);
}

.faq h2.sec-hed {
    color: var(--white-color);
    margin-bottom: 10px;
}

.contact-button {
    padding: 17px 2.5rem;
}

.accordion-item {
    margin-top: 20px;
}

.form form {
    margin-top: 15px;
}

.card-body p {
    margin: 0;
    padding: 0 20px 15px 20px;
}

.accordion-header button {
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 600;
}


.accordion-item {
    border-radius: 0px !important;
    overflow: hidden;
}

.accordion-button:not(.collapsed) {
    color: var(--cyan-color);
    background: none;
    box-shadow: none;
}

.accordion-button::after {
    background-image: url(../img/plus.png) !important;

}

.accordion-button:not(.collapsed)::after {
    background-image: url(../img/minus.png) !important;
    background-position: 100% 50%;
}


/* location-details */

.location-details {
    background: url(./img/contact\ us-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    color: var(--white-color);
}

.location-details a {
    color: var(--white-color);
}


.details-left {
    background: var(--green-color);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.bottom-tel p {
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2.5625rem;
    margin-bottom: 0;
}

.details-right {
    background: #007ABE;
    height: 100%;
    border-radius: 20px;
    padding: 20px 30px;
    position: relative;
}

.details-left .timing {
    margin-top: 18px;
}


.details-left .plus-grup-img {
    position: absolute;
    top: 25px;
    right: 25px;
}



.details-right .plus-grup-img {
    position: absolute;
    bottom: 25px;
    right: 50px;
}

.right-links {
    position: absolute;
    right: 20px;
    top: 20px;
}

.right-links ul li {
    margin-top: 10px;
}

.right-links ul li a {
    height: 52px;
    width: 52px;
    text-align: center;
    line-height: 52px;
    font-size: 20px;
    border-radius: 50px;
    background: var(--black-color);
    display: inline-block;
    border: 1px solid var(--black-color);
    transition: 0.3s;
}

.right-links ul li a:hover {
    background: transparent;
    border: 1px solid var(--white-color);
}

.details-right .timing {
    margin-top: 20px;
}

.timing p {
    margin-bottom: 0;
}

.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
}

.scroll-top button {
    background: var(--green-color);
    color: var(--white-color);
    height: 50px;
    width: 50px;
    font-size: 20px;
    border: 1px solid var(--green-color);
    border-radius: 50px;
    transition: 0.3s;
}

.scroll-top button:hover {
    background: transparent;
    color: var(--green-color);
}

.end-sec p {
    font-family: Inter;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.875rem;
    letter-spacing: 0.01rem;
}


.end-sec p span {
    letter-spacing: 0.01rem;
    text-transform: uppercase;
}


.mid-services {
    display: none;
}


@media only screen and (max-width: 1370px) {
    html {
        font-size: 13px;
    }

    .owl-carousel .item {
        min-height: 380px;
    }
}


@media only screen and (max-width: 992px)  {

    html {
        font-size: 12.5px;
    }

    .contact-section {
        display: block;
        text-align: center;
    }

    
    .contact-section a {
        margin-top: 20px;
    }   
    
    .side-plus {
        display: none;
    }

    .pad-50 {
        padding: 40px 0;
    }

    
    .doctor .sec-title {
        position: static;
    }

    
    .doctor {
        padding-top: 40px;
    }

    
    .doctor-data {
        padding-top: 30px;
    }

    .owl-carousel .item {
        min-height: 310px;
    }

    .Services-first {
        display: none;
    }

    .mid-services {
        display: block;
    }

}



@media only screen and (max-width: 768px) {

    html {
        font-size: 12px;
    }

    .pad-50 {
        padding: 30px 0;
    }

    h2.sec-hed {
        font-size: 2.7rem;
    }

    .pad-top-50 {
        padding-top: 30px;
    }

    .doctor-data {
        padding-top: 30px;
    }

    .form {
        padding: 30px 31px;
    }

    .title-plus {
        height: 3rem;
        width: auto;
    }

    .backdrop ul li::before {
        padding-left: 30px;
    }

    .backdrop ul li::before {
        height: 25px;
        width: 25px;
        left: -36px;
        top: 7px;
    }

    .choose-marengo .backdrop ul li::before {
        top: 9px;
    }

    .Infrastructure-points p {

        line-height: 2.75rem;
    }

    .owl-carousel .item {
        min-height: 450px;
    }

    .backdrop {
        padding: 25px 10px;
    }

    .doctor {
        padding: 30px 0px;
    }

    .choose-marengo .backdrop ul li {
        line-height: 2rem;
        margin-top: 10px;
    }
    
    .details-right {
    min-height: 230px;
}
}