@font-face {
  font-family: 'SpaceGroteskVariable';
  src: url('../fonts/SpaceGrotesk-Variable.woff2') format('woff2'),
  url('../fonts/SpaceGrotesk-Variable.woff') format('woff');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

/* style global
-----------------*/
:root {
  --font: "SpaceGroteskVariable", "Arial", sans-serif;
  --normal: .3s;
  --header-height: max(5vw, 80px);
  /* colors */
  --white: #fff;
  --black: #000;
  --green: #00D96E;
  --red-light: #f45757;
  --grey-light: #BABABA;
  /* typography */
  --h1: 700 5vw/1.06 var(--font);
  --h2: 700 3.75vw/1.08 var(--font);
  --h3: 700 2.5vw/1.08 var(--font);
  --h4: 700 2.083vw/1.08 var(--font);
  --h5: 700 1.667vw/1.2 var(--font);
  --h6: 700 1.458vw/1.2 var(--font);
  --subtitle: 400 1.25vw/1.35 var(--font);
  --paragraph-lg: 400 1.042vw/1.4 var(--font);
  --paragraph-md: 400 .938vw/1.35 var(--font);
  --paragraph-sm: 400 .833vw/1.35 var(--font);
  /* rounding */
  --card-radius-32: 1.667vw;
  --card-radius-24: 1.25vw;
  --card-radius-12: .625vw;
  --section-radius: 3.333vw;
}

@media (min-width: 768px) and (max-width: 1280px) {
  :root {
    --header-height: 10.417vw;
  }

  .header, .form-feedback, .footer {
    /* typography */
    --subtitle: 400 2.344vw/1.35 var(--font);
    --h1: 700 5.208vw/1.06 var(--font);
    --h2: 700 4.167vw/1.08 var(--font);
    --h3: 700 3.646vw/1.08 var(--font);
    --h4: 700 3.125vw/1.08 var(--font);
    --h5: 700 2.604vw/1.2 var(--font);
    --h6: 700 1.563vw/1.3 var(--font);
    --paragraph-lg: 400 2.083vw/1.4 var(--font);
    --paragraph-md: 400 1.823vw/1.35 var(--font);
    --paragraph-sm: 400 1.563vw/1.35 var(--font);
    /* roundings */
    --card-radius-32: 2.344vw;
    --card-radius-24: 2.083vw;
    --card-radius-12: 1.563vw;
    --section-radius: 3.125vw;
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: max(16vw, 60px);
    /* typography */
    --subtitle: 400 4.8vw/1.35 var(--font);
    --h1: 700 10.667vw/1.06 var(--font);
    --h2: 700 8.533vw/1.08 var(--font);
    --h3: 700 7.467vw/1.08 var(--font);
    --h4: 700 6.4vw/1.08 var(--font);
    --h5: 700 5.333vw/1.2 var(--font);
    --h6: 700 4.8vw/1.3 var(--font);
    --paragraph-lg: 400 4.267vw/1.4 var(--font);
    --paragraph-md: 400 3.733vw/1.35 var(--font);
    --paragraph-sm: 400 3.2vw/1.35 var(--font);
    /* roundings */
    --card-radius-32: 4.8vw;
    --card-radius-24: 4.267vw;
    --card-radius-12: 3.2vw;
    --section-radius: 6.4vw;
    --cell: 15.467vw;
  }
}

*, ::before, ::after {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  box-sizing: border-box;
}

::selection {
  background: var(--green);
}

body::-webkit-scrollbar {
  width: 7px;
  background-color: var(--white);
}

body::-webkit-scrollbar-thumb {
  background-color: var(--grey-light);
  border-radius: 10px;
}

html {
  scroll-behavior: smooth;
}

body {
  font: normal 14px/1.3 var(--font);
}

body.fix {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: var(--black);
}

li {
  list-style: none;
}

input[type="checkbox"], input[type="radio"], input[type="file"] {
  display: none;
}

button, input[type="submit"] {
  cursor: pointer;
}

mark, button {
  background: transparent;
}

picture {
  display: block;
}

img {
  width: auto;
  height: auto;
}

picture * {
  width: 100%;
  display: block;
}

/* common styles and components */
.heading-h1, .heading-h2 {
  letter-spacing: -2px;
}

.heading-h1 {
  font: var(--h1);
}

.heading-h2 {
  font: var(--h2);
}

.heading-h3 {
  font: var(--h3);
}

.heading-h4 {
  font: var(--h4);
}

.heading-h5 {
  font: var(--h5);
}

.heading-h6 {
  font: var(--h6);
}

.subtitle {
  font: var(--subtitle);
}

.paragraph-lg {
  font: var(--paragraph-lg);
}

.paragraph-md {
  font: var(--paragraph-md);
}

.paragraph-sm {
  font: var(--paragraph-sm);
}

.paragraph-lg + .paragraph-lg, .paragraph-md + .paragraph-md, .paragraph-sm + .paragraph-sm, .subtitle + .subtitle {
  margin-top: .833vw;
}

@media (max-width: 1280px) {
  .heading-h1, .heading-h2 {
    letter-spacing: 0;
  }

  .paragraph-lg + .paragraph-lg, .paragraph-md + .paragraph-md, .paragraph-sm + .paragraph-sm, .subtitle + .subtitle {
    margin-top: 1.042vw;
  }
}

@media (max-width: 767px) {
  .paragraph-lg + .paragraph-lg, .paragraph-md + .paragraph-md, .paragraph-sm + .paragraph-sm, .subtitle + .subtitle {
    margin-top: 2.133vw;
  }
}

.bold {
  font-weight: 700;
}

.theme-colored {
  color: var(--green);
}

.hide-underline, .view-underline {
  position: relative;
}

.hide-underline::before, .view-underline:hover::before {
  width: 100%;
}

.hide-underline::before, .view-underline::before {
  content: "";
  position: absolute;
  height: 1px;
  transition: var(--normal);
  bottom: 1px;
}

.hide-underline:hover::before, .view-underline::before {
  width: 0;
}

.underline--black::before {
  background: var(--black);
}

.underline--white::before {
  background: var(--white);
}

.underline--green::before {
  background: var(--green);
}

.text-link {
  display: inline;
  background-repeat: repeat-x;
  background-size: 200% 1px;
  background-position: 0 100%;
  color: inherit;

  &:hover {
    animation: underline-slide 0.8s ease-in-out forwards;
  }
}

.text-link--black {
  background-image: linear-gradient(
    to right,
    var(--black) 0%, var(--black) 50%,
    rgba(0,0,0,0) 50%, rgba(0,0,0,0) 100%
  );
}

.text-link--white {
  background-image: linear-gradient(
    to right,
    var(--white) 0%, var(--white) 50%,
    rgba(0,0,0,0) 50%, rgba(0,0,0,0) 100%
  );
}

@keyframes underline-slide {
  from {
    background-position: 0 100%;
  }
  to {
    background-position: -200% 100%;
  }
}

.highlight {
  color: var(--theme-color);
}

.btn {
  width: max-content;
  height: 4.583vw;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 64px;
  padding: 0 2.031vw 0 2.448vw;
  font: 500 1.25vw/1 var(--font);
  transition: background-color var(--normal), border-color var(--normal);

  svg {
    flex-shrink: 0;
    width: 1.458vw;
    height: 1.458vw;
    margin-left: 1.25vw;
    transition: stroke var(--normal), transform var(--normal);
  }

  &:hover {
    background-color: var(--green);
    border-color: var(--green);
    color: var(--black);

    svg {
      stroke: var(--black);
      transform: rotate(45deg);
    }
  }

  &:disabled {
    opacity: .5;
  }
}

@media (min-width: 1281px) {
  .btn:hover:not(:disabled) {
    cursor: pointer;
  }
}

@media(max-width: 1280px) {
  .btn {
    height: 7.031vw;
    padding: 0 2.995vw 0 4.036vw;
    font-size: 1.823vw;

    svg {
      width: 2.344vw;
      height: 2.344vw;
      margin-left: 1.563vw;
    }
  }
}

@media(max-width: 767px) {
  .btn {
    height: 14.4vw;
    padding: 0 6.133vw;
    font-size: 3.733vw;

    svg {
      width: 4.8vw;
      height: 4.8vw;
      margin-left: 3.2vw;
    }
  }
}

.btn--sm {
  padding: 0 1.198vw 0 1.615vw;
  height: 2.813vw;
  font: 500 max(.938vw, 14px)/1 var(--font);
  background-color: var(--white);

  svg {
    width: .99vw;
    margin-left: .625vw;
  }
}

@media (max-width: 1280px) {
  .btn--sm {
    padding: 0 2.995vw 0 4.036vw;
    height: 7.031vw;
    font-size: 1.823vw;

    svg {
      width: 2.344vw;
      margin-left: 1.563vw;
    }
  }
}

@media (max-width: 767px) {
  .btn--sm {
    padding: 0 6.133vw 0 8.267vw;
    height: 14.4vw;
    font-size: 3.733vw;

    svg {
      width: 4.8vw;
      margin-left: 3.2vw;
    }
  }
}

.btn--primary-black {
  background-color: var(--black);
  border: 1px solid var(--black);
  color: var(--white);

  svg {
    stroke: var(--white);
  }
}

.btn--primary-white {
  background-color: var(--white);
  border: 1px solid var(--white);
  color: var(--black);

  svg {
    stroke: var(--black);
  }
}

.btn--secondary-black {
  background-color: transparent;
  border: 1px solid var(--black);
  color: var(--black);

  svg {
    stroke: var(--black);
  }
}

.btn--secondary-white {
  background-color: transparent;
  border: 1px solid var(--white);
  color: var(--white);

  svg {
    stroke: var(--white);
  }
}

.btn-round {
  position: relative;
  border: 1px solid;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;

  &::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    border-radius: 50%;
    filter: blur(4px);
    transform: translate3d(-50%, -50%, 0);
    transition: background-color var(--normal);
  }

  svg {
    z-index: 2;
    width: 46.85%;
    height: 46.85%;
    transition: stroke var(--normal);
  }

  &:hover:not(:disabled)::before {
    background: var(--green);
  }

  &:disabled {
    opacity: .5;
    cursor: not-allowed;
  }
}

