@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/*--------------------------------------------------------------
# Root
--------------------------------------------------------------*/

:root {
    --font-poppins: "Poppins", sans-serif;
    --primary-color: #000000;
    --secondary-color: #D72148;
    --white-color: #fff;
    --btn-color: #22477B;
    --bg-color: #DBEAFF;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
    font-family: var(--font-poppins);
}

#god-title{
    position: absolute;
    top: 25px;
    right: 46px;
    font-size: 20px;
    color: #FFF;
}

img {
    max-width: 100%;
}

a:focus {
    text-decoration: none;
    outline: 0;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    outline: 0;
}

p {
    margin: 0;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
    margin-bottom: 0;
}

.bg-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg-color {
    background: var(--bg-color);
}

.primary-btn {
    padding: 15px 25px;
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    border-radius: 10px;
    color: var(--white-color);
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    display: inline-block;
    transition: 0.5s all ease-in-out;
}

.primary-btn:hover {
    background: var(--white-color);
    color: var(--secondary-color);
}

.secondary-btn {
    padding: 15px 25px;
    background-color: var(--btn-color);
    border: 1px solid var(--btn-color);
    border-radius: 10px;
    color: var(--white-color);
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    display: inline-block;
    transition: 0.5s all ease-in-out;
}

.secondary-btn:hover {
    background: var(--white-color);
    color: var(--btn-color);
}

.py-150 {
    padding-top: clamp(60px, 8vw, 150px);
    padding-bottom: clamp(60px, 8vw, 150px);
}

.pt-150 {
    padding-top: clamp(60px, 8vw, 150px);
}

.pb-150 {
    padding-bottom: clamp(60px, 8vw, 150px);
}

.py-130 {
    padding-top: clamp(55px, 7vw, 130px);
    padding-bottom: clamp(55px, 7vw, 130px);
}

.pt-130 {
    padding-top: clamp(55px, 7vw, 130px);
}

.pb-130 {
    padding-bottom: clamp(55px, 7vw, 130px);
}

.py-100, .py-80 {
    padding-top: clamp(40px, 6vw, 100px);
    padding-bottom: clamp(40px, 6vw, 100px);
}

.pt-100, .pt-80 {
    padding-top: clamp(40px, 6vw, 100px);
}

.pb-100, .pb-80 {
    padding-bottom: clamp(40px, 6vw, 100px);
}

.py-50 {
    padding-top: clamp(20px, 4vw, 50px);
    padding-bottom: clamp(20px, 4vw, 50px);
}

.pt-50 {
    padding-top: clamp(20px, 4vw, 50px);
}

.pb-50 {
    padding-bottom: clamp(20px, 4vw, 50px);
}

.py-60 {
    padding-top: clamp(24px, 4.5vw, 60px);
    padding-bottom: clamp(24px, 4.5vw, 60px);
}

.pt-60 {
    padding-top: clamp(24px, 4.5vw, 60px);
}

.pb-60 {
    padding-bottom: clamp(24px, 4.5vw, 60px);
}

.row-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px;
    align-items: center;
}

h1 {
    font-weight: 700;
    font-size: clamp(28px, 4vw, 40px);
    line-height: clamp(38px, 5vw, 50px);
    /* font-size: 55px;
    line-height: 65px; */
    color: var(--primary-color);
    margin: 0;
}

h2 {
    font-weight: 700;
    font-size: clamp(28px, 4vw, 32px);
    line-height: clamp(38px, 5vw, 42px);
    /* font-size: 55px;
    line-height: 65px; */
    color: var(--primary-color);
    margin: 0;
}

h3 {
    font-weight: 600;
    font-size: clamp(20px, 3vw, 26px);
    line-height: clamp(28px, 4vw, 36px);
    color: var(--primary-color);
    margin: 0;
}


h4 {
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    margin: 0;

}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.main-header {
    padding: 0;
    z-index: 99;
    background-color: transparent;
    z-index: 9999;
    /* position: absolute; */
    top: 0;
    right: 0;
    left: 0;
}

.main-header .logo {
    padding: 0;
    margin: 0;
}

.main-header .logo img {
    max-width: 115px;
    height: auto;
    object-fit: cover;

}

.main-header div#offcanvasExample {
    flex-direction: row;
    align-items: center;
}

