:root {
  --body-ff: "Montserrat", Arial, Helvetica, sans-serif;
  --body-fz: 16px;
  --body-lh: 1.4;
  --body-fc: var(--black);
  --body-bg: var(--white);
  --h-ff: var(--body-fc);
  --h-fw: 600;
  --h-lh: 1.2;
  --h-mb: 0 0 25px 0;
  --h1-fz: 42px;
  --h2-fz: 38px;
  --h3-fz: 32px;
  --h4-fz: 28px;
  --h5-fz: 26px;
  --h6-fz: 24px;
  --p-mb: 0 0 25px 0;
  --sec-p: 75px;
  --sec-h-mb: 35px;
  --sec-h-t-mb: 15px;
  --white: #ffffff;
  --black: #000000;
  --gray: #F6F6F6;
  --gray-low: #939393;
  --gray-deep: #888B8D;
  --bardo: #7A174D;
  --pink: #B90066;
  --pink-light: #EFDAE6;
  --green: #92ba00;
}

@media (min-width: 1550px) {
  :root {
    --body-fz: 24px;
  }
}
@media screen and (max-width: 1550px) {
  :root {
    --h1-fz: 38px;
    --h2-fz: 32px;
    --h3-fz: 28px;
    --h4-fz: 26px;
    --h5-fz: 24px;
    --h6-fz: 22px;
  }
}
@media screen and (max-width: 1200px) {
  :root {
    --h1-fz: 32px;
    --h2-fz: 28px;
    --h3-fz: 26px;
    --h4-fz: 24px;
    --h5-fz: 22px;
    --h6-fz: 20px;
    --sec-p: 50px;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --h1-fz: 28px;
    --h2-fz: 26px;
    --h3-fz: 24px;
    --h4-fz: 22px;
    --h5-fz: 20px;
    --h6-fz: 18px;
    --sec-p: 30px;
  }
}
@media screen and (max-width: 576px) {
  :root {
    --h1-fz: 26px;
    --h2-fz: 24px;
    --h3-fz: 22px;
    --h4-fz: 20px;
    --h5-fz: 18px;
    --h6-fz: 16px;
    --sec-h-mb: 20px;
  }
}
.container {
  --bs-gutter-x: 30px;
}
@media (min-width: 1550px) {
  .container {
    max-width: 1200px;
  }
}
@media (min-width: 1550px) {
  .container-wide {
    max-width: 1440px;
  }
}

.gy-base {
  --bs-gutter-y: 30px;
}

.fw-100 {
  font-weight: 100 !important;
}

.fw-300 {
  font-weight: 300 !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-900 {
  font-weight: 900 !important;
}

.color-white {
  color: var(--white) !important;
}

.bg-white {
  background-color: var(--white) !important;
}

.color-black {
  color: var(--black) !important;
}

.bg-black {
  background-color: var(--black) !important;
}

.color-gray-deep {
  color: var(--gray-deep) !important;
}

.bg-gray-deep {
  background-color: var(--gray-deep) !important;
}

.color-gray {
  color: var(--gray) !important;
}

.bg-gray {
  background-color: var(--gray) !important;
}

.color-pink {
  color: var(--pink) !important;
}

.bg-pink {
  background-color: var(--pink) !important;
}

.color-bardo {
  color: var(--bardo) !important;
}

.bg-bardo {
  background-color: var(--bardo) !important;
}

.reset-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.d-flex-center {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--body-ff);
  font-size: var(--body-fz);
  line-height: var(--body-lh);
  color: var(--body-fc);
  background-color: var(--body-bg);
  -webkit-tap-highlight-color: transparent;
}

* {
  outline-offset: 3px;
  outline-color: var(--pink);
}
*::selection {
  color: var(--white);
  background: var(--black);
}

h1,
.h2,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: var(--h-ff);
  font-weight: var(--h-fw);
  line-height: var(--h-lh);
  margin: var(--h-mb);
}

h1,
.h1 {
  font-size: var(--h1-fz);
}

h2,
.h2 {
  font-size: var(--h2-fz);
}

h3,
.h3 {
  font-size: var(--h3-fz);
}

h4,
.h4 {
  font-size: var(--h4-fz);
}

h5,
.h5 {
  font-size: var(--h5-fz);
}

h6,
.h6 {
  font-size: var(--h6-fz);
}

p {
  margin: var(--p-mb);
}

a {
  color: inherit;
}
a:hover {
  text-decoration: none;
}

b {
  font-weight: 600;
}

strong {
  font-weight: 700;
}

img {
  max-width: 100%;
  height: auto;
}

ol:not(.reset-list),
ul:not(.reset-list) {
  padding-left: 20px;
  margin: 0;
}
ol:not(.reset-list):not(:last-child),
ul:not(.reset-list):not(:last-child) {
  margin-bottom: 20px;
}
@media (max-width: 1550px) {
  ol:not(.reset-list),
  ul:not(.reset-list) {
    padding-left: 16px;
  }
}

sup {
  font-size: 60%;
}

.button {
  font-family: inherit;
  font-size: 18px;
  font-weight: 600;
  gap: 14px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  padding: 10px 25px;
  min-height: 40px;
  color: var(--white);
  border: none;
  outline: none;
  border-radius: 10px;
  transition: opacity ease-in-out 0.2s;
}
.button:hover {
  opacity: 0.8;
}
.button-pink {
  background-color: var(--pink);
}
.button-green {
  background-color: var(--green);
}
@media (max-width: 1550px) {
  .button {
    font-size: 14px;
    min-height: 35px;
    padding: 10px 25px;
  }
}
@media (max-width: 991px) {
  .button {
    font-size: 12px;
    min-height: 30px;
    padding: 1px 15px;
    border-radius: 7px;
  }
}
@media (max-width: 576px) {
  .button {
    font-size: 10px;
  }
}
.button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 23px;
  height: 23px;
}
.button-icon svg,
.button-icon img {
  width: 100%;
  height: 100%;
}

button.button {
  text-transform: none !important;
}

