/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
* {
  box-sizing: border-box;
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

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

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

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

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

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

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

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

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

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

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Libraries, which is used in current project. */
/* Libraries, which is used in current project. */
/* Some styles, which is used for correct sprite-generation, vars, mixins and etc */
/* Please, do not edit with file! */
/* This file can be overwritten by update-project! */
/* Mixins, which are specific for current project */
/* Mixins and vars for sprite generation */
/* Scss for used fonts */
/* Vars, which are specific for current project */
/* Styles for UI-elements */
:root {
  --font-family: "Inter", sans-serif;
  --font-family-logo: "Manrope", sans-serif;
  --color-main: #000;
  --color-text: #4D4D4D;
  --color-divider: #E0E0E0;
  --color-stroke: #f1f1f1;
  --color-section-bg: #FAFAFA;
  --color-link-content: #0039d5;
  --color-button-bg: #292929;
  --color-button-bg-hover: #3e3e3e;
  --color-button-stroke: #4A4A4A;
  --color-button-stroke-hover: #696969;
  --color-button-gray-bg: #F2F2F2;
  --color-button-gray-stroke: #EBEBEB;
  --transition: .3s ease-out;
}

a {
  outline: none;
  text-decoration: none;
  color: var(--color-main);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

h1, h2, h3, h4 {
  font-weight: 600;
  margin: 0;
  padding: 0;
}

.button {
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  background: var(--color-button-bg);
  border: 1px solid var(--color-button-stroke);
  outline: none;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-family: var(--font-family);
  padding: 0 0.75rem 0 1.125rem;
  font-size: 1rem;
  border-radius: 8px;
  letter-spacing: -0.02em;
  font-weight: 600;
  height: 2.75rem;
  color: #fff;
  gap: 5px;
}
.button svg {
  fill: none;
}
.button i {
  position: relative;
  overflow: hidden;
}
.button i svg {
  -webkit-transition: 0s;
  transition: 0s;
}
.button i svg:first-child {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
@media screen and (min-width: 680px) {
  .button:hover {
    background: var(--color-button-bg-hover);
    border: 1px solid var(--color-button-stroke-hover);
  }
  .button:hover i svg {
    -webkit-transition: var(--transition);
    transition: var(--transition);
  }
  .button:hover i svg:first-child {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .button:hover i svg:last-child {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
.button--secondary {
  background: none;
  border: 1px solid transparent;
  color: var(--color-main);
}
@media screen and (min-width: 680px) {
  .button--secondary:hover {
    background: var(--color-button-gray-bg);
    border-color: var(--color-button-gray-stroke);
  }
}

.swiper {
  pointer-events: none;
}

.swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}

.swiper .swiper-wrapper .swiper-slide {
  width: auto;
}

.title-animate em {
  display: block;
  font-style: normal;
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
@media (max-width: 680px) {
  .title-animate em {
    display: inline;
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    margin-right: 4px;
  }
}
.title-animate.show-it br {
  display: none;
}
.title-animate.show-it em {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}
.title-animate.show-it em:nth-child(3) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.title-animate.show-it em:nth-child(5) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
@media (max-width: 680px) {
  .title-animate br {
    display: none;
  }
}

@media screen and (min-width: 680px) {
  .fadeIn {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
    -webkit-transition: var(--transition);
    transition: var(--transition);
  }
  .fadeIn:nth-child(2) {
    -webkit-transition-delay: 0.1s;
            transition-delay: 0.1s;
  }
  .fadeIn:nth-child(3) {
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
  }
  .fadeIn:nth-child(4) {
    -webkit-transition-delay: 0.3s;
            transition-delay: 0.3s;
  }
  .fadeIn_active {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.breadcrumbs {
  margin-bottom: 3rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.breadcrumbs__inner {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}
.breadcrumbs__inner a {
  color: var(--color-main);
}
.breadcrumbs__inner a:hover {
  color: var(--color-text);
}
.breadcrumbs__inner span {
  color: var(--color-text);
}
.breadcrumbs__inner > *:not(:first-child):before {
  content: "/";
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  color: var(--color-text);
}

.page__header {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 4.5rem;
  letter-spacing: -0.06em;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.12;
}
@media (max-width: 680px) {
  .page__header {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }
}
.page__content {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
  word-wrap: break-word;
}
.page__content > h1, .page__content h2, .page__content h3, .page__content h4, .page__content h5, .page__content h6 {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}
.page__content > h1:not(:first-child), .page__content h2:not(:first-child), .page__content h3:not(:first-child), .page__content h4:not(:first-child), .page__content h5:not(:first-child), .page__content h6:not(:first-child) {
  margin-top: 3rem;
}
.page__content > h1:hover .page__anchor-link, .page__content h2:hover .page__anchor-link, .page__content h3:hover .page__anchor-link, .page__content h4:hover .page__anchor-link, .page__content h5:hover .page__anchor-link, .page__content h6:hover .page__anchor-link {
  opacity: 1;
}
.page__content p {
  margin-top: 0;
  margin-bottom: 1rem;
}
.page__content p > a {
  color: var(--color-link-content);
  border-bottom: 1px solid;
}
.page__content p > a:hover {
  border-color: transparent;
}
.page__content ol, .page__content ul, .page__content dl {
  margin-top: 0;
  margin-bottom: 1rem;
}
.page__content ol > a, .page__content ul > a, .page__content dl > a {
  color: var(--color-link-content);
}
.page__content blockquote {
  position: relative;
  font-size: 1.25rem;
  line-height: 1.5;
  padding-top: 1.5rem;
  margin: 3rem 0 3rem;
  border-top: 1px var(--color-stroke) solid;
  padding-left: 80px;
}
.page__content blockquote:before {
  content: "";
  position: absolute;
  top: 1.5rem;
  left: 0;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z' fill='%232E2B33'/%3E%3C/svg%3E");
}
.page__anchor-link {
  font-size: inherit;
  position: absolute;
  left: -2rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 2rem;
  height: 2rem;
  text-decoration: none;
  opacity: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.page__anchor-link:before {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='iso-8859-1'%3F%3E%3C!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 512.002 512.002' style='enable-background:new 0 0 512.002 512.002;' xml:space='preserve'%3E%3Cg%3E%3Cpath style='fill:%23C8C4D9;' d='M482.041,29.965c-39.945-39.953-104.713-39.953-144.666,0L228.874,138.466 c-10.402,10.402-17.954,22.519-22.938,35.405c9.216-0.35,18.423,0.077,27.52,1.707c3.524-6.801,7.791-13.329,13.5-19.029 L355.457,48.047c29.909-29.909,78.583-29.909,108.501,0c29.918,29.918,29.918,78.583,0,108.501L355.457,265.05 c-29.909,29.909-78.583,29.909-108.501,0c-10.94-10.94-25.617-15.65-39.945-14.601c4.992,11.861,12.203,23.023,21.862,32.683 c39.945,39.945,104.713,39.953,144.666,0L482.041,174.63C521.985,134.686,521.985,69.909,482.041,29.965z'/%3E%3Cpath style='fill:%23C8C4D9;' d='M156.545,246.959c29.909-29.909,78.583-29.909,108.501,0c10.94,10.94,25.617,15.659,39.945,14.601 c-4.983-11.861-12.203-23.023-21.862-32.683c-39.953-39.945-104.713-39.945-144.666,0L29.962,337.378 c-39.945,39.945-39.945,104.713,0,144.666c39.945,39.945,104.713,39.945,144.666,0l108.501-108.501 c10.402-10.402,17.954-22.519,22.938-35.405c-9.216,0.35-18.423-0.077-27.52-1.707c-3.524,6.81-7.791,13.329-13.5,19.029 L156.545,463.962c-29.909,29.909-78.583,29.909-108.501,0c-29.918-29.909-29.909-78.583,0-108.501L156.545,246.959z'/%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3C/svg%3E%0A");
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat;
}

/* Common styles for current project */
html {
  font-size: 16px;
}

html, body {
  height: 100%;
}

body {
  background: #fff;
  color: var(--color-main);
  font-size: 1.125rem;
  font-family: var(--font-family);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-display: swap;
}
@media (max-width: 1170px) {
  body {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.max-width {
  max-width: 1576px;
  padding: 0 3rem;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1170px) {
  .max-width {
    padding: 0 20px;
  }
}

.content {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  gap: 10rem;
  padding-top: 13.125rem;
}
.content_page {
  padding-top: 10rem;
  padding-bottom: 10rem;
}
@media (max-width: 680px) {
  .content {
    gap: 5rem;
    padding-top: 7rem;
  }
  .content_page {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.section__block {
  padding: 1.25rem 0 0;
  position: relative;
}
.section__block:before {
  top: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  position: absolute;
  content: "";
  background: var(--color-divider);
}
.section__type {
  padding-left: 15px;
  position: relative;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
  margin: 0 0 3rem;
}
.section__type:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #68B462;
}
.section__title {
  letter-spacing: -0.06em;
  font-weight: 600;
  font-size: 3.375rem;
  line-height: 1.12;
  margin: 0 0 1rem;
}
@media (max-width: 680px) {
  .section__title {
    font-size: 2.5rem;
  }
}
.section__desc {
  color: var(--color-text);
}
.section__button {
  margin: 1.5rem 0 0;
}
.section__pic {
  margin: 2rem 0 0;
}

/* Plugins, which is used in current project. */
/* Components, which is used in current project. */
/*! Header
----------------------------
 */
.header {
  position: fixed;
  top: 1.5rem;
  z-index: 99;
  width: 100%;
  left: 0;
  right: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.header_default {
  top: 0;
}
@media (max-width: 680px) {
  .header {
    top: 0;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.05);
    background: #fff;
  }
}
.header_hidden {
  -webkit-transform: translateY(calc(-100% - 3rem));
          transform: translateY(calc(-100% - 3rem));
}
.header__grid {
  height: 4.125rem;
  -webkit-box-align: center;
          align-items: center;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  border: 1px solid var(--color-stroke);
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.05);
  background: #fff;
  border-radius: 16px;
  padding: 0 2.5rem;
}
@media (max-width: 680px) {
  .header__grid {
    height: 3.5rem;
    box-shadow: none;
    border-radius: 0;
    border: 0;
    padding: 0;
  }
}
.header_default .header__grid {
  border: 0;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  height: 4rem;
  padding-top: 1rem;
}
@media (max-width: 680px) {
  .header_default .header__grid {
    height: 3.5rem;
    padding-top: 0;
  }
}
.header__logo {
  cursor: pointer;
  height: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 800;
  font-family: var(--font-family-logo);
  line-height: 0.8;
}
@media (max-width: 680px) {
  .header__content {
    display: block;
    top: 100%;
    left: -20px;
    background: #fff;
    width: calc(100% + 40px);
    z-index: 3;
    opacity: 0;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    position: absolute;
    pointer-events: none;
    padding: 2.5rem 0 3rem;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.05);
    border-top: 1px solid var(--color-stroke);
  }
  .header__content_show {
    opacity: 1;
    pointer-events: auto;
  }
}
.header__menu {
  display: -webkit-box;
  display: flex;
  gap: 4px;
}
@media (max-width: 680px) {
  .header__menu {
    -webkit-box-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    gap: 1rem;
  }
}
.header__links {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0 0.875rem;
  height: 2.25rem;
  letter-spacing: -0.02em;
  border-radius: 8px;
}
@media (max-width: 680px) {
  .header__links {
    height: initial;
  }
}
.header__links:hover {
  background: var(--color-stroke);
}
.header__burger {
  display: none;
  position: relative;
  z-index: 10;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  width: 20px;
}
@media (max-width: 680px) {
  .header__burger {
    display: -webkit-box;
    display: flex;
  }
}
.header__burger i {
  background: var(--color-main);
  width: 24px;
  display: block;
  height: 2px;
  margin: 3px 0;
  -webkit-transition: width 0.1s linear;
  transition: width 0.1s linear;
}
.header__burger i:first-child {
  top: 0;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  position: relative;
  -webkit-transition: top 0.2s linear, -webkit-transform 0.2s linear;
  transition: top 0.2s linear, -webkit-transform 0.2s linear;
  transition: transform 0.2s linear, top 0.2s linear;
  transition: transform 0.2s linear, top 0.2s linear, -webkit-transform 0.2s linear;
}
.header__burger i:nth-child(2) {
  position: relative;
  top: 0;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: top 0.2s linear, -webkit-transform 0.2s linear;
  transition: top 0.2s linear, -webkit-transform 0.2s linear;
  transition: transform 0.2s linear, top 0.2s linear;
  transition: transform 0.2s linear, top 0.2s linear, -webkit-transform 0.2s linear;
}
.header__burger i:nth-child(3) {
  position: relative;
  top: 0;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: top 0.2s linear, -webkit-transform 0.2s linear;
  transition: top 0.2s linear, -webkit-transform 0.2s linear;
  transition: transform 0.2s linear, top 0.2s linear;
  transition: transform 0.2s linear, top 0.2s linear, -webkit-transform 0.2s linear;
}
.header__burger_active i:first-child {
  top: 8px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: top 0.2s linear, -webkit-transform 0.2s linear;
  transition: top 0.2s linear, -webkit-transform 0.2s linear;
  transition: transform 0.2s linear, top 0.2s linear;
  transition: transform 0.2s linear, top 0.2s linear, -webkit-transform 0.2s linear;
}
.header__burger_active i:nth-child(2) {
  opacity: 0;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.header__burger_active i:nth-child(3) {
  top: -8px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: top 0.2s linear, -webkit-transform 0.2s linear;
  transition: top 0.2s linear, -webkit-transform 0.2s linear;
  transition: transform 0.2s linear, top 0.2s linear;
  transition: transform 0.2s linear, top 0.2s linear, -webkit-transform 0.2s linear;
}

.footer {
  padding: 5.5rem 0;
  background: var(--color-section-bg);
}
@media (max-width: 680px) {
  .footer {
    padding: 3rem 0 2rem;
  }
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-row-gap: 3rem;
}
@media (max-width: 680px) {
  .footer__grid {
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 2rem;
  }
}
.footer__about {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  gap: 1rem;
  -webkit-box-pack: justify;
          justify-content: space-between;
}
@media (max-width: 680px) {
  .footer__about {
    display: contents;
  }
}
.footer__sub {
  max-width: 520px;
}
@media (max-width: 680px) {
  .footer__sub {
    margin-bottom: 2.5rem;
  }
}
.footer__sub .just-validate-error-label {
  font-size: 0.875rem;
}
.footer__sub-label {
  margin: 0 0 0.5rem;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.38;
}
.footer__sub-note {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  opacity: 0.7;
  margin: 0 0 1rem;
  max-width: 520px;
}
.footer__sub .subform input, .footer__sub .subform textarea {
  height: 44px;
  padding: 0 1rem;
  color: var(--color-main);
  font-family: var(--font-family);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  box-sizing: border-box;
  border-radius: 8px;
  background: #fff;
  font-size: 0.875rem;
  -webkit-box-flex: 1;
          flex: auto;
  border: 1px solid #f1f1f1;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  outline: none;
  box-shadow: none;
}
.footer__sub .subform input:focus, .footer__sub .subform textarea:focus {
  border-color: #E0E0E0;
}
.footer__sub .subform input::-webkit-input-placeholder, .footer__sub .subform textarea::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.footer__sub .subform input::-moz-placeholder, .footer__sub .subform textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.footer__sub .subform input:-ms-input-placeholder, .footer__sub .subform textarea:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.footer__sub .subform input::-ms-input-placeholder, .footer__sub .subform textarea::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.footer__sub .subform input::placeholder, .footer__sub .subform textarea::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.footer__sub .subform__value {
  display: -webkit-box;
  display: flex;
  gap: 0.5rem;
  margin: 0 0 0.5rem;
  position: relative;
}
.footer__sub .subform__value:has(.just-validate-error-label) {
  margin: 0 0 2rem;
}
.footer__sub .subform__value .just-validate-error-label {
  position: absolute;
  top: 100%;
  left: 0;
}
.footer__sub .subform__value .button {
  -webkit-box-flex: 0;
          flex: none;
}
.footer__sub .checkbox {
  display: none;
}
.footer__sub .checkbox + label {
  display: block;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  padding-left: 1.75rem;
  text-align: left;
  letter-spacing: -0.02em;
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.75rem;
  padding-top: 2px;
  font-weight: 500;
  max-width: 380px;
  cursor: pointer;
  min-height: 1.125rem;
}
.footer__sub .checkbox + label a {
  color: black;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  text-decoration: none;
}
.footer__sub .checkbox + label a:hover {
  color: black;
  border-color: rgba(0, 0, 0, 0.7);
}
.footer__sub .checkbox + label:before {
  content: "";
  cursor: pointer;
  left: 0;
  top: 4px;
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.4);
  position: absolute;
  width: 1rem;
  height: 1rem;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.footer__sub .checkbox + label:after {
  content: "";
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  width: 1.125rem;
  height: 1.125rem;
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUiIGhlaWdodD0iMTEiIHZpZXdCb3g9IjAgMCAxNSAxMSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUuMzAzMzMgNy42NjA4M0wxMi45NjMzIDBMMTQuMTQyNSAxLjE3ODMzTDUuMzAzMzMgMTAuMDE3NUwwIDQuNzE0MTdMMS4xNzgzMyAzLjUzNTgzTDUuMzAzMzMgNy42NjA4M1oiIGZpbGw9IiMxRTFFMUUiLz4KPC9zdmc+Cg==") no-repeat 50% 50%;
  left: 1px;
  top: 4px;
  z-index: 2;
  opacity: 0;
  position: absolute;
  pointer-events: none;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.footer__sub .checkbox + label:hover:before {
  border-color: #000;
}
.footer__sub .checkbox:checked + label:after {
  opacity: 1;
}
.footer__sub .checkbox:checked + label:before {
  border-color: #000;
  background: #000;
}
.footer__logo {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1.375rem;
  font-weight: 800;
  font-family: var(--font-family-logo);
  line-height: 0.8;
}
@media (max-width: 680px) {
  .footer__logo {
    -webkit-box-ordinal-group: 1;
            order: 0;
    margin: 0;
  }
}
.footer__desc {
  max-width: 340px;
  font-size: 1rem;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
@media (max-width: 680px) {
  .footer__desc {
    -webkit-box-ordinal-group: 2;
            order: 1;
  }
}
.footer__copy {
  color: var(--color-text);
  font-size: 0.875rem;
}
@media (max-width: 680px) {
  .footer__copy {
    -webkit-box-ordinal-group: 10;
            order: 9;
  }
}
.footer__nav {
  display: -webkit-box;
  display: flex;
  gap: 6.5rem;
}
@media (max-width: 1444px) {
  .footer__nav {
    gap: 4rem;
  }
}
@media (max-width: 680px) {
  .footer__nav {
    -webkit-box-ordinal-group: 4;
            order: 3;
    gap: 0;
    -webkit-box-pack: justify;
            justify-content: space-between;
    margin: 1.5rem 0 2.5rem;
  }
}
.footer__label {
  margin: 0 0 1.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 1.2;
  color: var(--color-text);
}
.footer__links {
  display: block;
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
@media (max-width: 680px) {
  .footer__links {
    font-size: 0.875rem;
  }
}
.footer__links:hover {
  opacity: 0.6;
}
.footer__links:not(:last-child) {
  margin: 0 0 1.125rem;
}

.about__grid {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  gap: 4rem;
}
@media (max-width: 1170px) {
  .about__grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
            align-items: flex-start;
  }
}
@media (max-width: 680px) {
  .about__grid {
    gap: 2.5rem;
  }
}
.about__about {
  -webkit-box-flex: 1;
          flex: auto;
}
@media (max-width: 1170px) {
  .about__about {
    max-width: 580px;
  }
}
.about__mobile {
  display: none;
}
@media (max-width: 1170px) {
  .about__mobile {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
            align-items: center;
    -webkit-box-pack: center;
            justify-content: center;
  }
}
.about__gallery {
  width: 58%;
  -webkit-box-flex: 0;
          flex: none;
  position: relative;
}
@media (max-width: 1170px) {
  .about__gallery {
    display: none;
  }
}
.about__photo {
  position: absolute;
  z-index: 2;
}
.about__photo_1 {
  left: 15%;
  bottom: 10%;
}
.about__photo_2 {
  left: 30%;
  top: 5%;
}
.about__photo_3 {
  top: 20%;
  right: 15%;
}
.about__photo_4 {
  bottom: 0;
  right: 20%;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1280px) {
  .benefits {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}
@media (max-width: 680px) {
  .benefits {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem;
  }
}
.benefits__icon {
  margin: 0 0 1.5rem;
}
@media (max-width: 680px) {
  .benefits__icon {
    margin: 0 0 1rem;
  }
}
.benefits__title {
  margin: 0 0 0.75rem;
  line-height: 1.12;
  letter-spacing: -0.06em;
  font-weight: 600;
  font-size: 1.75rem;
}
@media (max-width: 680px) {
  .benefits__title {
    font-size: 1.5rem;
    margin: 0 0 0.5rem;
  }
}
.benefits__desc {
  max-width: 350px;
  color: var(--color-text);
}
@media (max-width: 680px) {
  .benefits__desc {
    max-width: 100%;
  }
}

.brands__item {
  border-radius: 16px;
  border: 1px solid var(--color-stroke);
  background: var(--color-section-bg);
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1170px) {
  .brands__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    gap: 2rem;
  }
}
.brands__item:not(:last-child) {
  margin: 0 0 2rem;
}
.brands__about {
  padding-left: 7.625rem;
}
@media (max-width: 1444px) {
  .brands__about {
    padding-left: 3.625rem;
    max-width: 460px;
  }
}
@media (max-width: 1170px) {
  .brands__about {
    padding: 2rem 1.5rem 0;
    max-width: initial;
  }
}
.brands__tag {
  margin: 0 0 10px;
  display: table;
  background: #fff;
  border: 1px solid var(--color-stroke);
  padding: 6px 0.75rem;
  line-height: 1.2;
  height: 1.875rem;
  border-radius: 8px;
  letter-spacing: -0.02em;
  font-weight: 500;
  font-size: 0.9375rem;
}
.brands__title {
  margin: 0 0 1rem;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.06em;
  font-size: 2.5rem;
}
@media (max-width: 680px) {
  .brands__title {
    font-size: 2.25rem;
    margin: 0 0 0.5rem;
  }
}
.brands__desc {
  color: var(--color-text);
}
.brands__buttons {
  margin: 1.5rem 0 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  gap: 10px;
}
@media (max-width: 680px) {
  .brands__buttons {
    gap: 0;
    -webkit-box-pack: justify;
            justify-content: space-between;
  }
  .brands__buttons .button--secondary {
    padding: 0;
  }
}
@media (max-width: 1170px) {
  .brands__pic {
    padding-left: 1.5rem;
  }
}

.careers__grid {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  gap: 3rem;
}
@media (max-width: 1170px) {
  .careers__grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    gap: 2rem;
  }
}
.careers__block {
  -webkit-box-flex: 1;
          flex: auto;
}
.careers__about {
  max-width: 580px;
  -webkit-box-flex: 0;
          flex: none;
  width: 100%;
}
.careers__item {
  border-radius: 16px;
  border: 1px solid var(--color-stroke);
  background: var(--color-section-bg);
  padding-bottom: 1.5rem;
}
.careers__item_active {
  padding-bottom: 2.5rem;
}
@media (max-width: 1170px) {
  .careers__item {
    padding-bottom: 0.7rem;
    border-radius: 8px;
  }
  .careers__item_active {
    padding-bottom: 1.4rem;
  }
}
.careers__item:not(:last-child) {
  margin: 0 0 1rem;
}
.careers__label {
  cursor: pointer;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  line-height: 1.12;
  font-weight: 600;
  display: -webkit-box;
  display: flex;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-box-align: center;
          align-items: center;
  gap: 2rem;
  -webkit-box-pack: justify;
          justify-content: space-between;
  padding: 2.5rem 2.5rem 1rem;
  font-size: 1.75rem;
}
@media (max-width: 1170px) {
  .careers__label {
    padding: 1.4rem 1.5rem 0.7rem;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 680px) {
  .careers__label:hover {
    opacity: 0.6;
  }
}
.careers__label span {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.careers__label svg {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-box-flex: 0;
          flex: none;
}
.careers__item_active .careers__label svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.careers__toggle {
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease-in-out;
  transition: max-height 0.3s ease-in-out;
  max-height: 0;
  padding: 0 2.5rem;
}
@media (max-width: 1170px) {
  .careers__toggle {
    padding: 0 1.5rem;
  }
}
.careers__toggle p {
  margin: 1rem 0 0;
}
.careers__toggle p:first-child {
  margin: 0;
}
.careers__toggle .button {
  margin: 1.5rem 0 0;
}
.careers__item_active .careers__toggle {
  max-height: 1000px;
}
.careers__desc {
  max-width: 600px;
  color: var(--color-text);
  font-size: 1rem;
}

.contact__grid {
  gap: 1.5rem;
  display: -webkit-box;
  display: flex;
  margin: 3rem 0 0;
}
@media (max-width: 1170px) {
  .contact__grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    margin: 1.5rem 0 0;
  }
}
.contact__sidebar {
  width: 478px;
  -webkit-box-flex: 0;
          flex: none;
  padding: 3rem;
  background: var(--color-section-bg);
  border: 1px solid var(--color-stroke);
  border-radius: 16px;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: justify;
          justify-content: space-between;
  gap: 1.5rem;
}
@media (max-width: 1170px) {
  .contact__sidebar {
    width: 100%;
  }
}
@media (max-width: 680px) {
  .contact__sidebar {
    padding: 1.5rem;
  }
}
.contact__logo {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1.25rem;
  font-weight: 800;
  font-family: var(--font-family-logo);
  line-height: 1.3;
}
.contact__field {
  font-size: 1rem;
  color: var(--color-text);
}
.contact__field a {
  color: var(--color-text);
}
.contact__field a:hover {
  color: var(--color-main);
}
.contact__field:not(:last-child) {
  margin: 0 0 0.75rem;
}
.contact__content {
  -webkit-box-flex: 1;
          flex: auto;
  padding: 3rem 3rem 1.5rem;
  background: var(--color-section-bg);
  border: 1px solid var(--color-stroke);
  border-radius: 16px;
}
@media (max-width: 680px) {
  .contact__content {
    padding: 1.5rem 1.5rem 0;
  }
}
.contact__form input,
.contact__form select,
.contact__form textarea {
  border: 1px solid transparent;
}
.contact__form .sh-form-modal {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  gap: 1.5rem;
}
.contact__form .sh-form-modal .form-item {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  gap: 1rem;
}
@media (max-width: 1170px) {
  .contact__form .sh-form-modal .form-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
}
.contact__form .sh-form-modal .form-inner {
  -webkit-box-flex: 1;
          flex: 1;
}
.contact__form .sh-form-modal .form-inner label {
  display: block;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
  line-height: 1.2;
  font-size: 0.75rem;
  color: var(--color-text);
  letter-spacing: 0.08em;
  font-weight: 600;
}
.contact__form .sh-form-modal .form-inner input, .contact__form .sh-form-modal .form-inner textarea {
  height: 3.125rem;
  padding: 0 1.25rem;
  color: var(--color-main);
  font-family: var(--font-family);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  box-sizing: border-box;
  border-radius: 8px;
  background: #fff;
  font-size: 1rem;
  border: 1px solid #f1f1f1;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  outline: none;
  box-shadow: none;
}
.contact__form .sh-form-modal .form-inner input:focus, .contact__form .sh-form-modal .form-inner textarea:focus {
  border-color: #E0E0E0;
}
.contact__form .sh-form-modal .form-inner input::-webkit-input-placeholder, .contact__form .sh-form-modal .form-inner textarea::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.contact__form .sh-form-modal .form-inner input::-moz-placeholder, .contact__form .sh-form-modal .form-inner textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.contact__form .sh-form-modal .form-inner input:-ms-input-placeholder, .contact__form .sh-form-modal .form-inner textarea:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.contact__form .sh-form-modal .form-inner input::-ms-input-placeholder, .contact__form .sh-form-modal .form-inner textarea::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.contact__form .sh-form-modal .form-inner input::placeholder, .contact__form .sh-form-modal .form-inner textarea::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.contact__form .sh-form-modal .form-inner select {
  height: 3.125rem;
  padding: 0 1.25rem;
  color: var(--color-main);
  font-family: var(--font-family);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  box-sizing: border-box;
  border-radius: 8px;
  background: var(--color-section-bg) url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAxOCAxOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEzLjUgNi43NUw5IDExLjI1TDQuNSA2Ljc1IiBzdHJva2U9ImJsYWNrIiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=") no-repeat calc(100% - 20px) 50%;
  cursor: pointer;
  font-size: 1rem;
  border: 1px solid #E0E0E0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  outline: none;
  box-shadow: none;
}
.contact__form .sh-form-modal .form-inner textarea {
  resize: none;
  height: 8rem;
  padding: 1rem 1.25rem;
  display: block;
}
.contact__form .sh-form-modal .form-bottom {
  display: -webkit-box;
  display: flex;
  gap: 1rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  -webkit-box-align: center;
          align-items: center;
}
@media (max-width: 1170px) {
  .contact__form .sh-form-modal .form-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -webkit-box-align: start;
            align-items: flex-start;
  }
}
.contact__form .sh-form-modal .form-checkbox input {
  display: none;
}
.contact__form .sh-form-modal .form-checkbox input + label {
  display: block;
  padding-left: 26px;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-size: 0.875rem;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  cursor: pointer;
}
.contact__form .sh-form-modal .form-checkbox input + label a {
  font-weight: 500;
  border-bottom: 1px solid;
}
.contact__form .sh-form-modal .form-checkbox input + label:before {
  content: "";
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  background: #fff;
  position: absolute;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  z-index: 1;
  cursor: pointer;
}
.contact__form .sh-form-modal .form-checkbox input + label:after {
  content: "";
  left: 0;
  top: 2px;
  pointer-events: none;
  z-index: 2;
  position: absolute;
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iOCIgdmlld0JveD0iMCAwIDEwIDgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xIDQuMjcyNzNMMy41IDdMOSAxIiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=") no-repeat 50% 50%;
  width: 18px;
  height: 18px;
  opacity: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.contact__form .sh-form-modal .form-checkbox input + label:hover {
  color: var(--color-text);
}
.contact__form .sh-form-modal .form-checkbox input + label:hover:before {
  border-color: #c0c0c0;
}
.contact__form .sh-form-modal .form-checkbox input + label:hover a {
  color: var(--color-text);
}
.contact__form .sh-form-modal .form-checkbox input:checked + label:before {
  background: #000;
  border-color: #000;
}
.contact__form .sh-form-modal .form-checkbox input:checked + label:after {
  opacity: 1;
}
.contact__form .sh-form-modal .confirm-text {
  font-size: 0.75rem;
  opacity: 0.5;
}
.contact__form .sh-form-modal .form-message {
  color: green;
}
.contact__form .sh-form-modal .form-message.error {
  color: red;
}
.contact__form .sh-form-modal .just-validate-error-label {
  font-size: 0.75rem;
  margin: 0.5rem 0 0;
}
.contact__form .sh-form-modal .form-file {
  width: 100%;
}
.contact__form .sh-form-modal .form-file .form-file__value {
  border: 2px dashed #E0E0E0;
  border-radius: 8px;
  padding: 1.875rem 1rem;
  text-align: center;
  background: var(--color-section-bg);
  cursor: pointer;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  display: block;
}
.contact__form .sh-form-modal .form-file .form-file__value:hover {
  border-color: #cdcdcd;
}
.contact__form .sh-form-modal .form-file .input-file-text {
  margin: 0 auto 0.5rem;
  display: table;
  letter-spacing: -0.02em;
  line-height: 1.2;
  font-size: 1rem;
  font-weight: 600;
  position: relative;
}
.contact__form .sh-form-modal .form-file .input-file-accept {
  font-size: 0.75rem;
  color: var(--color-text);
  display: block;
}
.contact__form .sh-form-modal .sh-form-loader {
  display: none;
  height: 16px;
  width: 16px;
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  border: 2px solid;
  border-radius: 50%;
  border-right-color: #fff;
  -webkit-animation: rotate 1s linear infinite;
          animation: rotate 1s linear infinite;
}
.contact__form .sh-form-modal .form-submit {
  gap: 10px;
}
.contact__form .sh-form-modal.loading .form-submit {
  pointer-events: none;
  color: rgba(255, 255, 255, 0.5);
}
.contact__form .sh-form-modal.loading .sh-form-loader {
  display: block;
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.contact .sh-from-message {
  margin: 0;
  color: green;
}
.contact .sh-from-message.error {
  color: red;
}
.contact__note {
  color: var(--color-text);
  max-width: 360px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 2.5rem;
}
@media (max-width: 680px) {
  .contact__note {
    margin: 0 0 2rem;
  }
}

.form-checkboxes {
  display: -webkit-box;
  display: flex;
  gap: 0.5rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  max-width: 540px;
}

.hero {
  text-align: center;
}
.hero__logos {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  opacity: 0.6;
  gap: 2rem;
  margin: 0 0 1.5rem;
}
@media (max-width: 680px) {
  .hero__logos {
    gap: 1.5rem;
  }
  .hero__logos svg {
    height: 24px;
    width: auto;
  }
}
.hero__title {
  line-height: 1.12;
  letter-spacing: -0.06em;
  font-weight: 600;
  font-size: 5.625rem;
}
@media (max-width: 680px) {
  .hero__title {
    font-size: 3rem;
  }
}
.hero__desc {
  margin: 1.5rem auto 0;
  max-width: 475px;
  color: var(--color-text);
}
@media (max-width: 680px) {
  .hero__desc {
    margin-top: 1rem;
  }
}
.hero__buttons {
  margin: 1.5rem 0 0;
  gap: 10px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
}
@media (max-width: 680px) {
  .hero__buttons {
    margin-top: 1rem;
  }
}

.map {
  height: 580px;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
@media (max-width: 680px) {
  .map {
    height: 380px;
  }
}

.office__grid {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  gap: 4rem;
}
@media (max-width: 1170px) {
  .office__grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
            align-items: flex-start;
  }
}
@media (max-width: 680px) {
  .office__grid {
    gap: 2.5rem;
  }
}
.office__about {
  -webkit-box-flex: 1;
          flex: auto;
}
@media (max-width: 1170px) {
  .office__about {
    max-width: 580px;
  }
}
.office__gallery {
  width: 58%;
  -webkit-box-flex: 0;
          flex: none;
  position: relative;
  display: -webkit-box;
  display: flex;
  gap: 1.5rem;
  height: 740px;
  overflow: hidden;
}
@media (max-width: 1170px) {
  .office__gallery {
    width: 100%;
    height: 320px;
    gap: 10px;
  }
  .office__gallery img {
    height: initial;
  }
}
.office__gallery:before, .office__gallery:after {
  content: "";
  height: 20%;
  width: 100%;
  left: 0;
  position: absolute;
  z-index: 2;
}
@media (max-width: 680px) {
  .office__gallery:before, .office__gallery:after {
    height: 14%;
  }
}
.office__gallery:before {
  top: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(white), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to bottom, white, rgba(255, 255, 255, 0));
}
.office__gallery:after {
  bottom: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(white), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to top, white, rgba(255, 255, 255, 0));
}
.office__scroller {
  display: -webkit-box;
  display: flex;
  -webkit-box-flex: 1;
          flex: 1;
  gap: 1.5rem;
  will-change: transform;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}
@media (max-width: 1170px) {
  .office__scroller {
    gap: 0.5rem;
  }
}
.office__scroller:nth-child(2) {
  -webkit-box-pack: end;
          justify-content: flex-end;
}
.office__list {
  flex-shrink: 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  justify-content: space-around;
  min-width: 100%;
  gap: 1.5rem;
}
@media (max-width: 1170px) {
  .office__list {
    gap: 0.5rem;
  }
}
.office__list_top {
  -webkit-animation: floatTemplateTop 250s linear infinite;
          animation: floatTemplateTop 250s linear infinite;
}
.office__list_btm {
  -webkit-animation: floatTemplateBottom 250s linear infinite;
          animation: floatTemplateBottom 250s linear infinite;
}
@media (max-width: 1170px) {
  .office__list_top {
    -webkit-animation: floatTemplateTop 150s linear infinite;
            animation: floatTemplateTop 150s linear infinite;
  }
  .office__list_btm {
    -webkit-animation: floatTemplateBottom 150s linear infinite;
            animation: floatTemplateBottom 150s linear infinite;
  }
}
@-webkit-keyframes floatTemplateTop {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(calc(-100% - 1.5rem));
            transform: translateY(calc(-100% - 1.5rem));
  }
}
@keyframes floatTemplateTop {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(calc(-100% - 1.5rem));
            transform: translateY(calc(-100% - 1.5rem));
  }
}
@-webkit-keyframes floatTemplateBottom {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(calc(100% + 1.5rem));
            transform: translateY(calc(100% + 1.5rem));
  }
}
@keyframes floatTemplateBottom {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(calc(100% + 1.5rem));
            transform: translateY(calc(100% + 1.5rem));
  }
}

.services__grid {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  gap: 4rem;
}
@media (max-width: 1170px) {
  .services__grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
            align-items: flex-start;
  }
}
@media (max-width: 680px) {
  .services__grid {
    gap: 2.5rem;
  }
}
.services__about {
  -webkit-box-flex: 1;
          flex: auto;
}
@media (max-width: 1170px) {
  .services__about {
    max-width: 580px;
  }
}
.services__gallery {
  width: 58%;
  -webkit-box-flex: 0;
          flex: none;
  position: relative;
}
@media (max-width: 1170px) {
  .services__gallery {
    width: 100%;
  }
  .services__gallery img {
    height: 320px;
  }
}
@media (max-width: 680px) {
  .services__gallery img {
    height: 221px;
  }
}
.services__gallery:before, .services__gallery:after {
  content: "";
  width: 20%;
  height: 100%;
  top: 0;
  position: absolute;
  z-index: 2;
}
@media (max-width: 680px) {
  .services__gallery:before, .services__gallery:after {
    width: 14%;
  }
}
.services__gallery:before {
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(white), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to right, white, rgba(255, 255, 255, 0));
}
.services__gallery:after {
  right: 0;
  background: -webkit-gradient(linear, right top, left top, from(white), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to left, white, rgba(255, 255, 255, 0));
}
.services__scroller {
  display: -webkit-box;
  display: flex;
  gap: 1.5rem;
  will-change: transform;
  overflow: hidden;
  -webkit-box-pack: start;
          justify-content: flex-start;
}
.services__list {
  flex-shrink: 0;
  display: -webkit-box;
  display: flex;
  justify-content: space-around;
  min-width: 100%;
  gap: 1.5rem;
  -webkit-animation: floatTemplate 150s linear infinite;
          animation: floatTemplate 150s linear infinite;
}
@media (max-width: 1170px) {
  .services__list {
    -webkit-animation: floatTemplate 10s linear infinite;
            animation: floatTemplate 10s linear infinite;
    gap: 0.5rem;
  }
}
@-webkit-keyframes floatTemplate {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(calc(-100% - 1.5rem));
            transform: translateX(calc(-100% - 1.5rem));
  }
}
@keyframes floatTemplate {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(calc(-100% - 1.5rem));
            transform: translateX(calc(-100% - 1.5rem));
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  display: none;
  color: #000000;
  text-align: left;
  background: rgba(0, 0, 0, 0.4);
}
.modal::-webkit-scrollbar {
  display: none;
}
.modal__inner {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  padding: 1rem;
  min-height: 100%;
  position: relative;
  z-index: 2;
}
.modal__close {
  position: absolute;
  top: 1.75rem;
  right: 1.75rem;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
@media (max-width: 1170px) {
  .modal__close {
    top: 1rem;
    right: 1rem;
  }
}
.modal__close:hover {
  opacity: 0.6;
}
.modal__block {
  background: #fff;
  padding: 3rem 3rem 1.5rem;
  max-width: 700px;
  margin: 0 auto;
  border-radius: 16px;
  width: 100%;
  position: relative;
}
@media (max-width: 1170px) {
  .modal__block {
    padding: 2rem 2rem 1rem;
  }
}
.modal__title {
  margin: 0 0 0.5rem;
  font-size: 1.75rem;
  line-height: 1.12;
  letter-spacing: -0.06em;
  font-weight: 600;
}
.modal__text {
  max-width: 410px;
  margin: 0 0 1.5rem;
  color: var(--color-text);
  font-size: 1rem;
}
.modal__form input,
.modal__form select,
.modal__form textarea {
  border: 1px solid transparent;
}
.modal__form .sh-form {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  gap: 1.5rem;
}
.modal__form .sh-form .form-item {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  gap: 1.5rem;
}
@media (max-width: 1170px) {
  .modal__form .sh-form .form-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
}
.modal__form .sh-form .form-inner {
  -webkit-box-flex: 1;
          flex: 1;
}
.modal__form .sh-form .form-inner label {
  display: block;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
  line-height: 1.2;
  font-size: 0.75rem;
  color: var(--color-text);
  letter-spacing: 0.08em;
  font-weight: 600;
}
.modal__form .sh-form .form-inner input, .modal__form .sh-form .form-inner textarea {
  height: 3.125rem;
  padding: 0 1.25rem;
  color: var(--color-main);
  font-family: var(--font-family);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  box-sizing: border-box;
  border-radius: 8px;
  background: var(--color-section-bg);
  font-size: 1rem;
  border: 1px solid #E0E0E0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  outline: none;
  box-shadow: none;
}
.modal__form .sh-form .form-inner input:focus, .modal__form .sh-form .form-inner textarea:focus {
  border-color: #cdcdcd;
}
.modal__form .sh-form .form-inner input::-webkit-input-placeholder, .modal__form .sh-form .form-inner textarea::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.modal__form .sh-form .form-inner input::-moz-placeholder, .modal__form .sh-form .form-inner textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.modal__form .sh-form .form-inner input:-ms-input-placeholder, .modal__form .sh-form .form-inner textarea:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.modal__form .sh-form .form-inner input::-ms-input-placeholder, .modal__form .sh-form .form-inner textarea::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.modal__form .sh-form .form-inner input::placeholder, .modal__form .sh-form .form-inner textarea::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.modal__form .sh-form .form-inner select {
  height: 3.125rem;
  padding: 0 1.25rem;
  color: var(--color-main);
  font-family: var(--font-family);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  box-sizing: border-box;
  border-radius: 8px;
  background: var(--color-section-bg) url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAxOCAxOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEzLjUgNi43NUw5IDExLjI1TDQuNSA2Ljc1IiBzdHJva2U9ImJsYWNrIiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=") no-repeat calc(100% - 20px) 50%;
  cursor: pointer;
  font-size: 1rem;
  border: 1px solid #E0E0E0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  outline: none;
  box-shadow: none;
}
.modal__form .sh-form .form-inner textarea {
  resize: none;
  height: 5rem;
  padding: 1rem 1.25rem;
  display: block;
}
.modal__form .sh-form .form-bottom {
  display: -webkit-box;
  display: flex;
  gap: 1rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  -webkit-box-align: center;
          align-items: center;
}
@media (max-width: 1170px) {
  .modal__form .sh-form .form-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -webkit-box-align: start;
            align-items: flex-start;
  }
}
.modal__form .sh-form .form-checkbox input {
  display: none;
}
.modal__form .sh-form .form-checkbox input + label {
  display: block;
  padding-left: 26px;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-size: 0.875rem;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.modal__form .sh-form .form-checkbox input + label a {
  font-weight: 500;
  border-bottom: 1px solid;
}
.modal__form .sh-form .form-checkbox input + label:before {
  content: "";
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  background: #fff;
  position: absolute;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  z-index: 1;
  cursor: pointer;
}
.modal__form .sh-form .form-checkbox input + label:after {
  content: "";
  left: 0;
  top: 2px;
  pointer-events: none;
  z-index: 2;
  position: absolute;
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iOCIgdmlld0JveD0iMCAwIDEwIDgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xIDQuMjcyNzNMMy41IDdMOSAxIiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=") no-repeat 50% 50%;
  width: 18px;
  height: 18px;
  opacity: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.modal__form .sh-form .form-checkbox input + label:hover {
  color: var(--color-text);
}
.modal__form .sh-form .form-checkbox input + label:hover:before {
  border-color: #c0c0c0;
}
.modal__form .sh-form .form-checkbox input + label:hover a {
  color: var(--color-text);
}
.modal__form .sh-form .form-checkbox input:checked + label:before {
  background: #000;
  border-color: #000;
}
.modal__form .sh-form .form-checkbox input:checked + label:after {
  opacity: 1;
}
.modal__form .sh-form .confirm-text {
  font-size: 0.75rem;
  opacity: 0.5;
}
.modal__form .sh-form .form-message {
  color: green;
}
.modal__form .sh-form .form-message.error {
  color: red;
}
.modal__form .sh-form .just-validate-error-label {
  font-size: 0.75rem;
  margin: 0.5rem 0 0;
}
.modal__form .sh-form .form-file {
  width: 100%;
}
.modal__form .sh-form .form-file .form-file__value {
  border: 2px dashed #E0E0E0;
  border-radius: 8px;
  padding: 1.875rem 1rem;
  text-align: center;
  background: var(--color-section-bg);
  cursor: pointer;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  display: block;
}
.modal__form .sh-form .form-file .form-file__value:hover {
  border-color: #cdcdcd;
}
.modal__form .sh-form .form-file .input-file-text {
  margin: 0 auto 0.5rem;
  display: table;
  letter-spacing: -0.02em;
  line-height: 1.2;
  font-size: 1rem;
  font-weight: 600;
  position: relative;
}
.modal__form .sh-form .form-file .input-file-accept {
  font-size: 0.75rem;
  color: var(--color-text);
  display: block;
}
.modal__form .sh-form .sh-form-loader {
  display: none;
  height: 16px;
  width: 16px;
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  border: 2px solid;
  border-radius: 50%;
  border-right-color: #fff;
  -webkit-animation: rotate 1s linear infinite;
          animation: rotate 1s linear infinite;
}
.modal__form .sh-form .form-submit {
  gap: 10px;
}
.modal__form .sh-form.loading .form-submit {
  pointer-events: none;
  color: rgba(255, 255, 255, 0.5);
}
.modal__form .sh-form.loading .sh-form-loader {
  display: block;
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.modal .sh-from-message {
  margin: 0;
  color: green;
}
.modal .sh-from-message.error {
  color: red;
}