.btn-round--arrow-rotate {
  svg {
    transition: transform var(--normal);
  }

  &:hover svg {
    transform: rotate(45deg);
  }
}

.btn-round--black {
  border-color: var(--black);

  svg {
    stroke: var(--black);
  }
}

.btn-round--white {
  border-color: var(--white);

  svg {
    stroke: var(--white);
  }

  &:hover:not(:disabled) svg {
    stroke: black;
  }
}

.btn-round--md {
  width: 3.333vw;
  height: 3.333vw;
}

.btn-round--sm {
  width: 2.5vw;
  height: 2.5vw;
}

@media (max-width: 1280px) {
  .btn-round--md {
    width: 6.25vw;
    height: 6.25vw;
  }

  .btn-round--sm {
    width: 3.906vw;
    height: 3.906vw;
  }
}

@media (max-width: 767px) {
  .btn-round--md {
    width: 12.8vw;
    height: 12.8vw;
  }

  .btn-round--sm {
    width: 8vw;
    height: 8vw;
  }
}

.btn-magnet:hover {
  .btn-round {
    &::before {
      background-color: var(--green);
    }

    svg {
      transform: rotate(0);
    }
  }

  .btn-round--white svg {
    stroke: var(--black);
  }
}

.btn-magnet {
  position: relative;

  &::after {
    content: "";
    width: calc(100% + 24px);
    height: calc(100% + 24px);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
  }
}

@media (max-width: 1280px) {
  .btn-magnet {
    overflow: hidden;
  }
}

/* style header
-----------------*/
.header {
  padding: 1.146vw 2.604vw 1.146vw 1.458vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
  background: var(--white);
  transition: var(--normal);
  height: var(--header-height);
}

.header.fixed {
  background: var(--white);
}

.header__logo {
  width: 10.94vw;

  svg {
    width: inherit;
    display: block;
  }
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.875vw;
  margin-left: auto;
}

.header-nav__link {
  display: flex;
  align-items: center;
  gap: .417vw;
  transition: var(--normal);

  > svg {
    width: .625vw;
    height: auto;
    transition: var(--normal);
  }

  &:hover {
    > svg {
      transform: rotate(-180deg);
    }
  }
}

span.header-nav__link {
  cursor: default;
}

.header-nav__open-btn {
  display: none;
}

.header-menu-services {
  position: absolute;
  width: 97.5vw;
  background: var(--black);
  left: 1.25vw;
  top: 100%;
  border-radius: var(--card-radius-24);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: .938vw;
  padding: .938vw;
  opacity: 0;
  visibility: hidden;
  transform: translateY(25px);
  z-index: -1;
  transition: var(--normal);

  &::before {
    content: "";
    width: 100%;
    height: 1.146vw;
    position: absolute;
    bottom: 100%;
    left: 0;
  }
}

.about-us-menu {
  grid-template-columns: 2fr repeat(2, 1fr);

  .header-menu-services__wrap {
    &.header-menu-services__wrap--with-bg {
      background: right bottom/cover url("../../assets/img/header-about.webp") no-repeat rgba(255, 255, 255, .12);

      .header-menu-services__text {
        max-width: 21.88vw;
      }
    }

    .header-menu-services__title {
      position: relative;

      &::before {
        content: "";
        width: 0;
        height: 1px;
        background: var(--black);
        transition: var(--normal);
        position: absolute;
        top: calc(100% + 2px);
      }
    }

    &:hover {
      .header-menu-services__link > svg {
        transform: rotate(0);
      }

      .header-menu-services__title::before {
        width: 100%;
      }
    }
  }

  .header-menu-services__link {
    margin: auto 0 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2.08vw;
    align-items: flex-end;
  }
}

