
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
:root {
    --primary-color: #1DBFCC;
    --secondary-color: #1dc0cca3;
    --optionalColor:#FA6D0E;
    --font-size-base: 16px;
    --spacing: 1rem;
  --animate-delay: 1s;
  }
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", serif;
}
h1{
    opacity: 75%;
}
a{
    text-decoration: none;
    color: black;
}
.ptb-120 {
    padding-top: 120px;
    padding-bottom: 120px;
}
small{
    font-size: 12px;
}
.small{
    font-size: 14px;
}
.semi-primary-color{
    background:#0dcaf084;
    
}
.optionalColor{
    background: var(--optionalColor);
    color: #ffffff !important;
}
.big-circle{
    width: 80px;
    height: 80px;
    border-radius: 50%;
}
.sub {
    display: inline-flex;
    padding: 7px 20px;
    justify-content: center;
    align-items: center;
    background-color:var(--optionalColor);
    font-size: 15px;
    color: white;
    border-radius: 50px;
    margin-bottom: 15px;
}
.arrow-btn {
    position: absolute;
    right: 20px;
    top: 20px;
}
.round {
    border-radius: 30px;
    overflow: hidden;
    height: auto;
}
.card-img-overlay {
    background: rgba(0, 0, 0, 0.214);
    overflow: hidden;
    
}
.default-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    background-color: var(--primary-color);
    color:black;
    border-radius: 50px;
    padding: 15px 30px;
    position: relative;
    margin-right: 50px;
    transition: 0.6s;
}
.default-btn .btn-left-i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    height: 52px;
    width: 52px;
    line-height: 58px;
    text-align: center;
    border-radius: 50px;
    background-color: var(--primary-color);
    color: var(--optionalColor);
    transition: 0.6s;
    font-size: 22px;
    opacity: 0;
}
.default-btn .btn-right-i {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    height: 52px;
    width: 52px;
    line-height: 58px;
    text-align: center;
    border-radius: 50px;
    background-color: var(--primary-color);
    color: black;
    transition: 0.6s;
    font-size: 22px;
    opacity: 1;
}
.form-label{
    font-weight: bold;
}

.page-banner-inner {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 242px;
    padding: 100px 50px 50px 50px;
    position: relative;
    z-index: 1;
    border-radius: 15px;
    max-width: 1035px;
}


.page-banner-inner .wrap-shape {
    position: absolute;
    top: -12px;
    right: -205px;
    z-index: -1;
}
.about-image {
    position: relative;
    padding: 100px 245px 70px 45px;
}
.about-image img {
    border-radius: 30px !important;
}
.about-image .video-wrap {
    background-color: #ffffff;
    box-shadow: 0px 0px 60px 0px rgba(32, 38, 91, 0.1);
    border-radius: 30px;
    padding: 20px;
    position: absolute;
    right: 55px;
    top: 0;
}
.about-image .shape1 {
    position: absolute;
    top: 25px;
    left: 0;
    z-index: -1;
}
.about-image .shape2 {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}
.about-image .shape3 {
    position: absolute;
    right: 65px;
    top: 240px;
    z-index: -1;
}
.quote-box {
    font-family: Arial, sans-serif;
    background-color: #ded6d6;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .quote {
    font-size: 1rem;
    font-style: italic;
    color: #333;
    margin-bottom: 1rem;
  }

  .author {
    font-size: 1rem;
    font-weight: bold;
    color: #555;
  }

  .carousel-item {
    text-align: center;
    padding: 2rem;
  }
  .carousel-indicators button {
    background: #3206f6;
  }
.find-location-search-form .form-group .form-control {
    display: inline-block;
    border-radius: 50px;
    background-color: #F5F5F3;
    border: 1px solid #F5F5F3;
    width: 100%;
    height: 55px;
    box-shadow: unset;
    color: #6B6F90;
    transition: 0.6s;
    padding: 15px 20px;
    font-size: 14px;
}
.card-title{
    transition: color 0.6s ease-in-out;
}

.zoomOut{
    transition: transform 0.6s ease-in-out;
}
.card:hover.zoomOut,.zoomOut:hover {
    transform: scale(1.2);
  }
.zoomIn{
    transition: transform 0.6s ease-in-out;
}
.card:hover.zoomIn,.zoomIn:hover {
    transform: scale(0.95);
  }
.swing{
    transition: transform 0.6s ease-in-out;
}

