@layer reset, base, components, slider;
:root {
  --c-white: white;
  --c-green: #22c55e;
  --c-green-hover: #16ac4d;
  --c-yellow: #fef9c3;
  --c-gray-100: #f1f5f9;
  --c-gray-200: #e2e8f0;
  --c-gray-300: #c2cbd6;
  --c-gray-400: #94a3b8;
  --c-text: #1e293b;
  --c-header: #282c31;
  --p-4: 4px;
  --p-6: 6px;
  --p-8: 8px;
  --p-12: 12px;
  --p-14: 14px;
  --p-16: 16px;
  --p-24: 24px;
  --p-32: 32px;
  --p-48: 48px;
  --p-100: 100px;
  --r-16: 16px;
  --r-100: 100px;
  --f-ultra: 10px;
  --f-micro: 14px;
  --f-small: clamp(0.9375rem, 1.363vw, 1.0625rem);
  --f-base: clamp(1.0625rem, 1.415vw, 1.25rem);
  --f-title: 32px;
  --f-hero: 48px;
  --trs: all 0.2s ease;
}
@media screen and (max-width: 1150px) {
  :root {
    --f-hero: 40px;
  }
}
@media screen and (max-width: 1100px) {
  :root {
    --p-32: 24px;
    --f-hero: 36px;
    --p-100: 60px;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --f-small: 14px;
    --f-base: 16px;
    --f-title: 28px;
    --f-hero: 28px;
    --p-24: 16px;
    --p-32: 16px;
    --p-48: 16px;
    --p-100: 50px;
  }
}
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background-color: var(--c-gray-100);
}
::-webkit-scrollbar-thumb {
  background-color: var(--c-green);
}
@layer base {
  html {
    font-size: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
  }
  * {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  body {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: var(--f-base);
    line-height: 1.5;
    background-color: #fff;
  }
  h1 {
    font-weight: 700;
    font-size: var(--f-hero);
    line-height: 1.1;
    text-wrap: balance;
    text-box-trim: trim-both;
    text-box-edge: cap alphabetic;
  }
  @media screen and (max-width: 1100px) {
    h1 {
      text-align: balance;
    }
    h1 br {
      display: none;
    }
  }
  h2 {
    font-size: var(--f-title);
    font-weight: 700;
    text-box-trim: trim-both;
    text-box-edge: cap alphabetic;
    text-wrap: balance;
    line-height: 1.25;
  }
  a {
    color: inherit;
    text-decoration: inherit;
  }
  p {
    text-wrap: pretty;
  }
  input,
  button,
  textarea {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: var(--f-small);
    line-height: 1.5;
  }
  button {
    padding: 0;
    border: none;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    cursor: pointer;
  }
  img {
    -o-object-fit: cover;
       object-fit: cover;
    max-width: 100%;
    height: auto;
  }
  .logo {
    width: 70px;
    height: auto;
  }
}
@layer components {
  .icon {
    width: 24px;
    height: 24px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .cont {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 var(--p-48);
  }
  @media screen and (max-width: 1100px) {
    .cont {
      max-width: 768px;
    }
  }
  @media screen and (max-width: 767px) {
    .cont {
      max-width: 480px;
    }
  }
  .grid {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--p-24);
  }
  .fx {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: var(--p-24);
  }
  .fx.fx-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .fx.fx-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .fx.fx-start {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .fx.fx-sb {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .fx.fx-fe {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .fx.fx-je {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .fx.fx-jc {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .fx.fx-vertical {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .fx.g-32 {
    gap: var(--p-32);
  }
  @media screen and (max-width: 1100px) {
    .fx.g-32 {
      gap: 24px;
    }
  }
  .fx.g-24 {
    gap: var(--p-24);
  }
  @media screen and (max-width: 1100px) {
    .fx.g-24 {
      gap: var(--p-16);
    }
  }
  .fx.g-16 {
    gap: var(--p-16);
  }
  .fx.g-8 {
    gap: var(--p-8);
  }
  .button {
    background-color: var(--c-green);
    color: var(--c-white);
    padding: var(--p-16) var(--p-32);
    border-radius: var(--r-100);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transition: var(--trs);
    transition: var(--trs);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  @media screen and (max-width: 767px) {
    .button {
      width: 100%;
    }
  }
  .button.button--small {
    padding: var(--p-6) var(--p-14);
  }
  .button:hover {
    background-color: var(--c-green-hover);
  }
  .button.center {
    margin: 0 auto;
  }
  .link {
    color: var(--c-green);
    text-decoration: underline;
    -webkit-transition: var(--trs);
    transition: var(--trs);
  }
  .link:hover {
    color: var(--c-green-hover);
  }
}
@layer slider {
  .slider {
    position: relative;
    background-color: var(--c-gray-100);
    border-radius: var(--r-16);
    padding: 0 var(--p-32);
    width: 100%;
  }
  .slider__nav {
    position: absolute;
    right: 0;
    top: -36px;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  @media screen and (max-width: 767px) {
    .slider__nav {
      display: none;
    }
  }
  .slider__nav .slider__arrow {
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    cursor: pointer;
  }
  .slider__nav .slider__arrow.disabled {
    cursor: not-allowed;
    opacity: 0.3;
    pointer-events: none;
  }
  .slider__nav .slider__arrow:hover {
    opacity: 0.5;
  }
  .slider__nav .slider__arrow--next {
    rotate: 180deg;
  }
  .slider__box {
    width: 500px;
    height: 100%;
    background-color: var(--c-white);
    border-radius: var(--r-16);
    padding: var(--p-24);
    margin-right: var(--p-24);
    -webkit-box-shadow: 0 6px 12px 0 rgba(30, 41, 59, 0.02), 0 6px 28px 0 rgba(30, 41, 59, 0.05);
            box-shadow: 0 6px 12px 0 rgba(30, 41, 59, 0.02), 0 6px 28px 0 rgba(30, 41, 59, 0.05);
  }
  @media screen and (max-width: 767px) {
    .slider__box {
      width: clamp(300px, 5vw, 500px);
    }
  }
  .slider__box--ava {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 64px;
            flex: 0 0 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
  }
  .slider__box--ava img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .slider__box--user {
    gap: 0;
  }
  .slider__box--address {
    color: var(--c-gray-400);
    font-size: var(--f-small);
  }
  .slider__box--row ul {
    list-style-type: disc;
    padding-left: 20px;
    line-height: 1.3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4px;
    text-wrap: auto;
  }
  .slider__box--label {
    font-size: var(--f-micro);
    color: var(--c-gray-400);
  }
  .slider__box--info {
    font-size: var(--f-small);
    text-wrap: balance;
  }
  .slider__scroll {
    overflow: clip;
    margin-left: calc(-1 * var(--p-32));
    margin-right: calc(-1 * var(--p-32));
    padding: var(--p-32);
  }
  .slider__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .slider__wrapper:active {
    cursor: -webkit-grabbing;
    cursor: grabbing;
  }
  .slider__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    min-width: 0;
  }
  .slider__item--button {
    padding: 54px;
    border-radius: var(--r-16);
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: var(--p-32);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    color: var(--c-text);
    cursor: pointer;
  }
  .slider__item--button h3 {
    margin: 0px;
    font-size: 28px;
    line-height: 1.15;
  }
  .slider__item--button svg {
    width: 70px;
    height: 70px;
  }
  .slider__item--button .button {
    margin: 0 !important;
  }
  .slider__item ul {
    text-wrap: balance;
    gap: 10px;
  }
  .slider__item .slider__box--info {
    text-wrap: balance;
  }
  .slider__item--info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: var(--p-24);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .slider__dots {
    gap: var(--p-8);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: var(--p-24);
    position: relative;
    top: -16px;
    width: 100%;
    display: none;
  }
  @media screen and (max-width: 767px) {
    .slider__dots {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    }
  }
  .slider__dots * {
    width: 8px;
    height: 8px;
    background-color: var(--c-gray-400);
    border-radius: 50%;
    -webkit-transition: var(--trs);
    transition: var(--trs);
    cursor: pointer;
    padding: 0;
    border: none;
  }
  .slider__dots .active {
    background-color: var(--c-green);
  }
}
.header {
  background-color: var(--c-header);
  padding: var(--p-12) 0;
  color: var(--c-white);
  font-size: var(--f-small);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.header .fx {
  position: relative;
}
@media screen and (max-width: 1100px) {
  .header__logo {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
            flex: 1 1 50%;
  }
}
.header__nav {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
@media screen and (max-width: 1100px) {
  .header__nav {
    display: none;
  }
}
.header__nav.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: calc(100% + var(--p-12));
  right: 0;
  background-color: var(--c-gray-100);
  width: 100%;
  max-width: 300px;
  color: var(--c-text);
  padding: var(--p-24);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 0;
  border-radius: 0 0 var(--r-16) var(--r-16);
  -webkit-box-shadow: 0 6px 20px 0 rgba(30, 41, 59, 0.05), 0 6px 35px 0 rgba(30, 41, 59, 0.15);
          box-shadow: 0 6px 20px 0 rgba(30, 41, 59, 0.05), 0 6px 35px 0 rgba(30, 41, 59, 0.15);
}
@media screen and (max-width: 767px) {
  .header__nav.active {
    width: 100%;
    max-width: 100%;
    background-color: var(--c-white);
  }
}
.header__nav.active .header__actions {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 0;
  width: 100%;
}
.header__nav.active .header__actions .header__link:last-child {
  border-bottom: none;
}
.header__nav.active .header__actions .button {
  margin-top: var(--p-4);
  -webkit-box-ordinal-group: 1000;
      -ms-flex-order: 999;
          order: 999;
  width: 100%;
  padding: var(--p-16);
}
.header__nav.active .header__link {
  height: 42px;
  border-bottom: 1px solid var(--c-gray-200);
  width: 100%;
}
.header__nav.active .header__link img {
  -webkit-filter: invert(100%);
          filter: invert(100%);
}
.header__link {
  -webkit-transition: var(--trs);
  transition: var(--trs);
}
.header__link:hover {
  opacity: 0.7;
}
.header__actions {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.header__menu {
  padding: 0;
  margin: 0;
  background-color: transparent;
  border: none;
  display: none;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
}
@media screen and (max-width: 1100px) {
  .header__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.header__menu.active {
  opacity: 0.5;
}
.hero {
  margin: calc(var(--p-100) + 50px) 0 var(--p-100);
}
@media screen and (max-width: 767px) {
  .hero br {
    display: none;
  }
}
.hero .cont {
  position: relative;
}
.hero__grid {
  -ms-grid-columns: 2fr 1.25fr;
  grid-template-columns: 2fr 1.25fr;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
@media screen and (max-width: 1100px) {
  .hero__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.hero__offer {
  margin-bottom: -24px;
}
@media screen and (max-width: 1100px) {
  .hero__offer {
    text-align: center;
  }
}
.hero__title {
  font-size: 54px;
}
@media (max-width: 1200px) {
  .hero__title {
    font-size: 42px;
    text-align: center;
    max-width: none;
  }
}
@media (max-width: 767px) {
  .hero__title {
    font-size: 36px;
  }
}
.hero__partners {
  position: absolute;
  top: 8px;
  right: 50px;
}
.hero__partners .about__float--icon:last-child {
  position: relative;
  top: -6px;
}
.hero__descript {
  font-size: 16px;
  margin-top: 10px;
  text-wrap: balance;
  max-width: 675px;
  margin-top: 30px;
}
.hero__descript strong {
  color: var(--c-green);
  font-weight: bold;
}
.hero__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: var(--p-16);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  background-color: var(--c-gray-200);
  padding: var(--p-16);
  border-radius: var(--r-16);
  max-width: 715px;
  color: var(--c-text);
}
.hero__form:has(.verification-field[style="display: block;"]) .form-field {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 250px;
          flex: 1 1 250px;
}
.hero__form:has(.verification-field[style="display: block;"]) .form-field.full {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
}
.hero__form--input {
  width: 100%;
  height: 52px;
  min-width: 1px;
  margin-bottom: var(--p-12);
  margin: 0;
  border: 1px solid var(--c-gray-200);
  background-color: var(--c-white);
  padding: var(--p-16);
  color: var(--c-text);
  -webkit-transition: var(--trs);
  transition: var(--trs);
  border-radius: 8px;
  font-size: var(--f-small);
}
.hero__form--input::-webkit-input-placeholder {
  color: var(--c-gray-400);
}
.hero__form--input::-moz-placeholder {
  color: var(--c-gray-400);
}
.hero__form--input:-ms-input-placeholder {
  color: var(--c-gray-400);
}
.hero__form--input::-ms-input-placeholder {
  color: var(--c-gray-400);
}
.hero__form--input::placeholder {
  color: var(--c-gray-400);
}
.hero__form--input:focus {
  outline: none;
  border-color: var(--c-green);
  color: var(--c-text);
}
.hero__form--input.full {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
}
.hero__form--input:not(:-moz-placeholder):invalid {
  border-color: #ff4d4f;
}
.hero__form--input:not(:-ms-input-placeholder):invalid {
  border-color: #ff4d4f;
}
.hero__form--input:not(:placeholder-shown):invalid,
.hero__form--input.is-invalid {
  border-color: #ff4d4f;
}
.hero__form .form-field {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 190px;
          flex: 1 1 190px;
  padding: 0;
  margin: 0;
  height: auto;
}
.hero__form .form-field.full {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
}
.hero__form .form-field:has(.is-invalid) .error-html {
  display: block;
  margin-top: 5px;
}
.hero__form .error-text,
.hero__form .error-html {
  display: block;
  color: #ff4d4f;
  font-size: 12px;
  min-height: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.hero__form .error-html {
  display: none;
  text-align: left;
}
.hero__form textarea {
  min-height: 115px;
  max-width: 100% !important;
  width: 100% !important;
}
.hero__form--policy {
  font-size: 11px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 calc(50% - var(--p-16));
          flex: 1 1 calc(50% - var(--p-16));
  color: var(--c-gray-400);
  text-wrap: balance;
  text-align: left;
  position: relative;
  top: 12px;
}
@media (max-width: 767px) {
  .hero__form--policy {
    top: 0;
  }
}
.hero__form--policy a {
  text-decoration: underline;
}
.hero__form--button {
  background: linear-gradient(125deg, #ffa600 0%, #ffc062 100%);
  border-bottom: 0.05em solid rgba(255, 255, 255, 0.8);
  -webkit-box-shadow: 0 10px 20px rgba(255, 185, 49, 0.3);
          box-shadow: 0 10px 20px rgba(255, 185, 49, 0.3);
  color: var(--c-text);
  gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: var(--trs);
  transition: var(--trs);
}
.hero__form--button:hover {
  background: -webkit-gradient(linear, left top, right top, from(#ffa600), to(#ffaf1c));
  background: linear-gradient(90deg, #ffa600 0%, #ffaf1c 100%);
}
.hero__form--descript {
  width: 100%;
  text-align: center;
  max-width: 715px;
  padding-top: 30px;
  padding-bottom: 16px;
  margin-top: calc(-64px + var(--p-16));
  border: 1px solid var(--c-gray-200);
  color: var(--c-text);
  opacity: 0.7;
  line-height: 1;
  font-size: 16px;
  display: block;
  position: relative;
  z-index: -1;
  border-radius: 0 0 var(--r-16) var(--r-16);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: var(--p-12);
}
@media (max-width: 767px) {
  .hero__form--descript {
    font-size: 14px;
    padding-top: 36px;
  }
}
.hero__form--descript strong {
  color: var(--c-green);
  font-weight: normal;
  margin: 0;
}
@media screen and (max-width: 1100px) {
  .hero__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.hero__accent {
  -ms-grid-column: 1;
      grid-column-start: 1;
  -ms-grid-row: 2;
      grid-row-start: 2;
  background-color: var(--c-yellow);
  border-radius: var(--r-16);
  padding: var(--p-24);
  -ms-grid-row-align: end;
      align-self: end;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 1100px) {
  .hero__accent {
    margin: 0 auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (max-width: 767px) {
  .hero__accent {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.hero__accent--item {
  gap: var(--p-14);
}
.hero__accent--item img {
  position: relative;
  top: 2px;
}
.hero__cover {
  -ms-grid-row-span: 2;
  grid-row: span 2 / span 2;
  -ms-grid-column: 2;
      grid-column-start: 2;
  -ms-grid-row: 1;
      grid-row-start: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.hero__cover img {
  width: 100%;
  max-width: 100%;
  min-width: 1px;
}
.hero__cover.end {
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999;
}
.hero__cover.end img {
  max-width: 402px;
}
@media screen and (max-width: 1100px) {
  .hero__cover.end {
    margin-top: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: none;
    width: 100%;
  }
}
@media screen and (max-width: 1100px) {
  .hero__cover {
    -ms-grid-column: auto;
        grid-column-start: auto;
    -ms-grid-row: auto;
        grid-row-start: auto;
    margin-bottom: var(--p-16);
    margin-top: -16px;
  }
  .hero__cover img {
    width: 100%;
    max-width: 480px;
  }
}
.citys {
  margin: var(--p-100) 0;
}
@media screen and (max-width: 1100px) {
  .citys__list {
    gap: var(--p-8);
  }
}
.citys__item {
  padding: var(--p-12) var(--p-24);
  border-radius: var(--r-100);
  border: 1px solid var(--c-gray-200);
  -webkit-transition: var(--trs);
  transition: var(--trs);
  font-size: var(--f-small);
}
@media screen and (max-width: 1100px) {
  .citys__item {
    padding: var(--p-8) var(--p-16);
  }
}
@media screen and (max-width: 767px) {
  .citys__item {
    padding: var(--p-6) var(--p-12);
  }
}
.citys__item:hover {
  background-color: var(--c-green);
  border: 1px solid var(--c-green);
  color: var(--c-white);
}
.benefits__grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.benefits__box {
  padding: var(--p-32);
  background-color: var(--c-gray-100);
  border-radius: var(--r-16);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--p-16);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  text-wrap: balance;
  -webkit-transition: var(--trs);
  transition: var(--trs);
}
@media screen and (max-width: 767px) {
  .benefits__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.benefits__box:hover {
  background-color: var(--c-white);
  -webkit-box-shadow: 0 20px 20px 0 rgba(30, 41, 59, 0.02), 0 20px 35px 0 rgba(30, 41, 59, 0.05);
          box-shadow: 0 20px 20px 0 rgba(30, 41, 59, 0.02), 0 20px 35px 0 rgba(30, 41, 59, 0.05);
}
.benefits__box h3 {
  font-weight: 700;
  margin-bottom: var(--p-8);
}
.hww {
  margin: var(--p-100) 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .hww .button {
    margin-top: 32px;
  }
}
.hww__grid {
  margin: var(--p-32) 0;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
@media screen and (max-width: 1100px) {
  .hww__grid {
    margin: 24px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-scroll-snap-type: x mandatory;
        scroll-snap-type: x mandatory;
    scrollbar-width: none;
    scroll-marker-group: after;
    scroll-marker-group: hww-markers;
  }
  .hww__grid::-webkit-scrollbar {
    display: none;
  }
  .hww__grid::scroll-marker-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: var(--p-8);
  }
  .hww__grid::scroll-marker-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: var(--p-8);
    margin-top: var(--p-24);
  }
  .hww__grid::scroll-marker {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--c-gray-200);
    cursor: pointer;
    -webkit-transition: var(--trs);
    transition: var(--trs);
  }
  .hww__grid::scroll-marker:checked {
    background-color: var(--c-green);
  }
}
.hww__gray {
  background-color: var(--c-gray-100);
  gap: 100px;
  padding: var(--p-32);
  border-radius: var(--r-16);
  position: relative;
}
@media (max-width: 1200px) {
  .hww__gray {
    gap: 50px;
    padding: 0;
  }
}
.hww__gray .hww__box {
  padding: 0;
  border: none;
  position: relative;
}
@media (max-width: 1200px) {
  .hww__gray .hww__box {
    padding: var(--p-32);
  }
}
.hww__gray .hww__icon {
  background-color: #fff;
  position: relative;
  z-index: 10;
}
.hww__gray .hww__arrow {
  position: absolute;
  right: -70px;
  top: 10px;
  max-width: 310px;
  width: 80%;
  pointer-events: none;
}
@media (max-width: 1200px) {
  .hww__gray .hww__arrow {
    right: -50px;
    top: 32px;
  }
}
.hww__gray .hww__arrow svg {
  width: 100%;
  height: 100%;
}
.hww__gray .hww__arrow.first {
  top: auto;
  bottom: -10px;
}
@media (max-width: 1200px) {
  .hww__gray .hww__arrow.first {
    bottom: 22px;
  }
}
.hww__box {
  padding: var(--p-24);
  border: 1px solid var(--c-gray-200);
  border-radius: var(--r-16);
  -webkit-transition: var(--trs);
  transition: var(--trs);
}
@media screen and (max-width: 1100px) {
  .hww__box {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 300px;
            flex: 0 0 300px;
    scroll-snap-align: start;
  }
  .hww__box::scroll-marker {
    content: "";
    width: 8px;
    height: 8px;
    background-color: var(--c-gray-400);
    border-radius: 50%;
  }
  .hww__box::scroll-marker:target-current {
    background-color: var(--c-green);
  }
}
.hww__box:hover {
  background-color: var(--c-gray-100);
  border-color: var(--c-gray-100);
}
.hww__number {
  width: 35px;
  height: 35px;
  background-color: var(--c-text);
  color: var(--c-white);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: var(--r-100);
  font-size: var(--f-micro);
}
.hww__title {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}
.hww__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: var(--r-100);
  -webkit-box-shadow: 0 6px 12px 0 rgba(30, 41, 59, 0.02), 0 6px 28px 0 rgba(30, 41, 59, 0.05);
          box-shadow: 0 6px 12px 0 rgba(30, 41, 59, 0.02), 0 6px 28px 0 rgba(30, 41, 59, 0.05);
}
.hww__icon img {
  width: 24px;
  height: 24px;
}
.profit__grid {
  -ms-grid-columns: 1fr var(--p-16) 1fr;
  grid-template-columns: 1fr 1fr;
  gap: var(--p-16);
  margin-top: 32px;
  margin-bottom: 32px;
}
@media (max-width: 1200px) {
  .profit__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.profit__box {
  height: 160px;
  padding: var(--p-32);
  border-radius: var(--r-16);
  background-color: var(--c-gray-100);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .profit__box {
    height: auto;
    gap: var(--p-16);
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}
@media (max-width: 767px) {
  .profit__box--content {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.profit__box--content h3 {
  font-weight: 700;
  margin-bottom: var(--p-8);
}
.profit__box--content p {
  text-wrap: balance;
  font-size: 16px;
}
.profit__box--icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100px;
          flex: 0 0 100px;
  height: 100px;
}
@media (max-width: 767px) {
  .profit__box--icon {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 70px;
            flex: 0 0 70px;
    height: 70px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.translators {
  margin: var(--p-100) 0;
}
.translators__title {
  margin-bottom: 36px;
}
.translators__line {
  margin-top: var(--p-16);
  margin-bottom: var(--p-32);
  text-wrap: balance;
}
@media screen and (max-width: 767px) {
  .translators__line span {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.translators .button {
  margin-top: var(--p-32);
}
.translators .link {
  font-size: var(--f-small);
  display: block;
}
.choice {
  margin: var(--p-100) 0;
}
.choice h2 {
  margin-bottom: var(--p-32);
}
@media screen and (max-width: 1100px) {
  .choice h2 {
    margin-bottom: 24px;
  }
}
.choice__box {
  padding: var(--p-32);
  background-color: var(--c-gray-100);
  border-radius: var(--r-16);
}
.choice__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--c-white);
  -webkit-box-shadow: 0 6px 12px 0 rgba(30, 41, 59, 0.02), 0 6px 28px 0 rgba(30, 41, 59, 0.05);
          box-shadow: 0 6px 12px 0 rgba(30, 41, 59, 0.02), 0 6px 28px 0 rgba(30, 41, 59, 0.05);
}
.choice__content {
  text-wrap: balance;
}
.testimonials {
  margin: var(--p-100) 0;
}
.testimonials__header p {
  font-size: var(--f-micro);
  line-height: 1.4;
  color: var(--c-gray-400);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  margin-top: var(--p-8);
}
@media (max-width: 767px) {
  .testimonials__header p {
    font-size: 12px;
  }
}
.testimonials__header p img {
  pointer-events: none;
}
@media (max-width: 767px) {
  .testimonials__header p img {
    width: 170px;
  }
}
.testimonials .slider {
  margin: var(--p-32) 0;
}
@media screen and (max-width: 767px) {
  .testimonials .slider {
    margin: 24px 0;
  }
}
.testimonials__box {
  width: 380px;
}
@media screen and (max-width: 767px) {
  .testimonials__box {
    width: 300px;
  }
}
.testimonials__box .slider__box--address {
  font-size: var(--f-micro);
  line-height: 1.4;
}
.about {
  margin: var(--p-100) 0;
}
.about h2 {
  line-height: 1.2;
}
.about__grid {
  background-color: var(--c-gray-100);
  border-radius: var(--r-16);
  padding: 48px 64px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: clip;
}
@media screen and (max-width: 1100px) {
  .about__grid {
    padding: 48px 32px;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
@media screen and (max-width: 767px) {
  .about__grid {
    padding: 32px 16px;
  }
}
.about__content {
  text-wrap: balance;
  position: relative;
  z-index: 2;
}
.about__header {
  text-wrap: balance;
}
.about__header p {
  max-width: 550px;
  text-wrap: balance;
}
.about__list {
  font-size: var(--f-small);
  gap: 12px;
}
.about__item > img {
  opacity: 0.4;
}
.about__cover {
  position: relative;
  z-index: 1;
}
.about__cover > img {
  width: 140%;
  position: relative;
  left: -100px;
  height: auto;
  max-width: none;
}
@media screen and (max-width: 1100px) {
  .about__cover > img {
    width: auto;
    top: 30px;
    height: 360px;
    left: -150px;
  }
}
@media screen and (max-width: 767px) {
  .about__cover > img {
    width: 120%;
    height: auto;
    left: -10%;
    top: 0;
  }
}
.about__float {
  max-width: 330px;
  background-color: #fff;
  padding: var(--p-16);
  border-radius: var(--r-16);
  -webkit-box-shadow: 0 6px 12px 0 rgba(30, 41, 59, 0.02), 0 6px 28px 0 rgba(30, 41, 59, 0.05);
          box-shadow: 0 6px 12px 0 rgba(30, 41, 59, 0.02), 0 6px 28px 0 rgba(30, 41, 59, 0.05);
  position: absolute;
  bottom: 24px;
  right: var(--p-32);
}
@media screen and (max-width: 1100px) {
  .about__float {
    bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .about__float {
    position: relative;
    right: 0;
    left: 0;
    width: 100%;
    max-width: none;
  }
}
.about__float--action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: var(--p-16);
}
.about__float--action hr {
  width: 1px;
  height: 35px;
  border: none;
  background-color: var(--c-gray-200);
  padding: 0;
  margin: 0;
}
.about__float--icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.about__float--icon img {
  width: auto;
  height: 35px;
}
@media screen and (max-width: 1100px) {
  .about__float--icon img {
    height: 25px;
  }
}
@media screen and (max-width: 767px) {
  .about__float--icon img {
    height: auto;
  }
}
.order {
  margin: var(--p-100) 0;
}
.order__grid {
  -ms-grid-columns: 1.75fr var(--p-100) 1fr;
  grid-template-columns: 1.75fr 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin: var(--p-32) 0;
  gap: var(--p-100);
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 1100px) {
  .order__grid {
    gap: var(--p-32);
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
@media screen and (max-width: 767px) {
  .order__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.order__form {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr var(--p-24) 1fr;
  grid-template-columns: 1fr 1fr;
  gap: var(--p-24);
  row-gap: 0;
}
@media screen and (max-width: 1100px) {
  .order__form {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.order__label {
  width: 100%;
  position: relative;
}
.order__label:has(textarea) {
  -ms-grid-column-span: 2;
  grid-column: span 2;
}
@media screen and (max-width: 1100px) {
  .order__label:has(textarea) {
    grid-column: auto;
  }
}
.order__label:has(textarea) .order__name {
  bottom: auto;
  margin-top: 32px;
}
.order__label:has(textarea) textarea {
  height: 100px;
  resize: none;
}
.order__label:has(input:focus) .order__name,
.order__label:has(textarea:focus) .order__name {
  bottom: auto;
  margin-top: 8px;
}
.order__label:has(input:focus) .order__input,
.order__label:has(textarea:focus) .order__input {
  border-color: var(--c-green);
}
.order__label:has(input:not(:-moz-placeholder)) .order__name, .order__label:has(textarea:not(:-moz-placeholder)) .order__name {
  margin-top: 8px;
}
.order__label:has(input:not(:-ms-input-placeholder)) .order__name, .order__label:has(textarea:not(:-ms-input-placeholder)) .order__name {
  margin-top: 8px;
}
.order__label:has(input:not(:placeholder-shown)) .order__name,
.order__label:has(textarea:not(:placeholder-shown)) .order__name {
  margin-top: 8px;
}
.order__name {
  position: absolute;
  font-size: var(--f-micro);
  color: var(--c-gray-400);
  left: 0;
  margin-top: 32px;
  -webkit-transition: var(--trs);
  transition: var(--trs);
}
.order__input {
  width: 100%;
  padding: 0;
  border: none;
  border-bottom: 1px solid var(--c-gray-200);
  padding: 32px 0 12px;
  -webkit-transition: var(--trs);
  transition: var(--trs);
}
.order__input:focus {
  outline: none;
}
.order .button {
  margin-top: var(--p-24);
}
.order__cover {
  position: relative;
}
@media screen and (max-width: 767px) {
  .order__cover {
    display: none;
  }
}
.order__cover img {
  width: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  height: auto;
}
@media screen and (max-width: 1100px) {
  .order__cover img {
    position: relative;
  }
}
.faq {
  margin: var(--p-100) 0;
}
.faq__list {
  margin: var(--p-32) 0;
}
.faq details {
  padding: var(--p-24) 0;
  border-top: 1px solid var(--c-gray-100);
}
.faq details[open] {
  border-bottom-color: #000;
}
.faq details[open] summary::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.faq details summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding-right: 40px;
}
.faq details summary::before {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  right: 0px;
  top: 0px;
  background-image: url("../img/chevron.svg");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-transition: var(--trs);
  transition: var(--trs);
}
.faq details summary::-webkit-details-marker {
  display: none;
}
.faq details summary::marker {
  display: none;
}
.faq details p {
  font-size: var(--f-small);
  margin-top: var(--p-24);
  text-wrap: balance;
}
.endform {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}
.endform__title {
  font-size: var(--f-hero);
}
.endform .hero__descript {
  max-width: none;
  margin: 0;
}
.endform .hero__form {
  max-width: 850px;
  width: 100%;
}
.endform .hero__form--descript {
  width: 100%;
  max-width: none;
}
.footer {
  margin-top: var(--p-48);
  padding-top: var(--p-48);
  padding-bottom: 80px;
  background-color: var(--c-header);
  color: var(--c-white);
  font-size: 14px;
}
@media (max-width: 1200px) {
  .footer {
    margin-top: 50px;
    padding-top: 50px;
  }
}
.footer .logo {
  width: 100%;
  max-width: 90px;
}
@media screen and (max-width: 1100px) {
  .footer .logo {
    width: 80px;
  }
}
.footer__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 200px var(--p-32) 1fr;
  grid-template-columns: 200px 1fr;
  gap: var(--p-32);
}
@media screen and (max-width: 1100px) {
  .footer__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
@media screen and (max-width: 767px) {
  .footer__grid {
    gap: 24px;
  }
}
.footer__content {
  gap: 50px;
  min-width: 1px;
}
@media screen and (max-width: 1100px) {
  .footer__content {
    gap: 10px;
    row-gap: 50px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .footer__content {
    gap: 24px;
    row-gap: 24px;
  }
}
.footer__nav {
  gap: var(--p-8);
}
.footer__nav h3 {
  text-transform: uppercase;
  font-size: var(--f-micro);
  font-weight: bold;
  color: var(--c-gray-400);
  letter-spacing: 0.1em;
}
.footer__list {
  gap: var(--p-8);
}
.footer__list a {
  border-bottom: 0.1rem solid var(--c-gray-100);
  -webkit-transition: var(--trs);
  transition: var(--trs);
  white-space: nowrap;
}
.footer__list a:hover {
  color: var(--c-green);
  border-bottom-color: var(--c-green);
}
.footer__company {
  -ms-grid-column-span: 3;
  grid-column: span 3;
  gap: 0;
  text-wrap: balance;
}
@media screen and (max-width: 1100px) {
  .footer__company {
    -ms-grid-column-span: 2;
    grid-column: span 2;
  }
}
@media (width < 400px) {
  .footer__company {
    grid-column: auto;
  }
}
.footer .about__float--action {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 320px;
          flex: 0 0 320px;
  background-color: #fff;
  padding: var(--p-12);
  border-radius: 8px;
}
.footer .about__float--action .about__float--icon.opora {
  position: relative;
  top: -4px;
}
.exit-popup-content {
  max-width: 500px !important;
  width: 95%;
  padding: var(--p-32);
  text-align: left !important;
}
@media (max-width: 767px) {
  .exit-popup-content {
    padding: var(--p-16);
  }
}
.exit-popup-content h3 {
  margin-bottom: 12px;
  font-size: 28px !important;
  font-weight: 700;
  line-height: 1.2;
  text-wrap: balance;
}
.exit-popup-content h3 strong {
  color: var(--c-green);
}
@media (max-width: 767px) {
  .exit-popup-content h3 {
    font-size: 20px !important;
  }
}
.exit-popup-content p {
  margin-bottom: 24px;
  font-size: 16px;
}
.exit-popup-content p strong {
  font-weight: bold;
  color: var(--c-green);
}
.exit-popup-content .hero__form textarea {
  min-height: 150px;
}
.exit-popup-content .hero__form .hero__form--policy {
  top: 0;
}
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1000;
}
.popup-content {
  background: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
}
.popup-content h3 {
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: bold;
}
.popup-content p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.5;
}
.button.popup-close {
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 20px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  padding: 0;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