.header-menu-services__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column: 2/4;
  grid-gap: .938vw;
}

.header-menu-services__wrap {
  background: var(--white);
  border-radius: .83vw;
  padding: 2.08vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 22.14vw;

  &.header-menu-services__wrap--with-bg {
    background: right bottom/cover url("../../assets/img/header-services.webp") no-repeat rgba(255, 255, 255, .12);
    padding: 2.08vw 2.08vw 1.15vw 1.25vw;

    .header-menu-services__title {
      color: var(--white);
      margin: 0;
    }

    .header-menu-services__text {
      color: #E7E7E7;
      margin-top: .625vw;
    }
  }

  > svg {
    height: 2.92vw;
  }
}

.header-menu-services__link-call {
  background-color: var(--white);
  margin: auto auto 0 0;
}

.header-menu-services__title {
  display: block;
  margin-top: .83vw;
  width: max-content;
  font: 700 1.667vw/1.2 var(--font);
}

.header-menu-services__nav {
  margin-top: 1.25vw;
}

.header-menu-services__item:not(:first-child) {
  margin-top: .625vw;
}

.header-menu-services__link {
  font: 400 0.94vw/1.35 var(--font);
  transition: var(--normal);

  > svg {
    position: relative;
    width: 1.563vw;
    height: auto;
    bottom: .26vw;
    transform: rotate(-45deg);
    transition: var(--normal);
  }
}

.header-nav__wrap {
  height: 2.81vw;
  display: flex;
  align-items: center;
}

.header-nav__wrap:hover .header-menu-services {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  z-index: 100;
}

.header-menu-services__prev, .header-menu-services__title-option {
  display: none;
}

/* style @media
--------------------*/
@media (max-width: 1280px) {
  /* style @media header */
  .header {
    padding: 0 24px;
  }

  .header__logo {
    width: 19.401vw;
    position: relative;
    z-index: 100;
  }

  .header-nav__contact-btn {
    position: absolute;
    top: 13px;
    right: calc(11.458vw + 24px);
  }

  .header-nav__open-btn {
    margin-left: 6.25vw;
    width: 5.208vw;
    height: 5.208vw;
    position: relative;
    display: flex;
    align-items: center;

    > span {
      width: 100%;
      height: 1px;
      background: var(--black);
      display: block;
      opacity: 1;
      transition: opacity var(--normal);
    }

    &::before, &::after {
      content: "";
      width: 100%;
      height: 1px;
      position: absolute;
      left: 0;
      background: var(--black);
      transition: transform var(--normal);
    }

    &::before {
      top: 1.433vw;
    }

    &::after {
      top: calc(100% - 1.433vw);
    }

    &.open {
      > span {
        opacity: 0;
      }

      &::before, &::after {
        top: 50%;
      }

      &::before {
        transform: rotate(45deg);
      }

      &::after {
        transform: rotate(-45deg);
      }
    }
  }

  .header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    background: transparent;
    padding: 13.542vw 0 0 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3.125vw;
    transition: var(--normal);

    &.open {
      background: var(--white);
      height: 100%;
    }

    &.inner-menu-open {
      .header-nav__link {
        max-width: 14.063vw;
      }
    }
  }

  .header-nav__link {
    max-width: 18.97vw;
    gap: 1.042vw;

    > svg, &:hover > svg {
      width: 2.083vw;
      transform: rotate(-90deg);
    }

    &.active > svg, &.active:hover > svg {
      transform: rotate(-270deg);
    }
  }

  .header-nav__wrap {
    height: auto;
    width: 18.97vw;
  }

  .header-menu-services {
    width: 79.427vw;
    padding: 2.604vw;
    visibility: visible;
    opacity: 1;
    z-index: 10;
    transform: none;
    top: var(--header-height);
    left: unset;
    right: 24px;
    display: none;
    grid-template-columns: repeat(2, 1fr) [end];
    gap: 2.344vw;
    align-items: center;
    background: var(--black);

    &.open {
      display: grid;
    }
  }

  .header-menu-services__nav {
    grid-column: 1/end;
    margin: 0 0 auto 0;
  }

  .header-menu-services__title {
    font: 700 3.125vw/1.08 var(--font);
    margin-top: 0;
  }

  .header-menu-services__item:not(:first-child) {
    margin-top: 1.563vw;
  }

  .header-menu-services__wrapper {
    grid-column: 1/3;
    grid-gap: 2.344vw;
  }

  .header-menu-services__wrap {
    height: 100%;
    border-radius: 3.125vw;
    padding: 3.125vw;
    background: #FAFAFA;
    display: grid;
    grid-template-columns: max-content 1fr [end];
    grid-template-rows: max-content auto;
    grid-gap: 3.125vw 2.083vw;
    align-items: center;
    min-height: auto;

    > svg {
      height: 6.25vw;
    }

    &.header-menu-services__wrap--with-bg {
      grid-column: 2/3;
      grid-row: 2/3;
      background-color: var(--black);
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0;
      padding: 24px;
      background-image: url("../../assets/img/header-services-tablet.webp");

      .header-menu-services__text {
        margin-top: 1.563vw;
      }
    }
  }

  .header-menu-services__link-call {
    margin: auto auto 0 0;
    width: 100%;
  }

  .about-us-menu {
    .header-menu-services__link {
      grid-column: 1/3;
    }

    & .header-menu-services__wrap {
      &.header-menu-services__wrap--with-bg {
        width: 100%;
        min-height: 28.13vw;
        grid-column: 1/end;
        background-image: url("../../assets/img/header-about-tablet.webp");

        .header-menu-services__text {
          max-width: 54.688vw;
        }
      }

      .header-menu-services__link-call {
        width: max-content;
        margin-top: 3.125vw;
      }
    }
  }

  .header-menu-services__link {
    font-size: 2.344vw;

    svg {
      width: 3.906vw;
    }
  }
}

