@font-face {
  font-family: "Gotham-Light";
  src: url(../files/fonts/Gotham-Light.otf);
}
@font-face {
  font-family: "Gotham-Medium";
  src: url(../files/fonts/Gotham-Medium.otf);
}
@font-face {
  font-family: "Gotham-Book";
  src: url(../files/fonts/Gotham-Book.otf);
}
@font-face {
  font-family: "Gotham-Bold";
  src: url(../files/fonts/Gotham-Bold.otf);
}
*, h1, h2, h3, h4, h5, h6, blockquote {
  font-family: "Gotham-Book";
}

header .header-top {
  padding: 6px 0;
  background-color: #0055b8;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
header .header-top .boxHeader {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  text-align: right;
}
header .header-top .boxHeader p {
  margin: 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.9;
  text-align: left;
  line-height: 1;
}
header .header-top .boxHeader .header-top__label {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.9;
}
header .header-top .boxHeader a {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: #ffffff;
  text-decoration: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
header .header-top .boxHeader a:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}
header .header-bottom {
  background-color: #ffffff;
  transition: 0.5s ease-in-out;
  position: relative;
}
header .header-bottom.nav-fixed-top {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 99;
  display: block;
  background-color: #ffffff;
}
header .header-bottom .navbar {
  padding: 15px 0;
}
header .header-bottom .imgHeaderBottom {
  position: absolute;
  top: 0;
  right: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  max-width: 300px;
  height: 100%;
  width: 100%;
}
header .header-bottom .logo img {
  width: 100%;
  height: auto;
  max-width: 210px;
}
header .header-bottom .boxContent {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header-bottom .boxContent .flex-end-menu {
  justify-content: flex-end;
}
header .header-bottom .boxContent .header-nav ul li {
  list-style: none;
  display: inline-block;
  padding: 8px 10px;
  margin-right: 0px;
}
header .header-bottom .boxContent .header-nav ul li:last-child {
  margin-right: 0;
}
header .header-bottom .boxContent .header-nav ul li a {
  color: #0055b8;
  text-decoration: none;
  font-family: "Gotham-Bold";
  transition: 0.5s ease-in-out;
}
header .header-bottom .boxContent .header-nav ul li a:hover {
  color: #73bc25;
}
header .header-bottom .boxContent .header-nav ul li a.custom-link {
  background-color: #0055b8;
  color: #ffffff;
  border-radius: 10px;
  border: 1px solid #0055b8;
  transition: 0.5s ease-in-out;
}
header .header-bottom .boxContent .header-nav ul li a.custom-link:hover {
  color: #0055b8;
  background-color: transparent;
}
header .header-bottom .boxContent .header-nav ul li .megamenu {
  left: 50%;
  transform: translateX(-50%);
}
header .header-bottom .boxContent .header-nav ul li .megamenu li {
  padding-left: 0;
}
header .header-bottom .boxContent .header-nav ul li .megamenu li a {
  background-color: transparent;
}
header .header-bottom .boxContent .header-nav ul li .megamenu li a:hover {
  background-color: transparent;
}
header .header-bottom .boxContent .header-nav ul li .megamenu li a:active, header .header-bottom .boxContent .header-nav ul li .megamenu li a :focus {
  background-color: transparent;
}

.dropdown-menu {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  border: none;
  border-radius: 0;
  padding: 0.7em;
}

@media only screen and (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: flex;
  }
  .dropdown-menu.show {
    display: flex;
  }
}
.dropdown-menu ul {
  list-style: none;
  padding: 0;
}

@media only screen and (max-width: 992px) {
  .dropdown-menu.show {
    flex-wrap: wrap;
    max-height: 350px;
    overflow-y: scroll;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1140px) {
  .dropdown:hover .dropdown-menu {
    width: 40vw;
    flex-wrap: wrap;
  }
}
.dropdown-menu ul {
  list-style: none;
  padding: 0;
}

.dropdown-menu li:first-child a {
  font-weight: bold;
  font-size: 1.1em;
  cursor: normal;
  pointer-events: none;
  position: relative;
}
.dropdown-menu li:first-child a:before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #0055b8;
  left: 15px;
}

@media screen and (min-width: 993px) {
  .dropdown:hover .dropdown-menu {
    display: flex;
  }
  .dropdown-menu.show {
    display: flex;
  }
}
@media screen and (max-width: 992px) {
  .dropdown-menu.show {
    max-height: 60vh;
    overflow-y: scroll;
  }
}
/* Off-Canvas Styles */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
}
.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #000;
  margin: 4px 0;
}

