/*
Theme Name: mht
Theme URI: https://myhealth.travel
Author: Just Digital
Author URI: https://justdigital.md
Description:
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: mht
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/*--------------------------------------helpers--------------------------*/
/*--------------------------------------components--------------------------*/
/*--------------------------------------helpers--------------------------*/
.teal {
  color: #204341;
}

.teal-light {
  background: var(--lin, linear-gradient(117deg, #1a6669 0.98%, #348c8d 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.title-small {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}

.title-large {
  font-weight: 700;
  font-size: 40px;
  line-height: 130%;
}

.title-large--fixed-height {
  height: 36px;
  position: relative;
  z-index: 1;
}

.text-center {
  text-align: center !important;
  display: block;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.uppercase {
  text-transform: uppercase !important;
}

.capitalize {
  text-transform: capitalize !important;
}

.capitalize-first {
  text-transform: lowercase;
}
.capitalize-first:first-letter {
  text-transform: uppercase;
}

.border-radius-30 {
  border-radius: 30px;
}

/* ------------------------------margin --------------------------*/
.m-auto {
  margin: auto !important;
}

.mt-8 {
  margin-top: 8px !important;
}

.mt-16 {
  margin-top: 16px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-32 {
  margin-top: 32px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mt-48 {
  margin-top: 48px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

.mt-120 {
  margin-top: 120px !important;
}

.p-40 {
  padding: 40px !important;
}

@media (max-width: 640px) {
  .mt-8 {
    margin-top: 4px !important;
  }
  .mt-16 {
    margin-top: 8px !important;
  }
  .mt-20 {
    margin-top: 10px !important;
  }
  .mt-32 {
    margin-top: 16px !important;
  }
  .mt-40 {
    margin-top: 20px !important;
  }
  .mt-48 {
    margin-top: 24px !important;
  }
  .mt-60 {
    margin-top: 30px !important;
  }
  .mt-80 {
    margin-top: 40px !important;
  }
  .mt-100 {
    margin-top: 50px !important;
  }
  .mt-120 {
    margin-top: 60px !important;
  }
}
/*--------------------------padding--------------------------*/
.p-20 {
  padding: 20px !important;
}

.p-40 {
  padding: 40px !important;
}

.px-20 {
  padding: 0 20px !important;
}

.px-40 {
  padding: 0 40px !important;
}

.py-20 {
  padding: 20px 0 !important;
}

.py-40 {
  padding: 40px 0 !important;
}

/*--------------------------padding--------------------------*/
/*--------------------------------------helpers--------------------------*/
.container {
  max-width: 1472px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 22px;
}

.container--small {
  max-width: 1322px;
}

.button {
  display: inline-block;
  border-radius: 999px;
  padding: 19px 24px;
  color: var(--white);
  background: #32a59f;
  border: 5px solid #32a59f;
  transition: all 0.3s ease;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.button:hover {
  background: transparent;
  border: 5px solid #32a59f;
  color: #000;
}

.button--avocado {
  background-color: var(--avocado);
  border-color: var(--avocado);
  color: var(--button-text-color);
}
.button--avocado:hover {
  border-color: var(--avocado);
  color: var(--button-text-color);
}

.button--avocado-white {
  background-color: var(--avocado);
  border-color: var(--avocado);
  color: var(--button-text-color);
}
.button--avocado-white:hover {
  border-color: var(--avocado);
  color: var(--white);
}

.arrow-btn {
  border-radius: 50%;
  background: #edf4e4;
  width: 24px;
  height: 24px;
  background: url("assets/images/arrow.svg") no-repeat center center, #edf4e4;
}

.arrow-btn--left {
  transform: rotate(180deg);
}

.badge {
  width: fit-content;
  border-radius: 50px;
  background: #f6f6f6;
  padding: 12px 40px;
  display: grid;
  place-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%; /* 24px */
  letter-spacing: -0.4px;
  text-transform: uppercase;
}

.badge--fs-42 {
  font-size: 42px;
  min-width: 558px;
}
@media (max-width: 640px) {
  .badge--fs-42 {
    min-width: auto;
  }
}

.badge--white {
  background: var(--white);
  padding: 12px 30px;
}

.badge--grey {
  color: #28514f;
}

.badge--aqua-green {
  background: #28514f;
  color: #fff;
}

.badge--teal {
  background: #578987;
  color: #fff;
}

.paragraph {
  color: #709a98;
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  line-height: 120%; /* 19.2px */
  letter-spacing: 0.16px;
}
.paragraph--fs-20 {
  font-size: 20px !important;
  line-height: 150% !important;
}

.paragraph a {
  text-decoration: underline;
}

.star {
  width: 24px;
  height: 24px;
  background: url("assets/images/star.svg") no-repeat center center;
}

.quote--end {
  transform: rotate(180deg);
}

@media (max-width: 640px) {
  .container {
    padding: 0 15px;
  }
  .badge {
    font-size: 16px;
  }
}
.responsive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 48px 32px;
}

.linear-teal {
  background: linear-gradient(116.56deg, #1a6669 0.98%, #348c8d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/*--------------------------------------helpers--------------------------*/
.glass-effect {
  padding: 35px 25px 25px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: linear-gradient(
    86deg,
    rgba(255, 255, 255, 0.12) 11%,
    rgba(255, 255, 255, 0.02) 113%
  );
  box-shadow: 0px 1px 21px 0px rgba(69, 42, 124, 0.1);
  backdrop-filter: blur(10.5px);
  -webkit-backdrop-filter: blur(10.5px);
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
}
.glass-effect::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.glass-effect--one-border::after {
  content: none;
}

/* ---------------------------------------glass-card --------------------------*/
.glass-card {
  display: block;
}
.glass-card__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.glass-card--reverse .glass-card__img {
  margin-left: auto;
}
.glass-card--reverse .glass-card__description {
  right: auto;
  left: 0;
}
.glass-card--reverse .glass-card__logo {
  left: 0;
  right: auto;
}
.glass-card--bottom .glass-card__description {
  bottom: 20px;
  align-items: flex-end;
}
.glass-card--bottom .glass-card__text {
  min-height: 170px;
  display: grid;
  place-items: center;
}
.glass-card--white .glass-card__text {
  color: #fff;
}
.glass-card--center .glass-card__container {
  width: 100%;
}
.glass-card--center .glass-card__img {
  width: 100%;
}
.glass-card--center .glass-card__img img {
  width: 100%;
}
.glass-card--center .glass-card__description {
  width: calc(100% - 120px);
  height: auto;
  top: 20px;
  left: 60px;
  right: 60px;
}
.glass-card:hover .glass-card__img img {
  transform: scale(1.1);
}
.glass-card__container {
  position: relative;
}
.glass-card__img {
  width: 60%;
  border-radius: 60px;
  overflow: hidden;
}
.glass-card__img img {
  width: 100%;
  min-height: 300px;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.glass-card__description {
  height: 100%;
  width: 60%;
  position: absolute;
  right: 0;
  top: 0;
  display: grid;
  place-items: center;
}
.glass-card__text {
  position: relative;
  padding: 3px 20px 3px 3px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0px 1.4px 35px 0px rgba(69, 42, 124, 0.1);
  backdrop-filter: blur(12px);
  color: #28514f;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 120%; /* 19.2px */
}
.glass-card__logo {
  position: absolute;
  top: 95%;
  right: 0;
}

@media (max-width: 640px) {
  .glass-card {
    padding-bottom: 80px;
  }
  .glass-card:hot(.glass-card--center) {
    padding-bottom: 100px;
  }
  .glass-card--center .glass-card__description {
    left: 25px;
    right: 25px;
    width: calc(100% - 50px);
  }
  .glass-card__img {
    width: 90%;
  }
  .glass-card__description {
    width: 80%;
    top: 100px;
    right: 0;
    align-items: end;
  }
}
/* ---------------------------------------glass-card --------------------------*/
/* ---------------------------------------simple-card --------------------------*/
.simple-card {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr 1.4fr;
}
.simple-card--reverse {
  grid-template-columns: 1.4fr 1fr;
}
.simple-card--reverse .simple-card__img {
  order: -1;
}
.simple-card--secondary {
  gap: 67px;
  grid-template-columns: 1fr 1.9fr;
}
.simple-card--secondary .simple-card__content {
  align-content: center;
  gap: 24px;
}
.simple-card--secondary.simple-card--reverse {
  grid-template-columns: 1.9fr 1fr;
}
.simple-card--tertiary {
  gap: 67px;
  grid-template-columns: 1fr 1.3fr;
}
.simple-card--tertiary .simple-card__content {
  align-content: center;
  gap: 24px;
}
.simple-card--tertiary.simple-card--reverse {
  grid-template-columns: 1.3fr 1fr;
}
.simple-card--big-text .simple-card__text {
  font-size: 20px;
  line-height: 150%;
}
.simple-card--align-bottom {
  align-items: end;
}
.simple-card__img {
  position: relative;
  height: 100%;
  min-height: 200px;
  border-radius: 60px;
  overflow: hidden;
}
.simple-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.simple-card__img img:hover {
  transform: scale(1.1);
}
.simple-card__content {
  display: grid;
  grid-template-rows: min-content;
  gap: 32px;
}
.simple-card__text {
  color: #709a98;
  font-size: 16px;
  font-weight: 300;
  line-height: 120%; /* 19.2px */
}

/* ---------------------------------------media queries --------------------------*/
@media (max-width: 1024px) {
  .simple-card {
    grid-template-columns: 1fr;
  }
  .simple-card--reverse {
    grid-template-columns: 1fr;
  }
  .simple-card--reverse .simple-card__img {
    order: 0;
  }
  .simple-card--secondary {
    grid-template-columns: 1fr;
  }
  .simple-card--secondary.simple-card--reverse {
    grid-template-columns: 1fr;
  }
  .simple-card--tertiary {
    grid-template-columns: 1fr;
  }
  .simple-card--tertiary.simple-card--reverse {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .simple-card--big-text .simple-card__text {
    font-size: 16px;
    line-height: 150%;
  }
}
/* ---------------------------------------simple-card --------------------------*/
/* ---------------------------------------hero-border --------------------------*/
.hero-border {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  inset: 0;
  border: 30px solid rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.2);
  outline-offset: -30px;
  border-radius: 60px;
  mix-blend-mode: overlay;
}

/* ---------------------------------------hero-border --------------------------*/
/*-------------------------------------- adventure section --------------------------*/
.adventure {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.adventure__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.adventure__list {
  margin-top: 44px;
  width: 100%;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.adventure__card {
  background-color: var(--white);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.adventure__card img {
  transition: all 0.3s;
}

.adventure__card img:hover {
  scale: 1.2;
}

.adventure__img {
  aspect-ratio: 425/243;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.adventure__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.adventure__content {
  display: flex;
  flex-direction: column;
  padding: 32px 65px 32px 32px;
  flex-grow: 1;
}

.adventure__title {
  color: #204a48;
  margin-bottom: 12px;
}

.adventure__text {
  margin-bottom: 42px;
  color: #578987;
  font-size: 16px;
  line-height: 140%; /* 22.4px */
}

.adventure__text-info {
  display: block;
  margin-top: 8px;
  color: #aeaeae;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
}

.adventure__button {
  margin-top: auto;
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  gap: 12px;
}

.adventure__button--bottom {
  margin-top: 44px;
  width: 277px;
}

/*-------------------------- media --------------------------*/
@media (max-width: 640px) {
  .adventure__list {
    grid-template-columns: 1fr;
  }
  .adventure__img {
    aspect-ratio: unset;
  }
  .adventure__content {
    padding: 28px;
  }
}
/*-------------------------------------- adventure section --------------------------*/
/*--------------------------teal container--------------------------*/
.teal-container {
  margin-top: 120px;
  padding: 40px;
  background: rgba(152, 211, 202, 0.2);
  border-radius: 30px;
}

.teal-container__list {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  position: relative;
  left: -40px;
  width: calc(100% + 80px);
}

@media (max-width: 786px) {
  .teal-container {
    padding: 20px;
  }
  .teal-container__list {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
    border: 1px solid blue;
    left: -20px;
    width: calc(100% + 40px);
  }
}
/*--------------------------teal container--------------------------*/
/*-------------------------------------- main-card --------------------------*/
.main-card__list {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.main-card {
  height: 100%;
  border-radius: 30px;
  background: rgba(152, 211, 202, 0.21);
  padding: 32px 16px 67px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: background 0.3s ease;
}

.main-card__wrapper {
  display: flex;
  flex-direction: column;
}
.main-card__wrapper .main-card {
  flex-grow: 1;
  height: auto;
}

.main-card--p20 {
  padding: 20px;
}

.main-card:hover {
  background: #2d8183;
}

.main-card:hover .main-card__description {
  color: var(--white);
}

.main-card:hover .main-card__icon path {
  fill: var(--white);
}

.main-card:hover .main-card__header > .main-card__title {
  background: #fff;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.main-card:hover .main-card__subtitle {
  color: #fff;
}

.main-card:hover .main-card__items {
  color: #fff;
}

.main-card__header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-card__icon {
  margin-bottom: 11px;
}

.main-card__img {
  position: relative;
  width: 100%;
  min-height: 200px;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}
.main-card__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-card__title {
  text-align: center;
  background: linear-gradient(117deg, #1a6669 0.98%, #348c8d 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.main-card__subtitle {
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  text-align: center;
  color: #1f403e;
  margin-top: 16px;
  margin-bottom: -28px;
}

.main-card__description {
  margin-top: 44px;
  color: #709a98;
  text-align: center;
  font-size: 22px;
  font-weight: 300;
  line-height: 120%; /* 26.4px */
  transition: color 0.3s ease;
}
.main-card__description--m0 {
  margin-top: 0;
}

.main-card__items {
  margin-top: 32px;
  text-align: center;
  color: #3b5251;
  font-size: 20px;
  font-weight: 300;
  line-height: 150%;
}

/*-------------------------- media --------------------------*/
@media (max-width: 640px) {
  .main-card__list {
    grid-template-columns: 1fr;
  }
}
/*-------------------------------------- info-text --------------------------*/
.info-text {
  color: #222323;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 150%; /* 30px */
}
.info-text__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 44px 32px;
}

/*-------------------------------------- info-text --------------------------*/
/*-------------------------------------- table --------------------------*/
.table {
  border-collapse: collapse;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(117deg, #092627 0%, #348c8d 100%);
  font-size: 22px;
  font-weight: 600;
  line-height: 130%; /* 28.6px */
  color: #fff;
  color: #ffffff;
}
.table thead {
  border-bottom: 4px solid #fff;
}
.table thead th {
  font-size: 30px;
  min-width: 300px;
  padding: 14px 20px;
}
.table thead th:first-child {
  border-right: 4px solid #fff;
  padding: 32px 48px;
}
.table tbody td {
  padding: 15px 20px;
  background: linear-gradient(117deg, white 0%, #00aeb0 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.table tbody td:first-child {
  border-right: 4px solid #fff;
  padding: 15px 48px;
}
.table tbody tr {
  border-bottom: 2px solid #3f7988;
}

/*-------------------------- media --------------------------*/
@media (max-width: 786px) {
  .table {
    font-size: 16px;
  }
  .table thead th {
    min-width: auto;
    padding: 10px !important;
  }
  .table tbody td {
    padding: 10px !important;
  }
}
/*-------------------------------------- table --------------------------*/
/*------------------------------------ services hero ------------------------------------*/
.services-hero {
  margin-top: 7px;
  padding: 0 60px;
  --content-width: 38%;
}
.services-hero--plastic {
  --content-width: 30%;
}
.services-hero--in-vitro {
  --content-width: 35%;
}
.services-hero__container {
  z-index: 1;
  position: relative;
  inset: 0;
  padding: 40px 50px;
  width: 100%;
  height: var(--hero-img-height);
  border-radius: 60px;
  overflow: hidden;
  border-radius: 60px;
}
.services-hero__container-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 32px;
  height: 100%;
  width: var(--content-width);
  margin-left: auto;
}
.services-hero__img {
  position: absolute;
  z-index: -1;
  inset: 0;
}
.services-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services-hero__title {
  font-weight: 700;
  font-size: 60px;
  line-height: 120%;
  text-align: right;
  color: var(--avocado);
  text-transform: lowercase;
}
.services-hero__title::first-letter {
  text-transform: uppercase;
}
.services-hero__description {
  font-family: "Inter";
  font-size: 22px;
  line-height: 160%;
  text-align: right;
  color: #ffffff;
}

/*------------------------------------media------------------------------------*/
@media (max-width: 1440px) {
  .services-hero {
    --content-width: 60%;
  }
  .services-hero--plastic {
    --content-width: 75%;
  }
  .services-hero--in-vitro {
    --content-width: 83%;
  }
}
@media (max-width: 1366px) {
  .services-hero {
    --content-width: 53%;
  }
  .services-hero--plastic {
    --content-width: 60%;
  }
  .services-hero--in-vitro {
    --content-width: 68%;
  }
}
@media (max-width: 1280px) {
  .services-hero {
    --content-width: 50%;
  }
  .services-hero--plastic {
    --content-width: 53%;
  }
  .services-hero--in-vitro {
    --content-width: 74%;
  }
}
@media (max-width: 1024px) {
  .services-hero {
    --content-width: 100%;
  }
}
@media (max-width: 786px) {
  .services-hero {
    padding: 0;
  }
  .services-hero__container-text {
    padding: 20px;
    align-items: center;
    justify-content: center;
  }
  .services-hero__title {
    text-align: center;
    font-size: 40px;
  }
  .services-hero__description {
    text-align: center;
    font-size: 18px;
  }
}
@media (max-width: 640px) {
  .services-hero__title {
    font-size: 30px;
  }
  .services-hero__description {
    font-size: 16px;
  }
}

/*------------------------------------hero ------------------------------------*/
/*------------------------------------ services-teal-container ------------------------------------*/
.services-teal-container {
  margin-top: 120px;
  padding: 20px 0 60px;
  background: rgba(152, 211, 202, 0.2);
  border-radius: 30px;
}

/*------------------------------------ services-teal-container ------------------------------------*/
/*------------------------------------ teal-card ------------------------------------*/
.teal-card {
  padding: 20px;
  font-size: 20px;
  line-height: 150%;
  text-align: center;
  color: #3b5251;
  background: rgba(152, 211, 202, 0.21);
  border-radius: 30px;
}
.teal-card--gradient {
  padding: 32px 32px 133px;
  background: linear-gradient(116.56deg, #092627 0.98%, #348c8d 100%);
}
.teal-card--gradient .teal-card__title {
  color: #fff;
  text-transform: lowercase;
}
.teal-card--gradient .teal-card__title::first-letter {
  text-transform: uppercase;
}
.teal-card--gradient ul,
.teal-card--gradient p {
  color: #ededed;
}

/*------------------------------------ teal-card ------------------------------------*/
/*--------------------------------------components--------------------------*/
/*-------------------------------------- current situation page --------------------------*/
.situation {
  margin-top: 7px;
  padding: 0 60px;
}
.situation__container {
  z-index: 1;
  inset: 0;
  padding: 60px;
  padding-top: 20vh;
  display: grid;
  align-content: space-between;
  position: relative;
  width: 100%;
  height: var(--hero-img-height);
  border-radius: 60px;
  overflow: hidden;
  border-radius: 60px;
}
.situation__img {
  position: absolute;
  z-index: -1;
  inset: 0;
}
.situation__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.situation__title {
  text-align: center;
  color: #fff;
  font-size: 80px;
  font-weight: 600;
  line-height: 120%; /* 96px */
  margin: 0 auto;
}
.situation__title--mobile {
  display: none;
}
.situation__title .hide {
  opacity: 0;
}
.situation__title mark {
  color: var(--avocado);
  font-size: 80px;
  font-weight: 700;
  line-height: 120%; /* 120px */
  letter-spacing: 3px;
}
.situation__title mark span {
  white-space: nowrap;
}
.situation__footer {
  width: 100%;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: flex-end;
}
.situation__card {
  max-width: 270px;
  padding: 18px;
}

/*--------------------------media--------------------------*/
@media (max-width: 1300px) {
  .hide {
    font-size: 20px;
  }
}
@media (max-width: 1024px) {
  .situation__title--desktop {
    display: none;
  }
  .situation__title--mobile {
    display: block;
    font-size: 60px;
  }
  .situation__title--mobile mark {
    font-size: 80px;
  }
}
@media (max-width: 786px) {
  .situation {
    padding: 0 20px;
  }
  .situation__footer {
    flex-direction: column;
    gap: 40px;
    align-items: stretch;
  }
  .situation__card {
    max-width: 100%;
  }
}
@media (max-width: 640px) {
  .situation {
    padding: 0;
  }
  .situation__container {
    padding-top: 10vh;
  }
}
/*-------------------------------------- current situation page --------------------------*/
/*------------------------------------crowns-grid------------------------------------*/
.crowns-grid {
  display: grid;
  gap: 32px 20px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-rows: min-content;
}
.crowns-grid div:nth-child(1),
.crowns-grid div:nth-child(2),
.crowns-grid div:nth-child(3) {
  grid-column: span 2;
}
.crowns-grid div:nth-child(4),
.crowns-grid div:nth-child(5) {
  grid-column: span 3;
}

@media (max-width: 1024px) {
  .crowns-grid div:nth-child(1),
  .crowns-grid div:nth-child(2),
  .crowns-grid div:nth-child(3) {
    grid-column: span 3;
  }
}
@media (max-width: 786px) {
  .crowns-grid {
    grid-template-columns: 1fr;
  }
  .crowns-grid__grid {
    gap: 100px;
  }
}
/*------------------------------------crowns-grid------------------------------------*/
/*------------------------------------top-clinics------------------------------------*/
.top-clinics__grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
}

@media (max-width: 640px) {
  .top-clinics__grid {
    gap: 100px;
    margin-bottom: 120px;
  }
}
/*------------------------------------top-clinics------------------------------------*/
/*------------------------------------prices------------------------------------*/
.prices-table {
  padding: 33px 110px 60px;
  border-radius: 30px;
  background: rgba(152, 211, 202, 0.21);
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 786px) {
  .prices-table {
    padding: 33px 20px 60px;
  }
}
/*------------------------------------prices------------------------------------*/
.dental-teal-container {
  margin-top: 120px;
  padding: 20px 0 60px;
  background: rgba(152, 211, 202, 0.2);
  border-radius: 30px;
}

.dental-badge {
  width: 558px;
}
/*--------------------------documentary page--------------------------*/
.doc-content {
  position: relative;
  margin-top: 7px;
  padding: 0 60px;
  position: relative;
  width: 100%;
  height: var(--hero-img-height);
  border-radius: 60px;
  overflow: hidden;
}
.doc-content__video {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.doc-content__title {
  position: absolute;
  z-index: 1;
  inset: 0;
  text-transform: lowercase;
  width: 300px;
  text-align: center;
  font-size: 80px;
  line-height: 96px;
  left: calc(50% - 150px);
  top: calc(50% - 250px);
}
.doc-content__title::first-letter {
  text-transform: capitalize;
}
.doc-content__title mark {
  text-transform: uppercase;
  font-size: 100px;
  line-height: 120px;
}

.doc {
  margin-top: 80px;
}
.doc-banner {
  margin: 37px 0 80px;
  position: relative;
  border-radius: 60px;
  overflow: hidden;
}
.doc-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.doc-banner__text {
  position: absolute;
  left: 54px;
  bottom: 60px;
  width: 600px;
  padding: 38px 18px;
  border-radius: 10px;
  font-size: 16px;
}

/*--------------------------media--------------------------*/
@media (max-width: 900px) {
  .doc-content__title {
    font-size: 60px;
    line-height: 72px;
    top: calc(50% - 180px);
  }
  .doc-content__title mark {
    font-size: 80px;
    line-height: 96px;
  }
  .doc-banner__text {
    width: 80%;
    bottom: 20px;
    padding: 20px;
  }
}
@media (max-width: 786px) {
  .doc {
    padding: 0 20px;
  }
}
@media (max-width: 640px) {
  .doc-content {
    padding: 0;
  }
  .doc-content__img {
    border-radius: 30px;
  }
  .doc-banner {
    border-radius: 30px;
  }
  .doc-banner__text {
    left: 20px;
    width: calc(100% - 40px);
    padding: 10px;
    font-size: 14px;
  }
  .doc-banner__text::after {
    inset: -5px;
  }
}
@media (max-width: 480px) {
  .doc-banner {
    border-radius: 20px;
  }
  .doc-banner__text {
    left: 10px;
    bottom: 10px;
    width: calc(100% - 20px);
    padding: 5px;
    font-size: 12px;
    font-weight: 400;
  }
}
/*--------------------------media--------------------------*/
/*--------------------------documentary page--------------------------*/
/*-------------------------------------- global styles --------------------------*/
:root {
  --white: #ffffff;
  --avocado: #dcff79;
  --button-text-color: #0e3d4d;
  --heading-color: #204341;
  --gredient: linear-gradient(116.56deg, #1a6669 0.98%, #348c8d 100%);
  --hero-img-height: calc(100vh - 20px - 15px - 76px - 7px - 60px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html,
body {
  font-family: "Lexend", sans-serif;
  /* delete circle */
  background: #f4fffb url("assets/images/bg-circles.png") no-repeat center
    calc(100svh + 185px);

  overflow-x: hidden;
}

button,
input,
textarea {
  font-family: inherit;
}

button {
  cursor: pointer;
}

li {
  list-style: none;
}

.list--center {
  display: grid;
  justify-items: center;
}
.list li {
  position: relative;
  padding-left: 30px;
}
.list li::before {
  content: "ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢";
  position: absolute;
  left: 0;
  width: 30px;
  display: grid;
  place-items: center;
}

a {
  font-size: inherit;
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
}

h1 {
  color: #fff;
  font-size: 57px;
  font-weight: 700;
  line-height: 120%; /* 72px */
  letter-spacing: 1.8px;
  text-transform: capitalize;
}

h1 mark {
  background: transparent;
  color: var(--avocado);
}

h2 {
  color: var(--heading-color);
  text-align: center;
  font-size: 42px;
  font-weight: 500;
  line-height: 120%; /* 50.4px */
  letter-spacing: -0.4px;
  text-transform: uppercase;
}

h3 {
  color: #fff;
  font-family: Inter;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 48px */
  letter-spacing: -0.6px;
}

h4 {
  font-size: 28px;
  font-weight: 600;
  line-height: 120%; /* 33.6px */
  text-transform: lowercase;
}

h4::first-letter {
  text-transform: uppercase;
}

h5 {
  font-size: 28px;
  line-height: 120%; /* 33.6px */
}

h6 {
  font-size: 22px;
  line-height: 120%; /* 26.4px */
}

/* ------------------------------media queries --------------------------*/
@media (max-width: 640px) {
  h2 {
    font-size: 32px;
  }
  h3 {
    font-size: 24px;
  }
  h4 {
    font-size: 22px;
  }
  h5 {
    font-size: 22px;
  }
}
/* ---------------------------------------swipers styls --------------------------*/
.hero-swiper {
  position: relative;
  overflow: hidden;
}

.swiper-pagination {
  padding: 9px 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  border: 0.6px solid rgba(255, 255, 255, 0.5);
  background: linear-gradient(
    86deg,
    rgba(255, 255, 255, 0.04) 11.14%,
    rgba(255, 255, 255, 0.01) 113.29%
  );
  box-shadow: 0px 1.4px 35px 0px rgba(69, 42, 124, 0.1);
  backdrop-filter: blur(12px);
  width: auto !important;
  inset: auto 40% 0 40% !important;
  margin: 0 auto;
}

.swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background: var(--white);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  width: 20px;
  height: 20px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  content: "";
  border-radius: 50%;
  background: #edf4e4;
  min-width: 40px;
  min-height: 40px;
  background: url("assets/images/swiper-arrow.svg") no-repeat center, #edf4e4;
}

.swiper-button-next {
  transform: rotate(180deg);
}

/* ---------hero-swiper ---------*/
.hero-swiper {
  width: 100%;
  height: 100%;
}

.hero-swiper .swiper-pagination {
  max-width: 252px;
  inset: auto 30px 23px auto !important;
}

.hero-swiper .swiper-pagination-bullet {
  background: #042f3a;
}

@media (max-width: 1025px) {
  .hero-swiper .swiper-pagination {
    max-width: 200px;
    right: 0;
  }
}
@media (max-width: 768px) {
  .hero-swiper .swiper-pagination {
    display: none;
  }
}
@media (max-width: 640px) {
  .hero-swiper .swiper-button-prev,
  .hero-swiper .swiper-button-next {
    display: none;
  }
}
/* ---------testimonials-swiper ---------*/
.swiper {
  padding-bottom: 90px;
}

.swiper .swiper-button-prev,
.swiper .swiper-button-next {
  position: absolute;
  bottom: 0;
  top: auto;
}

.swiper .swiper-button-prev {
  left: 25%;
}

.swiper .swiper-button-next {
  right: 25%;
}

@media (max-width: 1025px) {
  .swiper .swiper-button-prev {
    left: 7px;
  }
  .swiper .swiper-button-next {
    right: 7px;
  }
}
/* ---------------------------------------swipers style --------------------------*/
/* ---------------------------------------scrollbar style --------------------------*/
.scroll-y {
  overflow-y: auto;
}

.scroll-y::-webkit-scrollbar {
  width: 10px;
}

.scroll-y::-webkit-scrollbar-track {
  background-color: #ededed;
  border-radius: 4px;
}

.scroll-y::-webkit-scrollbar-thumb {
  background-color: #919191;
  border-radius: 4px;
}

/*--------------------------global styles--------------------------*/
.causes__grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
}
.causes__grid .glass-card__text {
  min-height: 158px;
  display: grid;
  place-items: center;
}
/* --------------------------------------- home page--------------------------*/
/*-------------------------------------- hero section --------------------------*/

/*---------------------------------------------------------------------*/

.hero {
  overflow: hidden;
  position: relative;
  border-radius: 20px;
  margin: 20px;
  width: calc(100% - 40px);
  height: calc(100svh - 40px);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  top: 15px;
  border-radius: 20px;
  background: linear-gradient(
    147deg,
    rgba(4, 47, 58, 0.9) 18.96%,
    rgba(125, 246, 210, 0.9) 77%
  );
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: url("assets/images/hero.png") no-repeat top center/cover;
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding: 15px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.header {
  position: relative;
  z-index: 10;
  padding: 0 60px;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: linear-gradient(
    86deg,
    rgba(255, 255, 255, 0.12) 11.14%,
    rgba(255, 255, 255, 0.02) 113.29%
  );
  box-shadow: 0px 1.2px 30px 0px rgba(69, 42, 124, 0.1);
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
  color: var(--white);
}

.burger {
  display: none;
  cursor: pointer;
  gap: 5px;
  place-items: center;
}

.burger span {
  display: block;
  width: 30px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
}

.nav {
  display: flex;
  gap: 50px;
  margin-left: auto;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 48px;
}

.nav__link {
  font-size: 16px;
  padding: 30px 0px;
}

.nav__link:hover {
  text-decoration: underline;
}

.nav--active {
  display: flex !important;
  position: absolute;
  top: 75px;
  right: 60px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.nav--active .nav__list {
  flex-direction: column;
  text-align: center;
  gap: 20px;
  padding: 20px;
  width: 180px;
  background: linear-gradient(0deg, #56a69e, #2f6d70);
}

.wpml-ls-slot-shortcode_actions {
  margin: -2px !important;
}

.lang-switcher--active .wpml-ls-statics-shortcode_actions {
  display: flex !important;
  position: absolute;
  width: calc(100% + 2px);
  right: -1px;
  bottom: -40px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 10px;
  background: #56a69e;
}

.wpml-ls-statics-shortcode_actions img {
  cursor: pointer;
  transition: transform 0.3s ease;
  border: 2px solid transparent;
}

.wpml-ls-current-language img,
.wpml-ls-statics-shortcode_actions img:hover {
  transform: scale(1.2);
  border: 2px solid #4977a8;
}

.header__actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.action-btn {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 54px;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: linear-gradient(
    86deg,
    rgba(255, 255, 255, 0.2) 11.14%,
    rgba(255, 255, 255, 0.04) 113.29%
  );
  box-shadow: 0px 1.2px 30px 0px rgba(69, 42, 124, 0.1);
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
}

.action-btn::after {
  content: "";
  position: absolute;
  display: block;
  height: 150px;
  width: 50px;
  transform: rotate(30deg);
  left: -70px;
  background-color: #ffffff50;
  transition: all 0.3s;
}

.action-btn:hover::after {
  left: calc(100% + 20px);
}
.hero__content {
  padding: 0 76px;
  height: 100%;
  margin-bottom: -2px;
  display: flex;
  flex-direction: column;
}

.hero__subtitle {
  width: 100%;
  position: relative;
  margin: 0 auto;
  text-align: right;
  margin-top: 30px;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  line-height: 120%;
}

.hero__content-warpper {
  margin-top: 23px;
  flex-grow: 1;
  display: grid;
  gap: 12px;
  grid-template-columns: 45% 55%;
}

.hero__block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}

.hero__title {
  min-width: 140%;
}

.hero__description {
  margin: 29px 0 37px;
  color: var(--white);
  font-family: Inter;
  font-size: 22px;
  font-weight: 400;
  line-height: 160%; /* 35.2px */
  letter-spacing: -0.44px;
}

.hero__button {
  margin-right: auto;
}

.profile__card {
  /* min-height: 600px; */
}

.profile__info {
  position: absolute;
  top: 110px;
  right: 8px;
  width: 320px;
}

.profile__info::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.profile__info li {
  list-style: disc;
  margin: 0 0 10px 30px;
}

.profile__img {
  position: absolute;
  left: 20%;
  bottom: 0;
  z-index: 1;
  min-width: 50%;
  max-height: 100%;
}

.profile__img img {
  width: 100%;
  height: 100%;
}

.profile__name {
  position: absolute;
  right: 8px;
  z-index: 2;
  top: 8px;
  color: #204a48;
  display: flex;
  width: 320px;
  height: 73px;
  padding: 8px 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 26px;
  flex-shrink: 0;
  border-radius: 10px;
  border: 0.6px solid rgba(255, 255, 255, 0.5);
  background: linear-gradient(
    86deg,
    rgba(255, 255, 255, 0.04) 11.14%,
    rgba(255, 255, 255, 0.01) 113.29%
  );
  box-shadow: 0px 1.4px 35px 0px rgba(69, 42, 124, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.profile__name::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero__glass {
  height: 70px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  border-radius: 20px;
  background: linear-gradient(
    86deg,
    rgba(255, 255, 255, 0.36) 11.14%,
    rgba(255, 255, 255, 0.06) 113.29%
  );
  box-shadow: 0px 1.197px 29.915px 0px rgba(69, 42, 124, 0.1);
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
}

.hero__companies {
  height: 70px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  border-radius: 20px;
  background: linear-gradient(
    86deg,
    rgba(255, 255, 255, 0.36) 11.14%,
    rgba(255, 255, 255, 0.06) 113.29%
  );
  box-shadow: 0px 1.197px 29.915px 0px rgba(69, 42, 124, 0.1);
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
}

/*--------------------------media--------------------------*/

/* fix nav postion */
@media (max-width: 1500px) {
  .nav {
    gap: 20px;
  }
}

@media (max-width: 1441px) {
  .action-btn {
    width: auto;
  }
  .profile__img {
    left: 8%;
  }
  .hero__title {
    font-size: 50px;
  }
  .hero__description {
    font-size: 20px;
  }
  .nav__list {
    gap: 24px;
  }
  .wpml-ls-statics-shortcode_actions {
    gap: 10px;
  }
}
@media (max-width: 1301px) {
  .profile__img {
    left: 0;
  }
  .nav {
    display: none;
    gap: 0;
  }
  /* .wpml-ls-statics-shortcode_actions {
    display: none;
  } */
  .burger {
    display: grid;
  }
}
@media (max-width: 1024px) {
  .hero__title {
    font-size: 40px;
  }
  .hero__description {
    font-size: 18px;
  }
  .profile__name {
    width: 150px;
    height: 100px;
    font-size: 16px;
  }
  ul.profile__info {
    width: 200px;
    padding: 25px 20px 20px;
    font-size: 12px;
  }
  ul.profile__info li {
    margin: 0 0 5px 10px;
  }
  .profile__img {
    width: 310px;
  }
}
@media (max-width: 1023px) {
  .hero {
    height: auto;
  }
  .hero__content-warpper {
    display: block;
  }
  .hero__block {
    min-height: 400px;
  }
  .hero__title {
    min-width: 100%;
  }
  .hero__subtitle {
    display: none;
  }
  .hero-swiper {
    width: 100%;
    height: 360px;
  }
  .profile__img {
    width: 270px;
    left: 15%;
  }
  .profile__name {
    width: 220px;
    height: 45px;
    font-size: 16px;
    top: 8px;
  }
  ul.profile__info {
    width: unset;
    padding: 25px;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .header {
    padding: 0 20px;
  }
  .nav--active {
    right: 20px;
  }
  .hero__block {
    min-height: 350px;
  }
  .hero__content {
    padding: 0 20px;
  }
  ul.profile__info {
    width: 50%;
    font-size: 12px;
    top: 80px;
    padding: 17px;
  }
  .profile__img {
    width: 267px;
    bottom: 0px;
    left: -33px;
  }
  .profile__name {
    bottom: 10px;
  }
}
@media (max-width: 640px) {
  .header__logo {
    scale: 0.8;
    transform-origin: left;
  }
  .hero__title {
    font-size: 30px;
  }
  .hero__description {
    font-size: 14px;
  }
  .hero__button {
    margin-bottom: 20px;
  }
  .hero__block {
    min-height: 180px;
  }
  .action-btn {
    display: none;
  }
}
@media (max-width: 420px) {
  .header__logo {
    width: 85px;
    overflow: hidden;
  }
}
/*-------------------------------------- hero section --------------------------*/
/*-------------------------------------- help section --------------------------*/
.help__list {
  margin-top: 72px;
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/*-------------------------- media --------------------------*/
@media (max-width: 1281px) {
  .help__list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .help__list {
    grid-template-columns: 1fr;
  }
}
/*-------------------------------------- help section --------------------------*/
/*-------------------------------------- testimonial section --------------------------*/
.testimonials__wrapper {
  padding: 0 20px;
}

.testimonials {
  padding: 48px 55px;
  border-radius: 20px;
  background: var(--white);
}

.testimonials__list {
  margin-top: 48px;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.testimonials__title {
  color: #204a48;
  text-transform: capitalize;
}

.testimonial__card {
  height: 100%;
  padding: 28px 28px 57px;
  border-radius: 2px;
  background: #fff;
  box-shadow: 3px 3px 20px 2px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.testimonial__card:hover {
  background: #042f3a;
}

.testimonial__card:hover .testimonial__card-name {
  color: var(--white);
}

.testimonial__card:hover .testimonial__card-date {
  color: #959595;
}

.testimonial__card:hover .testimonial__card-text {
  color: #ddd;
}

.testimonial__card-header {
  display: flex;
  gap: 24px;
  align-items: center;
}

.testimonial__card-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial__card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial__card-profile {
  display: flex;
  flex-direction: column;
}

.testimonial__card-name {
  text-transform: capitalize;
  color: #002d4e;
}

.testimonial__card-date {
  opacity: 0.6;
  font-size: 14px;
  line-height: 150%; /* 21px */
}

.testimonial__card-stars {
  margin-top: 20px;
  display: flex;
  gap: 8px;
}

.testimonial__card-body {
  margin-top: 12px;
  display: flex;
  gap: 3px;
  justify-content: space-between;
}

.testimonial__card-text {
  color: #4e4e4e;
  font-size: 20px;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
  max-height: 120px;
  padding-right: 40px;
}

/*-------------------------- media --------------------------*/
@media (max-width: 640px) {
  .testimonials {
    padding: 32px;
  }
  .testimonials__list {
    margin-top: 32px;
    grid-template-columns: 1fr;
  }
  .testimonial__card {
    padding: 20px;
  }
  .testimonial__card-header {
    gap: 16px;
  }
  .testimonial__card-avatar {
    width: 60px;
    height: 60px;
  }
  .testimonial__card-text {
    font-size: 16px;
    padding-right: 20px;
  }
  .testimonial__card-stars {
    margin-top: 10px;
    scale: 0.7;
    transform-origin: left;
  }
}
@media (max-width: 420px) {
  .testimonials {
    padding: 20px;
  }
  .testimonials__list {
    gap: 20px;
  }
}
/*-------------------------------------- testimonial section --------------------------*/
/*-------------------------------------- services section --------------------------*/
.services__wrapper {
  padding: 33px 0 28px;
  border-radius: 30px;
  background: rgba(152, 211, 202, 0.21);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services__description {
  margin-top: 50px;
  padding: 0 15px;
}

.services__list {
  width: 100%;
  margin-top: 30px;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.card {
  display: inline-block;
  width: 100%;
  border-radius: 20px;
  padding: 15px 12px;
  cursor: pointer;
  background: linear-gradient(
    86deg,
    rgba(255, 255, 255, 0.63) 11.14%,
    rgba(255, 255, 255, 0.72) 113.29%
  );
  transition: background 0.3s ease;
}

.card:hover {
  background: #1a6669;
}

.card:hover .card__header {
  opacity: 0;
}

.card__inner {
  aspect-ratio: 400/275;
  position: relative;
  padding: 16px 20px 16px 32px;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
}

.card__inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0) 50%
  );
}

.card__img {
  position: absolute;
  inset: 0;
}

.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__header {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card__title {
  color: var(--white);
  text-align: right;
}

/*-------------------------- media --------------------------*/
@media (max-width: 640px) {
  .services__list {
    grid-template-columns: 1fr;
  }
}
/*-------------------------------------- services section --------------------------*/
/*-------------------------------------- discover section --------------------------*/
.discover {
  display: grid;
  gap: 34px;
  grid-template-columns: 446px 1fr;
}

.discover__main-title {
  margin-top: 20px;
  text-transform: capitalize;
  text-align: left;
}

.discover__description {
  margin-top: 24px;
  color: #709a98;
  font-size: 20px;
  font-weight: 300;
  line-height: 150%; /* 30px */
  letter-spacing: 0.2px;
}

.discover__button {
  margin-top: 42px;
  width: 230px;
}

.discover__list {
  display: grid;
  gap: 50px;
  grid-template-columns: 1fr 1fr 1fr;
}

.discover__card {
  position: relative;
  aspect-ratio: 249/344;
  padding: 32px 20px 32px 32px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
}

.discover__card img {
  transition: all 0.3s;
}

.discover__card:hover img {
  scale: 1.2;
}

.discover__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0) 50.18%
  );
}

.discover__img {
  position: absolute;
  inset: 0;
}

.discover__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.discover__header {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.discover__title {
  color: var(--white);
}

/*-------------------------- media --------------------------*/
@media (max-width: 1441px) {
  .discover__list {
    gap: 20px;
  }
  .discover__card {
    padding: 20px 16px;
  }
  .discover__title {
    font-size: 24px;
  }
}
@media (max-width: 1281px) {
  .discover {
    grid-template-columns: 1fr;
    gap: 80px;
  }
  .discover__block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 800px) {
  .discover__list {
    grid-template-columns: 1fr 1fr;
    aspect-ratio: unset;
  }
}
@media (max-width: 641px) {
  .discover__list {
    grid-template-columns: 1fr;
  }
  .discover__card {
    padding: 20px;
    border-radius: 30px;
  }
  .discover__title {
    font-size: 28px;
  }
}
/*-------------------------------------- discover section --------------------------*/
/*-------------------------------------- footer section --------------------------*/
.footer__wrapper {
  padding: 0 20px;
}

.footer {
  margin: 120px auto 0;
  border-radius: 20px;
  background: url("assets/images/footer.png") no-repeat -20px top,
    linear-gradient(119deg, #042f3a -43.55%, #3dc1b7 82.01%);
  padding: 35px 56px 25px;
  color: var(--white);
}

.footer__inner {
  display: grid;
  gap: 0 120px;
  grid-template-columns: 1fr 1fr;
}

.footer__block {
  display: grid;
  width: 230px;
  gap: 24px;
  grid-template-columns: 1fr;
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
}

.footer__description a:hover {
  text-decoration: underline;
}

.social {
  display: flex;
  gap: 20px;
}

.menus {
  display: flex;
  gap: 100px;
}

.menu__title {
  font-size: 16px;
  font-weight: 600;
}

.menu__list {
  margin-top: 24px;
  font-size: 14px;
  font-weight: 400;
  line-height: 200%; /* 28px */
}

.menu__link {
  white-space: nowrap;
}

.menu__link:hover {
  text-decoration: underline;
}

.subfooter {
  grid-column: span 2;
  margin-top: 20px;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
}

.social path {
  transition: fill 0.3s ease;
}

.social a {
  font-size: 0;
}

.facebook:hover path {
  fill: #1877f2;
}

.instagram:hover path {
  fill: #d62976;
}

.twitter:hover path {
  fill: #1da1f2;
}

.youtube:hover path {
  fill: #ff0000;
}

/*-------------------------- media --------------------------*/
@media (max-width: 1025px) {
  .footer__inner {
    gap: 0 30px;
  }
  .menus {
    gap: 30px;
  }
}
@media (max-width: 769px) {
  .footer__inner {
    display: flex;
    flex-direction: column;
  }
  .footer__block {
    width: 100%;
    display: grid;
    gap: 12px 24px;
    grid-template-columns: auto auto;
    text-align: center;
  }
  .logo {
    grid-row: span 2;
  }
  .social {
    justify-content: center;
  }
  .menus {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media (max-width: 641px) {
  .footer {
    background: url("assets/images/footer.png") no-repeat center bottom/cover,
      linear-gradient(119deg, #042f3a -43.55%, #3dc1b7 82.01%);
  }
  .footer__block {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 420px) {
  .menus {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .menu__list {
    margin-top: 12px;
  }
}
/* --------------------------------------- home page--------------------------*/
/*-------------------------------------- moldova page --------------------------*/
/*-------------------------------------- hero section --------------------------*/
.moldova-content {
  position: relative;
  margin-top: 7px;
  width: 100%;
  height: var(--hero-img-height);
  border-radius: 60px;
  overflow: hidden;
  padding: 60px;
}
.moldova-content__img {
  position: absolute;
  z-index: -1;
  inset: 0;
}
.moldova-content__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}
.moldova-content__info {
  height: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20vh;
}
.moldova-content__block {
  width: 100%;
  height: 100%;
  display: flex;
  gap: 5vh;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-start;
}
.moldova-content__title {
  width: 100%;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  font-size: 80px;
  font-weight: 600;
  line-height: 120%; /* 96px */
}
.moldova-content__title mark {
  font-size: 100px;
  font-weight: 900;
  line-height: 120%; /* 120px */
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-left: auto;
}
.moldova-content__title mark span {
  color: var(--avocado);
  font-family: sans-serif;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 3px;
}
.moldova-content__description {
  width: 30vw;
}
.moldova-content__list {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  flex-direction: column;
  justify-content: center;
}
.moldova-content__item {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
}
.moldova-content__item a {
  position: relative;
  z-index: 1;
}

/*-------------------------------------- media --------------------------*/
@media (max-width: 1024px) {
  .moldova-content__block {
    align-items: center;
  }
  .moldova-content__info {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .moldova-content__description {
    text-align: center;
  }
  .moldova-content__item {
    width: 350px;
  }
}
@media (max-width: 768px) {
  .moldova-content__title {
    display: block;
    text-align: center;
    font-size: 60px;
  }
  .moldova-content__title mark {
    font-size: 80px;
  }
  .moldova-content__description {
    width: 100%;
    padding: 10px;
  }
  .moldova-content__item {
    padding: 10px;
    width: 100%;
    font-size: 16px;
  }
}
@media (max-width: 640px) {
  .moldova-content {
    padding: 30px 20px;
  }
  .moldova-content__title {
    font-size: 40px;
  }
  .moldova-content__title mark {
    font-size: 60px;
  }
}
@media (max-width: 480px) {
  .moldova-content__title {
    font-size: 30px;
  }
  .moldova-content__title mark {
    font-size: 40px;
  }
  .moldova-content__description {
    display: none;
  }
}
/*-------------------------------------- hero section --------------------------*/
/*-------------------------------------- page --------------------------*/
.moldova__welcome-block {
  display: grid;
  gap: 45px;
  grid-template-columns: 1fr 2fr 1fr;
  grid-auto-rows: 1fr;
}
.moldova__welcome-block-img {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 60px;
  overflow: hidden;
}
.moldova__welcome-block-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.moldova__grid {
  display: grid;
  gap: 32px 20px;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
}

/*------------------------------------media------------------------------------*/
@media (max-width: 1024px) {
  .moldova__welcome-block {
    grid-template-columns: 1fr 1fr;
  }
  .moldova__welcome-block-img--big {
    order: 2;
    grid-column: 1/3;
  }
}
@media (max-width: 768px) {
  .moldova__welcome-block {
    grid-template-columns: 1fr;
  }
  .moldova__welcome-block-img--big {
    order: 1;
    grid-column: 1/1;
  }
}
@media (max-width: 640px) {
  .moldova__grid {
    grid-template-columns: 1fr;
  }
}
/*-------------------------------------- moldova page --------------------------*/
/*--------------------------------------  patrimony page --------------------------*/
/*--------------------------hero--------------------------*/
.patrimony {
  margin-top: 7px;
  padding: 0 60px;
}
.patrimony__container {
  z-index: 1;
  inset: 0;
  padding: 30px;
  display: grid;
  align-content: space-around;
  justify-items: center;
  position: relative;
  width: 100%;
  height: var(--hero-img-height);
  border-radius: 60px;
  overflow: hidden;
  border-radius: 60px;
}
.patrimony__img {
  position: absolute;
  z-index: -1;
  inset: 0;
}
.patrimony__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.patrimony__title {
  text-align: center;
  color: #fff;
  font-size: 80px;
}
.patrimony__title mark {
  color: var(--avocado);
  font-size: 100px;
  font-weight: 900;
  line-height: 120%; /* 120px */
  letter-spacing: 3px;
}
.patrimony__card {
  margin: 0 20vh;
  padding: 18px;
  text-align: center;
}

@media (max-width: 480px) {
  .patrimony__card {
    display: none;
  }
}
/*--------------------------media--------------------------*/
@media (max-width: 786px) {
  .patrimony {
    padding: 0 20px;
  }
  .patrimony__title {
    font-size: 60px;
  }
  .patrimony__title mark {
    font-size: 80px;
  }
  .patrimony__card {
    padding: 10px;
    font-size: 14px;
  }
}
@media (max-width: 640px) {
  .patrimony {
    padding: 0;
  }
  .patrimony__title {
    font-size: 30px;
  }
  .patrimony__title mark {
    font-size: 40px;
  }
  .patrimony__card {
    padding: 6px;
    font-size: 12px;
  }
}
/*--------------------------media--------------------------*/
.patrimony-banner {
  position: relative;
  padding: 24px 32px;
  border-radius: 60px;
  overflow: hidden;
}
.patrimony-banner__img {
  position: absolute;
  inset: 0;
}
.patrimony-banner__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.patrimony-banner__text {
  width: calc(50% - 32px);
  margin-left: auto;
}

@media (max-width: 768px) {
  .patrimony-banner__text {
    width: 100%;
  }
}
/*--------------------------------------  patrimony page --------------------------*/
/*--------------------------------------  vacation-banner --------------------------*/
.vacation-banner {
  display: grid;
  grid-template-columns: calc(50% - 60px) calc(50% - 60px);
  gap: 120px;
  align-items: center;
  background: url("assets/images/Ellipse.png") no-repeat 105% / contain,
    linear-gradient(120deg, #042f3a -44%, #3dc1b7 82%);
  border-radius: 20px;
  padding: 50px 120px 20px;
}
.vacation-banner__block {
  position: relative;
}
.vacation-banner__text {
  font-family: "Inter";
  font-size: 22px;
  line-height: 160%;
  color: #ffffff;
  margin-top: 32px;
  margin-bottom: 44px;
}
.vacation-banner__img {
  padding: 13px 16px;
  border: 0.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}
.vacation-banner__img-inner {
  overflow: hidden;
  border-radius: 10px;
}
.vacation-banner__img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vacation-banner__info {
  width: 250px;
  position: absolute;
  top: -26px;
  left: -72px;
  font-size: 21px;
  font-family: Lexend;
  line-height: 32px;
}
.vacation-banner__info:nth-child(3) {
  inset: auto -65px 7px auto;
}
.vacation-banner__link {
  position: relative;
  z-index: 1;
  font-size: 16px;
  font-family: Lexend;
  font-weight: 600;
  line-height: 24px;
  margin-top: 5px;
  display: flex;
  gap: 24px;
}

/*--------------------------media--------------------------*/
@media (max-width: 1300px) {
  .vacation-banner {
    padding: 50px 60px 20px;
    gap: 60px;
    grid-template-columns: calc(50% - 30px) calc(50% - 30px);
  }
  .vacation-banner__info {
    width: 200px;
    left: -40px;
  }
  .vacation-banner__info:nth-child(3) {
    inset: auto -40px -10px auto;
  }
}
@media (max-width: 1024px) {
  .vacation-banner {
    display: flex;
    flex-direction: column-reverse;
    background: url("assets/images/Ellipse.png") no-repeat bottom/contain,
      linear-gradient(120deg, #042f3a -44%, #3dc1b7 82%);
  }
}
@media (max-width: 768px) {
  .vacation-banner {
    padding: 100px 20px 20px;
    gap: 80px;
  }
  .vacation-banner__info {
    padding: 10px;
    font-size: 16px;
    top: -65px;
    left: -10px;
  }
  .vacation-banner__info:nth-child(3) {
    inset: auto -10px -50px auto;
  }
}
/*--------------------------------------  vacation-banner --------------------------*/

/*-------------------------------------- vacation page --------------------------*/
.vacation {
  margin-top: 7px;
  padding: 0 60px;
}
.vacation__container {
  z-index: 1;
  inset: 0;
  display: grid;
  place-items: center;
  position: relative;
  width: 100%;
  height: var(--hero-img-height);
  border-radius: 60px;
  overflow: hidden;
  border-radius: 60px;
}
.vacation__img {
  position: absolute;
  z-index: -1;
  inset: 0;
}
.vacation__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vacation__title {
  text-transform: lowercase;
  text-align: center;
  color: #fff;
  font-size: 80px;
  font-weight: 600;
  line-height: 120%; /* 96px */
  letter-spacing: 2.4px;
  margin: 0 auto;
}
.vacation__title .hide {
  opacity: 0;
}
.vacation__title::first-letter {
  text-transform: capitalize;
}
.vacation__title mark {
  color: var(--avocado);
  font-size: 100px;
  font-weight: 900;
  line-height: 120%; /* 120px */
  letter-spacing: 3px;
}
.vacation__title mark span {
  white-space: nowrap;
}
.vacation__block {
  display: grid;
  gap: 54px;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}
.vacation__list {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.vacation-stops {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

/*--------------------------media--------------------------*/
@media (max-width: 1300px) {
  .hide {
    font-size: 20px;
  }
}
@media (max-width: 900px) {
  .hide {
    display: none;
  }
}
@media (max-width: 786px) {
  .vacation {
    padding: 0 20px;
  }
  .vacation__title {
    font-size: 40px;
  }
  .vacation__title mark {
    font-size: 40px;
  }
}
@media (max-width: 600px) {
  .vacation {
    padding: 0;
  }
}
/*-------------------------------------- vacation page --------------------------*/
/*-------------------------------------- hero fix --------------------------*/

.main-container {
  height: 100%;
}
.main-container .wpb-content-wrapper {
  height: 100%;
}
.main-container .wpb-content-wrapper .vc_row {
  height: 100%;
}
.main-container .wpb-content-wrapper .vc_row .wpb_column {
  height: 100%;
}
.main-container .wpb-content-wrapper .vc_row .wpb_column .vc_column-inner {
  height: 100%;
}
.main-container
  .wpb-content-wrapper
  .vc_row
  .wpb_column
  .vc_column-inner
  .wpb_wrapper {
  height: 100%;
}
/*---------------------------------------- form ---------------------------------*/
.get-quote__content {
  height: 100%;
}
.wpcf7.js {
  height: 100%;
}
.wpcf7-form {
  height: 100%;
}

/*-------------------------------------- hero fix --------------------------*/

/*---------------------------------------- get-free-quote ---------------------------------*/

.get-free-quote {
  height: 100%;
  text-align: center;
  display: grid;
  place-content: center;
}
.get-free-quote h1 {
  text-transform: lowercase;
}
.get-free-quote h1:first-letter {
  text-transform: uppercase;
}
.get-free-quote-fields {
  font-size: 18px;
  color: white !important;
  text-align: left;

  width: 750px;
  margin: 22px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 50px;
}

.get-free-quote-desc {
  color: white !important;
  margin-top: 32px;
}

.get-free-quote-fields input {
  border-radius: 100px;
  height: 48px;
  background: #28514f;
  border: 1px solid white;
  color: white;
  font-size: 16px;
  font-weight: 600;
  margin-top: 5px;
  width: 100%;
  padding: 0 18px;
}

.get-free-quote-fields input::placeholder {
  color: #e7e7e7;
  font-weight: 400 !important;
}
.get-free-quote-fields p:last-child {
  grid-column: 1 / 3;
  position: relative;
}
.get-free-quote-fields .wpcf7-submit {
  background: #dcff79;
  color: #0e3d4d;
  font-size: 18px;
  width: 100%;
  margin-top: 24px;
  border: none;
}

.get-free-quote-fields .wpcf7-submit:hover {
  background: transparent;
  cursor: pointer;
  border: 5px solid #dcff79;
  color: #32a59f;
}

.wpcf7-spinner {
  position: absolute;
  left: 53%;
  top: 50%;
}

/*------------------------------------errors----------------------------------*/
/* .wpcf7-not-valid */
.get-free-quote-fields .wpcf7-not-valid {
  border: 1px solid #ff0000;
}

.get-free-quote-fields .wpcf7-not-valid-tip {
  margin: 6px 0 -18px;
  font-size: 12px;
  line-height: 18px;
}

.modal {
  position: relative;
  margin: auto;
  width: 650px;
  background-color: #daf7ff;
  padding: 44px;
  border-radius: 20px;
  border: none;
}
.modal__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.modal__description {
  font-size: 22px;
  line-height: 160%;
  color: #3f7988;
  margin-top: 32px;
}
.modal__button {
  margin: 48px auto 0;
}
.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
}

/*---------------------------------------- media ---------------------------------*/
@media (max-width: 1000px) {
  .get-free-quote-fields {
    width: 600px;
  }
}
@media (max-width: 786px) {
  .get-free-quote-fields {
    width: auto;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .get-free-quote-fields p:last-child {
    grid-column: auto;
  }
}
/*---------------------------------------- get-free-quote ---------------------------------*/


/* Stil pentru sub-meniu */
#menu-item-7839 .sub-menu {
    display: none; /* sub-meniu ascuns implicit */
    position: absolute;
    top: 100%; /* poziÃˆâ€ºioneazÃ„Æ’ sub-meniu sub meniul principal */
    background-color: #355b63; /* culoare de fundal */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* umbra pentru stil */
    z-index: 1000; /* pentru a fi deasupra altor elemente */
}

/* Stil pentru afiÃˆâ„¢area sub-meniu la hover pe meniu principal */
#menu-item-7839:hover .sub-menu {
    display: block;
}

/* Stil pentru a face sub-meniu sÃ„Æ’ nu disparÃ„Æ’ imediat la pÃ„Æ’rÃ„Æ’sirea meniului principal */
#menu-item-7839 .sub-menu:hover {
    display: block;
}

/* Stil pentru fiecare element din sub-meniu */
#menu-item-7839 .sub-menu li {
    display: block;
}

#menu-item-7839 .sub-menu li a {
    color: #fff; /* culoarea textului */
    text-decoration: none; /* eliminÃ„Æ’ sublinierea */
    padding: 10px 20px; /* spaÃˆâ€ºiere pentru link-uri */
    display: block;
}
#menu-item-7839 .sub-menu li a:hover {
    color:#355b63;
}

/* Stil pentru hover pe element din sub-meniu */
#menu-item-7839 .sub-menu li:hover a {
    background-color: #f4f4f4; /* culoare fundal la hover */
}

@media only screen and (max-width: 600px) {
    #menu-item-7839 .nav__link {
        padding: 15px; /* spaÃˆâ€ºiere mai mare pentru meniul principal */
    }

    #menu-item-7839 .sub-menu {
        top: auto; /* reseteazÃ„Æ’ poziÃˆâ€ºia sub-meniu */
        left: 0%; /* poziÃˆâ€ºioneazÃ„Æ’ sub-meniu la dreapta meniului principal */
        width: 100%; /* lÃ„Æ’Ãˆâ€ºimea sub-meniu egalÃ„Æ’ cu lÃ„Æ’Ãˆâ€ºimea ecranului */
    }

    #menu-item-7839 .sub-menu li a {
        padding: 15px; /* spaÃˆâ€ºiere mai mare pentru elementele sub-meniu */
    }
}

