@charset "UTF-8";
:root {
  --text-dark: #011936;
  --text-light: #ffffff;
  --text-accent: #249bda;
  --text-light-blue: #f5faff;
  --text-blue: #ebf2fb;
  --text-gray: #acbcd0;
  --text-error: #fe5f55;
  --background-primary: #ffffff;
  --background-secondary: #011936;
  --background-blue: #ebf2fb;
}

@font-face {
  font-family: "Geologica-Medium";
  font-weight: 500;
  src: url("../../fonts/Geologica-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "Geologica";
  font-weight: 400;
  src: url("../../fonts/Geologica-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Geologica-SemiBold";
  font-weight: 600;
  src: url("../../fonts/Geologica-SemiBold.ttf") format("truetype");
}
@font-face {
  font-family: "GeologicaRoman-Medium";
  font-weight: 500;
  src: url("../../fonts/GeologicaRoman-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "GeologicaRoman";
  font-weight: 400;
  src: url("../../fonts/GeologicaRoman-Regular.ttf") format("truetype");
}
/* ===== Akita custom cursor (desktop only) ===== */
.akita-cursor {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99999;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.95);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
  display: flex;
  align-items: center;
  will-change: transform;
  align-items: end;
}

.akita-cursor.is-active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.akita-cursor__label {
  background: #2d2d2d;
  color: #b5d99c;
  border-radius: 36px;
  padding-block: clamp(7.7368888889px, calc(0.7555555556vw), 14.5066666667px);
  padding-inline: clamp(7.4666666667px, calc(0.7291666667vw), 14px);
  font-size: clamp(8.5333333333px, calc(0.8333333333vw), 16px);
  line-height: 100%;
  white-space: nowrap;
}

.akita-cursor__dot {
  width: clamp(48px, calc(4.6875vw), 90px);
  height: clamp(48px, calc(4.6875vw), 90px);
  border-radius: 75px;
  background: #b5d99c;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.akita-cursor__svg {
  width: clamp(19.0435555556px, calc(1.8597222222vw), 35.7066666667px);
  height: clamp(1.4083333333, calc(1.8055555556vw), 34.6666666667);
  fill: #1d401f;
  transform: rotate(-45deg);
}

/* Показувати/працювати тільки на десктопі */
@media (max-width: 1023px) {
  .akita-cursor {
    display: none !important;
  }
}
/* Ховаємо системний курсор лише коли активний наш */
html.is-akita-cursor,
html.is-akita-cursor * {
  cursor: none !important;
}

html.is-preloading,
html.is-preloading body {
  height: 100%;
  overflow: hidden;
}

.akita-preloader {
  position: fixed;
  inset: 0;
  background: #2f2f2f;
  z-index: 99999;
  display: none;
  opacity: 1;
}

html.is-preloading .akita-preloader {
  display: block;
}

.akita-preloader__inner {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 48px;
  box-sizing: border-box;
}

.akita-preloader__atom {
  position: relative;
  overflow: visible;
  width: min(560px, 100vw - 96px);
  height: auto;
  aspect-ratio: 4/3;
  display: grid;
  place-items: center;
}

.akita-preloader__atom-svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.akita-preloader__orbit {
  stroke: #e8edc7;
  stroke-width: 1;
  fill: none;
  opacity: 0.95;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.akita-preloader__orbit-wrap {
  transform-origin: 160px 120px;
  transform-box: view-box;
}

.akita-preloader__orbit-wrap--1 {
  animation: akitaOrbitOne 10s linear infinite;
}

.akita-preloader__orbit-wrap--2 {
  animation: akitaOrbitTwo 12s linear infinite;
}

@keyframes akitaOrbitOne {
  from {
    transform: rotate(-18deg);
  }
  to {
    transform: rotate(342deg);
  }
}
@keyframes akitaOrbitTwo {
  from {
    transform: rotate(12deg);
  }
  to {
    transform: rotate(-348deg);
  }
}
.akita-preloader__percent {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #e8edc7;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  opacity: 1;
  transition: opacity 300ms ease;
  white-space: nowrap;
}

.akita-preloader__cta {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) translateY(8px);
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 400ms ease,
    transform 400ms ease;
}

.akita-preloader__cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) translateY(0);
}

.akita-preloader__btn {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #eef2ce;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #2d2d2d;
  transition: transform 300ms ease;
  position: relative;
}

.akita-preloader__btn:hover {
  transform: scale(1.05);
}

.akita-preloader__btn-text {
  font-size: 12px;
  transform: translateY(6px);
}

.akita-preloader__btn-arrow {
  transform: rotate(-45deg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.akita-preloader__btn-arrow > svg {
  width: 18px;
  height: 18px;
}

.akita-preloader.is-fading {
  animation: akitaFadeOut 520ms ease forwards;
}

@keyframes akitaFadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}
@media (max-width: 420px) {
  .akita-preloader__inner {
    padding: 28px;
  }
  .akita-preloader__btn {
    width: 84px;
    height: 84px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .akita-preloader__orbit-wrap--1,
  .akita-preloader__orbit-wrap--2 {
    animation: none;
  }
  .akita-preloader.is-fading {
    animation: none;
    opacity: 0;
    visibility: hidden;
  }
}
.site-footer {
  background: #2d2d2d;
  color: #f7f7f5;
  overflow: hidden;
}

.site-footer__container {
  padding: 74px 9px 86px;
  margin-inline: auto;
  max-width: 1920px;
}
@media screen and (min-width: 768px) {
  .site-footer__container {
    padding: 101px 19px 101px;
  }
}
@media screen and (min-width: 1024px) {
  .site-footer__container {
    padding-block: clamp(68.8px, calc(6.71875vw), 129px);
    padding-inline: clamp(39.4666666667px, calc(3.8541666667vw), 74px);
  }
}

/* =========================
   TOP
========================= */
.site-footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 74px;
  padding-bottom: 74px;
}
@media screen and (min-width: 768px) {
  .site-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: start;
  }
}
@media screen and (min-width: 1024px) {
  .site-footer__top {
    grid-template-columns: 2.5fr 1fr;
    gap: clamp(53.3333333333px, calc(5.2083333333vw), 100px);
    padding-bottom: clamp(
      47.8222222222px,
      calc(4.6701388889vw),
      89.6666666667px
    );
  }
}

@media screen and (min-width: 1024px) {
  .site-footer__nav {
    padding-left: clamp(53.3333333333px, calc(5.2083333333vw), 100px);
  }
}

/* =========================
   MENU
========================= */
.site-footer__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 28px;
}
@media screen and (min-width: 1024px) {
  .site-footer__menu {
    gap: clamp(14.9333333333px, calc(1.4583333333vw), 28px);
  }
}

.site-footer__menu a {
  display: inline-block;
  color: #ffffff;
  text-decoration: none;
  font-weight: 400;
  font-size: 39px;
  line-height: 110%;
  transition: all 0.5s cubic-bezier(0.33, 1.53, 0.69, 0.99);
}
@media screen and (min-width: 1024px) {
  .site-footer__menu a {
    font-size: clamp(49.9911111111px, calc(4.8819444444vw), 93.7333333333px);
  }
  .site-footer__menu a:hover {
    color: #b5d99c;
  }
}

/* =========================
   SOCIALS WRAP
========================= */
.site-footer__socials {
  display: grid;
  gap: 8px;
  justify-items: center;
  grid-template-columns: 1fr 1fr;
  justify-items: stretch;
}
@media screen and (min-width: 768px) {
  .site-footer__socials {
    grid-template-columns: 1fr;
    justify-items: end;
    align-content: start;
  }
}
@media screen and (min-width: 1024px) {
  .site-footer__socials {
    gap: clamp(9.6px, calc(0.9375vw), 18px);
  }
}

/* =========================
   PILL (base – mobile)
========================= */
.footer-pill {
  background: #373737;
  color: #f7f7f5;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 168px;
  padding: 8px;
  border-radius: 198px;
  height: auto;
  flex-direction: column-reverse;
  gap: 18px;
  transition: all 0.5s cubic-bezier(0.33, 1.53, 0.69, 0.99);
}
@media screen and (min-width: 768px) {
  .footer-pill {
    aspect-ratio: auto;
    width: min(520px, 100%);
    flex-direction: row;
  }
}
@media screen and (min-width: 1024px) {
  .footer-pill {
    height: clamp(117.8666666667px, calc(11.5104166667vw), 221px);
    width: clamp(246.4px, calc(24.0625vw), 462px);
    gap: clamp(9.6px, calc(0.9375vw), 18px);
    min-height: clamp(117.8666666667px, calc(11.5104166667vw), 221px);
  }
  .footer-pill:hover {
    background-color: #b5d99c;
    color: #1d401f;
  }
  .footer-pill:hover > span > svg {
    fill: #1d401f;
  }
}

.footer-pill__label {
  font-size: 16px;
  line-height: 110%;
}
@media screen and (min-width: 1024px) {
  .footer-pill__label {
    font-size: clamp(19.5555555556px, calc(1.9097222222vw), 36.6666666667px);
  }
}

.footer-pill__icon {
  display: grid;
  place-items: center;
}

.footer-pill__icon svg {
  fill: #b5d99c;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.33, 1.53, 0.69, 0.99);
  width: 34px;
  height: 34px;
}
@media screen and (min-width: 1024px) {
  .footer-pill__icon svg {
    width: clamp(23.4666666667px, calc(2.2916666667vw), 44px);
    height: clamp(23.4666666667px, calc(2.2916666667vw), 44px);
  }
}

.footer-pill--linkedin {
  grid-column: 1/-1;
  aspect-ratio: auto;
  flex-direction: row;
}

/* =========================
   BOTTOM
========================= */
.site-footer__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
}
@media screen and (min-width: 768px) {
  .site-footer__bottom {
    align-items: start;
  }
}
@media screen and (min-width: 1024px) {
  .site-footer__bottom {
    align-items: center;
  }
}

.site-footer__bottom-left {
  display: grid;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .site-footer__bottom-left {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    align-items: center;
  }
}
@media screen and (min-width: 1024px) {
  .site-footer__bottom-left {
    gap: clamp(19.7333333333px, calc(1.9270833333vw), 37px);
    padding-left: clamp(53.3333333333px, calc(5.2083333333vw), 100px);
    align-items: end;
  }
}

.site-footer__bottom-right {
  justify-self: end;
}

.site-footer__privacy {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 1024px) {
  .site-footer__privacy {
    flex-direction: row;
    gap: clamp(19.7333333333px, calc(1.9270833333vw), 37px);
  }
}

/* =========================
   COPYRIGHT
========================= */
.site-footer__copy {
  font-size: 14px;
  line-height: 160%;
  color: #f7f7f5;
}
@media screen and (min-width: 1024px) {
  .site-footer__copy {
    font-size: clamp(8.5333333333px, calc(0.8333333333vw), 16px);
  }
}

/* =========================
   DOCS
========================= */
.site-footer__docs {
  list-style: none;
  margin-top: 10px;
  padding: 0;
  display: grid;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .site-footer__docs {
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    -moz-column-gap: 14px;
    column-gap: 14px;
    align-items: center;
    margin-top: 8px;
  }
}

.site-footer__doc-link {
  font-size: 14px;
  color: #b3b3b3;
  font-weight: 400;
  line-height: 160%;
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.33, 1.53, 0.69, 0.99);
}
@media screen and (min-width: 1024px) {
  .site-footer__doc-link {
    font-size: clamp(8.5333333333px, calc(0.8333333333vw), 16px);
  }
  .site-footer__doc-link:hover {
    color: #b5d99c;
  }
}

/* =========================
   TEXT RIGHT
========================= */
.site-footer__text {
  margin: 0;
  text-align: right;
  font-size: 16px;
  line-height: 160%;
  color: #f7f7f5;
}
@media screen and (min-width: 1024px) {
  .site-footer__text {
    font-size: clamp(11.3777777778px, calc(1.1111111111vw), 21.3333333333px);
  }
}

.services-main {
  --bg: #b5d99c;
  --dark: #242424;
  --white: #ffffff;
  --text: #2d2d2d;
  --green: #1d401f;
  --line: rgba(31, 42, 31, 0.12);
  background: var(--bg);
}

.services-main__container {
  margin: 0 auto;
  max-width: 1920px;
  padding: 74px 18px;
}
@media screen and (min-width: 768px) {
  .services-main__container {
    padding: 101px 37px;
  }
}
@media screen and (min-width: 1024px) {
  .services-main__container {
    display: grid;
    --left-col: clamp(
      238.2222222222px,
      calc(23.2638888889vw),
      446.6666666667px
    );
    grid-template-columns: var(--left-col) 1fr;
    gap: clamp(64px, calc(6.25vw), 120px);
    align-items: start;
    padding-block: clamp(78.9333333333px, calc(7.7083333333vw), 148px);
    padding-inline: clamp(39.4666666667px, calc(3.8541666667vw), 74px);
  }
}
.services-main__container > * {
  min-width: 0;
}

.services-main__head {
  display: flex;
  flex-direction: column;
  gap: 37px;
  margin-bottom: 74px;
}
@media screen and (min-width: 768px) {
  .services-main__head {
    flex-direction: row;
    gap: 38px;
  }
}
@media screen and (min-width: 1024px) {
  .services-main__head {
    flex-direction: column;
    align-content: start;
    gap: clamp(9.6px, calc(0.9375vw), 18px);
    margin-bottom: 0;
    min-width: 0;
    /* FIX */
  }
}

.services-main__title {
  font-size: 39px;
  font-weight: 400;
  line-height: 110%;
  color: var(--text);
}
@media screen and (min-width: 768px) {
  .services-main__title {
    font-size: 48px;
    line-height: 100%;
    flex: 1;
  }
}
@media screen and (min-width: 1024px) {
  .services-main__title {
    font-size: clamp(33.3368888889px, calc(3.2555555556vw), 62.5066666667px);
    line-height: clamp(36.6648888889px, calc(3.5805555556vw), 68.7466666667px);
  }
}

.services-main__subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
  color: var(--text);
}
@media screen and (min-width: 768px) {
  .services-main__subtitle {
    flex: 1;
  }
}
@media screen and (min-width: 1024px) {
  .services-main__subtitle {
    font-size: clamp(11.3777777778px, calc(1.1111111111vw), 21.3333333333px);
    line-height: clamp(18.2044444444px, calc(1.7777777778vw), 34.1333333333px);
  }
}

/* =========================
   MOBILE / TABLET 
   ========================= */
.services-main-mob {
  display: grid;
  gap: 8px;
}
@media screen and (min-width: 1024px) {
  .services-main-mob {
    display: none;
  }
}

.services-main-mob__item {
  position: relative;
}

.services-main-mob__toggle {
  width: 100%;
  border: 0;
  cursor: pointer;
  background: var(--dark);
  color: var(--white);
  border-radius: 18px;
  padding: 28px 8px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .services-main-mob__toggle {
    padding: 40px;
  }
}

.services-main-mob__toggle-index {
  font-size: 19px;
  font-weight: 400;
  line-height: 110%;
  color: #b5d99c;
}

.services-main-mob__toggle-title {
  font-size: 28px;
  font-weight: 500;
  line-height: 110%;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .services-main-mob__toggle-title {
    font-size: 39px;
    font-weight: 400;
  }
}

.services-main-mob__toggle-icon {
  display: grid;
  place-items: center;
}

.services-main-mob__plus {
  position: relative;
  width: 15px;
  height: 15px;
}
.services-main-mob__plus > svg {
  width: 100%;
  height: 100%;
  fill: #b5d99c;
}

.services-main-mob__panel {
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .services-main-mob__panel {
    margin-bottom: 10px;
  }
}

