@charset "UTF-8";
:root {
  --font-primary: "TT Firs Text", sans-serif;
  --font-secondary: "Cooper Lt BT", sans-serif;
  --body-bg: #ffebdc;
  --body-color: #0c291c;
  --safe-area-inset-top: env(safe-area-inset-top);
  --safe-area-inset-bottom: env(safe-area-inset-bottom);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.fade-in-up {
  animation: fadeInUp 0.3s ease-out;
}

.fade-in-down {
  animation: fadeInDown 0.3s ease-out;
}

.row-gutter-10 {
  margin: 0 -0.5rem -1rem;
}
.row-gutter-10 > [class^=col] {
  padding: 0 0.5rem 1rem;
}

.py-10 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.mb-20 {
  margin-bottom: 2rem;
}

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

.text-green {
  color: #00c66f !important;
}

.text-yellow {
  color: #f2d872 !important;
}

.text-blue {
  color: #6fa5d6 !important;
}

.text-red {
  color: #db0031 !important;
}

.text-grey {
  color: #949dab;
}

.text-dark {
  color: #000 !important;
}

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

.is-visually-hidden {
  position: absolute;
  width: 0.1rem;
  height: 0.1rem;
  margin: -0.1rem;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.row-gutter-120 {
  margin: 0 -6rem;
}
.row-gutter-120 > [class^=col-] {
  padding: 0 6rem;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .is-md-only {
    display: none !important;
  }
}

.is-hidden {
  display: none !important;
}

@media (max-width: 767px) {
  .is-md-visible {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .is-lg-visible {
    display: none !important;
  }
}

@media (max-width: 1199px) {
  .is-xl-visible {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .is-md-hidden {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .is-lg-hidden {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .is-xl-hidden {
    display: none !important;
  }
}

.mb-16 {
  margin-bottom: 1.6rem;
}

.mb-24 {
  margin-bottom: 2.4rem;
}

.mb-32 {
  margin-bottom: 3.2rem;
}

.mb-40 {
  margin-bottom: 4rem;
}

.w-full {
  width: 100%;
}

@keyframes slowMove {
  0% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(3rem, -5rem) scale(1.2);
  }
  66% {
    transform: translate(-2rem, 2rem) scale(0.8);
  }
  100% {
    transform: translate(1rem, -1rem) scale(1);
  }
}
/**
 * Swiper 12.0.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 21, 2025
 */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -ms-flexbox;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.swiper-slide {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  -ms-flex-align: start;
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 120rem;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 120rem;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  -ms-scroll-snap-type: none;
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-order: 9999;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 0.1rem;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 0.1rem;
  height: var(--swiper-centered-offset-after);
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 4.2rem;
  height: 4.2rem;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -2.1rem;
  margin-top: -2.1rem;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 0.4rem solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper-grid > .swiper-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-direction: column;
  flex-direction: column;
}

/* Slide styles end */
.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-fade > .swiper-wrapper > .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-fade > .swiper-wrapper > .swiper-slide-active {
  pointer-events: auto;
}
.swiper-fade > .swiper-wrapper > .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  backface-visibility: hidden;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
 ========================================================================== */
/**
* Remove the margin in all browsers.
*/
body {
  margin: 0;
}

/**
* Render the `main` element consistently in IE.
*/
main {
  display: block;
}

/**
* Correct the font size and margin on `h1` elements within `section` and
* `article` contexts in Chrome, Firefox, and Safari.
*/
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 ========================================================================== */
/**
* 1. Add the correct box sizing in Firefox.
* 2. Show the overflow in Edge and IE.
*/
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
 ========================================================================== */
/**
* Remove the gray background on active links in IE 10.
*/
a {
  background-color: transparent;
}

/**
* 1. Remove the bottom border in Chrome 57-
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
*/
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}

/**
* Add the correct font weight in Chrome, Edge, and Safari.
*/
b,
strong {
  font-weight: 700;
}

/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
* Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}

/**
* Prevent `sub` and `sup` elements from affecting the line height in
* all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
 ========================================================================== */
/**
* Remove the border on images inside links in IE 10.
*/
img {
  border-style: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Forms
 ========================================================================== */
/**
* 1. Change the font styles in all browsers.
* 2. Remove the margin in Firefox and Safari.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
* Show the overflow in IE.
* 1. Show the overflow in Edge.
*/
button,
input {
  /* 1 */
  overflow: visible;
}

/**
* Remove the inheritance of text transform in Edge, Firefox, and IE.
* 1. Remove the inheritance of text transform in Firefox.
*/
button,
select {
  /* 1 */
  text-transform: none;
}

/**
* Correct the inability to style clickable types in iOS and Safari.
*/
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
* Remove the inner border and padding in Firefox.
*/
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
* Restore the focus styles unset by the previous rule.
*/
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 0.1rem dotted ButtonText;
}

/**
* Correct the padding in Firefox.
*/
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
* 1. Correct the text wrapping in Edge and IE.
* 2. Correct the color inheritance from `fieldset` elements in IE.
* 3. Remove the padding so developers are not caught out when they zero out
*    `fieldset` elements in all browsers.
*/
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
* Add the correct vertical alignment in Chrome, Firefox, and Opera.
*/
progress {
  vertical-align: baseline;
}

/**
* Remove the default vertical scrollbar in IE 10+.
*/
textarea {
  overflow: auto;
}

/**
* 1. Add the correct box sizing in IE 10.
* 2. Remove the padding in IE 10.
*/
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
* Correct the cursor style of increment and decrement buttons in Chrome.
*/
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
* 1. Correct the odd appearance in Chrome and Safari.
* 2. Correct the outline style in Safari.
*/
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -0.2rem;
  /* 2 */
}

/**
* Remove the inner padding in Chrome and Safari on macOS.
*/
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
* 1. Correct the inability to style clickable types in iOS and Safari.
* 2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
 ========================================================================== */
/*
* Add the correct display in Edge, IE 10+, and Firefox.
*/
details {
  display: block;
}

/*
* Add the correct display in all browsers.
*/
summary {
  display: list-item;
}

/* Misc
 ========================================================================== */
/**
* Add the correct display in IE 10+.
*/
template {
  display: none;
}

/**
* Add the correct display in IE 10.
*/
[hidden] {
  display: none;
}

/* Defaults
 ========================================================================== */
html,
body {
  height: 100%;
  -webkit-overflow-scrolling: touch;
}

picture {
  display: block;
}

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

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

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

button,
input,
textarea,
select {
  border: none;
  background: none;
  padding: 0;
  font-family: inherit;
}

::-moz-selection {
  color: #fff;
  background: #000;
}

::selection {
  color: #fff;
  background: #000;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
  appearance: none;
}

button {
  cursor: pointer;
}

svg {
  max-width: 100%;
  overflow: unset;
}

mark {
  background: none;
  color: currentColor;
}

a,
button {
  transition: color 0.4s, background 0.4s;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

iframe {
  border: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

section {
  overflow: hidden;
}

figure {
  margin: 0;
}

@font-face {
  font-family: "Cooper Lt BT";
  src: url("../fonts/CooperLtBT-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TT Firs Text";
  src: url("../fonts/TTFirsText-Rg.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TT Firs Text";
  src: url("../fonts/TTFirsText-Md.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TT Firs Text";
  src: url("../fonts/TTFirsText-Bd.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
.ui-btn {
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: top;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  isolation: isolate;
  height: 4.8rem;
  padding: 0 2.1rem;
  border-radius: 10rem;
  font: 400 1.6rem/1 var(--font-secondary);
  text-align: center;
  overflow: hidden;
  transition: 0.2s;
}
.ui-btn::before {
  content: "";
  display: block;
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -10%;
  height: 0;
  background: #fff;
  border-radius: 55% 55% 0 0/42% 42% 0 0;
  z-index: -1;
  transition: height 0.28s cubic-bezier(0.18, 0.8, 0.26, 1);
}
.ui-btn:hover {
  transform: translateY(-0.2rem);
}
.ui-btn:hover::before {
  height: 25%;
}
.ui-btn[hidden] {
  opacity: 0;
  visibility: hidden;
}
.ui-btn.is-milking {
  color: #166c51;
  transition: color 0.4s ease;
}
.ui-btn.is-milking::before {
  height: 140%;
  transition: height 0.4s cubic-bezier(0.2, 1.4, 0.4, 1);
}
.ui-btn.is-loading {
  color: transparent;
}
.ui-btn.is-loading::before {
  height: 140%;
}
.ui-btn.is-loading::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.8rem;
  height: 2.8rem;
  margin: -1.4rem 0 0 -1.4rem;
  border: 0.2rem solid #9a2584;
  border-right-color: transparent;
  animation: spin 0.4s infinite linear;
  border-radius: 100%;
}
.ui-btn--fullwidth {
  width: 100%;
}
.ui-btn--light {
  background: #ffebdc;
  color: #166c51;
}
.ui-btn--purple {
  background: #9a2584;
  color: #fff;
  box-shadow: 0px 1.6rem 3.4rem rgba(214, 37, 160, 0.24);
}
.ui-btn--yellow {
  background: #f8d172;
  box-shadow: 0px 1.4rem 3.2rem rgba(154, 37, 132, 0.18);
  color: #0c291c;
}
.ui-btn--outline {
  border: 0.1rem solid #38332e;
  color: #38332e;
}
@media (min-width: 1200px) {
  .ui-btn {
    height: 7.2rem;
    font-size: 2.4rem;
    letter-spacing: -0.36px;
    padding: 0 4rem;
  }
}

.ui-datetime {
  display: grid;
  grid-template-columns: 1fr;
  background: #f8d172;
  color: #0c291c;
  border-radius: 2rem;
  padding: 1.4rem 1.8rem;
  gap: 1.9rem;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.72px;
  text-transform: uppercase;
}
.ui-datetime > li:last-child {
  font-size: 1.6rem;
  letter-spacing: 0;
  text-transform: none;
}
@media (min-width: 1200px) {
  .ui-datetime {
    grid-template-columns: 1fr auto;
    -ms-flex-align: center;
    align-items: center;
    padding: 2.2rem 1.8rem;
    border-radius: 10rem;
  }
}

.ui-field {
  background: #ffebdc;
  border: 0.2rem solid #ffebdc;
  border-radius: 1rem;
  padding: 1.4rem 1.8rem 0.8rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  cursor: pointer;
  transition: 0.4s;
}
.ui-field.has-error, .ui-field:has(.is-error) {
  border-color: #c52b17;
}
@media (min-width: 1200px) {
  .ui-field {
    border-radius: 2.5rem;
    padding: 1.6rem 1.8rem;
    gap: 1rem;
  }
}

.ui-label {
  display: block;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.72px;
  color: #0c291c;
}
@media (min-width: 1200px) {
  .ui-label {
    font-size: 1.2rem;
  }
}

.ui-input, .ui-textarea {
  display: block;
  width: 100%;
  height: 2.1rem;
  border: none;
  padding: 0;
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 400;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.ui-input:-ms-input-placeholder, .ui-textarea:-ms-input-placeholder {
  color: #858585;
  font-size: 1rem;
}
.ui-input::placeholder, .ui-textarea::placeholder {
  color: #858585;
  font-size: 1rem;
}
.ui-input[type=url]:-ms-input-placeholder, [type=url].ui-textarea:-ms-input-placeholder {
  font-size: 0.8rem;
}
.ui-input[type=url]::placeholder, [type=url].ui-textarea::placeholder {
  font-size: 0.8rem;
}
@media (min-width: 1200px) {
  .ui-input, .ui-textarea {
    font-size: 1.6rem;
  }
  .ui-input:-ms-input-placeholder, .ui-textarea:-ms-input-placeholder {
    font-size: 1.6rem;
  }
  .ui-input::placeholder, .ui-textarea::placeholder {
    font-size: 1.6rem;
  }
  .ui-input[type=url]:-ms-input-placeholder, [type=url].ui-textarea:-ms-input-placeholder {
    font-size: 1.2rem;
  }
  .ui-input[type=url]::placeholder, [type=url].ui-textarea::placeholder {
    font-size: 1.2rem;
  }
}

.ui-textarea {
  height: 6.4rem;
  resize: vertical;
}

.ui-counter {
  display: block;
  margin: 0;
  font-size: 1.292rem;
  line-height: 1;
  font-weight: 400;
  text-align: right;
  color: #858585;
}
.ui-counter b {
  font-weight: 700;
}

.ui-check {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.6rem;
  position: relative;
  cursor: pointer;
}
.ui-check.has-error .ui-check__checkbox, .ui-check:has(.is-error) .ui-check__checkbox {
  border-color: #c52b17;
  box-shadow: inset 0 0 0 0.1rem #c52b17;
}
.ui-check:has(:checked) .ui-check__checkbox {
  background: #166c51;
  border-color: #166c51;
}
.ui-check:has(:checked) .ui-check__checkbox::after {
  opacity: 1;
}
@media (min-width: 1200px) {
  .ui-check {
    padding: 0 0 0 0.8rem;
  }
}

.ui-check__input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}

.ui-check__checkbox {
  display: block;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  border: 0.1rem solid #858585;
  border-radius: 0.4rem;
  position: relative;
  width: 2.4rem;
  height: 2.4rem;
  transition: 0.4s;
}
.ui-check__checkbox::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.33325 7.90474L6.72719 11.3333L12.6666 5.33331' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  transition: opacity 0.4s;
  opacity: 0;
}

.ui-check__text {
  display: block;
  -ms-flex: 1;
  flex: 1;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 400;
  color: #858585;
}
.ui-check__text a {
  text-decoration: underline;
  color: #858585;
}
.ui-check__text a:hover {
  text-decoration: underline;
  color: #9a2584;
}
@media (min-width: 1200px) {
  .ui-check__text {
    font-size: 1.4rem;
  }
}

.ui-validate,
.ui-errors {
  display: none;
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 500;
  color: #9a2584;
}
@media (min-width: 1200px) {
  .ui-validate,
  .ui-errors {
    padding: 0 0.8rem;
    font-size: 1.3rem;
  }
}

form:has(.is-error) .ui-validate,
form:has(.is-error) .ui-errors {
  display: block;
}

* {
  outline: none;
  box-sizing: border-box;
  min-width: 0;
}
*:before, *:after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html,
body {
  scrollbar-gutter: stable;
  overscroll-behavior: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  scroll-behavior: smooth;
  scroll-padding-top: 5.8rem;
}
@media (min-width: 1200px) {
  html,
  body {
    scroll-padding-top: 8.4rem;
  }
}

html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
@media (max-width: 390px) {
  html {
    font-size: 2.5641025641vw;
  }
}
@media (min-width: 1200px) and (max-width: 1920px) {
  html {
    font-size: 0.5208333333vw;
  }
}

body {
  background: var(--body-bg);
  color: var(--body-color);
  font: 400 1.6rem/1.5 var(--font-primary);
}

.app {
  position: relative;
  min-height: 100%;
  min-width: 32rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}

.container-fluid {
  margin: 0 auto;
  padding: 0 1.8rem;
  width: 100%;
}
@media (min-width: 1200px) {
  .container-fluid {
    padding: 0 3.5rem;
    max-width: 151rem;
  }
}

.is-sticky .header {
  box-shadow: 0px 2.83664rem 5.45507rem rgba(0, 44, 32, 0.23);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 5.8rem;
  background: #166c51;
  color: #ffeed9;
  transition: box-shadow 0.4s;
}
.header > .container-fluid {
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 192rem;
}
@media (min-width: 1200px) {
  .header {
    height: 8.4rem;
  }
  .header > .container-fluid {
    display: grid;
    grid-template-columns: 3fr 6fr 3fr;
  }
}

.header__logo {
  position: relative;
  margin: 0;
  width: 17.2rem;
  display: block;
  color: #ffeed9;
}
.header__logo img,
.header__logo svg {
  display: block;
  width: 100%;
  height: auto;
}
@media (min-width: 1200px) {
  .header__logo {
    width: 32.6rem;
  }
}

.header__nav {
  display: none;
}
@media (min-width: 1200px) {
  .header__nav {
    display: block;
    -ms-flex: 1;
    flex: 1;
  }
}

@media (min-width: 1200px) {
  .header__nav-menu {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1.6rem;
    line-height: 1.2;
    font-weight: 500;
  }
  .header__nav-menu a {
    display: -ms-inline-flexbox;
    display: inline-flex;
    vertical-align: top;
    -ms-flex-align: center;
    align-items: center;
    padding: 1.5rem;
    text-decoration: none;
    color: #ffebdc;
    transition: 0.2s;
    opacity: 0.82;
    border-radius: 10rem;
  }
  .header__nav-menu a:hover {
    text-decoration: none;
    color: #ffebdc;
    opacity: 1;
    transform: translateY(-0.2rem);
  }
}

.header__action {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.header__action .ui-btn {
  height: 3.6rem;
  font-size: 1.6rem;
  padding: 0 1.3rem;
}
@media (min-width: 1200px) {
  .header__action {
    margin: 0 0 0 auto;
  }
  .header__action .ui-btn {
    min-width: 15rem;
    height: 4.6rem;
    padding: 0 2.2rem;
    font-size: 1.8rem;
    letter-spacing: -0.26px;
  }
}

.main {
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.footer {
  background: #166c51;
  padding: 1.6rem 0;
  font-size: 0.87rem;
  line-height: 1.2;
  font-weight: 400;
  color: rgba(255, 235, 220, 0.65);
}
.footer > .container-fluid {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.2rem;
}
@media (min-width: 1200px) {
  .footer {
    padding: 3rem 0;
    font-size: 1.2rem;
  }
}

.footer__logo {
  display: block;
  margin: 0 auto 0 0;
  width: 14.5rem;
  color: #ffebdc;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.footer__logo img,
.footer__logo svg {
  display: block;
  width: 100%;
  height: auto;
}
@media (min-width: 1200px) {
  .footer__logo {
    width: 22rem;
  }
}

.footer__scrolltop {
  display: none;
}
@media (min-width: 1200px) {
  .footer__scrolltop {
    display: -ms-inline-flexbox;
    display: inline-flex;
    vertical-align: top;
    -ms-flex-align: center;
    align-items: center;
    color: #ffebdc;
  }
  .footer__scrolltop:hover {
    color: #ffebdc;
  }
}

.footer__copyright {
  display: block;
  margin: 0;
  text-align: right;
}
.footer__copyright a {
  text-decoration: underline;
  color: rgba(255, 235, 220, 0.65);
  transition: color 0.4s;
}
.footer__copyright a:hover {
  text-decoration: underline;
  color: #ffebdc;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  pointer-events: none;
  color: #ffebdc;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.loader::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 150vmax #166c51;
  transition: width 1s ease-in-out, height 1s ease-in-out, box-shadow 1s ease-in-out;
  z-index: -1;
}

.loader svg {
  display: block;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 28.6rem;
  height: auto;
  transition: transform 0.6s ease, opacity 0.4s ease;
}

.is-loaded .loader {
  visibility: hidden;
  transition: visibility 0s linear 1.4s;
}

.is-loaded .loader::before {
  width: 300vmax;
  height: 300vmax;
  box-shadow: 0 0 0 0 #166c51;
  transition-delay: 0.4s;
}

.is-loaded .loader svg {
  opacity: 0;
  transition-delay: 0.4s;
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 10.6rem;
  height: 10.6rem;
  margin: -5.3rem 0 0 -5.3rem;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 2000;
  will-change: left, top, transform;
  transform: rotate(-30deg);
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.cursor svg {
  display: block;
  width: 100%;
  height: 100%;
  transition: transform 0.25s ease;
  transform-origin: center;
  position: relative;
  top: 33.333%;
  left: 0;
}
.cursor.is-active svg {
  transform: scale(0.85);
}
.cursor.is-hidden {
  opacity: 0;
  visibility: hidden;
}
.cursor [data-cap] {
  transform-box: fill-box;
  transform-origin: center;
}
.cursor.is-uncapping [data-cap] {
  animation: cursorUncap 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes cursorUncap {
  0% {
    transform: rotate(0deg) translate(0, 0);
  }
  30% {
    transform: rotate(45deg) translate(0.4rem, -2.5rem);
  }
  70% {
    transform: rotate(45deg) translate(0.4rem, -2.5rem);
  }
  100% {
    transform: rotate(0deg) translate(0, 0);
  }
}
@media (hover: hover) {
  * {
    cursor: none !important;
  }
}
@media (hover: none) {
  .cursor {
    display: none !important;
  }
}
.cookies {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 500;
  bottom: 3.5rem;
  transition: 0.4s;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
}
.cookies.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0%);
}
@media (max-width: 1199px) {
  .cookies {
    bottom: 1.8rem;
  }
}

.cookies__grid {
  background: #ffebdc;
  box-shadow: 0px 2.46076rem 6.28861rem rgba(0, 44, 32, 0.5);
  border-radius: 3.28101rem;
  padding: 2rem 2rem 2rem 4rem;
  position: relative;
  display: grid;
  -ms-flex-align: center;
  align-items: center;
  grid-template-columns: 387fr 687fr auto;
  gap: 2rem;
  overflow: hidden auto;
  max-height: calc(100svh - 5.8rem - 3.6rem);
}
@media (max-width: 1199px) {
  .cookies__grid {
    grid-template-columns: 1fr;
    padding: 2rem 4rem 2rem 2rem;
    border-radius: 2rem;
  }
}

.cookies__close {
  display: block;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  position: absolute;
  top: 2.8rem;
  right: 2.5rem;
  z-index: 100;
  background: #c7e2bc;
  color: #166c51;
  transition: 0.4s;
}
.cookies__close::before {
  content: "";
  display: block;
  position: absolute;
  inset: -0.8rem;
  border-radius: inherit;
}
.cookies__close svg {
  display: block;
  width: 100%;
  height: 100%;
}
.cookies__close:hover {
  background: #166c51;
  color: #c7e2bc;
}
@media (max-width: 1199px) {
  .cookies__close {
    top: 2rem;
    right: 2rem;
  }
}

.cookies__image {
  max-width: 38.7rem;
}
.cookies__image img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 1199px) {
  .cookies__image {
    display: none;
  }
}

.cookies__desc {
  font-size: 1.48341rem;
  line-height: 1.9rem;
  font-weight: 400;
  color: #166c51;
}
.cookies__desc strong {
  display: block;
  font-size: 2.24887rem;
  line-height: 2.9rem;
  font-weight: 500;
  color: #166c51;
}
.cookies__desc p {
  margin: 0 0 2.4rem;
}
.cookies__desc p:last-child {
  margin-bottom: 0;
}
.cookies__desc a {
  color: #166c51;
  border-bottom: 0.1rem solid currentColor;
  text-decoration: none;
}
.cookies__desc a:hover {
  color: #9a2584;
  text-decoration: none;
}

.cookies__action {
  -ms-flex-item-align: end;
  align-self: end;
}
.cookies__action .ui-btn {
  height: 5rem;
  font: 500 1.8rem/1.2 var(--font-primary);
  text-transform: uppercase;
  gap: 1.6rem;
  padding: 0 2rem;
}

.hero {
  background: #0c291c;
  padding: 5.8rem 0 0 0;
  overflow: clip;
}
@media (min-width: 1200px) {
  .hero {
    padding: 8.4rem 0 0 0;
  }
}

.hero__banners .swiper-slide-active .hero__bubble {
  transform: translate3d(0, 0, 0) scale(1);
  opacity: 1;
}

.hero__image {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 390/487;
}
.hero__image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .hero__image {
    aspect-ratio: 1920/1090;
  }
}

.hero__mobile {
  display: block;
}
@media (min-width: 768px) {
  .hero__mobile {
    display: none;
  }
}

.hero__desktop {
  display: none;
}
@media (min-width: 768px) {
  .hero__desktop {
    display: block;
  }
}

.hero__bubble {
  position: absolute;
  z-index: 50;
  display: block;
  pointer-events: none;
  transform: translate3d(0, 4rem, 0) scale(0.8);
  transform-origin: bottom center;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hero__bubble:nth-child(1) {
  transition-delay: 0.15s;
}
.hero__bubble:nth-child(2) {
  transition-delay: 0.3s;
}
.hero__bubble:nth-child(3) {
  transition-delay: 0.45s;
}
.hero__bubble:nth-child(4) {
  transition-delay: 0.6s;
}
.hero__bubble img,
.hero__bubble svg {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .hero__bubble--01 {
    bottom: 18%;
    left: 7%;
    width: 30%;
  }
  .hero__bubble--02 {
    width: 32%;
    left: 48%;
    bottom: 3%;
  }
  .hero__bubble--03 {
    width: 28%;
    left: 58%;
    bottom: 25%;
  }
}
@media (min-width: 768px) {
  .hero__bubble--01 {
    width: 17%;
    left: 14%;
    bottom: 36%;
  }
  .hero__bubble--02 {
    width: 14%;
    left: 36%;
    bottom: 22%;
  }
  .hero__bubble--03 {
    width: 14%;
    left: 67%;
    bottom: 31%;
  }
  .hero__bubble--04 {
    width: 14%;
    left: 84%;
    bottom: 35%;
  }
}

.hero__stripe {
  position: sticky;
  bottom: 0;
  z-index: 100;
  background: #f8d172;
  color: #166c51;
  height: 3.3rem;
  font-size: 1.08rem;
  line-height: 1.2;
  font-weight: 700;
}
.hero__stripe .swiper,
.hero__stripe .swiper-wrapper,
.hero__stripe .swiper-slide {
  height: 100%;
}
.hero__stripe .swiper-wrapper {
  transition-timing-function: linear;
}
.hero__stripe .swiper-slide {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  width: auto;
  padding: 0 1.2rem;
  position: relative;
}
.hero__stripe .swiper-slide::after {
  content: "✦";
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: -1.2rem;
  width: 2.4rem;
  height: 100%;
}
@media (min-width: 1200px) {
  .hero__stripe {
    height: 4.9rem;
    font-size: 1.6rem;
  }
  .hero__stripe .swiper-slide {
    padding: 0 5.6rem;
  }
  .hero__stripe .swiper-slide::after {
    width: 11.2rem;
    right: -5.6rem;
    font-size: 2.358rem;
  }
}

.about {
  padding: 1.7rem 0 3.8rem;
  background: #ffebdc;
}
@media (min-width: 1200px) {
  .about {
    padding: 18.2rem 0 24.6rem;
  }
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5.5rem;
}
@media (min-width: 768px) {
  .about__grid {
    display: grid;
    -ms-flex-align: center;
    align-items: center;
    grid-template-columns: 1fr 32rem;
    gap: 5.5rem;
  }
}
@media (min-width: 1200px) {
  .about__grid {
    display: grid;
    -ms-flex-align: center;
    align-items: center;
    grid-template-columns: 1fr auto;
    gap: 10.4rem;
  }
}

.about__main {
  position: relative;
  z-index: 2;
}

.about__aside {
  position: relative;
  z-index: 1;
}

.about__badge {
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: top;
  -ms-flex-align: center;
  align-items: center;
  height: 2.8rem;
  padding: 0 1.2rem;
  margin: 0 0 1.6rem;
  border-radius: 10rem;
  background: #166c51;
  color: #ffebdc;
  font-size: 0.9rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.36px;
  text-transform: uppercase;
}
@media (min-width: 1200px) {
  .about__badge {
    height: 3.3rem;
    padding: 0 2rem;
    font-size: 1.2rem;
    letter-spacing: 0.48px;
  }
}

.about__title {
  display: block;
  margin: 0 0 1.1rem;
  font: 400 4.8rem/1 var(--font-secondary);
  letter-spacing: -0.133rem;
  color: #166c51;
}
.about__title mark {
  color: #9a2584;
}
@media (min-width: 1200px) {
  .about__title {
    font-size: 11rem;
    line-height: 0.95;
    letter-spacing: -0.522rem;
    margin: 0 0 4.5rem;
  }
}

.about__list {
  margin: 0 0 2.6rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.9rem;
  font-size: 1.6rem;
  line-height: 1.1;
  font-weight: 400;
}
.about__list > li {
  background: rgba(255, 255, 255, 0.48);
  color: #0c291c;
  padding: 1.2rem 1.4rem;
  border-radius: 1.6rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: 7.6rem;
}
@media (min-width: 768px) {
  .about__list {
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
@media (min-width: 1200px) {
  .about__list {
    margin: 0 0 1.1rem -3.8rem;
    -ms-flex-align: start;
    align-items: flex-start;
    font-size: 2.4rem;
    line-height: 1.3;
    font-weight: 400;
    letter-spacing: -0.48px;
    max-width: 80rem;
    gap: 1.1rem;
  }
  .about__list > li {
    padding: 1.2rem 3.8rem;
    min-height: 7.3rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 4.2rem;
  }
  .about__list > li:nth-child(3) {
    padding-top: 2.5rem;
    padding-bottom: 1.8rem;
  }
}

.about__btn {
  width: 100%;
}
@media (min-width: 1200px) {
  .about__btn {
    max-width: 78.5rem;
    font-size: 2.5rem;
    letter-spacing: -0.36px;
  }
}

.about__note {
  position: absolute;
  bottom: 100%;
  left: 50%;
  z-index: 50;
  width: 14.5rem;
  margin: 0 0 -4rem 2rem;
}
@media (min-width: 1200px) {
  .about__note {
    width: 29rem;
    margin: 0 0 -5rem 11rem;
  }
}

.about__note-content {
  background: #ffffff;
  color: #0c291c;
  box-shadow: 0px 0.8rem 1.8rem rgba(12, 41, 28, 0.09);
  border-radius: 1.2rem;
  transform: rotate(17deg);
  padding: 0.8rem 1.8rem;
  font-size: 1rem;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  text-wrap: balance;
}
.about__note-content p {
  margin: 0;
}
@media (min-width: 1200px) {
  .about__note-content {
    font-size: 1.369rem;
    padding: 1.4rem 1.2rem 1rem 2.7rem;
    transform: rotate(18.94deg);
    box-shadow: 0px 0.6496rem 1.94879rem rgba(20, 74, 57, 0.08);
    text-wrap: unset;
  }
}

@keyframes prev {}
@keyframes next {
  0% {
    transform: rotate(-9deg);
  }
  100% {
    transform: rotate(9deg);
  }
}
.about__swiper {
  position: relative;
  left: -0.6rem;
  width: 20.2rem;
  margin: 0 auto;
}
.about__swiper .swiper {
  transform: rotate(3deg);
  overflow: unset;
}
.about__swiper .swiper-slide > * {
  transition: opacity 0.4s, transform 0.4s;
}
.about__swiper .swiper-slide-prev > * {
  transform: rotate(-9deg);
}
.about__swiper .swiper-slide-next > * {
  transform: rotate(9deg);
}
.about__swiper .swiper-slide:not(.swiper-slide-prev, .swiper-slide-next, .swiper-slide-active) > * {
  opacity: 0;
}
@media (min-width: 1200px) {
  .about__swiper {
    position: relative;
    top: 2.5rem;
    left: 6.5rem;
    width: 43.7rem;
    margin: 0;
  }
  .about__swiper::before, .about__swiper::after {
    border-radius: 2.2rem;
  }
  .about__swiper::before {
    width: 42.4rem;
    aspect-ratio: 424/605;
    top: 3.5rem;
    left: -4.5rem;
  }
  .about__swiper::after {
    width: 35.2rem;
    aspect-ratio: 352/502;
    top: 10.6rem;
    right: -1.7rem;
  }
}

.about__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 202/288;
  border-radius: 1.8rem;
  overflow: hidden;
  box-shadow: 0px 3.47921rem 10.1477rem rgba(14, 58, 45, 0.16);
  will-change: transform;
}
.about__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 1200px) {
  .about__image {
    border-radius: 3.6rem;
  }
}

.ideas {
  background: #166c51 url(../images/ideas/bg.svg) 50% 65% no-repeat;
  background-size: cover;
  color: #ffebdc;
  padding: 3.7rem 0 1.5rem;
}
@media (min-width: 1200px) {
  .ideas {
    padding: 11rem 0 11.5rem;
  }
}

@media (min-width: 768px) {
  .ideas__grid {
    display: grid;
    grid-template-columns: 6fr 6fr;
    gap: 5.5rem;
    -ms-flex-align: end;
    align-items: end;
    margin: 0 0 5.5rem;
  }
}
@media (min-width: 1200px) {
  .ideas__grid {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 9rem 3rem;
    -ms-flex-align: end;
    align-items: end;
    margin: 0 0 5.5rem;
  }
}

.ideas__badge {
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: top;
  -ms-flex-align: center;
  align-items: center;
  height: 2.8rem;
  padding: 0 1.2rem;
  margin: 0 0 0.8rem;
  border-radius: 10rem;
  background: #ffebdc;
  color: #166c51;
  font-size: 0.9rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.36px;
  text-transform: uppercase;
}
@media (min-width: 1200px) {
  .ideas__badge {
    height: 3.3rem;
    font-size: 1.2rem;
    padding: 0 1.6rem;
    margin: 0 0 1.8rem;
  }
}

.ideas__title {
  display: block;
  margin: 0 0 1.5rem;
  font: 400 4.8rem/0.965 var(--font-secondary);
  letter-spacing: -0.0127em;
  color: #ffebdc;
}
.ideas__title mark {
  color: #f8d172;
}
@media (min-width: 768px) {
  .ideas__title {
    margin: 0;
  }
}
@media (min-width: 1200px) {
  .ideas__title {
    font-size: 11rem;
    letter-spacing: -0.522rem;
    margin: 0;
  }
}

.ideas__text {
  margin: 0 0 2.5rem;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 400;
}
.ideas__text p {
  margin: 0;
}
.ideas__text br {
  display: none;
}
@media (min-width: 768px) {
  .ideas__text {
    margin: 0;
  }
}
@media (min-width: 1200px) {
  .ideas__text {
    font-size: 2.4rem;
    margin: 0;
    position: relative;
    top: 1.5rem;
    left: 7rem;
    width: 67rem;
  }
}
.ideas__swiper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1rem;
}
.ideas__swiper .swiper-thumbs {
  overflow: unset;
}
.ideas__swiper .swiper-thumbs > .swiper-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.ideas__swiper .swiper-thumbs > .swiper-wrapper > .swiper-slide {
  width: auto;
  height: auto;
}
.ideas__swiper .swiper-slides {
  overflow: unset;
  margin: 0 -0.6rem;
}
.ideas__swiper .swiper-slides > .swiper-wrapper > .swiper-slide {
  padding: 0 0.6rem;
  height: auto;
}
.ideas__swiper .swiper-slides:not(.swiper-initialized) > .swiper-wrapper > .swiper-slide:not(:first-child) {
  opacity: 0;
}
@media (min-width: 1200px) {
  .ideas__swiper {
    max-width: 87rem;
    margin: 0 auto;
    position: relative;
    left: 2.5rem;
    gap: 0;
  }
  .ideas__swiper .swiper-thumbs {
    position: absolute;
    inset: 0;
    z-index: 2;
    margin: 0;
    pointer-events: none;
  }
  .ideas__swiper .swiper-thumbs > .swiper-wrapper {
    position: static;
    transform: none !important;
  }
  .ideas__swiper .swiper-thumbs > .swiper-wrapper > .swiper-slide {
    padding: 0;
    position: absolute;
    z-index: 100;
    pointer-events: auto;
  }
  .ideas__swiper .swiper-thumbs > .swiper-wrapper > .swiper-slide:nth-child(1) {
    top: 4%;
    right: 105%;
  }
  .ideas__swiper .swiper-thumbs > .swiper-wrapper > .swiper-slide:nth-child(1) .ideas__thumb {
    height: 7.7rem;
    font-size: 2.89rem;
  }
  .ideas__swiper .swiper-thumbs > .swiper-wrapper > .swiper-slide:nth-child(2) {
    top: 2%;
    left: 105%;
    transform: rotate(7deg) translate(-75%, 0);
  }
  .ideas__swiper .swiper-thumbs > .swiper-wrapper > .swiper-slide:nth-child(3) {
    top: 38%;
    right: 115%;
    transform: rotate(-6deg);
  }
  .ideas__swiper .swiper-thumbs > .swiper-wrapper > .swiper-slide:nth-child(4) {
    top: 74%;
    right: 102%;
    transform: rotate(5deg);
  }
  .ideas__swiper .swiper-thumbs > .swiper-wrapper > .swiper-slide:nth-child(5) {
    top: 34%;
    left: 107%;
    transform: rotate(11.31deg);
  }
  .ideas__swiper .swiper-thumbs > .swiper-wrapper > .swiper-slide:nth-child(6) {
    top: 68%;
    left: 104%;
    transform: rotate(-4deg);
  }
  .ideas__swiper .swiper-thumbs > .swiper-wrapper > .swiper-slide:nth-child(7) {
    top: 95%;
    left: 93%;
    transform: rotate(6deg);
  }
  .ideas__swiper .swiper-slides {
    position: relative;
    z-index: 1;
  }
}

.ideas__thumb {
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: top;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 1.5rem;
  height: 3.6rem;
  border-radius: 10rem;
  background: #ffebdc;
  color: #0c291c;
  font: 400 1.6rem/1 var(--font-secondary);
}
@media (min-width: 1200px) {
  .ideas__thumb {
    height: 7.1rem;
    background: #ffebdc;
    box-shadow: 0px 1rem 0px rgba(2, 50, 36, 0.18);
    border-radius: 99.9rem;
    font-size: 2.8rem;
    padding: 0 2.7rem;
  }
}

.swiper-slide-thumb-active .ideas__thumb {
  background: #f8d172;
  color: #0c291c;
  box-shadow: 0px 0.4rem 0px rgba(2, 50, 36, 0.18);
}
@media (min-width: 1200px) {
  .swiper-slide-thumb-active .ideas__thumb {
    box-shadow: 0px 1rem 0px rgba(2, 50, 36, 0.18);
  }
}

.ideas__slide {
  overflow: hidden;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.6rem;
  height: 100%;
}
@media (min-width: 1200px) {
  .ideas__slide {
    border-radius: 5.4rem;
    background: #ffffff;
    color: #166c51;
    box-shadow: 0px 1.8rem 4.6rem rgba(0, 44, 32, 0.24);
    gap: 0;
  }
}

.ideas__slide-image {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  aspect-ratio: 356/216;
  background: #ffffff;
  box-shadow: 0px 1.22759rem 3.68276rem rgba(0, 44, 32, 0.32);
  border-radius: 2.20966rem;
  overflow: hidden;
}
.ideas__slide-image img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
@media (min-width: 1200px) {
  .ideas__slide-image {
    aspect-ratio: 870/795;
  }
  .ideas__slide-image img {
    height: calc(100% - 16.5rem);
  }
}

.ideas__slide-facts {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.5rem;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 400;
}
.ideas__slide-facts b {
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 700;
  color: #166c51;
  border-right: 0.1rem solid #166c51;
  padding: 0 1.7rem 0 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: 4.4rem;
}
.ideas__slide-facts > li {
  background: #fff;
  color: #0c291c;
  border-radius: 1.7rem;
  padding: 0.8rem 1.8rem;
  display: grid;
  -ms-flex-align: center;
  align-items: center;
  grid-template-columns: subgrid;
  grid-column: 1/-1;
  gap: 1.7rem;
  min-height: 6.2rem;
}
@media (min-width: 768px) {
  .ideas__slide-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
  .ideas__slide-facts b {
    margin: 0 0 0.8rem;
    padding: 0;
    border: none;
    min-height: auto;
  }
  .ideas__slide-facts > li {
    grid-column: unset;
    padding: 1.6rem 1.8rem 4rem;
    display: block;
  }
}
@media (min-width: 1200px) {
  .ideas__slide-facts {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    background: #fff;
    font-size: 1.6rem;
    padding: 2.1rem 0;
    border-radius: 3rem 3rem 0px 0px;
    min-height: 19.6rem;
    overflow: hidden;
    text-wrap: balance;
  }
  .ideas__slide-facts b {
    font-size: 1.6rem;
    margin: 0 0 1.3rem;
  }
  .ideas__slide-facts > li {
    padding: 1rem 1rem 1rem 4.2rem;
    position: relative;
    background: none;
    border-right: 0.1rem solid #e6ded6;
    border-radius: 0;
  }
  .ideas__slide-facts > li:last-child {
    border-right: none;
  }
  .ideas__slide-facts > li::before {
    content: "";
    display: block;
    position: absolute;
    inset: -10rem 0;
    z-index: -1;
    background: #c7e2bc;
    transition: opacity 0.4s;
    opacity: 0;
  }
  .ideas__slide-facts > li:hover::before {
    opacity: 0.5;
  }
  .ideas__slide-facts > li:nth-child(3) {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

.wait {
  background: #c7e2bc;
  padding: 5rem 0;
  overflow: unset;
}
@media (min-width: 1200px) {
  .wait {
    padding: 11rem 0 16.5rem;
  }
}

.wait__badge {
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: top;
  -ms-flex-align: center;
  align-items: center;
  height: 2.8rem;
  padding: 0 1.2rem;
  margin: 0 0 1.2rem;
  border-radius: 10rem;
  background: #166c51;
  color: #ffebdc;
  font-size: 0.9rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.36px;
  text-transform: uppercase;
}
@media (min-width: 1200px) {
  .wait__badge {
    height: 3.3rem;
    font-size: 1.2rem;
    padding: 0 1.6rem;
    letter-spacing: 0.48px;
    margin: 0 0 2rem;
  }
}

.wait__title {
  display: block;
  margin: 0 0 1.5rem 0;
  font: 400 4.8rem/0.9 var(--font-secondary);
  letter-spacing: -0.123rem;
  color: #166c51;
}
.wait__title mark {
  color: #9a2584;
  display: block;
}
@media (min-width: 1200px) {
  .wait__title {
    font-size: 11rem;
    letter-spacing: -0.1rem;
    margin: 0 -2.5rem 4.6rem 0;
  }
}

.wait__text {
  margin: 0 0 2.5rem;
  font-size: 1.6rem;
  line-height: 1.1;
  font-weight: 400;
  color: #0c291c;
}
.wait__text p {
  margin: 0;
}
.wait__text a {
  text-decoration: underline;
  color: #0c291c;
}
.wait__text a:hover {
  text-decoration: underline;
  color: #0c291c;
}
@media (min-width: 1200px) {
  .wait__text {
    font-size: 2.4rem;
    margin: 0 0 4.6rem;
  }
}

.wait__swiper {
  margin: 0 0 6.5rem;
}
.wait__swiper .swiper {
  margin: 0 -0.6rem;
  overflow: unset;
}
.wait__swiper .swiper-slide {
  padding: 0 0.6rem;
  -ms-flex: 1;
  flex: 1;
  min-width: 33.2rem;
  width: auto;
  height: auto;
}
.wait__swiper .swiper-slide:nth-child(3n+1) .wait__card {
  background: #ffebdc;
  color: #0c291c;
}
.wait__swiper .swiper-slide:nth-child(3n+2) .wait__card {
  background: #f8d172;
  color: #0c291c;
}
.wait__swiper .swiper-slide:nth-child(3n+3) .wait__card {
  background: #9a2584;
  color: #fff;
}
.wait__swiper .swiper-slide:nth-child(3n+3) .wait__card-number {
  background: #ffebdc;
  color: #9a2584;
}
@media (min-width: 1200px) {
  .wait__swiper {
    margin: 0 0 14.2rem;
  }
  .wait__swiper .swiper {
    margin: 0 -0.9rem;
  }
  .wait__swiper .swiper-slide {
    padding: 0 0.9rem;
  }
}

.wait__card {
  background: #ffebdc;
  color: #0c291c;
  box-shadow: 0px 2.2rem 2.4rem rgba(105, 60, 41, 0.08);
  border-radius: 2.4rem;
  padding: 2.2rem;
  height: 100%;
  min-height: 36rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media (min-width: 1200px) {
  .wait__card {
    padding: 3.2rem;
    box-shadow: 0px 2.2rem 4.5rem rgba(105, 60, 41, 0.08);
    border-radius: 3.4rem;
  }
}

.wait__card-number {
  margin: 0 0 1.8rem;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: top;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 4.8rem;
  height: 3.5rem;
  border-radius: 10rem;
  background: #166c51;
  color: #ffebdc;
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 1200px) {
  .wait__card-number {
    width: 5rem;
    height: 3.8rem;
    font-size: 1.2rem;
    margin: 0 0 2.5rem;
  }
}

.wait__card-title {
  display: block;
  margin: 0 0 3rem;
  font: 400 3.1rem/1.05 var(--font-secondary);
  letter-spacing: -0.34px;
}
@media (min-width: 1200px) {
  .wait__card-title {
    font-size: 4rem;
    line-height: 1;
    letter-spacing: 0;
    margin: 0 0 2.4rem;
  }
}

.wait__card-text {
  display: block;
  margin: 0 0 2rem;
  font-size: 1.6rem;
  line-height: 1.1;
  font-weight: 400;
  -ms-flex: 1;
  flex: 1;
}
@media (min-width: 1200px) {
  .wait__card-text {
    font-size: 2.4rem;
    margin: 0 -1.6rem 2.5rem 0;
  }
}

.wait__card-mark {
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: top;
  -ms-flex-align: center;
  align-items: center;
  min-height: 3.9rem;
  background: #fff;
  color: #0c291c;
  border-radius: 10rem;
  padding: 0.4rem 1.2rem;
  font-size: 1.1rem;
  line-height: 1.2;
  font-weight: 700;
  transform: rotate(-2deg);
}
@media (min-width: 1200px) {
  .wait__card-mark {
    min-height: 4.7rem;
    font-size: 1.6rem;
    padding: 0.4rem 1.6rem;
  }
}

.wait__stripe {
  position: relative;
  left: 50%;
  z-index: 50;
  width: 120vw;
  margin: 0 0 -5.5rem -60vw;
  height: 5.4rem;
  background: #166c51;
  color: #ffebdc;
  font: 400 2.2rem/1.2 var(--font-secondary);
  text-transform: uppercase;
  white-space: nowrap;
  transform: rotate(-1deg);
}
.wait__stripe .swiper {
  height: 100%;
}
.wait__stripe .swiper-wrapper {
  transition-timing-function: linear;
}
.wait__stripe .swiper-slide {
  padding: 0 1.2rem;
  position: relative;
  width: auto;
  height: auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
.wait__stripe .swiper-slide::after {
  content: "✦";
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 2.4rem;
  height: 100%;
  position: absolute;
  top: 0;
  right: -1.2rem;
  color: #f8d172;
}
@media (min-width: 1200px) {
  .wait__stripe {
    height: 9.9rem;
    font-size: 4.14rem;
  }
  .wait__stripe .swiper-slide {
    padding: 0 4.8rem;
  }
  .wait__stripe .swiper-slide::after {
    width: 9.6rem;
    right: -4.8rem;
    font-size: 4.24rem;
  }
}

.feedback {
  padding: 5rem 0;
  overflow: unset;
}
@media (min-width: 1200px) {
  .feedback {
    padding: 8rem 0 13rem;
  }
}

@media (min-width: 768px) {
  .feedback__grid {
    display: grid;
    grid-template-columns: 760fr 680fr;
    gap: 4rem;
    -ms-flex-align: start;
    align-items: start;
  }
}
@media (min-width: 1200px) {
  .feedback__grid {
    display: grid;
    grid-template-columns: 760fr 680fr;
    gap: 4rem;
  }
}

.feedback__title {
  display: block;
  margin: 0 0 1.2rem;
  font: 400 4.8rem/1 var(--font-secondary);
  letter-spacing: -0.127rem;
  color: #9a2584;
  text-wrap: balance;
}
.feedback__title mark {
  color: #166c51;
}
@media (min-width: 1200px) {
  .feedback__title {
    font-size: 11rem;
    line-height: 1.1;
    margin: 0 0 4.6rem;
  }
}

.feedback__text {
  margin: 0 0 1.5rem;
  font-size: 1.6rem;
  line-height: 1.1;
  font-weight: 400;
  text-wrap: balance;
  color: rgba(22, 108, 81, 0.86);
}
.feedback__text p {
  margin: 0;
}
.feedback__text a {
  text-decoration: underline;
  color: #0c291c;
}
.feedback__text a:hover {
  text-decoration: underline;
  color: #0c291c;
}
@media (min-width: 1200px) {
  .feedback__text {
    font-size: 2.4rem;
    margin: 0 -2rem 7.5rem 0;
  }
}

.feedback__board {
  display: none;
}
@media (min-width: 768px) {
  .feedback__board {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 1rem;
    max-width: 64rem;
    width: 100%;
    height: auto;
    aspect-ratio: 640/446;
    background-image: url("data:image/svg+xml, %3Csvg width='640' height='446' viewBox='0 0 640 446' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='640' height='406' rx='10' fill='%230C291C'/%3E%3Crect x='21.9941' y='22.0059' width='596.001' height='329.993' rx='6' fill='%23166C51'/%3E%3Crect x='115.182' y='395.999' width='18.0038' height='50.001' fill='%230C291C'/%3E%3Crect x='506.808' y='396.001' width='18.0038' height='50.001' fill='%230C291C'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: contain;
    color: #ffebdc;
    padding: 10% 5% 20%;
    transform: rotate(-1.2deg);
    text-align: center;
  }
}

.feedback__board-logo {
  width: 60%;
  max-width: 33.7rem;
  margin: 0 auto;
}
.feedback__board-logo img,
.feedback__board-logo svg {
  display: block;
  width: 100%;
}

.feedback__board-title {
  display: block;
  margin: 0;
  width: 100%;
  font: 400 clamp(2.8rem, 4vw, 4.39rem)/1.1 var(--font-secondary);
  white-space: normal;
  word-break: break-word;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.feedback__board-text {
  display: block;
  margin: 0;
  font-size: 1.29rem;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0.104rem;
  text-transform: uppercase;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  text-overflow: ellipsis;
}

.feedback__form {
  background: #ffffff;
  box-shadow: 0px 0.4rem 5.3rem rgba(178, 147, 120, 0.3);
  border-radius: 2rem;
  padding: 1rem 1rem 2.3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.3rem;
}
@media (min-width: 1200px) {
  .feedback__form {
    position: relative;
    background: #ffffff;
    box-shadow: 0px 0.4rem 5.3rem rgba(178, 147, 120, 0.3);
    border-radius: 4.3rem;
    padding: 3rem 3.1rem;
    margin: 1.5rem -5.5rem 0 3rem;
  }
  .feedback__form .ui-datetime {
    margin: 0 0 0.8rem;
  }
  .feedback__form .ui-check {
    margin: 0 0 0.8rem;
  }
}
.rules {
  padding: 5rem 0 7.6rem;
  background: #166c51 url(../images/rules/bg.svg) 50% 60% no-repeat;
  background-size: cover;
  color: rgba(255, 235, 220, 0.86);
}
@media (min-width: 1200px) {
  .rules {
    padding: 10.6rem 0 12.5rem;
  }
}

.rules__badge {
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: top;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 2.8rem;
  padding: 0 1.2rem;
  margin: 0 0 1.2rem;
  border-radius: 10rem;
  background: #ffebdc;
  color: #166c51;
  font-size: 0.9rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.36px;
  text-transform: uppercase;
}
@media (min-width: 1200px) {
  .rules__badge {
    height: 3.3rem;
    padding: 0 1.6rem;
    font-size: 1.2rem;
    margin: 0 0 2rem;
    min-width: 18.4rem;
  }
}

.rules__title {
  display: block;
  margin: 0 0 1.5rem;
  font: 400 4.8rem/0.965 var(--font-secondary);
  letter-spacing: -0.127rem;
  text-wrap: balance;
  color: #ffebdc;
}
.rules__title mark {
  color: #f8d172;
}
@media (min-width: 1200px) {
  .rules__title {
    font-size: 11rem;
    letter-spacing: -0.522rem;
    margin: 0 0 0.5rem;
  }
}

.rules__text {
  margin: 0 0 1.5rem;
  font-size: 1.6rem;
  line-height: 1.1;
  font-weight: 400;
}
.rules__text p {
  margin: 0;
}
@media (min-width: 1200px) {
  .rules__text {
    font-size: 2.4rem;
    margin: 0 0 4.5rem;
  }
}

.rules__swiper .swiper {
  margin: 0 -0.6rem;
  overflow: unset;
}
.rules__swiper .swiper-slide {
  padding: 0 0.6rem;
  width: auto;
  height: auto;
  min-width: 31.6rem;
  -ms-flex: 1;
  flex: 1;
}
.rules__swiper .swiper-slide:nth-child(6n+1) .rules__card {
  background: #ffebdc;
  color: #0c291c;
}
.rules__swiper .swiper-slide:nth-child(6n+2) .rules__card {
  background: #f8d172;
  color: #0c291c;
}
.rules__swiper .swiper-slide:nth-child(6n+3) .rules__card {
  background: #9a2584;
  color: #fff;
}
.rules__swiper .swiper-slide:nth-child(6n+3) .rules__card-number {
  background: #ffebdc;
  color: #9a2584;
}
.rules__swiper .swiper-slide:nth-child(6n+4) .rules__card {
  background: #ffebdc;
  color: #0c291c;
}
.rules__swiper .swiper-slide:nth-child(6n+5) .rules__card {
  background: #c7e2bc;
  color: #0c291c;
}
.rules__swiper .swiper-slide:nth-child(6n+6) .rules__card {
  background: #f8d172;
  color: #0c291c;
}
.rules__swiper .swiper-slide:nth-child(6n+6) .rules__card-title {
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}
@media (min-width: 1200px) {
  .rules__swiper {
    padding: 0;
    margin: 0 -0.8rem;
  }
  .rules__swiper .swiper {
    margin: 0 -1.7rem;
  }
  .rules__swiper .swiper-slide {
    padding: 0 1.7rem;
    min-width: 37rem;
  }
}

.rules__card {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  min-height: 39rem;
  background: #ffebdc;
  color: #0c291c;
  box-shadow: 0px 2.8rem 2.8rem rgba(0, 44, 32, 0.23);
  border-radius: 2.5rem;
  padding: 2.2rem;
}
@media (min-width: 1200px) {
  .rules__card {
    border-radius: 3.7rem;
    padding: 3rem 2rem 3rem 3rem;
    min-height: 52.1rem;
  }
}

.rules__card-number {
  margin: 0 0 3.4rem;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: top;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 4.8rem;
  height: 3.5rem;
  border-radius: 10rem;
  background: #166c51;
  color: #ffebdc;
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 1200px) {
  .rules__card-number {
    width: 5.6rem;
    height: 4.4rem;
    font-size: 1.309rem;
    margin: 0 0 7.1rem;
  }
}

.rules__card-title {
  display: block;
  margin: 0 0 3.4rem;
  font: 400 3.1rem/1.05 var(--font-secondary);
  letter-spacing: -0.34px;
}
@media (min-width: 1200px) {
  .rules__card-title {
    font-size: 4rem;
    letter-spacing: 0;
    margin: 0 -1rem 4.1rem 0;
    letter-spacing: 0;
  }
}

.rules__card-text {
  display: block;
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.1;
  font-weight: 400;
  -ms-flex: 1;
  flex: 1;
}
@media (min-width: 1200px) {
  .rules__card-text {
    font-size: 2.4rem;
  }
}

.faq {
  padding: 3.5rem 0 4.8rem;
  background: #fff;
  color: #0c291c;
  overflow: unset;
}
@media (min-width: 1200px) {
  .faq {
    padding: 11rem 0 21rem;
  }
}

@media (min-width: 768px) {
  .faq__grid {
    display: grid;
    grid-template-columns: 500fr 850fr;
    gap: 5rem;
    -ms-flex-align: start;
    align-items: start;
  }
}
@media (min-width: 1200px) {
  .faq__grid {
    display: grid;
    grid-template-columns: 500fr 850fr;
    gap: 9rem;
  }
}

.faq__title {
  display: block;
  margin: 0 0 1.5rem;
  font: 400 4.8rem/1 var(--font-secondary);
  letter-spacing: -0.127rem;
}
.faq__title mark {
  color: #9a2584;
}
@media (min-width: 1200px) {
  .faq__title {
    font-size: 11rem;
    line-height: 0.95;
    letter-spacing: -0.522rem;
    margin: 0 0 3.5rem;
  }
}

.faq__text {
  margin: 0 0 1.5rem;
  font-size: 1.6rem;
  line-height: 1.1;
  font-weight: 400;
  color: #166c51;
}
.faq__text p {
  margin: 0;
}
.faq__text a {
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: baseline;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  isolation: isolate;
  text-decoration: none;
  color: #166c51;
  line-height: 1;
}
.faq__text a u {
  border-bottom: 0.1rem solid currentColor;
  text-decoration: none;
}
.faq__text a::before {
  content: "";
  display: block;
  position: absolute;
  top: -0.2rem;
  bottom: -0.6rem;
  left: -0.6rem;
  right: -0.6rem;
  background: #ffebdc;
  border-radius: 10rem;
  z-index: -1;
  transition: 0.2s;
  opacity: 0;
}
.faq__text a:hover {
  text-decoration: none;
  color: #166c51;
}
.faq__text a:hover::before {
  opacity: 1;
}
@media (min-width: 1200px) {
  .faq__text {
    font-size: 2.4rem;
    line-height: 1.2;
    font-weight: 400;
    margin: 0;
  }
}

.faq__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}
@media (min-width: 1200px) {
  .faq__list {
    gap: 1.2rem;
    padding: 4.5rem 0 0;
  }
}

.faq__card {
  background: #ffebdc;
  border-radius: 1.6rem;
}
.faq__card.is-open .faq__card-toggle::after {
  transform: rotate(45deg);
}
@media (min-width: 1200px) {
  .faq__card {
    border-radius: 2.4rem;
  }
}

.faq__card-toggle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 3.2rem;
  width: 100%;
  min-height: 5.4rem;
  padding: 0.8rem 1.4rem;
  font: 400 1.6rem/1.25 var(--font-secondary);
  text-align: left;
  color: #0c291c;
  transition: 0.2s;
}
.faq__card-toggle::after {
  content: "+";
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin: 0 0 0 auto;
  background: #166c51 url("data:image/svg+xml,%3Csvg width='9' height='9' viewBox='0 0 9 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.23072 8.35547V0.000354469H5.12632V8.35547H3.23072ZM0.000960685 5.12571V3.23011H8.35607V5.12571H0.000960685Z' fill='white'/%3E%3C/svg%3E%0A") 50% 50% no-repeat;
  background-size: 0.9rem 0.9rem;
  color: #fff;
  border-radius: 50%;
  font: 700 1.4rem/1 var(--font-primary);
  transition: 0.4s;
  text-indent: -999.9rem;
}
.faq__card-toggle:hover {
  color: #166c51;
}
@media (min-width: 1200px) {
  .faq__card-toggle {
    font-size: 2.4rem;
    padding: 2.2rem;
    min-height: 7.2rem;
  }
  .faq__card-toggle::after {
    width: 2.8rem;
    height: 2.8rem;
    font-size: 1.7rem;
  }
}

.faq__card-content {
  display: none;
  padding: 0 1.4rem 1.4rem;
  font-size: 1.2rem;
  line-height: 1.42;
  font-weight: 400;
  color: #166c51;
}
.faq__card-content p {
  margin: 0 0 1rem;
}
.faq__card-content p:last-child {
  margin-bottom: 0;
}
.faq__card-content a {
  text-decoration: underline;
  color: #166c51;
  transition: color 0.4s;
}
.faq__card-content a:hover {
  text-decoration: underline;
  color: #9a2584;
}
@media (min-width: 1200px) {
  .faq__card-content {
    padding: 0 2.2rem 2.2rem;
    font-size: 1.7rem;
  }
}

.finally {
  padding: 5rem 0 5.5rem;
  background: #9a2584;
  color: #ffebdc;
}
@media (min-width: 1200px) {
  .finally {
    padding: 8.5rem 0 11rem;
  }
}

.finally__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.6rem;
}
@media (min-width: 768px) {
  .finally__grid {
    grid-template-columns: 1fr 39rem;
    gap: 4rem;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media (min-width: 1200px) {
  .finally__grid {
    grid-template-columns: 1fr 47rem;
    gap: 10rem;
    -ms-flex-align: center;
    align-items: center;
  }
}

.finally__badge {
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: top;
  -ms-flex-align: center;
  align-items: center;
  height: 2.8rem;
  padding: 0 1.2rem;
  margin: 0 0 1.2rem;
  border-radius: 10rem;
  background: #ffebdc;
  color: #166c51;
  font-size: 0.9rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.36px;
  text-transform: uppercase;
}
@media (min-width: 1200px) {
  .finally__badge {
    height: 3.3rem;
    padding: 0 1.6rem;
    font-size: 1.2rem;
    margin: 0 0 4rem;
  }
}

.finally__title {
  display: block;
  margin: 0 0 1.7rem;
  font: 400 4.8rem/0.965 var(--font-secondary);
  letter-spacing: -0.127rem;
  text-wrap: balance;
  color: #ffebdc;
}
.finally__title mark {
  color: #f8d172;
}
.finally__title br {
  display: none;
}
@media (min-width: 1200px) {
  .finally__title {
    font-size: 11.41rem;
    line-height: 0.9;
    letter-spacing: -0.522rem;
    margin: 0 0 3rem;
  }
  .finally__title br {
    display: block;
  }
}

.finally__text {
  margin: 0 0 1.7rem;
  font-size: 1.6rem;
  line-height: 1.1;
  font-weight: 400;
}
.finally__text p {
  margin: 0;
}
@media (min-width: 1200px) {
  .finally__text {
    font-size: 2.4rem;
    margin: 0 0 3rem;
  }
}

.finally__btn {
  padding: 0 2.1rem;
}
@media (min-width: 1200px) {
  .finally__btn {
    min-width: 23.2rem;
  }
}

.finally__polaroid {
  width: 100%;
  max-width: 29rem;
  margin: 0 auto;
  background: #ffebdc;
  color: #0c291c;
  box-shadow: 0px 2.8rem 4rem rgba(78, 4, 52, 0.24);
  border-radius: 2.2rem;
  padding: 1rem 1rem 1.4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
  transform: rotate(2deg);
  will-change: transform;
}
.finally__polaroid * {
  will-change: transform;
}
@media (min-width: 1200px) {
  .finally__polaroid {
    max-width: 47rem;
    border-radius: 3.8rem;
    padding: 1.8rem 1.8rem 2.4rem;
    gap: 1.5rem;
    box-shadow: 0px 2.8rem 8rem rgba(78, 4, 52, 0.24);
    transform: rotate(3deg);
    position: relative;
    top: 1.2rem;
  }
}

.finally__polaroid-media {
  display: block;
  margin: 0;
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  position: relative;
}
@media (min-width: 1200px) {
  .finally__polaroid-media {
    border-radius: 2.4rem;
  }
}

.finally__polaroid-image,
.finally__polaroid-video {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.finally__polaroid-image img,
.finally__polaroid-image video,
.finally__polaroid-video img,
.finally__polaroid-video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.finally__polaroid-caption {
  display: block;
  margin: 0;
  font-size: 0.89rem;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 1200px) {
  .finally__polaroid-caption {
    font-size: 1.3rem;
  }
}

.inspiration {
  padding: 4.5rem 0 2.5rem;
  background: #ffeed9;
  color: #166c51;
}
@media (min-width: 1200px) {
  .inspiration {
    padding: 4rem 0;
  }
}

.inspiration__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 768px) {
  .inspiration__grid {
    grid-template-columns: 1fr 37rem;
    -ms-flex-align: center;
    align-items: center;
    gap: 4rem;
  }
}
@media (min-width: 1200px) {
  .inspiration__grid {
    grid-template-columns: 1fr 37rem;
    -ms-flex-align: center;
    align-items: center;
    gap: 22rem;
  }
}

@media (min-width: 1200px) {
  .inspiration__main {
    position: relative;
    left: -1.3rem;
    padding: 10.5rem 0 5rem;
  }
}

.inspiration__title {
  display: block;
  margin: 0 0 1.7rem;
  font: 400 4.8rem/0.965 var(--font-secondary);
  letter-spacing: -0.127rem;
  color: #166c51;
}
.inspiration__title mark {
  color: #9a2584;
}
@media (min-width: 1200px) {
  .inspiration__title {
    font-size: 11rem;
    line-height: 0.9;
    font-weight: 400;
    letter-spacing: -0.522rem;
    margin: 0 0 4.5rem;
  }
}

.inspiration__text {
  margin: 0 0 1.7rem;
  font-size: 1.6rem;
  line-height: 1.1;
  font-weight: 400;
}
.inspiration__text p {
  margin: 0;
}
@media (min-width: 1200px) {
  .inspiration__text {
    font-size: 2.4rem;
    margin: 0 0 4.5rem;
  }
}

.inspiration__action {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}
.inspiration__action .ui-btn {
  padding: 0 2.1rem;
}
.inspiration__action .ui-btn--yellow {
  height: 4.8rem;
}
.inspiration__action .ui-btn--outline {
  height: 3.8rem;
}
@media (min-width: 1200px) {
  .inspiration__action .ui-btn {
    padding: 0 4rem;
    font-size: 1.8rem;
  }
  .inspiration__action .ui-btn--yellow {
    height: 7.2rem;
    min-width: 23.2rem;
  }
  .inspiration__action .ui-btn--outline {
    height: 5.8rem;
  }
}

.inspiration__obj {
  position: relative;
  max-width: 17.5rem;
  margin: 0 auto;
  cursor: pointer;
}
.inspiration__obj.state-1 .inspiration__obj-default {
  transform: rotate(-4deg);
}
.inspiration__obj.state-2 .inspiration__obj-default {
  transform: rotate(7deg);
}
.inspiration__obj.state-3 .inspiration__obj-link {
  transform: rotate(14.02deg);
  opacity: 1;
  pointer-events: auto;
}
.inspiration__obj.state-3 .inspiration__obj-default {
  opacity: 0;
  transform: rotate(80deg) translate(13rem, 8rem);
}
.inspiration__obj.state-3 .inspiration__obj-fall {
  opacity: 1;
  transform: none;
}
.inspiration__obj img {
  display: block;
}
@media (min-width: 1200px) {
  .inspiration__obj {
    max-width: 37rem;
  }
}

.inspiration__obj-link {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 7.2rem;
  min-width: 19.2rem;
  background: #9a2584;
  color: #ffebdc;
  padding: 1.2rem 3.6rem;
  font: 400 2.463rem/1 var(--font-secondary);
  text-align: center;
  text-decoration: underline;
  text-decoration-thickness: 0.04em;
  text-underline-offset: 0.125em;
  border-radius: 4rem;
  corner-shape: squircle;
  position: absolute;
  bottom: 70%;
  right: 50%;
  z-index: 50;
  margin: 0 -3.6rem 0 0;
  width: -moz-max-content;
  width: max-content;
  max-width: 50vw;
  box-shadow: 0 2.2rem 4.2rem rgba(154, 37, 132, 0.2);
  opacity: 0;
  transition: opacity 0.25s ease, translate 0.3s ease, color 0.2s, -webkit-text-decoration-color 0.2s;
  transition: opacity 0.25s ease, translate 0.3s ease, text-decoration-color 0.2s, color 0.2s;
  transition: opacity 0.25s ease, translate 0.3s ease, text-decoration-color 0.2s, color 0.2s, -webkit-text-decoration-color 0.2s;
  pointer-events: none;
}
.inspiration__obj-link::after {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  right: 2rem;
  margin: -1.5rem 0 0 0;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='35' viewBox='0 0 20 35' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.9611 34.4058C6.5789 24.2713 2.07699 12.157 0 0C8.34371 4.05602 13.9383 3.34801 19.0507 1.06812C13.517 10.6952 12.522 22.1544 15.9611 34.4058Z' fill='%239A2584'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 2rem;
  height: 3.5rem;
}
.inspiration__obj-link:hover {
  text-decoration: underline;
  text-decoration-thickness: 0.04em;
  text-underline-offset: 0.125em;
  -webkit-text-decoration-color: transparent;
  text-decoration-color: transparent;
  color: #fff;
}
@media (min-width: 1200px) {
  .inspiration__obj-link {
    font-size: 4.938rem;
    right: 100%;
    top: 22%;
    bottom: auto;
    min-height: 14.8rem;
    border-radius: 10rem;
    min-width: 39rem;
  }
  .inspiration__obj-link::after {
    width: 7rem;
    height: 7rem;
    right: 2.5rem;
  }
}

.inspiration__obj-image {
  display: block;
  margin: 0;
  position: relative;
  isolation: isolate;
}
@media (min-width: 1200px) {
  .inspiration__obj-image::before {
    content: "";
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: -1;
    width: 63rem;
    height: 9rem;
    margin: -7rem 0 0 -31.5rem;
    background-image: url("data:image/svg+xml,%3Csvg width='629' height='89' viewBox='0 0 629 89' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='314.5' cy='44.5' rx='314.5' ry='44.5' fill='%23ECDAC3'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: contain;
  }
}

.inspiration__obj-default {
  display: block;
  width: 100%;
  transform-origin: 70% 88%;
  transition: opacity 0.25s ease, transform 0.42s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.inspiration__obj-default img {
  display: block;
  width: 100%;
  height: auto;
}

.inspiration__obj-fall {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 35.4rem;
  height: auto;
  margin: 0 0 0 -17.7rem;
  transition: opacity 0.25s ease, transform 0.42s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform: translateX(8rem) rotate(4deg);
  opacity: 0;
}
.inspiration__obj-fall img {
  display: block;
  width: 100%;
  height: auto;
}
@media (min-width: 1200px) {
  .inspiration__obj-fall {
    width: 80.2rem;
    margin: 0 0 0 -46.1rem;
    bottom: -2rem;
  }
}

.logotypes {
  padding: 2rem 0;
  background: #fff;
}
@media (min-width: 1200px) {
  .logotypes {
    padding: 4rem 0;
  }
}

.logotypes__swiper .swiper {
  margin: 0 -2rem;
  overflow: unset;
}
.logotypes__swiper .swiper-wrapper {
  transition-timing-function: linear;
}
.logotypes__swiper .swiper-slide {
  padding: 0 2rem;
  width: auto;
}
@media (min-width: 1200px) {
  .logotypes__swiper .swiper {
    margin: 0 -2.7rem;
  }
  .logotypes__swiper .swiper-slide {
    padding: 0 2.7rem;
  }
}

.logotypes__image {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 11.8rem;
}
.logotypes__image img,
.logotypes__image svg {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
@media (min-width: 1200px) {
  .logotypes__image {
    height: 16.4rem;
  }
}

:has(.results) .cookies {
  display: none;
}

.results {
  position: relative;
  isolation: isolate;
  padding: 4rem 0;
  min-height: 100svh;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.results__image {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.results__image::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: #0c291c;
  mix-blend-mode: multiply;
  opacity: 0.6;
}
.results__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.results__wrapper {
  width: 100%;
  background-color: #ffebdc;
  background-image: url("data:image/svg+xml,%3Csvg width='1020' height='541' viewBox='0 0 1020 541' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.04'%3E%3Cpath d='M406.212 737.003C404.159 726.009 406.635 714.974 413.188 705.926L441.259 667.155C453.166 650.715 475.63 645.755 493.509 655.613C612.452 721.202 765.859 682.667 850.351 565.979C934.844 449.284 923.494 291.616 823.951 199.234C808.985 185.345 806.676 162.468 818.577 146.026L846.648 107.256C853.201 98.2078 862.916 92.4038 874.007 90.9167C884.94 89.4483 896.123 92.5482 904.678 99.4148C905.261 99.8753 905.825 100.361 906.384 100.864C913.317 107.077 920.11 113.63 926.568 120.342C990.465 186.731 1028.71 275.469 1034.26 370.217C1039.87 466.002 1011.49 562.23 954.33 641.167C897.181 720.1 814.597 777.131 721.799 801.764C630.01 826.132 533.7 817.584 450.617 777.693C442.228 773.663 433.875 769.271 425.792 764.624C425.144 764.249 424.509 763.866 423.893 763.464C414.68 757.485 408.241 747.84 406.212 737.003Z' fill='%23166C51'/%3E%3Cpath d='M400.094 -7.28208L369.014 35.6467C359.744 48.4497 343.714 54.6662 328.174 51.4877C267.278 39.0332 202.396 26.5635 135.33 14.4329C123.482 12.2923 111.733 17.0281 104.658 26.7997C97.5824 36.5713 96.7536 49.2089 102.5 59.7821C135.025 119.674 167.165 177.365 198.032 231.241C205.915 244.996 205.019 262.16 195.749 274.963L164.671 317.886C156.687 328.911 143.799 335.13 130.193 334.525C116.588 333.921 104.294 326.582 97.2383 314.758C96.2009 312.88 -7.14315 125.945 -43.7246 58.627C-69.133 11.8769 -66.081 -28.8286 -33.844 -73.3512C-1.60556 -117.879 36.1308 -133.5 88.5098 -124.003C163.932 -110.333 373.927 -70.7021 376.193 -70.2715C389.487 -67.2995 400.305 -57.9284 405.139 -45.2027C409.974 -32.477 408.093 -18.2965 400.109 -7.27181L400.094 -7.28208Z' fill='%23166C51'/%3E%3Cpath d='M802.835 92.7423C802.396 93.4275 801.94 94.1082 801.456 94.7756L772.446 134.846C761.98 149.294 742.963 155.184 726.201 149.178C702.257 140.597 674.311 131.63 643.131 122.533C627.171 117.874 613.749 126.2 607.582 136.513C607.306 136.975 607.055 137.455 606.79 137.944L606.508 138.452C601.829 147.619 602.037 158.137 607.084 167.3L727.999 386.944C735.481 400.537 734.44 417.443 725.334 430.023L682.019 489.845C672.922 502.414 657.175 508.688 641.913 505.833L395.328 459.75C385.035 457.826 374.977 460.916 367.607 468.352L367.322 468.665C366.951 469.052 366.572 469.443 366.229 469.838C358.383 478.983 354.633 494.275 364.051 507.961C382.442 534.703 399.7 558.422 415.352 578.475C426.31 592.507 426.655 612.4 416.193 626.854L387.184 666.919C386.701 667.586 386.198 668.236 385.681 668.87C377.949 678.32 366.482 683.709 354.229 683.65C342.059 683.595 330.707 678.126 323.085 668.644C278.439 613.108 225.916 535.587 162.52 431.654C154.032 417.743 154.724 400.232 164.276 387.036L213.651 318.844C222.749 306.274 238.496 300 253.757 302.855L502.911 349.419C514.856 351.653 526.697 346.936 533.813 337.102C540.929 327.269 541.717 314.559 535.854 303.918L413.678 81.9836C406.189 68.3888 407.236 51.4845 416.342 38.9053L465.709 -29.2775C475.261 -42.4734 491.693 -48.6003 507.568 -44.9001C626.18 -17.2302 716.293 8.38128 783.037 33.3948C794.431 37.6643 803.181 46.7308 807.038 58.2639C810.923 69.8772 809.387 82.4473 802.822 92.745L802.835 92.7423Z' fill='%23166C51'/%3E%3C/g%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  box-shadow: 0px 2.46076rem 6.28861rem rgba(0, 44, 32, 0.24);
  border-radius: 3.28101rem;
  overflow: hidden;
  padding: 2rem 2rem 3.7rem;
  color: #0c291c;
}
@media (min-width: 1200px) {
  .results__wrapper {
    padding: 2rem 9.8rem 3.7rem;
  }
}

.results__title {
  display: block;
  margin: 0 0 1.7rem;
  font: 400 4.8rem/1 var(--font-secondary);
  letter-spacing: -0.127rem;
  color: #166c51;
}
.results__title mark {
  display: inline-block;
  vertical-align: top;
  color: #9a2584;
}
@media (min-width: 1200px) {
  .results__title {
    font-size: 6.4rem;
    letter-spacing: 0;
  }
}

.results__text {
  display: block;
  margin: 0 auto 1.7rem;
  max-width: 70rem;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 400;
  color: #166c51;
}

.results__swiper .swiper {
  overflow: unset;
  margin-inline: -0.9rem;
}
.results__swiper .swiper-slide {
  padding-inline: 0.9rem;
  width: 33.8rem;
  max-width: 100%;
}
.results__swiper .swiper-control {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 1.6rem;
}
.results__swiper .swiper-prev,
.results__swiper .swiper-next {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  color: #166c51;
  transition: color 0.4s;
}
.results__swiper .swiper-prev svg,
.results__swiper .swiper-next svg {
  display: block;
  width: 100%;
  height: 100%;
}
.results__swiper .swiper-prev:hover,
.results__swiper .swiper-next:hover {
  color: #9a2584;
}
.results__swiper .swiper-scrollbar {
  position: relative;
  -ms-flex: 1;
  flex: 1;
  height: 0.1rem;
  background: #166c51;
}
.results__swiper .swiper-scrollbar-drag {
  position: absolute;
  top: 50%;
  left: 0;
  height: 0.3rem;
  border-radius: 10rem;
  background: #166c51;
  margin: -0.15rem 0 0 0;
}

.results__card {
  text-align: left;
}

.results__card-image {
  width: 100%;
  height: auto;
  aspect-ratio: 310/208;
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #fff;
  box-shadow: 0px 0.5371rem 1.0742rem rgba(0, 0, 0, 0.24);
  border-radius: 2.1484rem;
}
.results__card-image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.results__card-desc {
  padding: 1.2rem 1.6rem 0;
}

.results__card-title {
  display: block;
  margin: 0 0 0.4rem;
  color: #9a2584;
  font: 400 1.79rem/1.4 var(--font-secondary);
}

.results__card-author {
  display: block;
  margin: 0 0 1rem;
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 400;
  text-transform: uppercase;
  font-style: normal;
  color: #166c51;
}
.results__card-author b {
  font-weight: 500;
}

.results__card-text {
  display: block;
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 400;
  color: #0c291c;
}