
@import url('https://fonts.googleapis.com/css2?family=Gabarito:wght@400..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&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&family=Rajdhani:wght@300;400;500;600;700&family=Rowdies:wght@300;400;700&family=STIX+Two+Text:ital,wght@0,400..700;1,400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&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&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Yrsa:ital,wght@0,300..700;1,300..700&display=swap');

/********** Template CSS **********/
body {
  background-color: #f7eeef;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

.fw-medium {
  font-weight: 500;
}

.font1 {
  font-size: 17px;
}



.mt-30 {

  margin-top: 30px !important;

}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

.font-phudu {
  font-family: "phudu", serif;
}

/*** Button ***/
.btn {
  transition: 0.5s;
  font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
  color: var(--bs-light);
}

.btn-secondary,
.btn-outline-secondary:hover {
  color: var(--bs-dark);
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-weight: normal;
}

.icon-box-primary,
.icon-box-light {
  position: relative;
  padding: 0 0 10px 10px;
  z-index: 1;
}

.icon-box-primary i,
.icon-box-light i {
  font-size: 60px;
  line-height: 0;
}

.icon-box-primary::before,
.icon-box-light::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 50px;
  left: 5px;
  bottom: 6px;
  border-radius: 35px;
  transition: 0.5s;
  z-index: -1;
}

/* .icon-box-primary::before {
    background: #444468;
} */

.icon-box-light::before {
  background: var(--bs-light);
}

/*** Navbar ***/

.ms-auto {
  margin-left: auto !important;
}

.sticky-top {
  top: -100px;
  transition: 0.5s;
}

.navbar .navbar-nav .nav-link {
  margin-right: 35px;
  padding: 20px 20px;
  color: var(--bs-dark);
  font-size: 18px;
  font-weight: 500;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: #00285d;
}

.navbar .dropdown-toggle::after {
  border: none;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar .navbar-nav {
    margin-top: 15px;
    border-top: 1px solid #eeeeee;
    float: left;
  }
}

@media (min-width: 992px) {
  .sticky-top {
    margin-top: 5px;
    background-color: #fffffc;
    border-bottom: 1.5px solid #59343c;
  }

  .navbar {
    height: 65px;
  }

  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

/*** Header ***/
@media (min-width: 992px) {

  .header-carousel,
  .page-header {
    margin-top: 0px;
  }
}

.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  background: rgba(3, 27, 78, 0.3);
  z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 3.5rem;
  background-color: var(--bs-primary);
  border: 15px solid var(--bs-primary);
}

@media (max-width: 767.98px) {
  #header-carousel .carousel-item {
    position: relative;
    min-height: 450px;
  }

  #header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.page-header {
  background: linear-gradient(rgba(3, 27, 78, 0.3), rgba(3, 27, 78, 0.3)),
    url(../img/Cataract-Banner.webp) center center no-repeat;
  background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
  color: var(--bs-white);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  font-size: 18px;
  color: var(--bs-white);
}

/** Ends **/
.about-image img {
  position: relative;
  width: 100%;
  display: block;
  border-radius: 15px;
}

.btn-style-three {
  position: relative;
  font-weight: 700;
  overflow: hidden;
  text-align: center;
  border-radius: 0px;
  padding: 10px 22px;
  letter-spacing: 1px;
  display: inline-block;
  color: #008080;
  font-size: 12px;
  text-transform: uppercase;
  border: 1px solid #008080;
  background-color: rgb(241 147 47 / 8%);
}

/* Btn Style Four */
@media only screen and (max-width: 678px) {
  .btn-style-four {
    position: relative;
    font-weight: 500;
    overflow: hidden;
    margin-left: 10px;
    justify-content: center;
    border-radius: 0px;
    padding: 5px 5px;
    letter-spacing: 1px;
    display: inline-block;
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    border: 1px solid #fff;
    /* background-color: rgb(241 147 47); */
  }
}

@media only screen and (max-width: 678px) {
  .btn-style-four:before {
    -webkit-transition-duration: 800ms;
    transition-duration: 800ms;
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    top: -200%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 50%;
    z-index: 1;
    background: var(--white-color);
  }
}

.btn-style-four {
  position: relative;
  font-weight: 700;
  overflow: hidden;
  text-align: center;
  border-radius: 0px;
  padding: 12px 35px;
  letter-spacing: 1px;
  display: inline-block;
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;
  border: 1px solid #fff;
  /* background-color: rgb(241 147 47); */
}

.btn-style-four:before {
  -webkit-transition-duration: 800ms;
  transition-duration: 800ms;
  position: absolute;
  width: 200%;
  height: 200%;
  content: "";
  top: -200%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: 1;
  background: var(--white-color);
}

.btn-style-four:hover:before {
  top: 0%;
}

.btn-style-five:hover:before {
  top: 0%;
}

.btn-style-four .btn-wrap {
  position: relative;
  z-index: 1;
  float: left;
  overflow: hidden;
  display: inline-block;
}

