/* Reset and base styles  */
@import url(https://fonts.googleapis.com/css?family=Manrope:300,regular,700,800);
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Links */
a, a:link, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside, nav, footer, header, section, main {
  display: block;
}

h1, h2, h3, h4, h5, h6, p {
  font-size: inherit;
  font-weight: inherit;
}

ul, ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img, svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button, input[type=submit] {
  display: inline-block;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  letter-spacing: 0.3px;
}

a {
  color: #00ae6c;
  text-decoration: underline;
}

a:focus,
button:focus {
  outline-offset: 1px;
  outline: #005fcc auto 1px;
}

.title-sections {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  color: #000;
}
@media (max-width: 1220px) {
  .title-sections {
    font-size: 32px;
  }
}
@media (max-width: 788px) {
  .title-sections {
    font-size: 24px;
  }
}

.none {
  display: none !important;
}

@media (max-width: 1220px) {
  .visible-desktop {
    display: none;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0); /* Fallback pentru browsere vechi */
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%); /* Modern */
  white-space: nowrap;
  border: 0;
}

.no-scroll {
  overflow-y: hidden;
  padding-right: 17px;
}
@media (max-width: 1220px) {
  .no-scroll {
    padding-right: 0px;
  }
}

.container {
  width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (max-width: 1220px) {
  .container {
    width: 768px;
  }
}
@media (max-width: 788px) {
  .container {
    width: 360px;
  }
}
.container--large {
  max-width: 1510px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1220px) {
  .container--large {
    width: 100%;
  }
}
@media (max-width: 1220px) {
  .container--tablet-fluid {
    width: auto;
  }
}
@media (max-width: 788px) {
  .container--mobile-fluid {
    width: auto;
  }
}
.container--mobile-no-padding {
  padding-right: 0;
}

.main {
  margin-bottom: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 120px;
}
@media (max-width: 1220px) {
  .main {
    row-gap: 80px;
  }
}
@media (max-width: 788px) {
  .main {
    row-gap: 60px;
  }
}

.header {
  padding: 40px 0;
}
@media (max-width: 788px) {
  .header {
    padding: 20px 0;
  }
}

.header__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.header__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 788px) {
  .header__logo {
    -ms-flex-negative: 1;
        flex-shrink: 1;
    max-width: 117px;
    height: auto;
  }
}

@media (max-width: 788px) {
  .header__nav {
    display: none;
  }
}

.header__nav-btn {
  display: none;
}
@media (max-width: 788px) {
  .header__nav-btn {
    display: block;
  }
}

.nav {
  font-size: 14px;
}

