@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&display=swap");
:root {
  --bs-secondry-color: #95c122;
}

body {
  color: var(--bs-black);
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  background-color: #fff;
}
body.open .navigation-menu__labels {
  translate: 0 0;
  visibility: visible;
}

a,
a:hover {
  color: var(--sr-body-color);
  text-decoration: none;
}

ul li,
p {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: 0.5px;
}
@media only screen and (max-width: 767.98px) {
  ul li,
  p {
    font-size: 14px;
  }
}

img {
  max-width: 100%;
}

::-webkit-scrollbar-corner {
  background-color: transparent;
}

::-webkit-scrollbar {
  width: 4px;
  background-color: var(--bs-white);
}

::-webkit-scrollbar-thumb {
  height: 50px;
  background: var(--bs-black);
}

::placeholder {
  color: var(--bs-black) !important;
  opacity: 1;
}

:-ms-input-placeholder {
  color: var(--bs-black) !important;
}

::-ms-input-placeholder {
  color: var(--bs-black) !important;
}

.text-color {
  color: #007a75 !important;
}

.bg-color {
  background-color: #007a75 !important;
}

.bg-light {
  background-color: var(--bs-gray-200) !important;
}

.bg-dark {
  background-color: var(--bs-dark) !important;
}

.bg-gradient {
  background-image: linear-gradient(90deg, #0f7956, #007a75) !important;
  background-color: #007a75;
}

.bg-gradient2 {
  background: radial-gradient(circle at 50% 48%, #0f7956 30%, #007a75 100%);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #007a75;
}

.validation {
  color: var(--bs-danger);
  font-size: 14px;
}

@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes glowing {
  0% {
    background-color: #01386e;
    -webkit-box-shadow: 0 0 3px #01386e;
  }
  50% {
    background-color: #ffc107;
    -webkit-box-shadow: 0 0 40px #ffc107;
  }
  100% {
    background-color: #01386e;
    -webkit-box-shadow: 0 0 3px #01386e;
  }
}
@-moz-keyframes glowing {
  0% {
    background-color: #01386e;
    -moz-box-shadow: 0 0 3px #01386e;
  }
  50% {
    background-color: #ffc107;
    -moz-box-shadow: 0 0 40px #ffc107;
  }
  100% {
    background-color: #01386e;
    -moz-box-shadow: 0 0 3px #01386e;
  }
}
@-o-keyframes glowing {
  0% {
    background-color: #01386e;
    box-shadow: 0 0 3px #01386e;
  }
  50% {
    background-color: #ffc107;
    box-shadow: 0 0 40px #ffc107;
  }
  100% {
    background-color: #01386e;
    box-shadow: 0 0 3px #01386e;
  }
}
@keyframes glowing {
  0% {
    background-color: #01386e;
    box-shadow: 0 0 3px #01386e;
  }
  50% {
    background-color: #ffc107;
    box-shadow: 0 0 40px #ffc107;
  }
  100% {
    background-color: #01386e;
    box-shadow: 0 0 3px #01386e;
  }
}
.list-icon-check {
  padding-left: 0;
  list-style: none;
}
.list-icon-check li {
  display: flex;
  align-items: center;
  margin-bottom: 0.25rem;
  padding-left: 10px;
}
@media only screen and (max-width: 767.98px) {
  .list-icon-check li {
    align-items: start;
    padding-left: 10px;
  }
}
.list-icon-check li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-size: 18px;
  font-weight: 900;
  color: var(--bs-black);
  position: relative;
  top: 0px;
  left: -10px;
}
@media only screen and (max-width: 767.98px) {
  .list-icon-check li::before {
    font-size: 14px;
  }
}

.list-icon {
  padding-left: 0;
  list-style: none;
}
.list-icon li {
  display: flex;
  align-items: start;
  margin-bottom: 0.25rem;
  padding-left: 10px;
}
@media only screen and (max-width: 767.98px) {
  .list-icon li {
    align-items: start;
    padding-left: 10px;
  }
}
.list-icon li::before {
  content: "\f101";
  font-family: "Font Awesome 6 Free";
  font-size: 18px;
  font-weight: 900;
  color: var(--bs-black);
  position: relative;
  top: 0px;
  left: -10px;
}
@media only screen and (max-width: 767.98px) {
  .list-icon li::before {
    font-size: 14px;
  }
}

.mobile-call-btn {
  display: none;
  padding: 10px 10px 8px;
  position: fixed;
  z-index: 9999;
  bottom: 15px;
  right: 15px;
  background: #ffc107;
  border-radius: 5%;
  width: auto;
  text-align: center;
  line-height: 1.1;
  transition: all 0.3s ease;
  animation: dropdownSlideIn 0.5s ease-in;
  animation-duration: 0.5s;
  -webkit-animation-duration: 0.3s;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
}
.mobile-call-btn.show {
  display: block;
}
.mobile-call-btn a {
  background: transparent;
  color: var(--bs-black);
  font-weight: bold;
}
.mobile-call-btn a i {
  font-size: 2rem;
  color: #007a75;
}

@keyframes dropdownSlideIn {
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0rem);
    opacity: 1;
  }
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
}
@-webkit-keyframes dropdownSlideIn {
  0% {
    -webkit-transform: transform;
    -webkit-opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    -webkit-opacity: 1;
  }
  0% {
    -webkit-transform: translateY(1rem);
    -webkit-opacity: 0;
  }
}
header.sticky {
  position: fixed;
  width: 100%;
  top: 0;
  background-color: #01386e;
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px, rgba(0, 0, 0, 0.07) 0px 2px 2px, rgba(0, 0, 0, 0.07) 0px 4px 4px, rgba(0, 0, 0, 0.07) 0px 8px 8px, rgba(0, 0, 0, 0.07) 0px 16px 16px;
}
header.sticky .header_wrapper {
  padding: 10px 0;
}
@media only screen and (max-width: 767.98px) {
  header.sticky .header_wrapper {
    display: block;
    text-align: center;
  }
}
@media only screen and (max-width: 767.98px) {
  header.sticky .header_wrapper .logo {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 767.98px) {
  header.sticky .header_wrapper .info {
    justify-content: center;
  }
}
header.sticky .header_wrapper .info a {
  background-color: #fff;
  border-color: #fff;
  color: #fff;
}
header.sticky .header_wrapper .info a i {
  background-color: #01386e;
  color: #fff;
}

header {
  position: absolute;
  width: 100%;
  z-index: 99;
}
header .header_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
@media only screen and (max-width: 767.98px) {
  header .header_wrapper {
    text-align: center;
    display: block;
  }
}
@media only screen and (max-width: 767.98px) {
  header .header_wrapper .logo {
    margin-bottom: 15px;
  }
  header .header_wrapper .logo img {
    width: 150px;
  }
}
header .header_wrapper .menu_top {
  position: relative;
}
@media only screen and (max-width: 767.98px) {
  header .header_wrapper .menu_top {
    display: none;
  }
}
header .header_wrapper .menu_top ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
header .header_wrapper .menu_top ul li {
  list-style: none;
}
header .header_wrapper .menu_top ul li a {
  padding-right: 40px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}
header .header_wrapper .info {
  display: flex;
}
@media only screen and (max-width: 767.98px) {
  header .header_wrapper .info {
    margin: auto;
    justify-content: center;
  }
}
header .header_wrapper .info a {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background-color: #01386e;
  border: 2px solid #01386e;
  padding: 3px;
  padding-right: 20px;
  border-radius: 30px;
  text-transform: uppercase;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  transition: 0.5s all;
  border: 2px solid #fff;
  animation: glowing 1500ms infinite;
}
@media only screen and (max-width: 767.98px) {
  header .header_wrapper .info a {
    font-size: 12px;
    padding: 2px;
    padding-right: 10px;
    letter-spacing: 0;
  }
}
header .header_wrapper .info a img,
header .header_wrapper .info a i {
  width: 40px;
  height: 40px;
  background-color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: #01386e;
  margin-right: 10px;
  border-radius: 50%;
}
@media only screen and (max-width: 767.98px) {
  header .header_wrapper .info a img,
  header .header_wrapper .info a i {
    width: 25px;
    height: 25px;
    font-size: 13px;
  }
}

.hero_section {
  position: relative;
  padding: 150px 0 140px;
  background-size: 100%;
  background-repeat: no-repeat;
  color: #fff;
}
@media only screen and (max-width: 767.98px) {
  .hero_section {
    padding: 150px 0 50px;
    background-size: cover;
  }
}
.hero_section::before {
  content: "";
  position: absolute;
  width: 1200px;
  height: 1100px;
  background-color: #01386e;
  border-radius: 150px;
  rotate: 45deg;
  top: -400px;
  z-index: -1;
}
@media only screen and (max-width: 767.98px) {
  .hero_section::before {
    width: 100%;
    height: 1300px;
    rotate: inherit;
    top: 0;
    border-radius: 0;
  }
}
.hero_section .content {
  position: relative;
}
@media only screen and (max-width: 767.98px) {
  .hero_section .content {
    z-index: 2;
    margin-bottom: 35px;
  }
}
.hero_section .content h1 {
  font-size: 80px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 7px;
  text-align: left;
  font-weight: 700;
  padding-bottom: 10px;
  margin-bottom: 10px;
  position: relative;
  color: #fff;
}
.hero_section .content h1 strong {
  color: #ffc107;
  text-shadow: none;
}
@media only screen and (max-width: 767.98px) {
  .hero_section .content h1 {
    font-size: 35px;
    letter-spacing: 3px;
  }
}
.hero_section .content h1 em {
  font-style: normal;
}
.hero_section .content h1 span {
  display: block;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: none;
  color: #ffc107;
}
@media only screen and (max-width: 767.98px) {
  .hero_section .content h1 span {
    font-size: 16px;
    letter-spacing: 1px;
  }
}
.hero_section .content .card_holder {
  display: flex;
  margin-top: 40px;
  position: relative;
}
@media only screen and (max-width: 767.98px) {
  .hero_section .content .card_holder {
    display: block;
    margin-bottom: 40px;
  }
}
.hero_section .content .card_holder .reviews_box {
  position: relative;
  padding-left: 20px;
  display: flex;
  align-items: center;
  padding-right: 20px;
}
@media only screen and (max-width: 767.98px) {
  .hero_section .content .card_holder .reviews_box {
    margin-bottom: 15px;
  }
}
.hero_section .content .card_holder .reviews_box .profile_display {
  display: flex;
  margin-right: 15px;
}
.hero_section .content .card_holder .reviews_box .profile_display img {
  width: 50px;
  margin-left: -20px;
  border: 2px solid #fff;
  border-radius: 50%;
}
.hero_section .content .card_holder .reviews_box .content_rw img {
  width: 100px;
  margin-bottom: 5px;
}
.hero_section .content .card_holder .reviews_box .content_rw span {
  color: #fff;
  font-size: 16px;
  display: block;
  font-weight: 500;
}
.hero_section .content .card_holder .clients {
  position: relative;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  padding-left: 20px;
}
@media only screen and (max-width: 767.98px) {
  .hero_section .content .card_holder .clients {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    padding-left: 0;
    padding-top: 20px;
  }
}
.hero_section .content .card_holder .clients .number {
  font-size: 40px;
  font-weight: 700;
  color: #ffc107;
  margin-right: 10px;
}
.hero_section .content .card_holder .clients .text {
  color: #fff;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hero_section .appoinment_form {
  position: relative;
  background-color: #fff;
  padding: 25px;
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
  border-radius: 30px;
}
@media only screen and (max-width: 767.98px) {
  .hero_section .appoinment_form {
    margin-bottom: 40px;
  }
}
.hero_section .appoinment_form::after {
  position: absolute;
  content: "";
  background-color: #ffc107;
  width: 200px;
  height: 200px;
  left: -15px;
  border-radius: 30px;
  top: -15px;
  z-index: -1;
}
@media only screen and (max-width: 767.98px) {
  .hero_section .appoinment_form::after {
    left: -10px;
    top: -10px;
  }
}
.hero_section .appoinment_form::before {
  position: absolute;
  content: "";
  background-color: #ffc107;
  width: 200px;
  height: 200px;
  right: -15px;
  border-radius: 30px;
  bottom: -15px;
  z-index: -1;
}
@media only screen and (max-width: 767.98px) {
  .hero_section .appoinment_form::before {
    right: -10px;
    bottom: -10px;
  }
}
.hero_section .appoinment_form .title {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #01386e;
  padding: 10px 20px;
  color: #fff;
  border-radius: 10px;
  position: relative;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767.98px) {
  .hero_section .appoinment_form .title {
    font-size: 15px;
  }
}
.hero_section .appoinment_form .title::after {
  content: "";
  border-top: 10px solid #01386e;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  position: absolute;
  width: 20px;
  bottom: -10px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}
.hero_section .appoinment_form .form-group {
  margin-bottom: 20px;
}
.hero_section .appoinment_form .form-group ::placeholder {
  color: #000;
}
.hero_section .appoinment_form .form-group .form-select,
.hero_section .appoinment_form .form-group .form-control {
  box-shadow: rgba(9, 30, 66, 0.15) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
  border-radius: 0;
  border: none;
  height: auto;
  padding: 10px 20px;
  background-color: #fff;
  border-radius: 10px;
  color: #000;
}
.hero_section .appoinment_form .form-group textarea {
  resize: none;
}
.hero_section .appoinment_form .form-group .submit-btn {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.hero_section .appoinment_form .form-group .submit-btn #btnSubmit {
  border: none;
  background-color: #01386e;
  padding: 10px 20px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  width: auto;
  transition: 0.5s all;
}
.hero_section .appoinment_form .form-group .submit-btn #btnSubmit:hover {
  background-color: #ffc107;
  color: #01386e;
}