.btn-style-four .btn-wrap .text-one {
  position: relative;
  display: block;
  color: var(--white-color);
  transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.btn-style-four:hover .btn-wrap .text-one:first-child {
  -webkit-transform: translateY(-150%);
  -ms-transform: translateY(-150%);
  transform: translateY(-150%);
}

.btn-style-four .btn-wrap .text-two {
  position: absolute;
  top: 100%;
  display: block;
  color: #ffd700;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn-style-four:hover .btn-wrap .text-two {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.btn-style-four:hover .btn-wrap .text-two {
  color: #ffd700;
}

.btn-style-four:hover {}

.btn-style-four:hover:before {
  top: -40%;
}

/** Btn Four Ends **/

/** Btn Five Ends **/
.about-btncont {
  display: flex;
  justify-content: flex-end;
}

.btn-style-five {
  position: relative;
  font-weight: 700;
  overflow: hidden;
  text-align: center;
  border-radius: 0px;
  padding: 12px 35px;
  letter-spacing: 1px;
  display: inline-block;
  color: #444468;
  font-size: 20px;
  text-transform: uppercase;
  border: 1px solid #444468;
  /* background-color: rgb(241 147 47); */
}

.btn-style-five:before {
  -webkit-transition-duration: 800ms;
  transition-duration: 800ms;
  position: absolute;
  width: 200%;
  height: 200%;
  content: "";
  top: -200%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: 1;
  background: var(--white-color);
}

.btn-style-five .btn-wrap {
  position: relative;
  z-index: 1;
  float: left;
  overflow: hidden;
  display: inline-block;
}

.btn-style-five .btn-wrap .text-one {
  position: relative;
  display: block;
  color: var(--white-color);
  transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.btn-style-five:hover .btn-wrap .text-one:first-child {
  -webkit-transform: translateY(-150%);
  -ms-transform: translateY(-150%);
  transform: translateY(-150%);
}

.btn-style-five .btn-wrap .text-two {
  position: absolute;
  top: 100%;
  display: block;
  color: var(--white-color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn-style-five:hover .btn-wrap .text-two {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.btn-style-five:hover .btn-wrap .text-two {
  color: var(--main-color);
}

.btn-style-five:hover {}

.btn-style-five:hover:before {
  top: -40%;
}

/*** 

====================================================================
	Banner Section
====================================================================

***/
@media only screen and (max-width: 1400px) {
  .banner-pleft {
    padding-left: 122px !important;
  }
}

@media only screen and (max-width: 678px) {
  .banner-pleft {
    padding-left: 10px !important;
  }
}

.banner-section {
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #00285d;
  background-position: repeat;
}

.banner-section .content-column {
  position: relative;
  margin-bottom: 40px;
  z-index: 2;
}

@media only screen and (max-width:600px) {
  .banner-section .content-column {
    position: absolute;
  }

  .banner-section .content-column .inner-column {
    padding-top: 290px !important;
  }

  .banner-pleft p {
    color: #444468 !important;
  }

  .banner-button {
    display: none;
  }

  .banner-section .image-column {
    opacity: 0.8;
  }
}

.banner-section .content-column .inner-column {
  position: relative;
  padding-top: 162px;
}

.banner-section .content-column h2 {
  position: relative;
  font-weight: 700;
  color: #ffd700;
  font-style: revert;
  line-height: 1.2em;
  font-size: 79px;
  font-family: "kanit", serif;
}

@media only screen and (max-width: 678px) {
  .banner-section .content-column h2 {
    position: relative;
    font-weight: 700;
    color: #444468;
    line-height: 1.2em;
    font-size: 41px;
  }
}

.banner-section .content-column h3 {
  line-height: 1.3em;
  font-weight: 700;
  font-size: 34px;
  font-family: "Phudu", serif;
}

.banner-section .content-column .buttons-box {
  position: relative;
  margin-top: 35px;
}

.banner-section .content-column .buttons-box .theme-btn {
  position: relative;
  margin-right: 15px;
}

.banner-section .image-column {
  position: relative;
  margin-bottom: -21px;
}

.banner-section .image-column .inner-column {
  position: relative;
  /* margin-right:-40px; */
}

.image {
  display: inline-block;
  width: 100%;
  height: 545px;
  margin-top: 130px;
}

.image img {

  height: 545px;

}

.banner-section .lower-boxed {
  position: relative;
  padding-top: 80px;
}

.inner-column p {
  font-size: 22px !important;
  font-family: "montserrat";
}

/*-----bannwer------*/

/*-----bannwer------*/

.bannerbody {
  margin: 0px;
  padding: 0px;
  width: 100%;
  display: block;
  height: auto;
}

.bannerpic {
  width: 100%;
  display: block;
  height: auto;
}

.bannerpic img {
  width: 100%;
  display: block;
  height: 534px;
  object-fit: cover;
  margin: 0px;
  padding: 0px;
}

.banner .owl-prev {
  position: absolute;
  top: 50% !important;
  left: 50px !important;
  width: 60px !important;
  height: 60px !important;
  border-radius: 50% !important;
  background-color: rgba(0, 200, 197, 0.582) !important;
  border: solid 2px white !important;
  z-index: 2 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  transition: all 0.5s ease-in-out !important;
}

.banner .owl-prev i {
  color: white !important;
}

.banner .owl-prev:hover {
  background-color: rgb(0, 200, 197) !important;
}

.banner .owl-next {
  position: absolute;
  top: 50% !important;
  right: 50px !important;
  width: 60px !important;
  height: 60px !important;
  border-radius: 50% !important;
  background-color: rgba(0, 200, 197, 0.582) !important;
  border: solid 2px white !important;
  z-index: 2 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  transition: all 0.5s ease-in-out !important;
}

.banner .owl-next i {
  color: white !important;
}

.banner .owl-next:hover {
  background-color: rgb(0, 200, 197) !important;
}

/** Slider Banner Section Ends **/

/*** Features ***/
.feature {
  background: linear-gradient(rgba(3, 27, 78, 0.3), rgba(3, 27, 78, 0.3)),
    url(../img/feature.jpg) left center no-repeat;
  background-size: cover;
}

.feature-row {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
}

.feature-item {
  border-color: rgba(0, 0, 0, 0.03) !important;
}

.experience .progress {
  height: 5px;
}

.experience .progress .progress-bar {
  width: 0px;
  transition: 3s;
}

.experience .nav-pills .nav-link {
  color: var(--dark);
}

.experience .nav-pills .nav-link.active {
  color: #ffffff;
}

.experience .tab-content hr {
  width: 30px;
}

/*** About ***/
.about-fact {
  width: 170px;
  height: 170px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

@media (min-width: 576px) {
  .about-fact.mt-n130 {
    margin-top: -130px;
  }
}

.btn-play {
  position: relative;
  display: block;
  box-sizing: content-box;
  width: 36px;
  height: 46px;
  border-radius: 100%;
  border: none;
  outline: none !important;
  padding: 18px 20px 20px 28px;
  background: var(--bs-primary);
}

.btn-play:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 90px;
  height: 90px;
  background: var(--bs-primary);
  border-radius: 100%;
  animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 90px;
  height: 90px;
  background: var(--bs-primary);
  border-radius: 100%;
  transition: all 200ms;
}

.btn-play span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  left: 3px;
  border-left: 30px solid #ffffff;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
    opacity: 0;
  }
}

.modal-video .modal-dialog {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0 auto;
}

.modal-video .modal-body {
  position: relative;
  padding: 0px;
}

.modal-video .close {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0px;
  top: -30px;
  z-index: 999;
  font-size: 30px;
  font-weight: normal;
  color: #ffffff;
  background: #000000;
  opacity: 1;
}

/*** Service ***/
.container-service {
  position: relative;
}

.container-service::before {
  position: absolute;
  content: "";
  background: #00def024;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  clip-path: polygon(0 0, 100% 0, 100% 30%, 0 70%);
  z-index: -1;
}

.service-item {
  position: relative;
  height: 100%;
  padding: 20px 17px;
  background: var(--bs-white);
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.05);
}

.service-item::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  left: 0;
  bottom: 0;
  transition: 0.5s;
  background: #0b7755c2;
}

.service-item:hover::before {
  height: 100%;
  top: 0;
}

.service-item * {
  position: relative;
  transition: 0.5s;
  z-index: 1;
}

.service-item:hover h5,
.service-item:hover p {
  color: var(--bs-white);
}

.service-item:hover .icon-box-primary::before {
  background: var(--bs-dark);
}

.service-item:hover .icon-box-primary i {
  color: var(--bs-white) !important;
}

/*** Team ***/
.container-team {
  position: relative;
}

.container-team::before {
  position: absolute;
  content: "";
  background: #1b5ed71c;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  clip-path: polygon(0 70%, 100% 30%, 100% 100%, 0% 100%);
  z-index: -1;
}

.team-item {
  background: var(--bs-white);
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.05);
}

