@charset "UTF-8";
/* FONT SourceSansPro */
/*images*/
/*=======================START-MEDIA=====================*/
/*=======================END-MEDIA=====================*/
/* media breakpoint mixin */
/* Single property transition mixin */
/* how to use fonts mixin
  @include font("Lato", "LatoBold", "AcuminPro-Bold", "700", "normal")
*/
/*--------- font-face ---------*/
@font-face {
  font-family: 'Inter-Regular';
  src: url("../fonts/Inter/Inter-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter-Medium';
  src: url("../fonts/Inter/Inter-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter-SemiBold';
  src: url("../fonts/Inter/Inter-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter-Bold';
  src: url("../fonts/Inter/Inter-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter-Black';
  src: url("../fonts/Inter/Inter-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  margin: 0;
  background-color: #fff;
  text-rendering: optimizeLegibility;
  -webkit-text-decoration-skip: objects;
          text-decoration-skip: objects;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  min-width: 320px;
  overflow-x: hidden;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html, body {
  min-height: 100%;
}

html, body {
  height: 100%;
}

audio,
video {
  display: block;
}

section {
  max-width: 100%;
}

a {
  text-decoration: none;
}

a:focus {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a img {
  border: none;
}

ul, ol {
  margin: 0;
  padding: 0;
}

ul, li {
  list-style-type: none;
}

img {
  max-width: 100%;
  display: block;
  border-style: none;
}

input,
textarea,
select {
  vertical-align: middle;
}

form, fieldset {
  margin: 0;
  padding: 0;
  border-style: none;
  width: 100%;
}

input[type="search"],
input[type="text"],
input[type="file"],
input[type="password"],
input[type="submit"],
input[type="email"],
input[type="tel"],
textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  resize: none;
  outline: none;
}

input[type="email"] {
  box-shadow: none;
  -webkit-box-shadow: none;
}

input[type="image"] {
  padding: 0;
  border: none;
}

input[type="submit"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

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

input[type="submit"]:focus,
input[type="button"]:focus {
  outline: none;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

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

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button,
input[type=email]::-webkit-inner-spin-button,
input[type=email]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

button:focus {
  outline: none;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

button {
  cursor: pointer;
  outline: none;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

p, span, label, h1, h2, h3, h4, h5, h6, b, strong, i, em {
  max-width: 100%;
  word-wrap: break-word;
  white-space: normal;
  margin: 0;
}

div {
  word-wrap: break-word;
  white-space: normal;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

iframe {
  border: none;
}

input::-ms-clear {
  display: none;
}

.text-no-wrap {
  white-space: nowrap;
}

.btn--full-reset {
  padding: 0;
  border: 0;
  background-color: transparent;
}

.text-clip {
  white-space: nowrap;
  /* Отменяем перенос текста */
  overflow: hidden;
  /* Обрезаем содержимое */
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.grid {
  display: grid;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.bg--properties {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.flex-wrap {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.txt-uppercase {
  text-transform: uppercase;
}

.hidden {
  display: none !important;
}

.disable {
  pointer-events: none !important;
}

.hand {
  cursor: pointer !important;
}

.icon {
  display: inline-block;
  color: currentColor;
}

body {
  font-family: 'Inter-Regular', sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #000;
}

.container {
  width: 100%;
  max-width: 1440px;
  padding-left: 100px;
  padding-right: 100px;
  margin: 0 auto;
}

@media only screen and (max-width: 1279px) {
  .container {
    padding-left: 80px;
    padding-right: 80px;
  }
}

@media only screen and (max-width: 991px) {
  .container {
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media only screen and (max-width: 767px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media only screen and (max-width: 480px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.content img {
  display: block;
  margin: 0 auto 46px;
}

.content h1 {
  margin-bottom: 20px;
}

.content h2 {
  margin-bottom: 16px;
}

.content h4, .content h3 {
  margin-bottom: 17px;
}

.content h6, .content h5 {
  margin-bottom: 14px;
}

.content ol,
.content ul {
  margin-bottom: 32px;
}

.content li {
  margin-bottom: 16px;
  color: #121314;
  font-size: 14px;
  line-height: 20px;
}

.content ul li {
  position: relative;
  padding-left: 18px;
}

.content ul li:before {
  content: '';
  position: absolute;
  top: 6px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #121314;
}

.content a {
  color: #121314;
}

.content ol {
  counter-reset: myCounter;
}

.content ol li {
  position: relative;
  padding-left: 20px;
}

.content ol li:before {
  counter-increment: myCounter;
  content: counter(myCounter) ". ";
  position: absolute;
  top: 0;
  left: 0;
}

blockquote {
  border-left: 8px solid #121314;
  background-color: #F3F4FF;
  padding: 16px 24px 16px 22px;
  margin: 0 0 24px;
}

*:focus {
  outline: none !important;
}

h1, h2, h3, h4, h4, h6, .h1-title, .h2-title, .h3-title, .h4-title, .h5-title, .h6-title {
  display: block;
  font-family: 'Inter-Bold', sans-serif;
  color: #121314;
}

h1, .h1-title {
  font-size: 48px;
  font-size: calc(40px + (48 - 40) * ((100vw - 480px) / (1920 - 480)));
  line-height: 44px;
}

@media (max-width: 480px) {
  h1, .h1-title {
    font-size: 40px;
  }
}

@media (min-width: 1920px) {
  h1, .h1-title {
    font-size: 48px;
  }
}

@media only screen and (min-width: 1199px) {
  h1, .h1-title {
    line-height: 52px;
  }
}

h2, .h2-title {
  font-size: 32px;
  font-size: calc(30px + (32 - 30) * ((100vw - 480px) / (1920 - 480)));
  line-height: 34px;
}

@media (max-width: 480px) {
  h2, .h2-title {
    font-size: 30px;
  }
}

@media (min-width: 1920px) {
  h2, .h2-title {
    font-size: 32px;
  }
}

@media only screen and (min-width: 1199px) {
  h2, .h2-title {
    line-height: 44px;
  }
}

h3, .h3-title {
  font-size: 32px;
  font-size: calc(24px + (32 - 24) * ((100vw - 480px) / (1920 - 480)));
  line-height: 1;
}

@media (max-width: 480px) {
  h3, .h3-title {
    font-size: 24px;
  }
}

@media (min-width: 1920px) {
  h3, .h3-title {
    font-size: 32px;
  }
}

@media only screen and (min-width: 1199px) {
  h3, .h3-title {
    line-height: 1.4;
  }
}

h4, .h4-title {
  font-size: 24px;
  font-size: calc(20px + (24 - 20) * ((100vw - 480px) / (1920 - 480)));
  line-height: 26px;
}

@media (max-width: 480px) {
  h4, .h4-title {
    font-size: 20px;
  }
}

@media (min-width: 1920px) {
  h4, .h4-title {
    font-size: 24px;
  }
}

@media only screen and (min-width: 1199px) {
  h4, .h4-title {
    line-height: 28px;
  }
}

h5, .h5-title {
  font-size: 20px;
  font-size: calc(16px + (20 - 16) * ((100vw - 480px) / (1920 - 480)));
  line-height: 22px;
}

@media (max-width: 480px) {
  h5, .h5-title {
    font-size: 16px;
  }
}

@media (min-width: 1920px) {
  h5, .h5-title {
    font-size: 20px;
  }
}

@media only screen and (min-width: 1199px) {
  h5, .h5-title {
    line-height: 24px;
  }
}

h6, .h6-title {
  font-size: 16px;
  font-size: calc(14px + (16 - 14) * ((100vw - 480px) / (1920 - 480)));
  line-height: 20px;
}

@media (max-width: 480px) {
  h6, .h6-title {
    font-size: 14px;
  }
}

@media (min-width: 1920px) {
  h6, .h6-title {
    font-size: 16px;
  }
}

.subtitle--large {
  font-size: 16px;
  line-height: 1.3;
}

.subtitle--medium {
  font-size: 14px;
  line-height: 16px;
}

.subtitle--small {
  font-size: 13px;
  line-height: 16px;
}

.subtitle--large,
.subtitle--small,
.subtitle--medium {
  display: block;
  font-family: 'Inter-Medium', sans-serif;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
}

.main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

.noscript {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  margin: 0 auto;
  padding: 10px;
  font-size: 14px;
  color: #8e1f1f;
  background-color: #efafaf;
  text-align: center;
  z-index: 77777;
}

.noscript a {
  margin-left: 3px;
  margin-right: 3px;
  color: #630303;
  text-decoration: underline;
}

@media (any-hover: hover) {
  .noscript a:hover {
    text-decoration: none;
  }
}

.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  color: currentColor;
  line-height: 1em;
}

@font-face {
  font-family: "Icons";
  src: url("../fonts/Icons.eot");
  src: url("../fonts/Icons.eot?#iefix") format("eot"), url("../fonts/Icons.woff") format("woff"), url("../fonts/Icons.ttf") format("truetype"), url("../fonts/Icons.svg#Icons") format("svg");
}

.icon-arrow:before,
.icon-audio:before,
.icon-bookmark:before,
.icon-charging-station:before,
.icon-email:before,
.icon-facebook:before,
.icon-google:before,
.icon-heart:before,
.icon-instagram:before,
.icon-internet-equipment:before,
.icon-notebook:before,
.icon-quadcopter:before,
.icon-robot-hoover:before,
.icon-tablet:before,
.icon-telegram:before,
.icon-twitter:before,
.icon-wristwatches:before {
  font-family: "Icons";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  text-decoration: none;
  text-transform: none;
}

.icon-arrow:before {
  content: '\E001';
}


.icon-audio:before {
  content: '\E002';
}


.icon-bookmark:before {
  content: '\E003';
}


.icon-charging-station:before {
  content: '\E004';
}


.icon-email:before {
  content: '\E005';
}


.icon-facebook:before {
  content: '\E006';
}


.icon-google:before {
  content: '\E007';
}


.icon-heart:before {
  content: '\E008';
}


.icon-instagram:before {
  content: '\E009';
}


.icon-internet-equipment:before {
  content: '\E00A';
}


.icon-notebook:before {
  content: '\E00B';
}


.icon-quadcopter:before {
  content: '\E00C';
}


.icon-robot-hoover:before {
  content: '\E00D';
}


.icon-tablet:before {
  content: '\E00E';
}


.icon-telegram:before {
  content: '\E00F';
}


.icon-twitter:before {
  content: '\E010';
}


.icon-wristwatches:before {
  content: '\E011';
}

.header {
  position: absolute;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
  top: 40px;
}

@media only screen and (max-width: 601px) {
  .header {
    top: 20px;
  }
}

.header a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.header__logo:hover {
  opacity: 0.6;
}

@media only screen and (max-width: 1024px) {
  .header__logo:hover {
    opacity: 1;
  }
}

.header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  flex-wrap: wrap;
  margin-right: 100px;
}

@media only screen and (max-width: 768px) {
  .header__left {
    margin-right: 19px;
  }
}

@media only screen and (max-width: 601px) {
  .header__logo {
    width: 118px;
  }
}

.navigation-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media only screen and (max-width: 1199px) {
  .navigation-menu {
    -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;
    height: 100%;
  }
}

.navigation-menu__item {
  margin-right: 28px;
}

.navigation-menu__item:last-child {
  margin-right: 0;
}

@media only screen and (max-width: 1199px) {
  .navigation-menu__item {
    margin-right: 30px;
  }
}

@media only screen and (max-width: 1199px) {
  .navigation-menu__item {
    margin-right: 0;
    padding-bottom: 28px;
  }
}

.navigation-menu__link {
  font-family: 'Inter-SemiBold', sans-serif;
  font-size: 15px;
  line-height: 100%;
  color: #fff;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.navigation-menu__link:hover {
  color: #F12D2F;
}

@media only screen and (max-width: 1024px) {
  .navigation-menu__link:hover {
    color: #fff;
  }
}

.contact__btn {
  padding: 20px 24px;
  font-family: 'Inter-SemiBold', sans-serif;
  background: #fff;
  color: #232425;
  border-radius: 2px;
  font-size: 15px;
  line-height: 100%;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.contact__btn:hover {
  background: #F12D2F;
}

@media only screen and (max-width: 1024px) {
  .contact__btn:hover {
    background: #fff;
  }
}

@media only screen and (max-width: 601px) {
  .contact__btn {
    padding: 11px;
    font-size: 13px;
  }
}

.header__middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-flex: 5;
      -ms-flex: 5;
          flex: 5;
}

@media only screen and (max-width: 601px) {
  .header__middle {
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
  }
}

.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
}

@media only screen and (max-width: 1199px) {
  .header__right {
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
  }
}

.languages {
  margin-right: 28px;
}

.languages span {
  font-size: 15px;
  font-family: 'Inter-SemiBold', sans-serif;
  line-height: 100%;
  color: #fff;
}

.has-dropdown {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 1199px) {
  .has-dropdown {
    display: none;
  }
}

.has-dropdown .icon {
  color: #fff;
  font-size: 24px;
  position: relative;
}

.dropdown__h {
  width: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 35px 0 24px;
  position: absolute;
  top: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  left: -50px;
  text-align: center;
}

.languages .dropdown__h {
  padding: 2px 0;
  left: -13px;
}

.has-dropdown:hover .dropdown__h {
  opacity: 1;
  visibility: visible;
}

.dropdown__h li a,
.dropdown__h li span {
  font-size: 15px;
  font-family: 'Inter-SemiBold', sans-serif;
  line-height: 100%;
  color: #fff;
  padding: 5px;
  display: block;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.dropdown__h li a:hover,
.dropdown__h li span:hover {
  color: #F12D2F;
}

@media only screen and (max-width: 1024px) {
  .dropdown__h li a:hover,
  .dropdown__h li span:hover {
    color: #fff;
  }
}

.header__mobile-right {
  display: none;
}

@media only screen and (max-width: 1199px) {
  .header__mobile-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: 19px;
  }
}

@media only screen and (max-width: 1199px) {
  .btn-open-menu {
    position: relative;
    width: 24px;
    height: 18px;
    padding: 0;
    margin: 0;
    background: transparent;
  }
  .btn-open-menu span, .btn-open-menu:after, .btn-open-menu:before {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
  }
  .btn-open-menu:after, .btn-open-menu:before {
    content: "";
  }
  .btn-open-menu:after {
    top: 0;
    width: 80%;
  }
  .btn-open-menu:before {
    bottom: 0;
  }
  .btn-open-menu span {
    top: 50%;
    width: 60%;
  }
}

@media only screen and (max-width: 1199px) {
  .navigation-menu-wrap {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    padding: 12px 16px 16px;
    background-color: #232425;
    overflow-y: auto;
    z-index: 1000;
    -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition: -webkit-transform 0.2s linear;
    transition: -webkit-transform 0.2s linear;
    -o-transition: transform 0.2s linear;
    transition: transform 0.2s linear;
    transition: transform 0.2s linear, -webkit-transform 0.2s linear;
  }
}

.navigation-menu-wrap.active {
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
}

.header__menu {
  display: none;
  width: 100%;
  height: 100%;
  background: #232425;
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  top: 30%;
  left: 50%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 28px;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media only screen and (max-width: 480px) {
  .menu__list {
    left: 20px;
    top: 60px;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.menu__item {
  font-family: 'Inter-SemiBold', sans-serif;
  font-size: 28px;
  line-height: 100%;
  color: #fff;
  position: relative;
}

@media only screen and (max-width: 601px) {
  .menu__item {
    font-size: 24px;
  }
}

@media only screen and (max-width: 480px) {
  .menu__item {
    font-size: 18px;
  }
}

.menu-languages {
  position: fixed;
  bottom: 40px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media only screen and (max-width: 480px) {
  .menu-languages {
    left: 20px;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}

.menu-languages__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.menu-languages__item {
  margin-right: 28px;
}

.menu-languages__item:last-child {
  margin-right: 0;
}

.menu-languages__link {
  font-family: 'Inter-SemiBold', sans-serif;
  font-size: 28px;
  line-height: 100%;
  color: #fff;
}

@media only screen and (max-width: 601px) {
  .menu-languages__link {
    font-size: 24px;
  }
}

@media only screen and (max-width: 480px) {
  .menu-languages__link {
    font-size: 18px;
  }
}

.menu-languages__link--active {
  color: #F12D2F;
}

.fancybox-button svg {
  color: #fff;
}

.fancybox-button svg:hover {
  color: #F12D2F;
}

@media only screen and (max-width: 1024px)  {
  .fancybox-button svg:hover {
    color: #fff;
  }
}

.fancybox-close-small {
  opacity: 1;
}

.fancybox-slide--html {
  padding: 0;
}

.fancybox-slide--html .fancybox-close-small {
  padding: 5px;
  right: 100px;
  top: 40px;
}

@media only screen and (max-width: 768px) {
  .fancybox-slide--html .fancybox-close-small {
    right: 40px;
  }
}

@media only screen and (max-width: 601px) {
  .fancybox-slide--html .fancybox-close-small {
    right: 10px;
    top: 10px;
  }
}

@media only screen and (max-width: 480px) {
  .fancybox-slide--html .fancybox-close-small {
    padding: 10px;
  }
}

.reset__mode {
  padding: 0;
}

.feedback__form {
  height: 100%;
  position: absolute;
  right: 0;
  padding: 70px 50px 50px;
  display: none;
  max-width: 500px;
}

@media only screen and (max-width: 480px) {
  .feedback__form {
    padding: 60px 20px 20px 20px;
  }
}

.feedback__form .button input {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.feedback__form .button input:hover {
  background: #232425;
}

@media only screen and (max-width: 1024px) {
  .feedback__form .button input:hover {
    background: #F12D2F;
  }
}

.form__title {
  font-size: 60px;
  font-family: 'Inter-Bold', sans-serif;
  line-height: 60px;
  margin-bottom: 50px;
  max-width: 360px;
  width: 100%;
  color: #232425;
}

@media only screen and (max-width: 480px) {
  .form__title {
    font-size: 28px;
    line-height: 28px;
    max-width: 100%;
    margin-bottom: 24px;
  }
}

.feedback__form .button input {
  border-radius: 2px;
  background: #F12D2F;
  width: 100%;
  padding: 20px;
  border-width: 0;
  color: #fff;
  text-align: center;
  font-family: 'Inter-SemiBold', sans-serif;
  font-size: 15px;
  line-height: 100%;
}

.input__box {
  margin-bottom: 20px;
  border-bottom: 1px solid #232425;
  position: relative;
}

.fancybox-content {
  overflow: unset;
}

.fancybox-slide--html .feedback__form .fancybox-close-small {
  left: -43px;
  top: 30px;
}

@media only screen and (max-width: 500px) {
  .fancybox-slide--html .feedback__form .fancybox-close-small {
    left: auto;
    top: 20px;
  }
}

@media only screen and (max-width: 500px) {
  .feedback__form .fancybox-button svg {
    color: #232425;
  }
}

.feedback__wrap {
  position: relative;
}

.control__label {
  position: absolute;
  left: 0;
  top: 16px;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  color: #232425;
  font-size: 15px;
  line-height: 100%;
  font-family: 'Inter-SemiBold', sans-serif;
}

.text__input {
  width: 100%;
  height: 100%;
  border-width: 0;
  padding: 14px 0 10px;
  font-size: 15px;
  font-family: 'Inter-SemiBold', sans-serif;
  line-height: 100%;
}

.text__input::-webkit-input-placeholder {
  opacity: 0;
  font-size: 15px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-family: 'Inter-SemiBold', sans-serif;
  line-height: 100%;
  color: #232425;
}

.text__input::-moz-placeholder {
  opacity: 0;
  font-size: 15px;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  font-family: 'Inter-SemiBold', sans-serif;
  line-height: 100%;
  color: #232425;
}

.text__input:-ms-input-placeholder {
  opacity: 0;
  font-size: 15px;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
  font-family: 'Inter-SemiBold', sans-serif;
  line-height: 100%;
  color: #232425;
}

.text__input::-ms-input-placeholder {
  opacity: 0;
  font-size: 15px;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
  font-family: 'Inter-SemiBold', sans-serif;
  line-height: 100%;
  color: #232425;
}

.text__input::placeholder {
  opacity: 0;
  font-size: 15px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  font-family: 'Inter-SemiBold', sans-serif;
  line-height: 100%;
  color: #232425;
}

.text__input:focus::-webkit-input-placeholder {
  opacity: 1;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.text__input:focus::-moz-placeholder {
  opacity: 1;
  animation-delay: 0.2s;
}

.text__input:focus:-ms-input-placeholder {
  opacity: 1;
  animation-delay: 0.2s;
}

.text__input:focus::-ms-input-placeholder {
  opacity: 1;
  animation-delay: 0.2s;
}

.text__input:focus::placeholder {
  opacity: 1;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.text__input:focus + .control__label,
.filled {
  top: -10px;
  color: #B3B6BA;
  font-size: 13px;
  font-family: 'Inter-Regular', sans-serif;
}

.footer {
  padding-top: 100px;
  padding-bottom: 100px;
  width: 100%;
  background: #F12D2F;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

@media only screen and (max-width: 601px) {
  .footer {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.footer  .container {
  position: relative;
}

.footer .dots__image {
  position: absolute;
  top: -230px;
  left: 415px;
}

@media only screen and (max-width: 1279px) {
  .footer .dots__image {
    display: none;
  }
}

.footer::after {
  content: "";
  width: 520px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  background: #232425;
}

@media only screen and (max-width: 1024px) {
  .footer::after {
    width: auto;
  }
}

.footer a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.footer__title {
  color: #fff;
  font-size: 60px;
  font-family: 'Inter-Bold', sans-serif;
  line-height: 60px;
  width: 505px;
  margin-bottom: 40px;
  padding-right: 50px;
}

@media only screen and (max-width: 1024px) {
  .footer__title {
    font-size: 50px;
    line-height: 50px;
    width: 100%;
    padding-right: 0;
  }
}

@media only screen and (max-width: 601px) {
  .footer__title {
    font-size: 28px;
    line-height: 28px;
  }
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  gap: 125px;
}

@media only screen and (max-width: 1366px) {
  .footer__inner {
    gap: 25px;
  }
}

@media only screen and (max-width: 1024px) {
  .footer__inner {
    gap: 65px;
  }
}

@media only screen and (max-width: 768px) {
  .footer__inner {
    gap: 65px;
  }
}

.footer__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 505px;
  height: 100%;
  margin-top: 80px;
  position: relative;
}

@media only screen and (max-width: 1366px) {
  .footer__left {
    max-width: 42%;
  }
}

@media only screen and (max-width: 1280px) {
  .footer__left {
    max-width: 40%;
  }
}

@media only screen and (max-width: 1024px) {
  .footer__left {
    max-width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .footer__left {
    margin-top: 0;
  }
}

.footer__left .dots__image {
  position: absolute;
  top: 493px;
  left: 0;
}

.contact__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.contact__info .icon {
  color: #fff;
  font-size: 24px;
  position: relative;
  margin-right: 8px;
}

.contact__info .contact__btn {
  margin-right: 32px;
}

@media only screen and (max-width: 601px) {
  .contact__info .contact__btn {
    padding: 21px 24px;
    font-size: 15px;
  }
}

@media only screen and (max-width: 396px) {
  .contact__info .contact__btn {
    margin-bottom: 24px;
  }
}

@media only screen and (max-width: 360px) {
  .contact__info .contact__btn {
    margin-right: 0;
  }
}

.contact__info .contact__btn:hover {
  background: #232425;
  color: #fff;
}

@media only screen and (max-width: 1024px) {
  .contact__info .contact__btn:hover {
    background: #fff;
    color: #232425;
  }
}

.email__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact__email {
  color: #fff;
  font-size: 15px;
  line-height: 100%;
  font-family: 'Inter-SemiBold', sans-serif;
}

.contact__email:hover {
  color: #232425;
}

@media only screen and (max-width: 1024px) {
  .contact__email:hover {
    color: #fff;
  }
}

.footer__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 610px;
}

@media only screen and (max-width: 1366px) {
  .footer__right {
    max-width: 55%;
  }
}

@media only screen and (max-width: 1280px) {
  .footer__right {
    max-width: 55%;
  }
}

@media only screen and (max-width: 1024px) {
  .footer__right {
    max-width: 100%;
  }
}

.employees__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}

.employees__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 610px;
  width: 100%;
  border-radius: 2px;
  background: #fff;
  padding: 4px;
}

@media only screen and (max-width: 1024px) {
  .employees__item {
    max-width: 100%;
  }
}

.employees__img {
  background: #F12D2F;
  margin-right: 20px;
  border-radius: 2px;
  width: 112px;
  height: 112px;
}

@media only screen and (max-width: 768px) {
  .employees__img {
    margin-right: 12px;
    width: 96px;
    height: 96px;
  }
}

.employees__info {
  width: 100%;
}

.employees__name {
  font-family: 'Inter-Bold', sans-serif;
  color: #232425;
  font-size: 20px;
  line-height: 24px;
}

@media only screen and (max-width: 601px) {
  .employees__name {
    font-size: 14px;
    line-height: 18px;
  }
}

.employees__position {
  color: #232425;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 24px;
}

@media only screen and (max-width: 768px) {
  .employees__position {
    margin-bottom: 11px;
  }
}

@media only screen and (max-width: 601px) {
  .employees__position {
    font-size: 13px;
    line-height: 16px;
  }
}

.employees__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.employees__contacts .icon {
  color: #F12D2F;
  font-size: 24px;
  position: relative;
  margin-right: 8px;
}

.employees__contacts .contact__email {
  color: #232425;
  font-size: 16px;
  line-height: 100%;
}

@media only screen and (max-width: 601px) {
  .employees__contacts .contact__email {
    font-size: 12px;
  }
}

.employees__contacts .contact__email:hover {
  color: #F12D2F;
}

@media only screen and (max-width: 1024px) {
  .employees__contacts .contact__email:hover {
    color: #232425;
  }
}

.employees__contacts .employees__telegram,
.employees__contacts .employees__email {
  font-family: 'Inter-SemiBold', sans-serif;
  color: #232425;
  font-size: 16px;
  line-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 212px;
  width: 100%;
  margin-right: 36px;
}

.employees__contacts .employees__telegram:last-child,
.employees__contacts .employees__email:last-child {
  margin-right: 0;
}

.btn {
  padding: 18px 46px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-transform: uppercase;
  background: #F12D2F;
  color: #fff;
  border-radius: 5px;
  font-size: 16px;
  line-height: 150%;
}

@media only screen and (max-width: 600px) {
  .btn {
    padding: 6px 16px;
    font-size: 14px;
    line-height: 18px;
  }
}

body.fancybox-active {
  overflow: hidden;
}

.banner {
  position: relative;
  padding-top: 271px;
  padding-bottom: 200px;
}

.banner .dots__image {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 1;
  opacity: 0.2;
}

.banner .dots__image.aos-animate {
  opacity: 0.2 !important;
}

@media only screen and (max-width: 1279px) {
  .banner .dots__image {
    display: none;
  }
}

@media only screen and (max-width: 1024px) {
  .banner {
    padding-top: 200px;
    padding-bottom: 150px;
  }
}

@media only screen and (max-width: 601px) {
  .banner {
    padding-top: 144px;
    padding-bottom: 144px;
  }
}

@media only screen and (max-width: 360px) {
  .banner {
    padding-top: 116px;
    padding-bottom: 144px;
  }
}

.banner .container {
  z-index: 1;
  position: relative;
}

.banner__main {
  gap: 20px;
  margin-bottom: 129px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media only screen and (max-width: 768px) {
  .banner__main {
    gap: 12px;
  }
}

@media only screen and (max-width: 601px) {
  .banner__main {
    margin-bottom: 160px;
  }
}

@media only screen and (max-width: 360px) {
  .banner__main {
    margin-bottom: 160px;
  }
}

@media only screen and (max-width: 1024px) {
  .banner__main .flex-1 {
    max-width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

@media only screen and (max-width: 1024px) {
  .banner__main .flex-3 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
            max-width: 100%;
  }
}

@media only screen and (max-width: 810px) {
  .banner__main .flex-3 {
    max-width: 100%;
  }
}

.banner__image {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.banner:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}

.banner__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  padding: 0 230px 200px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.banner__title {
  font-family: 'Inter-Bold', sans-serif;
  font-size: 60px;
  line-height: 60px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 1024px) {
  .banner__title {
    font-size: 50px;
    line-height: 50px;
  }
}

@media only screen and (max-width: 768px) {
  .banner__title {
    font-size: 40px;
    line-height: 45px;
  }
}

@media only screen and (max-width: 601px) {
  .banner__title {
    font-size: 28px;
    line-height: 28px;
  }
}

.banner__text {
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 45px;
}

@media only screen and (max-width: 1199px) {
  .banner__text {
    padding-right: 20px;
  }
}

@media only screen and (max-width: 1024px) {
  .banner__text {
    padding-right: 0;
  }
}

@media only screen and (max-width: 601px) {
  .banner__text {
    font-size: 14px;
    line-height: 20px;
  }
}

.flex-1 {
  max-width: 295px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
}

.flex-3 {
  max-width: 720px;
}

.banner__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

@media only screen and (max-width: 825px) {
  .banner__bottom {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    bottom: unset;
  }
}

.banner__bottom .dots__image {
  position: absolute;
  bottom: 91px;
  left: 518px;
  z-index: 2;
}

@media only screen and (max-width: 1600px) {
  .banner__bottom .dots__image {
    left: 380px;
  }
}

@media only screen and (max-width: 1440px) {
  .banner__bottom .dots__image {
    left: 289px;
  }
}

@media only screen and (max-width: 1200px) {
  .banner__bottom .dots__image {
    display: none;
  }
}

.year__wrap {
  z-index: 1;
  width: 37%;
}

@media only screen and (max-width: 1440px) {
  .year__wrap {
    width: 35%;
  }
}

@media only screen and (max-width: 1080px) {
  .year__wrap {
    width: 28%;
  }
}

@media only screen and (max-width: 825px) {
  .year__wrap {
    width: 100%;
  }
}

.year {
  font-size: 36px;
  font-family: 'Inter-Bold', sans-serif;
  line-height: 44px;
  color: #fff;
  padding: 56px 86px 56px 100px;
  width: 100%;
  text-align: right;
}

@media only screen and (max-width: 1440px) {
  .year {
    text-align: left;
    padding: 56px 56px 56px 100px;
  }
}

@media only screen and (max-width: 1199px) {
  .year {
    padding: 56px 36px 56px 80px;
  }
}

@media only screen and (max-width: 1024px) {
  .year {
    padding: 56px 20px 56px 80px;
    font-size: 30px;
    line-height: 30px;
  }
}


@media only screen and (max-width: 991px) {
  .year {
    padding: 56px 20px 56px 60px;
  }
}

@media only screen and (max-width: 825px) {
  .year {
    padding: 0 60px 0 60px;
    margin-bottom: 16px;
  }
}

@media only screen and (max-width: 767px) {
  .year {
    padding: 0 40px 0 40px;
  }
}

@media only screen and (max-width: 601px) {
  .year {
    font-size: 28px;
    line-height: 28px;
  }
}

@media only screen and (max-width: 480px) {
  .year {
    padding: 0 20px 0 20px;
  }
}

.red-line__wrap {
  width: 73%;
  background-color: #F12D2F;
  z-index: 1;
}

@media only screen and (max-width: 1600px) {
  .red-line__wrap {
    width: 80%;
  }
}

@media only screen and (max-width: 1440px) {
  .red-line__wrap {
    width: 85%;
  }
}

@media only screen and (max-width: 1366px) {
  .red-line__wrap {
    width: 80%;
  }
}

@media only screen and (max-width: 1132px) {
  .red-line__wrap {
    width: 82%;
  }
}

@media only screen and (max-width: 991px) {
  .red-line__wrap {
    width: 90%;
  }
}

@media only screen and (max-width: 825px) {
  .red-line__wrap {
    width: 100%;
    margin-left: 60px;
  }
}

@media only screen and (max-width: 767px) {
  .red-line__wrap {
    margin-left: 40px;
  }
}

@media only screen and (max-width: 480px) {
  .red-line__wrap {
    margin-left: 20px;
  }
}

.red-line__inner {
  max-width: 1025px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 55px 100px 33px 55px;
}

@media only screen and (max-width: 1199px) {
  .red-line__inner {
    padding: 55px 55px 33px 55px;
  }
}

@media only screen and (max-width: 825px) {
  .red-line__inner {
    gap: 10px;
  }
}

@media only screen and (max-width: 699px) {
  .red-line__inner {
    padding: 55px 55px 60px 55px;
    gap: 20px;
  }
}

@media only screen and (max-width: 560px) {
  .red-line__inner {
    gap: 40px;
  }
}

@media only screen and (max-width: 414px) {
  .red-line__inner {
    padding: 40px 104px 60px 56px;
  }
}

.red-line__item {
  width: 100%;
  max-width: 180px;
}

@media only screen and (max-width: 1199px) {
  .red-line__item {
    max-width: 165px;
  }
}

@media only screen and (max-width: 1024px) {
  .red-line__item {
    max-width: 130px;
  }
}

@media only screen and (max-width: 579px) {
  .red-line__item {
    max-width: 180px;
  }
}

@media only screen and (max-width: 429px) {
  .red-line__item {
    max-width: 180px;
  }
}

@media only screen and (max-width: 360px) {
  .red-line__item {
    max-width: 180px;
  }
}

.red-line__title {
  font-family: 'Inter-Bold', sans-serif;
  color: #fff;
  font-size: 36px;
  line-height: 44px;
}

@media only screen and (max-width: 1024px) {
  .red-line__title {
    font-size: 30px;
    line-height: 36px;
  }
}

.red-line__text {
  font-family: 'Inter-Regular', sans-serif;
  color: #fff;
  font-size: 16px;
  line-height: 22px;
}

.content__wrap {
  padding-top: 240px;
  padding-bottom: 240px;
  position: relative;
}

.content__wrap .container {
  position: relative;
}

@media only screen and (max-width: 1024px) {
  .content__wrap {
    padding-top: 140px;
    padding-bottom: 140px;
  }
}

@media only screen and (max-width: 768px) {
  .content__wrap {
    padding-bottom: 100px;
  }
}

@media only screen and (max-width: 699px) {
  .content__wrap {
    padding-top: 260px;
  }
}

@media only screen and (max-width: 600px) {
  .content__wrap {
    padding-bottom: 80px;
  }
}

@media only screen and (max-width: 560px) {
  .content__wrap {
    padding-top: 300px;
  }
}

@media only screen and (max-width: 549px) {
  .content__wrap {
    padding-top: 500px;
  }
}

@media only screen and (max-width: 414px) {
  .content__wrap {
    padding-top: 480px;
  }
}

.content__wrap .dots__image {
  position: absolute;
  right: 100px;
  bottom: 65%;
}

@media only screen and (max-width: 1279px) {
  .content__wrap .dots__image {
    display: none;
  }
}

.content__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 820px;
  font-family: 'Inter-Medium', sans-serif;
  color: #000;
  font-size: 36px;
  line-height: 46px;
}

@media only screen and (max-width: 1024px) {
  .content__text {
    font-size: 30px;
    line-height: 40px;
    max-width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .content__text {
    font-size: 26px;
    line-height: 36px;
  }
}

@media only screen and (max-width: 601px) {
  .content__text {
    font-size: 20px;
    line-height: 32px;
  }
}

.product {
  padding-top: 140px;
  padding-bottom: 240px;
  background: #F2F4F6;
  position: relative;
}

@media only screen and (max-width: 1024px) {
  .product {
    padding-bottom: 140px;
  }
}

@media only screen and (max-width: 768px) {
  .product {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media only screen and (max-width: 601px) {
  .product {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.main__title {
  font-size: 60px;
  font-family: 'Inter-Bold', sans-serif;
  color: #232425;
  line-height: 60px;
  margin-bottom: 80px;
  width: 100%;
  max-width: 1030px;
}

@media only screen and (max-width: 1024px) {
  .main__title {
    font-size: 50px;
    line-height: 50px;
    max-width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .main__title {
    font-size: 40px;
    line-height: 45px;
    margin-bottom: 60px;
  }
}

@media only screen and (max-width: 601px) {
  .main__title {
    font-size: 28px;
    line-height: 28px;
    margin-bottom: 40px;
  }
}

.product__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px 20px;
}

@media only screen and (max-width: 1199px) {
  .product__list {
    gap: 20px 20px;
  }
}

@media only screen and (max-width: 768px) {
  .product__list {
    gap: 12px 20px;
  }
}

.product__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 400px;
  width: 33%;
  border-radius: 2px;
  background: #fff;
  padding: 8px 20px 8px 8px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

@media only screen and (max-width: 1366px) {
  .product__item {
    width: 32%;
  }
}

@media only screen and (max-width: 1199px) {
  .product__item {
    width: 48%;
    max-width: 100%;
  }
}

@media only screen and (max-width: 992px) {
  .product__item {
    width: 100%;
    max-width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .product__item {
    padding: 8px 16px 8px 8px;
  }
}

.product__item:hover {
  background: #F12D2F;
}

@media only screen and (max-width: 1024px) {
  .product__item:hover {
    background: #fff;
  }
}

.product__title {
  font-family: 'Inter-Bold', sans-serif;
  color: #232425;
  font-size: 20px;
  line-height: 26px;
}

@media only screen and (max-width: 601px) {
  .product__title {
    font-size: 18px;
    line-height: 24px;
  }
}

.product__img {
  background: #F12D2F;
  padding: 22px 12px;
  margin-right: 20px;
  border-radius: 2px;
  max-width: 90px;
  height: 90px;
  width: 100%;
}

@media only screen and (max-width: 601px) {
  .product__img {
    margin-right: 16px;
    max-width: 60px;
    height: 60px;
    padding: 14px 8px;
  }
}

.brand {
  padding-top: 240px;
  padding-bottom: 240px;
}

@media only screen and (max-width: 1024px) {
  .brand {
    padding-top: 140px;
    padding-bottom: 140px;
  }
}

@media only screen and (max-width: 768px) {
  .brand {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media only screen and (max-width: 601px) {
  .brand {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.brand .container {
  position: relative;
}

.brand .dots__image {
  position: absolute;
  top: -368px;
  left: 205px;
}

@media only screen and (max-width: 1279px) {
  .brand .dots__image {
    display: none;
  }
}

.brand__title {
  font-size: 60px;
  font-family: 'Inter-Bold', sans-serif;
  color: #232425;
  line-height: 60px;
  margin-bottom: 80px;
  width: 100%;
  max-width: 1030px;
}

.brand__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}

@media only screen and (max-width: 1024px) {
  .brand__list {
    gap: 8px;
  }
}

.brand__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #DADCDF;
  border-radius: 2px;
  max-width: 190px;
  height: 190px;
  width: 100%;
  padding: 18px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-preferred-size: 15%;
          flex-basis: 15%;
  -webkit-box-flex: 3;
      -ms-flex-positive: 3;
          flex-grow: 3;
}

 @media only screen and (max-width: 1366px) {
  .brand__item {
    max-width: 178px;
    height: 178px;
  }
}

@media only screen and (max-width: 1280px) {
  .brand__item {
    max-width: 164px;
    height: 164px;
  }
}

@media only screen and (max-width: 1199px) {
  .brand__item {
    max-width: 156px;
    height: 156px;
  }
}

@media only screen and (max-width: 1133px) {
  .brand__item {
    max-width: 179px;
    height: 179px;
  }
}

@media only screen and (max-width: 1080px) {
  .brand__item {
    max-width: 168px;
    height: 168px;
  }
}

@media only screen and (max-width: 1037px) {
  .brand__item {
    max-width: 160px;
    height: 160px;
  }
}

@media only screen and (max-width: 1024px) {
  .brand__item {
    max-width: 138px;
    height: 138px;
  }
}

@media only screen and (max-width: 914px) {
  .brand__item {
    max-width: 125px;
    height: 125px;
  }
}

@media only screen and (max-width: 896px) {
  .brand__item {
    max-width: 123px;
    height: 123px;
  }
}

@media only screen and (max-width: 844px) {
  .brand__item {
    max-width: 114px;
    height: 114px;
  }
}

@media only screen and (max-width: 820px) {
  .brand__item {
    max-width: 110px;
    height: 110px;
  }
}

@media only screen and (max-width: 812px) {
  .brand__item {
    max-width: 132px;
    height: 132px;
    -ms-flex-preferred-size: 16%;
      flex-basis: 16%;
  }
}

@media only screen and (max-width: 768px) {
  .brand__item {
    max-width: 123px;
    height: 123px;
  }
}

@media only screen and (max-width: 744px) {
  .brand__item {
    max-width: 104px;
    height: 104px;
    flex-basis: 14%;
  }
}

@media only screen and (max-width: 600px) {
  .brand__item {
    max-width: 124px;
    height: 124px;
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
  }
}

@media only screen and (max-width: 540px) {
  .brand__item {
    max-width: 148px;
    height: 148px;
  }
}

@media only screen and (max-width: 480px) {
  .brand__item {
    max-width: 104px;
    height: 104px;
    -ms-flex-preferred-size: 20%;
      flex-basis: 20%;
  }
}

@media only screen and (max-width: 425px) {
  .brand__item {
    max-width: 123px;
    height: 123px;
    -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
  }
}

@media only screen and (max-width: 414px) {
  .brand__item {
    max-width: 119px;
    height: 119px;
  }
}

@media only screen and (max-width: 390px) {
  .brand__item {
    max-width: 113px;
    height: 113px;
  }
}

@media only screen and (max-width: 375px) {
  .brand__item {
    max-width: 107px;
    height: 107px;
  }
}

@media only screen and (max-width: 360px) {
  .brand__item {
    max-width: 101px;
    height: 101px;
  }
}

.brand__link {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.brand__link:hover {
  opacity: 0.6;
}

@media only screen and (max-width: 1024px) {
  .brand__link:hover {
    opacity: 1;
  }
}

.advantages {
  padding-top: 140px;
  padding-bottom: 240px;
  background: #232425;
}

@media only screen and (max-width: 1024px) {
  .advantages {
    padding-bottom: 140px;
  }
}

@media only screen and (max-width: 768px) {
  .advantages {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media only screen and (max-width: 601px) {
  .advantages {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.advantages .container {
  position: relative;
}

.advantages .dots__image {
  position: absolute;
  top: -270px;
  right: 100px;
}

@media only screen and (max-width: 1279px) {
  .advantages .dots__image {
    display: none;
  }
}

.advantages .main__title {
  color: #fff;
}

.advantages__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.advantages__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  max-width: 610px;
  margin-right: 125px;
}

@media only screen and (max-width: 1366px) {
  .advantages__left {
    margin-right: 50px;
  }
}

@media only screen and (max-width: 1199px) {
  .advantages__left {
    margin-right: 30px;
  }
}

@media only screen and (max-width: 1133px) {
  .advantages__left {
    margin-right: 0;
    max-width: none;
    margin-bottom: 40px;
  }
}

.advantages__item {
  max-width: 295px;
  min-height: 295px;
  width: 100%;
  background: #F2F4F6;
  padding: 24px;
}

@media only screen and (max-width: 1133px) {
  .advantages__item {
    /* max-width: 320px; */
    max-width: 48%;
    min-height: 320px;
  }
}

@media only screen and (max-width: 768px) {
  .advantages__item {
    max-width: 100%;
    min-height: 320px;
  }
}

.advantages__number {
  color: #F12D2F;
  font-size: 16px;
  font-family: 'Inter-SemiBold', sans-serif;
  line-height: 22px;
  margin-bottom: 40px;
}

.advantages__number span {
  color: #B3B6BA;
}

.advantages__title {
  color: #232425;
  font-size: 20px;
  font-family: 'Inter-SemiBold', sans-serif;
  line-height: 22px;
  margin-bottom: 8px;
}

.advantages__text {
  color: #232425;
  font-size: 16px;
  font-family: 'Inter-Regular', sans-serif;
  line-height: 22px;
}

.advantages__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 505px;
  width: 100%;
}

@media only screen and (max-width: 1280px) {
  .advantages__right {
    max-width: 420px;
  }
}

@media only screen and (max-width: 1200px) {
  .advantages__right {
    max-width: 360px;
  }
}

@media only screen and (max-width: 1133px) {
  .advantages__right {
    max-width: 100%;
  }
}

.advantages__content {
  color: #fff;
  font-family: 'Inter-Medium', sans-serif;
  font-size: 20px;
  line-height: 32px;
}

@media only screen and (max-width: 601px) {
  .advantages__content {
    font-size: 14px;
    line-height: 20px;
    font-family: 'Inter-Regular', sans-serif;
  }
}

.partners {
  padding-top: 240px;
  padding-bottom: 240px;
}

.partners .container {
  position: relative;
}

@media only screen and (max-width: 1024px) {
  .partners {
    padding-top: 140px;
    padding-bottom: 140px;
  }
}

@media only screen and (max-width: 768px) {
  .partners {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media only screen and (max-width: 601px) {
  .partners {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.partners .dots__image {
  position: absolute;
  bottom: 173px;
  left: 310px;
}

@media only screen and (max-width: 1279px) {
  .partners .dots__image {
    display: none;
  }
}

.swiper-slide img {
  -o-object-fit: cover;
     object-fit: cover;
}

.slider {
  margin-bottom: 240px;
}

@media only screen and (max-width: 1024px) {
 .slider {
   margin-bottom: 140px;
 }
}

@media only screen and (max-width: 768px) {
 .slider {
   margin-bottom: 100px;
 }
}

@media only screen and (max-width: 601px) {
 .slider {
   margin-bottom: 80px;
 }
}

.mySwiper .swiper-slide {
    border-radius: 2px;
    border: 1px solid #DADCDF;
    height: 300px;
    padding: 12px;
  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;
}

@media only screen and (max-width: 1600px) {
  .mySwiper .swiper-slide {
   height: 250px;
  }
 }

 @media only screen and (max-width: 1440px) {
  .mySwiper .swiper-slide {
   height: auto;
  }
 }

/*.mySwiper .swiper-wrapper {*/
/*  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;*/
/*}*/

.company__name {
    position: relative;
    width: fit-content;
}

.company__name p {
  font-size: 160px;
  font-family: 'Inter-Black', sans-serif;
  line-height: 100%;
  letter-spacing: 16px;
  text-transform: uppercase;
  white-space: nowrap;
}

@media only screen and (max-width: 1024px) {
  .company__name p {
    font-size: 100px;
    letter-spacing: 10px;
  }
}

@media only screen and (max-width: 601px) {
  .company__name p {
    font-size: 50px;
    letter-spacing: 5px;
  }
}

.company__name span {
  color: #F12D2F;
  white-space: nowrap;
}

#modalMessage .fancybox-close-small {
    padding: 5px;
    top: -12px;
    right: -44px;
}