.card:hover .swing,.swing:hover{
    animation-name:swing;
    animation-duration: 1s;
    animation-delay: 0.1s;
}
.bounce{
    transition: transform 0.6s ease-in-out;
}
.card:hover .bounce,.bounce:hover{
    animation-name:bounce;
    animation-duration: 1s;
    animation-delay: 0.1s;
}
.shakeY{
    transition: transform 0.6s ease-in-out;
}
.card:hover .shakeY,.shakeY:hover{
    animation-name:shakeY;
    animation-duration: 1s;
    animation-delay: 0.2s;
}
.zoomX{
    transition: transform 0.6s ease-in-out;
}
.card:hover .zoomX,.zoomX:hover{
    transform: scaleX(1.2);
    animation-duration: 1s;
    animation-delay: 0.2s;
}
.zoomY{
    transition: transform 0.6s ease-in-out;
}
.card:hover .zoomY,.zoomY:hover{
    transform: scaleY(1.2);
    animation-duration: 1s;
    animation-delay: 0.2s;
}
.ani-zoomIn{
    transition: transform 0.6s ease-in-out;
}
.card:hover .ani-zoomIn,.ani-zoomIn:hover{
    animation-name:zoomIn;
    animation-duration: 1s;
    animation-delay: 0.2s;
}
.height {
    height: 87%;
    transition: height 0.6s ease-in-out;
  }
  
.height:hover {
    height: 100%;
    animation-duration: 1s;
    animation-delay: 0.2s;
  }
.color-change{
    background: #E9ECEF;
    transition: background 0.6s ease-in-out;
}
.card:hover .color-change {
    background:var(--optionalColor);
}
.B-W{
    color: black;
    transition: color 0.6s ease-in-out;
}
.B-W:hover {
    color:white;
}
.custom-text {
    font-size: 12px;
  }
  .head-text {
    font-size: 29px;
  }
  @media (min-width: 576px) {
    .custom-text {
      font-size: 16px;
    }
    .head-text {
        font-size: 32px;
      }
  }

  @media (min-width: 992px) {
    .custom-text {
      font-size: 18px;
    }
    .head-text {
        font-size: 64px;
      }
  }

.dc-page-banner-inner {
    background-color: #F5F5F3;
    border-radius: 0px 0px 30px 30px;
    position: relative;
    z-index: 1;
}
.page-banner-shape1 {
    position: absolute;
    top: 100px;
    left: 250px;
    max-width: 45px;
    z-index: -1;
}
.page-banner-shape2 {
    position: absolute;
    top: 50px;
    right: 250px;
    z-index: -1;
}
/* .swiper {
    width: 90%;
    max-width: 1200px;

    margin: 50px auto;
  } */
  .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
  }

  .home-slider-component{
    width: 100%;
    max-height: 720px;
  }

  .white-background{
    background: #E9ECEF;
    transition: background 0.6s ease-in-out;
  }

  .hero-card-right{
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .text-white{
    color: white;
  }

  .default-btn{
    color: white;
  }

  .btn-outline-primary{
    border: 2px solid var(--primary-color);
    background-color: #ffffff;
    color: black;
  }

  .btn-outline-primary:hover{
    border:2px solid var(--optionalColor);
  }
  .block-paragraph>ul {
    list-style: none !important;
    padding-left: .5rem;
}

.block-paragraph>ul>li {
    position: relative;
    padding-left: 25px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 2 !important;
}

.block-paragraph>ul>li::before {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 16px;
    position: absolute;
    left: 0;
    top: 3px;
}

.service-detail-title-container{
    padding: 120px 0;
}

.service-detail-image{
    object-fit: cover;
    width: 50%;
    height: 100%;
    position: absolute;
    inset: 0% 0% 0% auto;
    border-radius: 0 0 30px 0
}

.service-details-description{
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    max-width: 400px;
    display: flex;
}

.paragraph-large{
    font-size: 18px;
    color: #777272;
    text-align: justify;
}

.richtext-image{
    border-radius: 20px;
}
.accordion-item {
    border: none;
    margin-bottom: 20px;
}
.accordion-button{
    background-color: var(--optionalColor);
    border-radius: 30px !important;
    font-size: large;
    color: white;
}
.accordion-button::after{
    background-image: '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="none" stroke="#212529" stroke-linecap="round" stroke-linejoin="round" style="&#10;    stroke: white;&#10;"><path d="M2 5L8 11L14 5"/></svg>';
}

.service-description-container{
    grid-column-gap: 50px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr .9fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    align-items: flex-start;
    display: grid;
    position: relative;
}
.description-form-container{
    border-radius: 20px;
    padding: 30px;
    position: sticky;
    top: 100px;
    overflow: clip;
}

.error-message{
    color: red;
    font-size: 12px;
}
.doctor-detail-wrp{
    position: relative;
}

.doctor-profile-description-container .top-info-section{
    color: white;
    background-color: var(--primary-color);
    padding: 40px;
    border-radius: 30px;
    margin-bottom: 25px;
}

.doctor-profile-description-container .top-info-section .title-section{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
}

.doctor-profile-description-container .top-info-section p{
    /* font-size: 14px; */
    margin-bottom: 0;
}

.profile-detail-description-section{
    padding: 40px;
    border-radius: 30px;
    margin-bottom: 25px;
}

.doctor-profile-image{
    position: sticky;
    top: 100px;
}

.doctor-profile-image img{
    width: 100%;
    height: auto;
}

.badge-secondary{
    background-color: var(--optionalColor);
    color: white;
    font-weight: 500;
}

.hospital-image-contaner>picture>img{
    width: 100%;
    object-fit: cover;
}

.text-justify{
    text-align: justify;
}

.card .nav-link{
    color: #053882;
}
.professional-tab>.nav-item>.nav-link{
    color: #595959;
}

.professional-tab>.nav-item>.nav-link:hover{
    color: var(--optionalColor);
}

.professional-tab.nav-pills .nav-link.active, .nav-pills .show>.nav-link{
    color: var(--bs-nav-pills-link-active-color);
    background-color: var(--bs-nav-pills-link-active-bg);
}

.professional-tab.nav-pills .nav-link.active, .nav-pills .show>.nav-link:hover{
    background-color: var(--optionalColor);
}

.slider-component {
    height: 100vh;
    background-size: cover !important;
    background-repeat: no-repeat;
}

p{
    text-align: justify !important;
}

.p-reset{
    text-align: unset !important;
}

.doctor-list{
    margin-top: 40px;
}

.slider-text-wrp>p{
    text-align: center !important;
}

.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    min-width: 250px;
}