.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1220px) {
  .nav__list {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}

.nav__link {
  color: #000;
  -webkit-transition: color 0.2s ease-in;
  transition: color 0.2s ease-in;
}
.nav__link:hover {
  color: #00ae6c;
}


.btn-dark,
a.btn-dark {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 80px;
  background-color: #000;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  -webkit-transition: background-color 0.2s ease-in;
  transition: background-color 0.2s ease-in;
}
.btn-dark:hover,
a.btn-dark:hover {
  background-color: #333;
}
.btn-dark--wide,
a.btn-dark--wide {
  width: 100%;
}

.btn-green,
a.btn-green {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 80px;
  background-color: #00ae6c;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  -webkit-transition: background-color 0.2s ease-in;
  transition: background-color 0.2s ease-in;
}
.btn-green:hover,
a.btn-green:hover {
  background-color: #00d785;
}

.btn-outline,
a.btn-outline {
  display: inline-block;
  height: 42px;
  padding: 9px 20px;
  border-radius: 80px;
  border: 1px solid #fff;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  -webkit-transition: background-color 0.2s ease-in, color 0.2s ease-in;
  transition: background-color 0.2s ease-in, color 0.2s ease-in;
}
.btn-outline:hover,
a.btn-outline:hover {
  color: #000;
  background-color: #fff;
}

.btn-price,
a.btn-price {
  display: inline-block;
  height: 42px;
  padding: 9px 20px;
  border-radius: 80px;
  border: 1px solid #000;
  font-size: 16px;
  font-weight: 700;
  color: #000;
  -webkit-transition: background-color 0.2s ease-in, color 0.2s ease-in;
  transition: background-color 0.2s ease-in, color 0.2s ease-in;
}
.btn-price:hover,
a.btn-price:hover {
  color: #fff;
  background-color: #000;
}

.btn-tg,
a.btn-tg {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  padding: 10px 20px;
  border-radius: 80px;
  background-color: #039be5;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  -webkit-transition: background-color 0.2s ease-in;
  transition: background-color 0.2s ease-in;
}
.btn-tg:hover,
a.btn-tg:hover {
  background-color: #19b2ff;
}

.btn-whatsapp,
a.btn-whatsapp {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  padding: 10px 20px;
  border-radius: 80px;
  background-color: #00ae6c;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  -webkit-transition: background-color 0.2s ease-in;
  transition: background-color 0.2s ease-in;
}
.btn-whatsapp:hover,
a.btn-whatsapp:hover {
  background-color: #00c97c;
}

button:focus {
  outline: none;
}
button:hover {
  outline: none;
}

.promo__wrapper {
  padding: 30px;
  height: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 40px;
  background-color: #000;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0.7))), url("../img/promo/promo-bg.jpg");
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%), url("../img/promo/promo-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  text-align: center;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .promo__wrapper {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0.7))), url("../img/promo/promo-bg@2x.jpg");
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%), url("../img/promo/promo-bg@2x.jpg");
  }
}
@media (max-width: 1220px) {
  .promo__wrapper {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0.7))), url("../img/promo/promo-bg-tablet.jpg");
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%), url("../img/promo/promo-bg-tablet.jpg");
    height: 434px;
  }
}
@media (max-width: 1220px) and (-webkit-min-device-pixel-ratio: 2), (max-width: 1220px) and (min-resolution: 192dpi) {
  .promo__wrapper {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0.7))), url("../img/promo/promo-bg-tablet@2x.jpg");
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%), url("../img/promo/promo-bg-tablet@2x.jpg");
  }
}
@media (max-width: 788px) {
  .promo__wrapper {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0.7))), url("../img/promo/promo-bg-mobile.jpg");
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%), url("../img/promo/promo-bg-mobile.jpg");
    height: auto;
    padding: 60px 15px;
    border-radius: 20px;
  }
}
@media (max-width: 788px) and (-webkit-min-device-pixel-ratio: 2), (max-width: 788px) and (min-resolution: 192dpi) {
  .promo__wrapper {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0.7))), url("../img/promo/promo-bg-mobile@2x.jpg");
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%), url("../img/promo/promo-bg-mobile@2x.jpg");
  }
}

.promo__content {
  max-width: 678px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 40px;
}
@media (max-width: 1220px) {
  .promo__content {
    row-gap: 30px;
  }
}
@media (max-width: 788px) {
  .promo__content {
    max-width: 330px;
    row-gap: 20px;
  }
}

.promo__title {
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
}
@media (max-width: 1220px) {
  .promo__title {
    font-size: 52px;
  }
}
@media (max-width: 788px) {
  .promo__title {
    font-size: 32px;
  }
}

.promo__text {
  font-size: 18px;
  font-weight: 300;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.5em;
}
@media (max-width: 1220px) {
  .promo__text {
    font-size: 16px;
  }
}

.promo__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.benefits {
  scroll-margin-top: 60px;
}
@media (max-width: 1220px) {
  .benefits {
    scroll-margin-top: 40px;
  }
}
@media (max-width: 788px) {
  .benefits {
    scroll-margin-top: 30px;
  }
}

.benefits__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.benefits__img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 788px) {
  .benefits__img {
    display: none;
  }
}

.benefits__desk {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.benefits__img {
  text-align: center;
}

.benefits__title {
  margin-bottom: 10px;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
}
@media (max-width: 1220px) {
  .benefits__title {
    font-size: 26px;
  }
}
@media (max-width: 788px) {
  .benefits__title {
    font-size: 24px;
  }
}

.benefits__text {
  margin-bottom: 30px;
  font-size: 14px;
  line-height: 1.5;
  color: #2f2f2f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.5em;
}
@media (max-width: 1220px) {
  .benefits__text {
    margin-bottom: 20px;
  }
}

.benefits__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
}

