@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);
  }
}
.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: #800000;
  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;
}

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;
    justify-content: space-between;
  }
}
@media only screen and (max-width: 767.98px) {
  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;
  }
}
header .header_wrapper .info a {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  color: #000;
  background-color: #fff;
  border: 2px solid #fff;
  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;
  animation: glowing 1500ms infinite;
}
header .header_wrapper .info a:hover {
  background-color: #ffc107;
  border: 2px solid #ffc107;
}
@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 i {
  width: 40px;
  height: 40px;
  background-color: #800000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: #fff;
  margin-right: 10px;
  border-radius: 50%;
}
@media only screen and (max-width: 767.98px) {
  header .header_wrapper .info a i {
    width: 25px;
    height: 25px;
    font-size: 13px;
  }
}

.hero_section {
  position: relative;
  padding: 150px 0 140px;
  background-image: url(../images/main_bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
@media only screen and (max-width: 767.98px) {
  .hero_section {
    padding: 120px 0 50px;
    background-size: cover;
    background-image: none;
    background-color: #800000;
  }
}
.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: 55px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-align: left;
  font-weight: 700;
  padding-bottom: 10px;
  margin-bottom: 10px;
  text-shadow: 2px 7px 5px rgba(0, 0, 0, 0.3), 0px -4px 10px rgba(255, 255, 255, 0.3);
  position: relative;
  color: #fff;
}
@media only screen and (max-width: 767.98px) {
  .hero_section .content h1 {
    font-size: 20px;
    letter-spacing: 2px;
  }
}
.hero_section .content h1 span {
  display: block;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: none;
  color: #FFE8C7;
}
@media only screen and (max-width: 767.98px) {
  .hero_section .content h1 span {
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 30px;
  }
}
.hero_section .content p {
  margin: 30px auto;
}
@media only screen and (max-width: 767.98px) {
  .hero_section .content p {
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 14px;
  }
}
.hero_section .content ul li {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}
.hero_section .content ul li::before {
  color: #fff;
  font-size: 22px;
}
@media only screen and (max-width: 767.98px) {
  .hero_section .content ul li::before {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767.98px) {
  .hero_section .content ul li {
    font-size: 14px;
  }
}
.hero_section .appoinment_form {
  position: relative;
  background-color: #fff;
  padding: 25px;
  outline: 5px solid #fff;
  outline-offset: 5px;
  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;
}
@media only screen and (max-width: 767.98px) {
  .hero_section .appoinment_form {
    margin-bottom: 40px;
  }
}
.hero_section .appoinment_form .title {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  background-color: #800000;
  padding: 5px 10px;
  color: #fff;
  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: 14px;
    letter-spacing: 2px;
  }
}
.hero_section .appoinment_form .title::after {
  content: "";
  border-top: 10px solid #800000;
  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 .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: 1px solid #888;
}
.hero_section .appoinment_form .form-group .submit-btn {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.hero_section .appoinment_form .form-group .submit-btn input {
  border: none;
  background-color: #800000;
  padding: 10px 20px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  width: 100%;
}
.hero_section .appoinment_form .form-group .submit-btn input:focus {
  background-color: rgba(128, 0, 0, 0.46);
}
.hero_section .appoinment_form .form-group .submit-btn input:active {
  background-color: rgba(128, 0, 0, 0.46);
}
@media only screen and (max-width: 767.98px) {
  .hero_section .appoinment_form .form-group .submit-btn input {
    font-size: 14px;
    letter-spacing: 2px;
  }
}
.hero_section .appoinment_form .form-group .submit-btn i {
  background-color: #ffc107;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}

main {
  border-radius: 50px;
  background-color: #fff;
  position: relative;
  margin-top: -50px;
  margin-bottom: -50px;
}
main .media_partners {
  position: relative;
  padding: 70px 0;
}
@media only screen and (max-width: 767.98px) {
  main .media_partners {
    padding-bottom: 20px;
  }
}
main .media_partners .title {
  font-size: 45px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  line-height: 55px;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767.98px) {
  main .media_partners .title {
    font-size: 25px;
    letter-spacing: 1.5px;
    line-height: 25px;
  }
}
main .media_partners .title::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  width: 55px;
  background-color: #000;
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
}
main .media_partners .title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  width: 200px;
  max-width: 255px;
  background-color: #000;
  margin-left: auto;
  margin-right: auto;
}
main .media_partners .partners {
  margin: 10px;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  overflow: hidden;
  padding: 10px;
}
main .media_partners .partners img {
  width: 100%;
}
main .treatment {
  position: relative;
  padding: 50px 0;
}
main .treatment .title {
  font-size: 45px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  line-height: 55px;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767.98px) {
  main .treatment .title {
    font-size: 25px;
    letter-spacing: 1.5px;
    line-height: 30px;
  }
}
main .treatment .title::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  width: 55px;
  background-color: #000;
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
}
main .treatment .title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  width: 200px;
  max-width: 255px;
  background-color: #000;
  margin-left: auto;
  margin-right: auto;
}
main .treatment .tratment_box {
  border: solid 5px #800000;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
main .treatment .tratment_box .heading {
  background-color: #800000;
  color: #fff;
  padding: 10px 20px;
  font-size: 22px;
  text-transform: none;
  text-align: center;
  position: relative;
}
main .treatment .tratment_box .heading::after {
  content: "";
  border-top: 10px solid #800000;
  border-left: 10px solid rgba(0, 0, 0, 0);
  border-right: 10px solid rgba(0, 0, 0, 0);
  position: absolute;
  width: 20px;
  bottom: -10px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}
main .treatment .tratment_box .content {
  padding: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  min-height: 220px;
  justify-content: center;
  background-image: url(../images/bg2.png);
  background-size: cover;
  color: #fff;
  margin-top: -20px;
  border-radius: 15px 15px 0 0;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}
@media only screen and (max-width: 767.98px) {
  main .treatment .tratment_box .content {
    min-height: auto;
  }
}
main .treatment .tratment_box .content p {
  margin: 0;
  font-weight: 400;
}
main .videos {
  position: relative;
  padding: 70px 0;
  background-image: url(../images/bg2.png);
}
main .videos .title {
  font-size: 45px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  line-height: 55px;
  position: relative;
  color: #fff;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767.98px) {
  main .videos .title {
    font-size: 25px;
    letter-spacing: 1.5px;
    line-height: 30px;
  }
}
main .videos .title::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  width: 55px;
  background-color: #fff;
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
}
main .videos .title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  width: 200px;
  max-width: 255px;
  background-color: #fff;
  margin-left: auto;
  margin-right: auto;
}
main .videos .vdo_bx {
  position: relative;
  border-radius: 15px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  overflow: hidden;
  display: block;
  border: 5px solid #fff;
}
main .about_benifits {
  position: relative;
  padding: 50px 0;
  color: #000;
  text-align: center;
}
@media only screen and (max-width: 767.98px) {
  main .about_benifits {
    padding: 30px 0;
  }
}
main .about_benifits .title {
  font-size: 45px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  line-height: 55px;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 20px;
  color: #000;
}
main .about_benifits .title::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  width: 55px;
  background-color: #000;
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
}
main .about_benifits .title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  width: 200px;
  max-width: 255px;
  background-color: #000;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 767.98px) {
  main .about_benifits .title {
    font-size: 25px;
    letter-spacing: 1.5px;
    line-height: 30px;
  }
}
main .about_benifits .serviceBox {
  color: #800000;
  text-align: center;
  padding: 10px 10px 30px;
  border: 3px solid #800000;
  position: relative;
  z-index: 1;
  height: 100%;
}
@media only screen and (max-width: 767.98px) {
  main .about_benifits .serviceBox {
    height: auto;
  }
}
main .about_benifits .serviceBox:before {
  content: "";
  background: #fff;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  transform: translateX(-50%) translateY(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
}
main .about_benifits .serviceBox:after {
  content: "";
  background: #fff;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  transform: translateX(-50%) translateY(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  background: #800000;
  width: 50%;
  height: 100%;
  box-shadow: none;
  transform: translateX(0) translateY(0);
  top: 0;
  left: auto;
  right: 0;
  z-index: -2;
}
main .about_benifits .serviceBox .service-icon {
  color: #fff;
  background: #800000;
  font-size: 40px;
  line-height: 85px;
  width: 85px;
  height: 85px;
  margin: 0 0 25px;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}