.benifits {
  position: relative;
  margin-top: -100px;
}
@media only screen and (max-width: 767.98px) {
  .benifits {
    margin-top: 0;
  }
}
.benifits .benifitBox {
  color: #000;
  background-color: #fff;
  text-align: center;
  padding: 20px 15px;
  margin: 20px 0 0;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  transition: all ease 0.3s;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.benifits .benifitBox::before {
  content: "";
  background: linear-gradient(45deg, #ffc107 49%, transparent 50%);
  height: 15px;
  width: 15px;
  position: absolute;
  left: 115px;
  top: -15px;
}
.benifits .benifitBox:hover .service-icon {
  transform: rotateY(360deg);
}
.benifits .benifitBox .service-count {
  color: #fff;
  background: linear-gradient(135deg, #FDBB26 25%, #ffcd44 26%, #ffcd44 40%, #FDBB26 41%, #FDBB26 47%, #ffcd44 48%, #ffcd44 60%, #FDBB26 61%);
  font-size: 90px;
  text-align: center;
  line-height: 130px;
  width: 100px;
  height: 140px;
  margin: -35px 0 0 0;
  display: block;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 75%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 75%, 0 100%);
}
.benifits .benifitBox .service-icon {
  color: #01386e;
  font-size: 60px;
  position: absolute;
  right: 20px;
  top: 20px;
  transition: all 0.3s ease 0s;
}
.benifits .benifitBox .service-content {
  padding: 20px 0 0;
}
.benifits .benifitBox .title {
  color: #01386e;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 10px;
  letter-spacing: 2px;
}
.benifits .benifitBox .description {
  font-size: 14px;
  margin-bottom: 10px;
  color: var(--bs-black);
}

.treatment {
  position: relative;
  padding: 70px 0;
}
@media only screen and (max-width: 767.98px) {
  .treatment {
    padding: 30px 0;
  }
}
.treatment .title {
  font-size: 45px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 55px;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767.98px) {
  .treatment .title {
    font-size: 25px;
    letter-spacing: 1.5px;
    line-height: 25px;
  }
}
.treatment .title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
  width: 55px;
  background-color: #000;
  z-index: 1;
}
.treatment .title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 1px;
  width: 200px;
  max-width: 255px;
  background-color: #000;
}
.treatment .content {
  padding: 20px;
  border-radius: 25px;
  background-color: #fffae4;
  position: relative;
  margin-left: -20px;
  padding-left: 40px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}
