

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Raleway", sans-serif;
  font-style: normal;
}

:root {
  --primary-color: #ff0109;
  --secondary-color:#010779;
  --black-color: #000000;
  --color-grey: #2e2e2e;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--color-grey);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

hr {
  margin: 0;
  opacity: 1;
  background-color: #ddd;
}

a,
a:hover {
  text-decoration: none;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  margin: 0;
  padding: 0;
  letter-spacing: 0px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-grey);
  font-weight: 500;
  margin-bottom: 10px
}
section{
  padding: 80px 0;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.section-heading{
  text-align: center;
  margin-bottom: 40px;
}
.section-heading .title{
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: capitalize;
}
.section-heading .heading{
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-grey);
  margin-bottom:5px;
}
.btn-theme{
  background-color: var(--primary-color);
  color: #fff;
  border: 2px solid var(--primary-color);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  border-radius: 100px;
  padding: 10px 30px;
   font-family: "Poppins", sans-serif;
   display: inline-flex;
   align-items: center;
   gap: 10px;
   justify-content: center;
}
.btn-theme i{
  font-size: 20px;
}
.btn-theme:hover{
  background-color: transparent;
  color:var(--primary-color);
}
.header-main{
  position: relative;
  width: 100%;
  box-shadow: 0px 6px 11px 0px #0000000D;
  background-color: #fff;
  z-index: 999;
}
.fixed-header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.mobile-header{
  display: none;
}
.header-main .top-header{
    background-color: var(--primary-color);
    padding: 8px 0;
}
.header-main .top-header .social-link,
.header-main .top-header .info-header{
  height: 100%;
}
.header-main .top-header .info-header ul{
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
  height: 100%;
}
.header-main .top-header .info-header ul li{
  display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
}
.header-main .top-header .info-header ul li i{
  color: #fff;
  font-size: 20px;
}
.header-main .top-header .info-header ul li a{
  color: #fff;
  font-size: 14px;
  font-weight: 400;
   font-family: "Poppins", sans-serif;
}
.header-main .top-header .social-link ul{
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 10px;
  height: 100%;
}
.header-main .top-header .social-link ul li a{
 width: 30px;
    height: 30px;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-grey);
    background-color: #fff;
    font-size: 20px;
}
.header-main .logo-box{
  display: flex;
  align-items: center;
  height: 100%;
}
.header-main .logo-box a{
  display: block;
}
.header-main .logo-box img{
  width: 100%;
  max-width: 250px;
  object-fit: contain;
}
.header-main .nav-outer{
       display: flex;
    justify-content: end;
    align-items: center;
    height: 100%;
    gap: 15px;
}
.header-main .nav-outer .main-menu{
  margin: auto;
}
.header-main .nav-outer .main-menu ul{
  flex-direction: row;
  gap: 20px;
}
.header-main .nav-outer ul li a{
    display: block;
    padding: 25px 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    color: #616161;
}
.header-main .button-header .btn-theme{
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  border-radius: 10px;
}
.header-main .button-header .btn-theme:hover{
  background-color: transparent;
  color: var(--secondary-color);
}
.header-main .nav-outer ul li.menu-item-has-children{
  position: relative;
}
.header-main .nav-outer ul li.menu-item-has-children>a{
  padding-right: 30px;
  position: relative;
}
.header-main .nav-outer ul li.menu-item-has-children>a::after{
    content: "\ea4a";
    font-family: "boxicons";
    color: var(--color-grey);
    position: absolute;
    right: 0;
    font-size: 26px;
    line-height: 1;
    font-weight: 400;
}
.header-main .nav-outer ul li.menu-item-has-children .sub-menu{
      position: absolute;
    background-color: #fff;
    border: 5px;
    z-index: 999;
    width: 100%;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
}
.header-main .nav-outer ul li.menu-item-has-children:hover .sub-menu{
  opacity: 1;
  visibility: visible;
}
.header-main .nav-outer ul li.menu-item-has-children .sub-menu li a{
    padding: 10px;
    display: block;
    color: #333;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    border-bottom: 1px solid #ddd;
}
.header-main .nav-outer ul li.menu-item-has-children .sub-menu li a:hover{
  background-color: var(--primary-color);
  color: #fff;
}
.home-banner .banner-content .title{
  border-radius: 50px;
  padding: 8px 20px;
  background-color: var(--primary-color);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0px 4px 4px 0px #00000040;

}
.home-banner .banner-content .doctor-box{
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
  padding: 30px 0;
}
.home-banner .banner-content .doctor-box .image img{
  width: 100px;
  height: 100px;
  border-radius: 100px;
  object-fit: cover;
  object-position: top;
}
.home-banner .banner-content .doctor-box .content{
  width: calc(100% - 120px);
}
.home-banner .banner-content .doctor-box .content h1{
  color:var(--color-grey);
  font-size: 40px;
  line-height: 1.5;
  font-weight: 700;
}
.home-banner .banner-content .doctor-box .content span{
  color: var(--color-grey);
  font-size: 16px;
  font-weight: 700;
}
.home-banner .banner-content .btn-group{
  gap: 15px;
  margin-top: 20px;
}
.service-section .service-card{
  border-radius: 10px;
  background:#fff;
  padding: 10px;
  height: 100%;
  box-shadow:0 0 16px 4px #00000021;
}
.service-section .service-card .image{
  width: 100%;
  height:200px;
  border-radius: 10px;
  overflow: hidden;
}
.service-section .service-card .image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-section .service-card .content{
  text-align: center;
  padding: 15px 0;
}
.service-section .service-card .content h4{
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
  color: var(--primary-color);
}
.service-section .service-card .content p{
  margin: 0;
}
.condition{
  background-color:#FFF7F3;
}
.condition .condition-card{
  box-shadow: 1px 4px 4px 0px #1D3557;
  border: 1px solid #FFFFFF;
  background: #1D3557;
  text-align: center;
  padding: 50px 20px 15px;
  border-radius: 10px;
  height: 100%;
  position: relative;
}
.condition .condition-card .icon{
    border: 2px solid #1D3557;
    box-shadow: 0px 4.01px 4.01px 0px #00000040;
    background: #FFFFFF;
    width: 70px;
    height: 70px;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    position: absolute;
    top: -30px;
    margin: auto;
    left: 0;
    right: 0;
}
.condition .condition-card .icon img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.condition .condition-card .content h4{
  color: #fff;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 10px;
}
.condition .condition-card .content p{
  color: #fff;
  margin: 0;
}
.doctor-profile .outerbox{
    border: 1px dashed #333333;
    background-color: #fff;
    border-radius: 15px;
    padding: 15px;
}
.doctor-profile .outerbox .box-inner{
  background: linear-gradient(90deg, rgba(0, 7, 42, 0.85) 0%, rgba(7, 39, 72, 0.752212) 81.25%, rgba(12, 66, 98, 0.67) 100%);
  border-radius: 15px;
  position: relative;
}
.doctor-profile .section-heading{
      padding: 50px 0 50px 50px;
      margin: 0;
}
.doctor-profile .section-heading .title{
  border-radius: 50px;
    padding: 8px 20px;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0px 4px 4px 0px #00000040;
    margin-bottom: 15px;
    display: inline-block;
}
.doctor-profile .section-heading .heading{
  color: #fff;
}
.doctor-profile .section-heading p{
  color: #fff;
}
.doctor-profile .image{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    max-width: 450px;
}
.doctor-profile .image img{
  width: 380px;
    height: 100%;
}
.why-choose{
  padding:0;
}
.why-choose .card-whychoose{
  border: 1px solid #DDDDDD;
  border-radius: 10px;
  padding:30px;
  height: 100%;
}
.why-choose .card-whychoose .icon img{
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin: 0 auto 15px;
  display: block;
}
.why-choose .card-whychoose .content{
    text-align: center;
}
.why-choose .card-whychoose .content h4{
  color: var(--color-grey);
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 10px;
}
.why-choose .card-whychoose .content p{
  margin: 0;
}
.experience-tab .tabing-box ul{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  border: 0;
}
.experience-tab .tabing-box ul li .nav-link{
  border: 1px solid var(--primary-color);
  background-color: var(--secondary-color);
  padding: 8px 40px;
  color: #fff;
  font-weight: 600;
  line-height: 1.5;
  border-radius: 100px;
}
.experience-tab .tabing-box ul li .nav-link.active,
.experience-tab .tabing-box ul li .nav-link:hover{
  background-color: var(--primary-color);
}
.experience-tab .tab-content{
  margin-top: 40px;
  background: #FFF7F3;
  border-radius: 10px;
}
.experience-tab .tab-content .tab-pane{
  padding: 35px;
}
.experience-tab .tab-content .image{
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.experience-tab .tab-content .image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.experience-tab .tab-content .section-heading{
  text-align: start;
  margin-bottom: 0;
}
.experience-tab .tab-content .section-heading h4{
  color: var(--color-grey);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 15px;
}
.experience-tab .tab-content .section-heading ul li{
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
  color: var(--color-grey);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}
.experience-tab .tab-content .section-heading ul li::before{
  content: "\ea46";
  font-family: 'boxicons'!important;
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-size: 20px;
  line-height: 1.5;
}

.contact-area::before {
  content: "";
  background-image: url(../images/contact-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 400px;
  position: absolute;
  top: 0;
}

.contact-area .container {
  position: relative;
}
.contact-area .contact-info{
  background: #fff;
    border-radius: 100px;
    padding: 10px 20px;
    display: block;
    margin: auto;
}
.contact-area .contact-info ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

.contact-area .contact-info ul li {
  color: var(--primary-color);
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 5px;
}

.contact-area .contact-info ul li a {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
   font-family: "Poppins", sans-serif;
}

.contact-area .contact-info ul li i {
  color: var(--primary-color);
  font-size: 22px;
  margin-right: 8px;
  font-weight: 400;
}

.contact-area .contact-box {
  box-shadow: 0px 8px 24px 0px #959DA533;
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  max-width: 400px;
  margin-left: auto;
  height: 100%;
  border: 2px solid #fff;
}

.contact-area .contact-box .heading {
  background-color: var(--secondary-color);
  padding: 26px 40px;
  text-align: center;
}

.contact-area .contact-box .heading h4 {
  color: #fff;
  font-size: 26px;
  line-height: 1.5;
  font-weight: 600;
}

.contact-area .contact-box .heading p {
  margin: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

.contact-area .contact-box form {
  padding: 20px 30px 30px;
}

.contact-area .contact-box .form-label {
  color: #000;
  font-size: 15px;
  line-height: 1.5;
  font-weight:600;
}
.contact-area .contact-box p{
  margin-bottom: 0;
  position: relative;
}
.contact-area .contact-box p .wpcf7-spinner{
      position: absolute;
    right: 0;
    top: 30px;
}
.contact-area .contact-box .input-group {
  position: relative;
}

.contact-area .contact-box .input-group-text {
  border: 0;
  position: absolute;
  left: 0;
  z-index: 1;
  background: transparent;
  height: 45px;
  font-size: 20px;
  color: #1B2336;
}

.contact-area .contact-box .form-control {
  height: 45px;
  border: 1px solid #DDDDDD;
  background: #F8FAFB;
  border-radius: 5px !important;
  padding-left: 50px;
}
.contact-area .contact-box .form-control::placeholder{
  font-weight:500;
}
.contact-area .contact-box .button-form {
  border-radius: 100px;
  padding: 12px 30px;
  background-color: var(--primary-color);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  width: 100%;
  margin-top: 15px;
  border: 2px solid var(--primary-color);
  transition: all 0.3s ease-in;
}

.contact-area .contact-box .button-form:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.contact-area .contact-outer {
  border: 6px solid #FFFFFF;
  box-shadow: 0px 8px 24px 0px #959DA533;
  background-color:#FAFAFA;
  border-radius: 15px;
  height: 100%;
  padding: 0;
}

.contact-area .contact-outer .map {
  width: 100%;
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
}

.contact-area .contact-outer .map iframe {
  width: 100%;
  height: 100%;
}

.contact-area .contact-outer .time-box{
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 15px;
  padding:40px 20px;
}
.contact-area .contact-outer .time-box .section-heading{
  width: 40%;
  text-align: start;
  margin: 0;
}
.contact-area .contact-outer .time-box .section-heading .heading{
  font-size: 24px;
  margin: 0;
}
.contact-area .contact-outer .time-box .timing-card{
    border-radius: 10px;
    overflow: hidden;
    width: 60%;
}
.contact-area .contact-outer .time-box .timing-card ul li{
      display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    gap: 10px;
    background: #DDDDDD;
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
}
.contact-area .contact-outer .time-box .timing-card ul li:last-child{
  margin: 0;
}
.testimonial{
  background-image: url(../images/google-review.jpg);
}
.testimonial .section-heading .title,
.testimonial .section-heading .heading{
  color: #fff;
}
.testimonial .google-rating{
  background-color: #fff;
  border-radius: 5px;
  margin-top: 15px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 5px 10px;
  gap: 12px;
}
.testimonial .google-rating img{
  max-width: 120px;
}
.testimonial .google-rating span{
  color: var(--color-grey);
  font-weight: 600;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
}
.testimonial .textimonial-card{
  background-color: #fff;
  padding: 30px;
}
.testimonial .textimonial-card ul{
  display: flex;
  justify-content: start;
  align-items: center;
  gap:5px;
  margin-bottom: 10px;
}
.testimonial .textimonial-card ul li i{
  color:#FBB204;
  font-size: 18px;
  line-height:1;
}
.testimonial .textimonial-card h4{
  font-size: 20px;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 10px;
}
.testimonial .textimonial-card .morecontent span{
  display: none;
}
.testimonial .textimonial-card p{
  margin: 0;
}
.testimonial .textimonial-card p a{
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  color: var(--primary-color);
}
.testimonial .btn-theme{
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.testimonial .btn-theme:hover{
  background-color: #fff;
  color: var(--secondary-color);
}
.video-section .card-video{
  box-shadow: 0px 8px 24px 0px #959DA533;
  border-radius: 10px;
  padding: 10px;
  position: relative;
}
.video-section .items{
  padding: 10px 0;
}
.video-section .card-video .video-img{
    width: 100%;
    height: 200px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
.video-section .card-video .video-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-section .card-video .video-img a{
     position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #00000099;
    font-size: 70px;
    color: #fff;
    font-weight: 400;
}
.video-section .card-video .video-content{
  padding: 15px 0;
}
.video-section .card-video .video-content h4{
    color: var(--color-grey);
  font-weight: 600;
  line-height: 1.5;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
}
.video-section .card-video .video-content p{
  margin: 0;
}
.image-gallery .card-image{
  width: 100%;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;

}
.image-gallery .card-image a{
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: #00000099;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
}
.image-gallery .card-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-gallery .card-image a i{
  color: #fff;
  font-size: 40px;
}
.image-gallery .card-image:hover a{
  opacity: 1;
}
.faq-section .accordion {
  background-color: #fff;
}

.faq-section .accordion .accordion-item {
  border: 0;
  border: 1px solid #ddd;
  margin-bottom: 10px;
}

.faq-section .accordion .accordion-item .accordion-button {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-black)
}

.faq-section .accordion .accordion-item .accordion-button:not(.collapsed) {
  color: var(--primary-color) !important;
  background: 0;
  border-top: 2px solid var(--primary-color);
  box-shadow: none;
  outline: none;
  font-weight: 700;
}
.faq-section .accordion-button:focus{
  box-shadow: none;
}
.faq-section .accordion-button:not(.collapsed)::after {
  filter: brightness(0) saturate(100%) invert(31%) sepia(26%) saturate(3029%) hue-rotate(297deg) brightness(95%) contrast(93%)
}

.faq-section .accordion-body {
  padding-right: 40px;
  line-height: 1.8;
  color: #555;
  font-size: 16px
}

.faq-section .accordion-body ul li {
  position: relative;
  padding-left: 20px
}

.faq-section .accordion-body ul li::before {
  content: "\ea2f";
  position: absolute;
  left: 0;
  top: 1px;
  bottom: 0;
  margin: auto;
  font-family: boxicons !important;
  font-weight: 600;
  font-size: 14px;
  height: 100%;
  color: var(--secoundary-color)
}

.blogs .blog-card{
  box-shadow: 0px 0px 25px -4px #00000014;
  background: #FFFFFF;
  border-bottom: 4px solid var(--primary-color);
  border-radius: 10px;
  position: relative;
  padding: 10px 10px 45px;
}
.blogs .blog-card .image{
  width: 100%;
  height:180px;
  border-radius: 10px;
  overflow: hidden;
}
.blogs .blog-card .image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blogs .blog-card .conent-blog{
  padding: 15px 0 0;
}
.blogs .blog-card .conent-blog h4{
  color: var(--color-grey);
  font-weight: 600;
  line-height: 1.5;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
}
.blogs .blog-card .conent-blog h4 a{
  color: var(--color-grey);
}
.blogs .blog-card .btn-theme{
  position: absolute;
  bottom: 0;
  border-radius: 5px 5px 0 0;
  padding: 6px 15px;
  border-bottom: 0;
}
/* blogs details */
.blog-details {
  padding: 60px 0
}

.blog-single-post {
  position: relative;
  margin-bottom: 40px
}

.blog-single-post.blog-salah .image img {
  width: auto;
  height: 500px
}

.blog-single-post .image {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px
}

.blog-single-post .image img {
  width: 100%;
}

.blog-single-post .lower-content {
  position: relative;
  padding: 30px;
  border: 1px solid #ebf2f3;
  border-top: 0;
  border-radius: 5px
}

.blog-single-post ul.post-meta {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
  margin-bottom: 13px
}

.blog-single-post .post-meta li {
  margin-right: 15px;
  padding-right: 15px;
  font-weight: 600;
  border-right: 1px solid #ddd
}

.blog-single-post .post-meta li i {
  margin-right: 8px;
  color: var(--primary-color)
}

.blog-single-post .post-meta li:last-child {
  border-right: 0
}


.blog-single-post h1 {
  font-size: 30px;
  line-height: 44px;
  color: #3f3f3f;
  font-weight: 600;
}

.blog-single-post h3 {
  font-size: 28px;
  line-height: 42px;
  color: #3f3f3f
}

.blog-single-post .text {
  margin-bottom: 40px
}

.blog-single-post .text ul {
  padding-left: 0
}

.blog-single-post .text ul li {
  list-style: none;
  margin-bottom: 10px;
  color: #3f3f3f;
  position: relative;
  padding-left: 30px
}

.blog-single-post .text ul li:before {
  color: var(--primary-color);
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 16px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0
}

.blog-single-post .text ol {
  list-style: auto
}

.blog-single-post .text ol li {
  list-style: inherit;
  margin-bottom: 15px;
  color: #3f3f3f;
  font-size: 16px
}

.blog-single-post .text b,
.blog-single-post .text strong {
  font-weight: 600;
  color: var(--color-black)
}

.blog-single-post .text h2 {
  position: relative;
  font-size: 28px;
  line-height: 44px;
  font-weight: 700;
  font-family: inherit;
  margin-bottom: 15px
}

.blog-single-post .text h3,
.blog-single-post .text h4,
.blog-single-post .text h5 {
  line-height: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  font-family: inherit
}

.blog-single-post .text h3 {
  font-size: 24px
}

.blog-single-post .text h4 {
  font-size: 22px
}

.blog-single-post .text h5 {
  font-size: 20px
}

.blog-single-post .text h6 {
  position: relative;
  font-size: 18px;
  line-height: 30px;
  font-weight: 700;
  font-family: inherit;
  margin-bottom: 15px
}

.blog-single-post .text table tr td,
.blog-single-post .text table tr th {
  border: 2px solid #ddd;
  padding: 8px 10px;
  font-size: 14px;
  font-weight: 500
}

.blog-single-post blockquote {
  position: relative;
  padding-left: 30px;
  font-size: 16px;
  color: #565872;
  margin-bottom: 30px
}

.blog-single-post blockquote:before {
  position: absolute;
  content: '';
  top: 0;
  width: 8px;
  bottom: 0;
  background: var(--primary-color);
  left: 0;
  border-radius: 5px
}

.widget {
  position: relative;
  margin-bottom: 50px
}

.widget_popular_post {
  position: relative;
  max-width: 350px;
  margin-left: auto
}

.widget .widget-title {
  position: relative;
  font-size: 20px;
  color: #3f3f3f;
  margin-bottom: 20px;
  font-weight: 600
}

.widget_popular_post .post-thumb {
  position: relative;
  margin-right: 15px;
  margin-bottom: 0;
  overflow: hidden
}

.widget_popular_post .post-thumb:before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  content: '';
  width: 0;
  height: 0;
  background: rgb(16 34 53/59%);
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 10;
  pointer-events: none;
  transition: .3s ease-in
}

.widget_popular_post .post-thumb:hover:before {
  opacity: 1;
  width: 100%;
  height: 100%;
  border-radius: 0;
  -webkit-animation: .75s circle;
  animation: .75s circle
}

.widget_popular_post .post-thumb img {
  border-radius: 5px;
  float: left;
  height: 60px;
  width: 60px;
  object-fit: cover
}

.widget_popular_post .post {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
  border: 1px solid #e3e3e3;
  padding: 14px;
  border-radius: 5px
}

.widget_popular_post .content {
  position: relative;
  width: calc(100% - 75px)
}

.widget_popular_post .content h5 {
  position: relative;
  font-size: 16px;
  margin-bottom: 3px;
  font-weight: 600;
  font-family: inherit
}

.widget_popular_post .content h5 a {
  color: #3f3f3f;
  transition: .5s
}

.widget_popular_post .content .post-info {
  font-size: 14px;
  color: #3f3f3f
}

.widget_popular_post .content .post-info i {
  margin-right: 4px;
  color: var(--primary-color)
}
.footer-section{
  background-color: var(--secondary-color);
}
.footer-section .footer-middle{
  padding: 50px 0;
}
.footer-section .footer-middle .footer-about{
  border-right: 1px solid #fff;
  padding-right: 20px;
}
.footer-section .footer-middle .footer-about .logo-box{
  display: block;
  padding: 5px;
  border-radius: 5px;
  width: 100%;
  max-width: 250px;
  background-color: #fff;
}
.footer-section .footer-middle .footer-about .logo-box img{
  width: 100%;
  object-fit: contain;
}
.footer-section .footer-middle .footer-about p{
  color: #fff;
  font-weight: 600;
  margin: 20px 0;
}
.footer-section .footer-middle .social-links{
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
}
.footer-section .footer-middle .social-links li a{
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 5px;
  color: var(--secondary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}
.footer-section .footer-title{
  color: #fff;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: "Poppins", sans-serif;
}
.footer-section .footer-menu ul li{
  margin-bottom: 10px;
}
.footer-section .footer-menu ul li a{
  display: block;
  color: #fff;
  padding: 5px 0;
  font-size: 16px;
  font-weight: 500;
}
.footer-section .footer-menu ul li a:hover{
  color: var(--primary-color);
}
.footer-section .contact-info li{
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
  color: #fff;
  padding: 5px 0;
  margin-bottom: 10px;
}
.footer-section .contact-info li i{
  font-size: 20px;
}
.footer-section .contact-info li a{
  color:#fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
}
.footer-section .contact-info li a:hover{
  color:var(--primary-color);
}
.footer-section .footer-copyright{
  background-color: var(--primary-color);
  padding:10px 10px;
}
.footer-section .footer-copyright p{
  margin: 0;
  color: #fff;
  font-family: "Poppins", sans-serif;
}
.section-banner h1{
      color: var(--color-grey);
    font-weight: 700;
    font-size: 40px;
    line-height: 1.5;
}
.contact-details{
  background-color:#FFF7F3;
}
.contact-details .card-contact{
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0px 8px 24px 0px #959DA533;
  background-color: var(--secondary-color);
}
.contact-details .card-contact i{
     color:var(--primary-color);
    font-size: 30px;
    line-height: 1;
    margin:0 auto 15px;
    font-weight: 400;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
background-color:#fff;
}
.contact-details .card-contact span{
  font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #fff;
}
.contact-details .card-contact p{
  margin: 0;
}
.contact-details .card-contact p a{
  color:#fff;
  font-size: 16px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}
.contact-form h4{
      color: #fff;
    font-weight: 600;
    font-size: 26px;
    margin-bottom: 20px;
}
.contact-form .outerbox{
  background-color: var(--secondary-color);
  border-radius: 10px;
  padding: 50px;
}
.contact-form .outerbox .form-label{
  color:#fff;
  font-weight:600;
}
.contact-form .outerbox .input-group {
  position: relative;
}
.contact-form .outerbox .input-group-text {
  border: 0;
  position: absolute;
  left: 0;
  z-index: 1;
  background: transparent;
  height: 45px;
  font-size: 20px;
  color: #1B2336;
}
.contact-form .outerbox .form-control {
  height: 45px;
  border: 1px solid #DDDDDD;
  background: #F8FAFB;
  border-radius: 5px !important;
  padding-left: 50px;
}
.contact-form .outerbox .form-control::placeholder{
  font-weight: 600;
}
.contact-form .outerbox textarea.form-control{
  height: 100px;
}
.contact-form .map{
  width: 100%;
  height: 100%;
  border: 2px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
}
.contact-form .map iframe{
  width: 100%;
  height: 100%;
}
.banner-specialties .section-heading{
  margin-bottom: 0;
  text-align: start;
}
.banner-specialties .section-heading .doctor-box{
  display: flex;
  justify-content: start;
  align-items: center;
  margin-bottom: 15px;
}
.banner-specialties .section-heading .doctor-box .image img{
  width: 100px;
  height: 100px;
  border-radius: 100px;
  object-fit: cover;
}
.banner-specialties .section-heading .doctor-box .content{
  width: calc(100% - 100px);
  padding-left: 20px;
}
.banner-specialties .section-heading .doctor-box .content .dc-name{
  font-size: 28px;
  font-weight: 800;
  line-height: 1.5;
  color: var(--secondary-color);
  display: block;
}
.banner-specialties .section-heading .doctor-box .content .designation{
  color: var(--black-color);
  font-weight: 700;
  display: block;
  line-height: 1.5;
}
.banner-specialties .section-heading .btn-group{
  margin-top: 20px;
  gap: 15px;
}
.overview .section-heading{
  text-align: start;
}
.overview .image-box{
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.overview .image-box img{
  width: 100%;
}
.overview .section-heading ul li{
   list-style: none;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
     font-size: 16px;
    line-height: 1.8;
    color: var(--color-grey);
    font-weight: 500;
    margin-bottom: 10px;
}

.overview .section-heading ul li:before {
  color: var(--primary-color);
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 16px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0
}
.whychoose{
  background-color: #FFF7F3;
}
.whychoose .whychoose-card{
  background-color: var(--secondary-color);
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  text-align: center;
}
.whychoose .whychoose-card h4{
  color: #fff;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 15px;
  font-size: 20px;
  padding-bottom: 15px;
  position: relative;
}
.whychoose .whychoose-card h4::after{
  content: "";
  background-color: var(--primary-color);
  width: 100px;
  height: 2px;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.whychoose .whychoose-card p{
  color: #fff;
  margin-bottom: 0;
}
.doctor-card{
  width: 100%;
    max-width: 380px;
    height: 550px;
    margin-left: auto;
    box-shadow: 0px 8px 24px 0px #959DA533;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--color-grey);
    position: sticky;
    top: 15%;
}
.doctor-card .image{
  width: 100%;
  height: 100%;
  position: relative;
}
.doctor-card .image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.doctor-card .image::after{
    content: "";
    background: linear-gradient(360deg, rgba(0, 0, 0, 0.648), transparent);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    display: block;
}
.doctor-card .content-box{
  position: absolute;
    bottom: 15px;
    padding: 20px 10px;
    text-align: center;
    background-color: #fff;
    border-radius: 10px;
    width: 95%;
    left: 0;
    right:0;
    margin: auto;
}
.doctor-card .content-box h4{
  color: var(--secondary-color);
  font-size: 22px;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 0;
}
.doctor-card .content-box p{
  color: var(--color-grey);
  font-size: 13px;
  font-weight: 700;
}
.doctor-card .content-box .btn-theme{
  padding: 6px 15px;
  border-radius: 5px;
}
.specialities-content .section-heading{
  text-align: start;
  padding-bottom: 50px;
  border-bottom: 1px solid #ddd;
}
.specialities-content .section-heading:last-child{
  padding-left: 0;
  border: 0;
  margin: 0;
}
.specialities-content .section-heading .heading{
  font-size: 30px;
  margin-bottom: 15px;
}
.specialities-content .section-heading ul li{
 list-style: none;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
     font-size: 16px;
    line-height: 1.8;
    color: var(--color-grey);
    font-weight: 500;
    margin-bottom: 10px;
}

.specialities-content .section-heading ul li:before {
  color: var(--primary-color);
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 16px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0
}

.doctor_details #contenttab {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid #ddd;
    position: sticky;
    top:20%;
    display: flex;
    gap: 10px;
    margin-top: 50px;
}

.doctor_details #contenttab a {
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #FBFBFB;
    padding: 14px;
    font-weight: 700;
    font-size: 16px;
}

.doctor_details #contenttab a.active {
    background: var(--primary-color);
    border: 1px solid transparent;
    transition: background 0.3s ease-in-out;
}

.doctor_details .scrollspy-example h4 {
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.5;
}

.doctor_details .scrollspy-example img {
    margin: 20px 0px 0 0;
}

.doctor_details .scrollspy-example .content-box {
    border-bottom: 1px solid #ccc;
    padding-bottom: 40px;
    padding-top: 40px;
    padding-left: 20px;
}

.doctor_details .scrollspy-example .content-box:last-child {
    border-bottom: none;
    padding-bottom: 0px;

}

.doctor_details .scrollspy-example .content-box ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 15px;
}

.doctor_details .scrollspy-example .content-box ul li {
       margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
    color: var(--color-grey);
    font-size: 16px;
    font-weight: 500;
}

.doctor_details .scrollspy-example .content-box ul li::before {
    content: "\ea46";
    font-family: 'boxicons' !important;
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 20px;
}

.doctor_details .scrollspy-example .content-box hr {
    margin: 20px 0;
}
.details_banner {
    padding: 60px 0;
    background-color: var(--secondary-color);
}

.details_banner .background {
    background: #fff;
    padding: 0;
    border-radius: 20px;
}

.details_banner .content-box .d-flex {
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.details_banner .content-box .img-doc img {
    width: 130px;
    height: 130px;
    border-radius: 100px;
    background: #fff;
    object-fit: cover;
    object-position: top;
}

.details_banner .content-box .content h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--secondary-color);
}

.details_banner .content-box .content h2 {
    margin: 0;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 4px;
    font-size:18px;
}

.details_banner .content-box h1 {
    color:var(--secondary-color);
}

.details_banner .content-box h6 {
    color: var(--secoundary-color);
}

.details_banner .stauts-items .items {
    background: #fff;
    border: 0.95px solid #CCCCCC;
    box-shadow: 0px 0px 18.98px 0px #0000000D;
    border-radius: 10px;
    text-align: center;
    padding: 15px 10px;
    height: 100%;
}

.details_banner .stauts-items .items span {
    margin: 0;
    font-size: 14px;
    color:var(--color-grey);
    font-weight: 600;
    line-height: 1.5;
    display: block;
    letter-spacing: normal;
}

.details_banner .stauts-items .items p {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 1.5px;
    margin: 0;
    line-height: 1.5;
    font-family: "Poppins", sans-serif;
}
.details_banner .btn-group {
    align-items: center;
    gap: 20px;
    margin-top: 10px;
    display: flex;
}
.details_banner .treatment-img {
    justify-content: center;
    display: flex;
}

.details_banner .treatment-img img {
    width: 100%;
    max-width: 350px;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    object-position: center;
    margin-bottom: 0;
}
.modal.modal-popup .modal-title{
  font-size: 26px;
  color: var(--secondary-color);
  font-weight: 600;
}
.modal.modal-popup .modal-body .form-label {
  color: #000;
  font-size: 15px;
  line-height: 1.5;
  font-weight:600;
}
.modal.modal-popup .modal-body p{
  margin-bottom: 0;
  position: relative;
}
.modal.modal-popup .modal-body p .wpcf7-spinner{
      position: absolute;
    right: 0;
    top: 30px;
}
.modal.modal-popup .modal-body .input-group {
  position: relative;
}

.modal.modal-popup .modal-body .input-group-text {
  border: 0;
  position: absolute;
  left: 0;
  z-index: 1;
  background: transparent;
  height: 45px;
  font-size: 20px;
  color: #1B2336;
}

.modal.modal-popup .modal-body .form-control {
  height: 45px;
  border: 1px solid #DDDDDD;
  background: #F8FAFB;
  border-radius: 5px !important;
  padding-left: 50px;
}
.modal.modal-popup .modal-body .form-control::placeholder{
  font-weight:500;
}
.modal.modal-popup .modal-body .button-form {
  border-radius: 100px;
  padding: 12px 30px;
  background-color: var(--primary-color);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  width: 100%;
  margin-top: 15px;
  border: 2px solid var(--primary-color);
  transition: all 0.3s ease-in;
}

.modal.modal-popup .modal-body .button-form:hover {
  background-color: transparent;
  color: var(--primary-color);
}
.modal.modal-popup .modal-body textarea.form-control {
  height: 100px;
}