.main-header .navbar-toggler {
    background-color: unset;
    border: 0;
    padding: 0;
}

.main-header .navbar-toggler .bars i {
    font-size: 30px;
    color: var(--orange-clr);
}

.main-header .btn-close {
    display: none;
}

.main-header .btn-close:focus {
    box-shadow: unset;
}

.main-header .nav-menu {
    align-items: center;
    gap: 22px;
}

.main-header .nav-menu .nav-item .nav-link {
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    padding: 30px 0;
    color: var(--primary-color);
    transition: 0.5s all;
}

.main-header .nav-menu .nav-item .nav-link:hover {
    color: var(--secondary-color);
}

.main-header .nav-menu .nav-item .nav-link.active {
    color: var(--secondary-color);
}

.navbar-toggler:focus {
    box-shadow: unset;
}

.main-header .nav-menu .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    top: 60px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    background-color: var(--white-color);
    border: 0;
    border-radius: 3px;
}

.main-header .nav-menu .nav-item.dropdown:hover .dropdown-menu li {
    margin-bottom: 10px;
}

.main-header .nav-menu .nav-item.dropdown:hover .dropdown-menu .dropdown-item:hover {
    color: var(--secondary-color);
    background-color: unset;
}
.dropdown-item{
    font-size: 14px;
}

/*--------------------------------------------------------------
# Form
--------------------------------------------------------------*/
.form-control {
    padding: 12px 16px;
}

.form-control:focus {
    outline: 0;
    box-shadow: unset;
    border-color: #d9d9d9;
}

.form-control::placeholder {
    color: #929191DD;
}

/*--------------------------------------------------------------
# Footer Css
--------------------------------------------------------------*/
footer {
    background: var(--bg-color);
    position: relative;
}

.footer-form-btn.primary-btn {
    width: 100%;
    background: var(--btn-color);
    border: 1px solid var(--btn-color);
}

.footer-form-btn.primary-btn:hover {
    background: var(--white-color);
    color: var(--btn-color);
}

.footer-logo {
    margin-bottom: 20px;
}


.wa-link a {
    color: green;
    font-size: 50px;
    right: 30px;
    position: fixed;
    bottom: 30px;
    z-index: 9999;
}

.footer-logo img {
    max-width: 115px;
    height: auto;
    object-fit: cover;
    margin: 0;
}

.footer-contact-box .footer-info-box {
    position: relative;
    padding-left: 30px;
    margin-bottom: 25px;
}

/* .footer-contact-box .footer-info-box:last-child {
    margin-bottom: 0;
} */
.footer-info-box .icon-box {
    position: absolute;
    top: 2px;
    left: 0;
}

.footer-links h3 {
    margin-bottom: 20px;
}

.footer-info-box .icon-box i {
    color: var(--primary-clr);
    font-size: 17px;
}

.footer-info-box p {
    font-weight: 500;
    font-size: 16px;
    color: var(--primary-color);
    margin: 0;
}

.footer-links ul {
    list-style: disc;
    margin: 0;
    padding: 0 0 0 20px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li:last-child {
    margin-bottom: 0;
}

.footer-links ul li a {
    font-weight: 500;
    font-size: 16px;
    color: var(--primary-color);
    margin: 0;
    transition: all 0.3s ease-in-out;
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
}

.footer-copyright {
    margin-top: 30px;
    padding: 30px 0 0;
    border-top: 1px solid var(--white-color);
}

.footer-copyright-text p {
    font-weight: 500;
    font-size: 14px;
    color: var(--primary-color);
    margin: 0;
}

.footer-social-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 20px;
}

.footer-social-links ul li {
    display: inline-block;
    margin-right: 10px;
}

.footer-social-links ul li:last-child {
    margin-right: 0;
}

