@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
body{
  box-sizing:border-box; 
  font-family: "DM Sans", sans-serif;
  margin: 0px;
  padding:0px;
}
body::-webkit-scrollbar {
  width: .5em;
}
body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px #999;
}
body::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  outline: 1px solid var(--primary-color);
}
::selection {
  color: var(--secondary-color);
  background: var(--primary-color);
}
html{
  scroll-behavior: smooth;
}
:root {
  --primary-color:#294658;
  --secondary-color:#997d52;
}
*,
*::after,
*::before,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}
p{
  font-size: 16px;
  color: #000;
}
ul {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}
a, button {
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}
a:hover
{
  text-decoration: none;
}
button:focus, input:focus, textarea:focus, select:focus, a:hover
{
  outline: none; box-shadow: none;
}
section{
  padding:70px 0 70px;
}
.inlineHeader{
  display: flex;
  padding:0px 0;
  align-items: center;
  justify-content: space-between;
}
.large_heading{
  font-size:60px;
}
.heading{
  font-size: 40px;
  line-height: 50px;
}
.text{
    font-size : 17px !important;
}
.sub_heading{
  font-size: 30px;
}
.small_heading{
  font-size: 26px;
}
.title{
  font-size: 20px;
}
.text{
  font-size: 18px;
}
.fontWeight300{
  font-weight: 300;
}
.fontWeight400{
  font-weight: 400;
}
.fontWeight500{
  font-weight: 500;
}
.fontWeight600{
  font-weight: 600;
}
.fontWeight700{
  font-weight: 700;
}
.fontWeight800{
  font-weight: 800
}
.fontWeight900{
  font-weight: 900;
}
.text_primary{
  color: var(--primary-color);
}
.leftLogo{
  width: 300px;
}
.leftLogo img{
  background: #fff;
  max-width: 100%;
  padding: 5px 10px;
  border-radius: 5px;
}
.leftLogo h1{
  color: #000;
}
.stricky-fixed {
  position: fixed;
  z-index: 999;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
  width: 100%;
  background:#fff;
  -webkit-animation-name: menu_sticky;
  animation-name: menu_sticky;
  -webkit-animation-duration: 0.60s;
  animation-duration: 0.60s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes menu_sticky {
  0%   {margin-top:-150px;}
  50%  {margin-top: -130px;}
  100% {margin-top: 0;}
}
@keyframes menu_sticky {
  0%   {margin-top:-150px;}
  50%  {margin-top: -130px;}
}

.leftHeader ul, .rightHeader ul{
  display: flex;
  align-items: center;
}
.leftHeader ul li a, .rightHeader ul li a{
  font-size: 14px;
  color: #666;
  display: inline-block;
  padding: 5px 10px;
  font-weight: 600;
}
.leftHeader ul li a:hover, .rightHeader ul li a:hover{
  color: var(--primary-color);
}
.appBtn{
  border:1px solid #333;
  color: #333 !important;
  padding: 5px 20px !important;
  border-radius: 40px;
}
.appBtn:hover{
  border-color: transparent;
  background: var(--primary-color);
  color: #fff !important;
}
.topHeader{
  padding:5px 0;
}
.homeSlider{
  position: relative;
  z-index: 1;
}
.homeSlider img{
  height: 100vh;
  object-fit: cover;
}
.bannerText{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;

  padding-top: 200px;
  /* display: flex;
  justify-content: flex-start; */
  /* flex-direction: column; */
  background: linear-gradient(to right,  rgba(0,40,79,0.78) 0%,rgba(0,40,79,0.6) 50%,rgba(0,40,79,0.23) 100%);
}

.bannerText ul li{
  position: relative;
  line-height: normal;
  letter-spacing: 6px;
  z-index: 2;
  padding-left: 60px;
}

.bannerText ul li:before{
  content: '';
    position: absolute;
    width: 30px;
    border: 2px dashed #fff;
    border-radius: 50%;
    animation: rotate 5s infinite linear;
    left: 10px;
    top: 25px;
    height: 30px
}

.bannerText ul li::after{
  content: '';
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--secondary-color);
    position: absolute;
    top: 32px;
    left: 18px;
}

@keyframes rotate{
  0%{
    transform: rotate(0deg);
  }
  100%{
    transform: rotate(360deg);
  }
}