.off-canvas {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 300px;
  background: #ffffff;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  .off-canvas {
    display: block;
  }
}
.off-canvas.open {
  transform: translateX(0);
}
.off-canvas .off-canvas-overlay {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
}
.off-canvas .off-canvas-overlay.open {
  display: block;
}
.off-canvas .off-canvas-content {
  color: #ffffff;
  padding: 20px;
  z-index: 9;
  position: relative;
}
.off-canvas .off-canvas-content .logo {
  max-width: 200px;
}
.off-canvas .off-canvas-content .logo img {
  width: 100%;
  height: auto;
  max-width: 200px;
  margin-bottom: 30px;
}
.off-canvas .off-canvas-content .off-canvas-nav ul {
  list-style: none;
  padding: 0;
}
.off-canvas .off-canvas-content .off-canvas-nav ul li {
  margin-bottom: 10px;
}
.off-canvas .off-canvas-content .off-canvas-nav ul li a {
  color: #0055b8;
  text-decoration: none;
  font-weight: 700;
}
.off-canvas .off-canvas-content .close-btn {
  background: none;
  border: none;
  color: #000000;
  font-size: 2em;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
}

#home {
  min-height: 100vh;
  position: relative;
}
#home .home-slider {
  cursor: default;
  height: 100vh;
}
#home .home-slider .slider-img {
  height: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
#home .home-slider .slider-img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), transparent);
  z-index: 1;
}
#home .home-slider .slider-img.slide-1 {
  background: url("../files/senior-man.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
#home .home-slider .slider-img.slide-2 {
  background: url("../files/young-woman.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
#home .home-slider .slider-img.slide-3 {
  background: url("../files/medium-shot.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
#home .home-slider .slider-img.slide-4 {
  background: url("../files/life-golden-age.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
#home .home-slider .slider-img.slide-5 {
  background: url("../files/day.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
#home .home-slider .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}
#home .home-slider .owl-nav .owl-next, #home .home-slider .owl-nav .owl-prev {
  width: 45px;
  height: 45px;
  line-height: 45px;
  background-color: #73bc25;
  border-radius: 50%;
  position: absolute;
}
#home .home-slider .owl-nav .owl-next {
  right: 15px;
}
#home .home-slider .owl-nav .owl-next span {
  color: #ffffff;
  font-size: 35px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#home .home-slider .owl-nav .owl-prev {
  left: 15px;
}
#home .home-slider .owl-nav .owl-prev span {
  color: #ffffff;
  font-size: 35px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#home .slider-caption {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 90%;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  #home .slider-caption {
    max-width: 80%;
  }
}
#home .slider-caption * {
  pointer-events: auto;
}
@media screen and (max-width: 768px) {
  #home .slider-caption .slider-text {
    margin-bottom: 30px;
  }
}
#home .slider-caption .slider-text .title {
  margin-bottom: 22px;
  font-family: "Gotham-Bold";
  font-size: 50px;
}
@media screen and (max-width: 768px) {
  #home .slider-caption .slider-text .title {
    font-size: 19px;
    margin-bottom: 15px;
  }
  #home .slider-caption .slider-text .title br {
    display: none;
  }
}
#home .slider-caption .slider-text .title .cBlue {
  color: #0055b8;
  font-family: "Gotham-Bold";
}
#home .slider-caption .slider-text .title .cGreen {
  color: #73bc25;
  font-family: "Gotham-Bold";
}
#home .slider-caption .slider-text .textNormal {
  color: #000000;
  font-size: 16px;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  #home .slider-caption .slider-text .textNormal {
    font-size: 14px;
    margin-bottom: 0;
  }
}
#home .slider-caption .slider-text .buttonBanner {
  text-decoration: none;
  color: #ffffff;
  background-color: #0055b8;
  border-radius: 10px;
  padding: 10px 30px;
  border: 2px solid #0055b8;
  transition: 0.5s ease-in-out;
  font-family: "Gotham-Bold";
  display: table;
}
#home .slider-caption .slider-text .buttonBanner:hover {
  background-color: transparent;
  color: #0055b8;
}
@media screen and (max-width: 768px) {
  #home .slider-caption .slider-text .buttonBanner {
    display: none;
  }
}
#home .slider-caption .headForm {
  padding: 10px 30px;
  background: #0055b8;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
#home .slider-caption .headForm .title {
  color: #ffffff;
  text-align: center;
  font-family: "Gotham-Bold";
  font-size: 20px;
}
#home .slider-caption .contentForm {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 30px 30px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
#home .slider-caption .contentForm .textNormal {
  color: #000000;
}
#home .slider-caption .contentForm .form-group {
  margin-bottom: 15px;
}
#home .slider-caption .contentForm .form-group label.error {
  color: red;
}
#home .slider-caption .contentForm .form-group .form-control:focus {
  box-shadow: none;
  outline: none;
}
#home .slider-caption .contentForm .btnForm {
  text-decoration: none;
  color: #ffffff;
  background-color: #0055b8;
  border-radius: 10px;
  padding: 10px 30px;
  border: 2px solid #0055b8;
  transition: 0.5s ease-in-out;
  font-family: "Gotham-Bold";
  display: table;
}
#home .slider-caption .contentForm .btnForm:hover {
  background-color: transparent;
  color: #0055b8;
}
@media screen and (max-width: 768px) {
  #home form {
    max-width: 300px;
    margin: 0 auto;
  }
}