.team-item .team-social {
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  transition: 0.5s;
  background: var(--bs-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-item:hover .team-social {
  width: 100%;
  left: 0;
}

.team-item .team-social .btn {
  opacity: 0;
  transition: 0.5s;
}

.team-item:hover .team-social .btn {
  opacity: 1;
}

/*** Testimonial ***/
.testimonial {
  background: linear-gradient(rgba(3, 27, 78, 0.3), rgba(3, 27, 78, 0.3)),
    url(../img/testimonial.jpg) left center no-repeat;
  background-size: cover;
}

.testimonial-item img {
  width: 60px !important;
  height: 60px !important;
  border-radius: 60px;
}

.testimonial-carousel .owl-nav {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  margin-left: 15px;
  color: var(--bs-primary);
  font-size: 30px;
  line-height: 0;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  color: var(--bs-dark);
}

/*------------------floatcall-----------------*/

.floatcall{
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: solid 1px #00285d;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  position: fixed;
  left: 30px;
  bottom: 60px;
   background-color: #f0f0f0;
  cursor: pointer;
}

.floatcall i{

  color: #b90404;
  font-size: 24px;
}



/*----------------whatsappfloat------------------*/


.whatsappfloat{

  width: 60px;
  height: 60px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: solid 1px #00285d;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  position: fixed;
  left: 30px;
  bottom: 150px;
  background-color: #f0f0f0;
  cursor: pointer;

}


.whatsappfloat i{

    color: #06d806;
  font-size: 24px;
}




/*** Contact ***/
@media (min-width: 992px) {
  .contact-info::after {
    position: absolute;
    content: "";
    width: 0px;
    height: 100%;
    top: 0;
    left: 50%;
    border-left: 1px dashed rgba(255, 255, 255, 0.2);
  }
}

@media (max-width: 991.98px) {
  .contact-info::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0px;
    top: 50%;
    left: 0;
    border-top: 1px dashed rgba(255, 255, 255, 0.2);
  }
}

.contact_form {
  padding: 20px;
  background-color: #00285d;
}

.btn-contact {
  background-color: #fff;
  border: 1px solid #fff;
  color: #000;
}

.btn-contact:hover {
  background-color: #fff;
  color: #008080;
}

/*** Footer ***/
.footer {
  /*background: linear-gradient(rgba(3, 27, 78, .3), rgba(3, 27, 78, .3)), url(../img/footer.png) center center no-repeat;*/
  background-size: contain;
  background-color: #00285d;
}

@media (min-width: 992px) {
  .footer::after {
    position: absolute;
    content: "";
    width: 0px;
    height: 100%;
    top: 0;
    left: 50%;
    border-left: 1px dashed rgba(255, 255, 255, 0.2);
  }


}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: rgb(255 251 252);
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: rgba(255, 255, 255, 0.5);
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: #444468;
  letter-spacing: 1px;
  box-shadow: none;
}

.copyright {
  border-top: 1px dashed rgba(255, 255, 255, 0.2);
  background-color: #b49900;
}

.copyright a {
  color: var(--bs-white);
}

.copyright a:hover {
  color: var(--bs-primary);
}