.button-box {
  padding: 0;
  width: 36px;
  height: 34px;
  cursor: pointer;
  border: none;
  background-color: transparent;
  transition: opacity ease-in-out 0.2s;
}
.button-box:hover {
  opacity: 0.8;
}
@media (max-width: 1550px) {
  .button-box {
    width: 30px;
    height: 30px;
  }
  .button-box svg {
    width: 100%;
    height: 100%;
  }
}

.input-group:not(:last-child) {
  margin-bottom: 15px;
}
.input-line:not(:last-child) {
  margin-bottom: 30px;
}
.input-info {
  font-size: 16px;
  line-height: 1.2;
}
@media (max-width: 1200px) {
  .input-info {
    font-size: 14px;
  }
}
.input-meta {
  font-size: 14px;
}
.input-label {
  display: block;
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 1550px) {
  .input-label {
    font-size: 16px;
  }
}
.input-control {
  font-family: inherit;
  font-size: 14px;
  max-width: 100%;
  width: 100%;
  min-height: 40px;
  padding: 0 15px;
  border-radius: 10px !important;
  border: none;
  background-color: var(--gray);
  box-sizing: border-box;
  outline: none;
}
@media (max-width: 1550px) {
  .input-control {
    min-height: 30px;
    border-radius: 7px !important;
  }
}
.input-pin {
  gap: 14px;
}
.input-pin input {
  text-align: center;
  padding: 0;
  height: 80px;
  font-size: 30px;
  -moz-appearance: textfield;
}
.input-pin input::-webkit-outer-spin-button, .input-pin input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.input-checkbox, .input-radio {
  display: block !important;
  position: relative;
  margin-left: 0 !important;
}
.input-checkbox:not(:last-child), .input-radio:not(:last-child) {
  margin-bottom: 8px !important;
}
.input-checkbox input[type=checkbox],
.input-checkbox input[type=radio], .input-radio input[type=checkbox],
.input-radio input[type=radio] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 1;
  visibility: hidden;
}
.input-checkbox span, .input-radio span {
  display: block;
  position: relative;
  padding-left: 30px;
  font-size: 14px;
  font-size: 14px;
  font-weight: 500;
}
.input-checkbox span:before, .input-checkbox span:after, .input-radio span:before, .input-radio span:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 0;
  top: 0;
  cursor: pointer;
  transition: top ease-in-out 0.2s, left ease-in-out 0.2s, opacity ease-in-out 0.2s, background-color ease-in-out 0.2s;
}
.input-checkbox input[type=checkbox]:checked + span:before {
  border-color: var(--pink);
}
.input-checkbox input[type=checkbox]:checked + span:after {
  opacity: 1;
}
.input-checkbox span:before {
  background-color: var(--white);
  border: 1px solid var(--gray);
  border-radius: 3px;
  transition: border-color ease-in-out 0.2s;
}
.input-checkbox span:after {
  background-image: url("data:image/svg+xml,%3csvg%20width='14'%20height='11'%20viewBox='0%200%2014%2011'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M1.75%205.70833L4.91667%208.875L12.0417%201.75'%20stroke='%23B90066'%20stroke-width='2'%20stroke-linecap='round'/%3e%3c/svg%3e");
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity ease-in-out 0.2s;
}
.input-radio input[type=radio]:checked + span:before {
  background-color: var(--s-black);
}
.input-radio input[type=radio]:checked + span:after {
  opacity: 1;
}
.input-radio span:before, .input-radio span:after {
  border-radius: 100%;
}
.input-radio span:after {
  width: 12px;
  height: 12px;
  left: 5px;
  top: 6px;
  background-color: var(--s-white);
}
.input-radio span:before {
  border: 1px solid var(--s-black);
}