main .about_benifits .serviceBox .title_inner {
  font-size: 20px;
  font-weight: 600;
  margin: 0 10px 10px;
  color: #000;
  position: relative;
  padding-bottom: 7px;
  margin-bottom: 20px;
}
main .about_benifits .serviceBox .title_inner::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 3px;
  background-color: #000;
  bottom: 0;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}
main .about_benifits .serviceBox .description {
  color: #000;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  margin: 0 15px 0;
  font-weight: 400;
}
main .testimonials {
  position: relative;
  padding: 50px 0;
}
@media only screen and (max-width: 767.98px) {
  main .testimonials {
    padding: 30px 0;
  }
}
main .testimonials::before {
  content: "";
  position: absolute;
  width: 67%;
  height: 100%;
  background-color: #fffae4;
  right: 0;
  top: 0;
}
@media only screen and (max-width: 767.98px) {
  main .testimonials::before {
    width: 100%;
  }
}
main .testimonials .content {
  position: relative;
  padding-left: 25px;
}
@media only screen and (max-width: 767.98px) {
  main .testimonials .content {
    padding: 20px 10px;
  }
}
main .testimonials .content .title {
  font-size: 40px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 20px;
  color: #000;
}
@media only screen and (max-width: 767.98px) {
  main .testimonials .content .title {
    font-size: 25px;
    letter-spacing: 1.5px;
    line-height: 30px;
  }
}
main .testimonials .content .title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
  width: 55px;
  background-color: #000;
  z-index: 1;
}
main .testimonials .content .title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 1px;
  width: 200px;
  max-width: 255px;
  background-color: #000;
}
main .testimonials .content p {
  color: #000;
}
main .testimonials .testimonial_slider .owl-stage {
  display: flex;
}
main .testimonials .testimonial_slider .owl-item {
  display: flex;
  flex-direction: column;
}
main .testimonials .testimonial_slider .owl-nav {
  position: absolute;
  bottom: -30px;
  width: 145px;
  display: flex;
  right: 10px;
  justify-content: space-between;
}
main .testimonials .testimonial_slider .owl-nav button.owl-prev {
  width: 70px;
  height: 50px;
  background-color: #800000;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 55px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
main .testimonials .testimonial_slider .owl-nav button.owl-next {
  width: 70px;
  height: 50px;
  background-color: #800000;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 55px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
main .testimonials .testimonial_slider .testimonial {
  background-color: #800000;
  color: #fff;
  height: 100%;
  border-radius: 25px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 125px 40px 35px;
  margin: 10px;
  position: relative;
}
@media only screen and (max-width: 767.98px) {
  main .testimonials .testimonial_slider .testimonial {
    padding: 75px 20px 15px;
  }
}
main .testimonials .testimonial_slider .testimonial::before {
  content: "\f10d";
  position: absolute;
  color: #fff;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  top: 20px;
  left: 40px;
  font-size: 75px;
}
@media only screen and (max-width: 767.98px) {
  main .testimonials .testimonial_slider .testimonial::before {
    top: 0;
    left: 20px;
    font-size: 55px;
  }
}
main .testimonials .testimonial_slider .testimonial p {
  margin-bottom: 20px;
  font-size: 18px;
  font-style: italic;
}
@media only screen and (max-width: 767.98px) {
  main .testimonials .testimonial_slider .testimonial p {
    font-size: 16px;
  }
}
main .testimonials .testimonial_slider .testimonial .profile_details {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
main .testimonials .testimonial_slider .testimonial .profile_details .profile_pic {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-right: 20px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}
main .testimonials .testimonial_slider .testimonial .profile_details .info {
  position: relative;
}
main .testimonials .testimonial_slider .testimonial .profile_details .info .name {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 3px;
}
main .testimonials .testimonial_slider .testimonial .profile_details .info img {
  max-width: 100px;
}
main .faq_section {
  position: relative;
  padding: 50px 0;
}
@media only screen and (max-width: 767.98px) {
  main .faq_section {
    padding: 30px 0;
    padding-bottom: 0;
  }
}
main .faq_section .title {
  font-size: 45px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  position: relative;
  margin-bottom: 20px;
  text-align: center;
  padding-bottom: 10px;
}
@media only screen and (max-width: 767.98px) {
  main .faq_section .title {
    font-size: 25px;
    padding-bottom: 10px;
    letter-spacing: 1.5px;
  }
}
main .faq_section .title::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  height: 5px;
  width: 55px;
  background-color: #000;
  z-index: 1;
}
main .faq_section .title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  right: 0;
  margin: auto;
  height: 1px;
  width: 200px;
  max-width: 255px;
  background-color: #000;
}
main .faq_section h5 {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: 600;
}
@media only screen and (max-width: 767.98px) {
  main .faq_section h5 {
    font-size: 18px;
  }
}
main .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;
}
main .faq_section h5 em {
  max-width: 75%;
  font-style: normal;
}
main .doctors_section {
  position: relative;
  padding: 50px 0;
}
main .doctors_section .title {
  font-size: 45px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  position: relative;
  margin-bottom: 20px;
  text-align: center;
  padding-bottom: 10px;
}
@media only screen and (max-width: 767.98px) {
  main .doctors_section .title {
    font-size: 25px;
    line-height: 35px;
    letter-spacing: 1.5px;
  }
}
main .doctors_section .title::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  height: 5px;
  width: 55px;
  background-color: #000;
  z-index: 1;
}
main .doctors_section .title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  right: 0;
  margin: auto;
  height: 1px;
  width: 200px;
  max-width: 255px;
  background-color: #000;
}
main .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) {
  main .doctors_section .doctor_profile {
    margin-bottom: 20px;
  }
}
main .doctors_section .doctor_profile .profile_pic img {
  width: 100%;
}
main .doctors_section .doctor_profile:hover .profile_pic::before {
  opacity: 0.5;
}
main .doctors_section .doctor_profile:hover .profile_pic span {
  display: block;
}
main .doctors_section .doctor_profile h4 {
  text-transform: none;
  font-weight: 600;
  font-size: 20px;
  color: var(--bs-black);
}
main .doctors_section .doctor_profile span {
  font-style: italic;
  font-weight: 500;
}
main .doctors_section .doctor_profile .profile_pic {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 20px;
  transition: 0.5s all;
}
main .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;
}
main .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;
}

