@charset "UTF-8";
@font-face {
  font-family: "e-Ukraine";
  src: local("e-Ukraine"),
    url("../fonts/e-Ukraine-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "e-Ukraine";
  src: local("e-Ukraine"),
    url("../fonts/e-Ukraine-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "e-Ukraine";
  src: local("e-Ukraine"),
    url("../fonts/e-Ukraine-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "e-Ukraine";
  src: local("e-Ukraine"), url("../fonts/e-Ukraine-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "e-Ukraine Head";
  src: local("e-Ukraine Head"),
    url("../fonts/e-UkraineHead-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  /* Set the sizing of an element to include it's border */
}

* {
  margin: 0;
  /* Set the default margin to 0 */
  padding: 0;
  /* Set the default padding to 0 */
}

ul[role="list"],
ol[role="list"],
ul {
  list-style: none;
  /* Turn off numbered and unordered list decoration */
}

html:focus-within {
  scroll-behavior: smooth;
  /* Make the scrolling inside of any scrollable element smooth */
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
  /* Makes link undelines look better */
}

dialog:-internal-dialog-in-top-layer::backdrop {
  background: rgba(51, 51, 51, 0.6);
}

img,
svg,
video,
canvas {
  max-width: 100%;
  /* Makes it responsive */
  height: auto;
  /* Makes it responsive */
  vertical-align: middle;
  /* Makes text next to inline images look better */
  font-style: italic;
  /* If the images don't load it makes the alt decription look better */
  background-repeat: no-repeat;
  /* The background repeat and size are there if you want to load a picture first like a backroung image that is worse quality while the better quality image loads */
  background-size: cover;
}

input,
button,
textarea,
select {
  font: inherit;
  /* Makes these elements inherit fonts */
  cursor: pointer;
}

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

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

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
    transition: none;
  }
}
body,
html {
  height: 100%;
}

#smooth-wrapper {
  background: url(../images/background.png);
  background-color: #dcdad2;
  background-repeat: repeat-y;
  background-size: cover;
  background-position: center;
}

body,
dialog {
  overflow-x: hidden;
}

body {
  margin: 0 auto;
}

#preloader {
  position: fixed;
  inset: 0;
  background: #050305;
  display: flex;
  z-index: 2000;
  padding: 18px 20px;
  width: 100%;
  height: 100%;
  opacity: 1;
  visibility: visible;
  transition: all 0.35s ease;
}
#preloader > div {
  padding: 18px 20px;
}
#preloader > div > svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 241px;
  transition: all 0.5s ease;
}
#preloader > div > svg.active {
  top: 17.6px;
  left: 10px;
  transform: unset;
  width: 95.517px;
  height: 32.804px;
}
@media screen and (min-width: 768px) {
  #preloader > div > svg.active {
    left: 44px;
  }
}
@media screen and (min-width: 1024px) {
  #preloader > div > svg.active {
    left: clamp(108.09px, 10.5555555556vw, 202.67px);
    top: clamp(5.689px, 0.5555555556vw, 10.667px);
    width: clamp(102.4px, 10vw, 192px);
    height: clamp(42.522px, 4.1666666667vw, 80px);
  }
}

#preloader .preloader__inner svg {
  opacity: 0;
  /* збігається з gsap.set */
}

#preloader.is-done {
  opacity: 0;
  visibility: hidden;
}