@media only screen and (max-width: 767.98px) {
  .treatment .content {
    margin-left: 0;
  }
}
.treatment .display {
  position: relative;
  z-index: 2;
  border-radius: 25px;
  overflow: hidden;
  margin-right: -20px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}
@media only screen and (max-width: 767.98px) {
  .treatment .display {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.expert {
  position: relative;
  padding-bottom: 70px;
}
@media only screen and (max-width: 767.98px) {
  .expert {
    padding-bottom: 0;
    padding-top: 40px;
  }
}
.expert .expert-message {
  position: relative;
  border-right: 20px solid #ffc107;
  border-bottom: 20px solid #ffc107;
  padding: 30px;
  padding-left: 0;
}
.expert .expert-message::before {
  position: absolute;
  content: "";
  width: 340px;
  height: 20px;
  background-color: #ffc107;
  top: -20px;
  right: -20px;
}
.expert .expert-message .expeert-profile {
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}
.expert .expert-message .expert-info {
  margin-top: 20px;
  text-align: right;
  border-right: 5px solid #ffc107;
  padding-right: 15px;
}
.expert .expert-message .expert-info h4 {
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 0;
  font-weight: 600;
}
.expert .expert-message .expert-info span {
  font-style: italic;
}
.expert .expert-message .expert-details {
  position: relative;
  padding-top: 0;
}
.expert .expert-message .expert-details h4.main-title {
  font-size: 45px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 3px;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767.98px) {
  .expert .expert-message .expert-details h4.main-title {
    font-size: 30px;
    letter-spacing: 2px;
  }
}
.expert .expert-message .expert-details h4.main-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
  width: 55px;
  background-color: #000;
  z-index: 1;
}
.expert .expert-message .expert-details h4.main-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 1px;
  width: 200px;
  max-width: 255px;
  background-color: #000;
}