footer {
  background-color: #800000;
  padding: 100px 0 0;
  color: #fff;
  text-align: center;
}
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;
  }
}

.blinking_btn {
  padding: 10px;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 3px;
  background-color: #ffc107;
  color: #800000;
  animation: glowing 1500ms infinite;
  font-weight: 700;
  margin: auto;
  border-radius: 30px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
  display: inline-flex;
  align-items: center;
}
@media only screen and (max-width: 767.98px) {
  .blinking_btn {
    font-size: 18px;
    letter-spacing: 2px;
  }
}

.img-fluid {
    width:100%;
}

.videos .vdo_bx .pattern::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: .3;
}

.videos .vdo_bx .pattern .icon {
    position: absolute;
    z-index: 2;
    width: 50px;
    height: 50px;
    color: red;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 45px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
}

.videos .vdo_bx .pattern .icon::before {
    animation: pulse2 2s infinite;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}


.videos .vdo_bx .pattern .icon i {
    filter: drop-shadow(1px 0 0 #fff) drop-shadow(-1px 0 #fff) drop-shadow(0 1px 0 #fff) drop-shadow(0 -1px 0 #fff) drop-shadow(1px 1px 0 #fff) drop-shadow(1px -1px 0 #fff) drop-shadow(-1px 1px 0 #fff) drop-shadow(-1px -1px 0 #fff);
}

.blinking_btn i {
  width: 45px;
  height: 45px;
  font-size: 16px;
  background-color: #800000;
  border-radius: 50%;
  margin-right: 20px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 767.98px) {
  .blinking_btn i {
    margin-right: 10px;
  }
}

@-webkit-keyframes glowing {
  0% {
    background-color: #ffc107;
    -webkit-box-shadow: 0 0 3px #ffc107;
  }
  50% {
    background-color: #fff;
    -webkit-box-shadow: 0 0 40px #fff;
  }
  100% {
    background-color: #ffc107;
    -webkit-box-shadow: 0 0 3px #ffc107;
  }
}
@-moz-keyframes glowing {
  0% {
    background-color: #ffc107;
    -moz-box-shadow: 0 0 3px #ffc107;
  }
  50% {
    background-color: #fff;
    -moz-box-shadow: 0 0 40px #fff;
  }
  100% {
    background-color: #ffc107;
    -moz-box-shadow: 0 0 3px #ffc107;
  }
}
@-o-keyframes glowing {
  0% {
    background-color: #ffc107;
    box-shadow: 0 0 3px #ffc107;
  }
  50% {
    background-color: #fff;
    box-shadow: 0 0 40px #fff;
  }
  100% {
    background-color: #ffc107;
    box-shadow: 0 0 3px #ffc107;
  }
}
@keyframes glowing {
  0% {
    background-color: #ffc107;
    box-shadow: 0 0 3px #ffc107;
  }
  50% {
    background-color: #fff;
    box-shadow: 0 0 40px #fff;
  }
  100% {
    background-color: #ffc107;
    box-shadow: 0 0 3px #ffc107;
  }
}/*# sourceMappingURL=style.css.map */