#popular-services {
  padding: 70px 0;
}
#popular-services .sec-title .title {
  font-family: "Gotham-Bold";
  color: #0055b8;
  font-size: 35px;
  margin-top: 0;
  margin-bottom: 30px;
  text-align: center;
}
#popular-services .headingService {
  color: #73bc25;
  font-family: "Gotham-Bold";
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 50px;
}
#popular-services .box-img {
  margin: 0 auto;
  position: relative;
  width: 370px;
}
@media screen and (max-width: 1450px) {
  #popular-services .box-img {
    width: 330px;
  }
}
@media screen and (max-width: 768px) {
  #popular-services .box-img {
    width: 100%;
  }
}
#popular-services .box-img:before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  background-color: #0055b8;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #popular-services .box-img:before {
    left: -15px;
    top: -15px;
  }
}
#popular-services .box-img.before-green:before {
  background-color: #73bc25;
}
#popular-services .box-img img {
  width: 100%;
  height: auto;
  max-width: 370px;
  display: table;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  #popular-services .box-img img {
    width: 100%;
    max-width: 100%;
  }
}
#popular-services .buttonGreen {
  text-decoration: none;
  color: #ffffff;
  background-color: #73bc25;
  border-radius: 10px;
  padding: 10px 30px;
  border: 2px solid #73bc25;
  transition: 0.5s ease-in-out;
  font-family: "Gotham-Bold";
  display: table;
  margin: 30px auto 0;
}
#popular-services .buttonGreen:hover {
  background-color: transparent;
  color: #73bc25;
}

#stem-cells-and-exosomes {
  scroll-margin-top: 70px;
  padding: 70px 0;
  position: relative;
}
#stem-cells-and-exosomes .sec-title .title {
  font-family: "Gotham-Bold";
  color: #0055b8;
  text-align: center;
  font-size: 35px;
  line-height: normal;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #stem-cells-and-exosomes .sec-title .title {
    margin-bottom: 25px;
    font-size: 25px;
  }
}
#stem-cells-and-exosomes .normalText {
  color: #000000;
  font-size: 20px;
  line-height: normal;
}
#stem-cells-and-exosomes .normalText .tBold {
  font-family: "Gotham-Bold";
}
@media screen and (max-width: 768px) {
  #stem-cells-and-exosomes .normalText {
    text-align: justify;
    margin-bottom: 30px;
  }
}
#stem-cells-and-exosomes .cont-box {
  position: relative;
  overflow: hidden;
  transition: 0.5s ease-in-out;
  border-radius: 40px;
}
#stem-cells-and-exosomes .cont-box .back-img {
  border-radius: 40px;
  transition: filter 0.5s ease;
}
#stem-cells-and-exosomes .cont-box .back-info {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 15px 40px;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.7);
  height: 60px;
  overflow: hidden;
  transition: height 0.5s ease;
}
@media screen and (max-width: 768px) {
  #stem-cells-and-exosomes .cont-box .back-info {
    margin-bottom: 30px;
    margin-top: 30px;
    position: relative;
    height: 100%;
    padding: 0;
  }
}
#stem-cells-and-exosomes .cont-box .back-info .title-service {
  font-family: "Gotham-Bold";
  color: #0055b8;
  font-size: 25px;
  margin-bottom: 10px;
  text-align: center;
}
#stem-cells-and-exosomes .cont-box .back-info .text-service {
  opacity: 0;
  transform: translateY(20px);
  text-align: justify;
  line-height: normal;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