.doctors_section {
  position: relative;
  padding-bottom: 70px;
}
@media only screen and (max-width: 767.98px) {
  .doctors_section {
    padding: 30px 0;
  }
}
.doctors_section .title {
  font-size: 45px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 10px;
}
@media only screen and (max-width: 767.98px) {
  .doctors_section .title {
    font-size: 25px;
    line-height: 35px;
    letter-spacing: 1.5px;
  }
}
.doctors_section .title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
  width: 55px;
  background-color: #000;
  z-index: 1;
}
.doctors_section .title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 1px;
  width: 200px;
  max-width: 255px;
  background-color: #000;
}
.doctors_section .doctor_profile {
  border-radius: 20px;
  padding: 10px;
  text-align: center;
  background-color: var(--bs-white);
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
  position: relative;
  display: block;
  transition: 0.5s all;
}
@media only screen and (max-width: 767.98px) {
  .doctors_section .doctor_profile {
    margin-bottom: 20px;
  }
}
.doctors_section .doctor_profile .profile_pic img {
  width: 100%;
}
.doctors_section .doctor_profile:hover .profile_pic::before {
  opacity: 0.5;
}
.doctors_section .doctor_profile:hover .profile_pic span {
  display: block;
}
.doctors_section .doctor_profile h4 {
  text-transform: none;
  font-weight: 600;
  font-size: 20px;
  color: var(--bs-black);
}
.doctors_section .doctor_profile span {
  font-style: italic;
  font-weight: 500;
}
.doctors_section .doctor_profile .profile_pic {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 20px;
  transition: 0.5s all;
}
.doctors_section .doctor_profile .profile_pic::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--bs-black);
  opacity: 0;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease;
}
.doctors_section .doctor_profile .profile_pic span {
  display: none;
  transition: 0.3s all;
  color: var(--bs-black);
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  z-index: 2;
  padding: 10px 20px;
  background-color: var(--bs-white);
  font-weight: 600;
}