.benefits {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 1220px) {
  .benefits {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}
@media (max-width: 788px) {
  .benefits {
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
  }
}

.benefit__img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 1220px) {
  .benefit__img {
    width: 42px;
    height: 42px;
  }
}

.benefit__desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
  color: #2f2f2f;
  font-size: 14px;
  line-height: 1.5;
}

.benefit__title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  color: #000;
}
@media (max-width: 1220px) {
  .benefit__title {
    font-size: 18px;
  }
}

.locations {
  scroll-margin-top: 60px;
}
@media (max-width: 1220px) {
  .locations {
    scroll-margin-top: 40px;
  }
}
@media (max-width: 788px) {
  .locations {
    scroll-margin-top: 30px;
  }
}

.locations__row {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 788px) {
  .locations__row {
    margin-bottom: 20px;
  }
}

.locations__title {
  max-width: 430px;
}

.locations__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
@media (max-width: 1220px) {
  .locations__controls {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
}
@media (max-width: 788px) {
  .locations__controls {
    display: none;
  }
}
.locations__controls--mobile {
  display: none;
  margin-top: 20px;
}
@media (max-width: 788px) {
  .locations__controls--mobile {
    display: block;
  }
}

@media (max-width: 1220px) {
  .locations__controls-img {
    width: 42px;
    height: 42px;
  }
}

.slider > div:first-child {
  padding-left: 15px;
}

.slider img {
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: unset !important;
  height: 400px !important;
}
@media (max-width: 788px) {
  .slider img {
    height: 250px !important;
  }
}

.services {
  scroll-margin-top: 60px;
}
@media (max-width: 1220px) {
  .services {
    scroll-margin-top: 40px;
  }
}
@media (max-width: 788px) {
  .services {
    scroll-margin-top: 30px;
  }
}

.services__title {
  margin-bottom: 40px;
  max-width: 570px;
}
@media (max-width: 788px) {
  .services__title {
    margin-bottom: 20px;
  }
}

.services__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 788px) {
  .services__list {
    gap: 20px;
  }
}

.services__list-item {
  max-width: 270px;
}
@media (max-width: 1220px) {
  .services__list-item {
    max-width: 354px;
  }
}

.service {
  color: #2f2f2f;
  font-size: 14px;
  line-height: 1.5;
}

.service__icon {
  margin-bottom: 20px;
}
@media (max-width: 788px) {
  .service__icon {
    margin-bottom: 10px;
  }
}

.service__title {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  color: #000;
}
@media (max-width: 1220px) {
  .service__title {
    margin-bottom: 10px;
    font-size: 18px;
  }
}

.price {
  padding: 60px 0 120px;
  background-color: #f8f8f8;
}
@media (max-width: 1220px) {
  .price {
    padding: 60px 0 80px;
  }
}
@media (max-width: 788px) {
  .price {
    padding: 40px 0 60px;
  }
}

.price__title {
  margin-bottom: 40px;
}
@media (max-width: 788px) {
  .price__title {
    margin-bottom: 20px;
  }
}

.price__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 50px;
}
@media (max-width: 788px) {
  .price__cards {
    row-gap: 30px;
  }
}
.price__cards > * {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 1220px) {
  .price__cards > * {
    min-width: 354px;
  }
}
@media (max-width: 788px) {
  .price__cards > * {
    min-width: unset;
  }
}

.card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 15px;
}

.card__img {
  border-radius: 20px;
  -webkit-box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.05);
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 33/18;
}

.card__body {
  border-radius: 20px;
  padding: 20px 24px;
  -webkit-box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.05);
  background-color: #fff;
}

.card__title {
  margin-bottom: 5px;
  font-weight: 800;
  font-size: 20px;
  line-height: 1.2;
  color: #000;
}

.card__price {
  margin-bottom: 25px;
  font-size: 20px;
  line-height: 1.2;
  color: #00ae6c;
}

.card__list {
  margin-bottom: 25px;
  padding-left: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 14px;
  font-size: 14px;
  line-height: 1.2;
}