.footer-social-links ul li a {
    background-color: var(--secondary-clr);
    color: var(--white-clr);
    height: 36px;
    width: 36px;
    border-radius: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.footer-social-links ul li a i {
    font-size: 18px;
}

.footer-social-links ul li a:hover {
    background: var(--light-green-clr);
    color: var(--white-clr);
}

.copyright-bx {
    display: flex;
    align-items: center;
    justify-content: center;
}

ul.social-icon {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 10px;
}

ul.social-icon li {
    margin: 0;
}

ul.social-icon li a {
    width: 34px;
    height: 34px;
    border: 1px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0;
    transition: 0.5s all ease-in-out;
}

ul.social-icon li a:hover {
    background: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

ul.social-icon li a i {
    font-size: 16px;
}

ul.social-icon li a:hover i {
    color: var(--white-color);
}

.footer-links h4 {
    margin-bottom: 25px;
}

/*--------------------------------------------------------------
# Banner css
--------------------------------------------------------------*/
.hero-banner {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}
section.hero-banner.bg-img.py-100:after {
    position: absolute;
    left: 0;
    right: 0;
    content: "";
    background: #000;
    opacity: 0.6;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.banner-content {
    margin-bottom: 30px;
    z-index: 1;
}
.subheading-banner {
    font-size: 32px;
    color: #fff;
    line-height: 44px;
    font-weight: 700;
}
.subheading-banner span{
    color: #fff;
}
.banner-content p {
    font-weight: 700;
    font-size: 68px;
    line-height: 80px;
    color: #f24c69;
}
p.subtute-head {
    font-size: 40px !important;
    line-height: 50px;
}

.banner-content p span {
    color: #fff;
}


.statatics-bx {
    background-color: #dbeaff;
    border-radius: 10px;
    padding: 30px 25px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: center;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
    position: relative;
    z-index: 10;
}
section.statatics-section {
    margin-top: -50px;
}
.statitics-item h3 {
    font-size: 28px;
    padding-bottom: 6px;
}
/*--------------------------------------------------------------
# About css
--------------------------------------------------------------*/
.about-us {
    position: relative;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-btn {
    margin-top: 30px;
}

.shape {
    position: absolute;
    bottom: 0;
    right: 0;
}

.shape img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/*--------------------------------------------------------------
# Our Specialist css
--------------------------------------------------------------*/
.our-specialist-content {
    display: flex;
    align-items: center;
    gap: 100px;
    justify-content: space-between;
    margin-bottom: 60px;
}

.our-specialist-bx {
    background: #fff;
    padding: 10px;
    border-radius: 15px;
    height: 100%;
    width: 100%;
}

.our-specialist-bx img {
    background: var(--bg-color);
    width: 100%;
     height: 300px; 
    /*height: auto;*/
    object-fit: contain;
    border-radius: 15px;
    padding: 35px 25px 0;
}

.our-specialist-bx-content {
    text-align: center;
    padding: 15px 5px;
}

.our-specialist-bx-content .dr-name {
    font-weight: 600;
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 6px;
}

.our-specialist-bx-content .dr-designation {
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
}

/*--------------------------------------------------------------
# Meet Our Team css
--------------------------------------------------------------*/
.meet-our-team {
    position: relative;
    padding-bottom: 320px;
}

.our-team-content h2 {
    margin-bottom: 45px;
}

.our-team-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 40px;
}

.shape-bx .shape-1,
.shape-bx .shape-2 {
    width: 290px;
    height: 417px;
    object-fit: contain;
    z-index: -1;
}

.shape-bx .shape-1 {
    position: absolute;
    bottom: 0;
    left: 0;
}

.shape-bx .shape-2 {
    position: absolute;
    bottom: 0;
    right: 0;
}

/*--------------------------------------------------------------
# Emergency Contact css
--------------------------------------------------------------*/
.emergency-contact-content {
    margin-bottom: 40px;
}

.emergency-contact-content h2 {
    margin-bottom: 20px;
}

.contact-info-box {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-info-box:last-child {
    margin-bottom: 0;
}

.contact-info-box .icon {
    width: 88px;
    height: 88px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #22477B;
    border-radius: 10px;
}

.contact-info-box .icon img {
    max-width: 50px;
    height: 50px;
    object-fit: contain;
}

.contact-detail .title {
    font-weight: 700;
    font-size: 22px;
    line-height: 45px;
    margin-bottom: 0px;
}

.contact-detail .desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
}

.dental-img {
    margin-top: -300px;
    position: relative;
}

.dental-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dental-phone-bx {
    background: var(--btn-color);
    padding: 22px;
    border-radius: 10px;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 15px;
    position: absolute;
    bottom: 100px;
    right: 0;
}

.small-icon {
    width: 67px;
    height: 64px;
    background: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.dental-phone-bx .small-icon img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(0%) sepia(3%) saturate(13%) hue-rotate(72deg) brightness(94%) contrast(103%);
}

.dental-emergency-bx .dental-emergency {
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    color: var(--white-color);
    margin-bottom: 5px;
}

.dental-emergency-bx .phone-no a {
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: var(--white-color);
    transition: 0.5s all ease-in-out;
}

.dental-emergency-bx .phone-no a:hover {
    color: var(--secondary-color);
}

/*--------------------------------------------------------------
# Our Specialized Facilities css
--------------------------------------------------------------*/
.facilities-content {
    margin-bottom: 40px;
}

.facilities-content h2 {
    margin-bottom: 20px;
}

.specialized-facilities-slide {
    border: 1px solid #D9D9D9;
    padding: 30px 45px 0;
    border-radius: 15px;
    height: 100%;
}

.speciality-inner-bx {
    padding: 25px;
    height: 100%;
}

.speciality-inner-bx:hover {
    background: var(--secondary-color);
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.speciality-inner-bx:hover img,
.speciality-inner-bx:hover h4,
.speciality-inner-bx:hover p {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(302deg) brightness(111%) contrast(102%);
    color: var(--white-color);
}

.speciality-inner-bx img {
    max-width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 25px;
    filter: brightness(0) saturate(100%) invert(0%) sepia(100%) saturate(13%) hue-rotate(336deg) brightness(101%) contrast(100%);
}

.speciality-inner-bx h4 {
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 15px;
}

.speciality-inner-bx p {
    font-weight: 400;
    font-size: 15px;
    line-height: 25px;
}

.specialized-facilities-slide.owl-carousel .owl-nav button {
    width: 46px;
    height: 46px;
    color: var(--white-color) !important;
    border-radius: 50%;
    background: var(--btn-color);
    border: 1px solid var(--btn-color);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.specialized-facilities-slide.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 50%;
    left: -60px;
}

.specialized-facilities-slide.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    right: -60px;
}

.specialized-facilities-slide.owl-carousel .owl-nav button i {
    font-size: 17px;
    color: var(--white-color);
}

.specialized-facilities-slide.owl-theme .owl-nav [class*='owl-']:hover {
    background: var(--white-color);
}

.specialized-facilities-slide.owl-carousel .owl-nav button:hover i {
    color: var(--btn-color);
}

.specialized-facilities-slide.owl-theme .owl-nav {
    margin: 0;
}

/*--------------------------------------------------------------
# Client Review css
--------------------------------------------------------------*/
.client-review-bx iframe,
.client-review-bx video {
    width: 100%;
    height: 500px;
}

.client-review-slide.owl-carousel .owl-nav button {
    width: 46px;
    height: 46px;
    color: var(--white-color) !important;
    border-radius: 50%;
    background: var(--btn-color);
    border: 1px solid var(--btn-color);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-review-slide.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 50%;
    left: -60px;
}

.client-review-slide.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    right: -60px;
}

.client-review-slide.owl-carousel .owl-nav button i {
    font-size: 17px;
    color: var(--white-color);
}

.client-review-slide.owl-theme .owl-nav [class*='owl-']:hover {
    background: var(--white-color);
}

.client-review-slide.owl-carousel .owl-nav button:hover i {
    color: var(--btn-color);
}

.client-review-slide.owl-theme .owl-nav {
    margin: 0;
}

.view-more {
    text-align: center;
    margin: 50px 0 0;
}

/*  */
.awards-slide .awrad-img img {
    max-width: 500px;
    margin: auto;
    width: 100%;
    height: 500px;
    object-fit: contain;
}

.awards-slide.owl-carousel .owl-nav button {
    width: 46px;
    height: 46px;
    color: var(--white-color) !important;
    border-radius: 50%;
    background: var(--btn-color);
    border: 1px solid var(--btn-color);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.awards-slide.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 50%;
    left: 50px;
}

.awards-slide.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    right: 50px;
}

.awards-slide.owl-carousel .owl-nav button i {
    font-size: 17px;
    color: var(--white-color);
}

.awards-slide.owl-theme .owl-nav [class*='owl-']:hover {
    background: var(--white-color);
}

.awards-slide.owl-carousel .owl-nav button:hover i {
    color: var(--btn-color);
}

.awards-slide.owl-theme .owl-nav {
    margin: 0;
}

/*  */
.faq-accordion .accordion-item {
    margin-bottom: 25px;
    border: 1px solid #c9c9c9;
    border-radius: 8px;
}

.faq-accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.faq-accordion .accordion-button {
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    background-color: unset;
    box-shadow: unset;
    color: var(--primary-color);
}

.faq-accordion .accordion-body {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #000;
    padding-top: 0;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='currentColor' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
    transition: all 0.5s;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='currentColor' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}

.accordion-button::after {
    transition: all 0.5s;
}



/***** Sumiran ********/
/* ******* About-us page style  ******* */
.about-banner {
    width: 100%;
    background-color: var(--bg-color);;
}
.about-banner .abouts-banner-box {
    text-align: center;
}
.about-banner .abouts-banner-box h1 {
    color: #000;
    margin-bottom: 10px;
}
.abouts-banner-box .breadcrumb {
    justify-content: center;
    margin-bottom: 0px;
}
.abouts-banner-box .breadcrumb-item+.breadcrumb-item {
    color: #000;
}
.abouts-banner-box .breadcrumb-item+.breadcrumb-item::before {
    color: #000;
}
.abouts-banner-box .breadcrumb-item a {
    color: #000;
}
.about-heading {
    text-align: center;
    margin-bottom: 40px;
}
.about-description p,
.about-description span {
    margin-bottom: 10px;
}
.about-description p:last-child,
.about-description span:last-child {
    margin-bottom: 0;
}
.about-img img {
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
}
section.our-vision {
    background: #d9d9d924;

}
.our-vision-card {
    background-color: #dbeaff;
    /* box-shadow: 0px 13px 24px -8px #0000000D; */
    height: 100%;
    /* border: 1px solid #c9c9c9; */
    border-radius: 10px;
    padding: 40px;
}
.our-vision-img {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fbfbf8;
    border-radius: 50%;
    height: 100px;
    width: 100px;
    margin: 0px auto 20px;
}
.our-vision-img img {
    object-fit: contain;
    width: 50px;
    height: 50px;
}
.our-vision-details {
    text-align: center;
}
.our-vision-details h4 {
    margin-bottom: 5px;
    font-size: 24px;
    padding-bottom: 15px;
}

/********* Archivement CSS **************/
.archivement-list {
    display: grid;
    grid-auto-rows: 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}
.heading-archive p, .elementor-heading p{
    font-family: "Kanit", sans-serif;
    font-size: 22px;
    font-weight: 300;
    line-height: 34px;
}
.archive-service-box {
    text-align: center;
    --shape-size: 92px;
    padding: 20px 20px 20px 20px;
    border-radius: 10px;
    border: 2px solid #3e409517;
    position: relative;
    background-color: var(--white-color);
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}
.archive-service-box:hover {
    border: 2px solid #3E4095;
    box-shadow: 0px 12px 47px 0px rgba(39, 71, 125, 0.07);
}
.archive-service-box .project-img {
    overflow: hidden;
}
.archive-service-box .project-img img {
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
    width: 100%;
    height: 270px;
    object-fit: contain;
}
.heading-archive {
    text-align: center;
}

/* ********** Our Doctor Page ************ */
.dr-team {
    background-color: #fff;
}
.team-image {
    border-radius: 10px;
    max-height: 550px;
    overflow: hidden;
}
.team-image img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.5s ease-in-out;
}
/* .dr-team:hover .team-image img {
    transform: scale(1.1);
} */
.team-content p {
    color: #00000080;
}
.team-member {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.team-body {
    padding: 20px 0;
}
.team-content {
    margin-bottom: 15px;
}
.team-content .dr-post {
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 7px;
    color: #3E4095;
}
.team-content .dr-name {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 28px;
}

/* Dr. Mehul Sukhadiya */
.team-member-img img {
    width: 100%;
    object-fit: cover;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    height: 650px;
    object-fit: cover;
}
.member-info {
    background-color: #dbeaff;
    height: 100%;
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}
.member-about-data ul li {
    color: #000;
    line-height: 32px;
}
.section-title .dr-degree {
    color: #ED3237;
}
.section-title .dr-name {
    color: #000;
}
.member-about-data p {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #000;
}
.dr-edu-info {
    margin-bottom: 30px;
    border-bottom: 1px solid #c9c9c9;
    padding-bottom: 30px;
}
.dr-edu-info:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}
.dr-edu-list li {
    font-size: 16px;
    line-height: 28px;
    list-style-type: disc;
}
.dr-edu-info .title {
    margin-bottom: 20px;
    color: #000;
}
.dr-edu-list {
    list-style: circle;
}
.dr-edu-list li::marker {
    color: #3E4095;
}