.custom-btn {
  width: 150px;
  height: 40px;
  color: #fff;
  border-radius: 5px;
  padding: 10px 25px;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, 0.5),
    7px 7px 20px 0px rgba(0, 0, 0, 0.1), 4px 4px 5px 0px rgba(0, 0, 0, 0.1);
  outline: none;
}

.text-black {
  color: #000 !important;
}

/* 7 */
.btn-7 {
  background: linear-gradient(0deg,
      rgba(255, 151, 0, 1) 0%,
      rgba(251, 75, 2, 1) 100%);
  line-height: 42px;
  padding: 0;
  border: none;
}

.btn-7 span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.btn-7:before,
.btn-7:after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  background: rgba(251, 75, 2, 1);
  box-shadow: -7px -7px 20px 0px rgba(255, 255, 255, 0.9),
    -4px -4px 5px 0px rgba(255, 255, 255, 0.9),
    7px 7px 20px 0px rgba(0, 0, 0, 0.2), 4px 4px 5px 0px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.btn-7:before {
  height: 0%;
  width: 2px;
}

.btn-7:after {
  width: 0%;
  height: 2px;
}

.btn-7:hover {
  color: rgba(251, 75, 2, 1);
  background: transparent;
}

.btn-7:hover:before {
  height: 100%;
}

.btn-7:hover:after {
  width: 100%;
}

.btn-7 span:before,
.btn-7 span:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background: rgba(251, 75, 2, 1);
  box-shadow: -7px -7px 20px 0px rgba(255, 255, 255, 0.9),
    -4px -4px 5px 0px rgba(255, 255, 255, 0.9),
    7px 7px 20px 0px rgba(0, 0, 0, 0.2), 4px 4px 5px 0px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.btn-7 span:before {
  width: 2px;
  height: 0%;
}

.btn-7 span:after {
  height: 2px;
  width: 0%;
}

.btn-7 span:hover:before {
  height: 100%;
}

.btn-7 span:hover:after {
  width: 100%;
}

#cover {
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

/* 2/2 */
#cover>img {
  float: left;
  border: 2px solid #4029e4;
  width: 45%;
  margin: 1.66%;
}

@media (max-width: 678px) {
  #cover>img {
    border: 2px solid #4029e4;
    width: 100%;
    margin: 1.66%;
  }

    .cancertreatmentimg img{

    height: 200px !important;
  }
}

/* 2/2 */

/* Appointment Button */
.appointment-btn {

  .btn:link,
  .btn:visited {
    text-transform: lowercase;
    text-decoration: none;
    padding: 7px 18px;
    display: inline-block;
    border-radius: 100px;
    transition: all 0.2s;
    position: absolute;
    background-color: #3133b9;
  }

  .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }

  .btn:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  }

  .btn-white1 {
    background-color: #383fdb;
    color: #fff;
  }

  .btn::after {
    content: "";
    display: inline-block;
    height: 100%;
    width: 100%;
    border-radius: 100px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all 0.4s;
  }

  .btn-white::after {
    background-color: #383fdb;
  }

  .btn:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0;
  }

  .btn-animated {
    animation: moveInBottom 5s ease-out;
    animation-fill-mode: backwards;
  }

  @keyframes moveInBottom {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }

    100% {
      opacity: 1;
      transform: translateY(0px);
    }
  }
}

/* aPPOINTMENT bUTTON /*

/* LIGHT Box Gallery */

.light-box-gallery {
  background-color: #00285d;

  .lightboxpreview {
    transition: all 0.3s linear;
    padding-top: 60%;
    cursor: pointer;
    background-size: cover;
  }

  .lightbox-content {
    max-height: 75vh;
    height: 75vh;
    width: 100%;
    max-width: 1000px;
  }

  .lightbox-close {
    cursor: pointer;
    margin-left: auto;
    position: absolute;
    right: -30px;
    top: -30px;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
  }

  .modal_inner_image {
    min-height: 400px;
    z-index: 1000;
  }

  .modal-content {
    width: 100%;
  }

  .modalscale {
    transform: scale(0);
    opacity: 0;
  }

  .lightbox-container,
  .lightbox-btn,
  .lightbox-image-wrapper,
  .lightbox-enabled {
    transition: all 0.4s ease-in-out;
  }

  .lightbox_img_wrap {
    padding-top: 0%;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 56%);
    border-radius: 6px;
  }

  .lightbox h4 {
    margin-top: 12px;
    margin-bottom: 0.5rem;
    font-family: "Red Rose", cursive;
    font-weight: 600;
    line-height: 1.2;
    color: #031b4e;
    font-size: 16px;
  }
}

.lightbox-enabled:hover {
  transform: scale(1.1);
}

.lightbox-enabled {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  object-fit: cover;
  cursor: pointer;
}

.lightbox-container {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(0 0 0 / 79%);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
}

.lightbox-container.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-image-wrapper {
  display: flex;
  transform: scale(0);
  align-items: center;
  justify-content: center;
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
}

.lightbox-container.active .lightbox-image-wrapper {
  transform: scale(1);
}

.lightbox-btn,
#close {
  color: white;
  z-index: 9999999;
  cursor: pointer;
  position: absolute;

  font-size: 50px;
}

.lightbox-btn:focus {
  outline: none;
}

.left {
  left: 50px;
}

.right {
  right: 50px;
}

#close {
  top: 25px;
  right: 79px;
}

.lightbox-image {
  width: 100%;
  -webkit-box-shadow: 5px 5px 20px 2px rgba(0, 0, 0, 0.19);
  box-shadow: 5px 5px 20px 2px rgba(0, 0, 0, 0.19);
  max-height: 95vh;
  object-fit: cover;
}

