@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

a {
  text-decoration: none;
  color: #000;
  font-family: "Montserrat", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
}

section.section {
  padding: 60px 0;
}

.main-heading h2 {
  font-size: 35px;
  font-weight: 600;
  color: #2c67b2;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 5px;
  position: relative;
}

.main-heading-light h2 {
  font-size: 35px;
  font-weight: 600;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 5px;
  position: relative;
}

.section-tag span {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #054870;
  font-weight: 600;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.section-tag-light span {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.section-tag span::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: #054870;
}

.section-tag-light span::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: #ffffff;
}

.main-heading-light h2 span {
  color: #fccf0a;
}

.main-heading-light h3 {
  color: #fccf0a;
  position: relative;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  display: inline-block;
}

.main-heading h2 span {
  font-size: 35px;
  color: #111112;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 20px;
  text-align: left;
  position: relative;
}

.main-heading h3 {
  position: relative;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: #000000;
  display: inline-block;
}

/* .main-heading h3::before {
    content: '';
    position: absolute;
    background: #333333;
    width: 100%;
    height: 1px;
    top: 100%;
    left: 0;
} */

.sub-heading-light p {
  font-size: 15px;
  line-height: 22px;
  color: #ffffff;
  margin-bottom: 16px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
}

.sub-heading p {
  font-size: 16px;
  line-height: 22px;
  color: #000;
  margin-bottom: 16px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
}

.main-list ul li strong {
  font-family: "Montserrat", sans-serif;
}

.main-list ul li {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: #000;
  margin-bottom: 5px;
  list-style: none;
  position: relative;
  font-family: "Montserrat", sans-serif;
  padding: 5px 0 0 30px;
}

.cancer-type-section .main-list ul {
  padding-left: 0;
}

.cancer-type-section .main-list ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 0;
}

.cancer-type-section .main-list ul li img {
  width: 40px;
  border: 1px solid #054870;
  padding: 5px;
  border-radius: 100%;
}

/* .main-list ul li::before {
  content: '';
  position: absolute;
  background: url(../img/cancer-type-li.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 35px;
  height: 35px;
  top: 0;
  left: -15px;
  border-radius: 100%;
} */

.main-list ul {
  margin-bottom: 10px;
  padding-left: 1rem;
}

.top-bar {
  background-color: #054870;
}

.top-bar ul {
  list-style: none;
  padding: 0;
  padding-left: 0;
}

.top-bar ul li a {
  display: inline-flex;
  align-items: center;
  font-size: 20px;
  color: #fff;
}


/* ================================== */
/* menu link */

.zx-nav-shell {
  position: relative;
}

/* burger */

.zx-burger-trigger {
  width: 30px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2000;
}

.zx-burger-trigger span {
  height: 3px;
  width: 100%;
  background: #2c64af;
  transition: .4s;
  border-radius: 30px;
}

/* burger animation */

.zx-burger-trigger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(10px);
}

.zx-burger-trigger.active span:nth-child(2) {
  opacity: 0;
}

.zx-burger-trigger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px);
}


/* panel */

.zx-panel-layer {
  position: fixed;
  top: 60px;
  right: -100%;
  width: 30%;
  height: auto;
  background: #ffffff;
  transition: .6s cubic-bezier(.77, 0, .175, 1);
  border: 2px solid #2b61aa;
  padding: 0;
  overflow: auto;
}

.zx-panel-layer.open {
  right: 0;
}


/* menu */

.menu-items {
  padding: 16px 0 130px 22px;
}

.zx-menu-core {
  list-style: none;
  padding: 0;
  margin: 0;
}

.zx-menu-core li {
  margin: 0 0;
  padding-top: 4px;
  margin-bottom: 4px;
}

.zx-menu-core a {
  color: #2d64af;
  font-size: 17px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: .3s;
  position: relative;
}

.zx-menu-core a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #2b61aa;
  transition: .5s;
}