.disease_type {
  position: relative;
  padding-bottom: 70px;
}
@media only screen and (max-width: 767.98px) {
  .disease_type {
    padding: 30px 0;
  }
}
.disease_type .title {
  font-size: 45px;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 700;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 10px;
}
@media only screen and (max-width: 767.98px) {
  .disease_type .title {
    font-size: 30px;
    padding-bottom: 10px;
    letter-spacing: 2px;
  }
}
.disease_type .title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
  width: 55px;
  background-color: #000;
  z-index: 1;
}
.disease_type .title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 1px;
  width: 200px;
  max-width: 255px;
  background-color: #000;
}
.disease_type .treatment_box {
  background-color: #fff;
  border-radius: 30px;
  padding: 10px;
  text-align: center;
  position: relative;
  height: 100%;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.disease_type .treatment_box::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 250px;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  background-color: #01386e;
  transition: 0.3s all;
  z-index: -1;
  border-radius: 25px;
}
@media only screen and (max-width: 767.98px) {
  .disease_type .treatment_box::before {
    width: 100px;
    height: 100px;
  }
}
.disease_type .treatment_box::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 250px;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
  background-color: #01386e;
  transition: 0.3s all;
  border-radius: 25px;
  z-index: -1;
}
@media only screen and (max-width: 767.98px) {
  .disease_type .treatment_box::after {
    width: 100px;
    height: 100px;
  }
}
.disease_type .treatment_box:hover::before {
  left: -10px;
}
@media only screen and (max-width: 767.98px) {
  .disease_type .treatment_box:hover::before {
    left: -5px;
  }
}
.disease_type .treatment_box:hover::after {
  right: -10px;
}
@media only screen and (max-width: 767.98px) {
  .disease_type .treatment_box:hover::after {
    right: -5px;
  }
}
.disease_type .treatment_box img {
  width: 100%;
  margin-bottom: 15px;
  border-radius: 20px;
}
.disease_type .treatment_box .content {
  padding: 0 5px;
}
.disease_type .treatment_box .content h3 {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  position: relative;
  padding: 15px;
}
@media only screen and (max-width: 767.98px) {
  .disease_type .treatment_box .content h3 {
    font-size: 13px;
    padding: 5px;
    letter-spacing: 1.5px;
  }
}
.disease_type a {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: auto;
  background-color: #01386e;
  border: 2px solid #01386e;
  padding: 10px 30px;
  border-radius: 30px;
  text-transform: uppercase;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  transition: 0.5s all;
  border: 2px solid #fff;
  animation: glowing 1500ms infinite;
  display: inline-block;
}
@media only screen and (max-width: 767.98px) {
  .disease_type a {
    font-size: 12px;
    padding: 2px;
    padding-right: 10px;
    letter-spacing: 0;
  }
}
.disease_type a img,
.disease_type a i {
  width: 40px;
  height: 40px;
  background-color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: #01386e;
  margin-right: 10px;
  border-radius: 50%;
}
@media only screen and (max-width: 767.98px) {
  .disease_type a img,
  .disease_type a i {
    width: 25px;
    height: 25px;
    font-size: 13px;
  }
}