@media screen and (max-width: 768px) {
  #stem-cells-and-exosomes .cont-box .back-info .text-service {
    opacity: 1;
    transform: translateY(0);
  }
}
#stem-cells-and-exosomes .cont-box:hover .back-img {
  filter: brightness(70%);
}
#stem-cells-and-exosomes .cont-box:hover .back-info {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #stem-cells-and-exosomes .cont-box:hover .back-info {
    display: block;
  }
}
#stem-cells-and-exosomes .cont-box:hover .back-info .text-service {
  opacity: 1;
  transform: translateY(0);
}
#stem-cells-and-exosomes .benefits {
  padding: 50px 0 0 0;
}
#stem-cells-and-exosomes .benefits .subtitle-section .title {
  font-family: "Gotham-Bold";
  color: #0055b8;
  font-size: 35px;
  margin-top: 0;
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #stem-cells-and-exosomes .benefits .subtitle-section .title {
    font-size: 25px;
  }
}
#stem-cells-and-exosomes .benefits .flex-box {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
@media screen and (max-width: 768px) {
  #stem-cells-and-exosomes .benefits .flex-box {
    grid-template-columns: repeat(1, 1fr);
  }
}
#stem-cells-and-exosomes .benefits .flex-box .box-benefit {
  margin-bottom: 30px;
  position: relative;
}
#stem-cells-and-exosomes .benefits .flex-box .box-benefit .icon-benefit {
  margin: 0 auto 20px;
  display: table;
  max-width: 70px;
  height: auto;
}
#stem-cells-and-exosomes .benefits .flex-box .box-benefit .title-benefit {
  font-family: "Gotham-Bold";
  font-size: 19px;
  text-align: center;
  padding: 0 15px;
}
@media screen and (max-width: 768px) {
  #stem-cells-and-exosomes .benefits .flex-box .box-benefit .title-benefit br {
    display: none;
  }
}
#stem-cells-and-exosomes .benefits .flex-box .box-benefit .float-info {
  display: none;
  position: fixed;
  pointer-events: none;
  background: #73bc25;
  border-radius: 40px;
  text-align: center;
  width: 400px;
  z-index: 1000;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  #stem-cells-and-exosomes .benefits .flex-box .box-benefit .float-info {
    position: relative;
    display: block;
    border: none;
    background-color: transparent;
    width: 100%;
    z-index: 0;
    opacity: 1;
  }
}
#stem-cells-and-exosomes .benefits .flex-box .box-benefit .float-info .img-box {
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}
@media screen and (max-width: 768px) {
  #stem-cells-and-exosomes .benefits .flex-box .box-benefit .float-info .img-box {
    display: none;
  }
}
#stem-cells-and-exosomes .benefits .flex-box .box-benefit .float-info .text-box {
  color: #fff;
  font-size: 16px;
  padding: 15px 15px 0;
  line-height: normal;
}
@media screen and (max-width: 768px) {
  #stem-cells-and-exosomes .benefits .flex-box .box-benefit .float-info .text-box {
    font-size: 16px;
    color: #000000;
  }
}
#stem-cells-and-exosomes .benefits .text-marker {
  color: #0055b8;
  font-size: 18px;
  font-family: "Gotham-Bold";
  text-align: center;
}
#stem-cells-and-exosomes .benefits .buttonGreen {
  text-decoration: none;
  color: #ffffff;
  background-color: #73bc25;
  border-radius: 10px;
  padding: 10px 30px;
  border: 2px solid #73bc25;
  transition: 0.5s ease-in-out;
  font-family: "Gotham-Bold";
  display: table;
  margin: 30px auto 0;
}
#stem-cells-and-exosomes .benefits .buttonGreen:hover {
  background-color: transparent;
  color: #73bc25;
}
#stem-cells-and-exosomes .carousel-packages {
  max-width: 70%;
  margin: 40px auto 0;
}
@media screen and (max-width: 768px) {
  #stem-cells-and-exosomes .carousel-packages {
    max-width: 100%;
  }
}
#stem-cells-and-exosomes .carousel-packages .item .title-package {
  font-size: 25px;
  text-align: center;
  color: #0055b8;
  font-family: "Gotham-Bold";
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #stem-cells-and-exosomes .carousel-packages .item .title-package {
    font-size: 20px;
  }
}
#stem-cells-and-exosomes .carousel-packages .item .package-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
@media screen and (max-width: 768px) {
  #stem-cells-and-exosomes .carousel-packages .item .package-row {
    grid-template-columns: repeat(1, 1fr);
  }
}
#stem-cells-and-exosomes .carousel-packages .item .package-row .module .title-box {
  background-color: #d5b7a9;
  color: #fff;
  text-align: center;
  padding: 10px 15px;
  font-size: 19px;
  font-family: "Gotham-Bold";
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #stem-cells-and-exosomes .carousel-packages .item .package-row .module .title-box {
    font-size: 18px;
  }
}
#stem-cells-and-exosomes .carousel-packages .item .package-row .module ul {
  list-style: none;
  text-align: left;
  padding-left: 10px;
  padding-right: 10px;
  min-height: 255px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #stem-cells-and-exosomes .carousel-packages .item .package-row .module ul {
    min-height: auto;
  }
}
#stem-cells-and-exosomes .carousel-packages .item .package-row .module ul:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #0055b8;
  top: 0;
  right: -7.5px;
}
@media screen and (max-width: 768px) {
  #stem-cells-and-exosomes .carousel-packages .item .package-row .module ul:after {
    display: none;
  }
}
#stem-cells-and-exosomes .carousel-packages .item .package-row .module ul.disabled-border:after {
  display: none;
}
#stem-cells-and-exosomes .carousel-packages .item .package-row .module ul li {
  color: #000;
  font-size: 16px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #stem-cells-and-exosomes .carousel-packages .item .package-row .module ul li {
    margin-bottom: 5px;
    text-align: center;
  }
}
#stem-cells-and-exosomes .carousel-packages .item .package-row .module ul li.tBold {
  font-family: "Gotham-Bold";
}
#stem-cells-and-exosomes .carousel-packages .item .package-row .module ul li.tColor {
  color: #d5b7a9;
  font-family: "Gotham-Bold";
}
#stem-cells-and-exosomes .carousel-packages .slick-prev, #stem-cells-and-exosomes .carousel-packages .slick-next {
  z-index: 9;
  width: 40px;
  height: 40px;
}
#stem-cells-and-exosomes .carousel-packages .slick-prev {
  left: -40px;
}
#stem-cells-and-exosomes .carousel-packages .slick-next {
  right: -40px;
}
#stem-cells-and-exosomes .carousel-packages .slick-prev:before, #stem-cells-and-exosomes .carousel-packages .slick-next:before {
  color: #73bc25;
  font-size: 40px;
}