.zx-menu-core a:hover {
  letter-spacing: 1px;
}

.zx-menu-core a:hover::before {
  width: 100%;
}


/* dropdown animation */

.zx-drop-layer,
.zx-subdrop-layer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  padding-left: 20px;
  width: 100% !important;
}

.zx-has-drop.active>.zx-drop-layer {
  max-height: 400px;
  position: unset;
  width: 100%;
  box-shadow: none;
  padding: 0 15px;
  background: #ebf4ff;
}

.zx-has-subdrop.active>.zx-subdrop-layer {
  max-height: 300px;
}


/* arrows */

.zx-has-drop>a::after,
.zx-has-subdrop>a::after {
  content: "+";
  float: right;
  transition: .3s;
  position: absolute;
  top: 0;
  right: -30px;
}

.zx-has-drop.active>a::after,
.zx-has-subdrop.active>a::after {
  transform: rotate(45deg);
}

.zx-menu-core:hover .zx-drop-layer {
  background-color: none;
  box-shadow: inherit;
  border-top: inherit;
  width: inherit;

}

.zx-drop-layer li {
  padding: 10px 0;
  border-bottom: 1px solid #fff;
  list-style: none;
}

.zx-menu-core {
  margin: 0 0;
}

.navik-header.sticky .zx-panel-layer {
  position: fixed;
  top: 100%;
}


/* ============ Custom CSS Start ============== */

@media (min-width: 1180px) and (max-width: 1550px) {}

.navik-menu>ul>li>a.navbar-button,
.navbar-button {
  padding: 8px 12px !important;
  background: #fccf0a;
  color: #000000;
  border: 1px solid #fccf0a;
  transition: .5s;
  font-weight: 500;
  font-size: 15px;
}

.navik-menu>ul>li>a.navbar-button:hover,
.navbar-button:hover {
  background: #fff;
}

.banner-form {
  background-color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  border-radius: 6px;
  padding: 15px 20px;
  position: relative;
  width: 400px;
  margin-left: auto;
}

.banner-form h2 {
  font-size: 22px;
  text-align: center;
  font-weight: 500;
  color: #2c67b2;
  margin-bottom: 5px;
}

.banner-form p {
  font-size: 15px;
  margin-top: 6px;
  margin-bottom: 16px;
  color: #464646;
  font-weight: 400;
  text-align: center;
}

.form-group {
  margin-bottom: 16px;
  margin-bottom: 1rem;
}

.banner-left-content h1 {
  color: #fff;
  font-size: 50px;
  margin-bottom: 20px;
  line-height: normal;
  font-weight: 600;
}

.banner-left-content p {
  color: #fff;
  font-size: 25px;
  margin-bottom: 20px;
  line-height: normal;
}

.banner-form .form-control,
.banner-form .form-select {
  border: 1px solid #00a2ff;
  font-size: 16px;
  border-radius: 4px;
  padding: 8px 10px;
}

.banner-form .form-control:focus,
.banner-form .form-select:focus {
  box-shadow: none;
}

.cta-section {
  background: #054870;
}

.cta-card .cta-card-top h4 {
  color: #fccf0a;
  font-size: 35px;
  font-weight: 600;
  position: relative;
  margin-bottom: 20px;
}

.cta-card .cta-card-top h4::before {
  position: absolute;
  content: '';
  bottom: -5px;
  left: 0;
  background: #fccf0a;
  width: 50%;
  height: 2px;
}

.card-ic img {
  width: 30px;
}

.card-ic {
  width: 10%;
}

.card-content p {
  font-size: 16px;
  color: #fff;
  margin-bottom: 0;
}

.card-content {
  width: 50%;
}