.testimonial_section {
  position: relative;
  padding-bottom: 70px;
}
@media only screen and (max-width: 767.98px) {
  .testimonial_section {
    padding: 30px 0;
  }
}
.testimonial_section .title {
  font-size: 45px;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 55px;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 20px;
  color: #000;
}
@media only screen and (max-width: 767.98px) {
  .testimonial_section .title {
    font-size: 30px;
    line-height: 40px;
    letter-spacing: 2px;
  }
}
.testimonial_section .title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
  width: 55px;
  background-color: #000;
  z-index: 1;
}
.testimonial_section .title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 1px;
  width: 200px;
  max-width: 255px;
  background-color: #000;
}
.testimonial_section .testimonial {
  text-align: center;
  margin: 0 20px;
}
.testimonial_section .testimonial .description {
  padding: 40px 30px;
  margin-bottom: 50px;
  border-top: 2px solid #01386e;
  border-left: 2px solid #01386e;
  font-size: 17px;
  color: #000;
  line-height: 30px;
  text-align: left;
  position: relative;
  font-style: italic;
}
.testimonial_section .testimonial .description::before {
  content: "\f10e";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  padding: 0 15px 5px 0;
  font-size: 50px;
  transform: rotate(180deg);
  color: #01386e;
  text-align: center;
  position: relative;
  top: -10px;
  left: 0;
}
.testimonial_section .testimonial .description::after {
  content: "";
  width: 50%;
  height: 2px;
  background: #01386e;
  position: absolute;
  bottom: 0;
  left: 0;
}
.testimonial_section .testimonial .testimonial-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial_section .testimonial .testimonial-content::before {
  content: "";
  width: 2px;
  height: 20px;
  background: #01386e;
  position: absolute;
  top: -52px;
  left: 50%;
}
.testimonial_section .testimonial .testimonial-content::after {
  content: "";
  width: 2px;
  height: 40px;
  background: #01386e;
  position: absolute;
  top: -72px;
  left: 50%;
  transform: skewX(-45deg);
  transform-origin: 100% 100% 0;
}
.testimonial_section .testimonial .pic {
  display: inline-block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-right: 7px;
}
.testimonial_section .testimonial .pic img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}
.testimonial_section .testimonial .name {
  display: inline-block;
  font-size: 22px;
  font-weight: 600;
  color: #01386e;
  letter-spacing: 2px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-left: 15px;
  margin: 0;
}
.testimonial_section .owl-carousel .owl-dots {
  margin-top: 30px;
  text-align: center;
}
.testimonial_section .owl-carousel .owl-dots button {
  margin: 0 5px;
}
.testimonial_section .owl-carousel .owl-dots button span {
  width: 15px;
  height: 10px;
  border-radius: 0;
  background: #01386e;
  display: inline-block;
  opacity: 0.8;
  transition: all 0.3s ease 0s;
}
.testimonial_section .owl-carousel .owl-dots button.active span {
  width: 35px;
  background: #000;
}