.mainMenu{
  position: absolute;
  top: 40px;
  padding:10px 0;
  z-index: 2;
  width: 100%;
}
.leftLogo a{
  color: #fff;
}
.leftLogo a span{
  color: var(--secondary-color)
}
.rightMenu ul{
  display: flex;
  align-items: center;
}
.rightMenu ul li a{
  display: inline-block;
  padding:10px 15px;
  color: #fff;
  position: relative;
  z-index: 1;
  font-size: 18px;
  font-weight: 500;
}
.rightMenu ul li a:after{
  content: '';
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease-in-out;
  width: 0%;
  height: 1px;
  background: #E2B97B;
  z-index: -1;
}
.rightMenu ul li:hover a:after{
  width: 100%;
}
.rightMenu ul li a:hover{
  color: #E2B97B;
}
.homeSlider:after{
  content: '';
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 80%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background: rgb(153 125 82 / 70%);
  z-index: 1;
}
.carousel-indicators [data-bs-target]{
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.carousel-indicators{
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  left: auto;
  margin: 0px;
  display: block;
  width: 20px;
}
.bannerServiceBtn{
  position: absolute;
  bottom: 15px;
  right: 30px;
  padding:10px;
  background:var(--secondary-color);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  z-index: 1;
}
.bannerServiceBtn a{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.bannerServiceBtn span{
  display: flex;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  background: #fff;
  font-size: 20px;
  justify-content: center;
  align-items: center;
  color: var(--secondary-color);
}
.leftTextBtn{
  width: calc(100% - 60px);
}
.bannerServiceBtn a{
  color: #fff;
}
.bannerServiceBtn:after{
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  transition: all 0.3s ease-in-out;
  height: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background: var(--primary-color);
  z-index: -1;
}
.bannerServiceBtn:hover:after{
  height: 100%;
}
.bannerServiceBtn:hover span{
  background: var(--secondary-color);
  color: #fff;
}
.stricky-fixed .topHeader{
  display: none;
}
.stricky-fixed .mainMenu{
  position: static !important;
  top:0;
  padding:5px 0 !important;
}
.stricky-fixed .leftLogo a{
  color: var(--primary-color) !important;
}
.stricky-fixed .rightMenu ul li a{
  color: #000;
}
.stricky-fixed .rightMenu ul li a:hover{
  color: var(--secondary-color);
}
.stricky-fixed .rightMenu ul li a:after{
  background: var(--secondary-color)
}
.stricky-fixed .leftLogo{
  width: 250px
}
/* .stricky-fixed .leftLogo img{
  filter: inherit;
} */
.text_primary{
  color: var(--primary-color);
}
.text_secondary{
  color: var(--secondary-color);
}
.bgLight{
  background:#f1f1f1 !important;
}
.serviceImg{
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.serviceImg img{
  width: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  height: 250px;
  transition: all 0.3s ease-in-out;
  object-fit: cover;
}
.descriptionServiceHome{
  padding: 15px;
  background: #fff;
  border-bottom-right-radius: 10px;
  transition: all 0.3s ease-in-out;
  border-bottom-left-radius: 10px;
}
.descriptionServiceHome h4{
  color: var(--primary-color);
  transition: all 0.3s ease-in-out;
}
.descriptionServiceHome{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 200px;
}
/* .innerServices{
  display: flex;
  justify-content: space-between;
} */
.textInnerSer{
  /* width: 45%; */
  margin-top: 15px;
}
.textInnerSer p{
  font-size: 14px;
  color: #666;
  transition: all 0.3s ease-in-out;
}
.serviceLink{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.serviceLink p{
  color: var(--primary-color);
  transition: all 0.3s ease-in-out;
  font-weight: 700;
}
.serviceLink span{
  display: inline-block;
  width: 30px;
  height: 30px;
  transition: all 0.3s ease-in-out;
  font-size: 13px;
  line-height: 30px;
  background: #e0e0e0;
  border-radius: 50%;
  text-align: center;
  color: #000;
}
.itemServices:hover .descriptionServiceHome{
  background: var(--primary-color)
}
.itemServices:hover h4{
  color: #fff;
}
.itemServices:hover .textInnerSer p{
  color: #fff
}
.itemServices:hover .serviceLink p{
  color: var(--secondary-color)
}
.itemServices:hover span{
  background: var(--secondary-color);
  color: #fff;
}
.itemServices:hover .serviceImg img{
  transform: scale(1.2);
}
.itemServices:hover{
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}
.slick-slider {
  margin:0 -15px;
}
.slick-slide{
  margin: 0 15px;
}
.borderHeading{
  position: relative;
  z-index: 1;
}
.borderHeading:after{
  content: '';
  position: absolute;
  bottom: 0px;
  width: 150px;
  height: 3px;
  background: var(--secondary-color);
  z-index: -1;
  left: 0px;
}
.letAbout{
  /* height: 550px; */
  background: #fff;
  padding:5px;
  position: relative;
  border-radius: 10px;
}
.letAbout img{
  max-width: 100%;
  border-radius: 10px;
}
.rightAbout{
  padding: 30px 0;
  padding-left: 30px;
}

.leftImgBorder{
  position: relative;
  z-index: 1;
}
.leftImgBorder:before{
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 15%;
  height: 100%;
  background: var(--secondary-color);
  z-index: -1;
}
.listIcon {
  display: flex;
  gap:10px 15px;
  flex-wrap: wrap;
}
.listIcon li{
  width: calc(100% / 3 - 15px);
  font-weight: 600;
  position: relative;
  padding-left: 20px;
  z-index: 1;
}
.listIcon li:before{
  content: '\f00c';
  position: absolute;
  top: 0px;
  left: 0px;
  color: var(--secondary-color);
  font-family:  "Font Awesome 6 Free";
  font-weight: 900;
}
.doctorImg{
  position: relative;
  z-index: 1;
  text-align: center;
}
.doctorImg img{
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
  border:1px solid #e0e0e0;
  border-radius: 10px;
}
.doctorImg:after{
  content: '';
  position: absolute;
  top:35px;
  left: 0px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: var(--primary-color);
  z-index: -1;
}
.doctorImg h4{
  margin-top: 30px;
}
.doctorImg p{
  margin-top: 10px;
  font-size: 14px;
  color: #E2B97B;
  font-weight: 700;
}
.itmeArea{
  padding: 35px;
  height: 100%;
}
.formBox{
  background: #fff;
  padding:20px;
  border-radius: 10px;
}
.textHeight {
    height: 150px !important;
}
.form-floating>.form-control:focus, .textHeight:focus, .capIn:focus, .form-select:focus, .form-floating>.form-control:not(:placeholder-shown)
{
  border-color: var(--primary-color);
  -webkit-box-shadow: 0 5px 10px rgb(0 0 0 / 10%);
  box-shadow: 0 5px 10px rgb(0 0 0 / 10%);
}
.formItem{
  margin: 20px 0;
}
.form-floating>label{
  padding: .9rem 1rem
}
.textHeight{
  border-color: #999;
}
.form-floating>.form-control{
  border-color: #999;
  padding: .7rem .75rem;
  padding-left: 1rem;
  height: 55px;
}
.formBlock{
  margin-top: 10px;
}
.capIn{
  padding:12px;
  border:1px solid #999;
  border-radius: 5px;
  width: 100%;
}
#refresh_captcha, #refresh_captcha2{
  cursor: pointer;
  background: #f1f1f1;
}
.btnTheme{
  background: var(--secondary-color);
  padding: 13px 25px;
  font-weight: 600;
  display: inline-block;
  color: #fff;
  border-radius: 5px;
  border:none;
}
.btnTheme:hover{
  background: var(--primary-color);
  color: #E2B97B;
}
.itemDoctorCard{

  border:1px solid #e0e0e0;
  
  position: relative;
  z-index: 1;
  border-radius: 10px;
  margin-bottom: 30px;
  overflow: hidden;

}
.itemDoctorImg{
  
  padding: 0;
  padding-right: 30px;
}

.itemDoctorImg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.itemDoctorContent{
  padding: 20px 0;
}
.itemDoctorCard .title{
  font-size: 22px;
}
.text{
  font-size: 14px;
}
.textGrey{
  color: #555;
}
.text2{
  font-size: 12px;
}
.itemDoctorCard  .btnTheme{
  font-size: 14px;
}
.bgPrimary{
  background: var(--primary-color);
}
.itemTestimonial{
  padding:0 20px;
  color: #fff;
  position: relative;
  z-index: 1;
  padding-left: 50px;
}
.itemTestimonial p.textColor{
  color: #fff;
}
.textSpace i{
  padding:8px 3px;
  font-size: 12px;
}
.itemTestimonial:after{
  content: '';
  position: absolute;
  top: -10px;
  left: 0px;
  width: 40px;
  height: 40px;
  z-index: -1;
  background: url(../images/icons/quote.png) no-repeat;
  background-size: cover;
}
.testimonialRight{
  background: #fff;
  padding:10px;
  border-radius: 10px;
}
.testimonialRight iframe{
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.itemGallery{
  margin: 10px 0;
}
.itemGallery img{
  width: 100%;
  border-radius: 5px;
}
.imgHeight img{
  height: 345px;
  object-fit: cover;
}
.imgHeight2 img{
  height: 160px;
  object-fit: cover;
}
.imgHeight3 img{
  height: 345px;
  object-fit: cover;
}
.blogItem{
  background: #f1f1f1;
  border-radius: 10px;
  padding: 10px;
}
.blogItem img{
  max-width: 100%;
  border-radius: 10px;

}
.blogSlider{
  margin-top: 40px;
}
.blogItem .serviceLink p{
  font-size: 15px;
  color: var(--secondary-color);
}
.blogItem a{
  color: var(--primary-color);
}
.blogItem .serviceLink span{
  background: var(--secondary-color);
  color: #fff;
}
.blogItem:hover h4{
  color:var(--secondary-color);
}
.blogItem:hover .serviceLink p{
  color: var(--primary-color);
}
.blogItem:hover .serviceLink span{
  background: var(--primary-color);
}
.blogSlider .slick-slider {
    margin:0 -5px;
}
.blogSlider .slick-slide {
    margin:0 5px;
}
.blogItem .serviceLink{
  margin-bottom: 5px;
}
.contactHomeeForm .formItem{
  margin-top: 0px;
}
.textHeight {
    height: 180px !important;
}
#cpatchaSubmitBtn2{
  padding:14px;
}
.rightContactHome{
  padding-left: 40px;
}
.rightContactHome ul {
    margin-top: 20px;
}
.rightContactHome ul li, .rightContactInner ul li{
  font-weight: 600;
  color: #000;
  position: relative;
  padding:10px 15px;
  padding-left: 50px;
}
.rightContactHome ul li{
  padding:14px 15px;
  padding-left: 50px;
}
.rightContactHome ul li:before, .rightContactInner ul li:before{
  content: '';
  position: absolute;
  font-family: "Font Awesome 5 Free";
  top: 11px;
  font-size: 22px;
  left: 10px;
  font-weight: 900;
  color: var(--primary-color);
}
.rightContactHome ul li.iconAddress:before, .rightContactInner ul li.iconAddress:before{
  content: '\f3c5';
}
.rightContactHome ul li.iconMobile:before, .rightContactInner ul li.iconMobile:before{
  content: '\f095';
}
.rightContactHome ul li.iconMail:before, .rightContactInner ul li.iconMail:before{
  content: '\f0e0';
}
.iconMobile a, .iconMail a{
  color: #000
}
.rightContactHome iframe{
  width: 100%;
  margin-top: 30px;
  height: 255px;
}
.footer{
  background:#222;
  padding-top: 50px;
}
.footerLogo{
  width: 200px;
}
.footerLogo p{
  font-size: 14px;
}
.footerLogo img{
  max-width: 100%;
  background-color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
}

.footerItem ul{
  margin-top: 20px;
}
.footerItem ul li a{
  font-size: 16px;
  display: inline-block;
  color: #fff;
  font-weight: 500;
}
.footerItem ul li a:hover{
  color: var(--secondary-color);
}
.footerItem ul li{
  font-size: 16px;
  padding:5px 0;
  color: #fff;
  font-weight: 500; 
}
.spaceTop{
  margin-top: 50px;
}
.address:after {
  content: "\f3c5";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  color: #fff;
  font-size: 20px;
  top: 0px;
  left: 0px;
}
.phone:after {
  content: "\f095";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  color:#fff;
  font-size: 20px;
  top: 0px;
  left: 0px;
}
.email:after {
  content: "\f0e0";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  color: #fff;
  font-size: 20px;
  top: 0px;
  left: 0px;
}
.address, .phone, .email {
    position: relative;
    padding-left: 30px;
    font-size: 15px;
    color: #fff;
}
p.address strong, p.phone strong, p.email strong{
  font-size:18px;
}
.address, .phone, .email {
    position: relative;
    padding-left: 30px;
}
.phone a, .email a{
  color: #fff;
}
.copyright{
  margin-top: 50px;
  text-align: center;
  padding: 10px 40px;
  background:#111;
  position: relative;
}
.copyright p{
  color: #fff;
  font-size: 17px;
}
.footerItem h3{
  color: #eee;
}
.go-top {
  position: fixed;
  cursor: pointer;
  bottom: -100px;
  right: 20px;
  color: #fff;
  background-color: var(--secondary-color);
  z-index: 999;
  width: 30px;
  text-align: center;
  height: 30px;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  font-size: 16px;
  -webkit-transition: .9s;
  transition: .9s;
  overflow: hidden;
}
.go-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 20px;
}
.hiddenText{
  opacity: 0;
  position: absolute;
  top: 0px;
}
.itemCounter{
  text-align: center;
  position: relative;
  z-index: 1;
  background: #062f58;
  padding:20px 0;
}
.itemCounter i{
  font-size: 35px;
  color: #eee;
}
.itemCounter p{
  color: #fff;
}
.itemCounter:after{
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 15px;
  transition: all 0.3s ease-in-out;
  height: 2px;
  background: var(--secondary-color);
}
.itemCounter:before{
  content: '';
  position: absolute;
  top: 0px;
  transition: all 0.3s ease-in-out;
  left: 0px;
  width: 2px;
  height: 15px;
  background: var(--secondary-color);
}
.itemCounter:hover:before{
  height: 100%;
}
.itemCounter:hover:after{
  width: 100%;
}
.itemFooter p{
  font-size: 16px
}
.itemFooter ul.socialItem, .leftContactInner ul.socialItem{
  display: flex;
  margin-top: 20px;
}
.itemFooter ul.socialItem li a{
  padding: 7px 10px;
  width: 37px;
  margin-right: 5px;
  text-align: center;
  border:1px solid #fff;
  color: #fff;
  display: inline-block;
}
.leftContactInner ul.socialItem li a{
  padding: 7px 10px;
  width: 37px;
  margin-right: 10px;
  text-align: center;
  border:1px solid #999;
  color: #333;
  display: inline-block;
}
.itemFooter ul.socialItem li a:hover{
  background: var(--secondary-color);
  border-color:transparent;
  color: #fff;
}
.leftContactInner ul.socialItem li a:hover{
  background: var(--primary-color);
  color: #fff;
}
.shortBanner{
  position: relative;
  z-index: 1;
}
.shortBanner:after{
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.6);
  z-index: 1;
}
.shortBanner img{
  height: 450px;
  width: 100%;
  object-fit:cover;
}
.light_text{
  color: #E2B97B;
}
.bannerTitleShort{
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  z-index: 2;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding:20px;
  padding-top: 30px;
  border-top-left-radius:  300px;
  border-top-right-radius:  300px;
}
.bannerTitleShort .heading{
  font-size: 35px;
}
.bannerTitleShort ul{
  display: flex;
  justify-content: center;
}
.bannerTitleShort ul li a{
  display: inline-block;
  padding:0 5px;
  color: #666;
  font-weight: 600;
  position: relative;
  z-index: 1;
  vertical-align: middle;
  font-size: 14px;
}
.bannerTitleShort ul li{
  padding:5px 3px;
  font-size: 12px;
  color: #666;
}
.bannerTitleShort ul li i{
  transform: translateY(2px);
}
.leftAboutInner img{
  width: 100%;
}
.rightInnerAbout ul{
  margin-top: 20px;
}
.rightInnerAbout ul li{
  padding:9px 10px;
  padding-left: 0px;
  position: relative;
  font-weight: 600;
}
.rightInnerAbout ul li i{
  margin-right: 10px;
  color: var(--secondary-color);
}
.listBullet li{
  padding-left:25px !important;
  position: relative;
}
.listBullet li:before{
  content: '';
  position: absolute;
  top: 18px;
  left: 0px;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  background: #000;
  z-index: 1;
}
.leftAboutInner{
  padding:3px;
}
.spacialTable th, .spacialTable td{
  padding:15px 20px;
  font-size: 15px;
}
.spacialTable tr th{
  background: var(--primary-color);
  text-align: center;
  color: #fff;
}
.spacialTable tr:nth-child(2) th, .spacialTable tr:nth-child(1) th{
  border-color: #7e909a;
}
.spacialTable tr:nth-child(1){
  border-color: #7e909a;
}
.leftContactInner .address, .leftContactInner .phone, .leftContactInner .email{
  color: #000
}
.leftContactInner .phone:after, .leftContactInner .address:after, .leftContactInner .phone:after, .leftContactInner .email:after{
  color: var(--primary-color);
}
.leftContactInner .phone a, .leftContactInner .email a{
  color: var(--primary-color);
  font-weight: 600;
}
.formBlockInner{
  padding:40px;
  background: #fff;
}
.innerForm{
  margin-top: 20px;
}
.itemTestInner{
  padding:20px;
  border-radius: 10px;
  border:1px solid #e0e0e0;
  margin-bottom: 30px;
}
.itemTestInner:last-child{
  margin-bottom: 0px;
}
.stickyRight{
  position: sticky;
  position: -webkit-sticky;
  top: 120px;
}
.bannerDoctor{
  position: relative;
  z-index: 1;
  padding-top: 150px;
  padding-bottom: 60px;
}
.bannerDoctor:after{
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 490px;
  background: var(--primary-color);
  z-index: -2;
}
.bannerDoctor:before{
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 490px;
  background:  url(../images/bg/pattern.png);
  opacity: .3;
  z-index: -1;
}
.doctorPic{
  background: #fff;
  padding-bottom: 0px;
  border-radius: 10px;
  overflow: hidden;
  height: 309px;
}
.doctorPic img{
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}
.rightDoctor p{
  color: #fff;
  margin: 5px 0;
}
.section{
  padding:60px 0;
}
.sectionItem{
  margin-top: 20px;
}

.careSection .sectionTop .newBox{
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
}

.careSection .sectionTop .newBox .heading{

    color: var(--primary-color);
}


.itemDoctorCard{
  background: #fff;
}

.bannerDoctor .stickyRight{
  top: 90px;
}
.sectionItem p{
  margin-top: 10px;
}
.sectionItem h3 i{
  color: var(--primary-color);
}
.sectionItem ul {
  margin-top: 10px;
}
.sectionItem ul li{
  padding:8px 10px;
  padding-left: 60px;
  font-size: 17px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}
.sectionItem ul li:after{
  content: '';
  position: absolute;
  top: 16px;
  left: 35px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #999;
}

.newSectionItem ul li:after{
  left: 0;
}

.newSectionItem ul li{
  padding-left: 30px;
  font-size: 17px;
  font-weight: 500;
}

.newSectionItem ul li ul li:after{
  left: 35px;
}

.newSectionItem ul li ul li{
  padding-left: 60px;
  font-size: 17px;
  font-weight: 500;
}
.newSectionItem .small_heading{
  font-size: 22px;
  font-weight: 600;
}

/* ////////////// */




.callActionBtn{
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
}

.aboutBtns{
  display: flex;
  align-items: center;
  gap: 60px;
}

.iconPhone{
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--primary-color);
  border-radius: 50%;
  font-size: 20px;
  box-shadow: 0px 0px 1px 1px #0000001a;
  margin-right: 15px;
}
.pulse {
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}



