@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: #FFE8C7 !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;
}

.card {
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  border-radius: 20px;
}

.video_box {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  display: inline-block;
  width: 100%;
}
.video_box img {
  width: 100%;
}
.video_box .pattern {
  position: relative;
}
.video_box .pattern::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.3;
}
.video_box .pattern .icon {
  position: absolute;
  z-index: 2;
  width: 85px;
  height: 55px;
  color: red;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 75px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 20px;
  text-align: center;
  cursor: pointer;
}
.video_box .pattern .icon::before {
  animation: pulse2 2s infinite;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  top: 0;
  left: 0;
}
.video_box .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);
}

@keyframes masked-animation {
  0%, 100% {
    background-position: 50% 35%;
  }
  50% {
    background-position: 50% 65%;
  }
}
@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);
  }
}
@keyframes pulse2 {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
/*Animation for the outewards pulsating waves*/
@keyframes pulse-wave {
  0% {
    opacity: 0;
    transform: scale(0.1);
  }
  50% {
    opacity: 1;
    transform: scale(0.5);
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}
/*animation for the inner and outer wave items to grow*/
@keyframes grow-circles {
  0% {
    opacity: 0.85;
    transform: scale(1);
  }
  15% {
    opacity: 1;
    transform: scale(1.05);
  }
  30% {
    opacity: 0.85;
    transform: scale(1);
  }
}
/*animation for the icon to slightly grow and shrink*/
@keyframes grow-shrink {
  0% {
    transform: scale(1);
  }
  15% {
    transform: scale(1.1);
  }
  30% {
    transform: scale(1);
  }
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.two_columns {
  columns: 2;
}

.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;
  }
}
.watermark {
  position: absolute;
  top: 30%;
  left: 35%;
  width: 600px;
  opacity: 0.4;
}

header.sticky {
  position: fixed;
  width: 100%;
  top: 0;
  padding: 10px 0;
  background-color: #054bab;
  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;
  animation: slideDown 0.35s ease-out;
}

header {
  position: absolute;
  width: 100%;
  z-index: 99;
  padding: 10px 0;
}
header .info a {
  background-color: #fff;
  border-radius: 10px;
  padding: 5px;
  display: inline-flex;
  align-items: center;
}
header .info a i {
  width: 35px;
  height: 35px;
  background-color: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
header .info a span {
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0 10px;
}

.hero_section {
  position: relative;
  padding: 120px 0 150px;
  background-image: url(../images/main_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
}
@media only screen and (max-width: 767.98px) {
  .hero_section {
    padding: 120px 0 50px;
  }
}
.hero_section .content {
  position: relative;
  padding-right: 50px;
}
@media only screen and (max-width: 767.98px) {
  .hero_section .content {
    z-index: 2;
    margin-bottom: 35px;
  }
}
.hero_section .content h1 {
  font-size: 65px;
  line-height: 1.2;
  font-weight: 600;
  padding-bottom: 0;
  margin-bottom: 30px;
  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 .list-icon-check li::before {
  color: #fff;
}
.hero_section p {
  text-shadow: 2px 7px 5px rgba(0, 0, 0, 0.3), 0px -4px 10px rgba(255, 255, 255, 0.3);
  font-weight: 500;
  font-size: 16px;
}
.hero_section .box {
  background-color: #ffc107;
  border-radius: 15px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  padding: 10px 15px;
  color: #000;
  margin-bottom: 15px;
}
.hero_section .box p {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  text-shadow: none;
}
.hero_section .appoinment_form {
  position: relative;
  background-color: #fff;
  padding: 25px;
  outline: 5px solid #fff;
  outline-offset: 5px;
  border-radius: 20px;
  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 .ribbon-wrapper {
  position: relative;
  z-index: 9;
  left: -25px;
  right: -25px;
}
.hero_section .appoinment_form .ribbon-wrapper .ribbon-front {
  height: 50px;
  width: 120%;
  position: relative;
  left: -10px;
  z-index: 2;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #01386e;
  padding: 10px 20px;
  color: #fff;
  margin-bottom: 30px;
  margin-top: 0;
}
.hero_section .appoinment_form .ribbon-wrapper .ribbon-front,
.hero_section .appoinment_form .ribbon-wrapper .ribbon-back-left,
.hero_section .appoinment_form .ribbon-wrapper .ribbon-back-right {
  -moz-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.55);
  -khtml-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.55);
  -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.55);
  -o-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.55);
}
.hero_section .appoinment_form .ribbon-wrapper .ribbon-edge-topleft,
.hero_section .appoinment_form .ribbon-wrapper .ribbon-edge-topright,
.hero_section .appoinment_form .ribbon-wrapper .ribbon-edge-bottomleft,
.hero_section .appoinment_form .ribbon-wrapper .ribbon-edge-bottomright {
  position: absolute;
  z-index: 1;
  border-style: solid;
  height: 0px;
  width: 0px;
}
.hero_section .appoinment_form .ribbon-wrapper .ribbon-edge-bottomleft,
.hero_section .appoinment_form .ribbon-wrapper .ribbon-edge-bottomright {
  top: 50px;
}
.hero_section .appoinment_form .ribbon-wrapper .ribbon-edge-topleft,
.hero_section .appoinment_form .ribbon-wrapper .ribbon-edge-bottomleft {
  left: -10px;
  border-color: transparent #01386e transparent transparent;
}
.hero_section .appoinment_form .ribbon-wrapper .ribbon-edge-topleft {
  top: -5px;
  border-width: 5px 10px 0 0;
}
.hero_section .appoinment_form .ribbon-wrapper .ribbon-edge-bottomleft {
  border-width: 0 10px 0px 0;
}
.hero_section .appoinment_form .ribbon-wrapper .ribbon-edge-topright,
.hero_section .appoinment_form .ribbon-wrapper .ribbon-edge-bottomright {
  left: 114%;
  border-color: transparent transparent transparent #01386e;
}
.hero_section .appoinment_form .ribbon-wrapper .ribbon-edge-topright {
  top: 0px;
  border-width: 0px 0 0 10px;
}
.hero_section .appoinment_form .ribbon-wrapper .ribbon-edge-bottomright {
  border-width: 0 0 5px 10px;
}
@-webkit-keyframes flow {
  0% {
    left: -20px;
    opacity: 0;
  }
  50% {
    left: 150px;
    opacity: 0.3;
  }
  100% {
    left: 350px;
    opacity: 0;
  }
}
@keyframes flow {
  0% {
    left: -20px;
    opacity: 0;
  }
  50% {
    left: 150px;
    opacity: 0.3;
  }
  100% {
    left: 350px;
    opacity: 0;
  }
}
.hero_section .appoinment_form .ribbon-wrapper .glow {
  width: 40px;
  height: 100%;
  z-index: 999;
  position: absolute;
  -webkit-animation: flow 2s linear infinite;
  -moz-animation: flow 2s linear infinite;
  -webkit-transform: skew(20deg);
  -moz-transform: skew(20deg);
  -o-transform: skew(20deg);
  background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 1%, rgb(255, 255, 255) 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(1%, rgba(255, 255, 255, 0)), color-stop(100%, rgb(255, 255, 255)));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 1%, rgb(255, 255, 255) 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 1%, rgb(255, 255, 255) 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 1%, rgb(255, 255, 255) 100%);
  /* IE10+ */
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 1%, rgb(255, 255, 255) 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00ffffff", endColorstr="#ffffff", GradientType=1);
  /* IE6-9 */
  border-left: 1px solid #fff;
}
.hero_section .appoinment_form .form-group {
  margin-bottom: 20px;
}
.hero_section .appoinment_form .form-group:last-child {
  margin-bottom: 0;
}
.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: 5px;
  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: #054bab;
  padding: 10px 20px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  width: 100%;
  border-radius: 10px;
  font-size: 16px;
}
.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;
}