.media_partners {
  position: relative;
  padding-bottom: 70px;
}
@media only screen and (max-width: 767.98px) {
  .media_partners {
    padding: 30px 0;
    padding-bottom: 0;
  }
}
.media_partners .title {
  font-size: 45px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 55px;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767.98px) {
  .media_partners .title {
    font-size: 25px;
    letter-spacing: 1.5px;
    line-height: 25px;
  }
}
.media_partners .title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
  width: 55px;
  background-color: #000;
  z-index: 1;
}
.media_partners .title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 1px;
  width: 200px;
  max-width: 255px;
  background-color: #000;
}
.media_partners .partners {
  margin: 10px;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  overflow: hidden;
  padding: 10px;
}
.media_partners .partners img {
  width: 100%;
}

.faq_section {
  position: relative;
  padding-bottom: 70px;
}
@media only screen and (max-width: 767.98px) {
  .faq_section {
    padding: 30px 0;
    padding-bottom: 0;
  }
}
.faq_section .title {
  font-size: 45px;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 700;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 10px;
}
@media only screen and (max-width: 767.98px) {
  .faq_section .title {
    font-size: 30px;
    padding-bottom: 10px;
    letter-spacing: 2px;
  }
}
.faq_section .title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
  width: 55px;
  background-color: #000;
  z-index: 1;
}
.faq_section .title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 1px;
  width: 200px;
  max-width: 255px;
  background-color: #000;
}
.faq_section .display {
  position: relative;
}
@media only screen and (max-width: 767.98px) {
  .faq_section .display {
    margin-bottom: 40px;
  }
}
.faq_section .display img {
  width: 100%;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
  position: relative;
  z-index: 2;
}
.faq_section .display::before {
  content: "";
  position: absolute;
  right: -10px;
  height: 50%;
  width: 100px;
  border-radius: 20px;
  background-color: #000;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
}
.faq_section .display::after {
  content: "";
  position: absolute;
  left: -10px;
  height: 50%;
  width: 100px;
  border-radius: 20px;
  background-color: #000;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
}
.faq_section h5 {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: 600;
}
.faq_section h5 span {
  background-color: #FFC000;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  font-size: 18px;
  border-radius: 50%;
  font-weight: 700;
}
.faq_section h5 em {
  max-width: 75%;
  font-style: normal;
}

footer {
  background-color: #01386e;
  padding: 100px 0 0;
  color: #fff;
  text-align: center;
}
@media only screen and (max-width: 767.98px) {
  footer {
    padding: 30px 0 0;
  }
}
footer .copyright {
  background-color: #fffae4;
  margin-top: 50px;
  color: #000;
  padding: 20px;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}
@media only screen and (max-width: 767.98px) {
  footer .col-lg-4 {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dotted #ccc;
  }
}

.mobile-call-btn {
  display: none;
  position: fixed;
  z-index: 9999;
  padding: 0;
  bottom: 15px;
  right: 15px;
  border-radius: 15px;
  width: 200px;
  text-align: center;
  align-items: center;
  transition: all 0.3s ease;
  text-align: center;
}
@media only screen and (max-width: 767.98px) {
  .mobile-call-btn {
    width: 150px;
    right: 10px;
    bottom: 10px;
  }
}
.mobile-call-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 10px 15px;
  background: #ffc107;
  border-radius: 15px;
  width: 100%;
  line-height: normal;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 16px;
}
@media only screen and (max-width: 767.98px) {
  .mobile-call-btn a {
    padding: 4px 7px;
    border-radius: 10px;
    font-size: 12px;
  }
}
.mobile-call-btn img {
  position: absolute;
  width: 150px;
  bottom: 15px;
  z-index: -1;
  left: 0;
  right: 0;
  margin: auto;
}
@media only screen and (max-width: 767.98px) {
  .mobile-call-btn img {
    width: 110px;
  }
}/*# sourceMappingURL=style.css.map */