.cta1 {
  padding: 40px 0;
  position: relative;
  background-color: #73bc25;
}
.cta1 .content {
  display: flex;
  align-items: center;
  max-width: 70%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .cta1 .content {
    flex-direction: column;
    max-width: 100%;
  }
}
.cta1 .icon {
  margin-right: 15px;
  max-width: 75px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .cta1 .icon {
    margin-bottom: 30px;
  }
}
.cta1 .title {
  font-family: "Gotham-Bold";
  color: #ffffff;
  text-align: center;
  font-size: 25px;
  line-height: normal;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .cta1 .title {
    font-size: 20px;
  }
}

#why-us {
  padding: 70px 0;
  position: relative;
  background-color: #0055b8;
}
#why-us .content {
  max-width: 100%;
}
#why-us .title {
  font-family: "Gotham-Bold";
  color: #ffffff;
  text-align: center;
  font-size: 25px;
  line-height: normal;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  #why-us .title {
    margin-bottom: 25px;
  }
}
#why-us .title .tBold {
  font-family: "Gotham-Bold";
}
#why-us .normalText {
  color: #fff;
  font-size: 20px;
  line-height: normal;
}
#why-us .normalText .tBold {
  font-family: "Gotham-Bold";
}

.colorBoxes {
  padding: 50px 0;
  position: relative;
}
.colorBoxes .colCustom {
  flex: 0 0 20%;
  max-width: 20%;
  width: 20%;
}
@media screen and (max-width: 768px) {
  .colorBoxes .colCustom {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }
}
.colorBoxes .colCustom:first-child {
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}
@media screen and (max-width: 768px) {
  .colorBoxes .colCustom:first-child {
    border-radius: 0;
  }
}
.colorBoxes .colCustom:last-child {
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}
@media screen and (max-width: 768px) {
  .colorBoxes .colCustom:last-child {
    border-radius: 0;
  }
}
.colorBoxes .colCustom:nth-child(odd) {
  background-color: #73bc25;
}
.colorBoxes .colCustom:nth-child(even) {
  background-color: #0055b8;
}
.colorBoxes .colCustom .content {
  padding: 30px 15px;
}
.colorBoxes .colCustom .content .icon {
  text-align: center;
}
.colorBoxes .colCustom .content .icon img {
  max-width: 75px;
  width: 100%;
  margin: 0 auto 15px;
}
.colorBoxes .colCustom .content .contText {
  text-align: center;
}
.colorBoxes .colCustom .content .contText .text {
  line-height: normal;
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 0;
}

.cta2 {
  padding: 30px 0;
  position: relative;
  background-color: #73bc25;
}
.cta2 .content {
  max-width: 70%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .cta2 .content {
    max-width: 100%;
  }
}
.cta2 .title {
  font-family: "Gotham-Bold";
  color: #ffffff;
  text-align: center;
  font-size: 30px;
  line-height: normal;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .cta2 .title {
    font-size: 20px;
  }
}

#explore-packages {
  padding: 70px 0;
  position: relative;
}
#explore-packages .topImg {
  position: absolute;
  top: 0;
  right: 10%;
  max-width: 350px;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  #explore-packages .topImg {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}