select.input-control {
  background-color: var(--gray);
  background-image: url("data:image/svg+xml,%3csvg%20width='19'%20height='11'%20viewBox='0%200%2019%2011'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M1%201L9.5%209.5L18%201'%20stroke='black'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: calc(100% - 15px) center;
  background-size: 15px;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
}

button.button {
  text-transform: uppercase;
}

textarea.input-control {
  min-height: 130px;
  padding-top: 10px;
}

.section {
  padding-top: var(--sec-p);
  padding-bottom: var(--sec-p);
  box-sizing: border-box;
}
@media (max-width: 1200px) {
  .section {
    overflow: hidden;
  }
}
.section.pt-double {
  padding-top: calc(var(--sec-p) * 2);
}
.section.pb-double {
  padding-bottom: calc(var(--sec-p) * 2);
}
.section.pt-half {
  padding-top: calc(var(--sec-p) * 1.5);
}
.section.pb-half {
  padding-bottom: calc(var(--sec-p) * 1.5);
}
.section-header {
  margin-bottom: var(--sec-h-mb);
}
.section-title {
  margin-bottom: var(--sec-h-t-mb);
}
.section-title:last-child {
  margin: 0;
}
.section-inner {
  position: relative;
  z-index: 2;
}

.modal {
  --bs-modal-width: 490px;
}
.modal-backdrop {
  --bs-backdrop-bg: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  --bs-backdrop-opacity: 1;
}
.modal-close {
  position: absolute;
  right: 24px;
  top: 24px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  width: 24px;
  height: 24px;
  padding: 0;
  background-image: url("data:image/svg+xml,%3csvg%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M9.88653%2011.9987L0.443377%202.56955C0.161125%202.28727%200.00255775%201.90441%200.00255775%201.50521C0.00255775%201.106%200.161125%200.723146%200.443377%200.440865C0.725628%200.158584%201.10844%200%201.5076%200C1.90677%200%202.28958%200.158584%202.57183%200.440865L12%209.88503L21.4282%200.440865C21.7104%200.158584%2022.0932%203.54433e-07%2022.4924%203.57407e-07C22.8916%203.60381e-07%2023.2744%200.158584%2023.5566%200.440865C23.8389%200.723146%2023.9974%201.106%2023.9974%201.50521C23.9974%201.90441%2023.8389%202.28727%2023.5566%202.56955L14.1135%2011.9987L23.5566%2021.4279C23.6971%2021.5673%2023.8086%2021.733%2023.8847%2021.9157C23.9608%2022.0984%2024%2022.2943%2024%2022.4922C24%2022.6901%2023.9608%2022.8861%2023.8847%2023.0687C23.8086%2023.2514%2023.6971%2023.4172%2023.5566%2023.5566C23.4173%2023.6971%2023.2515%2023.8086%2023.0688%2023.8847C22.8862%2023.9608%2022.6903%2024%2022.4924%2024C22.2945%2024%2022.0986%2023.9608%2021.9159%2023.8847C21.7333%2023.8086%2021.5675%2023.6971%2021.4282%2023.5566L12%2014.1124L2.57183%2023.5566C2.43249%2023.6971%202.26671%2023.8086%202.08405%2023.8847C1.9014%2023.9608%201.70548%2024%201.5076%2024C1.30973%2024%201.11381%2023.9608%200.931156%2023.8847C0.748501%2023.8086%200.58272%2023.6971%200.443377%2023.5566C0.302885%2023.4172%200.191372%2023.2514%200.115274%2023.0687C0.0391769%2022.8861%200%2022.6901%200%2022.4922C0%2022.2943%200.0391769%2022.0984%200.115274%2021.9157C0.191372%2021.733%200.302885%2021.5673%200.443377%2021.4279L9.88653%2011.9987Z'%20fill='%237A174D'/%3e%3c/svg%3e");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 1550px) {
  .modal-close {
    width: 20px;
    height: 20px;
  }
}
.modal-close svg {
  width: 100%;
  height: 100%;
}
.modal-close {
  transition: opacity ease-in-out 0.2s;
}
.modal-close:hover {
  opacity: 0.8;
}
@media (max-width: 576px) {
  .modal-close {
    top: 15px;
    right: 15px;
  }
}
.modal-content {
  display: block;
  padding: 55px;
  box-sizing: border-box;
  background-color: var(--white);
  border: none;
  box-shadow: none;
  border-radius: 30px;
  position: relative;
  box-shadow: 6px 8px 30px rgba(11, 4, 47, 0.1);
}
@media (max-width: 576px) {
  .modal-content {
    padding: 50px 25px 25px 25px;
    border-radius: 15px;
  }
}
.modal-header {
  text-align: center;
  padding: 0;
}
.modal-header:not(:last-child) {
  margin-bottom: 30px;
}
@media (max-width: 576px) {
  .modal-header:not(:last-child) {
    margin-bottom: 20px;
  }
}
.modal-header-title {
  margin-bottom: 12px;
  line-height: 1.1;
  font-size: 30px;
  color: var(--pink);
}
@media (max-width: 991px) {
  .modal-header-title {
    font-size: 28px;
  }
}
@media (max-width: 576px) {
  .modal-header-title {
    font-size: 24px;
  }
}
.modal-header-title:last-child {
  margin: 0;
}
.modal-disclaimer-title {
  margin-bottom: 20px;
  font-size: 24px;
}
@media (max-width: 991px) {
  .modal-disclaimer-title {
    font-size: 22px;
  }
}
@media (max-width: 576px) {
  .modal-disclaimer-title {
    font-size: 18px;
  }
}
.modal-disclaimer-text {
  margin-bottom: 30px;
  font-size: 20px;
}
@media (max-width: 1550px) {
  .modal-disclaimer-text {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .modal-disclaimer-text {
    font-size: 16px;
  }
}
.modal-message {
  line-height: 1.1;
  margin-bottom: 20px;
  font-size: 24px;
  padding: 20px 0;
}
@media (max-width: 1550px) {
  .modal-message {
    font-size: 22px;
  }
}
@media (max-width: 1200px) {
  .modal-message {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .modal-message {
    font-size: 18px;
  }
}
.modal-tabs-buttons {
  border-radius: 6px;
  margin-bottom: 35px;
  font-size: 16px;
  background-color: var(--pink);
}
@media (max-width: 576px) {
  .modal-tabs-buttons {
    margin-bottom: 30px;
  }
}
.modal-tabs-buttons-item {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-align: center;
  padding: 8px 0;
  border-radius: 4px;
  color: var(--white);
  font-weight: normal;
  transition: color ease-in-out 0.2s, background-color ease-in-out 0.2s;
}
@media (max-width: 576px) {
  .modal-tabs-buttons-item {
    font-size: 14px;
  }
}
.modal-tabs-buttons-item span {
  position: relative;
  z-index: 2;
  display: inline-block;
}
.modal-tabs-buttons-item.current {
  color: var(--pink);
  background-color: var(--gray);
}
.modal-tabs-buttons-item.current:before {
  opacity: 1;
}
.modal-tabs-content-item:not(.current) {
  display: none;
}

.swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  position: relative;
}
.swiper-pagination-bullet {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: var(--black);
  opacity: 0.5 !important;
  transition: opacity ease-in-out 0.2s;
}
.swiper-pagination-bullet-active {
  opacity: 1 !important;
}
.swiper-slide {
  height: auto;
}

.rating-header {
  margin-bottom: 20px;
  font-size: 22px;
}
@media (max-width: 768px) {
  .rating-header {
    font-size: 16px;
  }
}
.rating-items, .rating-footer {
  max-width: 580px;
  margin: 0 auto;
}
.rating-items {
  justify-content: space-between;
  margin-bottom: 10px;
}
.rating-item input {
  display: none;
}
.rating-item input:checked + span {
  background-color: var(--violet);
  color: var(--white);
}
.rating-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--violet);
  color: var(--violet);
  width: 42px;
  height: 42px;
  font-size: 22px;
  cursor: pointer;
  border-radius: 100%;
  transition: background-color ease-in-out 0.2s, color ease-in-out 0.2s;
}
@media (max-width: 576px) {
  .rating-item span {
    width: 26px;
    height: 26px;
    font-size: 16px;
    font-weight: bold;
  }
}
.rating-footer {
  font-size: 16px;
}
@media (max-width: 576px) {
  .rating-footer {
    font-size: 12px;
  }
}