@keyframes slideleft {
  33% {
    transform: translateX(-300px);
    opacity: 0;
  }

  66% {
    transform: translateX(300px);
    opacity: 0;
  }
}

.slideleft {
  animation-name: slideleft;
  animation-duration: 0.5s;
  animation-timing-function: ease;
}

@keyframes slideright {
  33% {
    transform: translateX(300px);
    opacity: 0;
  }

  66% {
    transform: translateX(-300px);
    opacity: 0;
  }
}

.slideright {
  animation-name: slideright;
  animation-duration: 0.5s;
  animation-timing-function: ease;
}

.bg-white-gradient {
  background: linear-gradient(to bottom,
      rgb(255, 255, 255) 60%,
      rgba(255, 255, 255, 0));
}

/* bootstrap overwrites */
.accordion-button {
  /*accordion button that is active*/
  font-weight: bold;
  background: transparent !important;
  /* border : 0.2px solid; */
}

.accordion-button.collapsed {
  /*accordion button that is not active*/
  font-weight: semibold;
  color: #555;
}

.accordion-body {
  background: #f7f7f7;
}

/** Profile ABout Started **/
.sidebar-page-container {
  position: relative;
  padding: 0px 0px 30px;
}

.sidebar-side {
    background-image: url(../img/pattern/pattern-33.png);
    background-repeat: no-repeat;
    background: linear-gradient(180deg, #00285da5 50%, #0155c2 80%);
}

.auto-container {
  position: static;
  max-width: 1200px;
  padding: 0px 15px;
  margin: 0 auto;
}

/* .detail{
	box-shadow: -2px 2px 3px 0px #0000003d;
} */

.detail_lower-content {
  position: relative;
  padding: 30px 30px 30px;
}

.author-box {
  position: relative;
  /* overflow: hidden; */
  padding: 25px 77px;
  background-color: rgb(250 239 232 / 33%);
  margin-bottom: 50px;
}

.expert_widget {
  position: relative;
  overflow: hidden;
  padding: 30px 30px 30px;
  background-position: center top;
  background-repeat: no-repeat;
  /* background-color: #444468; */
}

@media only screen and (max-width: 678px) {
  .expert_widget {
    position: relative;
    overflow: hidden;
    padding: 35px 30px 0px;
    background-position: center top;
    background-repeat: no-repeat;
    /* background-color: #9A0E2B; */
  }
}

.author-box .author-inner {
  position: relative;
  padding-left: 190px;
}

@media only screen and (max-width: 678px) {
  .author-box .author-inner {
    position: relative;
    padding-left: 0px;
    padding-top: 15px;
  }
}

@media only screen and (max-width: 479px) {
  .author-box {
    padding: 20px 20px;
  }
}

.author-box .thumb {
  position: absolute;
  left: -20px;
  top: 1px;
  width: 190px;
  overflow: hidden;
  border-radius: 50%;
  border: 8px solid #00285d;
}

@media only screen and (max-width: 678px) {
  .author-box .thumb {
    position: absolute;
    left: 0px;
    top: -5px;
    width: 100%;
    overflow: hidden;
    border-radius: 50%;
    border: 8px solid #444468;
    /* padding-bottom: 14px; */
  }
}

@media only screen and (max-width: 599px) {

  .author-box .thumb,
  .sidebar-page-container .comments-area .comment-box .author-thumb {
    position: relative;
    margin-bottom: 20px;
  }

  .sidebar {
    font-size: 40px !important;
  }

  /* .comments-area{
        padding: 0px !important;
    } */
}

.author-box .thumb img {
  display: block;
  width: 100%;
  height: auto;
}

.author-box .name {
  display: block;
  font-weight: 700;
  font-size: 48px;
  color: #00285d;
  padding-top: 5%;
  margin-bottom: 10px;
  font-family: "kanit" serif;
}

.sidebar {
  font-weight: 600;
  font-size: 61px;
  color: #ffd700;
  margin-bottom: 15px;
  font-family: "phudu" serif;
}

.sidebarh3 {
  font-weight: 800;
  font-size: 35px !important;
  color: #fff;
  margin-bottom: 15px;
  font-family: "phudu" serif;
}

.author-box .name1 {
  display: block;
  font-weight: 600;
  font-size: 17px;
  color: #444468;
  margin-bottom: 15px;
  font-family: "lato" serif;
}

.ml {
  margin-left: 58px !important;
}

.author-box .text {
  line-height: 28px;
  color: var(--color-three);
  font-size: var(--font-14);
  margin-bottom: var(--margin-bottom-15);
}

.sidebar-page-container .comments-area .comment {
  position: relative;
  min-height: 120px;
  font-size: var(--font-14);
  padding: 0px 0px 0px 91px;
}

@media only screen and (max-width: 678px) {
  .sidebar-page-container .comments-area .comment {
    position: relative;
    min-height: 120px;
    font-size: var(--font-14);
    padding: 0px 0px 0px 0px;
  }

  .about-btncont {
    display: block;
    margin-left: 20%;
  }
}

.sidebar-page-container .comments-area .comment-box .author-thumb {
  position: absolute;
  left: 32px;
  position: absolute;
  content: counter(xs-counter) ".";
  color: #ff7a5f;
  font-size: 64px;
  font-weight: 400;
  display: block;
  line-height: 0.8;
  bottom: 0;
  top: 0;
  margin: auto;
  z-index: 1;
  opacity: 0.2;
}

@media only screen and (max-width: 678px) {
  .sidebar-page-container .comments-area .comment-box .author-thumb {
    position: absolute;
    left: 8px;
    position: absolute;
    content: counter(xs-counter) ".";
    color: #ff7a5f;
    font-size: 50px;
    font-weight: 400;
    display: block;
    line-height: 0.8;
    bottom: 0;
    top: 0;
    margin: auto;
    z-index: 1;
    opacity: 0.2;
  }
}

.related_posts h4 {
  position: relative;
  margin-bottom: 25px;
  font-family: merriweather;
  padding-left: 0px;
  font-size: 25px;
  color: #00285d;
}

.sidebar-page-container .comments-area .comment-box .text {
  line-height: 28px;
  font-size: 16px;
  color: rgb(34 58 102 / 84%);
  margin-bottom: 26px;
  font-family: "montserrat", sans-serif;
  text-align: justify;
  width: 95%;
}

/** Profile About Ends **/

.sec-title_heading h2 {
  color: #223a66;
  margin: 0px 0px 32px 0px;
  font-family: "phudu", serif !important;
  font-size: 48px;
  font-weight: 900;
  line-height: 54px;
  letter-spacing: -0.96px;
}

.text-about {
  line-height: 28px;
  font-size: 16px;
  color: rgb(34 58 102 / 84%);
  margin-bottom: 26px;
  font-family: "montserrat", sans-serif;
}

.card {
  border-radius: 5px;
  box-shadow: 0px 0px 10px rgb(0 0 0 / 56%);
  height: 100%;
  margin-top: 1rem !important;
  transition: all 0.5s ease-in-out;
}

.card-title {
  font-family: "poppins";
  font-weight: 700;
  text-transform: uppercase !important;
  color: #41927e !important;
}

.card img:hover {
  transform: scale(1.1);
}

.card:hover {
  transform: scale(1.1);
  box-shadow: 0px 0px 20px rgb(0 0 0 / 56%);
}

.card img {
  transition: all 0.5s;
  height: 250px;
  object-fit: cover;
}

.card-img,
.card-img-top {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.card-img,
.card-img-top,
.card-img-bottom {
  width: 100%;
}

.s-card {
  background-color: #41927e;
  color: #fff !important;
  padding: 5px;
  border: 1px solid #4e8241;
  transition: all 0.5s ease-in-out;
}

.lightbox-enabled {
  width: 100%;
  height: 100%;
  position: relative;
  top: 0;
  object-fit: cover;
  cursor: pointer;
}

/*-----------------service---------------*/

.text-yellow {

  color: #ffd700;
}

.text-yellow-bg {

  background-color: #b49900;
}

.text-yellow-bg i {

  color: white !important;
}

.text-green {

  color: #00285d;
}

.accordion-button:not(.collapsed) {

  color: #00285d !important;
}

/*----------achivement----------*/

.achivementbg {

  margin: 0px;
  padding: 50px 0px;
  background-color: #e4e4e4;
}


.achivementtext {

  margin: 0px;
  padding: 0px;
  text-align: center;

}

.achivementtext h2 {

  color: #008080;
  font-size: 2rem;
}

.achivementtbox {

  margin: 0px;
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  display: flex;
  gap: 15px;
}

.achivementtbox h6 {

  color: rgba(0, 128, 128, 0.575);
  font-size: 54px;
}

.achivement-width {

  margin: 0 auto;
  width: 90%;
}

.achivement-width p {

  font-size: 15px;
  color: #4e4e4e;

}

.achivement-height {

  height: 75px;
}

/*-----------award--------------*/


.awardbg {

  margin: 0px;
  padding: 40px 0px;
  background-color: rgba(0, 128, 128, 0.575);

}

.awardtextcenter {

  margin: 0px;
  padding: 0px;
  text-align: center;
}

.awardtextcenter h2 {

  color: #008080;
  font-size: 32px;
}

.awardboxmain {

  margin: 0px;
  padding: 20px;
  background-color: white;
  border-radius: 0 0 0px;

}

.awardboxleft {

  margin: 0px;
  padding: 0px;
  width: 100%;
  display: block;
}

.awardright {

  margin: 0px;
  padding: 0px;
  width: 100%;
  display: block;
  border: dotted 2px #383838;

}

.awardrighttext {

  margin: 0px;
  padding: 0px;
  text-align: center;
  margin-top: 55px;
}

.awardrighttext p {

  color: #000;
  font-size: 32px;
  text-align: center;
  font-weight: 600;
}


/*------------------------feq--------------------*/


.feqleft {

  margin: 0px auto;
  padding: 0px;
  text-align: center;
}

.feqleft i {

  font-size: 420px;
  color: #008080;
}

.bg-breadcrumb {

  background-color: #00285d;
}

/*--------------aboutuspage--------------*/

.testbg {

  margin: 0px;
  padding: 50px 0px;
  width: 100%;
  display: block;
  background-color: #fbfff5;
}

.testbg1 {

  background-color: #00285d;
  padding: 40px 0px;
  margin: 0px;

}

.testbg1 h2 {

  color: white;
  text-align: center;
  font-size: 32px;
}

.testbg2 {

  margin: 0px auto;
  padding: 0px;
  margin-top: 20px;
  background-color: white;
  width: 60%;
}

.testboxtext {

  margin: 0px;
  padding: 20px ;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 40px;
}

.testboxtext p {

  color: #000000;
  font-size: 15px;
}

.testboxtext h6 {

  color: #00285d;
  font-size: 15px;
}


.testimonialabout .owl-prev ,.testimonialabout .owl-next {

  background-color: #b49900 !important;
  width: 60px !important;
  height: 60px !important;
  color: white !important;
}


.testimonialabout .owl-prev {

  position: absolute !important;
  top: 50% !important;
  left: -20px !important ;
  border: solid 1px white !important;
}

.testimonialabout .owl-next{

  position: absolute !important;
  top: 50% !important;
  right:  -20px !important ;
  border: solid 1px white !important;
}

/*-----------professionalexperience-----------*/


.professionalexperiencebg {

  margin: 0px;
  padding: 40px 0px;
  background-color: #f0f0f0
}

.professionalexperientextheader {

  margin: 0px;
  padding: 0px;
  text-align: center;

}

.professionalexperientextheader h2 {

  color: #00285d;
  font-size: 32px;
  font-weight: 400;
  text-align: center;
}

.professionalexperience-left {

  margin: 0px;
  padding: 20px;

}

.professionalexperience-left1 {

  margin: 0px;
  padding: 31px;
  margin: 0px 0px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  display: flex;
  gap:5px;

}

.professionalexperience-left1 i{

  color: #b49900;
}

/* .professionalexperience-left1 p {

  height: 42px;
} */

/* .mt-20-aboutus{

  padding-top: 20px;
} */




/*-----------publication&research----------*/

.publicationresearchbg {


  background-color: #f7eeef;
  padding: 50px 0px;
  margin: 0px;

}

.publicationheadertext {

  margin: 0px;
  padding: 0px;
  text-align: center;

}

.publicationheadertext h2 {

  color: #008080;
  font-size: 32px;
  font-weight: 500;
}

.publicationresearchbg1 {

  margin: 0px auto;
  padding: 0;
  width: 100%;
}


.publicationresearchbg1main {

  margin: 10px 0px;
  padding: 21px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  width: 100%;
  background-color: white;
}

.publicationresearchbg1main h6{

  color: #008080;
  font-family: "Rowdies", sans-serif;
  font-weight: 300;
  font-size: 18px;
  margin-bottom: 12px;
}

.publicationresearchbg1main p{

  font-size: 15px;
  color: #252525;
}




  /*--------PublicHealthCampaigns------*/

  .PublicHealthCampaignsbg{

 
    padding: 0;
    padding-top: 0px;
    margin-top: 0px;
  }

  .PublicHealthCampaignbox{


    margin: 0px;
    padding: 0px;

  }


  .PublicHealthCampaignbox1{

    margin: 10px 0px;
    padding: 0px;
 

  }

  .PublicHealthCampaignbox1 p{

    color: #1c1c1c;
    font-size: 20px;
    font-family: "Yrsa", serif;
    font-weight: 500;
  }
  .PublicHealthCampaignbox1 p span{

    color: rgba(0, 128, 128, 0.534);
    font-size: 28px;
    vertical-align: middle;
 
  }

  .mt-text-height{

    margin-top: 6px;
  }

  /*-----------workshop-------------*/

  .workshopboxmain{

    margin: 0px;
    padding: 0px;
    margin-bottom: 60px;
  }

.workshopbox{


  padding: 13px;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  width: 60%;
  margin: 15px auto;
  display: flex;
  gap: 20px;
}

.workshopboxnumber{

  width: 40px;
  height: 40px;
  background-color: #008080;
  display: flex;
  justify-content: center;
  /* align-items: center; */
}

.workshopboxnumber p{

  color: white !important;
  font-size: 15px !important;
  font-family: "Rowdies", sans-serif;
  font-weight: 300;
  margin-top: -10px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  
}

.workshopbox p{

  color: #2c2c2c;
  font-size: 15px;
  text-align: left;
  margin: 0;
  padding: 0;
  margin-top: 10px;
}

/*--------Professional Affiliations------ */


.professionalaff{

  margin: 0px;
  padding: 10px;
  background-color: white;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.professionalaff1{

  margin: 10px 0px;
  padding: 0px;
  border-bottom: dotted 1px #202020;
}

.professionalaff1:last-child{
  border-bottom: none;
}

.professionalaff1 p{

  font-size: 15px;
  color: #003b3b;
}


.aboutmargin-5{
    
    margin:3rem;
}


.about-width-service{

  margin: 0 auto;
  width: 66%;
}

.about-width-preventive{
    
    width:50%;
    margin:0 auto;
}


/*-------treatmentpage-----------------*/

.treatmentbg{

  margin: 0px;
  padding: 40px 0px;
  background-color: #F7EEEF;
}

.treatmentleft{

  margin: 0px;
  padding: 0px;
  width: 100%;
  display: block;
}

.treatmentleft img{
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.treatmentright{

  margin: 0px;
  padding: 0px;
}

.treatmentright p{

  color: #003b3b;
  font-size: 15px;
}


.treatmentright p::first-letter{

  font-size: 30px;
  color: #003b3b;
  width: 20px;
  height: 0px;
  padding: 5px 0px;
  margin: 0px 5px;
  initial-letter: 2;
}

/*------------treatmentdetails-----------*/

.treatmentdetails{

padding: 50px 0px;
margin: 0px;
background-color: #f0f0f0;
}

.treatment-details-width{

  width: 60%;
  margin: 0 auto;
}

.treatmentdetailstext{

  margin: 0px;
  padding: 0px;
}

.treatmentdetailstext h2{

  color: #003b3b;
  font-size: 32px;
  font-family: "STIX Two Text", serif;
}

.treatmentdetailstext p{

  color: #333333;
  font-size: 18px;
  font-family: "Libre Baskerville", serif;
    padding: 0px 0px;
}

.treatmentdetailstext1{

  margin: 20px 0px;
  padding: 0px;
}

.treatmentdetailstext1main{

  margin: 0px;
  padding: 0px;
}

.treatmentdetailstext1main ul{

  margin: 0px;
  padding: 0px;
  display: block;
}

.treatmentdetailstext1main ul li{

margin: 0px;
padding: 10px 0px;
display: block;
list-style: none;

}

.treatmentdetailstext1main ul li p{

  color: #003b3b;
  font-size: 18px;
  font-family: "Libre Baskerville", serif;
}



/*-----SurgicalOncologistsdo ----------*/


.SurgicalOncologistsdobg{

  margin: 0px;
  padding: 50px 0px;
  width: 100%;
  display: block;
  background-color: #F7EEEF;
}

.SurgicalOncologistsdobgtext{

  margin: 0;
  padding: 0px;
  text-align: center;

}

.SurgicalOncologistsdobgtext h2{

  color: #003b3b;
  font-family: "STIX Two Text", serif;
  font-size: 32px;
}

.SurgicalOncologistsdobgtext p{

  color: #333333;
  font-family: "Libre Baskerville";
  font-size: 18px;
}


.SurgicalOncologistsdopic{

  margin: 20px 0px;
  padding: 0;
}

.SurgicalOncologistsdopic1{

  margin: 0px;
  padding: 0;
}

.SurgicalOncologistsdopic1 img{
  width: 100%;
  display: block;
  height: 350px;
  object-fit: cover;
}


/*----------treatmentfeq-----------*/

.treatmentbox{

  margin: 0px;
  padding: 0px;
  width: 60%;
  margin:0 auto;
}

.treatmentheadertext{

  margin: 0px;
  padding: 0px;
  margin-top: 10px;
  margin-bottom: 20px;
  text-align: center;
}

.treatmentheadertext h2{

  color: #003b3b;
  font-size: 32px;
  font-family: "STIX Two Text", serif;
}

.treatmentheadertext p{

  color: #333333;
  font-family: "Libre Baskerville";
  font-size: 18px;
}
.treatmentbtn{

  margin-top: 40px;
}


/*------------gallertypage----------------*/


.gallerybox{

  margin: 0px;
  padding: 50px 0px !important;
  width: 100%;
  display: block;
  background-color: #F7EEEF;
}

.breadcrumb-item + .breadcrumb-item::before{

  color: #fff !important;
}


.gallerybox {

  margin: 0px;
  padding: 0px;
  width: 100%;
  display: block;
}

.gallerybox1 {

  margin: 0px;
  padding: 0px;
  margin-top: 30px;
}

.gallerybox1 img {


  width: 100%;
  height: 300px;
  border-radius: 15px;
  object-fit: cover;
}


/*===============================treatmentpage=============================*/


/*------------------------cancertreatment------------------*/


.cancertreatmentbg{

  margin: 0px;
  padding: 60px 0px;
  background: linear-gradient(#dddddd , #fff);
}

.cancertreatmentimg{

  margin: 0px;
  padding: 0px;
  width: 100%;
  display: block;
}


.cancertreatmentimg img{
  width: 100%;
  display: block;
  height: 400px;
  object-fit: cover;
}

.cancertreatmenttext{

  margin: 0px;
  padding: 0px;
  width: 100%;
  display: block;
}

.cancertreatmenttext h4{

  color: #b49900;
  font-size: 24px;
}

.cancertreatmenttext1{

  margin-top: 20px;
  padding: 0px;
}

.cancertreatmenttext1 ul{

  margin: 0px;
  padding: 0px;
  display: block;
}

.cancertreatmenttext1 ul li{

  margin: 0px;
  padding: 6px 0px;
  list-style: none;
}

.cancertreatmenttext1 ul li p{

  margin: 0px;
  padding: 0px;
  font-size: 15px;
}

.cancertreatmenttext1 ul li p i{

  font-size: 8px;
  vertical-align: middle;
}


/*-----------------------neurology-------------------*/


.neurologybg{

  margin: 0px;
  padding: 60px 0;
  width: 100%;
  display: block;
  background: linear-gradient(#cde7ff , #fff);
}



@media(max-width:991px){
    
.aboutmargin-5{
    
    margin:0rem;
}

.related_posts h4{
    margin-top:40px;
}

.about-width-preventive{
    
    width:100%;
}

.workshopbox{
    
    width:100%;
}

  .testimonialabout .owl-prev, .testimonialabout .owl-next{
    width: 30px !important;
    height: 30px !important;
  }

  .treatment-details-width{

    width: 100%;
  }

  .treatmentbox{
    width: 93%;
    margin: 0 auto;
  } 

  .SurgicalOncologistsdopic1 img{

    height: 320px;
  }

  .about-width-service{

    width: 95%;
margin: 0 auto;

  }

  .sidebar-page-container .comments-area .comment-box .text{

    margin-bottom: 0px;
  }
  .related_posts h4{

    font-size: 23px;
  }

  .aboutuspagetext{

    margin-top: -11px !important;
  }

  .workshopboxmain{

    margin-bottom: 10px;
  }

.professionalpart2-height{

  margin-top: -40px !important;
}

.publicationpart2-height{

  margin-top: -10px !important;
}
.treatmentdetails{

  padding-bottom: 10px !important;
}

.whatdo-pad-bt{

  padding-bottom: 30px !important;
}

.mostpopular-padbt{

  padding-bottom: 40px !important;
}
.comments-area{
  padding: 0px 40px ;
}
.PublicHealthCampaignbox{

  width: 95%;
  margin: 0 auto;
}
.w-prevent-text{

  width: 99%;
  margin: 0 auto;
}

.sidebar-page-container .comments-area .comment-box .text{
  width: 100%;
}

.testbg2{
  width: 100%;

}
.testbg1{

  padding: 0px 20px;
  padding-bottom: 40px;
}

.inner-column p {
    font-size: 22px !important;
    font-family: "montserrat";
    display:none;
}
    .banner-section .content-column h2 {
        position: relative;
        font-weight: 700;
        color: #444468;
        line-height: 1.2em;
        font-size: 41px;
        margin-top: 20px;
        margin-bottom: 2opx;
    }
}