#explore-packages .bottle {
  position: absolute;
  bottom: 30%;
  left: 5%;
  max-width: 150px;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  #explore-packages .bottle {
    bottom: 0;
  }
}
#explore-packages .sec-title .title {
  font-family: "Gotham-Bold";
  color: #0055b8;
  font-size: 35px;
  margin-top: 0;
  margin-bottom: 30px;
  text-align: center;
}
#explore-packages .carousel-surgery {
  width: 100%;
  margin: 0 auto;
}
#explore-packages .carousel-surgery .cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
#explore-packages .carousel-surgery .cards .card {
  background-color: #e8ecf8;
  border-radius: 20px;
  padding: 15px;
  box-sizing: border-box;
  flex: 0 0 calc(25% - 40px); /* Adjust card width */
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
  border: 0;
}
@media screen and (max-width: 1024px) {
  #explore-packages .carousel-surgery .cards .card {
    padding: 10px;
    flex: 1 1 33.333%;
  }
}
@media screen and (max-width: 768px) {
  #explore-packages .carousel-surgery .cards .card {
    padding: 8px;
    flex: 1 1 50%;
  }
}
#explore-packages .carousel-surgery .cards .card h3 {
  margin-bottom: 10px;
  font-size: 19px;
  color: #0055b8;
  font-family: "Gotham-Bold";
  text-align: center;
}
#explore-packages .carousel-surgery .cards .card h4 {
  margin: 10px 0;
  font-size: 19px;
  color: #0055b8;
  font-family: "Gotham-Bold";
  text-align: center;
}
#explore-packages .carousel-surgery .cards .card ul {
  list-style-type: none;
  padding: 0;
  margin-top: 10px;
  color: #0055b8;
  font-size: 15px;
  text-align: center;
}
#explore-packages .carousel-surgery .cards .card ul li {
  margin: 5px 0;
}
#explore-packages .carousel-surgery .cards .card .note {
  font-size: 14px;
  color: #0055b8;
  margin-top: auto;
  font-family: "Gotham-Medium";
  text-align: center;
}
#explore-packages .carousel-surgery .slick-prev, #explore-packages .carousel-surgery .slick-next {
  z-index: 9;
}
#explore-packages .carousel-surgery .slick-prev:before, #explore-packages .carousel-surgery .slick-next:before {
  color: #73bc25;
  font-size: 40px;
}
#explore-packages .carousel-surgery .slick-slide {
  margin: 10px;
}
#explore-packages .carousel-surgery .slick-list {
  margin: 0 -10px;
}

#doctors {
  padding: 70px 0;
  background-color: #0055b8;
}
#doctors .sec-title {
  text-align: center;
}
#doctors .sec-title .title {
  color: #ffffff;
  font-size: 35px;
  margin-bottom: 40px;
  font-weight: 700;
}
#doctors .col-custom {
  flex: 0 0 20%;
  width: 20%;
  max-width: 20%;
  margin-bottom: 25px;
}
#doctors .col-custom .boxImg {
  padding: 10px;
  border: 1px solid #73bc25;
  border-radius: 20px;
  margin-bottom: 15px;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  #doctors .col-custom .boxImg {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 25px;
  }
}
#doctors .col-custom .boxImg img {
  max-width: 100%;
  border-radius: 20px;
}
#doctors .col-custom .boxInfo {
  padding: 0 15px;
  text-align: center;
}
#doctors .col-custom .boxInfo .nameDoctor {
  color: #ffffff;
  font-size: 17px;
  margin-bottom: 0px;
  font-weight: 600;
}
#doctors .col-custom .boxInfo ul {
  text-align: center;
  display: inline-block;
  padding-left: 0;
  text-decoration: none;
  list-style: none;
}
#doctors .col-custom .boxInfo ul .specialist {
  color: #73bc25;
  list-style: none;
  font-size: 16px;
  margin-bottom: 2px;
  font-weight: 600;
  text-align: center;
}
#doctors .slick-dots li button:before {
  color: #ffffff;
}
#doctors .slick-dots li.slick-active button:before {
  color: #ffffff;
}
#doctors .slick-prev, #doctors .slick-next {
  z-index: 9;
  width: 40px;
  height: 40px;
}
#doctors .slick-prev {
  left: -40px;
}
@media screen and (max-width: 768px) {
  #doctors .slick-prev {
    left: 10px;
  }
}
#doctors .slick-next {
  right: -40px;
}
@media screen and (max-width: 768px) {
  #doctors .slick-next {
    right: 10px;
  }
}
#doctors .slick-prev:before, #doctors .slick-next:before {
  color: #73bc25;
  font-size: 40px;
}
#doctors .slick-slide {
  margin: 10px;
}
#doctors .slick-list {
  margin: 0 -10px;
}

.disclaimer {
  padding: 30px 0;
  position: relative;
  background-color: #73bc25;
}
@media screen and (max-width: 768px) {
  .disclaimer {
    padding: 30px 0 70px;
  }
}
.disclaimer .content {
  max-width: 100%;
  margin: 0 auto;
}
.disclaimer .title {
  color: #ffffff;
  font-size: 35px;
  font-family: "Gotham-Bold";
  margin-bottom: 25px;
  text-align: center;
}
.disclaimer .textNormal {
  color: #ffffff;
  text-align: center;
  font-size: 16px;
  line-height: normal;
  margin-bottom: 0;
  text-align: justify;
}