.header {
  position: relative;
  padding: 15px 0;
  z-index: 99;
}
@media (max-width: 991px) {
  .header {
    padding-bottom: 40px;
  }
}
.header:before {
  content: "";
  width: 100%;
  height: 115%;
  background-image: url("data:image/svg+xml,%3csvg%20width='1920'%20height='199'%20viewBox='0%200%201920%20199'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20filter='url(%23filter0_d_7594_1446)'%3e%3cpath%20d='M93.8938%20149.87L12.8734%2015.8703C-7.27468%20-17.4528%2016.7198%20-60%2055.6604%20-60L1864.98%20-60C1903.73%20-60%201927.75%20-17.8268%201907.99%2015.5031L1828.53%20149.503C1819.52%20164.689%201803.17%20174%201785.52%20174L136.681%20174C119.178%20174%20102.95%20164.848%2093.8938%20149.87Z'%20fill='white'/%3e%3c/g%3e%3cdefs%3e%3cfilter%20id='filter0_d_7594_1446'%20x='-19.4175'%20y='-85'%20width='1959.48'%20height='284'%20filterUnits='userSpaceOnUse'%20color-interpolation-filters='sRGB'%3e%3cfeFlood%20flood-opacity='0'%20result='BackgroundImageFix'/%3e%3cfeColorMatrix%20in='SourceAlpha'%20type='matrix'%20values='0%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%20127%200'%20result='hardAlpha'/%3e%3cfeOffset/%3e%3cfeGaussianBlur%20stdDeviation='12.5'/%3e%3cfeColorMatrix%20type='matrix'%20values='0%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200.08%200'/%3e%3cfeBlend%20mode='normal'%20in2='BackgroundImageFix'%20result='effect1_dropShadow_7594_1446'/%3e%3cfeBlend%20mode='normal'%20in='SourceGraphic'%20in2='effect1_dropShadow_7594_1446'%20result='shape'/%3e%3c/filter%3e%3c/defs%3e%3c/svg%3e");
  background-position: center bottom;
  background-repeat: no-repeat;
  position: absolute;
  z-index: -1;
  top: 0;
}
@media (max-width: 1550px) {
  .header:before {
    background-size: 1500px;
  }
}
@media screen and (max-width: 1400px) {
  .header:before {
    background-size: 1400px;
  }
}
@media (max-width: 1200px) {
  .header:before {
    background-size: 1100px;
  }
}
@media (max-width: 991px) {
  .header:before {
    background-size: 103%;
  }
}
.header-nav {
  padding: 20px 0 0 0;
}
@media (max-width: 1550px) {
  .header-nav {
    padding: 30px 0 0 0;
  }
}
@media (max-width: 1200px) {
  .header-nav {
    position: absolute;
    max-width: calc(100vw - 40px);
    width: 100%;
    left: 50%;
    top: calc(100% + 20px);
    max-height: calc(100vh - 100% - 30px);
    overflow-y: auto;
    transform: translate(-50%, 0);
    background-color: var(--white);
    filter: drop-shadow(0px 0px 25px rgba(0, 0, 0, 0.2));
    padding: 30px;
    box-sizing: border-box;
    transform: translate(-50%, 0);
    border-radius: 15px;
    opacity: 0;
    visibility: hidden;
    transition: opacity ease-in-out 0.2s, visibility ease-in-out 0.2s;
  }
  .header-nav.active {
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 1200px) {
  .header-nav-inner {
    max-width: 960px;
    margin: 0 auto;
  }
}
@media (max-width: 991px) {
  .header-nav-inner {
    max-width: 720px;
  }
}
@media (max-width: 768px) {
  .header-nav-inner {
    max-width: 540px;
  }
}
.header-nav-list {
  width: 100%;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .header-nav-list {
    flex-direction: column;
  }
}
.header-nav-item {
  position: relative;
}
.header-nav-item:hover .header-nav-child {
  opacity: 1;
  visibility: visible;
}
.header-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 10px 0;
  transition: opacity ease-in-out 0.2s;
}
@media (max-width: 1550px) {
  .header-nav-link {
    font-size: 16px;
  }
}
.header-nav-link:hover {
  opacity: 0.8;
}
.header-nav-link-icon, .header-nav-link-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
}
.header-nav-link-arrow {
  transition: transform ease-in-out 0.2s;
}
.header-nav-link.active .header-nav-link-arrow {
  transform: rotate(180deg);
}
@media screen and (min-width: 1200px) {
  .header-nav-link:hover .header-nav-link-arrow {
    transform: rotate(180deg);
  }
}
.header-nav-child {
  position: absolute;
  background-color: var(--white);
  z-index: 2;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.2);
  border-radius: 0px 0px 15px 15px;
  width: 100%;
  left: 50%;
  top: 100%;
  min-width: 230px;
  overflow: hidden;
  transform: translate(-50%, 0);
  opacity: 0;
  visibility: hidden;
  transition: opacity ease-in-out 0.2s, visibility ease-in-out 0.2s;
}
@media (max-width: 1550px) {
  .header-nav-child {
    min-width: 180px;
  }
}
@media (max-width: 1200px) {
  .header-nav-child {
    display: none;
    opacity: 1;
    visibility: visible;
    padding: 0;
    box-shadow: none;
    transform: none;
    top: 0;
    left: 0;
    min-width: 100%;
    border-radius: 0;
    position: relative;
  }
}
.header-nav-child li:not(:last-child) {
  border-bottom: 1px solid var(--gray);
}
.header-nav-child .header-nav-link {
  display: flex;
  width: 100%;
  padding: 13px 20px;
  font-size: 16px;
  transition: background-color ease-in-out 0.2s;
}
.header-nav-child .header-nav-link:hover {
  background-color: var(--pink-light);
}
@media (max-width: 1550px) {
  .header-nav-child .header-nav-link {
    font-size: 14px;
  }
}
.header-toggle {
  display: block;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  position: relative;
  width: 30px;
  height: 22px;
  cursor: pointer;
}
.header-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--bardo);
  position: absolute;
  border-radius: 3px;
  transition: transform ease-in-out 0.2s, opacity ease-in-out 0.2s, top ease-in-out 0.2s, bottom ease-in-out 0.2s;
}
.header-toggle span:nth-child(1) {
  top: 0;
}
.header-toggle span:nth-child(2) {
  top: 50%;
  transform: translate(0, -50%);
}
.header-toggle span:nth-child(3) {
  bottom: 0;
}
.header-toggle.active span:nth-child(1) {
  top: 50%;
  transform: translate(0, -50%) rotate(45deg);
}
.header-toggle.active span:nth-child(2) {
  opacity: 0;
}
.header-toggle.active span:nth-child(3) {
  bottom: inherit;
  top: 50%;
  transform: translate(0, -50%) rotate(-45deg);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 991px) {
  .header-inner {
    gap: 10px;
  }
}
.header-logo {
  display: block;
  max-width: 180px;
}
@media (max-width: 1550px) {
  .header-logo {
    max-width: 140px;
  }
}
@media (max-width: 768px) {
  .header-logo {
    max-width: 90px;
  }
}
.header-lungs {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 991px) {
  .header-lungs {
    position: absolute;
    right: 15px;
    width: 40%;
    bottom: 0;
  }
}
@media (max-width: 768px) {
  .header-lungs {
    width: 50%;
  }
}
@media (max-width: 576px) {
  .header-lungs {
    width: auto;
  }
}
.header-lungs-icon {
  max-width: 40px;
}
@media (max-width: 1550px) {
  .header-lungs-icon {
    max-width: 30px;
  }
}
.header-lungs-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-deep);
  line-height: 1.3;
}
@media (max-width: 1550px) {
  .header-lungs-text {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .header-lungs-text {
    font-size: 9px;
  }
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}
@media (max-width: 1550px) {
  .header-actions {
    gap: 12px;
  }
}
@media (max-width: 991px) {
  .header-actions {
    gap: 8px;
  }
}
.header-user {
  display: flex;
  align-items: center;
  gap: 5px;
}
@media (max-width: 1200px) {
  .header-user {
    max-width: 200px;
  }
}
.header-user-name {
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 1550px) {
  .header-user-name {
    font-size: 16px;
  }
}
@media (max-width: 1200px) {
  .header-user-name {
    font-size: 14px;
  }
}

.header-user-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 10px;
    background-color: transparent;
    border: 2px solid transparent;
    transition: all ease-in-out 0.2s;
    color: inherit;
}