.card__list-item {
  list-style: disc;
}

.cta__wrapper {
  padding: 30px;
  height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 40px;
  background-color: #000;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0.7))), url("../img/cta/cta-bg.jpg");
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%), url("../img/cta/cta-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  text-align: center;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .cta__wrapper {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0.7))), url("../img/cta/cta-bg@2x.jpg");
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%), url("../img/cta/cta-bg@2x.jpg");
  }
}
@media (max-width: 1220px) {
  .cta__wrapper {
    height: 326px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0.7))), url("../img/cta/cta-bg-tablet.jpg");
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%), url("../img/cta/cta-bg-tablet.jpg");
  }
}
@media (max-width: 1220px) and (-webkit-min-device-pixel-ratio: 2), (max-width: 1220px) and (min-resolution: 192dpi) {
  .cta__wrapper {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0.7))), url("../img/cta/cta-bg-tablet@2x.jpg");
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%), url("../img/cta/cta-bg-tablet@2x.jpg");
  }
}
@media (max-width: 788px) {
  .cta__wrapper {
    height: auto;
    padding: 40px 15px;
    border-radius: 20px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0.7))), url("../img/cta/cta-bg-mobile.jpg");
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%), url("../img/cta/cta-bg-mobile.jpg");
  }
}
@media (max-width: 788px) and (-webkit-min-device-pixel-ratio: 2), (max-width: 788px) and (min-resolution: 192dpi) {
  .cta__wrapper {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0.7))), url("../img/cta/cta-bg-mobile@2x.jpg");
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%), url("../img/cta/cta-bg-mobile@2x.jpg");
  }
}

.cta__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 25px;
  text-align: center;
}

.cta__title {
  font-weight: 800;
  font-size: 42px;
  line-height: 1;
  color: #fff;
}
@media (max-width: 1220px) {
  .cta__title {
    font-size: 32px;
  }
}
@media (max-width: 788px) {
  .cta__title {
    font-size: 24px;
  }
}

.cta__text {
  font-weight: 300;
  font-size: 18px;
  line-height: 1.5;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1em;
}
@media (max-width: 1220px) {
  .cta__text {
    font-size: 16px;
  }
}
@media (max-width: 788px) {
  .cta__text {
    font-size: 14px;
  }
}

.cta__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.map {
  scroll-margin-top: 60px;
}
@media (max-width: 1220px) {
  .map {
    scroll-margin-top: 40px;
  }
}
@media (max-width: 788px) {
  .map {
    scroll-margin-top: 30px;
  }
}

.map__title {
  margin-bottom: 20px;
}
@media (max-width: 788px) {
  .map__title {
    margin-bottom: 10px;
  }
}

.map__desc {
  margin-bottom: 20px;
  line-height: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.5em;
}
@media (max-width: 788px) {
  .map__desc {
    margin-bottom: 10px;
    font-size: 14px;
  }
}

.map__img {
  border-radius: 40px;
}
@media (max-width: 1220px) {
  .map__img {
    display: none;
  }
}
@media (max-width: 788px) {
  .map__img {
    display: none;
  }
}

.map__img-tablet {
  display: none;
}
@media (max-width: 1220px) {
  .map__img-tablet {
    display: block;
    border-radius: 40px;
    height: 400px;
  }
}
@media (max-width: 788px) {
  .map__img-tablet {
    display: none;
  }
}

.map__img-mobile {
  display: none;
}
@media (max-width: 1220px) {
  .map__img-mobile {
    display: none;
  }
}
@media (max-width: 788px) {
  .map__img-mobile {
    display: block;
    border-radius: 20px;
    height: 400px;
  }
}

/* Map Iframe*/
.map__iframe {
  border-radius: 40px;
  width: 100%;
  height: 400px;
}
@media (max-width: 1220px) {
  .map__iframe {
    display: block;
  }
}
@media (max-width: 788px) {
  .map__iframe {
    display: block;
  }
}

.faq__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1220px) {
  .faq__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 788px) {
  .faq__wrapper {
    row-gap: 20px;
  }
}

.faq__title {
  width: 470px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 1220px) {
  .faq__title {
    width: auto;
  }
}