.services-main-mob__card {
  background: var(--white);
  padding: 40px 18px 32px;
  border-radius: 18px;
  border-bottom: 8px solid var(--Jet, #2d2d2d);
}
@media screen and (min-width: 768px) {
  .services-main-mob__card {
    padding: 40px 40px 32px;
  }
}

.services-main-mob__card-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
@media screen and (min-width: 768px) {
  .services-main-mob__card-top {
    gap: 27.5px;
  }
}

.services-main-mob__card-index {
  color: #b5d99c;
  font-size: 19px;
  font-weight: 400;
  line-height: 110%;
}

.services-main-mob__card-title {
  font-size: 28px;
  font-weight: 500;
  line-height: 110%;
  color: var(--green);
}
@media screen and (min-width: 768px) {
  .services-main-mob__card-title {
    font-size: 39px;
    font-weight: 400;
  }
}

.services-main-mob__card-desc {
  margin-bottom: 18px;
  color: var(--green);
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
}
@media screen and (min-width: 768px) {
  .services-main-mob__card-desc {
    margin-bottom: 27.5px;
  }
}

.services-main-mob__list-wrap {
  max-height: 410px;
  overflow: auto;
  margin-right: -10px;
}
@media screen and (min-width: 768px) {
  .services-main-mob__list-wrap {
    max-height: 294px;
    margin-right: -35px;
  }
}

.services-main-mob__list-wrap::-webkit-scrollbar,
.services-main-desk__list-wrap::-webkit-scrollbar,
.service-card__list::-webkit-scrollbar {
  width: 8px;
}

.services-main-mob__list-wrap::-webkit-scrollbar-track,
.services-main-desk__list-wrap::-webkit-scrollbar-track,
.service-card__list::-webkit-scrollbar {
  background: #ebebeb;
  border-radius: 8px;
}

.services-main-mob__list-wrap::-webkit-scrollbar-thumb,
.services-main-desk__list-wrap::-webkit-scrollbar-thumb,
.service-card__list::-webkit-scrollbar {
  background: #b5d99c !important;
  max-height: 123px !important;
  border-radius: 6px;
}

.services-main-mob__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-main-mob__li {
  padding: 10px;
  border-bottom: 1px solid transparent;
  -o-border-image: linear-gradient(
    270deg,
    rgba(140, 166, 145, 0) 0%,
    #8ca691 100%
  );
  border-image: linear-gradient(
    270deg,
    rgba(140, 166, 145, 0) 0%,
    #8ca691 100%
  );
  border-image-slice: 1;
  font-size: 18px;
  font-weight: 400;
  line-height: 160%;
  color: var(--green);
}

.services-main-mob__item.is-active > .services-main-mob__toggle {
  display: none;
}

/* =========================
   DESKTOP
   ========================= */
.services-main-desk {
  display: none;
}
@media screen and (min-width: 1024px) {
  .services-main-desk {
    display: block;
    --gap: clamp(9.6px, calc(0.9375vw), 18px);
    --tabw: clamp(54.4px, calc(5.3125vw), 102px);
    --h: clamp(401.6px, calc(39.21875vw), 753px);
    --openw: 0px;
    min-width: 0;
    max-width: 100%;
  }
}

@media screen and (min-width: 1024px) {
  .services-main-desk__wrap {
    display: flex;
    align-items: stretch;
    gap: var(--gap);
    width: 100%;
    max-width: 100%;
    height: var(--h);
    min-height: var(--h);
    padding: 0;
    margin: 0;
    list-style: none;
    min-width: 0;
    overflow: hidden;
  }
}

@media screen and (min-width: 1024px) {
  .services-main-desk__item {
    position: relative;
    height: 100%;
    overflow: hidden;
    flex: 0 0 auto;
    flex-basis: var(--tabw);
    min-width: var(--tabw);
    transition: flex-basis 950ms cubic-bezier(0.16, 1, 0.3, 1);
    will-change: flex-basis;
    contain: layout;
  }
}

@media screen and (min-width: 1024px) {
  .services-main-desk__item.is-open {
    flex-basis: var(--openw);
    min-width: 0;
  }
}

@media screen and (min-width: 1024px) {
  .services-main-desk__item.is-prev {
    z-index: 3;
  }
}

@media screen and (min-width: 1024px) {
  .services-main-desk__input {
    position: absolute;
    left: -9999px;
    top: -9999px;
  }
}

@media screen and (min-width: 1024px) {
  .services-main-desk__tab {
    position: absolute;
    inset: 0 auto 0 0;
    width: var(--tabw);
    height: 100%;
    border: 0;
    cursor: pointer;
    background-color: var(--dark);
    color: #fff;
    border-radius: clamp(9.6px, calc(0.9375vw), 18px);
    padding: clamp(21.3333333333px, calc(2.0833333333vw), 40px);
    display: grid;
    grid-template-rows: auto 1fr auto;
    align-items: end;
    justify-items: center;
    justify-content: center;
    gap: var(--gap);
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    transform: translate3d(0, 0, 0);
    transition:
      transform 1020ms cubic-bezier(0.16, 1, 0.3, 1),
      opacity 720ms ease;
    will-change: transform, opacity;
    transition: all 0.5s cubic-bezier(0.33, 1.53, 0.69, 0.99);
    z-index: 4;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
  }
  .services-main-desk__tab:hover {
    background-color: #373737;
  }
  .services-main-desk__tab:hover > span {
    color: #b5d99c;
  }
}

@media screen and (min-width: 1024px) {
  .services-main-desk__item.is-open > .services-main-desk__tab {
    transform: translate3d(-110%, 0, 0);
    opacity: 0;
    pointer-events: none;
  }
}

@media screen and (min-width: 1024px) {
  .services-main-desk__tab-plus {
    width: clamp(20.6222222222px, calc(2.0138888889vw), 38.6666666667px);
    height: clamp(20.6222222222px, calc(2.0138888889vw), 38.6666666667px);
    display: grid;
    place-items: center;
  }
  .services-main-desk__tab-plus > svg {
    width: 100%;
    height: 100%;
    fill: #b5d99c;
  }
}

@media screen and (min-width: 1024px) {
  .services-main-desk__tab-title {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: clamp(25.6px, calc(2.5vw), 48px);
    line-height: clamp(36.6648888889px, calc(3.5805555556vw), 68.7466666667px);
    font-weight: 400;
    color: #fff;
    white-space: nowrap;
    transition: all 0.5s cubic-bezier(0.33, 1.53, 0.69, 0.99);
  }
}

@media screen and (min-width: 1024px) {
  .services-main-desk__tab-index {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: clamp(18.7448888889px, calc(1.8305555556vw), 35.1466666667px);
    color: #b5d99c;
    white-space: nowrap;
  }
}

@media screen and (min-width: 1024px) {
  .services-main-desk__slide {
    position: absolute;
    inset: 0;
    height: 100%;
    width: var(--openw);
    max-width: none;
    transform: translate3d(20%, 0, 0);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 950ms cubic-bezier(0.16, 1, 0.3, 1),
      opacity 520ms ease;
    will-change: transform, opacity;
    z-index: 2;
  }
}

@media screen and (min-width: 1024px) {
  .services-main-desk__item.is-open > .services-main-desk__slide {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    pointer-events: auto;
    z-index: 5;
  }
}

@media screen and (min-width: 1024px) {
  .services-main-desk__item.is-prev > .services-main-desk__slide {
    transform: translate3d(-20%, 0, 0);
    opacity: 0;
    pointer-events: none;
  }
}

@media screen and (min-width: 1024px) {
  .services-main-desk__clip {
    height: 100%;
    width: var(--openw);
    max-width: none;
    overflow: hidden;
    min-width: 0;
  }
}

@media screen and (min-width: 1024px) {
  .services-main-desk__card {
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    background: var(--white);
    padding: clamp(21.3333333333px, calc(2.0833333333vw), 40px);
    border-radius: clamp(9.6px, calc(0.9375vw), 18px);
    border-left-width: clamp(4.2666666667px, calc(0.4166666667vw), 8px);
    border-left-style: solid;
    border-left-color: var(--Jet, #2d2d2d);
    transform: translateZ(0);
  }
}

@media screen and (min-width: 1024px) {
  .services-main-desk__index {
    font-size: clamp(18.7498666667px, calc(1.8310416667vw), 35.156px);
    color: #b5d99c;
    margin-bottom: clamp(9.6px, calc(0.9375vw), 18px);
  }
}

@media screen and (min-width: 1024px) {
  .services-main-desk__title {
    font-size: clamp(33.3368888889px, calc(3.2555555556vw), 62.5066666667px);
    line-height: clamp(36.6648888889px, calc(3.5805555556vw), 68.7466666667px);
    color: var(--green);
    font-weight: 400;
    margin-bottom: clamp(21.3333333333px, calc(2.0833333333vw), 40px);
  }
}

@media screen and (min-width: 1024px) {
  .services-main-desk__desc {
    margin: 0;
    margin-bottom: clamp(39.4666666667px, calc(3.8541666667vw), 74px);
    font-size: clamp(11.2px, calc(1.09375vw), 21px);
    line-height: clamp(17.92px, calc(1.75vw), 33.6px);
    color: var(--green);
  }
}

@media screen and (min-width: 1024px) {
  .services-main-desk__list-wrap {
    max-height: clamp(140.8px, calc(13.75vw), 264px);
    overflow-y: auto;
    overflow-x: hidden;
    margin-right: clamp(
      -33.3333333333px,
      calc(-1.7361111111vw),
      -17.7777777778px
    );
    scrollbar-gutter: stable;
    min-width: 0;
  }
}

@media screen and (min-width: 1024px) {
  .services-main-desk__list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
}

@media screen and (min-width: 1024px) {
  .services-main-desk__li {
    padding: clamp(5.3333333333px, calc(0.5208333333vw), 10px);
    border-bottom: 1px solid transparent;
    -o-border-image: linear-gradient(
      270deg,
      rgba(140, 166, 145, 0) 0%,
      #8ca691 100%
    );
    border-image: linear-gradient(
      270deg,
      rgba(140, 166, 145, 0) 0%,
      #8ca691 100%
    );
    border-image-slice: 1;
    font-size: clamp(9.9555555556px, calc(0.9722222222vw), 18.6666666667px);
    color: rgba(31, 42, 31, 0.9);
  }
}

@media screen and (min-width: 1024px) {
  .services-main-desk__list-wrap::-webkit-scrollbar,
  .service-card__list::-webkit-scrollbar {
    width: clamp(4.2666666667px, calc(0.4166666667vw), 8px);
  }
}

@media screen and (min-width: 1024px) {
  .services-main-desk__list-wrap::-webkit-scrollbar-thumb,
  .service-card__list::-webkit-scrollbar {
    background: rgba(29, 74, 36, 0.25);
    border-radius: 10px;
  }
}

.approach {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 722.6666666667px;
  height: -moz-fit-content;
  height: fit-content;
  margin-inline: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .approach {
    min-height: 682.6666666667px;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 1024px) {
  .approach {
    flex-direction: column;
    min-height: clamp(
      605.1555555556px,
      calc(59.0972222222vw),
      1134.6666666667px
    );
  }
}

.approach__container {
  margin: 0 auto;
  padding: 74px 18px;
  max-width: 1920px;
  display: flex;
  flex-direction: column;
  gap: 42.5px;
}
@media screen and (min-width: 768px) {
  .approach__container {
    padding: 101px 37px;
  }
}
@media screen and (min-width: 1024px) {
  .approach__container {
    padding-block: clamp(78.9333333333px, calc(7.7083333333vw), 148px);
    padding-inline: clamp(
      71.1111111111px,
      calc(6.9444444444vw),
      133.3333333333px
    );
    gap: clamp(62.5777777778px, calc(6.1111111111vw), 117.3333333333px);
  }
}

.approach__wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-items: center;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .approach__wrapper {
    gap: clamp(5.3333333333px, calc(0.5208333333vw), 10px);
  }
}

.approach__kicker {
  text-align: center;
  color: var(--Asparagus, #80a676);
  font-size: 18px;
  font-weight: 400;
  line-height: 148%;
}
@media screen and (min-width: 1024px) {
  .approach__kicker {
    font-size: clamp(11.7191111111px, calc(1.1444444444vw), 21.9733333333px);
    line-height: clamp(12.8924444444px, calc(1.2590277778vw), 24.1733333333px);
    letter-spacing: clamp(0.3555555556px, calc(0.0347222222vw), 0.6666666667px);
  }
}

.approach__title {
  text-align: center;
  color: var(--Jet, #2d2d2d);
  font-size: 39px;
  font-weight: 400;
  line-height: 110%;
}
@media screen and (min-width: 768px) {
  .approach__title {
    font-size: 48px;
    line-height: 100%;
    max-width: 324px;
  }
}
@media screen and (min-width: 1024px) {
  .approach__title {
    font-size: 46.88px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%; /* 51.568px */
  }
}
@media screen and (min-width: 1024px) {
  .approach__title {
    font-size: clamp(33.3368888889px, calc(3.2555555556vw), 62.5066666667px);
    line-height: clamp(36.6705777778px, calc(3.5811111111vw), 68.7573333333px);
    max-width: clamp(492.4444444444px, calc(48.0902777778vw), 923.3333333333px);
  }
}

.approach__layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 18px;
}
@media screen and (min-width: 768px) {
  .approach__layout {
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 46px;
    column-gap: 46px;
    row-gap: 20px;
    align-items: start;
  }
}

.approach__graphic {
  width: 100%;
  max-width: 289px;
  margin: 0 auto 10px;
}
@media screen and (min-width: 768px) {
  .approach__graphic {
    grid-column: 1/-1;
    grid-row: 1/3;
    justify-self: center;
    margin: 0 auto 12px;
  }
}

.approach__svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.approach__item {
  display: flex;
  padding: 18px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 18px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .approach__item {
    padding: 18px 0;
  }
}

/* =========================
   TABLET (tabletmin): "ялинка"
   Працює для 4, і окремо поправка для 3
========================= */
@media screen and (min-width: 768px) {
  .approach__item[data-approach-step="1"] {
    grid-column: 1;
    grid-row: 2/4;
    margin-top: 0;
  }
  .approach__item[data-approach-step="2"] {
    grid-column: 2;
    grid-row: 3/5;
  }
  .approach__item[data-approach-step="3"] {
    grid-column: 1;
    grid-row: 4/7;
    margin-top: 28px;
  }
  .approach__item[data-approach-step="4"] {
    grid-column: 2;
    grid-row: 5/7;
    margin-top: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .approach__layout {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    -moz-column-gap: 10px;
    column-gap: 10px;
    row-gap: 0;
    align-items: start;
    overflow: visible;
  }
  .approach__graphic {
    grid-column: 2/3;
    grid-row: 1/2;
    max-width: clamp(408.8888888889px, calc(39.9305555556vw), 766.6666666667px);
    min-width: clamp(372.6222222222px, calc(36.3888888889vw), 698.6666666667px);
    margin: 0;
    position: sticky;
    top: 90px;
    z-index: 1;
  }
  .approach__item {
    padding: 0;
    gap: clamp(9.6px, calc(0.9375vw), 18px);
    padding: clamp(9.6px, calc(0.9375vw), 18px);
    max-width: clamp(241.0666666667px, calc(23.5416666667vw), 452px);
  }
  /* ---------- 3 ITEMS (світла тема) ---------- */
  .approach[data-approach-count="3"] .approach__item[data-approach-step="1"],
  .approach--light .approach__item[data-approach-step="1"] {
    grid-column: 3/4;
    grid-row: 1/2;
    justify-self: start;
    text-align: left;
    padding-left: 40px;
    margin-top: 0;
  }
  .approach[data-approach-count="3"] .approach__item[data-approach-step="2"],
  .approach--light .approach__item[data-approach-step="2"] {
    grid-column: 1/2;
    grid-row: 1/2;
    justify-self: end;
    text-align: left;
    padding-right: 40px;
    --APPROACH_STEP2_SHIFT: clamp(110px, 7vw, 170px);
    margin-top: var(--APPROACH_STEP2_SHIFT);
  }
  .approach[data-approach-count="3"] .approach__item[data-approach-step="3"],
  .approach--light .approach__item[data-approach-step="3"] {
    grid-column: 2 / span 3;
    grid-row: 2/3;
    justify-self: center;
    margin-top: 0;
  }
  /* ----------  (темна тема) ---------- */
  .approach[data-approach-count="4"] .approach__layout,
  .approach--dark .approach__layout {
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: repeat(4, auto);
  }
  .approach[data-approach-count="4"] .approach__graphic,
  .approach--dark .approach__graphic {
    grid-column: 3/6;
    grid-row: 1/4;
  }
  .approach[data-approach-count="4"] .approach__item[data-approach-step="1"],
  .approach--dark .approach__item[data-approach-step="1"] {
    grid-column: 1/3;
    grid-row: 1/2;
    justify-self: end;
    text-align: left;
    padding-right: 40px;
    margin-top: 0;
  }
  .approach[data-approach-count="4"] .approach__item[data-approach-step="2"],
  .approach--dark .approach__item[data-approach-step="2"] {
    grid-column: 6/8;
    grid-row: 1/2;
    justify-self: start;
    text-align: left;
    padding-left: 40px;
    margin-top: 20px;
  }
  .approach[data-approach-count="4"] .approach__item[data-approach-step="3"],
  .approach--dark .approach__item[data-approach-step="3"] {
    grid-column: 2/4;
    grid-row: 2/5;
    justify-self: end;
    text-align: left;
  }
  .approach[data-approach-count="4"] .approach__item[data-approach-step="4"],
  .approach--dark .approach__item[data-approach-step="4"] {
    grid-column: 5/8;
    justify-self: center;
    grid-row: 3/5;
    justify-self: center;
    text-align: left;
  }
}
.approach__h {
  color: var(--Jet, #2d2d2d);
  font-size: 28px;
  font-weight: 500;
  line-height: 110%;
}
@media screen and (min-width: 768px) {
  .approach__h {
    font-size: 36px;
  }
}
@media screen and (min-width: 1024px) {
  .approach__h {
    font-size: clamp(18.2044444444px, calc(1.7777777778vw), 34.1333333333px);
    line-height: clamp(23.3016888889px, calc(2.2755555556vw), 43.6906666667px);
  }
}

.approach__sh {
  color: var(--Asparagus, #80a676);
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
}
@media screen and (min-width: 1024px) {
  .approach__sh {
    font-size: clamp(8.5333333333px, calc(0.8333333333vw), 16px);
    line-height: clamp(13.6533333333px, calc(1.3333333333vw), 25.6px);
  }
}

.approach__p {
  color: var(--Jet, #2d2d2d);
  font-size: 18px;
  font-weight: 400;
  line-height: 148%;
}
.approach__p p {
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .approach__p {
    font-size: clamp(11.3777777778px, calc(1.1111111111vw), 21.3333333333px);
    line-height: clamp(18.2044444444px, calc(1.7777777778vw), 34.1333333333px);
  }
}

.approach__orbit {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  shape-rendering: geometricPrecision;
  vector-effect: none;
}

.approach__star,
.approach__star-inner {
  transform-origin: 0 0;
  transform-box: fill-box;
}

.approach--light {
  background: #f7f7f5;
}
.approach--light .approach__kicker {
  color: #7a9b73;
}
.approach--light .approach__title,
.approach--light .approach__h {
  color: #2d2d2d;
}
.approach--light .approach__p {
  color: #2d2d2d;
  opacity: 0.82;
}
.approach--light .approach__orbit {
  stroke: #80a676;
  stroke-width: 1.5;
}
.approach--light .approach__star-inner path {
  fill: #80a676;
}

.approach--dark {
  background: #2d2d2d;
}
.approach--dark .approach__title,
.approach--dark .approach__h {
  color: #f7f7f5;
}
.approach--dark .approach__p {
  color: #b3b3b3;
}
.approach--dark .approach__orbit {
  stroke: #80a676;
  stroke-width: 1.5;
}
.approach--dark .approach__star-inner path {
  fill: #80a676;
}

.approach__item,
.approach__orbit,
.approach__star {
  opacity: 1;
  transform: none;
}

.approach.is-approach-anim .approach__item {
  opacity: 0;
  transform: translateY(28px);
  will-change: transform, opacity;
}
.approach.is-approach-anim .approach__orbit {
  opacity: 0;
  will-change: stroke-dashoffset, opacity;
}
.approach.is-approach-anim .approach__star {
  opacity: 0;
  transform: scale(0.85);
  will-change: transform, opacity;
}

.services {
  background: #2d2d2d;
}

.services__container {
  margin: 0 auto;
  padding: 74px 18px;
}
@media screen and (min-width: 768px) {
  .services__container {
    padding: 101px 37px 47.5px;
  }
}
@media screen and (min-width: 1024px) {
  .services__container {
    max-width: 1920px;
    padding-block: clamp(39.4666666667px, calc(3.8541666667vw), 74px);
    padding-inline: clamp(39.4666666667px, calc(3.8541666667vw), 74px);
  }
}

.services__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .services__list {
    gap: 18px;
  }
}
@media screen and (min-width: 1024px) {
  .services__list {
    gap: clamp(9.6px, calc(0.9375vw), 18px);
  }
}

/* reset theme влияние */
.services .service-card,
.services .service-card * {
  box-sizing: border-box;
}

.services .service-card button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  background: none;
  font: inherit;
  color: inherit;
}

.services .service-card a {
  color: inherit;
}

/* ===== CARD ===== */
.service-card {
  background: transparent;
  /* NEW: for overlay link */
  position: relative;
}
@media screen and (min-width: 1024px) {
  .service-card {
    display: flex;
    flex-direction: row-reverse;
    gap: clamp(4.2666666667px, calc(0.4166666667vw), 8px);
  }
}

.service-card__hit {
  display: none;
}
@media screen and (min-width: 1024px) {
  .service-card__hit {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 4;
    text-decoration: none;
  }
}

.service-card__media {
  position: relative;
  border-radius: 18px 18px 0 0;
  overflow: hidden;
  background: #fff;
}
@media screen and (min-width: 1024px) {
  .service-card__media {
    border-radius: clamp(9.6px, calc(0.9375vw), 18px);
    background: transparent;
    flex: 1;
  }
}

.service-card__image {
  width: 100%;
  height: 324px;
  border-radius: 18px;
  border-bottom: 8px solid var(--Jet, #2d2d2d);
}
@media screen and (min-width: 768px) {
  .service-card__image {
    height: 694px;
  }
}
@media screen and (min-width: 1024px) {
  .service-card__image {
    height: 100%;
    border-bottom: 0;
  }
}

.service-card__img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}

.service-card__cta {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px;
  border-radius: 18px;
  text-decoration: none;
  background: #2d2d2d;
}
@media screen and (min-width: 768px) {
  .service-card__cta {
    right: 12px;
    bottom: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .service-card__cta {
    display: none;
  }
}

.service-card__cta-text {
  font-size: 14px;
  color: #eef2ce;
}

.service-card__cta-ic {
  width: 52px;
  height: 52px;
  border-radius: 100px;
  background: #b5d99c;
  color: #0b0b0b;
  display: grid;
  place-items: center;
}
.service-card__cta-ic > svg {
  display: block;
  width: 35.7px;
  height: 35.7px;
  rotate: -45deg;
}

.service-card__body {
  background: #ffffff;
  border-radius: 0 0 18px 18px;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .service-card__body {
    border-radius: clamp(9.6px, calc(0.9375vw), 18px);
    min-height: clamp(373.3333333333px, calc(36.4583333333vw), 700px);
    padding: clamp(39.4666666667px, calc(3.8541666667vw), 74px);
    flex: 1.3;
  }
}

.service-card__toggle {
  width: 100%;
  cursor: pointer;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding-top: 5px;
  padding-bottom: 15px;
}
@media screen and (min-width: 1024px) {
  .service-card__toggle {
    display: none;
  }
}

.service-card__toggle-title {
  text-align: left;
  font-size: 16px;
  line-height: 100%;
  color: #2d2d2d;
}

.service-card__toggle-ic {
  width: 42px;
  height: 42px;
  border-radius: 100px;
  background: #b5d99c;
  color: #2d2d2d;
  display: grid;
  place-items: center;
  rotate: 90deg;
  transition: transform 220ms ease;
}
.service-card__toggle-ic > svg {
  width: 34px;
  height: 34px;
}

.service-card__panel {
  height: 0;
  overflow: hidden;
  transition: height 360ms ease;
}

.services__item.is-open .service-card__toggle-ic {
  transform: rotate(180deg);
}

.services__item.is-open .service-card__toggle {
  display: none;
}

.service-card__panel-in {
  padding: 28px 18px 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 0;
}
@media screen and (min-width: 768px) {
  .service-card__panel-in {
    padding: 48px 28px;
  }
}
@media screen and (min-width: 1024px) {
  .service-card__panel-in {
    padding: 0;
    gap: clamp(12.8px, calc(1.25vw), 24px);
  }
}

.service-card__top {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media screen and (min-width: 1024px) {
  .service-card__top {
    gap: clamp(9.6px, calc(0.9375vw), 18px);
  }
}

.service-card__num {
  color: var(--Asparagus, #80a676);
  font-size: 39px;
  font-weight: 400;
  line-height: 110%;
}
@media screen and (min-width: 1024px) {
  .service-card__num {
    font-size: clamp(18.7498666667px, calc(1.8310416667vw), 35.156px);
    line-height: clamp(20.6577777778px, calc(2.0173611111vw), 38.7333333333px);
  }
}

/* content */
.service-card__title {
  color: var(--Akita-green, #1d401f);
  font-size: 28px;
  font-weight: 500;
  line-height: 110%;
}
@media screen and (min-width: 768px) {
  .service-card__title {
    font-size: 39px;
  }
}
@media screen and (min-width: 1024px) {
  .service-card__title {
    font-size: clamp(30.5066666667px, calc(2.9791666667vw), 57.2px);
    line-height: clamp(32.7111111111px, calc(3.1944444444vw), 61.3333333333px);
  }
}

.service-card__desc {
  color: var(--Akita-green, #1d401f);
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
}
@media screen and (min-width: 1024px) {
  .service-card__desc {
    font-size: clamp(9.9555555556px, calc(0.9722222222vw), 18.6666666667px);
    line-height: clamp(15.9288888889px, calc(1.5555555556vw), 29.8666666667px);
  }
}

.service-card__list {
  list-style: none;
  min-height: 0;
  flex: 1;
  overflow: auto;
  padding-right: 6px;
}

.service-card__row {
  padding: 10px;
  border-bottom: 1px solid transparent;
  -o-border-image: linear-gradient(
    270deg,
    rgba(140, 166, 145, 0) 0%,
    #8ca691 100%
  );
  border-image: linear-gradient(
    270deg,
    rgba(140, 166, 145, 0) 0%,
    #8ca691 100%
  );
  border-image-slice: 1;
  color: var(--Akita-green, #1d401f);
  font-size: 18px;
  font-weight: 400;
  line-height: 148%;
}
@media screen and (min-width: 1024px) {
  .service-card__row {
    font-size: clamp(11.3777777778px, calc(1.1111111111vw), 21.3333333333px);
    line-height: clamp(18.2044444444px, calc(1.7777777778vw), 34.1333333333px);
    padding: clamp(5.3333333333px, calc(0.5208333333vw), 10px);
    border-bottom-width: clamp(0.5333333333px, calc(0.0520833333vw), 1px);
  }
}

/* ===== Hover video overlay (universal 1-field video) ===== */
.service-card__image {
  position: relative;
}

.service-card__img {
  transition: opacity 220ms ease;
}

/* відео поверх картинки */
.service-card__video-wrap {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  z-index: 2; /* щоб було вище за img */
}

.service-card__video {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}

@media (hover: hover) and (pointer: fine) {
  .service-card[data-has-video]:hover .service-card__video-wrap {
    opacity: 1;
  }
  .service-card[data-has-video]:hover .service-card__img {
    opacity: 0;
  }
}
.policy {
  padding: 74px 18px;
  background: var(--Seasalt, #f7f7f5);
}
@media screen and (min-width: 768px) {
  .policy {
    padding: 138px 37px 108px;
  }
}
@media screen and (min-width: 1024px) {
  .policy {
    padding-block: clamp(98.1333333333px, calc(9.5833333333vw), 184px);
    padding-inline: clamp(142.9333333333px, calc(13.9583333333vw), 268px);
  }
}
.policy > div {
  max-width: 1920px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media screen and (min-width: 1024px) {
  .policy > div {
    gap: clamp(14.9333333333px, calc(1.4583333333vw), 28px);
  }
}
.policy > div > h1 {
  color: #2d2d2d;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}
@media screen and (min-width: 1024px) {
  .policy > div > h1 {
    font-size: clamp(33.4222222222px, calc(3.2638888889vw), 62.6666666667px);
  }
}
.policy > div > h5 {
  color: var(--Jet, #2d2d2d);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 148%;
  margin-bottom: 4px;
}
@media screen and (min-width: 768px) {
  .policy > div > h5 {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .policy > div > h5 {
    font-size: clamp(12.8px, calc(1.25vw), 24px);
    margin-bottom: clamp(11.7333333333px, calc(1.1458333333vw), 22px);
  }
}
.policy > div > p {
  color: var(--Jet, #2d2d2d);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
@media screen and (min-width: 1024px) {
  .policy > div > p {
    font-size: clamp(9.9555555556px, calc(0.9722222222vw), 18.6666666667px);
  }
}
.policy > div > div > div {
  gap: 21px;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .policy > div > div > div {
    gap: clamp(11.3777777778px, calc(1.1111111111vw), 21.3333333333px);
  }
}
.policy > div > div > div > h2 {
  color: var(--Jet, #2d2d2d);
  font-size: 21px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
}
@media screen and (min-width: 1024px) {
  .policy > div > div > div > h2 {
    font-size: clamp(12.8px, calc(1.25vw), 24px);
  }
}
.policy > div > div > div > p {
  color: var(--Jet, #2d2d2d);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
@media screen and (min-width: 1024px) {
  .policy > div > div > div > p {
    font-size: clamp(11.3777777778px, calc(1.1111111111vw), 21.3333333333px);
  }
}
.policy > div > div > div > ul {
  list-style: disc;
  padding-left: 1.25em;
}
.policy > div > div > div > ul > li {
  color: var(--Jet, #2d2d2d);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
@media screen and (min-width: 1024px) {
  .policy > div > div > div > ul > li {
    font-size: clamp(11.3777777778px, calc(1.1111111111vw), 21.3333333333px);
  }
}

.partners {
  background: var(--Jet, #2d2d2d);
  color: var(--Seasalt, #f7f7f5);
  padding: 101px 9px;
}
@media screen and (min-width: 768px) {
  .partners {
    padding: 101px 19px;
  }
}
@media screen and (min-width: 1024px) {
  .partners {
    padding-top: clamp(78.9333333333px, calc(7.7083333333vw), 148px);
    padding-bottom: clamp(
      27.0222222222px,
      calc(2.6388888889vw),
      50.6666666667px
    );
    padding-block: clamp(0, calc(0vw), 0);
  }
}
.partners__container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 74px;
}
@media screen and (min-width: 1024px) {
  .partners__container {
    gap: clamp(53.3333333333px, calc(5.2083333333vw), 100px);
  }
}
.partners__title {
  font-size: 39px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .partners__title {
    font-size: 48px;
    max-width: 324px;
    text-align: center;
  }
}
@media screen and (min-width: 1024px) {
  .partners__title {
    font-size: clamp(33.4222222222px, calc(3.2638888889vw), 62.6666666667px);
    max-width: 100%;
  }
}
.partners__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-items: center;
}
@media screen and (min-width: 1024px) {
  .partners__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.partners__item {
  display: flex;
  justify-items: center;
  min-width: 162px;
  min-height: 164px;
}
@media screen and (min-width: 768px) {
  .partners__item {
    width: 347px;
    height: 164px;
  }
}
@media screen and (min-width: 1024px) {
  .partners__item {
    width: clamp(246.7555555556px, calc(24.0972222222vw), 462.6666666667px);
    height: clamp(153.6px, calc(15vw), 288px);
  }
}
.partners__logo {
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}
.partners__caption {
  font-size: 13px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.5);
}

/* assets/scss/sections/_faq.scss */
.faq {
  background: #2d2d2d;
  padding: 101px 18px;
}
@media screen and (min-width: 768px) {
  .faq {
    padding: 101px 37px;
  }
}
@media screen and (min-width: 1024px) {
  .faq {
    padding-block: clamp(78.9333333333px, calc(7.7083333333vw), 148px);
    padding-inline: clamp(39.4666666667px, calc(3.8541666667vw), 74px);
  }
}

.faq__container {
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .faq__container {
    max-width: 1920px;
  }
}

.faq__grid {
  display: grid;
  gap: 44px;
}
@media screen and (min-width: 768px) {
  .faq__grid {
    display: flex;
    gap: 18px;
  }
}
@media screen and (min-width: 1024px) {
  .faq__grid {
    justify-content: space-between;
  }
}

.faq__left {
  display: flex;
  flex-direction: column;
  gap: 37px;
}
@media screen and (min-width: 768px) {
  .faq__left {
    flex: 1;
  }
}
@media screen and (min-width: 1024px) {
  .faq__left {
    gap: clamp(19.7333333333px, calc(1.9270833333vw), 37px);
    max-width: clamp(236.2666666667px, calc(23.0729166667vw), 443px);
  }
}

.faq__title {
  font-size: 39px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  color: #f7f7f5;
}
@media screen and (min-width: 768px) {
  .faq__title {
    font-size: 48px;
    line-height: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .faq__title {
    font-size: clamp(33.3368888889px, calc(3.2555555556vw), 62.5066666667px);
  }
}

.faq__text > p {
  margin: 0;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 148%;
  color: #f7f7f5;
}
@media screen and (min-width: 1024px) {
  .faq__text > p {
    font-size: clamp(11.3777777778px, calc(1.1111111111vw), 21.3333333333px);
    line-height: clamp(18.2044444444px, calc(1.7777777778vw), 34.1333333333px);
  }
}

@media screen and (min-width: 768px) {
  .faq__right {
    flex: 1;
  }
}
@media screen and (min-width: 1024px) {
  .faq__right {
    max-width: clamp(467.9111111111px, calc(45.6944444444vw), 877.3333333333px);
  }
}

.faq__list {
  display: grid;
  gap: 8px;
}
@media screen and (min-width: 1024px) {
  .faq__list {
    gap: clamp(5.6888888889px, calc(0.5555555556vw), 10.6666666667px);
  }
}

.faq-item {
  display: grid;
}

.faq-item__head {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2px;
  border: 0;
  background: #f7f7f5;
  color: #2d2d2d;
  border-radius: 14px;
  padding: 18px;
  cursor: pointer;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .faq-item__head {
    border-radius: 16px;
    padding: 24px;
  }
}
@media screen and (min-width: 1024px) {
  .faq-item__head {
    border-radius: clamp(9.6px, calc(0.9375vw), 18px);
    padding: clamp(21.3333333333px, calc(2.0833333333vw), 40px);
  }
}

.faq-item__q {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 148%;
}
@media screen and (min-width: 1024px) {
  .faq-item__q {
    font-size: clamp(13.0133333333px, calc(1.2708333333vw), 24.4px);
    line-height: clamp(20.8284444444px, calc(2.0340277778vw), 39.0533333333px);
  }
}

.faq-item__icon {
  width: 32px;
  height: 32px;
  border-radius: 25px;
  background: #2d2d2d;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 280ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (min-width: 1024px) {
  .faq-item__icon {
    width: clamp(17.0666666667px, calc(1.6666666667vw), 32px);
    height: clamp(17.0666666667px, calc(1.6666666667vw), 32px);
    border-radius: clamp(
      13.1555555556px,
      calc(1.2847222222vw),
      24.6666666667px
    );
  }
}

.faq-icon {
  display: flex;
  width: 14px;
  height: 14px;
  transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: 50% 50%;
  transform: rotate(0deg);
  fill: #b5d99c;
  will-change: transform;
}
@media screen and (min-width: 1024px) {
  .faq-icon {
    width: clamp(7.8222222222px, calc(0.7638888889vw), 14.6666666667px);
    height: clamp(7.8222222222px, calc(0.7638888889vw), 14.6666666667px);
  }
}
.faq-icon > svg {
  width: 100%;
  height: 100%;
  display: block;
}

.faq-item.is-open {
  gap: 4px;
}
@media screen and (min-width: 1024px) {
  .faq-item.is-open {
    gap: clamp(4.2666666667px, calc(0.4166666667vw), 8px);
  }
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  fill: #2d2d2d;
}

.faq-item.is-open .faq-item__icon {
  background: #b5d99c;
}

/* PANEL open/close через grid rows */
.faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 420ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.faq-item.is-open .faq-item__panel {
  grid-template-rows: 1fr;
}

.faq-item__panel-inner {
  overflow: hidden;
  contain: layout paint;
}

.faq-item__body {
  background: #414141;
  color: rgba(255, 255, 255, 0.78);
  border-radius: 14px;
  padding: 18px;
  font-size: 14px;
  line-height: 1.55;
}
@media screen and (min-width: 768px) {
  .faq-item__body {
    padding: 24px;
  }
}
@media screen and (min-width: 1024px) {
  .faq-item__body {
    border-radius: clamp(9.6px, calc(0.9375vw), 18px);
    padding: clamp(21.3333333333px, calc(2.0833333333vw), 40px);
  }
}

.faq-item__content {
  opacity: 0;
  transform: translate3d(0, -6px, 0);
  transition:
    opacity 260ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
  backface-visibility: hidden;
}
.faq-item__content > p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
@media screen and (min-width: 1024px) {
  .faq-item__content > p {
    font-size: clamp(11.3777777778px, calc(1.1111111111vw), 21.3333333333px);
    line-height: clamp(17.92px, calc(1.75vw), 33.6px);
  }
}

.faq-item.is-open .faq-item__content {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .faq-item__panel,
  .faq-icon,
  .faq-item__content {
    transition: none;
    transform: none;
  }
}
.post-single__container {
  background-color: #f7f7f5;
  margin-inline: auto;
  max-width: 1920px;
  padding: 72px 18px 148px;
}
@media screen and (min-width: 768px) {
  .post-single__container {
    padding: 72px 37px 148px;
  }
}
@media screen and (min-width: 1024px) {
  .post-single__container {
    position: relative;
    padding-block: clamp(78.9333333333px, calc(7.7083333333vw), 148px);
    padding-inline: clamp(39.4666666667px, calc(3.8541666667vw), 74px);
  }
}

.post-single__back {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 14px;
  gap: 4px;
  border-radius: 25px;
  border: 1px solid #2d2d2d;
  background-color: transparent;
  text-decoration: none;
  margin-bottom: 24px;
  transition: all 0.5s cubic-bezier(0.33, 1.53, 0.69, 0.99);
}
@media screen and (min-width: 1024px) {
  .post-single__back {
    position: absolute;
    padding: clamp(7.4666666667px, calc(0.7291666667vw), 14px);
    gap: clamp(2.1333333333px, calc(0.2083333333vw), 4px);
    border-radius: clamp(13.3333333333px, calc(1.3020833333vw), 25px);
    border-width: clamp(0.7111111111px, calc(0.0694444444vw), 1.3333333333px);
    margin-bottom: unset;
  }
  .post-single__back:hover {
    background-color: var(--bg, #b5d99c);
    border-color: var(--bg, #b5d99c);
  }
}
.post-single__back > span {
  color: #2d2d2d;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
}
@media screen and (min-width: 1024px) {
  .post-single__back > span {
    font-size: clamp(8.5333333333px, calc(0.8333333333vw), 16px);
  }
}

.post-single__back-icon > svg {
  rotate: 180deg;
  width: 24px;
  height: 24px;
}
@media screen and (min-width: 1024px) {
  .post-single__back-icon > svg {
    width: clamp(12.8px, calc(1.25vw), 24px);
    height: clamp(12.8px, calc(1.25vw), 24px);
  }
}

.post-single__article {
  display: flex;
  flex-direction: column;
  gap: 74px;
}
@media screen and (min-width: 768px) {
  .post-single__article {
    gap: 101px;
  }
}
@media screen and (min-width: 1024px) {
  .post-single__article {
    padding-inline: clamp(
      228.6222222222px,
      calc(22.3263888889vw),
      428.6666666667px
    );
    gap: clamp(78.9333333333px, calc(7.7083333333vw), 148px);
  }
}

.post-single__header {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media screen and (min-width: 1024px) {
  .post-single__header {
    gap: clamp(14.9333333333px, calc(1.4583333333vw), 28px);
  }
}

.post-single__title {
  font-size: 39px;
  color: #2d2d2d;
  font-weight: 400;
  line-height: 110%;
}
@media screen and (min-width: 768px) {
  .post-single__title {
    font-size: 48px;
  }
}
@media screen and (min-width: 1024px) {
  .post-single__title {
    font-size: clamp(33.3368888889px, calc(3.2555555556vw), 62.5066666667px);
  }
}

.post-single__meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2d2d2d;
  font-size: 18px;
  line-height: 110%;
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .post-single__meta {
    font-size: 21px;
  }
}
@media screen and (min-width: 1024px) {
  .post-single__meta {
    font-size: clamp(11.2px, calc(1.09375vw), 21px);
    gap: clamp(4.2666666667px, calc(0.4166666667vw), 8px);
    margin-bottom: clamp(17.0666666667px, calc(1.6666666667vw), 32px);
  }
}

.post-single__meta-icon > svg {
  width: 24px;
  height: 24px;
  fill: transparent;
}
@media screen and (min-width: 1024px) {
  .post-single__meta-icon > svg {
    width: clamp(12.8px, calc(1.25vw), 24px);
    height: clamp(12.8px, calc(1.25vw), 24px);
  }
}

.post-single__media {
  margin: 0;
}

.post-single__img {
  width: 100%;
  display: block;
  border-radius: 28px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .post-single__img {
    height: 514px;
  }
}
@media screen and (min-width: 1024px) {
  .post-single__img {
    height: clamp(274.1333333333px, calc(26.7708333333vw), 514px);
    border-radius: clamp(14.9333333333px, calc(1.4583333333vw), 28px);
  }
}

.post-single__container .wysiwyg {
  color: #2d2d2d;
  font-size: 14px;
  line-height: 160%;
}
@media screen and (min-width: 768px) {
  .post-single__container .wysiwyg {
    font-size: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .post-single__container .wysiwyg {
    font-size: clamp(11.3777777778px, calc(1.1111111111vw), 21.3333333333px);
  }
}
.post-single__container .wysiwyg > *:first-child {
  margin-top: 0;
}
.post-single__container .wysiwyg > *:last-child {
  margin-bottom: 0;
}
.post-single__container .wysiwyg p {
  margin: 0 0 28px;
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
}
@media screen and (min-width: 1024px) {
  .post-single__container .wysiwyg p {
    font-size: clamp(11.3777777778px, calc(1.1111111111vw), 21.3333333333px);
    margin-bottom: clamp(
      19.9111111111px,
      calc(1.9444444444vw),
      37.3333333333px
    );
  }
}
.post-single__container .wysiwyg h2,
.post-single__container .wysiwyg h3,
.post-single__container .wysiwyg h4 {
  color: #2d2d2d;
  margin-block: 50px;
}
@media screen and (min-width: 768px) {
  .post-single__container .wysiwyg h2,
  .post-single__container .wysiwyg h3,
  .post-single__container .wysiwyg h4 {
    margin-block: 37px;
  }
}
@media screen and (min-width: 1024px) {
  .post-single__container .wysiwyg h2,
  .post-single__container .wysiwyg h3,
  .post-single__container .wysiwyg h4 {
    margin-block: clamp(26.6666666667px, calc(2.6041666667vw), 50px);
  }
}
.post-single__container .wysiwyg h2 {
  font-size: 28px;
  font-weight: 500;
  line-height: 110%;
}
@media screen and (min-width: 1024px) {
  .post-single__container .wysiwyg h2 {
    font-size: clamp(21.3333333333px, calc(2.0833333333vw), 40px);
    font-weight: 400;
  }
}
.post-single__container .wysiwyg ul,
.post-single__container .wysiwyg ol {
  margin-bottom: 16px;
  padding-left: 18px;
  list-style: auto;
}
@media screen and (min-width: 768px) {
  .post-single__container .wysiwyg ul,
  .post-single__container .wysiwyg ol {
    margin-bottom: 18px;
    padding-left: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .post-single__container .wysiwyg ul,
  .post-single__container .wysiwyg ol {
    margin-bottom: clamp(12.8px, calc(1.25vw), 24px);
    padding-left: clamp(14.2222222222px, calc(1.3888888889vw), 26.6666666667px);
  }
}
.post-single__container .wysiwyg li {
  margin-block: 2px;
}
@media screen and (min-width: 1024px) {
  .post-single__container .wysiwyg li {
    margin-block: clamp(2.8444444444px, calc(0.2777777778vw), 5.3333333333px);
  }
}
.post-single__container .wysiwyg a {
  color: #2d2d2d;
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media screen and (min-width: 1024px) {
  .post-single__container .wysiwyg a {
    text-underline-offset: clamp(2.1333333333px, calc(0.2083333333vw), 4px);
  }
}

.post-share {
  display: flex;
  padding: 11px 17px;
  background: #2d2d2d;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4px;
  border-radius: 48px;
  margin-top: 74px;
}
@media screen and (min-width: 768px) {
  .post-share {
    margin: 101px 0 0;
    gap: 10px;
  }
}
@media screen and (min-width: 1024px) {
  .post-share {
    margin-left: clamp(
      228.6222222222px,
      calc(22.3263888889vw),
      428.6666666667px
    );
    margin-top: clamp(78.9333333333px, calc(7.7083333333vw), 148px);
    gap: clamp(5.3333333333px, calc(0.5208333333vw), 10px);
    padding-block: clamp(
      10.1404444444px,
      calc(0.9902777778vw),
      19.0133333333px
    );
    padding-inline: clamp(7.4666666667px, calc(0.7291666667vw), 14px);
    border-radius: clamp(25.6px, calc(2.5vw), 48px);
  }
}

.post-share__label {
  color: #b5d99c;
  font-size: 14px;
  line-height: 160%;
}
@media screen and (min-width: 768px) {
  .post-share__label {
    font-size: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .post-share__label {
    font-size: clamp(8.5333333333px, calc(0.8333333333vw), 16px);
  }
}

.post-share__actions {
  display: flex;
  align-items: center;
  gap: 4px;
}
@media screen and (min-width: 768px) {
  .post-share__actions {
    gap: 10px;
  }
}
@media screen and (min-width: 1024px) {
  .post-share__actions {
    gap: clamp(5.3333333333px, calc(0.5208333333vw), 10px);
  }
}

.post-share__btn {
  border-radius: 75px;
  padding: 8px;
  background: #c9f0a6;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.33, 1.53, 0.69, 0.99);
}
@media screen and (min-width: 1024px) {
  .post-share__btn {
    padding: clamp(4.2666666667px, calc(0.4166666667vw), 8px);
    border-radius: clamp(53.3333333333px, calc(5.2083333333vw), 100px);
  }
  .post-share__btn:hover {
    background-color: #eef2ce;
  }
}
.post-share__btn > span {
  display: flex;
  align-items: center;
  justify-content: center;
}
.post-share__btn > span > svg,
.post-share__btn > svg {
  width: 34px;
  height: 34px;
  transition: all 0.5s cubic-bezier(0.33, 1.53, 0.69, 0.99);
  fill: #2d2d2d;
}
@media screen and (min-width: 1024px) {
  .post-share__btn > span > svg,
  .post-share__btn > svg {
    width: clamp(19.0435555556px, calc(1.8597222222vw), 35.7066666667px);
    height: clamp(19.0435555556px, calc(1.8597222222vw), 35.7066666667px);
  }
}
.post-share__btn .post-share__btn--coppy > svg {
  fill: transparent;
  stroke: #2d2d2d;
}
.post-share__btn .icon {
  fill: #2d2d2d;
}
.post-share__btn .icon-check {
  position: absolute;
  opacity: 0;
  transform: scale(0.6);
}
.post-share__btn.is-copied .icon-copy {
  opacity: 0;
  transform: scale(0.6);
}
.post-share__btn.is-copied .icon-check {
  opacity: 1;
  transform: scale(1);
}

.post-share__btn {
  position: relative;
}
.post-share__btn .icon-check {
  position: absolute;
}
.post-share__btn .icon-copy {
  opacity: 1;
  transform: scale(1);
}
.post-share__btn .icon-check {
  opacity: 0;
  transform: scale(0.6);
}
.post-share__btn.is-copied {
  background-color: #eef2ce;
}
.post-share__btn.is-copied .icon-copy {
  opacity: 0;
  transform: scale(0.6);
}
.post-share__btn.is-copied .icon-check {
  opacity: 1;
  transform: scale(1);
}

.contact {
  background: #2d2d2d;
  color: #f7f7f5;
}

.contact__container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 74px 18px 55px;
  display: grid;
  gap: 35px;
}
@media screen and (min-width: 768px) {
  .contact__container {
    padding: 101px 37px 69px;
    gap: 74px;
  }
}
@media screen and (min-width: 1024px) {
  .contact__container {
    padding-block: clamp(78.9333333333px, calc(7.7083333333vw), 148px);
    padding-inline: clamp(39.4666666667px, calc(3.8541666667vw), 74px);
    grid-template-columns: 1fr 1fr;
    gap: clamp(9.6px, calc(0.9375vw), 18px);
    align-items: start;
  }
}

.contact__left {
  position: relative;
  height: 100%;
  min-height: 604px;
  align-content: center;
}
@media screen and (min-width: 1024px) {
  .contact__left {
    padding: clamp(39.4666666667px, calc(3.8541666667vw), 74px);
    border-radius: clamp(14.9333333333px, calc(1.4583333333vw), 28px);
    border: 0.75px solid #eef2ce;
    min-height: clamp(
      491.3777777778px,
      calc(47.9861111111vw),
      921.3333333333px
    );
    border-width: clamp(0.5333333333px, calc(0.0520833333vw), 1px);
  }
}

.contact__step {
  display: none;
}

.contact__step.is-active {
  display: flex;
  gap: 48px;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .contact__step.is-active {
    gap: clamp(21.8666666667px, calc(2.1354166667vw), 41px);
  }
}

.contact__title {
  font-size: 39px;
  line-height: 110%;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .contact__title {
    font-size: 48px;
    line-height: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .contact__title {
    font-size: clamp(33.3368888889px, calc(3.2555555556vw), 62.5066666667px);
  }
}

.contact__cf7 {
  width: 100%;
  padding-bottom: 74px;
}
@media screen and (min-width: 768px) {
  .contact__cf7 {
    padding-bottom: 101px;
  }
}
@media screen and (min-width: 1024px) {
  .contact__cf7 {
    padding-bottom: 0;
  }
}

.contact-success {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
@media screen and (min-width: 1024px) {
  .contact-success {
    gap: clamp(9.6px, calc(0.9375vw), 18px);
  }
}

.contact-success__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 19px;
  width: 118px;
  height: 93px;
}
@media screen and (min-width: 1024px) {
  .contact-success__icon {
    margin-bottom: clamp(
      23.8222222222px,
      calc(2.3263888889vw),
      44.6666666667px
    );
    width: clamp(89.6px, calc(8.75vw), 168px);
    height: clamp(70.4px, calc(6.875vw), 132px);
  }
}

.contact-success__title {
  font-size: 39.063px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  color: #f7f7f5;
}
@media screen and (min-width: 768px) {
  .contact-success__title {
    font-size: 39.063px;
  }
}
@media screen and (min-width: 1024px) {
  .contact-success__title {
    font-size: clamp(21.3333333333px, calc(2.0833333333vw), 40px);
  }
}

.contact-success__text {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  color: #f7f7f5;
}
@media screen and (min-width: 1024px) {
  .contact-success__text {
    font-size: clamp(11.2px, calc(1.09375vw), 21px);
  }
}

/* booking card */
.contact__right {
  width: 100%;
  height: 100%;
}

.meeting-card {
  background-color: #eef2ce;
  border-radius: 24px;
  padding: 18px;
}
@media screen and (min-width: 768px) {
  .meeting-card {
    border-radius: 28px;
    padding: 37px;
  }
}
@media screen and (min-width: 1024px) {
  .meeting-card {
    border-radius: clamp(14.9333333333px, calc(1.4583333333vw), 28px);
    padding: clamp(39.4666666667px, calc(3.8541666667vw), 74px);
    min-height: clamp(467.7333333333px, calc(45.6770833333vw), 877px);
    height: inherit;
  }
}

.meeting-card__inner {
  border-radius: 24px;
  padding: 35px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .meeting-card__inner {
    padding: 34px 0;
  }
}
@media screen and (min-width: 1024px) {
  .meeting-card__inner {
    padding: 0;
    gap: clamp(12.8px, calc(1.25vw), 24px);
  }
}

.meeting-card__avatar {
  position: relative;
  width: 198px;
  height: 198px;
  border-radius: 198px;
  overflow: hidden;
  margin: 0 auto;
  background-color: #eef2ce;
}
@media screen and (min-width: 768px) {
  .meeting-card__avatar {
    width: 219px;
    height: 219px;
    border-radius: 219px;
  }
}
@media screen and (min-width: 1024px) {
  .meeting-card__avatar {
    width: clamp(145.6px, calc(14.21875vw), 273px);
    height: clamp(145.6px, calc(14.21875vw), 273px);
    border-radius: clamp(145.6px, calc(14.21875vw), 273px);
  }
}

.meeting-card__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.meeting-card__name {
  font-size: 34px;
  line-height: 110%;
  font-weight: 500;
  color: #f7f7f5;
  position: absolute;
  bottom: 8px;
  right: 0;
  left: 0;
}
@media screen and (min-width: 1024px) {
  .meeting-card__name {
    font-size: clamp(18.1333333333px, calc(1.7708333333vw), 34px);
  }
}

.meeting-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  min-width: 185px;
  padding: 8px;
  border-radius: 18px;
  background: #b9d59c;
  color: #1d401f;
  font-size: 18px;
  font-weight: 500;
  line-height: 110%;
  margin-top: -2px;
  z-index: 1;
  position: relative;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (min-width: 768px) {
  .meeting-card__badge {
    margin-top: 4px;
  }
}
@media screen and (min-width: 1024px) {
  .meeting-card__badge {
    margin-top: clamp(-4px, calc(-0.2083333333vw), -2.1333333333px);
  }
}

.meeting-card__title {
  font-size: 39px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  color: #2d2d2d;
}
@media screen and (min-width: 768px) {
  .meeting-card__title {
    font-size: 48px;
  }
}
@media screen and (min-width: 1024px) {
  .meeting-card__title {
    font-size: clamp(33.3368888889px, calc(3.2555555556vw), 62.5066666667px);
  }
}

.meeting-card__text {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 148%;
  color: #2d2d2d;
  margin-top: 6px;
}
@media screen and (min-width: 1024px) {
  .meeting-card__text {
    font-size: clamp(11.3777777778px, calc(1.1111111111vw), 21.3333333333px);
  }
}

.meeting-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 72px;
  width: 239px;
  border-radius: 48px;
  background: #2d2d2d;
  color: #f7f7f5;
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.33, 1.53, 0.69, 0.99);
}
@media screen and (min-width: 1024px) {
  .meeting-card__btn {
    width: clamp(141.5111111111px, calc(13.8194444444vw), 265.3333333333px);
    height: clamp(48px, calc(4.6875vw), 90px);
  }
}

.meeting-card__btn-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
}
@media screen and (min-width: 1024px) {
  .meeting-card__btn-text {
    font-size: clamp(9.9555555556px, calc(0.9722222222vw), 18.6666666667px);
  }
}

.meeting-card__btn-ico {
  width: 50px;
  height: 50px;
  border-radius: 100px;
  background-color: #b5d99c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.33, 1.53, 0.69, 0.99);
}
@media screen and (min-width: 1024px) {
  .meeting-card__btn-ico {
    width: clamp(26.6666666667px, calc(2.6041666667vw), 50px);
    height: clamp(26.6666666667px, calc(2.6041666667vw), 50px);
  }
}
.meeting-card__btn-ico > svg {
  width: 34px;
  height: 34px;
  fill: #2d2d2d;
  transition: all 0.5s cubic-bezier(0.33, 1.53, 0.69, 0.99);
}
@media screen and (min-width: 1024px) {
  .meeting-card__btn-ico > svg {
    width: clamp(18.1333333333px, calc(1.7708333333vw), 34px);
    height: clamp(18.1333333333px, calc(1.7708333333vw), 34px);
  }
}

@media screen and (min-width: 1024px) {
  .meeting-card__btn:hover {
    background-color: #b5d99c;
  }
  .meeting-card__btn:hover > .meeting-card__btn-text {
    color: #2d2d2d;
  }
  .meeting-card__btn:hover > .meeting-card__btn-ico {
    background-color: #2d2d2d;
  }
  .meeting-card__btn:hover > .meeting-card__btn-ico > svg {
    fill: #b5d99c;
  }
}

/* =========================
   CF7 CONTACT FORM
========================= */
.cf7-contact {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media screen and (min-width: 1024px) {
  .cf7-contact {
    gap: clamp(9.6px, calc(0.9375vw), 18px);
  }
}

/* =========================
   GRID
========================= */
.cf7-contact__grid {
  display: grid;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .cf7-contact__grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px 10px;
  }
}
@media screen and (min-width: 1024px) {
  .cf7-contact__grid {
    grid-column-gap: clamp(5.3333333333px, calc(0.5208333333vw), 10px);
    grid-row-gap: clamp(9.6px, calc(0.9375vw), 18px);
  }
}

/* =========================
   FIELD
========================= */
.cf7-contact__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media screen and (min-width: 1024px) {
  .cf7-contact__field {
    gap: clamp(2.1333333333px, calc(0.2083333333vw), 4px);
  }
}

.cf7-contact__label {
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  color: #f7f7f5;
}
@media screen and (min-width: 1024px) {
  .cf7-contact__label {
    font-size: clamp(8.5333333333px, calc(0.8333333333vw), 16px);
  }
}

/* =========================
   CONTROL WRAPPER
========================= */
.cf7-contact__control {
  position: relative;
  display: block;
  width: 100%;
  background: transparent;
  overflow: hidden;
}

.cf7-contact__control .wpcf7-form-control-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.cf7-contact__control .wpcf7-form-control-wrap::after {
  content: "";
  order: 2;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #8ca691;
  transition: all 0.5s cubic-bezier(0.33, 1.53, 0.69, 0.99);
}

/* =========================
   INPUT / TEXTAREA BASE
========================= */
.cf7-contact__input,
.cf7-contact__textarea {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  padding: 38px 14px;
  border-bottom: 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: none;
}
@media screen and (min-width: 1024px) {
  .cf7-contact__input,
  .cf7-contact__textarea {
    font-size: clamp(8.5333333333px, calc(0.8333333333vw), 16px);
    padding-block: clamp(20.2666666667px, calc(1.9791666667vw), 38px);
    padding-inline: clamp(7.4666666667px, calc(0.7291666667vw), 14px);
  }
}

.cf7-contact__control .wpcf7-form-control-wrap > .cf7-contact__input,
.cf7-contact__control .wpcf7-form-control-wrap > .cf7-contact__textarea {
  order: 1;
}

.cf7-contact__control .wpcf7-form-control-wrap > .cf7-contact__textarea {
  order: 1;
  height: 92px;
}
@media screen and (min-width: 1024px) {
  .cf7-contact__control .wpcf7-form-control-wrap > .cf7-contact__textarea {
    height: clamp(49.0666666667px, calc(4.7916666667vw), 92px);
  }
}

/* placeholder */
.cf7-contact__input::-moz-placeholder,
.cf7-contact__textarea::-moz-placeholder {
  color: #7d7d7d;
}
.cf7-contact__input::placeholder,
.cf7-contact__textarea::placeholder {
  color: #7d7d7d;
}

/* =========================
   TIP — ЗАВЖДИ ПІД ЛІНІЄЮ
========================= */
.cf7-contact__control .wpcf7-not-valid-tip {
  order: 3;
  display: block;
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.2;
  color: #d97171;
}
@media screen and (min-width: 1024px) {
  .cf7-contact__control .wpcf7-not-valid-tip {
    margin-top: clamp(2.1333333333px, calc(0.2083333333vw), 4px);
  }
}

/* =========================
   ACTIVE / FOCUS STATE
========================= */
.cf7-contact__control:focus-within {
  background: linear-gradient(0deg, #373737 0%, rgba(55, 55, 55, 0) 100%);
}

.cf7-contact__control:focus-within .wpcf7-form-control-wrap::after {
  background: #b5d99c;
}

/* =========================
   FILLED STATE
========================= */
.cf7-contact__control:not(:focus-within):has(
    .cf7-contact__input:not(:-moz-placeholder)
  )
  .wpcf7-form-control-wrap::after,
.cf7-contact__control:not(:focus-within):has(
    .cf7-contact__textarea:not(:-moz-placeholder)
  )
  .wpcf7-form-control-wrap::after {
  background: #8ca691;
}
.cf7-contact__control:not(:focus-within):has(
    .cf7-contact__input:not(:placeholder-shown)
  )
  .wpcf7-form-control-wrap::after,
.cf7-contact__control:not(:focus-within):has(
    .cf7-contact__textarea:not(:placeholder-shown)
  )
  .wpcf7-form-control-wrap::after {
  background: #8ca691;
}

/* =========================
   ERROR STATE 
========================= */
.cf7-contact__control:has(.wpcf7-not-valid) .wpcf7-form-control-wrap::after {
  background: #d98787;
}

.cf7-contact__control:has(.wpcf7-not-valid) .cf7-contact__input,
.cf7-contact__control:has(.wpcf7-not-valid) .cf7-contact__textarea {
  background-image: radial-gradient(
    120% 120% at 50% 100%,
    rgba(217, 113, 113, 0.22) 0%,
    rgba(217, 113, 113, 0) 100%
  );
}

/* =========================
   CHECKBOX PILLS
========================= */
.cf7-contact__row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media screen and (min-width: 1024px) {
  .cf7-contact__row {
    gap: clamp(9.6px, calc(0.9375vw), 18px);
  }
}

.wpcf7-form-control.wpcf7-checkbox.cf7-contact__check {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}
@media screen and (min-width: 1024px) {
  .wpcf7-form-control.wpcf7-checkbox.cf7-contact__check {
    gap: clamp(5.8666666667px, calc(0.5729166667vw), 11px);
  }
}

.cf7-contact__pills .wpcf7-list-item {
  margin: 0;
}

.cf7-contact__pills label {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

.cf7-contact__pills input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cf7-contact__pills .wpcf7-list-item-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 22px 14px;
  border-radius: 48px;
  border: 1px solid #eef2ce;
  color: #eef2ce;
  font-size: 16px;
  line-height: 100%;
  background: transparent;
  transition: all 0.3s ease;
}
@media screen and (min-width: 1024px) {
  .cf7-contact__pills .wpcf7-list-item-label {
    padding-block: clamp(11.7333333333px, calc(1.1458333333vw), 22px);
    padding-inline: clamp(7.4666666667px, calc(0.7291666667vw), 14px);
    height: clamp(32px, calc(3.125vw), 60px);
    font-size: clamp(8.5333333333px, calc(0.8333333333vw), 16px);
  }
}

.cf7-contact__pills input[type="checkbox"]:checked + .wpcf7-list-item-label {
  background: #eef2ce;
  border-color: #eef2ce;
  color: #2d2d2d;
}

/* =========================
   FILE
========================= */
.cf7-file-wrapper {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .cf7-file-wrapper {
    width: -moz-fit-content;
    width: fit-content;
  }
}

.cf7-contact__file {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .cf7-contact__file {
    gap: clamp(4.2666666667px, calc(0.4166666667vw), 8px);
    align-items: flex-start;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.cf7-file-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cf7-file-label {
  width: 100%;
  height: 72px;
  border-radius: 48px;
  border: 1px solid #b5d99c;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.33, 1.53, 0.69, 0.99);
}
@media screen and (min-width: 1024px) {
  .cf7-file-label {
    height: clamp(48px, calc(4.6875vw), 90px);
    gap: clamp(5.3333333333px, calc(0.5208333333vw), 10px);
    padding-inline: clamp(7.4666666667px, calc(0.7291666667vw), 14px);
    width: -moz-fit-content;
    width: fit-content;
  }
}

.cf7-file-text {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  color: #f7f7f5;
}
@media screen and (min-width: 1024px) {
  .cf7-file-text {
    font-size: clamp(9.9555555556px, calc(0.9722222222vw), 18.6666666667px);
  }
}

.cf7-file-icon {
  width: 42px;
  height: 42px;
  border-radius: 81.224px;
  background: #414141;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1024px) {
  .cf7-file-icon {
    width: clamp(26.6666666667px, calc(2.6041666667vw), 50px);
    height: clamp(26.6666666667px, calc(2.6041666667vw), 50px);
  }
}
@media screen and (min-width: 1024px) {
  .cf7-file-icon > svg {
    width: clamp(12.8px, calc(1.25vw), 24px);
    height: clamp(12.8px, calc(1.25vw), 24px);
  }
}

@media screen and (min-width: 1024px) {
  .cf7-file-label:hover {
    color: #2d2d2d;
    background-color: #b5d99c;
  }
  .cf7-file-label:hover > .cf7-file-text {
    color: #2d2d2d;
  }
}

.cf7-contact__file-note {
  font-size: 14px;
  line-height: 100%;
  color: #949494;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .cf7-contact__file-note {
    font-size: clamp(7.4666666667px, calc(0.7291666667vw), 14px);
    align-self: center;
  }
}

/* =========================
   ACTIONS / SUBMIT
========================= */
.cf7-contact__actions {
  display: grid;
  gap: 18px;
  margin-top: 19px;
}
@media screen and (min-width: 768px) {
  .cf7-contact__actions {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    margin-top: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .cf7-contact__actions {
    margin-top: clamp(12.2666666667px, calc(1.1979166667vw), 23px);
  }
}

.cf7-contact__submit {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .cf7-contact__submit {
    max-width: clamp(99.5555555556px, calc(9.7222222222vw), 186.6666666667px);
    justify-self: end;
  }
}

.cf7-contact__submit-btn {
  width: 100%;
  height: 72px;
  border: 0;
  border-radius: 48px;
  background: #b5d99c;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.5s cubic-bezier(0.33, 1.53, 0.69, 0.99);
}
@media screen and (min-width: 1024px) {
  .cf7-contact__submit-btn {
    max-width: clamp(99.5555555556px, calc(9.7222222222vw), 186.6666666667px);
    height: clamp(48px, calc(4.6875vw), 90px);
    gap: clamp(5.3333333333px, calc(0.5208333333vw), 10px);
  }
}

.cf7-contact__submit-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  color: #2d2d2d;
}
@media screen and (min-width: 1024px) {
  .cf7-contact__submit-text {
    font-size: clamp(9.9555555556px, calc(0.9722222222vw), 18.6666666667px);
  }
}

.cf7-contact__submit-icon {
  width: 47px;
  height: 47px;
  border-radius: 81.224px;
  background-color: #2d2d2d;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media screen and (min-width: 1024px) {
  .cf7-contact__submit-icon {
    width: clamp(26.6666666667px, calc(2.6041666667vw), 50px);
    height: clamp(26.6666666667px, calc(2.6041666667vw), 50px);
  }
}
@media screen and (min-width: 1024px) {
  .cf7-contact__submit-icon > svg {
    width: clamp(18.1333333333px, calc(1.7708333333vw), 34px);
    height: clamp(18.1333333333px, calc(1.7708333333vw), 34px);
  }
}

@media screen and (min-width: 1024px) {
  .cf7-contact__submit-btn:hover {
    background-color: #eef2ce;
  }
  .cf7-contact__submit-btn:hover > .cf7-contact__submit-text {
    color: #2d2d2d;
  }
  .cf7-contact__submit-btn:hover > .cf7-contact__submit-icon > svg > path {
    fill: #eef2ce;
  }
}

/* disabled state CF7 */
.cf7-contact__submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* =========================
   REMOVE AUTOFILL STYLES
========================= */
.cf7-contact__input:-webkit-autofill,
.cf7-contact__input:-webkit-autofill:hover,
.cf7-contact__input:-webkit-autofill:focus,
.cf7-contact__textarea:-webkit-autofill,
.cf7-contact__textarea:-webkit-autofill:hover,
.cf7-contact__textarea:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff;
  caret-color: #fff;
  -webkit-transition: background-color 9999s ease-out 0s;
  transition: background-color 9999s ease-out 0s;
}

.wpcf7-response-output {
  display: none;
}

.cf7-contact__textarea {
  resize: none;
}

.contacts {
  background-color: #2d2d2d;
}

.contacts__container {
  margin-inline: auto;
  max-width: 1920px;
  padding: 46px 18px 55px;
}
@media screen and (min-width: 768px) {
  .contacts__container {
    padding: 69px 37px;
  }
}
@media screen and (min-width: 1024px) {
  .contacts__container {
    padding: clamp(39.4666666667px, calc(3.8541666667vw), 74px);
  }
}

.contacts__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .contacts__list {
    gap: 18px;
  }
}
@media screen and (min-width: 1024px) {
  .contacts__list {
    gap: clamp(14.9333333333px, calc(1.4583333333vw), 28px);
  }
}

.contacts__card {
  background: #373737;
  border-radius: 198px;
  padding: 10px 37px;
  min-height: 168px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  width: -moz-fit-content;
  width: fit-content;
  flex: 1 1 auto;
}
@media screen and (min-width: 1024px) {
  .contacts__card {
    padding-block: clamp(5.3333333333px, calc(0.5208333333vw), 10px);
    padding-inline: clamp(
      32.3555555556px,
      calc(3.1597222222vw),
      60.6666666667px
    );
    min-height: clamp(117.8666666667px, calc(11.5104166667vw), 221px);
    gap: clamp(9.6px, calc(0.9375vw), 18px);
    border-radius: clamp(105.6px, calc(10.3125vw), 198px);
  }
  .contacts__card:hover > span.contacts__value {
    color: #b5d99c;
  }
  .contacts__card:hover > span.contacts__value > svg {
    opacity: 1;
  }
}

.contacts__label {
  color: #f7f7f5;
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
}
@media screen and (min-width: 768px) {
  .contacts__label {
    font-size: 18px;
  }
}
@media screen and (min-width: 1024px) {
  .contacts__label {
    font-size: clamp(9.9555555556px, calc(0.9722222222vw), 18.6666666667px);
  }
}

.contacts__value {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #f7f7f5;
  font-size: 28px;
  font-weight: 400;
  line-height: 110%;
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.33, 1.53, 0.69, 0.99);
  width: 100%;
}
@media screen and (min-width: 768px) {
  .contacts__value {
    font-size: 33.6px;
  }
}
@media screen and (min-width: 1024px) {
  .contacts__value {
    font-size: clamp(17.92px, calc(1.75vw), 33.6px);
    gap: clamp(5.6888888889px, calc(0.5555555556vw), 10.6666666667px);
  }
}
.contacts__value > svg {
  display: none;
  transition: all 0.5s cubic-bezier(0.33, 1.53, 0.69, 0.99);
}
@media screen and (min-width: 1024px) {
  .contacts__value > svg {
    display: flex;
    opacity: 0;
    width: clamp(25.3930666667px, calc(2.4797916667vw), 47.612px);
    height: clamp(25.3930666667px, calc(2.4797916667vw), 47.612px);
    fill: #b5d99c;
  }
}

.gmap {
  background: var(--Jet, #2d2d2d);
}

.gmap__container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 46px 18px 101px;
}
@media screen and (min-width: 768px) {
  .gmap__container {
    padding: 69px 37px 164px;
  }
}
@media screen and (min-width: 1024px) {
  .gmap__container {
    padding-top: clamp(39.4666666667px, calc(3.8541666667vw), 74px);
    padding-inline: clamp(39.4666666667px, calc(3.8541666667vw), 74px);
    padding-bottom: clamp(78.9333333333px, calc(7.7083333333vw), 148px);
  }
}

.gmap__media {
  position: relative;
  width: 100%;
  height: 324px;
  aspect-ratio: 2/1;
  background:
    linear-gradient(
      0deg,
      rgba(140, 166, 145, 0.7) 0%,
      rgba(140, 166, 145, 0.7) 100%
    ),
    lightgray 50% / cover no-repeat;
  background-blend-mode: multiply, normal;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .gmap__media {
    height: 694px;
  }
}
@media screen and (min-width: 1024px) {
  .gmap__media {
    height: clamp(417.6px, calc(40.78125vw), 783px);
  }
}

/* Google Map canvas */
.gmap__media > div {
  width: 100%;
  height: 100%;
}

.gmnoprint,
.gm-style-cc {
  display: none;
}

.team-polaroids {
  background: #2d2d2d;
  overflow: hidden;
}

.team-polaroids__container {
  padding: 79px 18px 200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 153px;
}
@media screen and (min-width: 768px) {
  .team-polaroids__container {
    padding: 101px 37px 138px;
    gap: 239px;
  }
}
@media screen and (min-width: 1024px) {
  .team-polaroids__container {
    max-width: 1920px;
    padding-inline: clamp(39.4666666667px, calc(3.8541666667vw), 74px);
    padding-top: clamp(78.9333333333px, calc(7.7083333333vw), 148px);
    padding-bottom: clamp(142.9333333333px, calc(13.9583333333vw), 268px);
    gap: clamp(110.9333333333px, calc(10.8333333333vw), 208px);
  }
}

.team-polaroids__text {
  color: var(--Seasalt, #f7f7f5);
  text-align: center;
  font-size: 48px;
  font-weight: 400;
  line-height: 100%;
}
@media screen and (min-width: 768px) {
  .team-polaroids__text {
    font-size: 77px;
  }
}
@media screen and (min-width: 1024px) {
  .team-polaroids__text {
    font-size: clamp(53.3333333333px, calc(5.2083333333vw), 100px);
    position: relative;
    z-index: 5;
    max-width: clamp(469.3333333333px, calc(45.8333333333vw), 880px);
    margin: 0 auto;
  }
}
.team-polaroids__text p {
  margin: 0;
}

.team-polaroids-mob {
  display: block;
  max-width: 848px;
}
@media screen and (min-width: 1024px) {
  .team-polaroids-mob {
    display: none;
    margin: 0 auto;
  }
}

.team-polaroids-mob__stage {
  position: relative;
  margin: 0 auto;
  width: 100%;
  display: inline-flex;
  height: 1078px;
  padding: 19px 4.136px 18.534px 10.117px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .team-polaroids-mob__stage {
    height: 515px;
    padding: 0;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 30px;
  }
}

.team-polaroids-mob__item {
  position: absolute;
  margin: 0;
  background: #f7f7f5;
  border-radius: 2.571px;
  padding: 12.857px 12.857px 38.572px 12.857px;
  width: 230px;
  max-width: 58vw;
  transform-origin: center center;
}
@media screen and (min-width: 768px) {
  .team-polaroids-mob__item {
    position: static;
    width: 198px;
    padding: 11.095px 11.095px 33.284px 11.095px;
  }
}

.team-polaroids-mob__img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  pointer-events: auto;
  -webkit-user-drag: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-select: none;
}

.team-polaroids-mob__item--1 {
  left: 30px;
  top: 38px;
  z-index: 1;
  transform: rotate(-10.504deg);
}

.team-polaroids-mob__item--2 {
  left: 105px;
  top: 161px;
  transform: rotate(14.226deg);
}
@media screen and (min-width: 768px) {
  .team-polaroids-mob__item--2 {
    z-index: 2;
  }
}

.team-polaroids-mob__item--3 {
  left: 25px;
  top: 360px;
  z-index: 1;
  transform: rotate(-13.118deg);
}

.team-polaroids-mob__item--4 {
  left: 100px;
  top: 472px;
  z-index: 1;
  transform: rotate(16.985deg);
}
@media screen and (min-width: 768px) {
  .team-polaroids-mob__item--4 {
    transform: rotate(-18.496deg);
  }
}

.team-polaroids-mob__item--5 {
  left: 35px;
  top: 667px;
  z-index: 1;
  transform: rotate(-22.821deg);
}
@media screen and (min-width: 768px) {
  .team-polaroids-mob__item--5 {
    transform: rotate(16.81deg);
  }
}

.team-polaroids-mob__item--6 {
  left: 90px;
  top: 794px;
  z-index: 1;
  transform: rotate(16.81deg);
}
@media screen and (min-width: 768px) {
  .team-polaroids-mob__item--6 {
    transform: rotate(13.382deg);
  }
}

/* =========================
   DESKTOP (drag board)
========================= */
.team-polaroids-desk {
  display: none;
}
@media screen and (min-width: 1024px) {
  .team-polaroids-desk {
    display: block;
  }
}

.team-polaroids-desk__board {
  position: relative;
  margin: 0 auto;
  width: 100%;
  height: clamp(494.9333333333px, calc(48.3333333333vw), 928px);
  overflow: visible;
}

.team-polaroids-desk__card {
  position: absolute;
  left: 0;
  top: 0;
  width: clamp(190.5777777778px, calc(18.6111111111vw), 357.3333333333px);
  cursor: grab;
  will-change: transform, left, top;
  transform-origin: center center;
  transform: rotate(var(--rotate, -8deg));
  transition: transform 0.15s ease;
  touch-action: none;
}

.team-polaroids-desk__card.is-dragging {
  cursor: grabbing;
  transition: none;
}

.team-polaroids-desk__frame {
  background: #f7f7f5;
  border-radius: clamp(2.1333333333px, calc(0.2083333333vw), 4px);
  padding-inline: clamp(10.6666666667px, calc(1.0416666667vw), 20px);
  padding-top: clamp(10.6666666667px, calc(1.0416666667vw), 20px);
  padding-bottom: clamp(32px, calc(3.125vw), 60px);
}

.team-polaroids-desk__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-select: none;
}

/* оберти */
.team-polaroids-desk__card:nth-child(1) {
  --rotate: -8deg;
}

.team-polaroids-desk__card:nth-child(2) {
  --rotate: 5deg;
}

.team-polaroids-desk__card:nth-child(3) {
  --rotate: -3deg;
}

.team-polaroids-desk__card:nth-child(4) {
  --rotate: 9deg;
}

.team-polaroids-desk__card:nth-child(5) {
  --rotate: -10deg;
}

.team-polaroids-desk__card:nth-child(6) {
  --rotate: 6deg;
}

.team-polaroids-desk__card:nth-child(7) {
  --rotate: -4deg;
}

.team-polaroids-desk__card:nth-child(8) {
  --rotate: 11deg;
}

.team-polaroids-desk__card:not(.is-dragging):hover {
  transform: rotate(calc(var(--rotate, -6deg) * 0.6)) scale(1.03);
}

.about-ms {
  background: #f7f7f5;
}

/* container */
.about-ms__container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 101px 18px;
  display: flex;
  flex-direction: column;
  gap: 157px;
}
@media screen and (min-width: 768px) {
  .about-ms__container {
    padding: 101px 37px;
    gap: 138px;
  }
}
@media screen and (min-width: 1024px) {
  .about-ms__container {
    padding-block: clamp(78.9333333333px, calc(7.7083333333vw), 148px);
    padding-inline: clamp(39.4666666667px, calc(3.8541666667vw), 74px);
    gap: clamp(78.2222222222px, calc(7.6388888889vw), 146.6666666667px);
  }
}

/* =========================
   TOP (Mission / Orbit / Vision)
========================= */
.about-ms__top {
  display: grid;
  align-items: start;
  row-gap: 18px;
}
@media screen and (min-width: 768px) {
  .about-ms__top {
    row-gap: 0;
  }
}
@media screen and (min-width: 1024px) {
  .about-ms__top {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    -moz-column-gap: 0;
    column-gap: 0;
    row-gap: 0;
    margin-bottom: 72px;
    position: relative;
  }
}

.about-ms__block {
  position: relative;
  padding: 18px 8px;
  display: flex;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .about-ms__block {
    padding: 18px;
    gap: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .about-ms__block {
    width: clamp(394.6666666667px, calc(38.5416666667vw), 740px);
    padding: clamp(19.7333333333px, calc(1.9270833333vw), 37px);
    gap: clamp(21.3333333333px, calc(2.0833333333vw), 40px);
  }
}

.about-ms__block--mission {
  justify-self: start;
}
@media screen and (min-width: 1024px) {
  .about-ms__block--mission {
    align-self: center;
  }
}

.about-ms__block--vision {
  justify-self: end;
}
@media screen and (min-width: 768px) {
  .about-ms__block--vision {
    margin-top: -54px;
  }
}
@media screen and (min-width: 1024px) {
  .about-ms__block--vision {
    margin-top: clamp(-56px, calc(-2.9166666667vw), -29.8666666667px);
    grid-column: 2/6;
    grid-row: 2;
  }
}

.about-ms__orbit-wrap {
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(10px);
}
@media screen and (min-width: 768px) {
  .about-ms__orbit-wrap {
    margin-top: -118px;
  }
}
@media screen and (min-width: 1024px) {
  .about-ms__orbit-wrap {
    margin-top: 0;
    width: clamp(336px, calc(32.8125vw), 630px);
    height: clamp(310.7555555556px, calc(30.3472222222vw), 582.6666666667px);
    margin-left: clamp(
      -166.6666666667px,
      calc(-8.6805555556vw),
      -88.8888888889px
    );
  }
}

.about-ms__orbit-wrap.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition-property: opacity, transform;
  transition-duration: 700ms;
  transition-timing-function: ease;
}

.about-ms__orbit {
  width: min(324px, 86vw);
  height: auto;
}
@media screen and (min-width: 768px) {
  .about-ms__orbit {
    width: min(410px, 72vw);
    height: min(380px, 72vw);
  }
}
@media screen and (min-width: 1024px) {
  .about-ms__orbit {
    width: clamp(336px, calc(32.8125vw), 630px);
    height: clamp(310.7555555556px, calc(30.3472222222vw), 582.6666666667px);
  }
}

/* text group inside mission/vision */
.about-ms__tx {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 286px;
}
@media screen and (min-width: 768px) {
  .about-ms__tx {
    gap: 28px;
    max-width: 253px;
  }
}
@media screen and (min-width: 1024px) {
  .about-ms__tx {
    gap: clamp(14.9333333333px, calc(1.4583333333vw), 28px);
    max-width: clamp(321.4222222222px, calc(31.3888888889vw), 602.6666666667px);
  }
}

.about-ms__h {
  color: #2d2d2d;
  font-size: 39px;
  font-weight: 400;
  line-height: 110%;
}
@media screen and (min-width: 768px) {
  .about-ms__h {
    font-size: 39px;
  }
}
@media screen and (min-width: 1024px) {
  .about-ms__h {
    font-size: clamp(33.3368888889px, calc(3.2555555556vw), 62.5066666667px);
    line-height: clamp(36.672px, calc(3.58125vw), 68.76px);
  }
}

.about-ms__p {
  color: #2d2d2d;
  font-size: 18px;
  font-weight: 400;
  line-height: 148%;
}
@media screen and (min-width: 768px) {
  .about-ms__p {
    font-size: 18px;
  }
}
@media screen and (min-width: 1024px) {
  .about-ms__p {
    font-size: clamp(11.3777777778px, calc(1.1111111111vw), 21.3333333333px);
    line-height: clamp(18.2044444444px, calc(1.7777777778vw), 34.1333333333px);
  }
}
.about-ms__p p {
  margin: 0;
}
.about-ms__p p + p {
  margin-top: 10px;
}

/* JP vertical for top blocks */
.about-ms__jp {
  writing-mode: vertical-rl;
  font-size: 14.41px;
  color: #80a676;
  font-weight: 300;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .about-ms__jp {
    font-size: 14.41px;
  }
}
@media screen and (min-width: 1024px) {
  .about-ms__jp {
    font-size: clamp(13.0197333333px, calc(1.2714583333vw), 24.412px);
    line-height: clamp(13.0197333333px, calc(1.2714583333vw), 24.412px);
  }
}

/* =========================
   CENTER TITLE
========================= */
.about-ms__title {
  color: #2d2d2d;
  text-align: center;
  align-self: center;
  font-size: 48px;
  font-weight: 400;
  line-height: 100%;
}
@media screen and (min-width: 768px) {
  .about-ms__title {
    font-size: 77px;
  }
}
@media screen and (min-width: 1024px) {
  .about-ms__title {
    font-size: clamp(53.3333333333px, calc(5.2083333333vw), 100px);
    line-height: clamp(53.3333333333px, calc(5.2083333333vw), 100px);
    max-width: clamp(469.3333333333px, calc(45.8333333333vw), 880px);
  }
}

/* =========================
   BOTTOM (Flower + 3 items)
   HTML order: pos-1 -> flower -> pos-2 -> pos-3
========================= */
.about-ms__bottom {
  position: relative;
  display: grid;
  row-gap: 18px;
  align-items: start;
  /* tablet */
}
@media screen and (min-width: 768px) {
  .about-ms__bottom {
    row-gap: 12px;
    grid-template-columns: 1fr 1fr;
  }
}
.about-ms__bottom {
  /* desktop */
}
@media screen and (min-width: 1024px) {
  .about-ms__bottom {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: auto;
    -moz-column-gap: 0;
    column-gap: 0;
    row-gap: 0;
    max-height: clamp(
      590.2222222222px,
      calc(57.6388888889vw),
      1106.6666666667px
    );
  }
}

.about-ms__flower-content {
  position: relative;
  order: 2;
}
@media screen and (min-width: 768px) {
  .about-ms__flower-content {
    grid-column: 1/-1;
    justify-self: center;
  }
}
@media screen and (min-width: 1024px) {
  .about-ms__flower-content {
    grid-column: 3/6;
    grid-row: 2/-1;
    align-self: center;
    justify-self: center;
  }
}

/* JP near flower */
.about-ms__jp--flower-global {
  position: absolute;
  writing-mode: horizontal-tb;
  text-orientation: mixed;
  color: #80a676;
  font-weight: 300;
  pointer-events: none;
  font-size: 19px;
  line-height: 110%;
  left: 15px;
  bottom: 30px;
}
@media screen and (min-width: 768px) {
  .about-ms__jp--flower-global {
    font-size: 19px;
  }
}
@media screen and (min-width: 1024px) {
  .about-ms__jp--flower-global {
    bottom: clamp(109.5111111111px, calc(10.6944444444vw), 205.3333333333px);
    left: clamp(-46.6666666667px, calc(-2.4305555556vw), -24.8888888889px);
    font-size: clamp(10.1653333333px, calc(0.9927083333vw), 19.06px);
    line-height: clamp(11.1822222222px, calc(1.0920138889vw), 20.9666666667px);
  }
}

.about-ms__flower-wrap {
  display: grid;
  place-items: end;
  opacity: 0;
  transform: translateY(10px);
}
@media screen and (min-width: 768px) {
  .about-ms__flower-wrap {
    margin-top: -40px;
    margin-left: 48px;
  }
}
@media screen and (min-width: 1024px) {
  .about-ms__flower-wrap {
    margin-top: 0;
  }
}

.about-ms__flower-wrap.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition-property: opacity, transform;
  transition-duration: 700ms;
  transition-timing-function: ease;
}

.about-ms__flower {
  width: min(290px, 92vw);
  height: auto;
  stroke-width: 1.8px;
}
@media screen and (min-width: 768px) {
  .about-ms__flower {
    width: 367.5px;
    height: 386px;
  }
}
@media screen and (min-width: 1024px) {
  .about-ms__flower {
    width: clamp(392px, calc(38.28125vw), 735px);
    height: clamp(411.7333333333px, calc(40.2083333333vw), 772px);
  }
}

/* items */
.about-ms__item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 18px;
  max-width: 324px;
}
@media screen and (min-width: 768px) {
  .about-ms__item {
    max-width: 338px;
  }
}
@media screen and (min-width: 1024px) {
  .about-ms__item {
    gap: clamp(9.6px, calc(0.9375vw), 18px);
    padding: clamp(9.6px, calc(0.9375vw), 18px);
    max-width: clamp(241.0666666667px, calc(23.5416666667vw), 452px);
  }
}

.about-ms__item--h {
  color: #2d2d2d;
  font-size: 28px;
  font-weight: 500;
  line-height: 110%;
}
@media screen and (min-width: 1024px) {
  .about-ms__item--h {
    font-size: clamp(20.8334222222px, calc(2.0345138889vw), 39.0626666667px);
    line-height: clamp(22.9169777778px, calc(2.2379861111vw), 42.9693333333px);
  }
}

.about-ms__item--p {
  color: #2d2d2d;
  font-size: 18px;
  font-weight: 400;
  line-height: 148%;
}
@media screen and (min-width: 1024px) {
  .about-ms__item--p {
    font-size: clamp(11.3777777778px, calc(1.1111111111vw), 21.3333333333px);
    line-height: clamp(18.2044444444px, calc(1.7777777778vw), 34.1333333333px);
  }
}

/* tablet placement (pos-1 right top, pos-2 left, pos-3 left below) */
.about-ms__item.pos-1 {
  order: 1;
}
@media screen and (min-width: 768px) {
  .about-ms__item.pos-1 {
    grid-column: 1;
    justify-self: start;
    align-self: start;
    padding-top: 8px;
  }
}
@media screen and (min-width: 1024px) {
  .about-ms__item.pos-1 {
    grid-column: 6/8;
    grid-row: 2;
    align-self: start;
    justify-self: end;
    margin-top: clamp(64px, calc(6.25vw), 120px);
  }
}

.about-ms__item.pos-2 {
  order: 3;
}
@media screen and (min-width: 768px) {
  .about-ms__item.pos-2 {
    grid-column: 2;
    justify-self: start;
    align-self: start;
    padding-top: 8px;
  }
}
@media screen and (min-width: 1024px) {
  .about-ms__item.pos-2 {
    grid-column: 1/3;
    grid-row: 2;
    align-self: center;
    justify-self: center;
  }
}

.about-ms__item.pos-3 {
  order: 4;
}
@media screen and (min-width: 768px) {
  .about-ms__item.pos-3 {
    grid-column: 1;
    justify-self: start;
    align-self: start;
    padding-top: 6px;
  }
}
@media screen and (min-width: 1024px) {
  .about-ms__item.pos-3 {
    grid-column: 5/7;
    grid-row: 3;
    align-self: end;
    justify-self: end;
    margin-top: clamp(-80px, calc(-4.1666666667vw), -42.6666666667px);
  }
}

/* ===== SVG draw =====
   НЕ ставимо 1 в CSS (це ламає). Даші задаються JS-ом через getTotalLength().
*/
.about-ms__flower [data-flower-path] {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ===== assets/scss/sections/_more-dev.scss
   Без @media — тільки твої міксини tabletmin / tabletmax + clamp()
*/
.more-dev {
  background: #2d2d2d;
  color: var(--Seasalt, #f7f7f5);
}

.more-dev__container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 138px 18px 74px;
  display: flex;
  flex-direction: column;
  gap: 37px;
}
@media screen and (min-width: 768px) {
  .more-dev__container {
    padding: 185px 37px 34px;
    gap: 133px;
  }
}
@media screen and (min-width: 1024px) {
  .more-dev__container {
    padding-block: clamp(78.9333333333px, calc(7.7083333333vw), 148px);
    padding-inline: clamp(49.0666666667px, calc(4.7916666667vw), 92px);
    gap: clamp(97.9555555556px, calc(9.5659722222vw), 183.6666666667px);
  }
}

.more-dev__head {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 37px;
}
@media screen and (min-width: 1024px) {
  .more-dev__head {
    gap: clamp(19.7333333333px, calc(1.9270833333vw), 37px);
    max-width: clamp(492.0888888889px, calc(48.0555555556vw), 922.6666666667px);
    align-self: center;
  }
}

.more-dev__title {
  color: var(--Seasalt, #f7f7f5);
  font-weight: 400;
  line-height: 110%;
  font-size: 39px;
}
@media screen and (min-width: 768px) {
  .more-dev__title {
    font-size: 48px;
    line-height: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .more-dev__title {
    font-size: clamp(33.3368888889px, calc(3.2555555556vw), 62.5066666667px);
    line-height: clamp(36.6648888889px, calc(3.5805555556vw), 68.7466666667px);
  }
}

.more-dev__desc {
  color: var(--Seasalt, #f7f7f5);
  font-size: 18px;
  font-weight: 400;
  line-height: 148%;
}
@media screen and (min-width: 1024px) {
  .more-dev__desc {
    font-size: clamp(11.3777777778px, calc(1.1111111111vw), 21.3333333333px);
    line-height: clamp(18.2044444444px, calc(1.7777777778vw), 34.1333333333px);
  }
}

/* ===== layout wrapper ===== */
.more-dev__layout {
  display: grid;
  gap: 37px;
}
@media screen and (min-width: 768px) {
  .more-dev__layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
@media screen and (min-width: 1024px) {
  .more-dev__layout {
    position: relative;
    gap: 0;
  }
}

.more-dev__venn {
  display: grid;
  place-items: center;
}
@media screen and (min-width: 1024px) {
  .more-dev__venn {
    min-height: clamp(486.4px, calc(47.5vw), 912px);
    justify-content: center;
    place-items: baseline;
  }
}

.more-dev__svg {
  width: min(560px, 100%);
  height: auto;
  display: block;
}
@media screen and (min-width: 768px) {
  .more-dev__svg {
    width: 510px;
    height: 447.834px;
  }
}
@media screen and (min-width: 1024px) {
  .more-dev__svg {
    width: clamp(472.5333333333px, calc(46.1458333333vw), 886px);
    height: clamp(414.9333333333px, calc(40.5208333333vw), 778px);
  }
}

[data-venn-circle] {
  stroke-width: 2px;
}

/* ===== items ===== */
.more-dev__items {
  display: grid;
  gap: 18px;
  /* tablet: 2 колонки */
}
@media screen and (min-width: 768px) {
  .more-dev__items {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 21px 18px;
    margin-top: -187px;
  }
}
@media screen and (min-width: 1024px) {
  .more-dev__items {
    position: absolute;
    width: 100%;
    margin: 0;
    grid-template-columns: repeat(12, 1fr);
    top: 0;
    gap: 0;
  }
}

.more-dev__item {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-block: 38px;
}
@media screen and (min-width: 768px) {
  .more-dev__item {
    padding-block: 88px;
  }
}
@media screen and (min-width: 1024px) {
  .more-dev__item {
    max-width: clamp(236.0888888889px, calc(23.0555555556vw), 442.6666666667px);
    padding-inline: clamp(9.6px, calc(0.9375vw), 18px);
    padding-block: clamp(
      42.4888888889px,
      calc(4.1493055556vw),
      79.6666666667px
    );
  }
}

@media screen and (min-width: 768px) {
  .more-dev__item:nth-child(1) {
    grid-column: 1;
    grid-row: 1/4;
  }
}
@media screen and (min-width: 1024px) {
  .more-dev__item:nth-child(1) {
    grid-column: 1 / span 4;
    align-self: start;
    justify-self: start;
  }
}

@media screen and (min-width: 768px) {
  .more-dev__item:nth-child(2) {
    grid-column: 2;
    grid-row: 2/5;
  }
}
@media screen and (min-width: 1024px) {
  .more-dev__item:nth-child(2) {
    grid-column: 9 / span 4;
    align-self: start;
    justify-self: end;
    text-align: left;
    padding-left: clamp(17.7777777778px, calc(1.7361111111vw), 33.3333333333px);
  }
}

@media screen and (min-width: 768px) {
  .more-dev__item:nth-child(3) {
    grid-column: 1;
    grid-row: 3/6;
  }
}
@media screen and (min-width: 1024px) {
  .more-dev__item:nth-child(3) {
    grid-column: 2 / span 4;
    grid-row: 4/8;
    align-self: start;
    justify-self: center;
    margin-top: clamp(32px, calc(3.125vw), 60px);
  }
}

.more-dev__svg-text {
  fill: var(--Asparagus, #80a676);
  font-size: 24px;
  font-weight: 400;
  line-height: 110%;
  font-style: normal;
}
@media screen and (min-width: 768px) {
  .more-dev__svg-text {
    font-size: 19px;
  }
}
@media screen and (min-width: 1024px) {
  .more-dev__svg-text {
    font-size: clamp(11.3777777778px, calc(1.1111111111vw), 21.3333333333px);
  }
}

.more-dev__item-title {
  font-size: 28px;
  font-weight: 500;
  line-height: 110%;
}
@media screen and (min-width: 1024px) {
  .more-dev__item-title {
    font-size: clamp(18.2044444444px, calc(1.7777777778vw), 34.1333333333px);
    line-height: clamp(23.296px, calc(2.275vw), 43.68px);
  }
}

.more-dev__item-desc {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 148%;
  color: #b3b3b3;
}
@media screen and (min-width: 1024px) {
  .more-dev__item-desc {
    font-size: clamp(11.3777777778px, calc(1.1111111111vw), 21.3333333333px);
    line-height: clamp(18.2044444444px, calc(1.7777777778vw), 34.1333333333px);
  }
}

.technologies {
  background: #2d2d2d;
  color: var(--Seasalt, #f7f7f5);
}

.technologies__container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 101px 18px;
  display: flex;
  flex-direction: column;
  gap: 54px;
}
@media screen and (min-width: 768px) {
  .technologies__container {
    padding: 101px 37px;
  }
}
@media screen and (min-width: 1024px) {
  .technologies__container {
    padding-block: clamp(78.9333333333px, calc(7.7083333333vw), 148px);
    padding-inline: clamp(39.4666666667px, calc(3.8541666667vw), 74px);
    gap: clamp(51.3777777778px, calc(5.0173611111vw), 96.3333333333px);
  }
}

.technologies__title {
  text-align: center;
  font-size: 39px;
  font-weight: 400;
  line-height: 110%;
}
@media screen and (min-width: 768px) {
  .technologies__title {
    font-size: 48px;
    line-height: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .technologies__title {
    font-size: clamp(33.3368888889px, calc(3.2555555556vw), 62.5066666667px);
    line-height: clamp(36.6648888889px, calc(3.5805555556vw), 68.7466666667px);
    max-width: clamp(490.6666666667px, calc(47.9166666667vw), 920px);
    align-self: center;
  }
}

.technologies__grid {
  list-style: none;
  display: grid;
  justify-items: center;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
@media screen and (min-width: 768px) {
  .technologies__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 60px;
  }
}
@media screen and (min-width: 1024px) {
  .technologies__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    -moz-column-gap: clamp(39.4666666667px, calc(3.8541666667vw), 74px);
    column-gap: clamp(39.4666666667px, calc(3.8541666667vw), 74px);
    row-gap: clamp(52.6222222222px, calc(5.1388888889vw), 98.6666666667px);
    max-width: clamp(620.8px, calc(60.625vw), 1164px);
    align-self: center;
  }
}

.technologies__item {
  width: 100%;
  max-width: 153px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 14px;
  gap: 18px;
}
@media screen and (min-width: 768px) {
  .technologies__item {
    gap: 24px;
    width: 191px;
  }
}
@media screen and (min-width: 1024px) {
  .technologies__item {
    gap: clamp(21.8666666667px, calc(2.1354166667vw), 41px);
    padding-bottom: 0;
  }
}

.technologies__icon {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}
.technologies__icon img,
.technologies__icon svg {
  display: block;
  width: 70px;
  height: 70px;
  max-width: 87px;
  max-height: 87px;
  -o-object-fit: contain;
  object-fit: contain;
}
@media screen and (min-width: 1024px) {
  .technologies__icon img,
  .technologies__icon svg {
    width: clamp(37.3333333333px, calc(3.6458333333vw), 70px);
    height: clamp(37.3333333333px, calc(3.6458333333vw), 70px);
  }
}

.technologies__name {
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 148%;
}
@media screen and (min-width: 1024px) {
  .technologies__name {
    font-size: clamp(13.0197333333px, calc(1.2714583333vw), 24.412px);
    line-height: clamp(13.0197333333px, calc(1.2714583333vw), 24.412px);
  }
}

.tech-cards {
  background: #2d2d2d;
  color: #f7f7f5;
  overflow: hidden;
}

.tech-cards__container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 101px 18px 130px;
  display: grid;
  gap: 125px;
  justify-items: center;
}
@media screen and (min-width: 768px) {
  .tech-cards__container {
    padding: 138px 37px 212.415px;
    gap: 80.415px;
  }
}
@media screen and (min-width: 1024px) {
  .tech-cards__container {
    padding-block: clamp(78.9333333333px, calc(7.7083333333vw), 148px);
    padding-inline: clamp(39.4666666667px, calc(3.8541666667vw), 74px);
    gap: clamp(38.7555555556px, calc(3.7847222222vw), 72.6666666667px);
  }
}

.tech-cards__head {
  text-align: center;
  display: grid;
  gap: 12px;
}
@media screen and (min-width: 1024px) {
  .tech-cards__head {
    max-width: clamp(443.0222222222px, calc(43.2638888889vw), 830.6666666667px);
    gap: clamp(6.4px, calc(0.625vw), 12px);
  }
}

.tech-cards__subtitle {
  margin: 0;
  color: #80a676;
  font-size: 18px;
  font-weight: 400;
  line-height: 148%;
}
@media screen and (min-width: 1024px) {
  .tech-cards__subtitle {
    font-size: clamp(11.3777777778px, calc(1.1111111111vw), 21.3333333333px);
    line-height: clamp(12.3235555556px, calc(1.2034722222vw), 23.1066666667px);
    letter-spacing: clamp(0.3128888889px, calc(0.0305555556vw), 0.5866666667px);
  }
}

.tech-cards__title {
  color: #f7f7f5;
  text-align: center;
  font-size: 39px;
  font-weight: 400;
  line-height: 110%;
  margin: 0 0 25px;
}
@media screen and (min-width: 768px) {
  .tech-cards__title {
    font-size: 48px;
    line-height: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .tech-cards__title {
    font-size: clamp(33.3368888889px, calc(3.2555555556vw), 62.5066666667px);
    line-height: clamp(36.672px, calc(3.58125vw), 68.76px);
    margin-bottom: clamp(13.3333333333px, calc(1.3020833333vw), 25px);
  }
}

.tech-cards__desc {
  color: #f7f7f5;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 148%;
}
@media screen and (min-width: 1024px) {
  .tech-cards__desc {
    font-size: clamp(11.3777777778px, calc(1.1111111111vw), 21.3333333333px);
    line-height: clamp(18.2044444444px, calc(1.7777777778vw), 34.1333333333px);
  }
}

.tech-cards__stage {
  position: relative;
  width: 100%;
  height: 164px;
  max-width: 382px;
}
@media screen and (min-width: 768px) {
  .tech-cards__stage {
    height: 292.171px;
    max-width: none;
  }
}
@media screen and (min-width: 1024px) {
  .tech-cards__stage {
    height: clamp(196.8px, calc(19.21875vw), 369px);
  }
}

.tech-cards__frame {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.tech-cards__svg {
  position: absolute;
  left: clamp(-120px, -20vw, 0px);
  bottom: -18px;
  width: 135%;
  height: auto;
  max-width: none;
}
@media screen and (min-width: 768px) {
  .tech-cards__svg {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    bottom: 0;
    display: block;
    height: 100%;
    width: auto;
    max-width: 100%;
    justify-self: anchor-center;
  }
}
@media screen and (min-width: 1024px) {
  .tech-cards__svg {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.tech-cards__texts {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.tech-cards__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: absolute;
  width: min(320px, 72%);
  text-align: left;
  top: 50%;
  left: 50%;
  transform: translate(calc(-50% + 50px), calc(-50% + var(--y, 20px)));
  opacity: 0;
  transition:
    opacity 400ms ease,
    transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}
@media screen and (min-width: 768px) {
  .tech-cards__text {
    left: 50%;
    gap: 18px;
    padding-left: 60px;
  }
}
@media screen and (min-width: 1024px) {
  .tech-cards__text {
    gap: clamp(9.6px, calc(0.9375vw), 18px);
    padding: clamp(9.6px, calc(0.9375vw), 18px);
    width: clamp(257.6px, calc(25.15625vw), 483px);
    padding-left: clamp(60.8px, calc(5.9375vw), 114px);
  }
}

.tech-cards__text.is-active {
  opacity: 1;
  --y: 0px;
}

.tech-cards__item-title {
  color: var(--Seasalt, #f7f7f5);
  font-size: 18px;
  font-weight: 400;
  line-height: 148%; /* 26.64px */
}
@media screen and (min-width: 1024px) {
  .tech-cards__item-title {
    font-size: clamp(18.2044444444px, calc(1.7777777778vw), 34.1333333333px);
    line-height: clamp(23.3016888889px, calc(2.2755555556vw), 43.6906666667px);
  }
}

.tech-cards__item-desc {
  color: #b3b3b3;
  font-size: 14px;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
}
@media screen and (min-width: 1024px) {
  .tech-cards__item-desc {
    font-size: clamp(11.3777777778px, calc(1.1111111111vw), 21.3333333333px);
    line-height: clamp(18.2044444444px, calc(1.7777777778vw), 34.1333333333px);
  }
}

.why-hieroglyphs {
  background: #2d2d2d;
  color: #f7f7f5;
  overflow: hidden;
}

.why-hieroglyphs__container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 101px 18px;
  display: flex;
  flex-direction: column;
  align-items: anchor-center;
  gap: 37px;
}
@media screen and (min-width: 768px) {
  .why-hieroglyphs__container {
    padding: 101px 42px;
    gap: 74px;
  }
}
@media screen and (min-width: 1024px) {
  .why-hieroglyphs__container {
    padding-block: clamp(78.9333333333px, calc(7.7083333333vw), 148px);
    padding-inline: clamp(39.4666666667px, calc(3.8541666667vw), 74px);
    gap: clamp(19.2px, calc(1.875vw), 36px);
  }
}

.why-hieroglyphs__title {
  text-align: center;
  font-size: 39px;
  font-weight: 400;
  line-height: 110%;
}
@media screen and (min-width: 768px) {
  .why-hieroglyphs__title {
    max-width: 450px;
  }
}
@media screen and (min-width: 1024px) {
  .why-hieroglyphs__title {
    font-size: clamp(33.3368888889px, calc(3.2555555556vw), 62.5066666667px);
    line-height: clamp(36.672px, calc(3.58125vw), 68.76px);
    max-width: clamp(472.5333333333px, calc(46.1458333333vw), 886px);
  }
}

.why-hieroglyphs__grid {
  display: grid;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .why-hieroglyphs__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -moz-column-gap: 8px;
    column-gap: 8px;
    row-gap: 8px;
    align-items: start;
    justify-items: start;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1024px) {
  .why-hieroglyphs__grid {
    row-gap: clamp(0px, calc(0vw), 0px);
    -moz-column-gap: clamp(9.6px, calc(0.9375vw), 18px);
    column-gap: clamp(9.6px, calc(0.9375vw), 18px);
    max-width: clamp(502.4px, calc(49.0625vw), 942px);
  }
}

.why-hieroglyphs__item {
  width: 100%;
  height: 324px;
  display: flex;
  padding: 0 18px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 18px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .why-hieroglyphs__item {
    height: 338px;
  }
}
@media screen and (min-width: 1024px) {
  .why-hieroglyphs__item {
    padding: clamp(9.6px, calc(0.9375vw), 18px);
    height: clamp(246.4px, calc(24.0625vw), 462px);
  }
}

.why-hieroglyphs__item-in {
  display: grid;
  gap: 18px;
}
@media screen and (min-width: 1024px) {
  .why-hieroglyphs__item-in {
    gap: clamp(9.6px, calc(0.9375vw), 18px);
  }
}

.why-hieroglyphs__item-title {
  font-size: 28px;
  font-weight: 500;
  line-height: 110%;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .why-hieroglyphs__item-title {
    font-size: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .why-hieroglyphs__item-title {
    font-size: clamp(18.2044444444px, calc(1.7777777778vw), 34.1333333333px);
    line-height: clamp(23.3016888889px, calc(2.2755555556vw), 43.6906666667px);
  }
}

.why-hieroglyphs__item-desc {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 148%;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .why-hieroglyphs__item-desc {
    font-size: clamp(11.3777777778px, calc(1.1111111111vw), 21.3333333333px);
    line-height: clamp(18.2044444444px, calc(1.7777777778vw), 34.1333333333px);
  }
}

.why-hieroglyphs__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  display: block;
  pointer-events: none;
  width: 223px;
}
.why-hieroglyphs__bg svg {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
}
@media screen and (min-width: 1024px) {
  .why-hieroglyphs__bg {
    width: clamp(158.9333333333px, calc(15.5208333333vw), 298px);
  }
}

.case-media {
  background: #2d2d2d;
  color: #f7f7f5;
}

.case-media__container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 74px 18px;
}
@media screen and (min-width: 768px) {
  .case-media__container {
    padding: 74px 37px;
  }
}
@media screen and (min-width: 1024px) {
  .case-media__container {
    padding-block: clamp(
      53.8595555556px,
      calc(5.2597222222vw),
      100.9866666667px
    );
    padding-inline: clamp(19.7333333333px, calc(1.9270833333vw), 37px);
  }
}

.case-media__frame,
.case-media__inner {
  width: 100%;
}

.case-media__content {
  display: flex;
  flex-direction: column;
}

.case-media__text {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.case-media__text-block {
  display: flex;
  flex-direction: column;
  gap: 37px;
  padding: 74px 0;
}
@media screen and (min-width: 1024px) {
  .case-media__text-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-block: clamp(78.9333333333px, calc(7.7083333333vw), 148px);
    padding-inline: clamp(41.6px, calc(4.0625vw), 78px);
    gap: clamp(34.1333333333px, calc(3.3333333333vw), 64px);
  }
}

.case-media__title {
  font-size: 39px;
  font-weight: 400;
  line-height: 110%;
}
@media screen and (min-width: 1024px) {
  .case-media__title {
    font-size: clamp(33.3368888889px, calc(3.2555555556vw), 62.5066666667px);
    line-height: clamp(36.672px, calc(3.58125vw), 68.76px);
  }
}

.case-media__description {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media screen and (min-width: 1024px) {
  .case-media__description {
    gap: clamp(14.9333333333px, calc(1.4583333333vw), 28px);
  }
}
.case-media__description p {
  font-size: 18px;
  font-weight: 400;
  line-height: 148%;
}
@media screen and (min-width: 1024px) {
  .case-media__description p {
    font-size: clamp(11.3777777778px, calc(1.1111111111vw), 21.3333333333px);
    line-height: clamp(18.2044444444px, calc(1.7777777778vw), 34.1333333333px);
  }
}

.case-media__media {
  width: 100%;
  display: grid;
  overflow: hidden;
  border-radius: 18px;
}

.case-media__item {
  width: 100%;
  height: 324px;
  overflow: hidden;
  border-radius: 18px;
  background: #2d2d2d;
}
@media screen and (min-width: 768px) {
  .case-media__item {
    height: 694px;
  }
}
@media screen and (min-width: 1024px) {
  .case-media__item {
    height: clamp(422.9333333333px, calc(41.3020833333vw), 793px);
    border-radius: clamp(14.9333333333px, calc(1.4583333333vw), 28px);
  }
}

.case-media__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.case-media__item.is-video {
  position: relative;
  background: var(--case-media-bg, #2d2d2d);
}

.case-media__video-center {
  position: absolute;
  inset: 0;
}

.case-media__video-square {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 18px;
}

.case-media__video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.case-media__media.media-1
  .case-media__item.is-video
  .case-media__video-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.case-media__media.media-1
  .case-media__item.is-video
  .case-media__video-square {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 18px;
}
@media screen and (min-width: 1024px) {
  .case-media__media.media-1
    .case-media__item.is-video
    .case-media__video-square {
    border-radius: clamp(14.9333333333px, calc(1.4583333333vw), 28px);
    max-width: 100%;
    max-height: 100%;
  }
}

.case-media__media.media-1 {
  grid-template-columns: 1fr;
}
.case-media__media.media-1 .case-media__item {
  aspect-ratio: 16/10;
}

.case-media__media.media-2 {
  grid-template-columns: 1fr;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .case-media__media.media-2 {
    gap: 18px;
  }
}
@media screen and (min-width: 1024px) {
  .case-media__media.media-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(9.6px, calc(0.9375vw), 18px);
  }
}
.case-media__media.media-2 .case-media__item {
  aspect-ratio: 16/10;
}

.case-media__media.media-3 {
  grid-template-columns: 1fr;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .case-media__media.media-3 {
    gap: 18px;
  }
}
@media screen and (min-width: 1024px) {
  .case-media__media.media-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(9.6px, calc(0.9375vw), 18px);
  }
}
.case-media__media.media-3 .case-media__item {
  aspect-ratio: 16/10;
}

@media screen and (min-width: 1024px) {
  .case-media__media.media-3 .case-media__item:first-child {
    grid-column: span 2;
  }
}

.case-media__media.media-3
  .case-media__item:first-child.is-video
  .case-media__video-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.case-media__media.media-3
  .case-media__item:first-child.is-video
  .case-media__video-square {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 18px;
}
@media screen and (min-width: 1024px) {
  .case-media__media.media-3
    .case-media__item:first-child.is-video
    .case-media__video-square {
    border-radius: clamp(14.9333333333px, calc(1.4583333333vw), 28px);
    max-width: 100%;
    max-height: 100%;
  }
}

.case-media__media.media-4 {
  grid-template-columns: 1fr;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .case-media__media.media-4 {
    gap: 18px;
  }
}
@media screen and (min-width: 1024px) {
  .case-media__media.media-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(9.6px, calc(0.9375vw), 18px);
  }
}
.case-media__media.media-4 .case-media__item {
  aspect-ratio: 16/10;
}

.case-media--no-media .case-media__container {
  padding-bottom: 0;
}

.case-conclusion {
  color: #2d2d2d;
  background: var(--conclusion-bg, #f2e3ce);
}

.case-conclusion__container {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  padding: 138px 18px;
  justify-items: center;
}
@media screen and (min-width: 768px) {
  .case-conclusion__container {
    padding: 175px 74px;
  }
}
@media screen and (min-width: 1024px) {
  .case-conclusion__container {
    padding-block: clamp(79.4666666667px, calc(7.7604166667vw), 149px);
    padding-inline: clamp(39.4666666667px, calc(3.8541666667vw), 74px);
  }
}

.case-conclusion__grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 37px;
}
@media screen and (min-width: 1024px) {
  .case-conclusion__grid {
    gap: clamp(19.7333333333px, calc(1.9270833333vw), 37px);
    max-width: clamp(481.0666666667px, calc(46.9791666667vw), 902px);
  }
}

.case-conclusion__title {
  font-size: 39px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%; /* 42.9px */
}
@media screen and (min-width: 768px) {
  .case-conclusion__title {
    font-size: 48px;
    line-height: 100%; /* 48px */
  }
}
@media screen and (min-width: 1024px) {
  .case-conclusion__title {
    font-size: clamp(33.3368888889px, calc(3.2555555556vw), 62.5066666667px);
    line-height: clamp(36.672px, calc(3.58125vw), 68.76px);
  }
}

.case-conclusion__text {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 148%; /* 26.64px */
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .case-conclusion__text {
    font-size: clamp(12.8px, calc(1.25vw), 24px);
    line-height: clamp(20.8355555556px, calc(2.0347222222vw), 39.0666666667px);
  }
}

.case-conclusion__art {
  position: absolute;
  bottom: 18px;
  right: 15px;
  display: flex;
  justify-content: flex-end;
}
@media screen and (min-width: 768px) {
  .case-conclusion__art {
    bottom: 104px;
    right: 29px;
  }
}
@media screen and (min-width: 1024px) {
  .case-conclusion__art {
    bottom: clamp(32px, calc(3.125vw), 60px);
    right: clamp(96px, calc(9.375vw), 180px);
  }
}

.case-conclusion__art-svg {
  width: 175px;
  height: auto;
  color: rgba(30, 30, 30, 0.55);
}
@media screen and (min-width: 1024px) {
  .case-conclusion__art-svg {
    width: clamp(143.6444444444px, calc(14.0277777778vw), 269.3333333333px);
  }
}

/* 1) ховаємо жабку до ініціалізації JS */
.case-conclusion__art-svg {
  opacity: 0;
  transition: opacity 0.2s linear;
}

/* 2) показуємо, коли JS підготував лінії */
.case-conclusion.is-frog-ready .case-conclusion__art-svg {
  opacity: 1;
}

.case-conclusion__art-svg path {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.indicators {
  background: #2d2d2d;
  color: #f7f7f5;
}

.indicators__container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 74px 18px 101px;
}
@media screen and (min-width: 768px) {
  .indicators__container {
    padding: 74px 37px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1024px) {
  .indicators__container {
    padding-block: clamp(78.9333333333px, calc(7.7083333333vw), 148px);
    padding-inline: clamp(81.0666666667px, calc(7.9166666667vw), 152px);
  }
}

.indicators__inner {
  display: flex;
  flex-direction: column;
  gap: 70px;
}
@media screen and (min-width: 1024px) {
  .indicators__inner {
    gap: clamp(37.3333333333px, calc(3.6458333333vw), 70px);
  }
}

.indicators__title {
  font-size: 39px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
}
@media screen and (min-width: 768px) {
  .indicators__title {
    font-size: 48px;
    line-height: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .indicators__title {
    font-size: clamp(33.3368888889px, calc(3.2555555556vw), 62.5066666667px);
    line-height: clamp(36.672px, calc(3.58125vw), 68.76px);
    max-width: clamp(438.9333333333px, calc(42.8645833333vw), 823px);
  }
}

.indicators__grid {
  display: grid;
  gap: 37px;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .indicators__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
  }
}
@media screen and (min-width: 1024px) {
  .indicators__grid {
    gap: clamp(12.8px, calc(1.25vw), 24px);
  }
}

.indicators__card {
  display: grid;
  gap: 13px;
}
@media screen and (min-width: 1024px) {
  .indicators__card {
    gap: clamp(6.9333333333px, calc(0.6770833333vw), 13px);
  }
}

.indicators__value {
  color: #f2eace;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}
@media screen and (min-width: 1024px) {
  .indicators__value {
    font-size: clamp(53.3333333333px, calc(5.2083333333vw), 100px);
  }
}

.indicators__desc {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
@media screen and (min-width: 1024px) {
  .indicators__desc {
    font-size: clamp(11.3777777778px, calc(1.1111111111vw), 21.3333333333px);
    line-height: clamp(18.2044444444px, calc(1.7777777778vw), 34.1333333333px);
  }
}

/* WYSIWYG inside indicators */
.indicators__content.content {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 148%;
}
@media screen and (min-width: 1024px) {
  .indicators__content.content {
    font-size: clamp(13.0197333333px, calc(1.2714583333vw), 24.412px);
    line-height: clamp(14.3217777778px, calc(1.3986111111vw), 26.8533333333px);
  }
}

.indicators__content.content ul {
  display: grid;
  gap: 18px;
  padding-left: 1.1em;
  list-style: disc;
  list-style-position: outside;
  padding-left: 1.2em;
}
@media screen and (min-width: 1024px) {
  .indicators__content.content ul {
    gap: clamp(14.9333333333px, calc(1.4583333333vw), 28px);
    max-width: clamp(487.4666666667px, calc(47.6041666667vw), 914px);
  }
}

.indicators__content.content li {
  position: relative;
  padding-left: 0;
}

.indicators__content.content li::marker {
  color: #f7f7f5;
  font-size: 0.9em;
}

.indicators__content.content ol {
  list-style: initial;
  padding-left: 1.2em;
}

.modal-form__container--body {
  margin-block: auto;
}

.modal__form--grid {
  display: flex;
  flex-direction: column;
  gap: 70px;
}
@media screen and (min-width: 768px) {
  .modal__form--grid {
    gap: 74px;
  }
}
@media screen and (min-width: 1024px) {
  .modal__form--grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(53.8666666667px, calc(5.2604166667vw), 101px);
  }
}

.modal__left {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media screen and (min-width: 1024px) {
  .modal__left {
    gap: clamp(9.6px, calc(0.9375vw), 18px);
    align-self: center;
    justify-content: center;
    min-height: clamp(
      355.5555555556px,
      calc(34.7222222222vw),
      666.6666666667px
    );
  }
}

.modal__right {
  min-height: -moz-max-content;
  min-height: max-content;
  align-content: center;
}

.modal__form--title {
  color: var(--Seasalt, #f7f7f5);
  font-size: 48px;
  font-weight: 400;
  line-height: 100%;
}
@media screen and (min-width: 1024px) {
  .modal__form--title {
    font-size: clamp(53.3333333333px, calc(5.2083333333vw), 100px);
  }
}

.modal__form--desc {
  color: var(--Seasalt, #f7f7f5);
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
}
@media screen and (min-width: 1024px) {
  .modal__form--desc {
    font-size: clamp(11.3777777778px, calc(1.1111111111vw), 21.3333333333px);
    line-height: clamp(0.1041666667, calc(1.7361111111vw), 33.3333333333);
  }
}

.case-indicators {
  background-color: #2d2d2d;
  color: #f7f7f5;
}

.case-indicators__container {
  max-width: 1920px;
  margin-inline: auto;
  padding: 74px 18px 37px;
  display: flex;
  flex-direction: column;
  gap: 37px;
}
@media screen and (min-width: 768px) {
  .case-indicators__container {
    padding: 101px 37px 37px;
  }
}
@media screen and (min-width: 1024px) {
  .case-indicators__container {
    padding-top: clamp(108.8px, calc(10.625vw), 204px);
    padding-inline: clamp(19.7333333333px, calc(1.9270833333vw), 37px);
    padding-bottom: clamp(39.4666666667px, calc(3.8541666667vw), 74px);
    gap: clamp(39.4666666667px, calc(3.8541666667vw), 74px);
  }
}

.case-indicators__wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 1024px) {
  .case-indicators__wrapper {
    padding-inline: clamp(19.7333333333px, calc(1.9270833333vw), 37px);
    gap: clamp(6.4px, calc(0.625vw), 12px);
  }
}

.case-indicators__badge {
  display: flex;
  padding: 8px 18px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 28px;
  background-color: var(--bg, #fcf6e3);
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 1024px) {
  .case-indicators__badge {
    padding-inline: clamp(9.6px, calc(0.9375vw), 18px);
    padding-block: clamp(4.2666666667px, calc(0.4166666667vw), 8px);
    border-radius: clamp(14.9333333333px, calc(1.4583333333vw), 28px);
    gap: clamp(5.3333333333px, calc(0.5208333333vw), 10px);
    min-width: clamp(51.9111111111px, calc(5.0694444444vw), 97.3333333333px);
  }
}

.case-indicators__badge-text {
  color: #2d2d2d;
  font-size: 16px;
  line-height: 160%;
}
@media screen and (min-width: 1024px) {
  .case-indicators__badge-text {
    font-size: clamp(11.2px, calc(1.09375vw), 21px);
  }
}

.case-indicators__title {
  font-size: 39px;
  font-weight: 400;
  line-height: 110%;
}
@media screen and (min-width: 1024px) {
  .case-indicators__title {
    font-size: clamp(33.3368888889px, calc(3.2555555556vw), 62.5066666667px);
  }
}

.case-indicators__media {
  border-radius: 18px;
  overflow: hidden;
  background-color: #2d2d2d;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 1024px) {
  .case-indicators__media {
    aspect-ratio: 16/7;
  }
}

.case-indicators__media-inner {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.case-indicators__poster,
.case-indicators__video {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}

.case-indicators__stats--wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media screen and (min-width: 768px) {
  .case-indicators__stats--wrapper {
    gap: 28px;
  }
}
@media screen and (min-width: 1024px) {
  .case-indicators__stats--wrapper {
    gap: clamp(39.6444444444px, calc(3.8715277778vw), 74.3333333333px);
    padding-inline: clamp(19.7333333333px, calc(1.9270833333vw), 37px);
  }
}

.case-indicators__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .case-indicators__stats {
    gap: inherit;
  }
}

.case-indicators__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: space-between;
  gap: 4px;
}
@media screen and (min-width: 768px) {
  .case-indicators__stat {
    gap: 14px;
  }
}
@media screen and (min-width: 1024px) {
  .case-indicators__stat {
    gap: clamp(6.9333333333px, calc(0.6770833333vw), 13px);
  }
}

.case-indicators__stat-top {
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-indicators__stat-value {
  font-size: 22px;
  font-weight: 400;
  line-height: 110%;
}
@media screen and (min-width: 768px) {
  .case-indicators__stat-value {
    font-size: 48px;
  }
}
@media screen and (min-width: 1024px) {
  .case-indicators__stat-value {
    font-size: clamp(33.3368888889px, calc(3.2555555556vw), 62.5066666667px);
  }
}

.case-indicators__stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}
@media screen and (min-width: 768px) {
  .case-indicators__stat-icon {
    width: 44px;
    height: 44px;
  }
}
@media screen and (min-width: 1024px) {
  .case-indicators__stat-icon {
    width: clamp(37.3333333333px, calc(3.6458333333vw), 70px);
    height: clamp(37.3333333333px, calc(3.6458333333vw), 70px);
  }
}
.case-indicators__stat-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.case-indicators__stat-desc {
  font-size: 10px;
  font-weight: 400;
  line-height: 160%;
}
@media screen and (min-width: 768px) {
  .case-indicators__stat-desc {
    font-size: 12px;
  }
}
@media screen and (min-width: 1024px) {
  .case-indicators__stat-desc {
    font-size: clamp(8.5333333333px, calc(0.8333333333vw), 16px);
  }
}

.case-indicators__comm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  align-self: center;
}
@media screen and (min-width: 768px) {
  .case-indicators__comm {
    gap: 44px;
  }
}
@media screen and (min-width: 1024px) {
  .case-indicators__comm {
    gap: clamp(96px, calc(9.375vw), 180px);
  }
}

.case-indicators__comm-item {
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
}

.case-indicators__comm-title {
  font-size: 10px;
  font-weight: 400;
  line-height: 160%;
  margin-bottom: 4px;
}
@media screen and (min-width: 768px) {
  .case-indicators__comm-title {
    font-size: 12px;
    margin-bottom: 8px;
  }
}
@media screen and (min-width: 1024px) {
  .case-indicators__comm-title {
    font-size: clamp(8.5333333333px, calc(0.8333333333vw), 16px);
    margin-bottom: clamp(4.2666666667px, calc(0.4166666667vw), 8px);
  }
}

.case-indicators__comm-desc {
  font-size: 14px;
  font-weight: 500;
  line-height: 148%;
}
@media screen and (min-width: 768px) {
  .case-indicators__comm-desc {
    font-size: 18px;
  }
}
@media screen and (min-width: 1024px) {
  .case-indicators__comm-desc {
    font-size: clamp(12.8px, calc(1.25vw), 24px);
    line-height: clamp(14.08px, calc(1.375vw), 26.4px);
  }
}

.case-textblock {
  background-color: var(--textblock-bg, #d8cfb6);
  color: #2d2d2d;
}

.case-textblock__container {
  padding: 74px 18px;
  max-width: 1920px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 37px;
}
@media screen and (min-width: 768px) {
  .case-textblock__container {
    padding: 101px 74px;
  }
}
@media screen and (min-width: 1024px) {
  .case-textblock__container {
    padding-block: clamp(78.9333333333px, calc(7.7083333333vw), 148px);
    padding-inline: clamp(81.0666666667px, calc(7.9166666667vw), 152px);
    gap: clamp(39.4666666667px, calc(3.8541666667vw), 74px);
  }
}

.case-textblock__inner {
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .case-textblock__inner {
    max-width: clamp(487.4666666667px, calc(47.6041666667vw), 914px);
  }
}
.case-textblock__inner .wysiwyg h2,
.case-textblock__inner .wysiwyg h3,
.case-textblock__inner .wysiwyg h4 {
  margin-top: 0;
}
.case-textblock__inner .wysiwyg h2:not(:first-child),
.case-textblock__inner .wysiwyg h3:not(:first-child),
.case-textblock__inner .wysiwyg h4:not(:first-child) {
  margin-top: 37px;
}
@media screen and (min-width: 768px) {
  .case-textblock__inner .wysiwyg h2:not(:first-child),
  .case-textblock__inner .wysiwyg h3:not(:first-child),
  .case-textblock__inner .wysiwyg h4:not(:first-child) {
    margin-top: 74px;
  }
}
@media screen and (min-width: 1024px) {
  .case-textblock__inner .wysiwyg h2:not(:first-child),
  .case-textblock__inner .wysiwyg h3:not(:first-child),
  .case-textblock__inner .wysiwyg h4:not(:first-child) {
    margin-top: clamp(39.4666666667px, calc(3.8541666667vw), 74px);
  }
}

.wysiwyg h2 {
  font-size: 39px;
  font-weight: 400;
  line-height: 110%;
  margin-bottom: 28px;
}
@media screen and (min-width: 768px) {
  .wysiwyg h2 {
    font-size: 48px;
    line-height: 100%;
    margin-bottom: 37px;
  }
}
@media screen and (min-width: 1024px) {
  .wysiwyg h2 {
    font-size: clamp(33.3368888889px, calc(3.2555555556vw), 62.5066666667px);
    margin-bottom: clamp(19.7333333333px, calc(1.9270833333vw), 37px);
  }
}
.wysiwyg h3 {
  font-size: 28px;
  font-weight: 500;
  line-height: 110%;
  margin-bottom: 37px;
}
@media screen and (min-width: 768px) {
  .wysiwyg h3 {
    font-size: 39px;
  }
}
@media screen and (min-width: 1024px) {
  .wysiwyg h3 {
    font-size: clamp(20.8334222222px, calc(2.0345138889vw), 39.0626666667px);
    margin-bottom: clamp(19.7333333333px, calc(1.9270833333vw), 37px);
  }
}
.wysiwyg p {
  font-size: 18px;
  font-weight: 400;
  line-height: 148%;
}
@media screen and (min-width: 1024px) {
  .wysiwyg p {
    font-size: clamp(13.0204444444px, calc(1.2715277778vw), 24.4133333333px);
  }
}
.wysiwyg p + h2,
.wysiwyg p + h3 {
  margin-top: 37px;
}
@media screen and (min-width: 768px) {
  .wysiwyg p + h2,
  .wysiwyg p + h3 {
    margin-top: 74px;
  }
}
@media screen and (min-width: 1024px) {
  .wysiwyg p + h2,
  .wysiwyg p + h3 {
    margin-top: clamp(39.4666666667px, calc(3.8541666667vw), 74px);
  }
}
.wysiwyg ul,
.wysiwyg ol {
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
}
@media screen and (min-width: 1024px) {
  .wysiwyg ul,
  .wysiwyg ol {
    font-size: clamp(11.2px, calc(1.09375vw), 21px);
  }
}
.wysiwyg ul {
  list-style: disc;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media screen and (min-width: 1024px) {
  .wysiwyg ul {
    gap: clamp(14.9333333333px, calc(1.4583333333vw), 28px);
  }
}
.wysiwyg ol {
  list-style: decimal;
  padding-left: 28px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media screen and (min-width: 1024px) {
  .wysiwyg ol {
    gap: clamp(14.9333333333px, calc(1.4583333333vw), 28px);
  }
}

.case-textblock__footer {
  margin-top: 37px;
}
@media screen and (min-width: 1024px) {
  .case-textblock__footer {
    margin-top: clamp(39.4666666667px, calc(3.8541666667vw), 74px);
  }
}

.case-textblock__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 72px;
  padding-inline: 14px;
  gap: 10px;
  border-radius: 48px;
  border: 1.5px solid #2d2d2d;
  background: transparent;
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.33, 1.53, 0.69, 0.99);
}
@media screen and (min-width: 768px) {
  .case-textblock__link {
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (min-width: 1024px) {
  .case-textblock__link {
    padding-inline: clamp(7.4666666667px, calc(0.7291666667vw), 14px);
    gap: clamp(5.3333333333px, calc(0.5208333333vw), 10px);
    border-radius: clamp(25.6px, calc(2.5vw), 48px);
    border-width: clamp(1.0666666667px, calc(0.1041666667vw), 2px);
    height: clamp(48px, calc(4.6875vw), 90px);
  }
  .case-textblock__link:hover {
    background-color: #2d2d2d;
  }
  .case-textblock__link:hover > span {
    color: var(--textblock-bg, #d8cfb6);
  }
  .case-textblock__link:hover > span.case-textblock__icon {
    background-color: var(--textblock-bg, #d8cfb6);
  }
  .case-textblock__link:hover > span.case-textblock__icon > svg {
    fill: #2d2d2d;
  }
}
.case-textblock__link > span {
  color: #2d2d2d;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  transition: all 0.5s cubic-bezier(0.33, 1.53, 0.69, 0.99);
}
@media screen and (min-width: 1024px) {
  .case-textblock__link > span {
    font-size: clamp(8.5333333333px, calc(0.8333333333vw), 16px);
  }
}

.case-textblock__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 50px;
  height: 50px;
  border-radius: 100px;
  background-color: #2d2d2d;
  transition: all 0.5s cubic-bezier(0.33, 1.53, 0.69, 0.99);
}
@media screen and (min-width: 1024px) {
  .case-textblock__icon {
    width: clamp(26.6666666667px, calc(2.6041666667vw), 50px);
    height: clamp(26.6666666667px, calc(2.6041666667vw), 50px);
  }
}
.case-textblock__icon > svg {
  width: 34px;
  height: 34px;
  fill: var(--textblock-bg, #d8cfb6);
  transition: all 0.5s cubic-bezier(0.33, 1.53, 0.69, 0.99);
}
@media screen and (min-width: 1024px) {
  .case-textblock__icon > svg {
    width: clamp(18.1333333333px, calc(1.7708333333vw), 34px);
    height: clamp(18.1333333333px, calc(1.7708333333vw), 34px);
  }
} /*# sourceMappingURL=index.css.map */