.header-user-btn:hover {
    background-color: var(--pink-light);
    border-color: var(--pink);
    opacity: 1;
    text-decoration: none;
    color: inherit;
}

@media (max-width: 1200px) {
    .header-user-btn {
        flex-direction: column;
        text-align: center;
        gap: 5px;
        padding: 6px 12px;
    }
    
    .header-user-name {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .header-user-btn {
        padding: 4px 8px;
    }
    
    .header-user-icon {
        width: 25px;
        height: 23px;
    }
    
    .header-user-icon svg {
        width: 100%;
        height: 100%;
    }
}
.has-decor {
  position: relative;
}
.has-decor:before {
  content: "";
  width: 100%;
  height: calc(100% - 140px);
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--white);
  box-shadow: -19px -20px 25px rgba(0, 0, 0, 0.04);
  border-radius: 50px 50px 0 0;
  z-index: 2;
}
@media screen and (max-width: 1680px) {
  .has-decor:before {
    border-top-left-radius: 0;
  }
}
@media (max-width: 1200px) {
  .has-decor:before {
    height: 100%;
    border-radius: 20px 20px 0 0;
  }
}
.has-decor .section-title {
  position: relative;
  display: inline-block;
  z-index: 2;
}
.has-decor .section-title:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--white);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  box-shadow: 0px -20px 20px rgba(0, 0, 0, 0.04);
}
@media (max-width: 1200px) {
  .has-decor .section-title:before {
    display: none;
  }
}
.has-decor .section-title span {
  position: relative;
  display: inline-block;
  padding: 20px 0;
  z-index: 3;
}
@media (max-width: 1550px) {
  .has-decor .section-title span {
    padding: 15px 0;
  }
}
@media (max-width: 1200px) {
  .has-decor .section-title span {
    padding: 0;
  }
}
.has-decor .section-title span:before, .has-decor .section-title span:after {
  content: "";
  width: 99px;
  height: 96%;
  position: absolute;
  top: -17px;
  background-image: url("data:image/svg+xml,%3csvg%20width='99'%20height='90'%20viewBox='0%200%2099%2090'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_9514_306)'%3e%3cg%20filter='url(%23filter0_d_9514_306)'%3e%3cpath%20d='M-2.20703%2017C15.3009%2017%2031.5337%2026.1576%2040.5879%2041.1426L57.834%2069.6857C65.0774%2081.6738%2078.0635%2089%2092.07%2089H1124C1151.61%2089%201174%20111.386%201174%20139V867C1174%20894.614%201151.61%20917%201124%20917H-1245C-1272.61%20917%20-1295%20894.614%20-1295%20867V139C-1295%20111.386%20-1272.61%2089%20-1245%2089H-760.383C-746.254%2089%20-733.174%2081.5467%20-725.971%2069.3922L-709.448%2041.5098C-700.445%2026.3167%20-684.094%2017.0001%20-666.434%2017H-2.20703Z'%20fill='white'/%3e%3c/g%3e%3c/g%3e%3cdefs%3e%3cfilter%20id='filter0_d_9514_306'%20x='-1320'%20y='-8'%20width='2519'%20height='950'%20filterUnits='userSpaceOnUse'%20color-interpolation-filters='sRGB'%3e%3cfeFlood%20flood-opacity='0'%20result='BackgroundImageFix'/%3e%3cfeColorMatrix%20in='SourceAlpha'%20type='matrix'%20values='0%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%20127%200'%20result='hardAlpha'/%3e%3cfeOffset/%3e%3cfeGaussianBlur%20stdDeviation='12.5'/%3e%3cfeColorMatrix%20type='matrix'%20values='0%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200.04%200'/%3e%3cfeBlend%20mode='normal'%20in2='BackgroundImageFix'%20result='effect1_dropShadow_9514_306'/%3e%3cfeBlend%20mode='normal'%20in='SourceGraphic'%20in2='effect1_dropShadow_9514_306'%20result='shape'/%3e%3c/filter%3e%3cclipPath%20id='clip0_9514_306'%3e%3crect%20width='99'%20height='90'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100%;
}
@media (max-width: 1550px) {
  .has-decor .section-title span:before, .has-decor .section-title span:after {
    height: 121%;
  }
}
@media (max-width: 1200px) {
  .has-decor .section-title span:before, .has-decor .section-title span:after {
    display: none;
  }
}
.has-decor .section-title span:before {
  right: 100%;
  transform: scale(-1, 1);
}
.has-decor .section-title span:after {
  left: 100%;
}

.hero {
  padding-top: 30px;
}
.hero-row {
  --bs-gutter-x: 50px;
}
@media (max-width: 1550px) {
  .hero-row {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 20px;
  }
}
.hero-box {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  background-color: var(--green);
  border-radius: 15px;
  position: relative;
  top: 0;
}
@media (max-width: 1200px) {
  .hero-box {
    min-height: 370px;
  }
}
@media (max-width: 991px) {
  .hero-box {
    min-height: 410px;
  }
}
@media (max-width: 768px) {
  .hero-box {
    min-height: 320px;
  }
}
@media (max-width: 576px) {
  .hero-box {
    min-height: 380px;
    max-width: 300px;
    margin: 0 auto;
  }
}
.hero-box {
  transition: opacity ease-in-out 0.2s, top ease-in-out 0.2s;
}
.hero-box:hover {
  opacity: 0.8;
  top: -5px;
}
.hero-box-inner {
  flex: 1;
  padding: 40px 50px;
  box-sizing: border-box;
  color: var(--white);
  position: relative;
}
@media (max-width: 1550px) {
  .hero-box-inner {
    padding: 30px 25px;
  }
}
@media screen and (max-width: 1400px) {
  .hero-box-inner {
    padding: 20px;
  }
}
.hero-box-inner:before {
  content: "";
  width: calc(100% + 37px);
  height: calc(100% + 58px);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  right: -13px;
  top: -5px;
  background-image: url("data:image/svg+xml,%3csvg%20width='440'%20height='514'%20viewBox='0%200%20440%20514'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20filter='url(%23filter0_d_7581_108)'%3e%3cpath%20d='M410%205C418.284%205%20425%2011.7157%20425%2020V430C425%20441.046%20416.046%20450%20405%20450H215.215C203.609%20450%20192.885%20456.163%20187.082%20466.166L179.666%20478.95C176.088%20485.118%20169.497%20488.914%20162.366%20488.914H37.3564C26.4128%20488.914%2015%20481.321%2015%20470.377V20C15%2011.7157%2021.7157%205%2030%205H410Z'%20fill='%23B90066'/%3e%3c/g%3e%3cdefs%3e%3cfilter%20id='filter0_d_7581_108'%20x='0'%20y='0'%20width='440'%20height='513.914'%20filterUnits='userSpaceOnUse'%20color-interpolation-filters='sRGB'%3e%3cfeFlood%20flood-opacity='0'%20result='BackgroundImageFix'/%3e%3cfeColorMatrix%20in='SourceAlpha'%20type='matrix'%20values='0%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%20127%200'%20result='hardAlpha'/%3e%3cfeOffset%20dy='10'/%3e%3cfeGaussianBlur%20stdDeviation='7.5'/%3e%3cfeColorMatrix%20type='matrix'%20values='0%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200.3%200'/%3e%3cfeBlend%20mode='normal'%20in2='BackgroundImageFix'%20result='effect1_dropShadow_7581_108'/%3e%3cfeBlend%20mode='normal'%20in='SourceGraphic'%20in2='effect1_dropShadow_7581_108'%20result='shape'/%3e%3c/filter%3e%3c/defs%3e%3c/svg%3e");
}
@media (max-width: 1550px) {
  .hero-box-inner:before {
    right: -12px;
    height: calc(100% + 64px);
  }
}
@media screen and (max-width: 1400px) {
  .hero-box-inner:before {
    right: -11px;
    height: calc(100% + 54px);
    width: calc(100% + 29px);
  }
}
.hero-box-header {
  position: relative;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 40px;
  min-height: 71px;
  display: flex;
  align-items: center;
  background-image: url("data:image/svg+xml,%3csvg%20width='14'%20height='68'%20viewBox='0%200%2014%2068'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M6.602%2067.5763C10.2482%2067.5763%2013.204%2064.5508%2013.204%2060.8187C13.204%2057.0865%2010.2482%2054.061%206.602%2054.061C2.95582%2054.061%200%2057.0865%200%2060.8187C0%2064.5508%202.95582%2067.5763%206.602%2067.5763Z'%20fill='%2392BA00'/%3e%3cpath%20d='M6.602%2013.5153C10.2482%2013.5153%2013.204%2010.4898%2013.204%206.75763C13.204%203.02549%2010.2482%200%206.602%200C2.95582%200%200%203.02549%200%206.75763C0%2010.4898%202.95582%2013.5153%206.602%2013.5153Z'%20fill='%2392BA00'/%3e%3cpath%20d='M6.602%2040.5458C10.2482%2040.5458%2013.204%2037.5203%2013.204%2033.7881C13.204%2030.056%2010.2482%2027.0305%206.602%2027.0305C2.95582%2027.0305%200%2030.056%200%2033.7881C0%2037.5203%202.95582%2040.5458%206.602%2040.5458Z'%20fill='%2392BA00'/%3e%3c/svg%3e");
  background-position: 0 center;
  background-repeat: no-repeat;
  padding-left: 40px;
}
@media (max-width: 1550px) {
  .hero-box-header {
    font-size: 26px;
    background-size: 10px;
    padding-left: 30px;
    min-height: 58px;
    margin-bottom: 25px;
  }
}
.hero-box-header, .hero-box-desc {
  position: relative;
  z-index: 2;
}
.hero-box-desc {
  font-size: 20px;
}
@media (max-width: 1550px) {
  .hero-box-desc {
    font-size: 18px;
  }
}
@media screen and (max-width: 1400px) {
  .hero-box-desc {
    font-size: 16px;
  }
}
.hero-box-footer {
  text-align: right;
  padding: 15px;
  box-sizing: border-box;
}
@media (max-width: 1550px) {
  .hero-box-footer {
    padding: 10px 15px;
  }
}
.hero-box-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
}
@media screen and (max-width: 1400px) {
  .hero-box-button {
    font-size: 14px;
  }
}
.hero-img {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 576px) {
  .hero-img {
    border-radius: 0;
    width: 100vw;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
.hero-img-decor {
  position: absolute;
  top: 25px;
  right: 25px;
  z-index: 2;
  max-width: 350px;
}
@media (max-width: 1550px) {
  .hero-img-decor {
    max-width: 250px;
  }
}
@media (max-width: 576px) {
  .hero-img-decor {
    max-width: 200px;
    bottom: 30px;
    right: 30px;
    top: inherit;
  }
}

.events-box {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  border-radius: 15px;
  color: var(--white);
  background-color: var(--gray-low);
  padding: 30px;
  box-sizing: border-box;
  line-height: 1.3;
  position: relative;
  top: 0;
  transition: opacity ease-in-out 0.2s, top ease-in-out 0.2s;
}
@media (max-width: 1550px) {
  .events-box {
    min-height: 267px;
    padding: 20px;
  }
}
.events-box-title {
  font-size: 32px;
  font-weight: 600;
}
@media (max-width: 1550px) {
  .events-box-title {
    font-size: 26px;
  }
}
.events-box-desc {
  font-size: 28px;
  margin-bottom: 20px;
}
@media (max-width: 1550px) {
  .events-box-desc {
    font-size: 20px;
  }
}
.events-box-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.events-box:hover {
  opacity: 0.8;
  top: -5px;
}
.events-slider {
  position: relative;
}
@media (max-width: 1200px) {
  .events-slider {
    margin-top: 20px;
  }
}
@media (max-width: 576px) {
  .events-slider {
    width: calc(100% + 15px);
  }
}
.events-slider-inner {
  padding: 0;
  box-sizing: border-box;
}
.events-slider .swiper-slide {
  width: 32%;
}
@media (max-width: 1550px) {
  .events-slider .swiper-slide {
    width: 31.7%;
  }
}
@media (max-width: 768px) {
  .events-slider .swiper-slide {
    width: 70vw;
  }
}
.events-slider-controls {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
}
@media (max-width: 1200px) {
  .events-slider-controls {
    position: relative;
  }
}
.events-calendar {
  height: 100%;
  border-radius: 15px;
  background-color: var(--white);
  padding: 20px;
  box-sizing: border-box;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.08);
}

@media screen and (min-width: 1200px) {
  .search {
    padding-bottom: 0;
  }
}
.search-box {
  padding: 43px;
  box-sizing: border-box;
  text-align: center;
  border-radius: 15px;
  filter: drop-shadow(0px 0px 25px rgba(0, 0, 0, 0.4));
}
@media (max-width: 1550px) {
  .search-box {
    padding: 30px;
  }
}
@media (max-width: 1200px) {
  .search-box {
    padding: 20px;
  }
}
.search-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
@media (max-width: 1550px) {
  .search-form {
    gap: 16px;
  }
}
@media (max-width: 1200px) {
  .search-form {
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .search-form {
    gap: 10px;
  }
}
.search-form-title {
  font-size: 22px;
  font-weight: 600;
}
@media (max-width: 1550px) {
  .search-form-title {
    font-size: 18px;
  }
}
@media (max-width: 1200px) {
  .search-form-title {
    width: 100%;
  }
}
.search-form-input {
  max-width: 700px;
  background-image: url("data:image/svg+xml,%3csvg%20width='21'%20height='21'%20viewBox='0%200%2021%2021'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3ccircle%20cx='7.92453'%20cy='7.92453'%20r='6.92453'%20stroke='black'%20stroke-width='2'/%3e%3cpath%20d='M13.585%2013.5849L20.0001%2020'%20stroke='black'%20stroke-width='2'%20stroke-linecap='round'/%3e%3c/svg%3e");
  background-position: 15px center;
  background-repeat: no-repeat;
  border: none;
  padding-left: 50px;
}
@media (max-width: 1550px) {
  .search-form-input {
    background-size: 15px;
    background-position: 10px center;
    padding-left: 30px;
  }
}
@media (max-width: 1200px) {
  .search-form-input {
    max-width: inherit;
    flex: 1;
  }
}
.rec-row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
}
@media (max-width: 1550px) {
  .rec-row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
  }
}
.rec-box {
  display: block;
  height: 100%;
  padding: 20px 30px;
  box-sizing: border-box;
  background-color: var(--white);
  text-decoration: none;
  font-size: 24px;
  line-height: 1.3;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  position: relative;
  top: 0;
  padding-right: 100px;
  box-sizing: border-box;
  min-height: 102px;
  transition: opacity ease-in-out 0.2s, top ease-in-out 0.2s;
}
@media (max-width: 1550px) {
  .rec-box {
    padding: 20px 50px 20px 20px;
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .rec-box {
    font-size: 18px;
    min-height: 120px;
  }
}
.rec-box-button {
  position: absolute;
  right: 30px;
  bottom: 20px;
}
@media (max-width: 1550px) {
  .rec-box-button {
    right: 20px;
  }
}
.rec-box:hover {
  opacity: 0.8;
  top: -5px;
}
.rec-box.active {
  color: var(--white);
  background-color: var(--pink);
}

.popular-row {
  --bs-gutter-x: 50px;
  --bs-gutter-y: 30px;
}
@media (max-width: 1550px) {
  .popular-row {
    --bs-gutter-x: 35px;
  }
}
.popular-box {
  display: block;
  text-decoration: none;
  background-color: var(--pink);
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  position: relative;
  top: 0;
  transition: opacity ease-in-out 0.2s, top ease-in-out 0.2s;
}
@media (max-width: 576px) {
  .popular-box {
    max-width: 300px;
    margin: 0 auto;
  }
}
.popular-box-inner {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  padding: 40px 20px 50px 20px;
  box-sizing: border-box;
  gap: 20px;
}
.popular-box-inner:before {
  content: "";
  width: calc(100% + 60px);
  height: calc(100% + 85px);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  right: -22px;
  top: -17px;
  background-image: url("data:image/svg+xml,%3csvg%20width='461'%20height='286'%20viewBox='0%200%20461%20286'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20filter='url(%23filter0_d_7644_2096)'%3e%3cpath%20d='M40.1025%2020C31.8183%2020%2025.1025%2026.7157%2025.1025%2035V206C25.1025%20217.046%2034.0568%20226%2045.1025%20226H219.884C231.489%20226%20242.213%20232.163%20248.016%20242.166L250.21%20245.949C253.788%20252.117%20260.379%20255.914%20267.51%20255.914H415.103C426.148%20255.914%20435.103%20246.96%20435.103%20235.914V35C435.103%2026.7157%20428.387%2020%20420.103%2020H40.1025Z'%20fill='white'/%3e%3c/g%3e%3cdefs%3e%3cfilter%20id='filter0_d_7644_2096'%20x='0.102539'%20y='0'%20width='460'%20height='285.914'%20filterUnits='userSpaceOnUse'%20color-interpolation-filters='sRGB'%3e%3cfeFlood%20flood-opacity='0'%20result='BackgroundImageFix'/%3e%3cfeColorMatrix%20in='SourceAlpha'%20type='matrix'%20values='0%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%20127%200'%20result='hardAlpha'/%3e%3cfeOffset%20dy='5'/%3e%3cfeGaussianBlur%20stdDeviation='12.5'/%3e%3cfeColorMatrix%20type='matrix'%20values='0%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200.1%200'/%3e%3cfeBlend%20mode='normal'%20in2='BackgroundImageFix'%20result='effect1_dropShadow_7644_2096'/%3e%3cfeBlend%20mode='normal'%20in='SourceGraphic'%20in2='effect1_dropShadow_7644_2096'%20result='shape'/%3e%3c/filter%3e%3c/defs%3e%3c/svg%3e");
}
.popular-box-icon, .popular-box-text {
  position: relative;
  z-index: 2;
}
.popular-box-icon {
  max-width: 100px;
}
.popular-box-text {
  font-size: 22px;
  line-height: 1.3;
}
@media (max-width: 1550px) {
  .popular-box-text {
    font-size: 20px;
  }
}
.popular-box-footer {
  display: flex;
  align-items: flex-end;
  padding: 20px 20px 20px 45px;
  position: relative;
  background-image: url("data:image/svg+xml,%3csvg%20width='14'%20height='68'%20viewBox='0%200%2014%2068'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M6.602%2067.5763C10.2482%2067.5763%2013.204%2064.5508%2013.204%2060.8187C13.204%2057.0865%2010.2482%2054.061%206.602%2054.061C2.95582%2054.061%200%2057.0865%200%2060.8187C0%2064.5508%202.95582%2067.5763%206.602%2067.5763Z'%20fill='%2392BA00'/%3e%3cpath%20d='M6.602%2013.5153C10.2482%2013.5153%2013.204%2010.4898%2013.204%206.75763C13.204%203.02549%2010.2482%200%206.602%200C2.95582%200%200%203.02549%200%206.75763C0%2010.4898%202.95582%2013.5153%206.602%2013.5153Z'%20fill='%2392BA00'/%3e%3cpath%20d='M6.602%2040.5458C10.2482%2040.5458%2013.204%2037.5203%2013.204%2033.7881C13.204%2030.056%2010.2482%2027.0305%206.602%2027.0305C2.95582%2027.0305%200%2030.056%200%2033.7881C0%2037.5203%202.95582%2040.5458%206.602%2040.5458Z'%20fill='%2392BA00'/%3e%3c/svg%3e");
  background-position: 20px 20px;
  background-repeat: no-repeat;
  font-size: 16px;
  color: var(--white);
  gap: 10px;
}
@media (max-width: 1550px) {
  .popular-box-footer {
    font-size: 14px;
    padding: 15px 15px 15px 30px;
    background-size: 10px;
    background-position: 10px 17px;
  }
}
.popular-box-info {
  flex: 1;
}
.popular-box:hover {
  opacity: 0.8;
  top: -5px;
}

.air-datepicker.-inline- {
  width: 100%;
  border: none;
}

.air-datepicker-cell {
  border-radius: 20px;
  height: 40px;
}
@media (max-width: 1550px) {
  .air-datepicker-cell {
    height: 30px;
  }
}
@media (max-width: 1200px) {
  .air-datepicker-cell {
    height: 26px;
  }
}

.air-datepicker-cell.-selected- {
  background-color: transparent;
  border: 2px solid var(--pink);
  color: var(--black);
}

.air-datepicker-cell.-current- {
  --adp-color-current-date: var(--pink);
}

.air-datepicker-body--cells.-months- .air-datepicker-cell {
  border-radius: 0;
  border: none;
}

.air-datepicker-cell.-selected-.-current- {
  background-color: transparent;
  color: var(--pink);
}

.air-datepicker-cell.-focus-,
.air-datepicker-cell.-selected-.-focus- {
  background-color: transparent;
}

.air-datepicker-body--day-name {
  color: var(--gray-low);
}

.footer {
  padding: 80px 0 50px 0;
  box-sizing: border-box;
  border-bottom: 10px solid var(--pink);
  font-size: 12px;
}
@media (max-width: 1200px) {
  .footer {
    padding: 50px 0;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 30px 0;
  }
}
.footer a {
  text-decoration: none;
  transition: color ease-in-out 0.2s;
}
.footer a:hover {
  color: var(--pink);
}
.footer-inner {
  margin-bottom: 30px;
}
.footer-row {
  --bs-gutter-y: 30px;
}
.footer-nav {
  column-count: 2;
}
.footer-nav li:not(:last-child) {
  margin-bottom: 16px;
}
.footer-nav li a {
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--pink);
}
.footer-meta {
  color: var(--gray-deep);
}