#medical-tourism-form {
  padding: 60px 0;
  background: #f2f2f2;
}
#medical-tourism-form .container {
  max-width: 980px;
}
#medical-tourism-form .contact-form-recaptcha-v3 {
  background: #ffffff;
  border-radius: 14px;
  padding: 34px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
@media (max-width: 768px) {
  #medical-tourism-form .contact-form-recaptcha-v3 {
    padding: 22px;
    border-radius: 12px;
  }
}
#medical-tourism-form .headForm {
  margin-bottom: 18px;
}
#medical-tourism-form .headForm .title {
  font-family: "Gotham-Bold";
  color: #0055b8;
  font-size: 32px;
  line-height: 1.15;
  margin: 0 0 30px;
  text-align: center;
}
@media (max-width: 768px) {
  #medical-tourism-form .headForm .title {
    font-size: 26px;
  }
}
#medical-tourism-form .headForm .textNormal {
  font-family: "Gotham-Book";
  font-size: 16px;
  color: rgba(0, 0, 0, 0.75);
  line-height: 1.55;
  margin: 0 0 10px;
}
#medical-tourism-form .contact-form-success,
#medical-tourism-form .contact-form-error {
  border-radius: 10px;
  padding: 12px 14px;
  font-family: "Gotham-Book";
  font-size: 14px;
}
#medical-tourism-form .contentForm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
#medical-tourism-form .contentForm .textNormal {
  font-family: "Gotham-Book";
  font-size: 16px;
  color: rgba(0, 0, 0, 0.78);
  line-height: 1.55;
  margin: 0 0 14px;
}
#medical-tourism-form .form-group--half {
  grid-column: span 1;
}
#medical-tourism-form .form-group:not(.form-group--half),
#medical-tourism-form .btnForm {
  grid-column: 1/-1;
}
@media (max-width: 768px) {
  #medical-tourism-form .contentForm {
    grid-template-columns: 1fr;
    -moz-column-gap: 0;
         column-gap: 0;
  }
  #medical-tourism-form .form-group--half {
    grid-column: 1/-1;
  }
}
#medical-tourism-form .form-group {
  margin-bottom: 14px;
}
#medical-tourism-form .form-group > .textNormal {
  margin-bottom: 10px;
  color: rgba(0, 0, 0, 0.85);
  font-family: "Gotham-Medium";
  font-size: 15px;
}
#medical-tourism-form .form-control {
  width: 100%;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: "Gotham-Book";
  font-size: 15px;
  color: #000000;
  transition: 0.2s ease;
}
#medical-tourism-form .form-control::-moz-placeholder {
  color: rgba(0, 0, 0, 0.45);
}
#medical-tourism-form .form-control::placeholder {
  color: rgba(0, 0, 0, 0.45);
}
#medical-tourism-form .form-control:focus {
  outline: none;
  border-color: rgba(0, 85, 184, 0.9);
  box-shadow: 0 0 0 3px rgba(0, 85, 184, 0.14);
}
#medical-tourism-form .form-group label {
  font-family: "Gotham-Book";
  font-size: 15px;
  color: rgba(0, 0, 0, 0.82);
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
#medical-tourism-form .form-group label input[type=radio] {
  width: 16px;
  height: 16px;
  accent-color: #0055b8;
  transform: translateY(1px);
}
#medical-tourism-form .form-group:has(input[type=radio]) {
  padding: 14px 14px 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  background: rgba(242, 242, 242, 0.45);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
}
#medical-tourism-form .form-group:has(input[type=radio]) > .textNormal {
  grid-column: 1/-1;
  margin: 0 0 2px;
}
#medical-tourism-form .form-group:has(input[type=radio]) label {
  margin: 0;
  padding: 8px 10px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: 0.2s ease;
}
#medical-tourism-form .form-group:has(input[type=radio]) label:hover {
  border-color: rgba(0, 85, 184, 0.35);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}
@media (max-width: 768px) {
  #medical-tourism-form .form-group:has(input[type=radio]) {
    grid-template-columns: 1fr;
  }
}
#medical-tourism-form .btnForm {
  width: 100%;
  margin-top: 8px;
  border: none;
  border-radius: 12px;
  padding: 14px 16px;
  font-family: "Gotham-Bold";
  font-size: 15px;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: 0.2s ease;
  background: #0055b8;
  color: #ffffff;
}
#medical-tourism-form .btnForm:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 85, 184, 0.22);
}
#medical-tourism-form .btnForm:active {
  transform: translateY(0);
  box-shadow: none;
}
@media (max-width: 768px) {
  #medical-tourism-form {
    padding: 34px 0;
  }
}