.itemServices .innerServices .small_heading{
  font-size: 23px;
}
.itemDoctorContent ul{
  list-style-type: disc;
  padding-left: 15px;
  line-height: 27px;
}


.itemDoctorBtns{
  display: flex;
  align-items: center;
  gap: 40px;
  
}

.itemDoctorBtnBoxes{
  padding: 10px;
  border: 0.2px solid var(--secondary-color);
  margin-right: 20px;
  border-radius: 5%;
}

.leftAbout-box{
  top: 100px;
 
}


.serviceContainer {

  display: grid;
  grid-template-columns: 32% 32% 32%;
  grid-template-rows: auto auto;
  gap: 2%;
  grid-row-gap: 50px;
  padding: 30px;
}

.descriptionServiceHome h4{
  text-transform: capitalize;
}

.heading{
  text-transform: capitalize;
}


.lungBanner{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.lungBanner h2{
  font-size: 60px;
  font-weight: bolder;
  color: white;
}


.lungCareContent .row .col-lg-7{

  padding: 40px;


}

.newBox{
  margin-bottom: 30px;
}

.lungCareContent .formBox .captchaInput{

  padding: 0 !important;

}


.adultVaccination .rightAbout p{
  font-size: 20px;
  padding: 20px;
  padding-left: 0;
}


.adultVaccination .rightAbout .aboutBtns p{
  padding: 0;
}

.newBox ul{
  list-style-type: decimal;
}

.opthamologyclinic p{
  font-size: 22px;
  padding-top: 20px;
}

.newBox ul li p{
  font-size: 17px !important;
  padding: 10px 0 !important;
}

.newBox .heading{
  font-size: 34px;
  line-height: 34px;
  margin-bottom: 20px;
}

.stricky-fixed .topHeader{
  display: none !important;
}

.newBox ul{
  list-style: none;
}


.descriptionServiceHome{
  height: 232px;
}

.text_Star{
  color: #FFC107;
}

.reviewBox{
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}
.googleIcon img{ 
  width: 40px;
  height: 40px;
  object-fit: cover;
}

.btn-close{
  position: absolute;
  font-size: 20px;
  right: 20px;
  top: 20px;
}
.modal{
  top: 20px;
}

.modal-body .formBox{
  padding-top: 0;
}

.contactUsForm .formItem {

  margin: 10px;
}

.contactUsForm .textHeight {

  height: 114px !important;
}

.contactUsForm .btnTheme {
  padding: 13px 8px;

}

.contactUsForm .form-floating>.form-control{
  height: 50px;
}

.contactUsForm .formBlockInner{
  padding: 15px 40px;
}


.newBox .newIconBox{
  width: 80px;
  height: 80px;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary-color);
  border-radius: 100%;
  padding: 15px;
  background-color: #E9ECEE ;
  margin-bottom: 20px;
}