@media (max-width: 767px) {
  .header {
    padding: 0 15px;
    position: fixed;
    width: 100%;
  }

  .header__logo {
    width: 38.667vw;
  }

  .header-nav__wrap {
    width: auto;
  }

  .header-menu-services {
    width: 100%;
    padding: 6.4vw 16px 12.8vw;
    left: 0;
    top: max(16vw, 60px);
    flex-direction: column;
    align-items: flex-start;
    gap: 6.4vw;

    &.open {
      display: flex;
      overflow-y: scroll;
      max-height: calc(100vh - var(--header-height));
    }
  }

  .header-menu-services__title-option {
    font: 700 5.333vw/1.2 var(--font);
    color: var(--white);
    display: initial;
  }

  .header-menu-services__title {
    font-size: 6.4vw;
  }

  .header-menu-services__item:not(:first-child) {
    margin-top: 2.133vw;
  }

  .header-menu-services__prev {
    display: flex;
    color: var(--white);
    grid-column: 1/end;
    width: max-content;
    align-items: center;
    gap: 4.267vw;

    > svg {
      width: 4.267vw;
    }
  }

  .header-nav {
    padding: 20.267vw 0 0 16px;
    gap: 6.4vw;
  }

  .header-nav__open-btn {
    margin-left: auto;
    width: 10.667vw;
    height: 10.667vw;

    &::before {
      top: 2.856vw;
    }

    &::after {
      top: calc(100% - 2.856vw);
    }
  }

  .header-nav__link {
    max-width: unset;
    gap: 2.133vw;

    > svg {
      width: 4.267vw;
    }
  }

  .header-nav__contact-btn {
    position: relative;
    right: unset;
    top: unset;
  }

  .header-menu-services:not(.about-us-menu) {
    grid-gap: 0;

    .header-menu-services__title-option, .header-menu-services__wrap:nth-of-type(2), .header-menu-services__wrap--with-bg {
      margin-top: 6.4vw;
    }

    .header-menu-services__wrap:nth-of-type(2), .header-menu-services__wrap:nth-of-type(3) {
      padding-bottom: 0;
    }

    .header-menu-services__wrap--with-bg {
      height: auto;
    }

    .header-menu-services__wrap {
      padding: 6.4vw;
      grid-gap: 5.333vw;

      &:nth-of-type(2) {
        border-radius: var(--card-radius-24) var(--card-radius-24) 0 0;
      }

      &:nth-of-type(3) {
        border-radius: 0;
      }

      &:nth-of-type(4) {
        border-radius: 0 0 var(--card-radius-24) var(--card-radius-24);
      }
    }
  }

  .header-menu-services__wrapper {
    order: 0;
    display: flex;
    flex-direction: column;
    gap: 6.4vw;
    background: #fafafa;
    border-radius: 4.27vw;
    padding: 6.4vw 4.267vw;
    width: 100%;
  }

  .header-menu-services__wrap {
    width: 100%;
    padding: 6.4vw;

    &:first-of-type:not(a) {
      order: 1;
      background-image: url("../../assets/img/header-services-mobile.webp");
      height: 55.47vw;

      .header-menu-services__text {
        margin-top: 2.133vw;
        max-width: unset;
      }
    }
  }

  .about-us-menu {
    .header-menu-services__wrap {
      background: var(--white);

      &.header-menu-services__wrap--with-bg {
        background-image: url("../../assets/img/header-about-mobile.webp");
        min-height: 82.67vw;


        .header-menu-services__title::before {
          content: none;
        }
      }
    }
  }

  .header-menu-services__link {
    font-size: 4.8vw;

    svg {
      width: 8vw;
    }
  }

  .header-menu-services__link-call {
    margin-top: 6.4vw;
    width: max-content;
  }

  .header-menu-services__wrap {
    > svg {
      display: none;
    }
  }

  .header-nav {
    & > * {
      max-width: max-content;
    }
  }
}

/* style breadcrumbs
------------------ */
.breadcrumbs {
  padding: 1.25vw 4.74vw;
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: .83vw;
}

.breadcrumbs__item {
  display: flex;
  align-items: center;
}

.breadcrumbs__item::after {
  content: "/";
  margin-left: .73vw;
}

.breadcrumbs__link, .breadcrumbs__item::after, .breadcrumbs__item:last-child {
  font: 400 .94vw/1.35 var(--font);
}

.breadcrumbs__item:last-child::after {
  content: none;
}

@media (max-width: 1280px) {
  .breadcrumbs {
    padding: 2.93vw 24px;
  }

  .breadcrumbs__list {
    gap: 1.56vw;
  }

  .breadcrumbs__link, .breadcrumbs__item::after, .breadcrumbs__item:last-child {
    font-size: 1.82vw;
  }

  .breadcrumbs__item::after {
    margin-left: 1.56vw;
  }

  .breadcrumbs__item:last-child {
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media (max-width: 767px) {
  .breadcrumbs {
    padding: 5.2vw 15px;
    margin-top: max(16vw, 60px);
  }

  .breadcrumbs__list {
    gap: 8px;
  }

  .breadcrumbs__link, .breadcrumbs__item::after, .breadcrumbs__item:last-child {
    font-size: 3.73vw;
  }

  .breadcrumbs__item::after {
    margin-left: 8px;
  }
}

/* style form feedback
--------------------*/
.form-feedback {
  padding: 8.333vw 4.74vw 4.167vw;
}

.form-feedback__wrapper {
  display: flex;
  gap: 10.469vw;
  margin-top: 4.167vw;
}

.form-feedback__title, .form-feedback__subtitle {
  max-width: 43.906vw;
}

.form-feedback__subtitle {
  margin-top: 1.875vw;
}

.form-feedback__footer-text {
  font: 400 .729vw/1.35 var(--font);
  max-width: 32.604vw;
  text-align: right;
  margin: 2.5vw 0 0 auto;

  a {
    text-decoration: underline;
    transition: color .2s;
  }

  a:hover {
    color: var(--green);
  }
}

.form-feedback-photo {
  position: relative;
  padding-right: 10.313vw;
}

.form-feedback-photo__content {
  position: absolute;
  top: 2.813vw;
  right: 0;
  width: 13.542vw;
  height: 7.24vw;
  border-radius: 50%;
  border: 1px solid var(--green);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: .313vw 2.109vw 0 2.109vw;
}

.form-feedback-photo__content-name {
  font: 700 1.042vw/1.4vw var(--font);
}

.form-feedback-photo__content-status {
  font: 700 .625vw/1.35 var(--font);
}

.form-feedback__content {
  width: 48.698vw;
  flex-shrink: 0;
}

.form-feedback-photo__img {
  width: 21.042vw;
  height: 27.708vw;

  > img {
    width: 100%;
    height: 100%;
  }
}

.form-content__label {
  display: block;
  position: relative;
  width: 100%;
  height: 4.167vw;
  border: 1px solid var(--black);
  overflow: hidden;

  &.valid {
    border: 1px solid var(--green) !important;

    + .form-content__label {
      border-top-color: transparent !important;
    }
  }

  &.invalid {
    border: 1px solid var(--red-light) !important;

    + .form-content__label {
      border-top-color: transparent !important;
    }
  }

  &:first-of-type {
    border-radius: var(--card-radius-24) var(--card-radius-24) 0 0;
    border-bottom: 0;
  }

  &:last-of-type {
    border-radius: 0 0 var(--card-radius-24) var(--card-radius-24);
  }

  + .form-content__label:not(:last-of-type) {
    border-bottom: 0;
  }
}

.form-content__footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 2.5vw;
}

.input-file-wrap {
  position: relative;
  width: 100%;

  .form-content__error {
    padding-left: 0;
    top: 100%;
    position: static;
    margin-top: 8px;
  }
}

.input-file-wrap__info {
  font: 400 .729vw/1.35 var(--font);
  margin: .26vw 0 0 1.51vw;
  display: block;
}

.input-file-wrap__label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;

  svg:not(.input-file-wrap__arrow) {
    width: .625vw;
    height: 1.25vw;
    margin-left: .313vw;
  }
}

