h1, h2, h3, h4, h5, h6 {
  font-family: "Druk Cyr", sans-serif;
  margin: 0;
  line-height: 1;
}

.d-flex {
  display: flex;
}

.align-justify {
  justify-content: space-between;
}
@media screen and (max-width: 769px) {
  .align-justify {
    flex-direction: column;
  }
}

.align-bottom {
  align-items: flex-end;
}

:root {
  --spacing-32: 32px;
  --spacing-24: 24px;
}

html,
body {
  font-family: "Nimbus Sans L", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #FFF6F0;
}
html.body-open-menu,
body.body-open-menu {
  overflow-x: hidden;
}

body {
  font-size: 16px;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
  width: calc(100% - 30px);
}

.container-lg {
  max-width: 1216px;
  margin: 0 auto;
  padding: 0 15px;
  width: calc(100% - 30px);
}

.container-full {
  margin: 0 auto;
  padding: 0 15px;
  width: calc(100% - 30px);
}

.bg-white {
  background-color: #FFFFFF;
}

.text-white {
  color: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
  cursor: pointer;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-style: normal;
  font-weight: 600;
}

h6 {
  font-size: 18px;
}

li {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

img {
  object-fit: cover;
  object-position: center;
}

.thumb {
  position: relative;
  overflow: hidden;
}
.thumb:before {
  content: "";
  display: block;
  padding-bottom: 60%;
}
.thumb picture,
.thumb img,
.thumb iframe,
.thumb video {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
  object-position: center;
}
.thumb.thumb-box:before {
  padding-bottom: 100%;
}

p {
  margin: 0;
}

input,
textarea {
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=number],
textarea {
  padding: 16px;
  border: none;
  width: -webkit-fill-available;
  background: #FFFFFF;
  transition: 0.3s;
}

.wpcf7-submit {
  padding: 16px 0;
  border: none;
  text-align: center;
  background-color: #32444E;
  color: #FFFFFF;
  font-weight: 600;
  width: 100%;
  cursor: pointer;
}

.wpcf7-form p {
  margin: 0 0 24px;
}

.wpcf7-form-control-wrap {
  display: block;
  margin-top: 4px;
}

.wpcf7-spinner {
  display: none !important;
}

main {
  min-height: calc(100vh - 700px);
  overflow: hidden;
}
main .wpcf7 form.invalid .wpcf7-response-output,
main .wpcf7 form.unaccepted .wpcf7-response-output,
main .wpcf7 form.payment-required .wpcf7-response-output,
main .wpcf7 form .wpcf7-response-output {
  margin: 0;
  padding: 0;
  border: none;
}
main .wpcf7-not-valid-tip {
  font-size: 14px;
}

section {
  position: relative;
  padding: 60px 0;
}

.text-center {
  text-align: center;
}

* {
  outline: none !important;
}

button {
  border: none;
  background: none;
}

.heading-title {
  font-weight: 600;
  font-size: 60px;
  line-height: 80px;
  margin: 0 0 80px;
}

.content-editor {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.content-editor h1,
.content-editor h2,
.content-editor h3,
.content-editor h4,
.content-editor h5,
.content-editor h6 {
  font-weight: 500;
}
.content-editor h1,
.content-editor h2,
.content-editor h3,
.content-editor h4,
.content-editor h5,
.content-editor h6,
.content-editor p,
.content-editor ul,
.content-editor ol {
  margin: 0;
}
.content-editor ul, .content-editor ol {
  padding-left: 25px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.content-editor p, .content-editor li {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

.slick-dots {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  list-style-type: none;
  gap: 6px;
}
.slick-dots li button {
  padding: 0;
  font-size: 0;
  height: 6px;
  width: 6px;
  background: #FFFFFF;
  opacity: 0.2;
  border-radius: 10px;
  transition: 0.3s;
}
.slick-dots li.slick-active button {
  background: #B80ED2;
  opacity: 1;
  width: 24px;
}

@media (min-width: 2000px) {
  .container-lg {
    max-width: 1600px;
  }
}
@media (max-width: 1000px) {
  section {
    padding: 32px 0;
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes spin-reverse {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.popup-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  display: none;
}
.popup-wrapper .popup-window {
  height: fit-content;
  width: 100%;
  max-width: 746px;
  margin: 0 auto;
  display: none;
  max-height: 70vh;
  position: relative;
  border-radius: 16px;
}
.popup-wrapper .popup-window .popup-inner {
  padding: 40px;
  background: #261E33;
  width: 100%;
}
.popup-wrapper .popup-window .close {
  height: 24px;
  width: 24px;
  cursor: pointer;
  position: absolute;
  top: 28px;
  right: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-wrapper .popup-window .close:after {
  content: "";
  display: block;
  height: 24px;
  width: 24px;
  background-image: url("../img/icons/close.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.popup-wrapper .popup-window.active {
  display: flex;
}
.popup-wrapper .popup-window#popup-terms .popup-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.popup-wrapper .popup-window#popup-terms .title {
  margin: 0;
}
.popup-wrapper .popup-window#popup-terms .content-editor p, .popup-wrapper .popup-window#popup-terms .content-editor li {
  font-weight: 300;
  font-size: 18px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.7);
}
.popup-wrapper .popup-window#popup-terms .tooltip {
  margin: 0;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.0041em;
  color: rgba(255, 255, 255, 0.5);
}
.popup-wrapper .popup-window#popup-terms .tooltip span {
  color: #b80ed2;
  margin-right: 5px;
}
.popup-wrapper.show {
  display: flex;
}

@media (max-width: 768px) {
  .popup-wrapper .popup-window#popup-terms {
    max-width: 343px;
  }
  .popup-wrapper .popup-window#popup-terms .popup-inner {
    gap: 16px;
    padding: 20px;
  }
}
@font-face {
  font-family: "SONGER SemiExpanded";
  src: url("../fonts/Songer/SONGERSemiExpanded.eot");
  src: local("SONGER SemiExpanded"), local("SONGERSemiExpanded"), url("../fonts/Songer/SONGERSemiExpanded.eot?#iefix") format("embedded-opentype"), url("../fonts/Songer/SONGERSemiExpanded.woff2") format("woff2"), url("../fonts/Songer/SONGERSemiExpanded.woff") format("woff"), url("../fonts/Songer/SONGERSemiExpanded.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "SONGER Condensed";
  src: url("../fonts/Songer/SONGERCondensed-Bold.eot");
  src: local("SONGER Condensed Bold"), local("SONGERCondensed-Bold"), url("../fonts/Songer/SONGERCondensed-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Songer/SONGERCondensed-Bold.woff2") format("woff2"), url("../fonts/Songer/SONGERCondensed-Bold.woff") format("woff"), url("../fonts/Songer/SONGERCondensed-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "SONGER SemiExpanded";
  src: url("../fonts/Songer/SONGERSemiExpanded-ExtraBold.eot");
  src: local("SONGER SemiExpanded ExtraBold"), local("SONGERSemiExpanded-ExtraBold"), url("../fonts/Songer/SONGERSemiExpanded-ExtraBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Songer/SONGERSemiExpanded-ExtraBold.woff2") format("woff2"), url("../fonts/Songer/SONGERSemiExpanded-ExtraBold.woff") format("woff"), url("../fonts/Songer/SONGERSemiExpanded-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "SONGER SemiExpanded";
  src: url("../fonts/Songer/SONGERSemiExpanded-Bold.eot");
  src: local("SONGER SemiExpanded Bold"), local("SONGERSemiExpanded-Bold"), url("../fonts/Songer/SONGERSemiExpanded-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Songer/SONGERSemiExpanded-Bold.woff2") format("woff2"), url("../fonts/Songer/SONGERSemiExpanded-Bold.woff") format("woff"), url("../fonts/Songer/SONGERSemiExpanded-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "SONGER Grotesque";
  src: url("../fonts/Songer/SONGERGrotesque-ExtraBold.eot");
  src: local("SONGER Grotesque ExtraBold"), local("SONGERGrotesque-ExtraBold"), url("../fonts/Songer/SONGERGrotesque-ExtraBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Songer/SONGERGrotesque-ExtraBold.woff2") format("woff2"), url("../fonts/Songer/SONGERGrotesque-ExtraBold.woff") format("woff"), url("../fonts/Songer/SONGERGrotesque-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "SONGER Grotesque";
  src: url("../fonts/Songer/SONGERGrotesque-Bold.eot");
  src: local("SONGER Grotesque Bold"), local("SONGERGrotesque-Bold"), url("../fonts/Songer/SONGERGrotesque-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Songer/SONGERGrotesque-Bold.woff2") format("woff2"), url("../fonts/Songer/SONGERGrotesque-Bold.woff") format("woff"), url("../fonts/Songer/SONGERGrotesque-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "SONGER Condensed";
  src: url("../fonts/Songer/SONGERCondensed-ExtraBold.eot");
  src: local("SONGER Condensed ExtraBold"), local("SONGERCondensed-ExtraBold"), url("../fonts/Songer/SONGERCondensed-ExtraBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Songer/SONGERCondensed-ExtraBold.woff2") format("woff2"), url("../fonts/Songer/SONGERCondensed-ExtraBold.woff") format("woff"), url("../fonts/Songer/SONGERCondensed-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "SONGER Condensed";
  src: url("../fonts/Songer/SONGERCondensed-Heavy.eot");
  src: local("SONGER Condensed Heavy"), local("SONGERCondensed-Heavy"), url("../fonts/Songer/SONGERCondensed-Heavy.eot?#iefix") format("embedded-opentype"), url("../fonts/Songer/SONGERCondensed-Heavy.woff2") format("woff2"), url("../fonts/Songer/SONGERCondensed-Heavy.woff") format("woff"), url("../fonts/Songer/SONGERCondensed-Heavy.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "SONGER Condensed";
  src: url("../fonts/Songer/SONGERCondensed.eot");
  src: local("SONGER Condensed"), local("SONGERCondensed"), url("../fonts/Songer/SONGERCondensed.eot?#iefix") format("embedded-opentype"), url("../fonts/Songer/SONGERCondensed.woff2") format("woff2"), url("../fonts/Songer/SONGERCondensed.woff") format("woff"), url("../fonts/Songer/SONGERCondensed.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "SONGER Condensed";
  src: url("../fonts/Songer/SONGERCondensed-Medium.eot");
  src: local("SONGER Condensed Medium"), local("SONGERCondensed-Medium"), url("../fonts/Songer/SONGERCondensed-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Songer/SONGERCondensed-Medium.woff2") format("woff2"), url("../fonts/Songer/SONGERCondensed-Medium.woff") format("woff"), url("../fonts/Songer/SONGERCondensed-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "SONGER Grotesque";
  src: url("../fonts/Songer/SONGERGrotesque-Medium.eot");
  src: local("SONGER Grotesque Medium"), local("SONGERGrotesque-Medium"), url("../fonts/Songer/SONGERGrotesque-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Songer/SONGERGrotesque-Medium.woff2") format("woff2"), url("../fonts/Songer/SONGERGrotesque-Medium.woff") format("woff"), url("../fonts/Songer/SONGERGrotesque-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "SONGER Grotesque";
  src: url("../fonts/Songer/SONGERGrotesque-Heavy.eot");
  src: local("SONGER Grotesque Heavy"), local("SONGERGrotesque-Heavy"), url("../fonts/Songer/SONGERGrotesque-Heavy.eot?#iefix") format("embedded-opentype"), url("../fonts/Songer/SONGERGrotesque-Heavy.woff2") format("woff2"), url("../fonts/Songer/SONGERGrotesque-Heavy.woff") format("woff"), url("../fonts/Songer/SONGERGrotesque-Heavy.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "SONGER SemiExpanded";
  src: url("../fonts/Songer/SONGERSemiExpanded-Medium.eot");
  src: local("SONGER SemiExpanded Medium"), local("SONGERSemiExpanded-Medium"), url("../fonts/Songer/SONGERSemiExpanded-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Songer/SONGERSemiExpanded-Medium.woff2") format("woff2"), url("../fonts/Songer/SONGERSemiExpanded-Medium.woff") format("woff"), url("../fonts/Songer/SONGERSemiExpanded-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "SONGER Grotesque";
  src: url("../fonts/Songer/SONGERGrotesque.eot");
  src: local("SONGER Grotesque"), local("SONGERGrotesque"), url("../fonts/Songer/SONGERGrotesque.eot?#iefix") format("embedded-opentype"), url("../fonts/Songer/SONGERGrotesque.woff2") format("woff2"), url("../fonts/Songer/SONGERGrotesque.woff") format("woff"), url("../fonts/Songer/SONGERGrotesque.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "SONGER SemiExpanded";
  src: url("../fonts/Songer/SONGERSemiExpanded-Heavy.eot");
  src: local("SONGER SemiExpanded Heavy"), local("SONGERSemiExpanded-Heavy"), url("../fonts/Songer/SONGERSemiExpanded-Heavy.eot?#iefix") format("embedded-opentype"), url("../fonts/Songer/SONGERSemiExpanded-Heavy.woff2") format("woff2"), url("../fonts/Songer/SONGERSemiExpanded-Heavy.woff") format("woff"), url("../fonts/Songer/SONGERSemiExpanded-Heavy.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("../fonts/SpaceGrotesk/SpaceGrotesk-Light.eot");
  src: local("Space Grotesk Light"), local("SpaceGrotesk-Light"), url("../fonts/SpaceGrotesk/SpaceGrotesk-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/SpaceGrotesk/SpaceGrotesk-Light.woff2") format("woff2"), url("../fonts/SpaceGrotesk/SpaceGrotesk-Light.woff") format("woff"), url("../fonts/SpaceGrotesk/SpaceGrotesk-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("../fonts/SpaceGrotesk/SpaceGrotesk-Bold.eot");
  src: local("Space Grotesk Bold"), local("SpaceGrotesk-Bold"), url("../fonts/SpaceGrotesk/SpaceGrotesk-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/SpaceGrotesk/SpaceGrotesk-Bold.woff2") format("woff2"), url("../fonts/SpaceGrotesk/SpaceGrotesk-Bold.woff") format("woff"), url("../fonts/SpaceGrotesk/SpaceGrotesk-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("../fonts/SpaceGrotesk/SpaceGrotesk-Medium.eot");
  src: local("Space Grotesk Medium"), local("SpaceGrotesk-Medium"), url("../fonts/SpaceGrotesk/SpaceGrotesk-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/SpaceGrotesk/SpaceGrotesk-Medium.woff2") format("woff2"), url("../fonts/SpaceGrotesk/SpaceGrotesk-Medium.woff") format("woff"), url("../fonts/SpaceGrotesk/SpaceGrotesk-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("../fonts/SpaceGrotesk/SpaceGrotesk-SemiBold.eot");
  src: local("Space Grotesk SemiBold"), local("SpaceGrotesk-SemiBold"), url("../fonts/SpaceGrotesk/SpaceGrotesk-SemiBold.eot?#iefix") format("embedded-opentype"), url("../fonts/SpaceGrotesk/SpaceGrotesk-SemiBold.woff2") format("woff2"), url("../fonts/SpaceGrotesk/SpaceGrotesk-SemiBold.woff") format("woff"), url("../fonts/SpaceGrotesk/SpaceGrotesk-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("../fonts/SpaceGrotesk/SpaceGrotesk-Regular.eot");
  src: local("Space Grotesk Regular"), local("SpaceGrotesk-Regular"), url("../fonts/SpaceGrotesk/SpaceGrotesk-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/SpaceGrotesk/SpaceGrotesk-Regular.woff2") format("woff2"), url("../fonts/SpaceGrotesk/SpaceGrotesk-Regular.woff") format("woff"), url("../fonts/SpaceGrotesk/SpaceGrotesk-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Nimbus Sans L";
  src: url("../fonts/NimbusSanL/NimbusSanL-BolIta.eot");
  src: local("Nimbus Sans L Bold Italic"), local("NimbusSanL-BolIta"), url("../fonts/NimbusSanL/NimbusSanL-BolIta.eot?#iefix") format("embedded-opentype"), url("../fonts/NimbusSanL/NimbusSanL-BolIta.woff2") format("woff2"), url("../fonts/NimbusSanL/NimbusSanL-BolIta.woff") format("woff"), url("../fonts/NimbusSanL/NimbusSanL-BolIta.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Nimbus Sans L";
  src: url("../fonts/NimbusSanL/NimbusSanL-Bol.eot");
  src: local("Nimbus Sans L Bold"), local("NimbusSanL-Bol"), url("../fonts/NimbusSanL/NimbusSanL-Bol.eot?#iefix") format("embedded-opentype"), url("../fonts/NimbusSanL/NimbusSanL-Bol.woff2") format("woff2"), url("../fonts/NimbusSanL/NimbusSanL-Bol.woff") format("woff"), url("../fonts/NimbusSanL/NimbusSanL-Bol.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nimbus Sans L";
  src: url("../fonts/NimbusSanL/NimbusSanL-Reg.eot");
  src: local("Nimbus Sans L Regular"), local("NimbusSanL-Reg"), url("../fonts/NimbusSanL/NimbusSanL-Reg.eot?#iefix") format("embedded-opentype"), url("../fonts/NimbusSanL/NimbusSanL-Reg.woff2") format("woff2"), url("../fonts/NimbusSanL/NimbusSanL-Reg.woff") format("woff"), url("../fonts/NimbusSanL/NimbusSanL-Reg.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nimbus Sans L";
  src: url("../fonts/NimbusSanL/NimbusSanL-RegIta.eot");
  src: local("Nimbus Sans L Regular Italic"), local("NimbusSanL-RegIta"), url("../fonts/NimbusSanL/NimbusSanL-RegIta.eot?#iefix") format("embedded-opentype"), url("../fonts/NimbusSanL/NimbusSanL-RegIta.woff2") format("woff2"), url("../fonts/NimbusSanL/NimbusSanL-RegIta.woff") format("woff"), url("../fonts/NimbusSanL/NimbusSanL-RegIta.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Druk Cyr";
  src: url("../fonts/DrukCyr/DrukCyr-Bold.eot");
  src: local("Druk Cyr Bold"), local("DrukCyr-Bold"), url("../fonts/DrukCyr/DrukCyr-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/DrukCyr/DrukCyr-Bold.woff2") format("woff2"), url("../fonts/DrukCyr/DrukCyr-Bold.woff") format("woff"), url("../fonts/DrukCyr/DrukCyr-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Druk Cyr";
  src: url("../fonts/DrukCyr/DrukCyr-Heavy.eot");
  src: local("Druk Cyr Heavy"), local("DrukCyr-Heavy"), url("../fonts/DrukCyr/DrukCyr-Heavy.eot?#iefix") format("embedded-opentype"), url("../fonts/DrukCyr/DrukCyr-Heavy.woff2") format("woff2"), url("../fonts/DrukCyr/DrukCyr-Heavy.woff") format("woff"), url("../fonts/DrukCyr/DrukCyr-Heavy.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Druk Cyr";
  src: url("../fonts/DrukCyr/DrukCyr-HeavyItalic.eot");
  src: local("Druk Cyr Heavy Italic"), local("DrukCyr-HeavyItalic"), url("../fonts/DrukCyr/DrukCyr-HeavyItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/DrukCyr/DrukCyr-HeavyItalic.woff2") format("woff2"), url("../fonts/DrukCyr/DrukCyr-HeavyItalic.woff") format("woff"), url("../fonts/DrukCyr/DrukCyr-HeavyItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
}
@font-face {
  font-family: "Druk Cyr";
  src: url("../fonts/DrukCyr/DrukCyr-MediumItalic.eot");
  src: local("Druk Cyr Medium Italic"), local("DrukCyr-MediumItalic"), url("../fonts/DrukCyr/DrukCyr-MediumItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/DrukCyr/DrukCyr-MediumItalic.woff2") format("woff2"), url("../fonts/DrukCyr/DrukCyr-MediumItalic.woff") format("woff"), url("../fonts/DrukCyr/DrukCyr-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Druk Cyr";
  src: url("../fonts/DrukCyr/DrukCyr-SuperItalic.eot");
  src: local("Druk Cyr Super Italic"), local("DrukCyr-SuperItalic"), url("../fonts/DrukCyr/DrukCyr-SuperItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/DrukCyr/DrukCyr-SuperItalic.woff2") format("woff2"), url("../fonts/DrukCyr/DrukCyr-SuperItalic.woff") format("woff"), url("../fonts/DrukCyr/DrukCyr-SuperItalic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Druk Cyr";
  src: url("../fonts/DrukCyr/DrukCyr-Super.eot");
  src: local("Druk Cyr Super"), local("DrukCyr-Super"), url("../fonts/DrukCyr/DrukCyr-Super.eot?#iefix") format("embedded-opentype"), url("../fonts/DrukCyr/DrukCyr-Super.woff2") format("woff2"), url("../fonts/DrukCyr/DrukCyr-Super.woff") format("woff"), url("../fonts/DrukCyr/DrukCyr-Super.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Druk Cyr";
  src: url("../fonts/DrukCyr/DrukCyr-Medium.eot");
  src: local("Druk Cyr Medium"), local("DrukCyr-Medium"), url("../fonts/DrukCyr/DrukCyr-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/DrukCyr/DrukCyr-Medium.woff2") format("woff2"), url("../fonts/DrukCyr/DrukCyr-Medium.woff") format("woff"), url("../fonts/DrukCyr/DrukCyr-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Druk Cyr";
  src: url("../fonts/DrukCyr/DrukCyr-BoldItalic.eot");
  src: local("Druk Cyr Bold Italic"), local("DrukCyr-BoldItalic"), url("../fonts/DrukCyr/DrukCyr-BoldItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/DrukCyr/DrukCyr-BoldItalic.woff2") format("woff2"), url("../fonts/DrukCyr/DrukCyr-BoldItalic.woff") format("woff"), url("../fonts/DrukCyr/DrukCyr-BoldItalic.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: "Novelist";
  src: url("../fonts/Novelist/Novelist_free.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: right;
  text-transform: capitalize;
  gap: 10px;
  padding: 4px 20px;
  background: #FA4DDB;
  border-radius: 5px;
  font-family: "Druk Cyr";
  font-style: normal;
  font-weight: 500;
  font-size: 26px;
  line-height: 33px;
  letter-spacing: -0.006em;
  color: #000000;
  cursor: pointer;
  width: fit-content;
}
.btn.btn-sm {
  padding: 8px 10px;
  border-radius: 1px;
}
.btn.btn-arrow:after {
  content: "";
  display: block;
  height: 24px;
  width: 24px;
  background-image: url("../img/icons/arrow.svg");
  background-position: center;
  background-size: contain;
  transition: 0.3s;
}
.btn.btn-arrow:hover:after {
  transform: translateX(5px);
}
.btn:hover {
  color: #FFFFFF;
}
.btn.btn-disabled, .btn.slick-disabled, .btn:disabled {
  opacity: 0.7;
  pointer-events: none;
}

.section-static-header .item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
}
.section-static-header .item .lang {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0 10px 0 0;
  gap: 10px;
}
@media screen and (max-width: 801px) {
  .section-static-header .item .lang.only_desktop {
    display: none;
  }
}
.section-static-header .item .lang li {
  list-style: none;
  display: flex;
  align-items: center;
}
.section-static-header .item .lang li:after {
  content: "";
  display: block;
  height: 15px;
  width: 1px;
  background-color: #FFFFFF;
  margin-left: 10px;
}
.section-static-header .item .lang li a {
  font-family: "SONGER SemiExpanded";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 27px;
  letter-spacing: -0.006em;
  color: #FFFFFF;
}
.section-static-header .item .lang li:last-child:after {
  display: none;
}
.section-static-header .item .btn {
  font-family: "SONGER SemiExpanded";
  font-style: normal;
  font-weight: 700;
  font-size: 8px;
  line-height: 11px;
  text-align: center;
  letter-spacing: -0.006em;
}

header {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}
@media screen and (max-width: 465px) {
  header .only_desktop {
    display: none;
  }
}
header .container .container-inner {
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}
header .container .container-inner .menu .btn-toggle-menu {
  transition: 0.3s;
  height: 24px;
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  gap: 4.5px;
  padding: 0;
  cursor: pointer;
}
header .container .container-inner .menu .btn-toggle-menu span {
  height: 2px;
  width: 24px;
  background-color: #FA4DDB;
  transition: 0.3s;
}
@media screen and (min-width: 800px) {
  header .container .container-inner .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
header .container .container-inner .logo img {
  height: 34px;
  width: 96px;
}
header .container .container-inner .buttons {
  display: flex;
  align-items: center;
  gap: 5px;
}
header .container .container-inner .buttons .lang {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0 10px 0 0;
  gap: 10px;
}
header .container .container-inner .buttons .lang li {
  list-style: none;
  display: flex;
  align-items: center;
}
header .container .container-inner .buttons .lang li:after {
  content: "";
  display: block;
  height: 15px;
  width: 1px;
  background-color: #FFFFFF;
  margin-left: 10px;
}
header .container .container-inner .buttons .lang li a {
  font-family: "SONGER SemiExpanded";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 27px;
  letter-spacing: -0.006em;
  color: #FFFFFF;
}
header .container .container-inner .buttons .lang li:last-child:after {
  display: none;
}
header .container .container-inner .buttons .btn {
  font-family: "SONGER SemiExpanded";
  font-style: normal;
  font-weight: 700;
  font-size: 8px;
  line-height: 11px;
  text-align: center;
  letter-spacing: -0.006em;
}
header .container .container-inner-menu {
  position: absolute;
  /* height: 100vh; */
  top: -100vh;
  transition: 0.6s;
  max-width: 1140px;
  padding: 0 15px;
  width: calc(100% - 30px);
  left: 50%;
  transform: translateX(-50%);
}
header .container .container-inner-menu nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
header .container .container-inner-menu nav ul li a {
  font-family: "SONGER SemiExpanded";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 27px;
  letter-spacing: -0.006em;
  color: #FA4DDB;
}
header.header-open-menu .container-inner-menu {
  top: 63px;
}
header.header-open-menu .btn-toggle-menu span:nth-child(1) {
  transform: rotate(45deg);
}
header.header-open-menu .btn-toggle-menu span:nth-child(2) {
  display: none;
}
header.header-open-menu .btn-toggle-menu span:nth-child(3) {
  position: absolute;
  transform: rotate(-45deg);
}

@media (max-width: 550px) {
  .section-static-header .item .btn {
    line-height: 1px;
  }
}
.footer {
  background: #FA4DDB;
  padding-block: 100px 20px;
  overflow: hidden;
}
.footer__title {
  text-align: center;
}
@media screen and (max-width: 769px) {
  .footer__title {
    margin-bottom: clamp(14px, 17.5438596491vw, 200px);
  }
}
.footer__title h1, .footer__title h2, .footer__title h3, .footer__title h4, .footer__title h5, .footer__title h6 {
  font-size: clamp(14px, 30.2631578947vw, 345px);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 769px) {
  .footer__socials-first-item {
    flex-direction: column;
  }
}
.footer__socials-first-item {
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 769px) {
  .footer__socials-first-item:first-child {
    border-bottom: none;
  }
}
.footer__socials-second {
  display: flex;
  justify-content: flex-end;
  gap: 33px;
}
@media screen and (max-width: 769px) {
  .footer__socials-second {
    column-gap: 16px;
    flex-wrap: wrap;
    row-gap: 0;
  }
}
.footer__socials-first-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__socials-first-item a {
  font-family: "SONGER SemiExpanded", sans-serif;
  font-size: 30px;
  font-weight: bold;
}
@media screen and (max-width: 801px) {
  .footer__socials-first-item a {
    font-size: 23px;
  }
}
@media screen and (max-width: 769px) {
  .footer__socials-first-item a {
    font-size: 19px;
  }
}
.footer__socials-first-item-title {
  font-family: "Druk Cyr", sans-serif;
  font-size: 60px;
  font-weight: 500;
  text-transform: uppercase;
}
@media screen and (max-width: 801px) {
  .footer__socials-first-item-title {
    font-size: 46px;
  }
}
@media screen and (max-width: 769px) {
  .footer__socials-first-item-title {
    font-size: 60px;
  }
}
.footer .border-bottom {
  border-bottom: 1px solid #000;
}
.footer__socials-second-item {
  display: flex;
  margin-top: 22px;
}
.footer__socials-second-item a {
  font-size: 25px;
  text-transform: uppercase;
  font-weight: bold;
}
.footer__privacy {
  display: flex;
  justify-content: flex-end;
  margin-top: 22px;
  gap: 42px;
}
@media screen and (max-width: 769px) {
  .footer__privacy {
    gap: 7px;
    flex-direction: column;
    align-items: flex-end;
  }
}
.footer__privacy a {
  font-family: "SONGER SemiExpanded", sans-serif;
  font-weight: bold;
  font-size: 20px;
}
@media screen and (max-width: 801px) {
  .footer__privacy a {
    font-size: 16px;
  }
}
.footer__logo {
  display: flex;
  justify-content: center;
  margin-top: 21px;
}
@media screen and (max-width: 769px) {
  .footer__logo {
    margin-block: 25px;
  }
}
.footer__logo img {
  object-fit: contain;
}
@media screen and (max-width: 801px) {
  .footer__logo img {
    max-width: 140px;
    width: 100%;
  }
}

.section-hero {
  padding: 60px 0;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  text-align: center;
  color: #FFFFFF;
}
.section-hero .container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.section-hero .container .heading-title {
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: 155px;
  line-height: 120px;
  text-align: center;
  letter-spacing: -0.01em;
  color: #FA4DDB;
  margin: 0;
}
.section-hero .container .subtitle {
  font-family: "SONGER SemiExpanded";
  font-weight: 700;
  font-size: 23px;
  line-height: 31px;
  text-align: center;
  letter-spacing: -0.006em;
  mix-blend-mode: difference;
  position: relative;
  width: fit-content;
  margin: 0 auto;
}
.section-hero .container .subtitle:after {
  content: "";
  display: block;
  height: 22px;
  width: 50%;
  background-image: url("../img/svg/line-1.svg");
  background-position: top center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
}
.section-hero .container .desc {
  font-family: "Nimbus Sans L";
  font-weight: 400;
  font-size: 18px;
  line-height: 29px;
  mix-blend-mode: difference;
  letter-spacing: -0.006em;
  margin: 0 auto;
}
.section-hero .container .btn {
  margin: 0 auto;
  padding: 4px 75px;
}

.section-about {
  color: #000000;
}
.section-about .container {
  display: flex;
  align-items: center;
}
.section-about .container .left {
  width: 54%;
  display: flex;
  flex-direction: column;
}
.section-about .container .left img {
  width: 100%;
}
.section-about .container .right {
  width: 48%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.section-about .container .right .heading-title {
  font-family: "Novelist";
  font-weight: 400;
  font-size: 150px;
  line-height: 90px;
  letter-spacing: -0.04em;
  margin: 0;
  position: relative;
}
.section-about .container .right .heading-title:after {
  content: "";
  display: block;
  height: 35px;
  width: 60%;
  background-image: url("../img/svg/line-2.svg");
  background-position: top center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
}
.section-about .container .right .desc {
  font-family: "Nimbus Sans L";
  font-weight: 400;
  font-size: 20px;
  line-height: 20px;
  letter-spacing: -0.04em;
  margin: 20px 0 0;
}
.section-about .container .right .desc span {
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: 45px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.section-about .container .right .list p {
  font-family: "Druk Cyr";
  font-weight: 500;
  font-size: 42px;
  line-height: 70px;
  text-transform: uppercase;
  margin: 0;
}
@media screen and (min-width: 801px) {
  .section-about .container .right img {
    margin-left: -50px;
  }
}

.section-our-product {
  padding: 120px 0 60px;
  background-size: cover;
  background-position: center;
  text-align: center;
}
.section-our-product .container .heading-title {
  font-family: "Druk Cyr";
  font-weight: 500;
  font-size: 140px;
  line-height: 50px;
  text-transform: uppercase;
  color: #FA4DDB;
  margin: 0 0 55px;
}
.section-our-product .container .desc {
  font-family: "Nimbus Sans L";
  font-weight: 400;
  font-size: 20px;
  line-height: 20px;
  color: #FFFFFF;
  margin: 0 0 35px;
}
.section-our-product .container .list p {
  font-family: "Druk Cyr";
  font-weight: 500;
  font-size: 70px;
  line-height: 70px;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0 0 4px;
}
.section-our-product .container .buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section-our-product .container .buttons img {
  width: 100%;
  max-width: 193px;
}
.section-our-product .container .buttons .btn {
  padding: 4px 70px;
}

.section-models {
  padding-bottom: 30px;
}
.section-models .container .heading-title {
  font-family: "Novelist";
  font-weight: 400;
  font-size: 155px;
  line-height: normal;
  text-align: center;
  letter-spacing: -0.04em;
  color: #000000;
  margin: 0;
}
.section-models .container .wrapper {
  display: flex;
  gap: 28px;
}
.section-models .container .wrapper .col:first-child {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  width: 55%;
}
.section-models .container .wrapper .col:last-child {
  width: 45%;
}
.section-models .container .wrapper .col p {
  margin: 0;
  font-family: "Druk Cyr";
  font-weight: 500;
  font-size: 100px;
  line-height: 85px;
  text-align: right;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #000000;
}
.section-models .container .wrapper .col img {
  height: 100%;
  width: 100%;
}
.section-models .marquee {
  margin-top: 30px;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  background-color: #FA4DDB;
  color: #000000;
  height: 24px;
  width: 100%;
  font-family: "SONGER SemiExpanded";
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.006em;
  display: flex;
  align-items: center;
}
.section-models video {
  height: 24px;
  width: 100vw;
  object-fit: cover;
  object-position: center;
}

.section-steps {
  padding-top: 0;
}
.section-steps .top {
  position: relative;
  padding-top: 60px;
}
.section-steps .top .heading-title {
  font-family: "Druk Cyr";
  font-style: normal;
  font-weight: 500;
  font-size: 165px;
  line-height: 140px;
  letter-spacing: -0.02em;
  color: #FFF6F0;
  text-align: center;
  position: relative;
  z-index: 1;
  margin: 0;
  padding-bottom: 70px;
}
.section-steps .top .heading-title span {
  font-family: "Novelist";
  font-style: normal;
  font-weight: 400;
  font-size: 165px;
  line-height: 80px;
  letter-spacing: -0.03em;
}
.section-steps .top:after {
  content: "";
  display: block;
  background-color: #000;
  position: absolute;
  height: 100%;
  width: 100vw;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.section-steps .bottom {
  display: flex;
  position: relative;
  margin: -5% -15px 0;
}
.section-steps .bottom .col {
  position: relative;
}
.section-steps .bottom .col .count {
  font-family: "Novelist";
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  line-height: normal;
  letter-spacing: 0.01em;
  color: #000;
  margin-left: 20px;
}
.section-steps .bottom .col .text {
  padding: 8px 20px;
  font-family: "SONGER SemiExpanded";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.03em;
}
.section-steps .btn {
  position: relative;
  margin: 100px auto 0;
  padding: 4px 80px;
}
.section-steps__item {
  position: relative;
  flex-basis: 33%;
  background-size: cover;
  padding: 39px 5px 173px;
  z-index: 1;
}
.section-steps__item:before {
  content: "";
  position: absolute;
  width: 150%;
  height: 100%;
  background-image: url("../img/folders.svg");
  background-size: cover;
  background-repeat: no-repeat;
  left: -47%;
  z-index: -1;
  top: 0;
}

.decorate-image {
  display: none;
}

.section-team {
  background-color: #FFF6F0;
  padding-bottom: 0;
}
.section-team .container-full .heading-title {
  font-family: "Novelist";
  font-style: normal;
  font-weight: 400;
  font-size: 220px;
  line-height: 120px;
  text-align: center;
  letter-spacing: -0.03em;
  margin: 0;
}
.section-team .container-full .heading-title-img {
  max-width: 456px;
  width: 100%;
  margin: 0 auto;
  display: flex;
}
.section-team .container-full .team-wrapper {
  width: 100%;
  display: flex;
}
.section-team .container-full .team-wrapper .item {
  flex: 1;
  position: relative;
}
.section-team .container-full .team-wrapper .item .bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}
.section-team .container-full .team-wrapper .item .thumb {
  position: absolute;
  top: 8%;
  left: 6%;
  right: 6%;
  bottom: 15%;
  border-radius: 2px;
}
.section-team .container-full .team-wrapper .item .thumb:before {
  display: none;
}
.section-team .container-full .team-wrapper .item h6 {
  text-transform: uppercase;
  font-family: "Druk Cyr";
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 33px;
  text-align: right;
  letter-spacing: -0.006em;
  position: absolute;
  right: 20px;
  bottom: 4%;
}
.section-team .container-full .team-wrapper .item:nth-child(2) {
  transform: rotate(2deg);
}
.section-team .container-full .team-wrapper .item:nth-child(3) {
  transform: rotate(-1deg);
}
.section-team .container-full .team-wrapper .item:nth-child(5) {
  transform: rotate(2deg);
}
.section-team .container-full .team-wrapper .item:nth-child(6) {
  transform: rotate(-3.54deg);
}
.section-team .container-full .team-wrapper .item:before {
  content: "";
  display: block;
  padding-bottom: 120%;
}
.section-team .container-full .btn {
  margin: 20px 0 0 auto;
}
.section-team .marquee {
  margin-top: 80px;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  background-color: #000000;
  height: 24px;
  width: 100%;
  display: flex;
  align-items: center;
}
.section-team .marquee video {
  height: 24px;
  width: 100vw;
  object-fit: cover;
  object-position: center;
}

.back-on-top {
  position: fixed;
  right: 16px;
  bottom: 12px;
}
.back-on-top svg {
  transition: 0.3s;
  height: 57px;
  width: 45px;
}
.back-on-top:hover svg {
  transform: translateY(-10px);
}

.list_animation p {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.list_animation p.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1140px) and (max-width: 2000px) {
  .section-about {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
  }
  .section-our-product {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
  }
  .section-models {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0;
  }
  .section-steps {
    min-height: calc(100vh - 60px);
  }
  .section-team {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
}
.only_desktop {
  display: block;
}

@media (min-width: 1140px) {
  .only_tablet {
    display: none !important;
  }
}
@media (max-width: 1140px) {
  .container,
  header .container .container-inner-menu {
    max-width: 800px;
  }
  .section-hero .container .heading-title {
    font-size: 120px;
    line-height: 95px;
  }
  .section-hero .container .subtitle {
    font-size: 23px;
  }
  .section-about {
    position: relative;
    overflow: hidden;
    padding: 80px 0 50px;
  }
  .section-about .container .left {
    display: none;
  }
  .section-about .container .right {
    width: 100%;
  }
  .section-about .container .right .heading-title {
    font-size: 160px;
    line-height: 140px;
    text-align: center;
  }
  .section-about .container .right .list p {
    font-size: 50px;
    line-height: 70px;
    text-align: center;
  }
  .section-about .bg_top,
  .section-about .bg_bottom {
    position: absolute;
    transform: translateY(-50%) translateX(-50%);
    width: 120%;
    left: 50%;
  }
  .section-about .bg_top {
    top: 30px;
  }
  .section-about .bg_bottom {
    transform: translateY(50%) translateX(-50%);
    bottom: -60px;
  }
  .section-our-product .container .heading-title {
    font-size: 100px;
    line-height: 50px;
  }
  .section-models .container .heading-title {
    font-size: 115px;
  }
  .section-models .container .wrapper {
    gap: 20px;
  }
  .section-models .container .wrapper .col:first-child {
    width: 70%;
  }
  .section-models .container .wrapper .col:last-child {
    width: 30%;
  }
  .section-steps .container .top .heading-title {
    font-size: 130px;
  }
  .section-steps .container .top .heading-title span {
    font-size: 140px;
  }
  .section-steps .container .bottom:before {
    background-image: url("../img/folders_tablet.svg");
    background-position: top center;
    top: -45px;
    min-width: auto;
  }
  .section-steps .container .bottom {
    margin: 0 -15px;
    gap: 5px;
  }
  .section-steps .container .bottom .col .text {
    font-size: 14px;
    line-height: 17px;
    padding: 10px;
    background-color: #FFF6F0;
  }
  .section-steps .container .bottom .col:nth-child(1) {
    width: 30%;
  }
  .section-steps .container .bottom .col:nth-child(2) {
    width: 46%;
    text-align: center;
  }
  .section-steps .container .bottom .col:nth-child(3) {
    width: 24%;
  }
  .section-steps .container .bottom .col:nth-child(2) .count {
    right: 145px;
  }
  .section-steps .container.w-100 {
    max-width: 100%;
  }
  .section-team .container-full .heading-title {
    margin-top: 100px;
    font-size: 150px;
  }
  .section-team .container-full .heading-title-img {
    max-width: 393px;
  }
  .section-team .container-full .team-wrapper .item h6 {
    font-size: 16px;
    line-height: normal;
    right: 12px;
    bottom: 5px;
  }
  .section-team .container-full .team-wrapper .item .thumb {
    top: 15px;
    left: 8px;
    right: 8px;
    bottom: 25px;
    border-radius: 3px;
  }
  .section-team .container-full .decorate-image {
    display: none;
  }
  .bigger-container {
    max-width: 1145px;
  }
}
@media (min-width: 800px) {
  .only_mobile {
    display: none !important;
  }
}
@media (max-width: 801px) {
  header .container .container-inner {
    gap: 10px;
  }
  header .container .container-inner .buttons {
    width: 100%;
  }
  header .container .container-inner .buttons .lang {
    margin-right: auto;
  }
  header .container .container-inner .buttons .lang li a {
    font-size: 14px;
  }
  .container,
  header .container .container-inner-menu {
    max-width: 100%;
  }
  header .container .container-inner .logo img {
    height: auto;
    width: 70px;
  }
  header .container .container-inner-menu nav ul li {
    line-height: normal;
  }
  header .container .container-inner-menu nav ul li a {
    font-size: 18px;
    line-height: 16px;
  }
  header .container .container-inner .buttons .lang a {
    display: flex;
    align-items: center;
  }
  header .container .container-inner .buttons .lang a svg {
    height: 15px;
    width: 25px;
  }
  .section-hero .container {
    gap: 20px;
  }
  .section-hero .container .heading-title {
    font-size: 120px;
    line-height: 0.8;
  }
  .section-hero .container .subtitle:after {
    height: 17px;
    width: 224px;
    left: 50%;
    transform: translateX(-50%);
  }
  .section-about {
    padding-top: 130px;
    padding-bottom: 70px;
  }
  .section-about .container .right .heading-title {
    font-size: 100px;
    line-height: normal;
  }
  .section-static-header .container .lang.only_mobile {
    margin-right: auto;
    margin-left: 40px;
  }
  .section-static-header .container .lang.only_desktop,
  .section-models .container .wrapper .col img.only_desktop,
  .section-about .bg_top.only_tablet,
  .section-our-product .container .buttons .btn {
    display: none;
  }
  .section-about .bg_top.only_mobile {
    top: 80px;
    width: 343px;
  }
  .section-about .container .right .desc {
    font-size: 14px;
    letter-spacing: -1px;
  }
  .section-about .container .right .desc span {
    font-size: 24px;
  }
  .section-about .container .right .heading-title:after {
    width: 338px;
  }
  .section-about .container .right .list {
    position: relative;
    z-index: 2;
  }
  .section-about .container .right .list p {
    font-size: 28px;
    line-height: 50px;
  }
  .section-about .bg_bottom {
    bottom: 40px;
    width: 343px;
  }
  .section-our-product {
    padding-bottom: 20px;
  }
  .section-our-product .container .heading-title {
    font-size: 90px;
    line-height: 80px;
    text-align: left;
    margin-bottom: 10px;
  }
  .section-our-product .container .desc {
    text-align: left;
    font-size: 14px;
    margin-bottom: 0;
  }
  .section-our-product .container .list p {
    text-align: right;
    font-size: 40px;
    line-height: 50px;
  }
  .section-our-product .container .btn.only_mobile {
    margin: 30px auto;
  }
  .section-our-product .container .buttons img {
    margin-top: 30px;
    max-width: 103px;
  }
  .section-models .container .heading-title {
    font-size: 80px;
    line-height: 65px;
    text-align: center;
  }
  .section-models .container .wrapper {
    flex-direction: column;
  }
  .section-models .container .wrapper .col {
    width: 100% !important;
    gap: 10px;
  }
  .section-models .container .wrapper .col p {
    font-size: 65px;
    line-height: 1;
  }
  .section-models .container .wrapper .col img {
    width: calc(100% + 30px);
    margin: 0 -15px;
  }
  .section-models .marquee {
    margin-top: 10px;
  }
  .section-advantages .container .heading-title {
    font-size: 80px;
    line-height: 90px;
    text-align: left;
    margin-bottom: 50px;
  }
  .section-advantages .container .heading-title:after {
    height: 18px;
    width: 248px;
    left: 0;
    top: 85px;
  }
  .section-advantages .container .text h6 {
    font-size: 18px;
    line-height: 23px;
  }
  .section-advantages .container .text p {
    font-size: 14px;
    line-height: 17px;
  }
  .section-advantages .container .text p br {
    display: none;
  }
  .section-advantages .container .text:nth-child(1) {
    max-width: 315px;
    text-align: left;
  }
  .section-advantages .container .text:nth-child(1) h6,
  .section-advantages .container .text:nth-child(1) p {
    margin: 0;
  }
  .section-advantages .container .text:nth-child(2) {
    margin-top: 85px;
  }
  .section-advantages .container .text:nth-child(2) p {
    margin: 0;
  }
  .section-advantages .container .text:nth-child(3) {
    margin-top: 50px;
    text-align: left;
  }
  .section-advantages .container .text:nth-child(3) h6 {
    text-indent: 0;
  }
  .section-advantages .container .text:nth-child(3) p {
    text-indent: 0;
  }
  .section-advantages .container .text:nth-child(3):after {
    height: 13px;
    width: 245px;
    margin: 8px 0 0;
    position: static;
  }
  .section-advantages .container .text:nth-child(4) {
    margin-top: 50px;
    text-align: right;
  }
  .section-advantages .container .text:nth-child(5) {
    margin-top: 50px;
    text-align: left;
  }
  .section-advantages .container .text:nth-child(5):after {
    display: none;
  }
  .section-advantages .container .text:nth-child(6) {
    margin-top: 120px;
    text-align: right;
  }
  .section-advantages .container .text:nth-child(6) h6,
  .section-advantages .container .text:nth-child(6) p {
    margin: 0;
  }
  .section-advantages .container .text:nth-child(6):after {
    content: "";
    display: block;
    height: 22px;
    width: 203px;
    background-image: url("../img/svg/line-5.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-top: 10px;
    margin-left: auto;
  }
  .section-advantages .container .text:nth-child(7) {
    margin: 50px 0 0;
  }
  .section-advantages .container .text:nth-child(7) h6 {
    margin: 0;
  }
  .section-advantages .container .btn {
    margin: 50px auto;
  }
  .section-advantages .container .chain-1 {
    top: 0;
    transform: rotate(18.65deg);
    width: 375px;
  }
  .section-advantages .container .chain-2 {
    bottom: 280px;
    width: 450px;
    left: 50%;
    transform: translateX(-50%) rotate(-10deg);
  }
  .section-steps .container .top .heading-title span {
    font-size: 80px;
    line-height: 40px;
  }
  .section-steps .container .top .heading-title {
    font-size: 60px;
    line-height: 60px;
  }
  .section-steps .container .bottom {
    flex-direction: column;
    gap: 0;
  }
  .section-steps .container .bottom .col .text {
    background: none;
  }
  .section-steps .container .bottom:before {
    background-image: url("../img/folders_mobile.svg");
  }
  .section-steps .container .bottom .col:nth-child(1) {
    height: 100px;
  }
  .section-steps .container .bottom .col:nth-child(1) .text {
    text-align: right;
  }
  .section-steps .container .bottom .col:nth-child(2) {
    height: 135px;
  }
  .section-steps .container .bottom .col:nth-child(2) .text {
    text-align: center;
  }
  .section-steps .container .bottom .col:nth-child(3) {
    height: 100px;
  }
  .section-steps .container .bottom .col:nth-child(1),
  .section-steps .container .bottom .col:nth-child(2),
  .section-steps .container .bottom .col:nth-child(3) {
    width: 100%;
    margin-bottom: 40px;
  }
  .section-steps .container .bottom .col:nth-child(2) .count {
    right: 170px;
  }
  .section-steps .container .bottom .col:nth-child(3) {
    margin: 0;
  }
  .section-steps .container .btn {
    margin-top: 24px;
  }
  .section-team .container-full .heading-title {
    font-size: 80px;
    line-height: 60px;
    margin: 0;
  }
  .section-team .container-full .heading-title-img {
    max-width: 262px;
  }
  .section-team .container-full .team-wrapper {
    overflow: scroll;
    margin: 0 -15px;
    width: calc(100% + 30px);
  }
  .section-team .container-full .team-wrapper .item {
    min-width: 300px;
    max-width: 300px;
    transform: none !important;
  }
  .section-team .container-full .team-wrapper .item .thumb {
    top: 35px;
    left: 20px;
    right: 20px;
    bottom: 65px;
    border-radius: 3px;
  }
  .section-team .container-full .team-wrapper .item h6 {
    font-size: 30px;
    right: 20px;
    bottom: 20px;
  }
  .section-team .container-full .btn {
    margin: 40px auto 0;
  }
  .section-team .marquee {
    margin-top: 40px;
  }
  .section-team .container-full .decorate-image.mob-block {
    display: none;
  }
  .section-team .container-full .decorate-image {
    display: block;
    text-align: center;
    margin-top: 58px;
  }
  .section-team .container-full .decorate-image img {
    width: 100%;
    object-fit: contain;
  }
  footer {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
  }
  footer .container {
    position: static;
  }
  footer .container .inner .heading-title {
    font-size: 65px;
    line-height: normal;
    padding-top: 60px;
    margin-bottom: -28px;
  }
  footer .container .bg {
    position: absolute;
    height: 100%;
    left: 0;
    right: 0;
    bottom: -15px;
  }
  footer .container .inner {
    position: relative;
    padding: 0;
  }
  footer .container .inner p {
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 28px 0;
    margin: 28px 0;
  }
  footer .container .inner p a {
    white-space: nowrap;
  }
}
@media (max-width: 550px) {
  .section-team .container-full .decorate-image.mob-block {
    display: block;
    margin-top: 0;
    margin-bottom: 10px;
  }
  .section-advantages {
    padding-top: 17px;
  }
  .section-our-product {
    min-height: calc(100vh - 60px);
    padding-top: 71px;
  }
  .section-our-product .container .buttons img {
    margin-top: 0;
  }
  .section-steps {
    min-height: calc(100vh - 32px);
  }
  .section-team {
    min-height: calc(100vh - 60px);
  }
  .section-about .bg_top.only_mobile,
  .section-about .bg_bottom {
    width: 100%;
  }
  .section-steps .container .bottom .col .count {
    top: -35px;
  }
  .section-steps .container .bottom .col:nth-child(1) {
    height: 93px;
  }
  .section-steps .container .bottom .col:nth-child(2) {
    height: 135px;
  }
  .section-steps .container .bottom .col:nth-child(3) .count {
    right: 40px;
  }
  .section-hero .container .heading-title {
    font-size: 60px;
  }
  .section-hero .container .subtitle {
    font-size: 17px;
    line-height: 20px;
  }
  .section-hero .container {
    padding: 0;
    width: calc(100% - 25px);
  }
  .section-hero .desc {
    display: none;
  }
  .section-models .container .heading-title {
    font-size: 95px;
    line-height: 0.8;
  }
}
.testimonials {
  padding-block: 85px 60px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 769px) {
  .testimonials {
    padding-block: 20px;
  }
}
.testimonials__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.testimonials__title {
  text-align: center;
}
.testimonials__title h1, .testimonials__title h2, .testimonials__title h3, .testimonials__title h4, .testimonials__title h5, .testimonials__title h6 {
  font-size: clamp(14px, 14.9122807018vw, 170px);
  font-family: "Novelist", sans-serif;
  font-weight: 300;
}
.testimonials__list {
  display: flex;
  overflow: visible !important;
}
.testimonials__list-item {
  position: relative;
  z-index: 1;
  width: 335px;
  height: 285px;
  padding: 95px 15px 15px;
}
.testimonials__list-item:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-image: url("../img/folder.svg");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}
.testimonials__list-item-title {
  font-size: 20px;
  font-weight: bold;
  font-family: "SONGER SemiExpanded", sans-serif;
  padding-bottom: 10px;
  margin-bottom: 32px;
  border-bottom: 2px solid #000;
}
.testimonials__list-item-content {
  font-family: "Nimbus Sans L", sans-serif;
  font-size: 20px;
  letter-spacing: -0.9px;
}
.testimonials .swiper-slide {
  transition: transform 0.4s ease, opacity 0.4s ease;
  display: flex;
  justify-content: center;
}
.testimonials .swiper-slide {
  z-index: 1;
}
.testimonials .swiper-slide-active {
  z-index: 5;
}

.section-advantages {
  position: relative;
  padding-top: 30px;
  padding-bottom: 0;
}
.section-advantages:before {
  content: "";
  position: absolute;
  width: 510px;
  height: 235px;
  background-image: url("../img/benefit1.png");
  background-repeat: no-repeat;
  background-size: contain;
  left: 0;
  top: 10%;
}
@media screen and (max-width: 769px) {
  .section-advantages:before {
    width: 250px;
  }
}
.section-advantages:after {
  content: "";
  position: absolute;
  width: 597px;
  height: 170px;
  background-image: url("../img/benefit2.png");
  background-repeat: no-repeat;
  background-size: contain;
  right: 0;
  top: -8%;
}
@media screen and (max-width: 769px) {
  .section-advantages:after {
    width: 250px;
    top: -2%;
  }
}
.section-advantages .heading-title {
  font-family: "Druk Cyr", sans-serif;
  font-weight: 500;
  font-size: 160px;
  text-align: center;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #000;
  position: relative;
  line-height: 1;
  margin-bottom: 40px;
  padding-inline: 15px;
}
@media screen and (max-width: 801px) {
  .section-advantages .heading-title {
    font-size: 80px;
    text-align: left;
  }
}
.section-advantages .wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 55px;
  margin-top: 158px;
}
@media screen and (max-width: 1050px) {
  .section-advantages .wrapper {
    padding-inline: 15px;
    margin-top: 100px;
  }
}
.section-advantages .text {
  position: relative;
  z-index: 1;
  width: 100%;
}
.section-advantages .text:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 72px;
  left: 0;
  bottom: 110%;
  background-image: url("../img/line-adv.svg");
  background-size: cover;
}
@media screen and (max-width: 1050px) {
  .section-advantages .text:before {
    width: 106%;
    height: 40px;
    bottom: 104%;
  }
}
.section-advantages .text h6 {
  font-family: "SONGER SemiExpanded";
  font-weight: 700;
  font-size: 23px;
  line-height: 23px;
  letter-spacing: -0.01em;
}
.section-advantages .text p {
  margin: 8px 0 0;
  font-family: "Nimbus Sans L";
  font-weight: 400;
  font-size: 20px;
  line-height: 20px;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 769px) {
  .section-advantages .text p {
    font-size: 17px;
  }
}
.section-advantages .btn {
  margin: 0 40px 0 auto;
  padding: 4px 80px;
  position: relative;
  z-index: 1;
}

.section-faq {
  padding-top: 100px;
  padding-bottom: 30px;
}
.section-faq .logo {
  display: flex;
  margin: 21px auto 33px;
  width: 100%;
  max-width: 96px;
}
.section-faq .container {
  display: flex;
  gap: 20px;
}
.section-faq .container .heading-title {
  font-family: "Druk Cyr";
  font-style: normal;
  font-weight: 500;
  font-size: 200px;
  line-height: 185px;
  letter-spacing: -0.02em;
  position: relative;
  margin-bottom: 15px;
}
.section-faq .container .faq-wrapper .heading-subtitle {
  font-family: "SONGER SemiExpanded";
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 53px;
  letter-spacing: -0.006em;
  position: relative;
  margin-bottom: 30px;
}
.section-faq .container .faq-wrapper .heading-subtitle:after {
  content: "";
  display: block;
  height: 19px;
  width: 400px;
  background-image: url("../img/svg/line-6.svg");
  background-position: top center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
}
.section-faq .container .faq-wrapper .faq-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 40px;
  margin-top: 50px;
}
.section-faq .container .faq-wrapper .faq-inner .faq-item {
  width: calc(50% - 20px);
  cursor: pointer;
}
.section-faq .container .faq-wrapper .faq-inner .faq-item h6 {
  font-family: "Nimbus Sans L";
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 18px;
  letter-spacing: -0.006em;
  position: relative;
  padding-right: 20px;
  margin-bottom: 7px;
}
.section-faq .container .faq-wrapper .faq-inner .faq-item h6:after {
  content: "";
  display: block;
  height: 18px;
  width: 12px;
  background-image: url("../img/icons/arrow.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  transition: 0.3s;
}
.section-faq .container .faq-wrapper .faq-inner .faq-item .faq-content {
  display: none;
}
.section-faq .container .faq-wrapper .faq-inner .faq-item .faq-content p {
  font-family: "Nimbus Sans L";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  letter-spacing: -0.006em;
  margin: 0;
}
.section-faq .container .faq-wrapper .faq-inner .faq-item.active .faq-title:after {
  transform: rotate(180deg);
}
.section-faq .line {
  display: flex;
  margin: 285px auto 0;
  width: 100%;
  max-width: 650px;
}

@media (min-width: 1140px) and (max-width: 2000px) {
  .section-faq {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
  }
}
@media (max-width: 1140px) {
  .section-faq .container .heading-title {
    font-size: 200px;
  }
  .section-faq .container .faq-wrapper .faq-inner {
    gap: 30px;
    margin-top: 50px;
  }
  .section-faq .container .faq-wrapper .faq-inner .faq-item {
    width: 100%;
  }
}
@media (max-width: 801px) {
  .section-faq .logo {
    margin-left: 15px;
  }
  .section-faq .container {
    position: relative;
  }
  .section-faq .container .heading-title {
    font-size: 150px;
    position: absolute;
    margin: 0;
    top: -110px;
    right: 0;
  }
  .section-faq .container .faq-wrapper {
    margin-top: 22px;
  }
  .section-faq .container .faq-wrapper .heading-subtitle {
    text-align: center;
    max-width: 250px;
    font-size: 23px;
    line-height: normal;
  }
  .section-faq .container .faq-wrapper .heading-subtitle:after {
    height: 13px;
    width: 284px;
  }
  .section-faq .line {
    display: none;
  }
}
@media (max-width: 550px) {
  .section-faq {
    min-height: calc(100vh - 60px);
  }
}

/*# sourceMappingURL=style.css.map */