body.preloading {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  #preloader,
  #preloader .preloader__inner {
    transition: none !important;
  }
}
.header {
  position: fixed;
  top: 0;
  z-index: 1001;
  width: 100%;
  background-color: #f1f1e9;
  border-radius: 0 0 24px 24px;
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1920px;
  margin-inline: auto;
  padding: 8px 10px;
}
@media screen and (min-width: 768px) {
  .header__container {
    padding: 8px 32px;
  }
}
@media screen and (min-width: 1024px) {
  .header__container {
    padding-block: clamp(5.689px, 0.5555555556vw, 10.667px);
    padding-inline: clamp(26.311px, 2.5694444444vw, 49.333px);
  }
}
.header__container > button {
  background: transparent;
  border: none;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.header__container > button > svg {
  width: 164px;
  height: 43.3px;
}
@media screen and (min-width: 1024px) {
  .header__container > button > svg {
    width: clamp(134px, 13.125vw, 252px);
    height: clamp(35.6px, 3.4722222222vw, 66.7px);
  }
}
.header__container > div > ul {
  display: none;
}
@media screen and (min-width: 1024px) {
  .header__container > div > ul {
    display: flex;
    align-items: center;
    gap: clamp(5.689px, 0.5555555556vw, 10.667px);
  }
}
.header__container > div > ul > li > button {
  padding-block: clamp(4.267px, 0.4166666667vw, 8px);
  padding-inline: clamp(8.533px, 0.8333333333vw, 16px);
  border-radius: clamp(15.644px, 1.5277777778vw, 29.333px);
  background-color: #000;
  border: none;
  transition: all 0.5s ease-in-out;
  color: #fff;
  font-family: "e-Ukraine";
  font-size: clamp(9.956px, 0.9722222222vw, 18.667px);
  font-style: normal;
  font-weight: 500;
  line-height: 125%;
  text-transform: uppercase;
}
.header__container > div > ul > li > button:hover {
  background-color: #3c3c3c;
}
.header__container > div > button {
  display: flex;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  border-radius: 22px;
  background: #000;
  border: none;
  transition: all 0.5s ease-in-out;
  position: relative;
  isolation: isolate;
}
@media screen and (min-width: 1024px) {
  .header__container > div > button {
    display: none;
  }
}
.header__container > div > button svg:first-child {
  opacity: 1;
  transform: rotate(0deg) scale(1);
  transition: opacity 0.2s, transform 0.2s;
}
.header__container > div > button svg:last-child {
  position: absolute;
  inset: 0;
  margin: auto;
  opacity: 0;
  transform: rotate(-90deg) scale(0.8);
  transition: opacity 0.2s, transform 0.2s;
}
.header__container > div > button.is-open svg:first-child {
  opacity: 0;
  transform: rotate(90deg) scale(0.8);
}
.header__container > div > button.is-open svg:last-child {
  opacity: 1;
  transform: rotate(0deg) scale(1);
  display: block;
}
.header__container > div > button > svg:first-child {
  width: 24px;
  height: 24px;
}
.header__container > div > button > svg:last-child {
  display: none;
  width: 24px;
  height: 24px;
}

.footer {
  background: #000;
  border-radius: 18px 18px 0 0;
}
.footer__container {
  max-width: 1920px;
  margin-inline: auto;
  padding: 28px 18px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .footer__container {
    padding: 32px;
  }
}
@media screen and (min-width: 1024px) {
  .footer__container {
    padding-inline: clamp(26.31px, 2.5694444444vw, 49.33px);
    padding-block: clamp(5.689px, 0.5555555556vw, 10.667px);
  }
}
@media screen and (min-width: 1024px) {
  .footer__container {
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
  }
}
.footer__container > ul:first-child {
  display: flex;
  gap: 12px;
}
.footer__container > ul:first-child > li:first-child {
  cursor: pointer;
}
.footer__container > ul:first-child > li:first-child > svg {
  width: 164px;
  height: 43.3px;
}
@media screen and (min-width: 1024px) {
  .footer__container > ul:first-child > li:first-child > svg {
    width: clamp(134px, 13.125vw, 252px);
    height: clamp(35.6px, 3.4722222222vw, 66.7px);
  }
}
.footer__container > ul:first-child > li > svg {
  width: 52px;
  height: 52px;
}
@media screen and (min-width: 1024px) {
  .footer__container > ul:first-child > li > svg {
    width: clamp(36.978px, 3.6111111111vw, 69.333px);
    height: clamp(36.978px, 3.6111111111vw, 69.333px);
  }
}
.footer__container > ul:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
@media screen and (min-width: 1024px) {
  .footer__container > ul:last-child {
    gap: clamp(17.067px, 1.6666666667vw, 32px);
  }
}
.footer__container > ul:last-child > li > button {
  padding: 6px 12px;
  background-color: transparent;
  border: none;
  color: #fff;
  font-family: "e-Ukraine";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%;
  text-transform: uppercase;
}
@media screen and (min-width: 1024px) {
  .footer__container > ul:last-child > li > button {
    font-size: clamp(9.956px, 0.9722222222vw, 18.667px);
    padding: 0;
  }
}

.hero {
  max-width: 1920px;
  margin-inline: auto;
  padding: 74px 10px 0;
}
@media screen and (min-width: 768px) {
  .hero {
    padding: 74px 32px 0;
  }
}
@media screen and (min-width: 1024px) {
  .hero {
    padding-top: clamp(54.04px, 5.2777777778vw, 101.33px);
    padding-inline: clamp(26.31px, 2.5694444444vw, 49.33px);
  }
}
.hero__container {
  height: 638px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 28px;
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .hero__container {
    padding: 98px 48px;
    gap: 48px;
    height: 768px;
  }
}
@media screen and (min-width: 1024px) {
  .hero__container {
    border-radius: clamp(17.067px, 1.6666666667vw, 32px);
    height: clamp(568.889px, 55.5555555556vw, 1066.667px);
    flex-direction: row;
    align-items: flex-end;
    gap: clamp(43.38px, 4.2361111111vw, 81.33px);
  }
}
.hero__container > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media screen and (min-width: 768px) {
  .hero__container > div:first-child {
    max-width: 518px;
  }
}
@media screen and (min-width: 1024px) {
  .hero__container > div:first-child {
    gap: clamp(12.8px, 1.25vw, 24px);
    max-width: 66%;
  }
}
.hero__container > div:first-child > span {
  padding: 12px 24px;
  border-radius: 22px;
  background: #000;
  color: #fff;
  font-family: "e-Ukraine";
  font-size: 21px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 1024px) {
  .hero__container > div:first-child > span {
    font-size: clamp(24.178px, 2.3611111111vw, 45.333px);
    padding-block: clamp(8.533px, 0.8333333333vw, 16px);
    padding-inline: clamp(17.067px, 1.6666666667vw, 32px);
    border-radius: clamp(15.644px, 1.5277777778vw, 29.333px);
  }
}
.hero__container > div:first-child > h1 {
  color: #fff;
  font-family: "e-Ukraine";
  font-size: 31px;
  font-style: normal;
  font-weight: 700;
  line-height: 114%;
}
@media screen and (min-width: 1024px) {
  .hero__container > div:first-child > h1 {
    font-size: clamp(33.422px, 3.2638888889vw, 62.667px);
  }
}
.hero__container > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .hero__container > div:last-child {
    max-width: 518px;
  }
}
@media screen and (min-width: 1024px) {
  .hero__container > div:last-child {
    gap: clamp(17.07px, 1.6666666667vw, 32px);
    max-width: 33%;
  }
}
.hero__container > div:last-child > p {
  color: #fff;
  font-family: "e-Ukraine";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media screen and (min-width: 1024px) {
  .hero__container > div:last-child > p {
    font-size: clamp(11.378px, 1.1111111111vw, 21.333px);
  }
}
.hero__container > div:last-child > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media screen and (min-width: 768px) {
  .hero__container > div:last-child > div {
    flex-direction: row;
  }
}
@media screen and (min-width: 1024px) {
  .hero__container > div:last-child > div {
    gap: clamp(2.844px, 0.2777777778vw, 5.333px);
  }
}
.hero__container > div:last-child > div > button {
  display: flex;
  padding: 12px 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 35px;
  transition: all 0.5s ease-in-out;
  border: none;
}
@media screen and (min-width: 768px) {
  .hero__container > div:last-child > div > button {
    width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .hero__container > div:last-child > div > button {
    padding-block: clamp(8.533px, 0.8333333333vw, 16px);
    padding-inline: clamp(11.378px, 1.1111111111vw, 21.333px);
    border-radius: clamp(24.889px, 2.4305555556vw, 46.667px);
    gap: clamp(5.69px, 0.5555555556vw, 10.67px);
  }
}
.hero__container > div:last-child > div > button > span {
  font-family: "e-Ukraine";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  transition: all 0.5s ease-in-out;
}
@media screen and (min-width: 1024px) {
  .hero__container > div:last-child > div > button > span {
    font-size: clamp(9.956px, 0.9722222222vw, 18.667px);
  }
}
.hero__container > div:last-child > div > button > span > svg {
  width: 24px;
  height: 24px;
  transition: all 0.5s ease-in-out;
}
@media screen and (min-width: 1024px) {
  .hero__container > div:last-child > div > button > span > svg {
    width: clamp(17.067px, 1.6666666667vw, 32px);
    height: clamp(17.067px, 1.6666666667vw, 32px);
  }
}
.hero__container > div:last-child > div > button:first-child {
  background: #000;
}
@media screen and (min-width: 1024px) {
  .hero__container > div:last-child > div > button:first-child:hover {
    background: #3c3c3c;
  }
}
.hero__container > div:last-child > div > button:first-child > span {
  color: #fff;
}
.hero__container > div:last-child > div > button:last-child {
  background: #16b9b2;
}
@media screen and (min-width: 1024px) {
  .hero__container > div:last-child > div > button:last-child:hover {
    background: #34d7d0;
  }
}
.hero__container > div:last-child > div > button:last-child > span {
  color: #000;
}

.modal-how-get,
.modal-how-implement,
.modal-order,
.modal-conditions,
.modal-voucher {
  position: fixed;
  inset: 0;
  z-index: 1005;
  display: grid;
  place-items: center;
  opacity: 1;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0.001s linear;
}
.modal-how-get.is-open,
.modal-how-implement.is-open,
.modal-order.is-open,
.modal-conditions.is-open,
.modal-voucher.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.modal-how-get.is-open > div:first-child,
.modal-how-implement.is-open > div:first-child,
.modal-order.is-open > div:first-child,
.modal-conditions.is-open > div:first-child,
.modal-voucher.is-open > div:first-child {
  opacity: 1;
  transition: none;
}
.modal-how-get.is-open > div:last-child,
.modal-how-implement.is-open > div:last-child,
.modal-order.is-open > div:last-child,
.modal-conditions.is-open > div:last-child,
.modal-voucher.is-open > div:last-child {
  transform: none;
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .modal-how-get,
  .modal-how-get > div,
  .modal-how-implement,
  .modal-how-implement > div,
  .modal-order,
  .modal-order > div,
  .modal-conditions,
  .modal-conditions > div,
  .modal-voucher,
  .modal-voucher > div {
    transition: none;
  }
}
.modal-how-get > div:first-child,
.modal-how-implement > div:first-child,
.modal-order > div:first-child,
.modal-conditions > div:first-child,
.modal-voucher > div:first-child {
  position: absolute;
  inset: 0;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: opacity 0.28s ease;
}
.modal-how-get > div:last-child,
.modal-how-implement > div:last-child,
.modal-order > div:last-child,
.modal-conditions > div:last-child,
.modal-voucher > div:last-child {
  border-radius: 24px;
  border: 1px solid #cecec6;
  background: #ecece4;
  box-shadow: 0 4px 24px -10px rgba(36, 36, 25, 0.15);
  position: relative;
  padding: 108px 10px;
  transform: translateY(-12px) scale(0.98);
  opacity: 0;
  transition: transform 0.34s cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 0.34s ease;
  width: calc(100% - 20px);
}
@media screen and (min-width: 768px) {
  .modal-how-get > div:last-child,
  .modal-how-implement > div:last-child,
  .modal-order > div:last-child,
  .modal-conditions > div:last-child,
  .modal-voucher > div:last-child {
    padding: 108px 32px;
    width: calc(100% - 64px);
  }
}
@media screen and (min-width: 1024px) {
  .modal-how-get > div:last-child,
  .modal-how-implement > div:last-child,
  .modal-order > div:last-child,
  .modal-conditions > div:last-child,
  .modal-voucher > div:last-child {
    padding: clamp(81.78px, 7.9861111111vw, 153.33px);
    padding-right: clamp(285.87px, 27.9166666667vw, 536px);
    width: 100%;
    max-width: clamp(765.867px, 74.7916666667vw, 1436px);
  }
}
.modal-how-get > div:last-child > button,
.modal-how-implement > div:last-child > button,
.modal-order > div:last-child > button,
.modal-conditions > div:last-child > button,
.modal-voucher > div:last-child > button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 22px;
  background-color: #000;
  border: none;
  transition: all 0.5s ease-in-out;
  position: absolute;
  top: 10px;
  right: 10px;
}
@media screen and (min-width: 1024px) {
  .modal-how-get > div:last-child > button,
  .modal-how-implement > div:last-child > button,
  .modal-order > div:last-child > button,
  .modal-conditions > div:last-child > button,
  .modal-voucher > div:last-child > button {
    width: clamp(48.356px, 4.7222222222vw, 90.667px);
    height: clamp(48.356px, 4.7222222222vw, 90.667px);
    border-radius: clamp(31.289px, 3.0555555556vw, 58.667px);
    top: clamp(17.07px, 1.6666666667vw, 32px);
    right: clamp(17.07px, 1.6666666667vw, 32px);
  }
  .modal-how-get > div:last-child > button:hover,
  .modal-how-implement > div:last-child > button:hover,
  .modal-order > div:last-child > button:hover,
  .modal-conditions > div:last-child > button:hover,
  .modal-voucher > div:last-child > button:hover {
    background-color: #3c3c3c;
  }
}
.modal-how-get > div:last-child > button > svg,
.modal-how-implement > div:last-child > button > svg,
.modal-order > div:last-child > button > svg,
.modal-conditions > div:last-child > button > svg,
.modal-voucher > div:last-child > button > svg {
  width: 24px;
  height: 24px;
}
@media screen and (min-width: 1024px) {
  .modal-how-get > div:last-child > button > svg,
  .modal-how-implement > div:last-child > button > svg,
  .modal-order > div:last-child > button > svg,
  .modal-conditions > div:last-child > button > svg,
  .modal-voucher > div:last-child > button > svg {
    width: clamp(17.07px, 1.6666666667vw, 32px);
    height: clamp(17.07px, 1.6666666667vw, 32px);
  }
}
.modal-how-get > div:last-child > div,
.modal-how-implement > div:last-child > div,
.modal-order > div:last-child > div,
.modal-conditions > div:last-child > div,
.modal-voucher > div:last-child > div {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media screen and (min-width: 1024px) {
  .modal-how-get > div:last-child > div,
  .modal-how-implement > div:last-child > div,
  .modal-order > div:last-child > div,
  .modal-conditions > div:last-child > div,
  .modal-voucher > div:last-child > div {
    gap: clamp(19.911px, 1.9444444444vw, 37.333px);
  }
}
.modal-how-get > div:last-child > div > h2,
.modal-how-implement > div:last-child > div > h2,
.modal-order > div:last-child > div > h2,
.modal-conditions > div:last-child > div > h2,
.modal-voucher > div:last-child > div > h2 {
  color: #000;
  font-family: "e-Ukraine";
  font-size: 31px;
  font-style: normal;
  font-weight: 700;
  line-height: 114%;
}
@media screen and (min-width: 1024px) {
  .modal-how-get > div:last-child > div > h2,
  .modal-how-implement > div:last-child > div > h2,
  .modal-order > div:last-child > div > h2,
  .modal-conditions > div:last-child > div > h2,
  .modal-voucher > div:last-child > div > h2 {
    font-size: clamp(22.044px, 2.1527777778vw, 41.333px);
  }
}
.modal-how-get > div:last-child > div > ul,
.modal-how-implement > div:last-child > div > ul,
.modal-order > div:last-child > div > ul,
.modal-conditions > div:last-child > div > ul,
.modal-voucher > div:last-child > div > ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media screen and (min-width: 1024px) {
  .modal-how-get > div:last-child > div > ul,
  .modal-how-implement > div:last-child > div > ul,
  .modal-order > div:last-child > div > ul,
  .modal-conditions > div:last-child > div > ul,
  .modal-voucher > div:last-child > div > ul {
    gap: clamp(12.8px, 1.25vw, 24px);
  }
}
.modal-how-get > div:last-child > div > ul > li,
.modal-how-implement > div:last-child > div > ul > li,
.modal-order > div:last-child > div > ul > li,
.modal-conditions > div:last-child > div > ul > li,
.modal-voucher > div:last-child > div > ul > li {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (min-width: 1024px) {
  .modal-how-get > div:last-child > div > ul > li,
  .modal-how-implement > div:last-child > div > ul > li,
  .modal-order > div:last-child > div > ul > li,
  .modal-conditions > div:last-child > div > ul > li,
  .modal-voucher > div:last-child > div > ul > li {
    gap: clamp(5.69px, 0.5555555556vw, 10.67px);
  }
}
.modal-how-get > div:last-child > div > ul > li > svg,
.modal-how-implement > div:last-child > div > ul > li > svg,
.modal-order > div:last-child > div > ul > li > svg,
.modal-conditions > div:last-child > div > ul > li > svg,
.modal-voucher > div:last-child > div > ul > li > svg {
  min-width: 20px;
  width: 20px;
  height: 20px;
}
@media screen and (min-width: 1024px) {
  .modal-how-get > div:last-child > div > ul > li > svg,
  .modal-how-implement > div:last-child > div > ul > li > svg,
  .modal-order > div:last-child > div > ul > li > svg,
  .modal-conditions > div:last-child > div > ul > li > svg,
  .modal-voucher > div:last-child > div > ul > li > svg {
    min-width: clamp(14.222px, 1.3888888889vw, 26.667px);
    width: clamp(14.222px, 1.3888888889vw, 26.667px);
    height: clamp(14.222px, 1.3888888889vw, 26.667px);
  }
}
.modal-how-get > div:last-child > div > ul > li > p,
.modal-how-implement > div:last-child > div > ul > li > p,
.modal-order > div:last-child > div > ul > li > p,
.modal-conditions > div:last-child > div > ul > li > p,
.modal-voucher > div:last-child > div > ul > li > p {
  color: #000;
  font-family: "e-Ukraine";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (min-width: 1024px) {
  .modal-how-get > div:last-child > div > ul > li > p,
  .modal-how-implement > div:last-child > div > ul > li > p,
  .modal-order > div:last-child > div > ul > li > p,
  .modal-conditions > div:last-child > div > ul > li > p,
  .modal-voucher > div:last-child > div > ul > li > p {
    font-size: clamp(11.378px, 1.1111111111vw, 21.333px);
  }
}
.modal-how-get > div:last-child > div > div,
.modal-how-implement > div:last-child > div > div,
.modal-order > div:last-child > div > div,
.modal-conditions > div:last-child > div > div,
.modal-voucher > div:last-child > div > div {
  display: flex;
  align-items: center;
  padding: 8px 18px;
  gap: 8px;
  border-radius: 12px;
  background-color: #fff;
  margin-top: 16px;
}
@media screen and (min-width: 1024px) {
  .modal-how-get > div:last-child > div > div,
  .modal-how-implement > div:last-child > div > div,
  .modal-order > div:last-child > div > div,
  .modal-conditions > div:last-child > div > div,
  .modal-voucher > div:last-child > div > div {
    gap: clamp(5.69px, 0.5555555556vw, 10.67px);
    padding-block: clamp(5.69px, 0.5555555556vw, 10.67px);
    padding-inline: clamp(11.378px, 1.1111111111vw, 21.333px);
    margin-top: clamp(11.378px, 1.1111111111vw, 21.333px);
    border-radius: clamp(8.533px, 0.8333333333vw, 16px);
  }
}
.modal-how-get > div:last-child > div > div > svg,
.modal-how-implement > div:last-child > div > div > svg,
.modal-order > div:last-child > div > div > svg,
.modal-conditions > div:last-child > div > div > svg,
.modal-voucher > div:last-child > div > div > svg {
  min-width: 24px;
  width: 24px;
  height: 24px;
}
@media screen and (min-width: 1024px) {
  .modal-how-get > div:last-child > div > div > svg,
  .modal-how-implement > div:last-child > div > div > svg,
  .modal-order > div:last-child > div > div > svg,
  .modal-conditions > div:last-child > div > div > svg,
  .modal-voucher > div:last-child > div > div > svg {
    min-width: clamp(17.067px, 1.6666666667vw, 32px);
    width: clamp(17.067px, 1.6666666667vw, 32px);
    height: clamp(17.067px, 1.6666666667vw, 32px);
  }
}
.modal-how-get > div:last-child > div > div > span,
.modal-how-implement > div:last-child > div > div > span,
.modal-order > div:last-child > div > div > span,
.modal-conditions > div:last-child > div > div > span,
.modal-voucher > div:last-child > div > div > span {
  color: #000;
  font-family: "e-Ukraine";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (min-width: 1024px) {
  .modal-how-get > div:last-child > div > div > span,
  .modal-how-implement > div:last-child > div > div > span,
  .modal-order > div:last-child > div > div > span,
  .modal-conditions > div:last-child > div > div > span,
  .modal-voucher > div:last-child > div > div > span {
    font-size: clamp(11.378px, 1.1111111111vw, 21.333px);
  }
}

.is-hidden {
  opacity: 0;
  visibility: hidden;
}

#global-decor {
  pointer-events: none;
}

.decor-image {
  position: fixed;
  left: 0;
  top: 0;
  transform: translate3d(0, 0, 0) scale(1);
  will-change: transform, opacity;
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, var(--reveal-y, 24px), 0);
  will-change: transform, opacity;
}

#modal-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
#modal-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
#modal-menu > ul {
  padding: 120px 53px 120px;
  border-bottom-left-radius: 24px;
  background: #f1f1e9;
  box-shadow: 0 5.333px 32px -13.333px rgba(36, 36, 25, 0.15);
  max-width: 320px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(-12px) scale(0.98);
  opacity: 0;
  transition: transform 0.34s cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 0.34s ease;
}
@media screen and (min-width: 768px) {
  #modal-menu > ul {
    max-width: 530px;
    gap: 18px;
    padding: 150px 90px 200px;
  }
}
#modal-menu.is-open > ul {
  transform: none;
  opacity: 1;
}
#modal-menu > ul > li > button {
  background: transparent;
  border: 0;
  color: #000;
  font-family: "e-Ukraine";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%;
  text-transform: uppercase;
  padding: 6px 12px;
}
@media screen and (min-width: 768px) {
  #modal-menu > ul > li > button {
    font-size: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #modal-menu,
  #modal-menu > ul {
    transition: none;
  }
}
.about {
  max-width: 1920px;
  margin-inline: auto;
  padding: 60px 10px;
}
@media screen and (min-width: 768px) {
  .about {
    padding: 80px 32px;
  }
}
@media screen and (min-width: 1024px) {
  .about {
    padding-block: clamp(113.78px, 11.1111111111vw, 213.33px);
    padding-inline: clamp(26.31px, 2.5694444444vw, 49.33px);
  }
}
.about__container {
  padding: 24px 10px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-radius: 24px;
  background: #f1f1e9;
}
@media screen and (min-width: 768px) {
  .about__container {
    padding: 44px 24px;
  }
}
@media screen and (min-width: 1024px) {
  .about__container {
    border-radius: clamp(17.067px, 1.6666666667vw, 32px);
    padding: clamp(17.067px, 1.6666666667vw, 32px);
  }
}
.about__container > div {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 5px;
}
@media screen and (min-width: 1024px) {
  .about__container > div {
    padding: clamp(28.444px, 2.7777777778vw, 53.333px);
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.about__container > div > h2 {
  padding: 12px 24px;
  border-radius: 44px;
  background: #000;
  color: #fff;
  font-family: "e-Ukraine";
  font-size: 21px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 1024px) {
  .about__container > div > h2 {
    font-size: clamp(24.178px, 2.3611111111vw, 45.333px);
    padding-block: clamp(8.533px, 0.8333333333vw, 16px);
    padding-inline: clamp(17.067px, 1.6666666667vw, 32px);
    border-radius: clamp(31.289px, 3.0555555556vw, 58.667px);
    height: -moz-fit-content;
    height: fit-content;
  }
}
.about__container > div > p {
  color: #000;
  font-family: "e-Ukraine";
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
}
@media screen and (min-width: 1024px) {
  .about__container > div > p {
    font-size: clamp(17.067px, 1.6666666667vw, 32px);
    width: 56%;
  }
}
.about__container > img {
  height: 320px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 24px;
}
@media screen and (min-width: 1024px) {
  .about__container > img {
    border-radius: clamp(17.067px, 1.6666666667vw, 32px);
    height: clamp(362.667px, 35.4166666667vw, 680px);
  }
}

.result {
  max-width: 1920px;
  margin-inline: auto;
  padding-inline: 10px;
}
@media screen and (min-width: 768px) {
  .result {
    padding-inline: 32px;
  }
}
@media screen and (min-width: 1024px) {
  .result {
    padding-inline: clamp(26.31px, 2.5694444444vw, 49.33px);
  }
}
.result__container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (min-width: 768px) {
  .result__container {
    gap: 68px;
  }
}
@media screen and (min-width: 1024px) {
  .result__container {
    gap: clamp(57.36px, 5.5555555556vw, 107.67px);
  }
}
.result__container--head {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 1024px) {
  .result__container--head {
    gap: clamp(11.378px, 1.1111111111vw, 21.333px);
  }
}
.result__container--head > h2 {
  color: #000;
  text-align: center;
  font-family: "e-Ukraine";
  font-size: 31px;
  font-style: normal;
  font-weight: 700;
  line-height: 114%;
}
@media screen and (min-width: 1024px) {
  .result__container--head > h2 {
    font-size: clamp(33.422px, 3.2638888889vw, 62.667px);
  }
}
.result__container--head > p {
  color: #000;
  text-align: center;
  font-family: "e-Ukraine";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (min-width: 1024px) {
  .result__container--head > p {
    font-size: clamp(11.378px, 1.1111111111vw, 21.333px);
  }
}
.result__container--body {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (min-width: 768px) {
  .result__container--body {
    flex-direction: row;
    gap: 16px;
  }
}
.result__container--body > div {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 68px 10px 44px;
  border-radius: 24px;
  box-shadow: 0 4px 24px -10px rgba(36, 36, 25, 0.15);
}
@media screen and (min-width: 768px) {
  .result__container--body > div {
    width: 50%;
    padding: 68px 24px 44px;
  }
}
@media screen and (min-width: 1024px) {
  .result__container--body > div {
    border-radius: clamp(17.067px, 1.6666666667vw, 32px);
    gap: clamp(35.98px, 3.4722222222vw, 66.33px);
    padding: clamp(66.13px, 6.4583333333vw, 124px);
  }
}
.result__container--body > div > h2 {
  font-family: "e-Ukraine";
  font-size: 31px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
@media screen and (min-width: 1024px) {
  .result__container--body > div > h2 {
    font-size: clamp(33.422px, 3.2638888889vw, 62.667px);
  }
}
.result__container--body > div > ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 1024px) {
  .result__container--body > div > ul {
    gap: clamp(43.38px, 4.2361111111vw, 81.33px);
  }
}
.result__container--body > div > ul > li {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 10px;
}
@media screen and (min-width: 1024px) {
  .result__container--body > div > ul > li {
    gap: clamp(12.8px, 1.25vw, 24px);
    padding: 0;
  }
}
.result__container--body > div > ul > li > div {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media screen and (min-width: 1024px) {
  .result__container--body > div > ul > li > div {
    gap: clamp(9.956px, 0.9722222222vw, 18.667px);
  }
}
.result__container--body > div > ul > li > div > svg {
  width: 68px;
  height: 68px;
}
@media screen and (min-width: 1024px) {
  .result__container--body > div > ul > li > div > svg {
    width: clamp(48.356px, 4.7222222222vw, 90.667px);
    height: clamp(48.356px, 4.7222222222vw, 90.667px);
  }
}
.result__container--body > div > ul > li > div > div {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (min-width: 1024px) {
  .result__container--body > div > ul > li > div > div {
    gap: clamp(5.69px, 0.5555555556vw, 10.67px);
  }
}
.result__container--body > div > ul > li > div > div > span:first-child {
  font-family: "e-Ukraine Head";
  font-size: 31px;
  font-style: normal;
  font-weight: 700;
  line-height: 114%;
}
@media screen and (min-width: 1024px) {
  .result__container--body > div > ul > li > div > div > span:first-child {
    font-size: clamp(33.422px, 3.2638888889vw, 62.667px);
  }
}
.result__container--body > div > ul > li > div > div > span:last-child {
  font-family: "e-Ukraine Head";
  font-size: 21px;
  font-style: normal;
  font-weight: 700;
  line-height: 114%;
}
@media screen and (min-width: 1024px) {
  .result__container--body > div > ul > li > div > div > span:last-child {
    font-size: clamp(14.933px, 1.4583333333vw, 28px);
  }
}
.result__container--body > div > ul > li > p {
  font-family: "e-Ukraine";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (min-width: 1024px) {
  .result__container--body > div > ul > li > p {
    font-size: clamp(11.378px, 1.1111111111vw, 21.333px);
  }
}
.result__container--body > div:first-child {
  background: #000;
  color: #fff;
}
.result__container--body > div:last-child {
  background: #f1f1e9;
  color: #000;
}

.compensation {
  max-width: 1920px;
  margin-inline: auto;
  padding: 120px 10px;
}
@media screen and (min-width: 768px) {
  .compensation {
    padding: 120px 32px;
  }
}
@media screen and (min-width: 1024px) {
  .compensation {
    padding-inline: clamp(26.31px, 2.5694444444vw, 49.33px);
    padding-block: clamp(113.78px, 11.1111111111vw, 213.33px);
  }
}
.compensation__container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (min-width: 768px) {
  .compensation__container {
    gap: 68px;
  }
}
@media screen and (min-width: 1024px) {
  .compensation__container {
    gap: clamp(57.69px, 5.5555555556vw, 108.67px);
  }
}
.compensation__container > h2 {
  color: #000;
  text-align: center;
  font-family: "e-Ukraine";
  font-size: 31px;
  font-style: normal;
  font-weight: 700;
  line-height: 114%;
}
@media screen and (min-width: 1024px) {
  .compensation__container > h2 {
    font-size: clamp(33.422px, 3.2638888889vw, 62.667px);
    max-width: clamp(561.778px, 54.8611111111vw, 1053.333px);
    margin-inline: auto;
  }
}
.compensation__container > div {
  border-radius: 24px;
  background: #f1f1e9;
  box-shadow: 0 4px 24px -10px rgba(36, 36, 25, 0.15);
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 68px 10px;
}
@media screen and (min-width: 768px) {
  .compensation__container > div {
    padding: 88px 90px;
    gap: 68px;
  }
}
@media screen and (min-width: 1024px) {
  .compensation__container > div {
    gap: clamp(57.69px, 5.5555555556vw, 108.67px);
    padding-block: clamp(71.11px, 6.9444444444vw, 133.33px);
    padding-inline: clamp(81.78px, 7.9861111111vw, 153.33px);
  }
}
.compensation__container > div > h3 {
  padding: 12px 24px;
  border-radius: 55px;
  background: #000;
  color: #fff;
  font-family: "e-Ukraine";
  font-size: 21px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 1024px) {
  .compensation__container > div > h3 {
    font-size: clamp(22.044px, 2.1527777778vw, 41.333px);
    padding-block: clamp(8.533px, 0.8333333333vw, 16px);
    padding-inline: clamp(17.067px, 1.6666666667vw, 32px);
    border-radius: clamp(31.289px, 3.0555555556vw, 58.667px);
    height: -moz-fit-content;
    height: fit-content;
    width: 100%;
  }
}
.compensation__container > div > div {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media screen and (min-width: 1024px) {
  .compensation__container > div > div {
    gap: clamp(28.444px, 2.7777777778vw, 53.333px);
  }
}
.compensation__container > div > div > h4 {
  color: #000;
  text-align: center;
  font-family: "e-Ukraine";
  font-size: 27px;
  font-style: normal;
  font-weight: 700;
  line-height: 114%;
}
@media screen and (min-width: 1024px) {
  .compensation__container > div > div > h4 {
    font-size: clamp(22.044px, 2.1527777778vw, 41.333px);
  }
}
.compensation__container > div > div > ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-inline: 10px;
}
@media screen and (min-width: 768px) {
  .compensation__container > div > div > ul {
    padding-inline: 0;
  }
}
@media screen and (min-width: 1024px) {
  .compensation__container > div > div > ul {
    flex-direction: row;
    justify-content: space-between;
    gap: unset;
  }
}
.compensation__container > div > div > ul > li {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (min-width: 1024px) {
  .compensation__container > div > div > ul > li {
    width: clamp(235px, 22.9166666667vw, 440px);
    gap: clamp(17.067px, 1.6666666667vw, 32px);
  }
}
.compensation__container > div > div > ul > li > svg {
  min-width: 68px;
  width: 68px;
  height: 68px;
}
@media screen and (min-width: 1024px) {
  .compensation__container > div > div > ul > li > svg {
    min-width: clamp(76.8px, 7.5vw, 144px);
    width: clamp(76.8px, 7.5vw, 144px);
    height: clamp(76.8px, 7.5vw, 144px);
  }
}
.compensation__container > div > div > ul > li > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 1024px) {
  .compensation__container > div > div > ul > li > div {
    gap: clamp(5.69px, 0.5555555556vw, 10.67px);
  }
}
.compensation__container > div > div > ul > li > div > div {
  display: flex;
  flex-direction: column;
}
.compensation__container > div > div > ul > li > div > div > span {
  color: #000;
  font-family: "e-Ukraine Head";
  font-size: 31px;
  font-style: normal;
  font-weight: 700;
  line-height: 114%;
}
@media screen and (min-width: 1024px) {
  .compensation__container > div > div > ul > li > div > div > span {
    font-size: clamp(33.422px, 3.2638888889vw, 62.667px);
  }
}
.compensation__container > div > div > ul > li > div > div > span:first-child,
.compensation__container > div > div > ul > li > div > div > span:last-child {
  font-size: 21px;
}
@media screen and (min-width: 1024px) {
  .compensation__container > div > div > ul > li > div > div > span:first-child,
  .compensation__container > div > div > ul > li > div > div > span:last-child {
    font-size: clamp(14.933px, 1.4583333333vw, 28px);
  }
}
.compensation__container > div > div > ul > li > div > p {
  color: #000;
  font-family: "e-Ukraine";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (min-width: 1024px) {
  .compensation__container > div > div > ul > li > div > p {
    font-size: clamp(11.378px, 1.1111111111vw, 21.333px);
  }
}

.how-get-compensation {
  max-width: 1920px;
  margin-inline: auto;
  padding-inline: 10px;
}
@media screen and (min-width: 768px) {
  .how-get-compensation {
    padding-inline: 32px;
  }
}
@media screen and (min-width: 1024px) {
  .how-get-compensation {
    padding-inline: clamp(190px, 18.5416666667vw, 356px);
  }
}
.how-get-compensation__container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (min-width: 768px) {
  .how-get-compensation__container {
    gap: 68px;
  }
}
@media screen and (min-width: 1024px) {
  .how-get-compensation__container {
    gap: clamp(57.69px, 5.5555555556vw, 108.67px);
  }
}
.how-get-compensation__container > h2 {
  color: #000;
  text-align: center;
  font-family: "e-Ukraine";
  font-size: 31px;
  font-style: normal;
  font-weight: 700;
  line-height: 114%;
}
@media screen and (min-width: 1024px) {
  .how-get-compensation__container > h2 {
    font-size: clamp(33.422px, 3.2638888889vw, 62.667px);
    max-width: clamp(561.778px, 54.8611111111vw, 1053.333px);
    margin-inline: auto;
  }
}
.how-get-compensation__container > ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .how-get-compensation__container > ul {
    padding-inline: 92px;
  }
}
@media screen and (min-width: 1024px) {
  .how-get-compensation__container > ul {
    padding-inline: unset;
    gap: clamp(11.378px, 1.1111111111vw, 21.333px);
  }
}
.how-get-compensation__container > ul > li {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px;
  border-radius: 24px;
  background: #f1f1e9;
  box-shadow: 0 4px 14px -10px rgba(36, 36, 25, 0.11);
}
@media screen and (min-width: 1024px) {
  .how-get-compensation__container > ul > li {
    border-radius: clamp(17.067px, 1.6666666667vw, 32px);
    gap: clamp(17.067px, 1.6666666667vw, 32px);
    padding: clamp(11.378px, 1.1111111111vw, 21.333px);
  }
}
.how-get-compensation__container > ul > li > span {
  min-width: 68px;
  width: 68px;
  height: 68px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  color: #fff;
  font-family: "e-Ukraine";
  font-size: 31px;
  font-style: normal;
  font-weight: 700;
  line-height: 114%;
}
@media screen and (min-width: 1024px) {
  .how-get-compensation__container > ul > li > span {
    font-size: clamp(33.422px, 3.2638888889vw, 62.667px);
    min-width: clamp(62.578px, 6.1111111111vw, 117.333px);
    width: clamp(62.578px, 6.1111111111vw, 117.333px);
    height: clamp(62.578px, 6.1111111111vw, 117.333px);
    border-radius: clamp(8.533px, 0.8333333333vw, 16px);
  }
}
.how-get-compensation__container > ul > li > h3 {
  color: #000;
  font-family: "e-Ukraine";
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
}
@media screen and (min-width: 1024px) {
  .how-get-compensation__container > ul > li > h3 {
    font-size: clamp(17.067px, 1.6666666667vw, 32px);
  }
}

.conditions {
  max-width: 1920px;
  margin-inline: auto;
  padding: 120px 10px;
}
@media screen and (min-width: 768px) {
  .conditions {
    padding: 120px 32px;
  }
}
@media screen and (min-width: 1024px) {
  .conditions {
    padding-inline: clamp(26.31px, 2.5694444444vw, 49.33px);
    padding-block: clamp(113.78px, 11.1111111111vw, 213.33px);
  }
}
.conditions__container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (min-width: 768px) {
  .conditions__container {
    gap: 68px;
  }
}
@media screen and (min-width: 1024px) {
  .conditions__container {
    gap: clamp(57.69px, 5.5555555556vw, 108.67px);
  }
}
.conditions__container > h2 {
  color: #000;
  text-align: center;
  font-family: "e-Ukraine";
  font-size: 31px;
  font-style: normal;
  font-weight: 700;
  line-height: 114%;
}
@media screen and (min-width: 1024px) {
  .conditions__container > h2 {
    font-size: clamp(33.422px, 3.2638888889vw, 62.667px);
    max-width: clamp(561.778px, 54.8611111111vw, 1053.333px);
    margin-inline: auto;
  }
}
.conditions__container > ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .conditions__container > ul {
    padding-inline: 92px;
  }
}
@media screen and (min-width: 1024px) {
  .conditions__container > ul {
    padding-inline: unset;
    gap: clamp(11.378px, 1.1111111111vw, 21.333px);
    flex-direction: row;
    justify-content: center;
  }
}
.conditions__container > ul > li {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: 24px;
  background: #f1f1e9;
  box-shadow: 0 4px 24px -10px rgba(36, 36, 25, 0.15);
}
@media screen and (min-width: 1024px) {
  .conditions__container > ul > li {
    border-radius: clamp(17.067px, 1.6666666667vw, 32px);
    padding: clamp(17.067px, 1.6666666667vw, 32px);
    width: clamp(261.689px, 25.5555555556vw, 490.667px);
  }
}
.conditions__container > ul > li > svg {
  min-width: 68px;
  width: 68px;
  height: 68px;
  margin-left: auto;
}
@media screen and (min-width: 1024px) {
  .conditions__container > ul > li > svg {
    min-width: clamp(76.8px, 7.5vw, 144px);
    width: clamp(76.8px, 7.5vw, 144px);
    height: clamp(76.8px, 7.5vw, 144px);
  }
}
.conditions__container > ul > li > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media screen and (min-width: 1024px) {
  .conditions__container > ul > li > div {
    gap: clamp(2.844px, 0.2777777778vw, 5.333px);
  }
}
.conditions__container > ul > li > div > span {
  color: #000;
  font-family: "e-Ukraine Head";
  font-size: 21px;
  font-style: normal;
  font-weight: 700;
  line-height: 114%;
}
@media screen and (min-width: 1024px) {
  .conditions__container > ul > li > div > span {
    font-size: clamp(14.933px, 1.4583333333vw, 28px);
  }
}
.conditions__container > ul > li > div > div {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (min-width: 1024px) {
  .conditions__container > ul > li > div > div {
    gap: clamp(5.69px, 0.5555555556vw, 10.67px);
  }
}
.conditions__container > ul > li > div > div > span {
  color: #000;
  font-family: "e-Ukraine Head";
  font-size: 31px;
  font-style: normal;
  font-weight: 700;
  line-height: 114%;
}
@media screen and (min-width: 1024px) {
  .conditions__container > ul > li > div > div > span {
    font-size: clamp(33.422px, 3.2638888889vw, 62.667px);
  }
}
.conditions__container > ul > li > div > div > span:last-child {
  font-size: 21px;
}
@media screen and (min-width: 1024px) {
  .conditions__container > ul > li > div > div > span:last-child {
    font-size: clamp(14.933px, 1.4583333333vw, 28px);
  }
}
.conditions__container > ul > li > div > p {
  color: #000;
  font-family: "e-Ukraine";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (min-width: 1024px) {
  .conditions__container > ul > li > div > p {
    font-size: clamp(11.378px, 1.1111111111vw, 21.333px);
  }
}

.variant {
  max-width: 1920px;
  margin-inline: auto;
  padding-inline: 10px;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .variant {
    padding-inline: 32px;
    padding-bottom: 60px;
  }
}
@media screen and (min-width: 1024px) {
  .variant {
    padding-inline: clamp(108.09px, 10.5555555556vw, 202.67px);
    padding-bottom: clamp(56.89px, 5.5555555556vw, 106.66px);
  }
}
.variant__container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (min-width: 768px) {
  .variant__container {
    gap: 68px;
  }
}
@media screen and (min-width: 1024px) {
  .variant__container {
    gap: clamp(57.69px, 5.5555555556vw, 108.67px);
  }
}
.variant__container > h2 {
  color: #000;
  text-align: center;
  font-family: "e-Ukraine";
  font-size: 31px;
  font-style: normal;
  font-weight: 700;
  line-height: 114%;
}
@media screen and (min-width: 1024px) {
  .variant__container > h2 {
    font-size: clamp(33.422px, 3.2638888889vw, 62.667px);
    max-width: clamp(561.778px, 54.8611111111vw, 1053.333px);
    margin-inline: auto;
  }
}
.variant__container > div {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media screen and (min-width: 1024px) {
  .variant__container > div {
    gap: clamp(113.78px, 11.1111111111vw, 213.33px);
  }
}
.variant__container > div > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 78px;
  padding: 48px 10px 28px;
  border-radius: 24px;
  background: #f1f1e9;
  box-shadow: 0 4px 24px -10px rgba(36, 36, 25, 0.15);
}
@media screen and (min-width: 768px) {
  .variant__container > div > div {
    padding: 80px 48px;
    gap: 64px;
  }
}
@media screen and (min-width: 1024px) {
  .variant__container > div > div {
    border-radius: clamp(17.067px, 1.6666666667vw, 32px);
    gap: clamp(28.444px, 2.7777777778vw, 53.333px);
    padding-block: clamp(64px, 5.9027777778vw, 120px);
    padding-left: clamp(81.78px, 7.9861111111vw, 153.333px);
    padding-right: clamp(35.84px, 3.4722222222vw, 66px);
    flex-direction: row;
  }
}
.variant__container > div > div > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 1024px) {
  .variant__container > div > div > div:first-child {
    width: 50%;
    gap: clamp(16.96px, 1.6666666667vw, 31.67px);
  }
}
.variant__container > div > div > div:first-child > h3 {
  color: #16b9b2;
  font-family: "e-Ukraine";
  font-size: 27px;
  font-style: normal;
  font-weight: 700;
  line-height: 114%;
}
@media screen and (min-width: 1024px) {
  .variant__container > div > div > div:first-child > h3 {
    font-size: clamp(22.044px, 2.1527777778vw, 41.333px);
  }
}
.variant__container > div > div > div:first-child > div {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media screen and (min-width: 1024px) {
  .variant__container > div > div > div:first-child > div {
    gap: clamp(19.911px, 1.9444444444vw, 37.333px);
  }
}
.variant__container > div > div > div:first-child > div > h4 {
  color: #000;
  font-family: "e-Ukraine";
  font-size: 21px;
  font-style: normal;
  font-weight: 700;
  line-height: 114%;
}
@media screen and (min-width: 1024px) {
  .variant__container > div > div > div:first-child > div > h4 {
    font-size: clamp(14.933px, 1.4583333333vw, 28px);
  }
}
.variant__container > div > div > div:first-child > div > ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media screen and (min-width: 1024px) {
  .variant__container > div > div > div:first-child > div > ul {
    gap: clamp(12.8px, 1.25vw, 24px);
  }
}
.variant__container > div > div > div:first-child > div > ul > li {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (min-width: 1024px) {
  .variant__container > div > div > div:first-child > div > ul > li {
    gap: clamp(5.69px, 0.5555555556vw, 10.67px);
  }
}
.variant__container > div > div > div:first-child > div > ul > li > svg {
  min-width: 20px;
  width: 20px;
  height: 20px;
}
@media screen and (min-width: 1024px) {
  .variant__container > div > div > div:first-child > div > ul > li > svg {
    min-width: clamp(14.222px, 1.3888888889vw, 26.667px);
    width: clamp(14.222px, 1.3888888889vw, 26.667px);
    height: clamp(14.222px, 1.3888888889vw, 26.667px);
  }
}
.variant__container > div > div > div:first-child > div > ul > li > p {
  color: #000;
  font-family: "e-Ukraine";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (min-width: 1024px) {
  .variant__container > div > div > div:first-child > div > ul > li > p {
    font-size: clamp(11.378px, 1.1111111111vw, 21.333px);
  }
}
.variant__container > div > div > div:last-child {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 78px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .variant__container > div > div > div:last-child {
    gap: 64px;
  }
}
@media screen and (min-width: 1024px) {
  .variant__container > div > div > div:last-child {
    width: 50%;
    gap: clamp(31.29px, 2.9166666667vw, 58.67px);
  }
}
.variant__container > div > div > div:last-child > svg {
  width: 214px;
  height: 214px;
}
@media screen and (min-width: 768px) {
  .variant__container > div > div > div:last-child > svg {
    width: 281px;
    height: 281px;
  }
}
@media screen and (min-width: 1024px) {
  .variant__container > div > div > div:last-child > svg {
    width: clamp(198.4px, 19.375vw, 372px);
    height: clamp(198.4px, 19.375vw, 372px);
  }
}
.variant__container > div > div > div:last-child > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .variant__container > div > div > div:last-child > div {
    flex-direction: row;
  }
}
@media screen and (min-width: 1024px) {
  .variant__container > div > div > div:last-child > div {
    gap: clamp(5.69px, 0.5555555556vw, 10.67px);
    justify-content: center;
  }
}
.variant__container > div > div > div:last-child > div > button {
  display: flex;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  border-radius: 35px;
  border: none;
  font-family: "e-Ukraine";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%;
  transition: all 0.5s ease-in-out;
}
@media screen and (min-width: 768px) {
  .variant__container > div > div > div:last-child > div > button {
    width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .variant__container > div > div > div:last-child > div > button {
    padding-block: clamp(8.533px, 0.8333333333vw, 16px);
    padding-inline: clamp(17.067px, 1.6666666667vw, 32px);
    border-radius: clamp(24.889px, 2.4305555556vw, 46.667px);
    font-size: clamp(9.956px, 0.9722222222vw, 18.667px);
    width: -moz-fit-content;
    width: fit-content;
  }
}
.variant__container > div > div > div:last-child > div > button:first-child {
  background: #000;
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .variant__container
    > div
    > div
    > div:last-child
    > div
    > button:first-child:hover {
    background: #3c3c3c;
  }
}
.variant__container > div > div > div:last-child > div > button:last-child {
  background: #16b9b2;
  color: #000;
}
@media screen and (min-width: 1024px) {
  .variant__container
    > div
    > div
    > div:last-child
    > div
    > button:last-child:hover {
    background: #34d7d0;
  }
}

@media screen and (min-width: 1024px) {
  .vpo li {
    width: clamp(261.689px, 25.5555555556vw, 490.667px);
  }
}

@media screen and (min-width: 1024px) {
  .abd li {
    width: clamp(193.422px, 18.8888888889vw, 362.667px);
  }
}

.vpo,
.abd {
  max-width: 1920px;
  margin-inline: auto;
  padding: 60px 10px 0;
}
@media screen and (min-width: 768px) {
  .vpo,
  .abd {
    padding: 60px 32px 0;
  }
}
@media screen and (min-width: 1024px) {
  .vpo,
  .abd {
    padding-inline: clamp(26.31px, 2.5694444444vw, 49.33px);
    padding-top: clamp(56.89px, 5.5555555556vw, 106.66px);
    padding-bottom: 0;
  }
}
.vpo__container,
.abd__container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (min-width: 768px) {
  .vpo__container,
  .abd__container {
    gap: 68px;
  }
}
@media screen and (min-width: 1024px) {
  .vpo__container,
  .abd__container {
    gap: clamp(57.69px, 5.5555555556vw, 108.67px);
  }
}
.vpo__container > div:first-child,
.abd__container > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 1024px) {
  .vpo__container > div:first-child,
  .abd__container > div:first-child {
    gap: clamp(11.378px, 1.1111111111vw, 21.333px);
  }
}
.vpo__container > div:first-child > h2,
.abd__container > div:first-child > h2 {
  color: #000;
  text-align: center;
  font-family: "e-Ukraine";
  font-size: 31px;
  font-style: normal;
  font-weight: 700;
  line-height: 114%;
}
@media screen and (min-width: 1024px) {
  .vpo__container > div:first-child > h2,
  .abd__container > div:first-child > h2 {
    font-size: clamp(33.422px, 3.2638888889vw, 62.667px);
    max-width: clamp(561.778px, 54.8611111111vw, 1053.333px);
    margin-inline: auto;
  }
}
.vpo__container > div:first-child > p,
.abd__container > div:first-child > p {
  color: #000;
  text-align: center;
  font-family: "e-Ukraine";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (min-width: 1024px) {
  .vpo__container > div:first-child > p,
  .abd__container > div:first-child > p {
    font-size: clamp(11.378px, 1.1111111111vw, 21.333px);
  }
}
.vpo__container > div:last-child,
.abd__container > div:last-child {
  display: flex;
  flex-direction: column;
}
.vpo__container > div:last-child > div,
.abd__container > div:last-child > div {
  position: relative;
  width: 100%;
}
.vpo__container > div:last-child > div > img,
.abd__container > div:last-child > div > img {
  width: 100%;
  height: 340px;
  border-radius: 24px;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
@media screen and (min-width: 1024px) {
  .vpo__container > div:last-child > div > img,
  .abd__container > div:last-child > div > img {
    border-radius: clamp(17.067px, 1.6666666667vw, 32px);
    height: clamp(433.778px, 42.3611111111vw, 813.333px);
  }
}
.vpo__container > div:last-child > div::after,
.abd__container > div:last-child > div::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
}
.vpo__container > div:last-child > ul,
.abd__container > div:last-child > ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-inline: 10px;
  position: relative;
  top: -80px;
}
@media screen and (min-width: 768px) {
  .vpo__container > div:last-child > ul,
  .abd__container > div:last-child > ul {
    padding-inline: 92px;
  }
}
@media screen and (min-width: 1024px) {
  .vpo__container > div:last-child > ul,
  .abd__container > div:last-child > ul {
    gap: clamp(11.378px, 1.1111111111vw, 21.333px);
    top: clamp(-160px, -8.3333333333vw, -85.338px);
    padding-inline: unset;
    flex-direction: row;
    justify-content: center;
  }
}
.vpo__container > div:last-child > ul > li,
.abd__container > div:last-child > ul > li {
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 28px;
  border-radius: 24px;
  background: #f1f1e9;
  box-shadow: 0 4px 24px -10px rgba(36, 36, 25, 0.15);
}
@media screen and (min-width: 1024px) {
  .vpo__container > div:last-child > ul > li,
  .abd__container > div:last-child > ul > li {
    border-radius: clamp(17.067px, 1.6666666667vw, 32px);
    gap: clamp(17.067px, 1.6666666667vw, 32px);
    padding: clamp(17.067px, 1.6666666667vw, 32px);
  }
}
.vpo__container > div:last-child > ul > li > svg,
.abd__container > div:last-child > ul > li > svg {
  min-width: 68px;
  width: 68px;
  height: 68px;
}
@media screen and (min-width: 1024px) {
  .vpo__container > div:last-child > ul > li > svg,
  .abd__container > div:last-child > ul > li > svg {
    min-width: clamp(76.8px, 7.5vw, 144px);
    width: clamp(76.8px, 7.5vw, 144px);
    height: clamp(76.8px, 7.5vw, 144px);
  }
}
.vpo__container > div:last-child > ul > li > p,
.abd__container > div:last-child > ul > li > p {
  color: #000;
  font-family: "e-Ukraine";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (min-width: 1024px) {
  .vpo__container > div:last-child > ul > li > p,
  .abd__container > div:last-child > ul > li > p {
    font-size: clamp(11.378px, 1.1111111111vw, 21.333px);
  }
}

.voucher {
  max-width: 1920px;
  margin-inline: auto;
  padding-inline: 10px;
}
@media screen and (min-width: 768px) {
  .voucher {
    padding-inline: 32px;
  }
}
@media screen and (min-width: 1024px) {
  .voucher {
    padding-inline: clamp(108.09px, 10.5555555556vw, 202.67px);
  }
}
.voucher__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 78px;
  padding: 48px 10px 28px;
  border-radius: 24px;
  background: #f1f1e9;
  box-shadow: 0 4px 24px -10px rgba(36, 36, 25, 0.15);
}
@media screen and (min-width: 768px) {
  .voucher__container {
    padding: 80px 48px;
    gap: 64px;
  }
}
@media screen and (min-width: 1024px) {
  .voucher__container {
    border-radius: clamp(17.067px, 1.6666666667vw, 32px);
    gap: clamp(28.444px, 2.7777777778vw, 53.333px);
    padding-block: clamp(64px, 5.9027777778vw, 120px);
    padding-left: clamp(81.78px, 7.9861111111vw, 153.333px);
    padding-right: clamp(35.84px, 3.4722222222vw, 66px);
    flex-direction: row;
  }
}
.voucher__container > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 1024px) {
  .voucher__container > div:first-child {
    width: 50%;
    gap: clamp(16.96px, 1.6666666667vw, 31.67px);
  }
}
.voucher__container > div:first-child > h2 {
  color: #16b9b2;
  font-family: "e-Ukraine";
  font-size: 27px;
  font-style: normal;
  font-weight: 700;
  line-height: 114%;
}
@media screen and (min-width: 1024px) {
  .voucher__container > div:first-child > h2 {
    font-size: clamp(22.044px, 2.1527777778vw, 41.333px);
  }
}
.voucher__container > div:first-child > div {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media screen and (min-width: 1024px) {
  .voucher__container > div:first-child > div {
    gap: clamp(19.911px, 1.9444444444vw, 37.333px);
  }
}
.voucher__container > div:first-child > div > h3 {
  color: #000;
  font-family: "e-Ukraine";
  font-size: 21px;
  font-style: normal;
  font-weight: 700;
  line-height: 114%;
}
@media screen and (min-width: 1024px) {
  .voucher__container > div:first-child > div > h3 {
    font-size: clamp(14.933px, 1.4583333333vw, 28px);
  }
}
.voucher__container > div:first-child > div > ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media screen and (min-width: 1024px) {
  .voucher__container > div:first-child > div > ul {
    gap: clamp(12.8px, 1.25vw, 24px);
  }
}
.voucher__container > div:first-child > div > ul > li {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (min-width: 1024px) {
  .voucher__container > div:first-child > div > ul > li {
    gap: clamp(5.69px, 0.5555555556vw, 10.67px);
  }
}
.voucher__container > div:first-child > div > ul > li > svg {
  min-width: 20px;
  width: 20px;
  height: 20px;
}
@media screen and (min-width: 1024px) {
  .voucher__container > div:first-child > div > ul > li > svg {
    min-width: clamp(14.222px, 1.3888888889vw, 26.667px);
    width: clamp(14.222px, 1.3888888889vw, 26.667px);
    height: clamp(14.222px, 1.3888888889vw, 26.667px);
  }
}
.voucher__container > div:first-child > div > ul > li > p {
  color: #000;
  font-family: "e-Ukraine";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (min-width: 1024px) {
  .voucher__container > div:first-child > div > ul > li > p {
    font-size: clamp(11.378px, 1.1111111111vw, 21.333px);
  }
}
.voucher__container > div:last-child {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 52px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .voucher__container > div:last-child {
    gap: 48px;
  }
}
@media screen and (min-width: 1024px) {
  .voucher__container > div:last-child {
    width: 50%;
    gap: clamp(17.067px, 1.6666666667vw, 32px);
  }
}
.voucher__container > div:last-child > svg {
  width: 214px;
  height: 178px;
}
@media screen and (min-width: 768px) {
  .voucher__container > div:last-child > svg {
    width: 291px;
    height: 242px;
  }
}
@media screen and (min-width: 1024px) {
  .voucher__container > div:last-child > svg {
    width: clamp(239.644px, 23.4027777778vw, 449.333px);
    height: clamp(199.111px, 19.4444444444vw, 373.333px);
  }
}
.voucher__container > div:last-child > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .voucher__container > div:last-child > div {
    flex-direction: row;
  }
}
@media screen and (min-width: 1024px) {
  .voucher__container > div:last-child > div {
    gap: clamp(5.69px, 0.5555555556vw, 10.67px);
    justify-content: center;
  }
}
.voucher__container > div:last-child > div > button {
  display: flex;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  border-radius: 35px;
  border: none;
  font-family: "e-Ukraine";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%;
  transition: all 0.5s ease-in-out;
}
@media screen and (min-width: 768px) {
  .voucher__container > div:last-child > div > button {
    width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .voucher__container > div:last-child > div > button {
    padding-block: clamp(8.533px, 0.8333333333vw, 16px);
    padding-inline: clamp(17.067px, 1.6666666667vw, 32px);
    border-radius: clamp(24.889px, 2.4305555556vw, 46.667px);
    font-size: clamp(9.956px, 0.9722222222vw, 18.667px);
    width: -moz-fit-content;
    width: fit-content;
  }
}
.voucher__container > div:last-child > div > button:first-child {
  background: #000;
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .voucher__container > div:last-child > div > button:first-child:hover {
    background: #3c3c3c;
  }
}
.voucher__container > div:last-child > div > button:last-child {
  background: #16b9b2;
  color: #000;
}
@media screen and (min-width: 1024px) {
  .voucher__container > div:last-child > div > button:last-child:hover {
    background: #34d7d0;
  }
}

.request {
  padding-top: 0 !important;
}
.request > div > ul > li > a > div > h3 {
  font-size: 31px;
  font-style: normal;
  font-weight: 700;
  line-height: 114%;
}
@media screen and (min-width: 1024px) {
  .request > div > ul > li > a > div > h3 {
    font-size: clamp(33.422px, 3.2638888889vw, 62.667px);
  }
}
.request > div > ul > li > a > div > span {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (min-width: 1024px) {
  .request > div > ul > li > a > div > span {
    font-size: clamp(11.378px, 1.1111111111vw, 21.333px);
  }
}

.contact,
.request {
  max-width: 1920px;
  margin-inline: auto;
  padding: 120px 10px;
}
@media screen and (min-width: 768px) {
  .contact,
  .request {
    padding: 120px 32px;
  }
}
@media screen and (min-width: 1024px) {
  .contact,
  .request {
    padding-inline: clamp(26.31px, 2.5694444444vw, 49.33px);
    padding-block: clamp(113.78px, 11.1111111111vw, 213.33px);
  }
}
.contact__container,
.request__container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (min-width: 768px) {
  .contact__container,
  .request__container {
    gap: 68px;
  }
}
@media screen and (min-width: 1024px) {
  .contact__container,
  .request__container {
    gap: clamp(57.69px, 5.5555555556vw, 108.67px);
  }
}
.contact__container > h2,
.request__container > h2 {
  color: #000;
  text-align: center;
  font-family: "e-Ukraine";
  font-size: 31px;
  font-style: normal;
  font-weight: 700;
  line-height: 114%;
}
@media screen and (min-width: 1024px) {
  .contact__container > h2,
  .request__container > h2 {
    font-size: clamp(33.422px, 3.2638888889vw, 62.667px);
    max-width: clamp(561.778px, 54.8611111111vw, 1053.333px);
    margin-inline: auto;
  }
}
.contact__container > ul,
.request__container > ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .contact__container > ul,
  .request__container > ul {
    flex-direction: row;
    gap: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .contact__container > ul,
  .request__container > ul {
    gap: clamp(11.378px, 1.1111111111vw, 21.333px);
    justify-content: center;
  }
}
@media screen and (min-width: 768px) {
  .contact__container > ul > li,
  .request__container > ul > li {
    width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .contact__container > ul > li,
  .request__container > ul > li {
    max-width: clamp(398.222px, 38.8888888889vw, 746.667px);
  }
}
.contact__container > ul > li > a,
.request__container > ul > li > a {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 12px;
  text-decoration: none;
  border-radius: 24px;
  background: #f1f1e9;
  box-shadow: 0 4px 24px -10px rgba(36, 36, 25, 0.15);
}
@media screen and (min-width: 1024px) {
  .contact__container > ul > li > a,
  .request__container > ul > li > a {
    padding-block: clamp(17.067px, 1.6666666667vw, 32px);
    padding-inline: clamp(31.289px, 3.0555555556vw, 58.667px);
    gap: clamp(17.067px, 1.6666666667vw, 32px);
    border-radius: clamp(17.067px, 1.6666666667vw, 32px);
  }
}
.contact__container > ul > li > a > svg:first-child,
.request__container > ul > li > a > svg:first-child {
  min-width: 68px;
  width: 68px;
  height: 68px;
}
@media screen and (min-width: 1024px) {
  .contact__container > ul > li > a > svg:first-child,
  .request__container > ul > li > a > svg:first-child {
    min-width: clamp(48.356px, 4.7222222222vw, 90.667px);
    width: clamp(48.356px, 4.7222222222vw, 90.667px);
    height: clamp(48.356px, 4.7222222222vw, 90.667px);
  }
}
.contact__container > ul > li > a > svg:last-child,
.request__container > ul > li > a > svg:last-child {
  margin-top: auto;
  margin-left: auto;
  min-width: 24px;
  width: 24px;
  height: 24px;
}
@media screen and (min-width: 1024px) {
  .contact__container > ul > li > a > svg:last-child,
  .request__container > ul > li > a > svg:last-child {
    min-width: clamp(17.067px, 1.6666666667vw, 32px);
    width: clamp(17.067px, 1.6666666667vw, 32px);
    height: clamp(17.067px, 1.6666666667vw, 32px);
  }
}
.contact__container > ul > li > a > div,
.request__container > ul > li > a > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 1024px) {
  .contact__container > ul > li > a > div,
  .request__container > ul > li > a > div {
    gap: clamp(5.69px, 0.5555555556vw, 10.67px);
  }
}
.contact__container > ul > li > a > div > h3,
.request__container > ul > li > a > div > h3 {
  color: #000;
  font-family: "e-Ukraine";
  font-size: 21px;
  font-style: normal;
  font-weight: 700;
  line-height: 114%;
}
@media screen and (min-width: 1024px) {
  .contact__container > ul > li > a > div > h3,
  .request__container > ul > li > a > div > h3 {
    font-size: clamp(22.044px, 2.1527777778vw, 41.333px);
  }
}
.contact__container > ul > li > a > div > span,
.request__container > ul > li > a > div > span {
  color: #000;
  font-family: "e-Ukraine";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
@media screen and (min-width: 1024px) {
  .contact__container > ul > li > a > div > span,
  .request__container > ul > li > a > div > span {
    font-size: clamp(11.378px, 1.1111111111vw, 21.333px);
  }
} /*# sourceMappingURL=index.css.map */