.benifits {
  position: relative;
  margin-top: -70px;
}
.benifits .box_container {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: end;
  padding: 20px;
}
.benifits .box_container .box {
  border-right: 1px solid #D1D1D1;
  padding: 15px;
  text-align: center;
  width: 33.33%;
}
.benifits .box_container .box:last-child {
  border-right: none;
}
.benifits .box_container .box span {
  font-size: 50px;
  font-weight: 700;
  border-bottom: 1px solid #000;
  margin-bottom: 20px;
  display: inline-block;
}
.benifits .box_container .box p {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.reviews {
  padding: 50px 0;
  position: relative;
}
.reviews .title {
  font-weight: 600;
  font-size: 30px;
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}
.reviews .title span {
  padding: 5px 15px;
  background-color: #054bab;
  border-radius: 30px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  color: #fff;
}
.reviews .reviews_slider .g_review {
  background-color: rgb(246, 246, 248);
  padding: 25px;
  border-radius: 8px;
  margin: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  height: 100%;
}
.reviews .reviews_slider .g_review .topbar {
  display: flex;
  align-items: center;
}
.reviews .reviews_slider .g_review .topbar .profile {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #8d6e63;
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  font-weight: 500;
}
.reviews .reviews_slider .g_review .topbar .profile.one {
  background-color: #01386e;
}
.reviews .reviews_slider .g_review .topbar .profile.two {
  background-color: #4d912f;
}
.reviews .reviews_slider .g_review .topbar .profile.three {
  background-color: #36492e;
}
.reviews .reviews_slider .g_review .topbar .profile.four {
  background-color: #c011be;
}
.reviews .reviews_slider .g_review .topbar .profile.one {
  background-color: #f3072e;
}
.reviews .reviews_slider .g_review .topbar .info {
  padding-left: 10px;
}
.reviews .reviews_slider .g_review .topbar .info .name {
  font-weight: 600;
  font-size: 14px;
}
.reviews .reviews_slider .g_review .topbar .info .duration {
  color: #70757a;
  font-size: 12px;
}
.reviews .reviews_slider .g_review .rating {
  max-width: 100px;
  margin: 10px 0;
}
.reviews .reviews_slider .g_review p {
  color: rgb(17, 17, 17);
  font-size: 12px;
  margin: 0;
}
.reviews .reviews_slider .owl-item {
  height: 100%;
}
.reviews .reviews_slider .owl-nav {
  display: flex;
  align-items: center;
  justify-content: center;
}
.reviews .reviews_slider .owl-nav button {
  margin: 10px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #054bab !important;
  color: #fff !important;
  border-radius: 50%;
}
.reviews .reviews_slider .owl-nav button span {
  font-size: 25px;
}

.treatment {
  position: relative;
  padding: 70px 0;
}
.treatment .title {
  font-weight: 600;
  font-size: 30px;
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}
.treatment .title span {
  padding: 5px 15px;
  background-color: #054bab;
  border-radius: 30px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  color: #fff;
}
.treatment .card {
  padding: 10px;
  border-radius: 15px;
  background-color: #fff;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  border: none;
  text-align: center;
}
.treatment .card img {
  border-radius: 10px;
  margin-bottom: 15px;
  width: 100%;
}
.treatment .card h3 {
  font-size: 22px;
  font-weight: 600;
}
.treatment .card p {
  margin: 0 15px 10px;
  font-size: 14px;
}

.expert {
  position: relative;
  padding: 100px 0 0;
}
@media only screen and (max-width: 767.98px) {
  .expert {
    padding-bottom: 0;
    padding-top: 40px;
  }
}
.expert .expert-message {
  position: relative;
  border-right: 20px solid #054bab;
  border-bottom: 20px solid #054bab;
  padding: 30px;
  padding-left: 0;
}
.expert .expert-message::before {
  position: absolute;
  content: "";
  width: 340px;
  height: 20px;
  background-color: #054bab;
  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 #054bab;
  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;
}

.content_container {
  position: relative;
  padding: 70px 0;
}
.content_container .title {
  font-weight: 600;
  font-size: 30px;
  position: relative;
  margin-bottom: 30px;
}
.content_container .title span {
  padding: 5px 15px;
  background-color: #ffc107;
  border-radius: 30px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.content_container h3 {
  font-size: 17px;
  font-weight: 600;
}

.why_choose {
  position: relative;
}
.why_choose .container {
  background-color: #fff;
  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;
  padding: 20px;
}
.why_choose .container .title {
  font-weight: 600;
  font-size: 30px;
  position: relative;
  margin-bottom: 15px;
}
.why_choose .container .title span {
  padding: 5px 15px;
  background-color: #054bab;
  border-radius: 30px;
  color: #FFF;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.videos_section {
  position: relative;
  padding: 70px 0;
}
.videos_section .title {
  font-weight: 600;
  font-size: 30px;
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}
.videos_section .title span {
  padding: 5px 15px;
  background-color: #054bab;
  border-radius: 30px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  color: #fff;
}
.videos_section .video_box {
  border: solid 5px #fff;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
}

.cta {
  position: relative;
  padding-bottom: 70px;
}
.cta .card {
  border: none;
  overflow: hidden;
  border-radius: 30px;
  background-color: #fff;
  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;
}
.cta .card img {
  position: relative;
  object-fit: cover;
  width: 100%;
}
.cta .card .info {
  position: absolute;
  width: 60%;
  height: auto;
  left: auto;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta .card .info h3 {
  font-size: 35px;
  margin-bottom: 15px;
}
.cta .card .info a {
  background-color: #fff;
  padding: 10px 20px;
  color: #054bab;
  font-weight: 600;
  border-radius: 10px;
  margin-top: 10px;
  display: inline-block;
  max-width: 200px;
  text-align: center;
}
.cta .card .info ul li::before {
  color: #FFF;
}

footer {
  background-color: #054bab;
  padding: 50px 0 0;
  color: #fff;
  text-align: center;
  margin-top: 100px;
  box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
  border-radius: 50px 50px 0 0;
  position: relative;
}
footer .footer_logo {
  position: relative;
  margin: auto;
  margin-top: -130px;
  max-width: 150px;
  border: 5px solid #fff;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  text-align: center;
  z-index: 1;
}
footer .footer_logo img {
  width: 100%;
  z-index: 1;
}
footer .footer_logo .elements {
  position: absolute;
  top: 10%;
  left: 10%;
  z-index: -1;
}
footer .footer_logo .elements .circle {
  border-radius: 50%;
  position: absolute;
}
footer .footer_logo .elements .circle.circle-inner {
  width: 80px;
  height: 80px;
  top: -10px;
  left: -10px;
  background: linear-gradient(-180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.1) 100%);
  animation: grow-circles 3s linear infinite both;
}
footer .footer_logo .elements .circle.circle-outer {
  width: 100px;
  height: 100px;
  background: linear-gradient(-180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.1) 100%);
  top: -20px;
  left: -20px;
  animation: grow-circles 3s linear infinite both;
}
footer .footer_logo .elements .pulse {
  position: absolute;
  animation: pulse-wave 3s linear infinite both;
  border-radius: 50%;
}
footer .footer_logo .elements .pulse-1 {
  border: solid 1px rgba(0, 0, 0, 0.25);
  width: 250px;
  height: 250px;
  top: -70px;
  left: -70px;
}
footer .footer_logo .elements .pulse-2 {
  border: solid 1px rgba(0, 0, 0, 0.35);
  width: 350px;
  height: 350px;
  top: -120px;
  left: -120px;
}
footer .footer_logo .elements .pulse-3 {
  border: solid 1px rgba(0, 0, 0, 0.45);
  width: 450px;
  height: 450px;
  top: -170px;
  left: -170px;
}
footer .copyright {
  background-color: #fffae4;
  margin-top: 50px;
  color: #000;
  padding: 20px;
  box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
}
@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: #054bab;
  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;
  }
}
.blinking_btn i {
  width: 45px;
  height: 45px;
  font-size: 16px;
  background-color: #054bab;
  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 */