.newBox .newIconBox img{

  width: 100%;

}

.callActionBtn .rightIcon p{
  font-size: 20px;
}
.callActionBtn .rightIcon p a{
  font-size: 18px;
  color: var(--primary-color);
}


.itemFaq {
  border: 1px solid #000;
  padding: 20px 20px;
  border-radius: 10px;
  background: #fff;
  margin-bottom: 30px;
  box-shadow: 0px 5px 0px #333;
}
.faqHeader {
  display: flex;
  align-items: center;
  cursor: pointer;
  justify-content: space-between;
}
.faqHeader h4{
    font-size:20px;
  font-weight: 700;
}
.faqHeader .fa-chevron-up {
    display: none;
}
.faqBody {
  margin-top: 20px;
  display: none;
  padding-top: 15px;
  border-top: 1px solid #e0e0e0;
}
.itemFaq.active .faqBody {
    display: block;
}
.itemFaq.active .fa-chevron-up {
    display: block;
}
.itemFaq.active .fa-chevron-down {
    display: none;
}



.aboutslider{
  margin: 30px 0;
}

.aboutItems{
  height: 280px;
  width: 100%;
  padding: 0;
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
}

.aboutItems img{

  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aboutItems .slick-slider {
  margin:0 -15px;
}
.aboutItems .slick-slide {
  padding:10px;
  background-color:red;
  text-align:center;
  margin-right:15px;
  margin-left:15px;
}
.aboutslider .slick-next:before, .aboutslider .slick-prev:before{

  color: #000;
  font-size: 35px;
}

.aboutslider .slick-prev{
  z-index: 2;
  left: -10px;
}
.aboutslider .slick-next{
  z-index: 2;
  right: -4px;
}
.inlineFooter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}
.inlineFooter a{
    color: #fff;
}

.homeVideo{
  padding: 10px;
  border-radius: 20px;
  background: #fff;
}

.videoBack{
  background: url(../images/video-background.jpg) no-repeat;
  background-size: cover;

}
.homeVideo video{
  width: 100%;
  border-radius: 20px;
  transform: translateY(2px);
}
















.smlBox{
  width: 60px;
  height: 230px;
  position: fixed;
  top: 20%;
  right: 4px;
  background-color: var(--secondary-color);
  border-radius: 42px 42px 0 0;
  z-index: 20;
  
}
.smlContainer{
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.smlText{
  padding: 70px 0;
  text-wrap: nowrap;
}
.smlText p{
  
  transform: rotate(270deg);
}
.smlIcon{
  width: 60px;
  height: 60px;
  padding: 2px;
  border-radius: 50%;
  background-color: white;
  border: 2px solid var(--secondary-color);
}
.smlIcon img{
  width: 100%;
  height: 100%;
}