.form-content input[type="file"] {
  display: none;
}

.input-file-wrap__label-text {
  display: inline-block;
  font: 600 1.042vw/1.35 var(--font);
  margin-left: .573vw;
}

.input-file-wrap__arrow {
  width: 1.667vw;
  margin-left: .938vw;
  transition: transform var(--normal);
}

.input-file-wrap__label:hover .input-file-wrap__arrow {
  transform: translateX(10px);
}

.input-file-wrap__label:hover .hide-underline::before {
  width: 0;
}

.form-content__label_textarea {
  width: 100%;
  height: 8.333vw;
}

.form-content__textarea {
  resize: none;
  padding: 1.354vw 24px 1.354vw 6.563vw;

  &::placeholder {
    line-height: 1.4
  }
}

.form-content__label-name {
  position: absolute;
  top: 1.354vw;
  left: 1.25vw;
  font: var(--paragraph-md);
  font-weight: 700;
}

.form-content__error {
  position: absolute;
  bottom: .425vw;
  padding-left: 6.563vw;
  font: 400 .729vw/1.35 var(--font);
  color: var(--red-light);
  display: none;
}

.form-content__input {
  padding: 0 10px 0 6.563vw;
}

.form-content__input, .form-content__textarea {
  height: 100%;
  width: 100%;
  outline: none;
  font: 400 1.042vw/1.4 var(--font);
  transition: padding var(--normal);
}

.invalid ~ .form-content__error, .invalid > .form-content__error, .input-file-wrap__file-name {
  display: block;
}

.input-file-wrap__file-name {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
}

.input-file-wrap__file-name button {
  width: 10px;
  height: 10px;
  position: relative;
}

.input-file-wrap__file-name button::before, .input-file-wrap__file-name button::after {
  content: "";
  width: 100%;
  height: 1px;
  background: var(--black);
  position: absolute;
  top: 50%;
  left: 50%;
}

.input-file-wrap__file-name button::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.input-file-wrap__file-name button::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.form-feedback-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: -5;
  visibility: hidden;
  opacity: 0;
  transition: opacity var(--normal);
}

.form-feedback-popup.view {
  opacity: 1;
  visibility: visible;
  z-index: 100;
}

.form-feedback-popup__wrap {
  width: 60.417vw;
}

.form-feedback-popup__title {
  font: 600 1.667vw/1.3 var(--font);
}

.form-feedback-popup__text {
  font: 400 1.25vw/1.35 var(--font);
  margin-top: 1.25vw;
}

.form-feedback-popup__btn {
  margin-top: 2.5vw;
  padding: 1.51vw 2.031vw 1.51vw 2.448vw;
  background: transparent;
  color: var(--black);
  font: 500 1.25vw/1 var(--font);
  border: 1px solid var(--black);
  border-radius: 3.33vw;
  transition: background-color var(--normal), border-color var(--normal);

  &:hover {
    background-color: var(--green);
    border-color: var(--green);
  }
}

.form-feedback-popup__close {
  position: absolute;
  top: 2.5vw;
  right: 2.5vw;
  width: 3.333vw;
  height: 3.333vw;
  border-radius: 50%;
  border: 1px solid var(--black);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color var(--normal), border-color var(--normal);

  > svg {
    width: 46.875%;
    height: 46.875%;
    stroke: var(--black);
  }

  &:hover {
    background: var(--green);
    border-color: var(--green);
  }
}

@media (max-width: 1280px) {
  .form-feedback {
    display: block;

    & > div:first-of-type {
      max-width: unset;
    }
  }

  .form-feedback__title, .form-feedback__subtitle {
    max-width: unset;
  }

  .form-feedback__subtitle {
    margin-top: 3.125vw;
  }

  .form-feedback-photo {
    display: none;
  }

  .form-feedback__footer-text {
    font-size: 1.563vw;
    max-width: 81.51vw;
    margin-top: 4.688vw
  }

  .form-feedback__wrapper {
    margin: 0;
  }

  .form-feedback__content {
    width: 100%;
    margin-top: 6.25vw;
  }

  .form-content__label {
    height: 10.938vw;
  }

  .form-content__label_textarea {
    height: 27.865vw;
  }

  .form-content__label-name {
    left: 3.125vw;
    top: 3.971vw;
  }

  .form-content__input, .form-content__textarea {
    font-size: 2.344vw;
    padding-left: 16.406vw;
  }

  .form-content__error {
    font-size: 2.083vw;
    padding-left: 16.406vw;
  }

  .form-content__textarea {
    padding: 3.385vw 24px 3.385vw 16.406vw;
  }

  .input-file-wrap__label svg:not(.input-file-wrap__arrow) {
    width: 1.563vw;
    height: 3.125vw;
    margin-left: .781vw;
  }

  .input-file-wrap__label-text {
    font-size: 2.604vw;
    margin-left: 1.432vw;
  }

  .input-file-wrap__arrow {
    width: 4.167vw;
    margin-left: 2.344vw;
    transform: none!important;
  }

  .input-file-wrap .form-content__error, .input-file-wrap__file-name {
    font-size: 1.823vw;
    margin-top: 3.906vw;
  }

  .input-file-wrap__info {
    font-size: 1.823vw;
    margin: .651vw 0 0 3.776vw;
  }

  .form-content__footer {
    margin-top: 4.688vw;
  }

  .form-feedback-popup__wrap {
    width: 90.625vw;
  }

  .form-feedback-popup__title {
    font-size: 3.125vw;
  }

  .form-feedback-popup__text {
    font-size: 2.604vw;
    margin-top: 3.125vw;
  }

  .form-feedback-popup__btn {
    margin-top: 3.125vw;
    padding: 2.214vw 2.995vw 2.214vw 4.036vw;
    font-size: 2.344vw;
    border-radius: 8.333vw;
  }

  .form-feedback-popup__close {
    top: 6.25vw;
    right: 6.25vw;
    width: 8.333vw;
    height: 8.333vw;
  }
}