.faq__topics {
  width: 670px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 1220px) {
  .faq__topics {
    width: auto;
  }
}

.topic {
  padding: 30px 0;
  border-top: 1px solid #ececf1;
  border-bottom: 1px solid #ececf1;
}
@media (max-width: 1220px) {
  .topic {
    padding: 17px 0;
  }
}
@media (max-width: 788px) {
  .topic {
    padding: 15px 0;
  }
}

.topic + .topic {
  margin-top: -1px;
}

.topic__btn {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /*Hover*/
  /*Active*/
  /*Focus reset*/
  /*Focus only*/
}
.topic__btn:hover:not(:focus-visible) {
  opacity: 0.5;
}
.topic__btn:active:not(:focus-visible) .topic__title {
  color: #00ae6c;
}
.topic__btn:focus {
  outline: none;
}
.topic__btn:focus-visible {
  outline-offset: 1px;
  outline: #005fcc auto 1px;
}

@media (max-width: 788px) {
  .topic__icon {
    width: 32px;
    height: 32px;
  }
}

.topic__title {
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
}
@media (max-width: 788px) {
  .topic__title {
    font-size: 18px;
  }
}

.topic__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1em;
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}
@media (max-width: 788px) {
  .topic__content {
    font-size: 14px;
    padding-top: 13px;
  }
}

.topic__content p:first-child {
  padding-top: 30px;
}

/*Var 1*/
a.topic__link {
  text-decoration: underline;
}

.footer {
  padding: 60px 0;
  background-color: #000;
  color: #fff;
}
@media (max-width: 788px) {
  .footer {
    padding: 40px 0;
  }
}
.footer a {
  color: #fff;
}

.footer__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 30px;
}

.nav-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
}
@media (max-width: 788px) {
  .nav-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 15px;
  }
}

.nav-footer__item--open {
  display: none;
}
@media (max-width: 1220px) {
  .nav-footer__item--open {
    display: block;
  }
}

a.nav-footer__link {
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

a.nav-footer__link:hover {
  color: #00ae6c;
}

.social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 788px) {
  .social-list {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}

.top-link {
  position: fixed;
  right: 40px;
  bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 60px;
  height: 60px;
  background-color: #000;
  border-radius: 24px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.top-link--visible {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.mobile-nav--open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav__header {
  padding: 20px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mobile-nav__body {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f6f6f6;
}

.mobile-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  text-align: center;
  font-size: 14px;
  color: #000;
}
.mobile-nav-list a {
  color: #000;
}

.modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.modal--open {
  opacity: 1;
  pointer-events: all;
}

.modal__body {
  position: relative;
  padding: 40px;
  width: 420px;
  background-color: #fff;
  border-radius: 20px;
  color: #2f2f2f;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
@media (max-width: 788px) {
  .modal__body {
    padding: 20px;
    width: 360px;
  }
}

.modal--open .modal__body {
  -webkit-transform: translate(0, 0%);
          transform: translate(0, 0%);
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
}
@media (max-width: 788px) {
  .modal__close {
    top: 10px;
    right: 10px;
  }
}

.modal__header {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
  text-align: center;
  font-size: 14px;
}

.modal__title {
  font-weight: 800;
  font-size: 36px;
  line-height: 1.2;
  color: #000;
}
@media (max-width: 788px) {
  .modal__title {
    font-size: 28px;
  }
}

.modal__inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
}

.modal__checkbox-label {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 12px;
}

.input {
  height: 60px;
  padding: 20px 30px;
  border: 1px solid #b3b3b3;
  border-radius: 80px;
  background-color: #fff;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
}

.fake-checkbox {
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid #999;
  border-radius: 4px;
  background-color: #fff;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.fake-checkbox::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  width: 16px;
  height: 13px;
  background-image: url("../img/icons/tick.svg");
  background-repeat: no-repeat;
  background-position: center;
}

.real-checkbox:checked + .fake-checkbox {
  background-color: #000;
  border: 1px solid #000;
}

.real-checkbox:checked + .fake-checkbox::after {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}/*# sourceMappingURL=main.css.map */