.cancer-type-section {
  background: url(../img/cancer-type-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.second-opinion-section {
  background: linear-gradient(90deg, rgba(5, 72, 112, 1) 61.5%, rgba(226, 242, 255, 1) 56%);
}

@media (min-width: 1180px) and (max-width: 1550px) {
  .second-opinion-section {
    background: linear-gradient(90deg, rgba(5, 72, 112, 1) 64.5%, rgba(226, 242, 255, 1) 56%);
  }
}

.second-opinion-card {
  border: 1px dashed #fff;
  border-radius: 5px;
  padding: 10px 15px;
  min-height: 165px;
}

.second-opinion-card h3 {
  color: #fccf0a;
  font-size: 18px;
}

.second-opinion-card p {
  font-size: 15px;
  color: #fff;
}

.numbering h5 {
  font-size: 16px;
  line-height: normal;
  margin-bottom: 0;
  padding: 4px 11px;
  background: #fccf0a;
  color: #054870;
  position: relative;
}

.bottom-card::before {
  background: #6991a9;
  content: '';
  position: absolute;
  top: 47%;
  right: 0;
  width: 68%;
  height: 2px;
}

.second-opinion-section .banner-form .form-control,
.banner-form .form-select {
  border: 1px solid #054870;
}

.doctor-card {
  background: #e2f2ff;
  padding: 10px;
  border-radius: 5px;
  height: 100%;
}

.doctor-card .doctor-img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: top;
  border-radius: 5px;
}

.doctor-content h3 {
  font-size: 20px;
  color: #054870;
  margin-bottom: 4px;
}

.doctor-content h5 {
  font-size: 15px;
  font-weight: 600;
}

.doctor-content p img {
  width: 22px;
  margin-right: 10px;
}

.doctor-content p {
  font-size: 15px;
  margin-bottom: 5px;
}

.main-button {
  display: inline-block;
  background: #f9be17;
  color: #054870;
  font-size: 15px;
  font-weight: 500;
  padding: 9px 30px;
  width: 265px;
  border-radius: 30px;
  text-align: left;
  position: relative;
}

.main-button i {
  color: #fff;
  font-size: 18px;
  position: absolute;
  background: #054870;
  width: 39px;
  height: 39px;
  border-radius: 30px;
  top: 1px;
  right: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-section {
  background: url('../img/testimonial-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.secondary-btn {
  background: #f9be17;
  color: #054870;
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.secondary-btn i {
  padding-left: 10px;
  border-left: 1px solid #fff;
  color: #054870;
  font-size: 20px;
}

.testimonial-right-part {
  position: relative;
  margin-bottom: -125px;
}

.owl-carousel.testi-slider .owl-nav button.owl-next,
.owl-carousel.testi-slider .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  background: #fff !important;
  color: #054870 !important;
  padding: 6px 14px !important;
  position: absolute;
  left: -20%;
  transition: .5s;
}

.owl-carousel.testi-slider .owl-nav button.owl-next:hover,
.owl-carousel.testi-slider .owl-nav button.owl-prev:hover {
  background: #fccf0a !important;
  color: #054870 !important;
}

.testi-slider .owl-prev {
  top: 38%;
}

.testi-slider .owl-next {
  top: 50%;
}

section.section.why-choose-section {
  background: url('../img/why-choose-bg.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 70px 0 70px;
}

.why-choose-card .card-content {
  width: 100%;
}

.why-choose-card .card-content h3 {
  color: #054870;
  font-size: 18px;
}

.why-choose-card .card-content p {
  font-size: 15px;
  color: #000000;
}

.why-choose-card .card-img-wrap{
  width: 70px;
  height: 70px;
  border-radius: 100%;
  border: 2px solid #fccf0a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  overflow: hidden;
  margin-bottom: 15px;
}

.why-choose-card .card-img-wrap img {
  width: 125px;
}

.center-section {
  background: url('../img/center-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.center-section .doctor-card {
  background: #fff;
}

.doctor-card .doctor-img img {
  height: 340px;
}

.center-section .doctor-content p img {
  width: 15px;
}

.footer {
  background: #054870;
  padding: 50px 0;
}

.row.gap-2 .navbar-button {
  width: 45%;
}

.bottom-footer {
  background: #054870;
  border-top: 1px solid #f9be17;
}

.doc-min-height {
  min-height: 157px;
}

.sticky-bar {
  display: none;
}

.sticky-bar {
  background-color: #fccf0a;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  z-index: 99;
  padding: 16px 14px;
}

.serve-card {
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 4px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s;
  background: #fff;
  position: relative;
}

.serve-card:hover {
  border-color: #054870;
  box-shadow: 0 12px 40px rgba(5, 72, 112, 0.12);
  transform: translateY(-4px);
}

.serve-card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(42, 127, 127, 0.1);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
}

.serve-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(42, 127, 127, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #054870;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  border: 1px solid #fccf0a;
}

.serve-card h5 {
  font-weight: 700;
  font-size: 1rem;
  color: #054870;
  margin-bottom: 0.7rem;
}

.serve-card p {
  font-size: 16px;
  color: #000;
  line-height: 1.7;
  margin: 0;
}

.section3-bg {
  background-color: #054870;
  background-image: url('../img/9559.jpg');
  background-size: cover;
  z-index: 1;
}

.section3-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #054870ab;
  z-index: -1;
}

.service-pill {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 4px;
  padding: 1.3rem 1.5rem;
  transition: all 0.25s;
  cursor: default;
}

.service-pill-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: #054870;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fccf0a;
  font-size: 1.1rem;
}

.service-pill span {
  font-weight: 700;
  font-size: 1rem;
  color: #054870;
  margin-bottom: 0;
}

.service-pill:hover {
  border-color: #ffffff;
  transform: translateX(4px);
  /* box-shadow: 0 4px 20px rgba(5, 72, 112, 0.08); */
}

.feature-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.feature-item-wrap .feature-item {
  margin-bottom: 25px;
}

.feature-item-wrap .feature-item .feature-icon {
  width: 70px;
  height: 70px;
  line-height: 80px;
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, .09);
  overflow: hidden;
  background: #fff;
  position: relative;
  top: 2px;
  display: flex;
  transition: .4s;
  border: 2px solid #fccf0a;
}

.feature-item-wrap .feature-item .feature-text {
  width: calc(100% - 90px);
  margin-left: 20px;
}

.feature-text h5 {
  font-size: 18px;
  line-height: 30px;
}

.why-choose-us-bg2 {
  background-image: linear-gradient(88deg, rgba(0, 0, 0, 0.329) 0%, rgba(0, 0, 0, 0.342) 64%), url('../img/why-choose-bg2.jpg');
  background-size: cover;
  background-repeat: no-repeat;
}

.why-choose-us-bg2 .main-list ul {
  padding-left: 0;
}

.why-choose-us-bg2 .main-list ul li {
  color: #fff;
  padding-left: 0;
}

.why-choose-us-bg2 .main-list ul li img {
  background: #fff;
  width: 45px;
  height: 45px;
  object-fit: contain;
  padding: 8px;
  border-radius: 100%;
  margin-right: 10px;

}


.servive-col {
  border-radius: 15px;
  box-shadow: rgb(99 99 99 / .2) 0 2px 8px 0;
  overflow: hidden;
  min-height: 280px;
  width: 100%;
  background: #fff
}

.service-img {
  margin: 10px;
  overflow: hidden;
  border-radius: 15px
}

.service-img img {
  height: 200px;
  object-fit: cover;
  width: 100%;
  border-radius: 15px;
  transition: .5s;
  object-position: top;
}

.service-content {
  padding: 15px;
  overflow: hidden
}

.service-content h2 {
  font-size: 17px;
  font-weight: 500;
  line-height: 25px;
  color: #054870;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0px;
}

.service-content.sub-heading p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0;
  font-size: 15px;
}

.servive-col:hover .service-img img {
  transform: scale(1.1)
}

.feature-icon img {
  width: 100%;
  padding: 14px;
}