@media (max-width: 767px) {
  .form-feedback {
    padding: 12.8vw 16px;
  }

  .form-feedback__subtitle {
    margin-top: 6.4vw;
  }

  .form-feedback__content {
    margin-top: 9.6vw;
  }

  .form-content__label {
    height: 21.333vw;
  }

  .form-content__label:first-of-type .form-content__input {
    border-radius: 4.267vw 4.267vw 0 0;
  }

  .form-content__label-name {
    left: 6.4vw;
    top: 8.133vw;
  }

  .form-content__input, .form-content__textarea {
    padding-left: 29.067vw;
    font-size: 4.267vw;
  }

  .form-content__error {
    font-size: 3.733vw;
    padding-left: 3vw;
  }

  .form-quiz-steep__error {
    font-size: 18vw;
  }

  .form-content__textarea {
    padding: 8.133vw 24px 22px 29.067vw;
    border-radius: 0 0 4.267vw 4.267vw;
  }

  .input-file-wrap {
    display: flex;
    flex-wrap: wrap
  }

  .input-file-wrap__label svg:not(.input-file-wrap__arrow) {
    width: 2.133vw;
    height: 4.267vw;
    margin-left: 1.067vw;
  }

  .input-file-wrap__label-text {
    font-size: 4.267vw;

    svg {
      width: 2.133vw;
      height: 4.167vw;
    }
  }

  .input-file-wrap__arrow {
    width: 8.533vw;
    margin-left: 4.8vw;
  }

  .input-file-wrap .form-content__error, .input-file-wrap__file-name {
    font-size: 3.733vw;
    margin-top: 8vw;
  }

  .input-file-wrap__info {
    font-size: 4.267vw;
    margin: 0 0 0 2.667vw;
  }

  .form-content__footer {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 4.267vw;
    overflow: hidden;
    margin-top: 9.6vw;
  }

  .form-content__submit {
    width: 100%;
    padding: 4.533vw;
    font-size: 4.8vw;
  }

  .form-feedback__footer-text {
    font-size: 3.733vw;
    margin-top: 6.4vw;
    max-width: unset;
    text-align: left;
  }

  .input-file-wrap {
    width: 100%;
    margin-left: 0;
  }

  .input-file-wrap__label {
    display: inline-flex;
  }

  .form-content__label.form-content__label_textarea {
    height: 40vw;
  }

  .form-content__label:first-of-type {
    border-radius: 4.267vw 4.267vw 0 0;
  }

  .form-content__label + .form-content__label_textarea {
    border-radius: 0 0 4.267vw 4.267vw;
  }

  .form-feedback-popup__wrap {
    width: 91.467vw;
  }

  .form-feedback-popup__title, .form-feedback-popup__text {
    font-size: 5.333vw;
  }

  .form-feedback-popup__text, .form-feedback-popup__btn {
    margin-top: 6.4vw;
  }

  .form-feedback-popup__btn {
    width: 100%;
    padding: 4.533vw;
    font-size: 4.8vw;
    border-radius: 17.067vw;
  }

  .form-feedback-popup__close {
    top: 6.4vw;
    right: 6.4vw;
    width: 12.8vw;
    height: 12.8vw;

    svg {
      width: 41.667%;
      height: 41.667%;
    }
  }
}

/* style footer
--------------------*/
.footer {
  background: var(--black);
  padding: 5.208vw 4.688vw 6.25vw 4.688vw;
  color: var(--white);

  svg {
    height: auto;
  }

  .hide-underline::before, .view-underline::before {
    height: 1px;
    background: var(--white);
  }
}

.footer__wrap {
  display: flex;
  justify-content: space-between;

  & + .footer__wrap {
    margin-top: 4.167vw;
  }
}

.footer__head-links {
  display: flex;
  align-items: center;
  gap: 1.875vw;
  margin-right: auto;
}

.footer__logo {
  width: 2.5vw;
}

.footer__btn {
  background-color: var(--white);
}

.footer__email {
  font: 500 1.25vw/1 var(--font);
  color: var(--white);
}

.footer__clutch {
  flex-shrink: 0;
  align-self: center;
}

.clutch-link {
  display: flex;
  align-items: center;
  gap: .833vw;
  background-color: #525252;
  padding: .833vw 1.25vw;
  border-radius: .833vw;

  &:hover {
    .view-underline::before {
      width: 100%;
    }

    .clutch-link__arrow-icon {
      transform: rotate(45deg);
    }
  }
}

.clutch-link__logo {
  width: 2.917vw;
}

.clutch-link__desc {
  display: flex;
  align-items: center;
  gap: .833vw;
  color: #BABABA;
}

.clutch-link__rating {
  display: flex;
  align-items: center;
  gap: .313vw;
  color: var(--white);
  font: 700 1.146vw/1 var(--font);

  svg {
    width: 1.458vw;
    margin-bottom: 2px;
  }
}

.clutch-link__reviews {
  color: var(--white);
  font: 400 .938vw/1.35 var(--font);
}

.clutch-link__arrow-icon {
  width: 1.667vw;
  transition: transform var(--normal);
}

.footer-menu:last-child {
  text-align: right;

  .footer-menu__item:last-child {
    justify-content: flex-end;
  }
}

.footer-menu__title {
  font: 700 2.5vw/1.08 var(--font);
}

.footer-menu__list {
  display: flex;
  flex-direction: column;
  gap: .625vw;
  margin-top: 1.563vw;
}

.footer-menu__item:last-child {
  display: flex;
  align-items: center;
  gap: .938vw;
  margin-top: .208vw;

  svg {
    width: 1.667vw;
  }

  .footer-menu__link {
    font: 600 1.042vw/1.3 var(--font);
  }
}

.footer-menu__link {
  color: var(--white);
  font: 400 .938vw/1.35 var(--font);
}

.footer-nav__list {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  grid-gap: 1.563vw 10.417vw;
}

.footer-nav__link {
  color: var(--white);
  font: 700 1.667vw/1.125 var(--font);
}

.office {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  text-align: right;
  column-gap: .833vw;
}

.office + .office {
  margin-top: 1.563vw;
}

.office__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.563vw;
  height: 1.563vw;
  border-radius: 50%;
  border: 1px solid var(--green);
  transition: transform var(--normal);

  svg {
    width: .625vw;
    height: .625vw;
  }

  &:hover {
    transform: scale(1.1);
  }
}

.office__btn.active svg:first-child, .office__btn svg:last-child {
  display: none;
}

.office__btn.active svg:last-child {
  display: inline-block;
}

.office__btn.active + .office__address {
  margin-top: 1.25vw;
}

.office__address {
  overflow: hidden;
  transition: var(--normal);
  font: 400 1.042vw/1.35 var(--font);
  width: 100%;
  grid-column: 1/end;
  height: 0;
}

.office__country {
  font: 600 1.667vw/1 var(--font);
}

.footer__social {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 5vw 0;
}

.footer-social svg {
  width: 5vw;
  height: 5vw;
  transition: var(--normal);
  stroke: var(--white);
}

.footer-social:hover svg {
  fill: var(--white);
  stroke: var(--black);
}

.footer__copyright, .footer__privacy-link {
  color: var(--white);
  font: 400 .938vw/1.35 var(--font);
}