.socialDesktop {
  z-index: 99;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 5px;
}
@media screen and (max-width: 768px) {
  .socialDesktop {
    display: none;
  }
}
.socialDesktop a {
  display: block;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  position: relative;
  border: 1px solid #25D366;
  background-color: #25D366;
  transition: 0.5s ease-in-out;
}
.socialDesktop a i {
  position: absolute;
  padding: 5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 35px;
}

.socialMobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .socialMobile {
    display: block;
    border-top: 1px solid #ffffff;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
  }
  .socialMobile a {
    width: 100%;
    padding: 10px 15px;
    text-align: center;
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    display: table;
    margin: 0 auto;
  }
  .socialMobile a i {
    color: #ffffff;
    margin-left: 10px;
  }
}

@media screen and (max-width: 768px) {
  .grecaptcha-badge {
    display: none;
  }
}

#contact-float {
  display: none;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 99;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
}
#contact-float form {
  max-width: 300px;
  margin: 0 auto;
  z-index: 99;
  position: relative;
}
#contact-float form .close-form {
  position: absolute;
  top: -30px;
  right: -30px;
  color: #000;
  padding: 5px;
  font-size: 15px;
  border-radius: 4px;
  background-color: #fff;
  border: 1px solid #fff;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
}
#contact-float form .close-form:hover {
  opacity: 0.7;
}
#contact-float .headForm {
  padding: 10px 30px;
  background: #0055b8;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
#contact-float .headForm .title {
  color: #ffffff;
  text-align: center;
  font-family: "Gotham-Bold";
  font-size: 20px;
}
#contact-float .contentForm {
  background-color: #fff;
  padding: 30px 30px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
#contact-float .contentForm .textNormal {
  color: #000000;
}
#contact-float .contentForm .form-group {
  margin-bottom: 15px;
}
#contact-float .contentForm .form-group label.error {
  color: red;
}
#contact-float .contentForm .form-group .form-control:focus {
  box-shadow: none;
  outline: none;
}
#contact-float .contentForm .btnForm {
  text-decoration: none;
  color: #ffffff;
  background-color: #0055b8;
  border-radius: 10px;
  padding: 10px 30px;
  border: 2px solid #0055b8;
  transition: 0.5s ease-in-out;
  font-family: "Gotham-Bold";
  display: table;
  margin: 0 auto;
}
#contact-float .contentForm .btnForm:hover {
  background-color: transparent;
  color: #0055b8;
}

.social-desktop-2 {
  z-index: 999;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: -96px;
}
@media (max-width: 764px) {
  .social-desktop-2 {
    display: none;
  }
}
.social-desktop-2 a {
  display: flex;
  align-items: center;
  width: auto;
  height: auto;
  position: relative;
  margin: 10px 0;
  color: #fff;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  transform: translateX(0px);
  transition: 0.5s ease-in-out;
  text-decoration: none;
}
.social-desktop-2 a:hover {
  transform: translateX(-96px);
}
.social-desktop-2 a:nth-child(odd) {
  border: 1px solid #0055b8;
  background-color: #0055b8;
}
.social-desktop-2 a:nth-child(even) {
  border: 1px solid #73bc25;
  background-color: #73bc25;
}
.social-desktop-2 a i {
  padding: 5px 10px;
  font-size: 23px;
  border-right: 1px solid #fff;
  width: 46px;
  text-align: center;
}
.social-desktop-2 a span {
  color: #fff;
  padding: 0 5px;
}

.social-mobile {
  display: none;
}
@media (max-width: 764px) {
  .social-mobile {
    display: block;
    position: fixed;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0055b8;
    border-radius: 1.5rem;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    padding: 0.5rem;
    z-index: 99;
    box-shadow: inset 8px 8px 16px rgba(0, 0, 0, 0.2), inset -8px -8px 16px rgba(255, 255, 255, 0.1);
  }
  .social-mobile .show-socials {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 3rem;
    margin: 0 auto;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
  }
  .social-mobile .show-socials i {
    color: #fff;
    font-size: 1.2rem;
    transition: transform 0.3s ease-in-out;
  }
  .social-mobile .show-socials:hover {
    transform: translateY(-3px);
  }
  .social-mobile .show-socials.active + .box-socials {
    display: flex;
    max-height: 100px;
    height: 70px;
  }
  .social-mobile .box-socials {
    display: flex;
    margin-top: 0.5rem;
    gap: 1rem;
    justify-content: center;
    transition: all 0.5s ease-in-out;
    height: 0;
  }
  .social-mobile .box-socials a {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    text-decoration: none;
    background-color: #73bc25;
    border-radius: 50%;
    box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.2), -8px -8px 16px rgba(255, 255, 255, 0.1);
    transition: transform 0.2s ease-in-out;
  }
  .social-mobile .box-socials a:hover {
    transform: translateY(-3px);
  }
}/*# sourceMappingURL=custom.css.map */