.navbar{
    background-color: white;
}

.doctor-img{
    height: 300px;
}
.service_listing_container>p{
    display: -webkit-box;
    -webkit-line-clamp: 7;
    line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: calc(1.2em * 10);
}

.card-link{
    color: #0d6efd;
}

.hidden{
    display: none;
}

/* .default-btn{
    border: none;
} */

.toast-success {
    background-color: #27ac60;
    color: #FFF;
    width: fit-content;
    padding: 10px 20px;
}

.toast-error {
    background-color: var(--primary-color);
    color: #FFF;
    width: fit-content;
    padding: 10px 20px;
}

/*---------footer---------*/
footer {
    background-color: #222023;
    background-image: -webkit-linear-gradient( top, #222023, #1e2c47 );
    background-image: -moz-linear-gradient( top, #222023, #1e2c47 );
    background-image: -o-linear-gradient( top, #222023, #1e2c47 );
    background-image: linear-gradient( to bottom, #222023, #1e2c47 );
    color: #fff;
    padding:50px 0 10px 0;
}
footer h3 {
    letter-spacing: 1px;
}
footer h4 {
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 2px;
}
.about-footer li i {
    position: absolute;
    left: 0;
}
.about-footer li {
    padding-left: 40px;
    position: relative;
    margin-bottom: 40px;
}

.about-footer ul {
    margin-top: 40px;
}

footer a {
    color: #fff;
}

footer a:hover {
    color: var(--optionalColor);
}
.footer-title {
    border-bottom: 2px solid var(--optionalColor);
    padding-bottom: 25px;
    margin-bottom: 35px;
}

ul.footer-social li {
    display: inline;
    margin-right: 16px;
}

ul.footer-social i {
    width: 30px;
    height: 30px;
    background: #fff;
    color: #222025;
    text-align: center;
    line-height: 30px;
    border-radius: 30px;
    font-size: 16px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    font-weight: 800;
}

ul.footer-social li:last-child {
    margin-right: 0px;
}

ul.footer-social i:hover {
    background: var(--optionalColor);
    color: #fff;
}

.page-more-info li {
    margin-bottom: 20px;
}

footer .table td:first-child {
    font-weight: 600;
    padding-left: 33px;
}

footer .table td:last-child {text-align: right;}
footer .table td {
    padding: 0px;
    border: 0;
}

footer .table tr {
}

footer .table td i {
    position: absolute;
    left: 0px;
    top: 6px;
}

footer .table td {
    position: relative;
    padding: 4px 0;
}
.footer-logo td {
    padding-right: 4px !important;
}

.footer-logo td:last-child {
    padding-right: 0px !important;
}
footer hr {
    border-color: #9294a0;
}

.footer-bottom p {
    text-align: right;
}
.footer-bottom {
    margin-top: 30px;
}
.open-hours hr {
    margin: 30px 0;
}

footer table{
    --bs-table-bg: transparent !important;
}

footer table tr td{
    color: white !important;
}

footer li {
    list-style: none;
}

.page-more-info ul{
    padding-left: 1rem;
}
.navbar-brand img{
	width: auto;
	height: 50px;
}