@media (max-width: 1280px) {
  .footer {
    padding: 6.51vw 5.208vw 9.375vw;
  }

  .footer__wrap {
    align-items: flex-start;
  }

  .footer__wrap + .footer__wrap {
    margin-top: 4.688vw;
  }

  .footer__head-links {
    flex-wrap: wrap;
    column-gap: 2.083vw;
    row-gap: 2.604vw;
  }

  .footer__logo {
    width: 6.12vw;
  }

  .footer__email {
    font-size: 2.604vw;
  }

  .footer__clutch {
    align-self: flex-start;
  }

  .clutch-link {
    gap: 2.083vw;
    padding: 1.563vw 2.083vw;
    border-radius: 3.125vw;
  }

  .clutch-link__logo {
    width: 7.161vw;
  }

  .clutch-link__desc {
    gap: 1.042vw;
  }

  .clutch-link__rating {
    gap: .651vw;
    font-size: 2.344vw;

    svg {
      width: 3.646vw;
    }
  }

  .clutch-link__reviews {
    font-size: 1.823vw;
  }

  .clutch-link__arrow-icon {
    width: 4.167vw;
  }

  .footer-menu__title {
    font-size: 4.167vw;
  }

  .footer-menu__list {
    gap: 1.042vw;
    margin-top: 2.083vw;
  }

  .footer-menu__item:last-child {
    gap: 2.344vw;
    margin-top: 1.432vw;

    svg {
      width: 4.167vw;
    }

    .footer-menu__link {
      font-size: 2.604vw;
    }
  }

  .footer-menu__link {
    font-size: 1.823vw;
  }

  .footer-nav__list {
    grid-template-columns: repeat(2, 9.44vw);
    grid-gap: 2.083vw 11.719vw;
  }

  .footer-nav__link {
    font-size: 2.604vw;
    line-height: 1.2;
  }

  .office {
    column-gap: 2.083vw;

    & + .office {
      margin-top: 3.125vw;
    }
  }

  .office__btn {
    width: 3.906vw;
    height: 3.906vw;

    svg {
      width: 1.563vw;
      height: 1.563vw;
    }
  }

  .office__address {
    font-size: 2.083vw;
  }

  .office__country {
    font-size: 2.604vw;
  }

  .office__btn.active + .office__address {
    margin-top: 1.302vw;
  }

  .footer__social {
    margin: 3.906vw 0;
  }

  .footer-social svg {
    width: 7.292vw;
    height: 7.292vw;
  }

  .footer__copyright, .footer__privacy-link {
    font-size: 1.823vw;
  }
}

@media (max-width: 767px) {
  .footer {
    padding: 13.333vw 15px 21.333vw;
  }

  .footer__wrap {
    flex-wrap: wrap;
    row-gap: 9.6vw;
  }

  .footer__wrap + .footer__wrap {
    margin-top: 9.6vw;
  }

  .footer__wrap--copyright {
    gap: 4.267vw;
  }

  .footer__head-links {
    column-gap: 5.333vw;
    row-gap: 8vw;
  }

  .footer__logo {
    width: 10.667vw;
  }

  .footer__btn.btn {
    width: 42.667vw;
  }

  .footer__email {
    font-size: 5.333vw;
  }

  .clutch-link {
    gap: 4.267vw;
    padding: 3.2vw 5.333vw;
    border-radius: 6.4vw;
  }

  .clutch-link__logo {
    width: 13.333vw;
  }

  .clutch-link__desc {
    gap: 2.133vw;
  }

  .clutch-link__rating {
    gap: 1.6vw;
    font-size: 4.8vw;

    svg {
      width: 7.467vw;
    }
  }

  .clutch-link__reviews {
    font-size: 3.733vw;
  }

  .clutch-link__arrow-icon {
    width: 8.533vw;
  }

  .footer-menu:last-child {
    text-align: left;

    .footer-menu__item:last-child {
      justify-content: flex-start;
    }
  }

  .footer-menu__title {
    font-size: 8.533vw;
  }

  .footer-menu__list {
    gap: 2.133vw;
    margin-top: 4.267vw;
  }

  .footer-menu__item:last-child {
    gap: 4.8vw;
    margin-top: 2.267vw;

    svg {
      width: 8.533vw;
    }

    .footer-menu__link {
      font-size: 5.333vw;
    }
  }

  .footer-menu__link {
    font-size: 3.733vw;
  }

  .footer-nav__list {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 3.2vw 16vw;
  }

  .footer-nav__link {
    font-size: 5.333vw;
  }

  .office {
    column-gap: 4.267vw;
    justify-content: flex-start;
    text-align: left;

    & + .office {
      margin-top: 6.4vw;
    }
  }

  .office__btn {
    width: 8vw;
    height: 8vw;

    svg {
      width: 3.2vw;
      height: 3.2vw;
    }
  }

  .office__address {
    font-size: 4.267vw;
  }

  .office__country {
    font-size: 5.333vw;
  }

  .office__btn.active + .office__address {
    margin-top: 2.667vw;
  }

  .footer__social {
    margin: 9.6vw 0 10.667vw;
  }

  .footer-social svg {
    width: 10.667vw;
    height: 10.667vw;
  }

  .footer__copyright, .footer__privacy-link {
    font-size: 3.733vw;
  }
}

/* style fade animation
----------------------*/
.fade-up, .fade-left, .fade-right, .fade-bottom, .fade {
  visibility: hidden;
}

.animation-wrap {
  .fadeNone {animation: fade .7s forwards;}
  .fadeUp {animation: fadeUp .7s forwards;}
  .fadeBottom {animation: fadeBottom .7s forwards;}
  .fadeLeft {animation: fadeFromLeft .7s forwards;}
  .fadeRight {animation: fadeFromRight .7s forwards;}

  [data-delay="100"] {animation-delay: .1s;}
  [data-delay="300"] {animation-delay: .3s;}
  [data-delay="500"] {animation-delay: .5s;}
  [data-delay="700"] {animation-delay: .7s;}
  [data-delay="900"] {animation-delay: .9s;}
  [data-delay="1100"] {animation-delay: 1.1s;}
  [data-delay="1300"] {animation-delay: 1.3s;}
  [data-delay="1500"] {animation-delay: 1.5s;}
  [data-delay="1700"] {animation-delay: 1.7s;}
  [data-delay="1900"] {animation-delay: 1.9s;}
}