/******** IVF Tritment page ************/
.tvf-cost-abt ul li {
    list-style-type: initial;
}
section.ivf-cost-full-bg {
    background-color: #F7F6F0;
}
.full-desc-ivf {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.ivf-cost-tble-bx {
    padding-top: 50px;
}
.ivf-cost-tble-bx h2 {
    text-align: center;
    padding-bottom: 30px;
}
.ivf-cost-tble-bx table {
    background-color: #fff;
    max-width: 900px;
    margin: 0px auto;
}

/* / ***** infrastructure page start ******* / */
.elementor-heading {
    text-align: center;
    margin-bottom: 40px;
}
.elementor-img img {
    width: 100%;
    object-fit: cover;
    border-radius: 6px;
}
.ivf-lab {
    background-color: #F7F6F0;
}
.equioment-detail .title {
    margin-bottom: 15px;
}
.andrology-section {
    background-color: #F7F6F0;
}
.andrology-heading .title {
    margin-bottom: 10px;
}
.andrology-slide.owl-theme .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 30px !important;
}
.andrology-slide.owl-theme .owl-dots .owl-dot span {
    background: #3e40956b;
    width: 16px;
    height: 16px;
}
.andrology-slide.owl-theme .owl-dots .owl-dot.active span,
.andrology-slide.owl-theme .owl-dots .owl-dot:hover span {
    background: #3E4095;
    width: 18px;
    height: 18px;
}