@keyframes fadeUp {
  0% {
    opacity: .1;
    transform: translateY(1.25vw);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
}

@keyframes fadeFromLeft {
  0% {
    opacity: .1;
    transform: translateX(-1.25vw);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
  }
}

@keyframes fadeFromRight {
  0% {
    opacity: .1;
    transform: translateX(1.25vw);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
  }
}

@keyframes fadeBottom {
  0% {
    opacity: .1;
    transform: translateY(-1.25vw);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
  }
}

@keyframes fade {
  0% {
    opacity: .1;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}

/* custom cookie styles */
.cky-footer-wrapper > *:last-child {
  display: none!important;
}

.cky-banner-bottom .cky-consent-bar .cky-banner-btn-close {
  top: 12px;
  right: 12px;
}

.cky-modal .cky-btn, .cky-banner-bottom .cky-btn {
  border-radius: 64px;
}

/* custom cursor styles */
.tooltip {
  width: 3.13vw;
  height: 3.13vw;
  max-width: 30px;
  max-height: 30px;
  cursor: auto;
  pointer-events: none;
  position: fixed;
  display: block;
  top: -1.39vw;
  left: -1.39vw;
  border-radius: 50%;
  background: var(--cursor-color);
  box-shadow: 0 0 .69vw 1.04vw var(--cursor-color);
  transform: translate(-50%, -50%);
  transition: .3s ease-in-out opacity, .3s ease-in-out width, .3s ease-in-out height;
  z-index: 100;
  opacity: 1;

  &.magnet {
    opacity: 0;
    width: 0;
    height: 0;
  }
}

@supports (-moz-appearance: none) or (-webkit-appearance: none) {
/* Safari и Firefox */
  .tooltip {
    filter: drop-shadow(0 0 1.04vw var(--cursor-color));
  }
}

.tooltip.drag {
  top: 0;
  left: 0;
  width: 5vw;
  height: 5vw;
  max-width: 96px;
  max-height: 96px;
  display: flex;
  justify-content: center;
  align-items: center;
  font: 500 1.042vw/1 var(--font);

  &:before, &:after  {
    content: "";
    width: 2.083vw;
    height: 2.083vw;
    background: url("../../assets/img/icons/green-arrow.svg") no-repeat center/contain;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  &:before {
    left: -4.271vw;
    transform: rotate(180deg) translateY(50%);
  }

  &:after {
    right: -4.271vw;
  }
}

/* cases common styles */
.section-container {
  padding: 8.333vw 4.74vw;
}

@media (max-width: 767px) {
  .section-container {
    padding: 19.2vw 16px;
  }
}

.section-rounded {
  border-radius: var(--section-radius);
}

.section-black {
  background-color: var(--black);
  color: var(--white);
}

/* components */
/* chips */
.preview-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.823vw;
  width: fit-content;
  height: 3.542vw;
  border-radius: 1.771vw;
  border: 1px solid var(--white);
  color: var(--white);
  position: relative;
  overflow: hidden;

  & > span {
    z-index: 2;
  }

  &::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #151515;
    backdrop-filter: blur(15px);
  }

  &::after {
    content: "";
    width: 7.656vw;
    height: 5.208vw;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    bottom: 2.5vw;
    transform: translateX(-50%);
    opacity: .8;
    background-color: #FFFFFF99;
    filter: blur(30px);
  }
}

@media (max-width: 767px) {
  .preview-tag {
    padding: 0 4vw;
    height: 10.133vw;
    border-radius: 5.067vw;

    &::after {
      width: 15.2vw;
      height: 10.4vw;
      bottom: 4.8vw;
    }
  }
}

.list-item {
  position: relative;

  &:before {
    content: '';
    position: absolute;
    left: 0;
    height: 1px;
  }
}

.list-item--black {
  color: var(--black);

  &::before {
    background-color: var(--black);
  }
}

.list-item--white {
  color: var(--white);

  &::before {
    background-color: var(--white);
  }
}

.list-item--lg {
  padding-left: 3.333vw;

  &::before {
    top: .833vw;
    width: 2.083vw;
  }
}

@media (max-width: 767px) {
  .list-item--lg {
    padding-left: 12.267vw;

    &::before {
      top: 3.2vw;
      width: 8vw;
    }
  }
}

/* cards */
.card-light-grey {
  background-color: #F6F6F6;
  color: var(--black);
}

.card-dark-grey {
  background-color: #333333;
  color: var(--white);
}

.card-border {
  border: 1px solid;
}

.card-border--black {
  background: var(--white);
  border-color: var(--black);
  color: var(--black);
}

.facts-card {
  border-radius: var(--card-radius-32);
  padding: 3.333vw 2.5vw;
  display: flex;
  flex-direction: column;
  gap: 1.875vw;
}

.facts-card__list {
  display: flex;
  flex-direction: column;
  gap: 1.25vw;
}

.facts-card__item {
  display: flex;
  align-items: flex-start;
  gap: .833vw;

  svg {
    width: 1.458vw;
    height: auto;
    flex-shrink: 0;
  }
}

.facts-card__btn {
  width: 100%;
}

@media (max-width: 767px) {
  .facts-card {
    padding: 9.6vw 6.4vw;
    gap: 6.4vw;
  }

  .facts-card__list, .facts-card__item {
    gap: 4.267vw;

    svg {
      width: 7.467vw;
    }
  }
}

.solution-card {
  padding: 2.448vw 1.823vw;
  border: 1px solid #777777;
  box-shadow: 1px 4px 6px 0px #33363C1F inset;
  border-radius: var(--card-radius-24);
}

.solution-card__check-icon {
  display: block;
  width: 2.083vw;
  height: 2.083vw;
}

.solution-card__title {
  margin-top: 1.25vw;
}

.solution-card__description {
  margin-top: .625vw;
}

@media (max-width: 767px) {
  .solution-card {
    padding: 6.133vw;
  }

  .solution-card__check-icon {
    width: 8.533vw;
    height: 8.533vw;
  }

  .solution-card__title {
    margin-top: 4.267vw;
  }

  .solution-card__description {
    margin-top: 2.133vw;
  }
}

.card-expand {
  cursor: pointer;
}

.card-expand__toggle-btn svg {
  transition: transform var(--normal);
}

.card-expand__details {
  height: 0;
  overflow: hidden;
  transition: height var(--normal), margin var(--normal);
}

.card-expand.expanded {
  .card-expand__toggle-btn svg {
    transform: rotate(180deg);
  }

  .card-expand__details {
    height: auto;
  }
}

@media (max-width: 1280px) {
  .card-expand.expanded {
    .card-expand__details {
      margin-top: 2.604vw;
    }
  }
}

@media (max-width: 767px) {
  .card-expand.expanded .card-expand__details {
    margin-top: 5.333vw;
  }
}

.case-card {
  flex: 1 1 28vw;

  .btn-round {
    flex-shrink: 0;
  }

  &:hover {
    .case-card__img {
      transform: scale(1.05);
    }

    .case-card__title {
      background-size: 0 2px, 100% 2px;
    }
  }
}

.case-card__bottom {
  width: 100%;
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.case-card__img {
  display: block;
  aspect-ratio: 559/300;
  object-fit: cover;
  border-radius: var(--card-radius-24);
  transition: transform var(--normal);
}

.case-card__description {
  margin-top: 1.25vw;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: .833vw;
}

.case-card__title {
  background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), linear-gradient(to right, rgb(0, 0, 0), rgb(0, 0, 0), rgb(0, 0, 0));
  background-size: 100% 2px, 0 2px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 400ms;
  display: inline;
}

.case-card__tags {
  margin-top: .417vw;
}

@media (max-width: 767px) {
  .case-card__description {
    margin-top: 6.4vw;
    gap: 4.267vw;
  }

  .case-card__tags {
    margin-top: 2.133vw;
  }
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 1.042vw;

  label {
    font: inherit;

    &:hover {
      cursor: pointer;
    }
  }
}

.case-tags__item {
  font: var(--paragraph-sm);
}