/* / ****** nabh-Accreditation ******* / */
.nabh-section {
    background-color: #F7F6F0;
}
.nabh-inner-box {
    background-color: #fff;
    padding: 40px;
    border-radius: 6px;
    box-shadow: 0px 4px 24px 0px #0000000F;
}
.nabh-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}
.nabh-description {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.nabh-description p,
.nabh-description span {
    margin-bottom: 10px;
}
.nabh-description p:last-child,
.nabh-description span:last-child {
    margin-bottom: 0;
}

/* Testimonials page start */
.testimonial {
    background-color: #F7F6F0;
}
.testimonial-videp-service video{
    height: 450px;
}
.testimonial-box {
    background: #fff;
    border-radius: 6px;
    padding: 30px;
    text-align: center;
    border: 1px solid #c9c9c9;
    height: 100%;
}
.testimonial-icon {
    margin-bottom: 20px;
}
.testimonial-icon img {
    width: 35px;
    height: 35px;
    object-fit: cover;
}
.testimonial-description {
    margin-bottom: 10px;
}
.testimonial-description p {
    font-size: 16px;
    font-style: italic;
    color: #666666;
}
.testimonial-profile .title {
    margin-bottom: 0;
    font-size: 24px;
    font-style: italic;
}

/******* 404 Page *********/
.errorpage {
    text-align: center;
}
.errorpage h1 {
    color: #ed3237;
    font-size: 120px;
    line-height: 130px;
}
.errorpage h3 {
    color: #919191;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 20px;
}

/******* treatment Page *********/
.vitro-img img {
    border-radius: 6px;
    width: 100%;
    object-fit: cover;
    height: 400px;
}
.dr-speciality {
    color: #3e4095;
}
.ivf-specialist {
    background-color: #F7F6F0;
}
.vitro-heading{
    margin-bottom: 15px;
}
.vitro-heading .dr-name{
    margin-bottom: 10px;
}
.vitro-description ul {
    list-style: disc;
    margin-bottom: 0;
    padding-left: 20px;
}
.vitro-description ul li {
    margin-bottom: 10px;
}
.vitro-description ul li:last-child {
    margin-bottom: 0;
}
.patient-testimonial {
    background-color: #F7F6F0;
}
.downloaded-video video {
    border-radius: 10px;
    width: 100%;
    /* object-fit: cover; */
    height: 100%;
}
.downloaded-video {
    height: 600px;
    object-fit: cover;
}
.video-review-box {
    background-color: #fff;
}
.ivf-cta {
    background-color: #242432;
    padding: 60px 0px;
    text-align: center;
}
.ivf-cta-desc {
    display: flex;
    flex-direction: column;
    gap: 25px;
    color: #fff;
}
.ivf-cta-desc p {
    color: #fff;
}
.why-chhose {
    background-color: #d9d9d924;
}
ul.two-column-li {
    column-count: 2;
    column-gap: 20px;
}
/******* Video Page *********/
section.video-review {
    background: #d9d9d924;
}
.client-say-description h2{
    margin-bottom: 30px;
    text-align: center;
}
.client-say-description p, .client-say-description span {
    text-align: center;
    margin-bottom: 10px;
}
.client-say-description p:last-child, .client-say-description span:last-child {
    margin-bottom: 0;
}
.client-video-box {
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0px 4px 24px 0px #0000000F;
    height: 100%;
}
.client-video-box .downloaded-video video{
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}
.video-review-description {
    text-align: center;
    padding: 20px 10px;
}
.video-review-description h3 {
    padding-bottom: 5px;
    font-size: 23px;
}
.video-review-description h4 {
    padding-bottom: 5px;
}
.video-review-description p{
    color: #ED3237;
    font-size: 16px;
}

/******* Contact-us Page *********/
.contact-us {
    background-color: #F7F6F0;
}
.contact-us .ivf-form{
    margin-top: 0;
}
.location iframe{
    border-radius: 6px;
    height: 500px;
}
.contact-address-box {
    background-color: #fff;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0px 4px 24px 0px #0000000F;
    height: 100%;
    text-align: center;
}
.contact-address-box .icon {
    width: 70px;
    height: 70px;
    margin: auto auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #3E4095;
    border-radius: 50%;
}
.contact-address-box .icon img {
    max-width: 35px;
    height: 35px;
    object-fit: cover;
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(305deg) brightness(103%) contrast(103%);
}
.contact-address-box h3{
    padding-bottom: 15px;
    text-align: center;
}
.contact-address-box span i {
    padding-right: 10px;
    font-size: 22px;
    color: #3E4095;
}
.contact-address-box .contact-link {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 300;
}
.contact-address-box .contact-link:last-child{
    margin-bottom: 0;
}
.contact-address-box .contact-link:hover{
    color: #3E4095;
}
.contact-address-box .contact-link a:hover{
    color: #3E4095;
}

/*********** book Modal ***********/
.book-modal .modal-dialog {
    max-width: 650px;
}
.book-modal .modal-body {
    padding: 30px;
}
.input-box.book-appoinment-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

/*********** faq ***********/
.faq{
    background-color: #F7F6F0;
}
.faq-accordion .accordion-body ul {
    list-style: circle;
    padding-left: 20px;
}
.faq-accordion .accordion-body .title{
    padding-bottom: 15px;
    color: #ed3237;
}
.faq-accordion .accordion-body ul li{
    padding-bottom: 10px;
}
.faq-accordion .accordion-body ul li::marker{
    color: #000;
}

/*********** patient-information page ***********/
.patient-responsibilities{
    background-color: unset;
}
.glossary-term {
    border: 1px solid #c9c9c9;
    padding: 20px;
    border-radius: 6px;
}
.glossary-term ul{
    list-style: disc;
    padding-left: 20px;
}
.glossary-term ul li{
    padding-bottom: 10px;
}
.glossary-term ul li:last-child{
    padding-bottom: 0;
}
.glossary-term ul li::marker{
    color: #ed3237;
}

/****** Thank you *********/
.thankyou-desc {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ivf-form {
    position: relative;
    z-index: 1;
}
.ivf-form form {
    background: #fff;
    padding: 40px;
    box-shadow: 0px 4px 64px -19px #00000040;
    position: relative;
    z-index: 1;
}
.ivf-form::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    height: 80%;
    width: 80%;
    z-index: -1;
    background: #dbeaff;
    border-radius: 20px;
}
.ivf-form .form-control {
    background-color: #F8F6EF;
}
form .input-box {
    margin-bottom: 15px;
}