:root {
  --primary: #01c7fc;
  --main: #131313;
  --white: #fdfdfd;
  --black: #000;
  --gray: #949494;
  --main-font: "Nunito Sans", sans-serif;
}

html,
body {
  scroll-behavior: smooth;
}


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

button {
  outline: none;
}

button:focus {
  outline: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #fff;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

/***
====================================================================
Global Settings
====================================================================
   ***/
body {
  font-family: var(--main-font);
  font-size: 20px;
  color: var(--gray);
  line-height: 35px;
  font-weight: 400;
  background: var(--black);
}
body.active {
  overflow: hidden;
}

a {
  text-decoration: none;
  opacity: 1;
  color: var(--white);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  cursor: pointer;
}
a:hover {
  opacity: 0.88;
}

ul li {
  list-style: none;
}

.auto__container {
  position: relative;
  max-width: 1590px;
  margin: 0 auto;
  padding: 0 40px;
}

h1 {
  font-weight: 300;
  font-size: 100px;
  line-height: 100%;
}
h1.sm {
  font-size: 75px;
  line-height: 120%;
}

h2 {
  font-weight: 300;
  font-size: 75px;
  line-height: 120%;
  color: var(--white);
}

h3 {
  font-size: 40px;
  line-height: 120%;
  font-weight: 400;
}

h4 {
  font-size: 35px;
  line-height: 120%;
  font-weight: 400;
}

h5 {
  font-size: 30px;
  line-height: 120%;
  font-weight: 400;
}

h6 {
  font-size: 25px;
  line-height: 120%;
  font-weight: 600;
}

p.big {
  font-size: 25px;
  line-height: 130%;
}
p.ex {
  font-size: 23px;
  line-height: 130%;
}

.main {
  overflow: hidden;
  padding-top: 149px;
}
.main.sm {
  padding: 0;
}

.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  font-family: var(--main-font);
  font-size: 22px;
  line-height: 100%;
  border-radius: 27px;
  font-weight: 400;
  padding: 15px 30px;
  min-width: 284px;
  text-transform: uppercase;
}
.button.primary {
  color: var(--white);
  position: relative;
  background-color: transparent;
}
.button.primary:hover {
  opacity: 1;
  color: var(--white);
}
.button.primary:hover::before {
  border-color: var(--primary);
  background-color: var(--primary);
}
.button.primary::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(253, 253, 253, 0.2);
  /*-webkit-backdrop-filter: blur(10px);*/
  /*        backdrop-filter: blur(10px);*/
  border: 2px solid var(--white);
  border-radius: 27px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  pointer-events: none;
}
.button.primary b {
  font-weight: 400;
  position: relative;
  z-index: 1;
}
.button.secondary {
  background-color: var(--primary);
  color: var(--white);
}
.button.secondary:hover {
  opacity: 1;
  color: var(--main);
  background-color: var(--white);
}
.button.solid {
  color: var(--white);
  background-color: transparent;
  border: 1px solid var(--white);
}
.button.solid:hover {
  opacity: 1;
  color: var(--primary);
  border-color: var(--primary);
}
.button.base {
  color: var(--white);
  min-width: unset;
  padding: 5px 12px;
  background-color: transparent;
}
.button.base:hover {
  color: var(--primary);
}
.button.base span {
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 15px;
}
.button.base span img {
  width: 100%;
}

.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.social a {
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fdfdfd;
  margin-right: 20px;
}
.social a:last-child {
  margin: 0;
}
.social a.big {
  width: 28px;
  height: 28px;
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}
.social a.sm {
  width: 14px;
}
.social a:hover {
  opacity: 1;
  color: var(--primary);
}
.social a svg {
  width: 100%;
  height: 100%;
}

.input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.input input,
.input textarea {
  width: 100%;
  font-size: 22px;
  line-height: 100%;
  color: var(--white);
  font-family: var(--main-font);
  padding: 18px 0;
  resize: unset;
  border-bottom: 2px solid #535353;
  background-color: transparent;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.input input:focus,
.input textarea:focus {
  border-color: var(--primary);
}
.input input::-webkit-input-placeholder, .input textarea::-webkit-input-placeholder {
  color: var(--white);
}
.input input::-moz-placeholder, .input textarea::-moz-placeholder {
  color: var(--white);
}
.input input:-ms-input-placeholder, .input textarea:-ms-input-placeholder {
  color: var(--white);
}
.input input::-ms-input-placeholder, .input textarea::-ms-input-placeholder {
  color: var(--white);
}
.input input::placeholder,
.input textarea::placeholder {
  color: var(--white);
}

.spin__title p {
  font-size: 25px;
  line-height: 100%;
  font-weight: 400;
  color: var(--gray);
  margin-bottom: 18px;
}
.spin__box {
  width: 190px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 14px;
  position: relative;
}
.spin__box::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(253, 253, 253, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 2px solid var(--white);
  border-radius: 27px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.spin__box button {
  position: relative;
  z-index: 1;
  width: 35px;
  height: 35px;
  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;
  text-align: center;
  background-color: transparent;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  font-family: var(--main-font);
  font-size: 25px;
  line-height: 100%;
  font-weight: 600;
  color: var(--white);
}
.spin__box button:hover {
  color: var(--primary);
}
.spin__box input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-family: var(--main-font);
  font-size: 25px;
  line-height: 100%;
  font-weight: 600;
  background-color: transparent;
  padding: 10px 60px;
  text-align: center;
  color: var(--white);
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 12;
}
.header .auto__container {
  max-width: 1710px;
}
.header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-animation-name: sticky;
          animation-name: sticky;
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
  -webkit-box-shadow: 0px 4px 4px 0px #00000021;
          box-shadow: 0px 4px 4px 0px #00000021;
  background-color: var(--black);
}
.header__inner {
  padding: 42px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__inner-logo {
  font-size: 65px;
  line-height: 100%;
  font-weight: 600;
  color: var(--white);
}
.header__inner-logo:hover {
  opacity: 1;
  color: var(--primary);
}
.header__inner-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__inner-buttons .button {
  margin-right: 40px;
}

@-webkit-keyframes sticky {
  0% {
    top: -60px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}

@keyframes sticky {
  0% {
    top: -60px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  z-index: 12;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.nav.active {
  opacity: 1;
  pointer-events: all;
}
.nav__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.nav__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0.45%, #000000), color-stop(33.76%, rgba(0, 0, 0, 0)));
  background: linear-gradient(180deg, #000000 0.45%, rgba(0, 0, 0, 0) 33.76%);
  opacity: 0.51;
}
.nav__bg::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(65.86deg, #000000 16.43%, rgba(0, 0, 0, 0) 106.16%);
}
.nav__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.nav__inner {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 2;
}
.nav__inner-logo {
  position: relative;
  z-index: 2;
  font-size: 65px;
  line-height: 100%;
  font-weight: 600;
  color: var(--white);
}
.nav__inner-logo:hover {
  opacity: 1;
  color: var(--primary);
}
.nav__inner-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: calc(100% - 240px);
  max-width: 350px;
}
.nav__inner-links li {
  margin-bottom: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.nav__inner-links li:last-child {
  margin: 0;
}
.nav__inner-links li a {
  font-size: 35px;
  line-height: 120%;
  font-weight: 400;
  font-family: var(--main-font);
  color: #ffffff;
    white-space: nowrap;
}
.nav__inner-links li a.active {
  color: var(--primary);
}
.nav__inner-links li a:hover {
  opacity: 1;
  color: var(--primary);
}
.navContent {
  width: 50%;
  position: relative;
  padding: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.navContent__inner {
  width: 100%;
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1000px;
}
.navContent::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(253, 253, 253, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  content: "";
  pointer-events: none;
}
.navInfo {
  width: 50%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 40px 50px;
}
.navInfo__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.navInfo .button {
  margin-left: 36px;
}
.navClose {
  width: 62px;
  height: 62px;
  position: absolute;
  top: 45px;
  right: 45px;
  cursor: pointer;
}
.navClose:hover {
  opacity: 1;
}
.navClose:hover::before {
  border-color: var(--primary);
  background-color: var(--primary);
}
.navClose::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(253, 253, 253, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  content: "";
  border: 2px solid #ffffff;
  border-radius: 50%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.navClose span {
  width: 50%;
  height: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}
.navClose span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.navClose span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.burger {
  display: block;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  position: relative;
  width: 60px;
  height: 60px;
}
.burger:hover {
  opacity: 0.8;
}
.burger::before {
  top: 18%;
  width: 100%;
  height: 5px;
  background-color: var(--white);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -moz-ransform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
.burger span {
  top: 50%;
  width: 100%;
  height: 5px;
  background-color: var(--white);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  -moz-ransform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.burger::after {
  bottom: 18%;
  width: 100%;
  height: 5px;
  background-color: var(--white);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -moz-ransform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
.burger.active::before {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
.burger.active span {
  opacity: 0;
}
.burger.active::after {
  bottom: 50%;
  -webkit-transform: translate(-50%, 50%) rotate(-45deg);
  transform: translate(-50%, 50%) rotate(-45deg);
}

.footer {
  padding-top: 100px;
}
.footer .auto__container {
  max-width: 1780px;
}
.footer__inner {
  border-bottom: 2px solid var(--primary);
  padding-bottom: 30px;
}
.footerMain {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footerMain__logo {
  font-size: 65px;
  line-height: 100%;
  font-weight: 600;
  color: var(--white);
}
.footerMain__logo:hover {
  opacity: 1;
  color: var(--primary);
}
.footerMain__links {
  width: calc(100% - 250px);
  max-width: 1310px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footerMain__links li {
  margin-right: 20px;
}
.footerMain__links li:last-child {
  margin: 0;
}
.footerMain__links li a {
  font-size: 25px;
  line-height: 120%;
  font-weight: 400;
  font-family: var(--main-font);
}
.footerMain__links li a.active {
  color: var(--primary);
}
.footerMain__links li a:hover {
  opacity: 1;
  color: var(--primary);
}

.copy__inner {
  padding: 28px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.copy__inner p {
  color: var(--white);
}
.copy__inner p b {
  font-weight: 400;
  text-transform: uppercase;
  color: var(--primary);
}

.intro {
  position: relative;
}
.intro .auto__container {
  max-width: 1680px;
}
.intro__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}
.intro__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0.45%, #000000), color-stop(33.76%, rgba(0, 0, 0, 0)));
  background: linear-gradient(180deg, #000000 0.45%, rgba(0, 0, 0, 0) 33.76%);
  opacity: 0.51;
}
.intro__bg::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(65.86deg, #000000 16.43%, rgba(0, 0, 0, 0) 106.16%);
}
.intro__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.intro__blur {
  position: absolute;
  top: 0;
  left: 0;
  width: 47%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.03);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  opacity: 1;
}
.intro__inner {
  padding: 50px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 396px;
}
.intro__inner h1 {
  color: var(--white);
}

.info {
  overflow: hidden;
}
.info.last {
  padding-bottom: 80px;
}
.info.big .infoItem {
  padding: 110px 40px 90px;
  border: unset;
}
.info.big .infoItem::before {
  display: none;
}
.info .auto__container {
  max-width: 1710px;
  padding: 0;
}
.info__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.infoItem {
  width: 33.3%;
  padding: 80px 40px 60px;
  min-height: 250px;
  color: var(--white);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  position: relative;
  border-right: 1px solid #535353;
}
.infoItem::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--primary);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  opacity: 0;
  pointer-events: none;
}
.infoItem:first-child::before {
  left: unset;
  right: 0;
  width: 30000px;
}
.infoItem:last-child {
  border: unset;
}
.infoItem:last-child::before {
  left: 0;
  width: 30000px;
}
.infoItem:hover {
  color: var(--white);
  opacity: 1;
}
.infoItem:hover::before {
  opacity: 1;
}
.infoItem__inner {
  padding-left: 70px;
  position: relative;
}
.infoItem span {
  position: absolute;
  top: -1%;
  left: 0;
  font-size: 84%;
}
.infoItem h5 {
  font-weight: 300;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.infoItem p {
  max-width: 363px;
}

.faq {
  padding: 15px 0 230px;
}
.faq__inner-title {
  max-width: 680px;
  margin: 0 auto 50px;
  text-align: center;
}
.faq__inner-col {
  width: 85%;
  max-width: 1100px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.faq__inner h2 {
  margin-bottom: 16px;
}
.faqItem {
  width: 100%;
  border-radius: 100px;
  position: relative;
  cursor: pointer;
  border: 2px solid var(--white);
  color: var(--white);
  margin-bottom: 32px;
  -webkit-transition: 0.1s ease;
  transition: 0.1s ease;
}
.faqItem:last-child {
  margin: 0;
}
.faqItem.active {
  border-radius: 40px;
  opacity: 1;
  border-color: var(--primary);
  color: var(--white);
  background-color: var(--primary);
}
.faqItem.active p {
  color: var(--white);
}
.faqItem.active .faqItem__head span {
  color: var(--white);
}
.faqItem:hover {
  opacity: 1;
  border-color: var(--primary);
  color: var(--white);
  background-color: var(--primary);
}
.faqItem:hover p {
  color: var(--white);
}
.faqItem:hover .faqItem__head span {
  color: var(--white);
}
.faqItem__head {
  position: relative;
  padding: 22px 65px 22px 45px;
}
.faqItem__head.active span {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.faqItem__head h5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.faqItem__head h5 b {
  margin-right: 40px;
  font-weight: 400;
}
.faqItem__head span {
  position: absolute;
  top: 50%;
  right: 35px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 25px;
  height: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  color: var(--white);
}
.faqItem__head span svg {
  width: 100%;
  height: 100%;
}
.faqItem__body {
  max-height: 0;
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  overflow: hidden;
  padding: 0 45px;
}
.faqItem__body.active {
  opacity: 1;
  max-height: 500px;
  padding: 0 45px 30px;
}
.faqItem p {
  color: var(--white);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.hero {
  position: relative;
  color: var(--white);
}
.hero .auto__container {
  max-width: 1710px;
}
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.hero__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0.45%, #000000), color-stop(33.76%, rgba(0, 0, 0, 0)));
  background: linear-gradient(180deg, #000000 0.45%, rgba(0, 0, 0, 0) 33.76%);
  opacity: 0.51;
}
.hero__bg::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(65.86deg, #000000 16.43%, rgba(0, 0, 0, 0) 106.16%);
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.hero__inner {
  min-height: 100vh;
  padding: 200px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.hero__inner-content {
  max-width: 730px;
}
.hero__inner-content p {
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero__inner-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.hero__inner h1 {
  margin-bottom: 50px;
}
.hero__inner .button {
  margin-right: 15px;
  position: relative;
}
.hero__inner .button:last-child {
  margin: 0;
}

.application {
  color: var(--white);
  margin-bottom: -1px;
  padding: 200px 0 80px;
}
.application.base {
  padding: 130px 0 260px;
  margin: 0;
}
.application.base .auto__container {
  max-width: 1600px;
}
.application.base .applicationContent {
  max-width: 560px;
}
.application .auto__container {
  max-width: 1760px;
}
.application__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.applicationForm {
  background-color: #111111;
  padding: 40px 45px 25px;
  width: calc(56% - 25px);
  max-width: 830px;
}
.applicationForm__row {
  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;
}
.applicationForm__foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-top: 34px;
}
.applicationForm .button {
  color: var(--white);
}
.applicationForm .input {
  width: calc(50% - 10px);
  max-width: 352px;
  margin-bottom: 10px;
}
.applicationForm .input:last-child {
  margin: 0;
}
.applicationForm .input.big {
  width: 100%;
  max-width: unset;
}
.applicationContent {
  width: calc(44% - 25px);
  max-width: 670px;
}
.applicationContent__title {
  max-width: 560px;
  margin-bottom: 35px;
}
.applicationContent__title p {
  color: var(--gray);
}
.applicationContent__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 40px;
}
.applicationContent__links a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 16px;
}
.applicationContent__links a:hover {
  opacity: 1;
  color: var(--primary);
}
.applicationContent__links a:last-child {
  margin: 0;
}
.applicationContent__links a span {
  width: 25px;
  height: 25px;
  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;
  margin-right: 10px;
}
.applicationContent__links a span.sm {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
.applicationContent__links a span.sm svg {
  width: 100%;
  height: 120%;
}
.applicationContent__links a span.med svg {
  width: 88%;
  height: 88%;
}
.applicationContent__links a span svg {
  width: 96%;
  height: 68%;
}
.applicationContent h2 {
  color: var(--white);
  margin-bottom: 5px;
}

.newsletter {
  padding: 90px 0 100px;
  background-color: var(--primary);
  color: var(--white);
}
.newsletter .auto__container {
  max-width: 1150px;
}
.newsletter__inner-title {
  text-align: center;
  margin-bottom: 36px;
}
.newsletter__inner h2 {
  margin-bottom: 12px;
}
.newsletterForm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.newsletterForm__input {
  width: calc(100% - 300px);
  max-width: 750px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.newsletterForm__input input {
  width: 100%;
  font-size: 18px;
  line-height: 100%;
  font-weight: 400;
  font-family: var(--main-font);
  color: var(--black);
  text-transform: uppercase;
  background-color: rgba(227, 227, 227, 0.78);
  border-radius: 4px;
  padding: 16px 25px;
}
.newsletterForm__input input::-webkit-input-placeholder {
  color: var(--black);
}
.newsletterForm__input input::-moz-placeholder {
  color: var(--black);
}
.newsletterForm__input input:-ms-input-placeholder {
  color: var(--black);
}
.newsletterForm__input input::-ms-input-placeholder {
  color: var(--black);
}
.newsletterForm__input input::placeholder {
  color: var(--black);
}
.newsletterForm .button:hover {
  background-color: var(--white);
  color: var(--primary);
}

.about {
  padding: 52px 0 190px;
}
.about.sm {
  padding: 52px 0 238px;
}
.about.rev {
  padding: 225px 0 238px;
}
.about.rev .aboutContent {
  padding: 0 0 0 40px;
}
.about .auto__container {
  max-width: 1920px;
  padding: 0;
}
.about__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.aboutImage {
  width: calc(50% - 25px);
  max-width: 867px;
}
.aboutImage__inner {
  padding-bottom: 67%;
  position: relative;
}
.aboutImage__inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.aboutContent {
  width: calc(50% - 25px);
  padding-right: 40px;
  max-width: 867px;
}
.aboutContent__inner {
  max-width: 707px;
}
.aboutContent h2 {
  margin-bottom: 16px;
  max-width: 550px;
}
.aboutContent p {
  margin-bottom: 24px;
}

.services {
  padding: 250px 0;
}
.services.sm {
  padding-top: 100px;
}
.services .auto__container {
  max-width: 1920px;
  padding: 0;
}
.services__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.servicesContent {
  width: calc(50% - 25px);
  max-width: 867px;
  padding-left: 40px;
}
.servicesContent__inner {
  max-width: 680px;
  margin: 0 0 0 auto;
}
.servicesContent__title {
  margin-bottom: 40px;
}
.servicesContent__title p {
  max-width: 680px;
}
.servicesContent__list {
  max-width: 666px;
}
.servicesContent h2 {
  margin-bottom: 10px;
}
.servicesImage {
  width: calc(50% - 25px);
  max-width: 867px;
}
.servicesImage__inner {
  padding-bottom: 67%;
  position: relative;
}
.servicesImage__inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.servicesItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 28px 35px 28px 5px;
  position: relative;
  cursor: pointer;
  border-bottom: 2px solid #535353;
  color: var(--white);
}
.servicesItem:last-child {
  border: unset;
}
.servicesItem:hover {
  opacity: 1;
  border-color: var(--primary);
  color: var(--primary);
}
.servicesItem h5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.servicesItem h5 b {
  margin-right: 40px;
  font-weight: 400;
  color: var(--gray);
}
.servicesItem > span {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 25px;
  height: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.servicesItem span svg {
  width: 100%;
  height: 100%;
}

.offer {
  position: relative;
  padding: 80px 0 190px;
  color: var(--white);
}
.offer.sm {
  padding-bottom: 115px;
}
.offer .auto__container {
  max-width: 1400px;
}
.offer__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 520px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  pointer-events: none;
}
.offer__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0.18%, #000000), color-stop(56.28%, rgba(0, 0, 0, 0)));
  background: linear-gradient(180deg, #000000 0.18%, rgba(0, 0, 0, 0) 56.28%);
  opacity: 0.51;
}
.offer__bg::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(65.86deg, #000000 16.43%, rgba(0, 0, 0, 0) 106.16%);
}
.offer__bg img {
  opacity: 0.6;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.offer__inner-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1270px;
  margin: 0 auto 90px;
}
.offer__inner-title {
  width: calc(50% - 15px);
  max-width: 546px;
}
.offer__inner-text {
  width: calc(50% - 15px);
  max-width: 558px;
}
.offer__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 -11px;
}
.offer__inner h2 {
  margin-bottom: 16px;
}
.offerItem {
  width: calc(33.3% - 22px);
  margin: 0 11px;
  position: relative;
}
.offerItem:hover {
  opacity: 1;
}
.offerItem:hover::before {
  opacity: 0.6;
}
.offerItem:hover .offerItem__content {
  opacity: 1;
}
.offerItem:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.offerItem::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--black);
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  z-index: 1;
}
.offerItem__inner {
  width: 100%;
  padding-bottom: 133%;
  position: relative;
  overflow: hidden;
}
.offerItem__inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.offerItem__content {
  padding: 20px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 2;
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.offerItem h5 {
  font-weight: 300;
  text-transform: uppercase;
  color: var(--white);
}

.realisation {
  position: relative;
  padding: 80px 0 40px;
}
.realisation.sm {
  padding: 120px 0;
}
.realisation.new {
  padding: 120px 0;
}
.realisation.new .realisation__bg {
  height: 100%;
}
.realisation.last {
  margin-bottom: 180px;
}
.realisation.base {
  padding: 20px 0 160px;
}
.realisation__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 540px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  pointer-events: none;
}
.realisation__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0.18%, #000000), color-stop(56.28%, rgba(0, 0, 0, 0)));
  background: linear-gradient(180deg, #000000 0.18%, rgba(0, 0, 0, 0) 56.28%);
  opacity: 0.51;
  z-index: 1;
}
.realisation__bg::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(65.86deg, #000000 16.43%, rgba(0, 0, 0, 0) 106.16%);
  z-index: 1;
}
.realisation__bg img {
  opacity: 0.6;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.realisation .auto__container {
  max-width: 1850px;
}
.realisation__inner {
  position: relative;
  z-index: 2;
}
.realisation__inner-name {
  margin-bottom: 30px;
}
.realisation__inner-title {
  text-align: center;
  color: var(--white);
  max-width: 1340px;
  margin: 0 auto 76px;
}
.realisation__inner-title:last-child {
  margin: 0 auto;
}
.realisation__inner-title p {
  margin-bottom: 24px;
}
.realisation__inner-buttons {
  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;
}
.realisation__inner-buttons .button {
  margin-right: 24px;
}
.realisation__inner-buttons .button:last-child {
  margin: 0;
}
.realisation__inner-foot {
  padding-top: 50px;
  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;
}
.realisation__inner-foot .button {
  margin-right: 20px;
}
.realisation__inner-foot .button:last-child {
  margin: 0;
}
.realisation__inner-slider {
  padding-bottom: 50px;
  position: relative;
  overflow: hidden;
  margin: 0 -11px;
}
.realisation__inner .swiper-buttons {
  position: absolute;
  bottom: 0;
  width: calc(100% - 22px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.realisation__inner .swiper-buttons button {
  width: 50% !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: unset !important;
  position: relative !important;
  top: unset !important;
  left: unset !important;
  right: unset !important;
  font-size: 19px;
  line-height: 100%;
  color: var(--white);
  font-family: var(--main-font);
  background-color: transparent;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  padding: 0 11px;
}
.realisation__inner .swiper-buttons button:hover {
  color: var(--primary);
}
.realisation__inner .swiper-buttons button:hover hr {
  background-color: var(--primary);
}
.realisation__inner .swiper-buttons button::after {
  display: none;
}
.realisation__inner .swiper-buttons button span {
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.realisation__inner .swiper-buttons button span svg {
  width: 100%;
  height: 100%;
}
.realisation__inner .swiper-buttons button b {
  font-weight: 600;
}
.realisation__inner .swiper-buttons button hr {
  width: calc(50% - 7px);
  height: 2px;
  background-color: #ffffff;
  content: "";
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.realisation__inner .swiper-buttons button span {
  margin: 0 14px 0 30px;
}
.realisation__inner .swiper-button-prev span svg {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.realisation__inner .swiper-button-next {
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
}
.realisation__inner .swiper-button-next span {
  margin: 0 30px 0 14px !important;
}
.realisation__inner h2 {
  margin-bottom: 16px;
}
.realisation__inner h2:last-child {
  margin: 0;
}
.realisationItem {
  margin: 0 11px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.realisationItem:hover {
  opacity: 1;
}
.realisationItem:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.realisationItem__inner {
  width: 100%;
  padding-bottom: 133%;
  position: relative;
  overflow: hidden;
}
.realisationItem__inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
    max-height: 400px;
  object-fit: cover;
  -o-object-fit: cover;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.contact {
  background-color: var(--primary);
  padding: 70px 0;
  color: var(--white);
}
.contact .auto__container {
  max-width: 1500px;
}
.contact__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.contactContent {
  width: calc(55% - 15px);
  max-width: 680px;
}
.contactContent h2 {
  color: var(--white);
  margin-bottom: 20px;
}
.contactContent p {
  margin-bottom: 30px;
}
.contactContent p:last-child {
  margin: 0;
}
.contactContent .button:hover {
  color: var(--main);
  border-color: var(--main);
}
.contactText {
  width: calc(45% - 15px);
  max-width: 680px;
}
.contactInfo {
  width: calc(45% - 15px);
  max-width: 480px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 0;
}
.contactInfo__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 40px;
}
.contactInfo__links a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 16px;
}
.contactInfo__links a:hover {
  opacity: 1;
  color: var(--main);
}
.contactInfo__links a:last-child {
  margin: 0;
}
.contactInfo__links a span {
  width: 25px;
  height: 25px;
  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;
  margin-right: 10px;
}
.contactInfo__links a span.sm {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
.contactInfo__links a span.sm svg {
  width: 100%;
  height: 120%;
}
.contactInfo__links a span.med svg {
  width: 88%;
  height: 88%;
}
.contactInfo__links a span svg {
  width: 96%;
  height: 68%;
}
.contactInfo .social a:hover {
  opacity: 1;
  color: var(--main);
}

.policy {
  padding: 194px 0 260px;
}
.policy .auto__container {
  max-width: 1560px;
}
.policy__inner-title {
  margin-bottom: 40px;
}
.policy__inner-title h2 {
  font-weight: 400;
}
.policy__inner-content p {
  color: var(--white);
}
.policy__inner-content p a {
  color: var(--primary);
}
.policy__inner-content p b {
  font-weight: 600;
}

.boutique {
  padding: 120px 0 165px;
  color: var(--white);
}
.boutique .auto__container {
  max-width: 1910px;
}
.boutique__inner-title {
  text-align: center;
  max-width: 924px;
  margin: 0 auto 70px;
}
.boutique__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -14px;
}
.boutique__inner-foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 50px;
}
.boutique__inner h2 {
  margin-bottom: 30px;
}
.boutique__inner h2:last-child {
  margin: 0;
}
.boutiqueItem {
  width: calc(25% - 28px);
  margin: 50px 14px;
}
.boutiqueItem:hover {
  opacity: 1;
}
.boutiqueItem:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.boutiqueItem__image {
  width: 100%;
  padding-bottom: 130%;
  position: relative;
  overflow: hidden;
  margin-bottom: 25px;
}
.boutiqueItem__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.boutiqueItem__content {
  padding: 25px 0;
  border-top: 2px solid var(--primary);
}
.boutiqueItem__content h5 {
  font-weight: 300;
  color: var(--primary);
}
.boutiqueItem__content h4 {
  margin-bottom: 10px;
  font-weight: 300;
  color: var(--white);
}

.product {
  padding: 180px 0 195px;
}
.product .auto__container {
  max-width: 1570px;
}
.product__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.productImage {
  width: calc(55% - 25px);
  max-width: 792px;
  overflow: hidden;
}
.productImage__inner {
  padding-bottom: 104%;
  position: relative;
  height: 100%;
}
.productImage__inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.productContent {
  width: calc(45% - 25px);
  max-width: 585px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.productContent__title {
  margin-bottom: 20px;
}
.productContent__title p {
  color: var(--main);
}
.productContent__text {
  padding-top: 30px;
  border-top: 2px solid var(--primary);
}
.productContent h2 {
  margin-bottom: 22px;
}
.productContent h3 {
  color: var(--primary);
}
.productContent .button {
  margin-bottom: 22px;
}
.productContent .spin {
  margin-bottom: 22px;
}

.basket {
  padding: 180px 0 170px;
}
.basket .auto__container {
  max-width: 1510px;
}
.basket__inner-content {
  margin-bottom: 64px;
}
.basket__inner-foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.basket__inner-total {
  color: var(--white);
}
.basket__inner-total h4 {
  margin-bottom: 10px;
}
.basket__inner-total p {
  color: var(--primary);
}
.basketItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 2px solid var(--primary);
}
.basketItem:last-child {
  margin: 0;
}
.basketItem__side {
  width: calc(50% - 25px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 520px;
}
.basketItem__side:last-child {
  max-width: 720px;
}
.basketItem__image {
  width: 240px;
  overflow: hidden;
  margin-right: 30px;
}
.basketItem__image-inner {
  padding-bottom: 83%;
  position: relative;
}
.basketItem__image-inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.basketItem__content {
  width: calc(100% - 270px);
  color: var(--white);
  max-width: 236px;
}
.basketItem__content h4 {
  margin-bottom: 20px;
}
.basketItem__content p {
  color: var(--primary);
}
.basketItem__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.basketItem__buttons .button {
  width: 100%;
  margin-bottom: 18px;
}
.basketItem__buttons .button:last-child {
  margin: 0;
}

@media (max-width: 1600px) {
  h1 {
    font-size: 90px;
  }
  h1.sm {
    font-size: 60px;
  }

  h2 {
    font-size: 60px;
  }

  h4 {
    font-size: 30px;
  }

  h5 {
    font-size: 25px;
  }

  p.big {
    font-size: 22px;
  }
  p.ex {
    font-size: 20px;
  }

  body {
    font-size: 18px;
    line-height: 175%;
  }

  .button {
    padding: 13px 24px;
    min-width: 240px;
  }

  .main {
    padding-top: 114px;
  }

  .header__inner {
    padding: 32px 0;
  }
  .header__inner-logo {
    font-size: 50px;
  }

  .nav__inner-links {
    width: calc(55% - 15px);
    max-width: 300px;
  }
  .nav__inner-links li a {
    font-size: 30px;
  }
  .nav__inner-logo {
    font-size: 50px;
  }
  .navContent {
    padding: 40px;
  }
  .navInfo {
    padding: 40px;
  }
  .navClose {
    top: 40px;
    right: 40px;
  }

  .burger {
    width: 50px;
    height: 50px;
  }
  .burger::before {
    height: 4px;
  }
  .burger::after {
    height: 4px;
  }
  .burger span {
    height: 4px;
  }

  .about {
    padding: 50px 0 160px;
  }
  .about.sm {
    padding: 50px 0 200px;
  }
  .about.rev {
    padding: 200px 0;
  }

  .services {
    padding: 200px 0;
  }
  .services.sm {
    padding-top: 80px;
  }
  .servicesContent__title {
    margin-bottom: 30px;
  }
  .servicesItem span {
    width: 22px;
    height: 20px;
  }
  .servicesItem h5 b {
    margin-right: 25px;
  }

  .info.big .infoItem {
    padding: 80px 40px 70px;
  }
  .info.last {
    padding-bottom: 60px;
  }
  .infoItem {
    padding: 60px 40px 50px;
  }

  .faq {
    padding-bottom: 170px;
  }

  .product {
    padding: 150px 0;
  }

  .newsletterForm__input {
    width: calc(100% - 260px);
    max-width: 800px;
  }

  .offer {
    padding: 80px 0 160px;
  }
  .offer__bg {
    height: 490px;
  }
  .offer__inner-top {
    margin-bottom: 70px;
  }

  .policy {
    padding: 150px 0 200px;
  }

  .boutique {
    padding: 100px 0 130px;
  }

  .basket {
    padding: 140px 0;
  }

  .footerMain__logo {
    font-size: 50px;
  }
  .footerMain__links {
    max-width: 1140px;
    width: calc(100% - 200px);
  }
  .footerMain__links li a {
    font-size: 22px;
  }
}
@media (max-width: 1450px) {
  h1 {
    font-size: 80px;
  }
}
@media (max-width: 1380px) {
  h1 {
    font-size: 70px;
  }
  h1.sm {
    font-size: 50px;
  }

  h2 {
    font-size: 50px;
  }

  h3 {
    font-size: 35px;
  }

  h4 {
    font-size: 25px;
  }

  h5 {
    font-size: 22px;
  }

  p.big {
    font-size: 20px;
  }
  p.ex {
    font-size: 18px;
  }

  .button {
    font-size: 18px;
    padding: 10px 20px;
    min-width: 200px;
  }
  .button.primary {
    padding: 13px 20px;
  }
  .button.secondary {
    padding: 13px 20px;
  }
  .button.base {
    padding: 2px 10px;
  }

  .social a {
    width: 20px;
    height: 20px;
    margin-right: 16px;
  }
  .social a.big {
    width: 24px;
    height: 24px;
  }
  .social a.sm {
    width: 12px;
  }

  .input input,
.input textarea {
    font-size: 18px;
  }

  .main {
    padding-top: 104px;
  }

  .header__inner-logo {
    font-size: 40px;
  }
  .header__inner-buttons .button {
    margin-right: 30px;
  }

  .nav__inner-links {
    max-width: 270px;
  }
  .nav__inner-links li a {
    font-size: 25px;
  }
  .navClose {
    width: 54px;
    height: 54px;
  }

  .burger {
    width: 40px;
    height: 40px;
  }
  .burger::before {
    height: 3px;
  }
  .burger::after {
    height: 3px;
  }
  .burger span {
    height: 3px;
  }

  .about.sm {
    padding: 40px 0 160px;
  }
  .about.rev {
    padding: 160px 0;
  }

  .realisation {
    padding: 60px 0 40px;
  }
  .realisation.sm {
    padding: 90px 0;
  }
  .realisation.new {
    padding: 90px 0;
  }
  .realisation.base {
    padding: 0 0 120px;
  }
  .realisation.last {
    margin-bottom: 150px;
  }
  .realisation__bg {
    height: 70%;
  }
  .realisation__inner-title {
    margin-bottom: 60px;
  }

  .services {
    padding: 150px 0;
  }
  .services.sm {
    padding-top: 60px;
  }
  .servicesContent__title {
    margin-bottom: 22px;
  }
  .servicesItem span {
    width: 18px;
    height: 16px;
  }
  .servicesItem h5 b {
    margin-right: 25px;
  }

  .contact {
    padding: 50px 0;
  }

  .application {
    padding: 150px 0 70px;
  }
  .application.base {
    padding: 80px 0 150px;
  }
  .applicationForm {
    width: calc(55% - 20px);
  }
  .applicationContent {
    width: calc(45% - 20px);
  }

  .intro__inner {
    min-height: 340px;
  }

  .info.big .infoItem {
    padding: 60px 40px 50px;
  }
  .info.last {
    padding-bottom: 50px;
  }
  .infoItem {
    min-height: unset;
  }
  .infoItem__inner {
    padding-left: 50px;
  }

  .faq {
    padding-bottom: 140px;
  }

  .policy {
    padding: 100px 0 150px;
  }

  .boutique {
    padding: 90px 0 100px;
  }
  .boutique__inner-title {
    margin-bottom: 50px;
  }
  .boutique__inner-row {
    margin: 0 -8px;
  }
  .boutique__inner-foot {
    padding-top: 40px;
  }
  .boutiqueItem {
    margin: 30px 8px;
    width: calc(25% - 16px);
  }

  .product {
    padding: 120px 0;
  }
  .productImage {
    width: calc(55% - 20px);
  }
  .productContent {
    width: calc(45% - 20px);
  }

  .newsletter .auto__container {
    max-width: 1020px;
  }
  .newsletterForm__input {
    width: calc(100% - 230px);
  }

  .offer {
    padding: 70px 0 130px;
  }

  .basket {
    padding: 100px 0;
  }

  .footer {
    padding-top: 80px;
  }
  .footerMain__logo {
    font-size: 40px;
  }
  .footerMain__links {
    width: calc(100% - 160px);
    max-width: 1000px;
  }
  .footerMain__links li a {
    font-size: 18px;
  }
}
@media (max-width: 1250px) {
  h1 {
    font-size: 60px;
  }
  h1.sm {
    font-size: 45px;
  }

  h2 {
    font-size: 45px;
  }
}
@media (max-width: 1180px) {
  .auto__container {
    padding: 0 30px;
  }

  h1 {
    font-size: 55px;
  }
  h1.sm {
    font-size: 40px;
  }

  h2 {
    font-size: 40px;
  }

  h3 {
    font-size: 30px;
  }

  h4 {
    font-size: 20px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 20px;
  }

  p.big {
    font-size: 18px;
  }
  p.ex {
    font-size: 16px;
  }

  body {
    font-size: 16px;
  }

  .button {
    font-size: 16px;
    padding: 10px 20px;
    min-width: 180px;
  }
  .button.base span {
    width: 18px;
    height: 18px;
  }

  .input input,
.input textarea {
    font-size: 16px;
    padding: 16px 0;
  }

  .spin__title p {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .spin__box {
    width: 150px;
    padding: 6px 10px;
    border-radius: 27px;
  }
  .spin__box button {
    width: 30px;
    height: 30px;
    font-size: 22px;
  }
  .spin__box input {
    padding: 6px 50px;
    font-size: 22px;
  }

  .header__inner-logo {
    font-size: 34px;
  }

  .nav__inner-logo {
    font-size: 40px;
  }
  .nav__inner-links li {
    margin-bottom: 20px;
  }
  .nav__inner-links li a {
    font-size: 20px;
  }
  .navContent {
    padding: 30px;
  }
  .navInfo {
    padding: 30px;
  }
  .navInfo .button {
    margin-left: 24px;
  }
  .navClose {
    top: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
  }
  .navClose::before {
    border-width: 1px;
  }
  .navClose span::before {
    height: 2px;
  }
  .navClose span::after {
    height: 2px;
  }

  .hero__inner {
    padding: 170px 0;
  }
  .hero__inner h1 {
    margin-bottom: 40px;
  }

  .about {
    padding: 40px 0 120px;
  }
  .about.sm {
    padding: 40px 0 120px;
  }
  .about.rev {
    padding: 120px 0;
  }
  .about.rev .aboutContent {
    padding-left: 30px;
  }
  .aboutImage {
    width: calc(50% - 15px);
  }
  .aboutContent {
    width: calc(50% - 15px);
    padding-right: 30px;
  }

  .services {
    padding: 100px 0;
  }
  .services.sm {
    padding-top: 40px;
  }
  .servicesContent {
    width: calc(50% - 15px);
    padding-left: 30px;
  }
  .servicesImage {
    width: calc(50% - 15px);
  }
  .servicesItem {
    padding: 22px 35px 22px 5px;
  }
  .servicesItem span {
    width: 18px;
    height: 16px;
  }
  .servicesItem h5 b {
    margin-right: 16px;
  }

  .application {
    padding: 100px 0 60px;
  }
  .application.base {
    padding: 70px 0 100px;
  }
  .applicationForm {
    width: calc(55% - 15px);
    padding: 35px 24px;
  }
  .applicationContent {
    width: calc(45% - 15px);
  }

  .intro__blur {
    width: 50%;
  }

  .info.big .infoItem {
    padding: 45px 30px 35px;
  }
  .info.last {
    padding-bottom: 40px;
  }
  .infoItem {
    padding: 45px 30px 35px;
  }
  .infoItem__inner {
    padding-left: 35px;
  }
  .infoItem h5 {
    margin-bottom: 12px;
  }

  .faq {
    padding-bottom: 100px;
  }
  .faq__inner-title {
    margin-bottom: 35px;
  }
  .faqItem {
    margin-bottom: 24px;
  }
  .faqItem.active {
    border-radius: 30px;
  }
  .faqItem__head {
    padding: 16px 50px 16px 25px;
      color: white;

  }
  .faqItem__head span {
    right: 20px;
    width: 18px;
    height: 16px;
  }
  .faqItem__head h5 b {
    margin-right: 25px;
  }
  .faqItem__body {
    padding: 0 25px;
  }
  .faqItem__body.active {
    padding: 0 25px 20px;
  }

  .policy {
    padding: 80px 0 120px;
  }

  .boutique {
    padding: 70px 0 80px;
  }
  .boutique__inner-title {
    margin-bottom: 40px;
  }
  .boutique__inner-row {
    margin: 0 -10px;
  }
  .boutiqueItem {
    width: calc(33.3% - 20px);
    margin: 20px 10px;
  }
  .boutiqueItem__content {
    padding: 20px 0;
  }

  .product {
    padding: 100px 0;
  }
  .productImage {
    width: calc(55% - 15px);
  }
  .productContent {
    width: calc(45% - 15px);
  }

  .basket {
    padding: 70px 0;
  }
  .basket__inner-content {
    margin-bottom: 45px;
  }
  .basketItem {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
  .basketItem__side {
    width: calc(55% - 20px);
  }
  .basketItem__side:last-child {
    width: calc(45% - 20px);
  }
  .basketItem__number {
    width: calc(100% - 210px);
  }
  .basketItem__buttons {
    width: 200px;
    margin-left: 10px;
  }
  .basketItem__buttons .button {
    min-width: unset;
  }

  .newsletter {
    padding: 70px 0;
  }
  .newsletterForm__input {
    width: calc(100% - 200px);
  }
  .newsletterForm__input input {
    font-size: 16px;
    padding: 14px 24px;
  }

  .realisation.sm {
    padding: 70px 0;
  }
  .realisation.new {
    padding: 70px 0;
  }
  .realisation.base {
    padding: 0 0 90px;
  }
  .realisation.last {
    margin-bottom: 100px;
  }

  .offer {
    padding: 70px 0 100px;
  }
  .offer.sm {
    padding-bottom: 100px;
  }
  .offer__inner-top {
    margin-bottom: 55px;
  }
  .offer__inner-title {
    width: calc(45% - 15px);
  }
  .offer__inner-text {
    width: calc(55% - 15px);
  }

  .footer {
    padding-top: 70px;
  }
  .footerMain__logo {
    font-size: 34px;
  }
  .footerMain__links {
    max-width: 840px;
    width: calc(100% - 130px);
  }
  .footerMain__links li a {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  ::-webkit-scrollbar {
    display: none;
  }

  h1 {
    font-size: 50px;
  }

  .main {
    padding-top: 88px;
  }

  .header__inner {
    padding: 24px 0;
  }
  .header__inner-buttons .button {
    margin-right: 24px;
  }
}
@media (max-width: 930px) {
  h1 {
    font-size: 45px;
  }
  h1.sm {
    font-size: 35px;
  }

  h2 {
    font-size: 35px;
  }

  h3 {
    font-size: 25px;
  }

  h4 {
    font-size: 18px;
  }

  p.big {
    font-size: 16px;
  }

  .hero__inner {
    padding: 140px 0;
  }

  .about {
    padding: 40px 0 80px;
  }
  .about.sm {
    padding: 30px 0 80px;
  }
  .about.rev {
    padding: 80px 0;
  }
  .about__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .aboutImage {
    width: 100%;
    max-width: unset;
    margin-bottom: 30px;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .aboutContent {
    width: 100%;
    padding: 0 30px;
    max-width: unset;
  }
  .aboutContent__inner {
    max-width: unset;
  }

  .realisation {
    padding: 40px 0;
  }
  .realisation.sm {
    padding: 50px 0;
  }
  .realisation.new {
    padding: 50px 0;
  }
  .realisation.base {
    padding: 0 0 70px;
  }
  .realisation.last {
    margin-bottom: 80px;
  }
  .realisation__inner-name {
    margin-bottom: 20px;
  }
  .realisation__inner-title {
    margin-bottom: 40px;
  }
  .realisation__inner-slider {
    margin: 0 -5px;
    padding-bottom: 40px;
  }
  .realisation__inner .swiper-buttons {
    width: calc(100% - 10px);
  }
  .realisation__inner .swiper-buttons button {
    padding: 0 5px;
    font-size: 16px;
  }
  .realisation__inner .swiper-buttons button hr {
    height: 1px;
    width: calc(50% - 2px);
  }
  .realisation__inner .swiper-buttons button span {
    width: 16px;
    height: 16px;
    margin: 0 10px 0 20px;
  }
  .realisation__inner .swiper-button-next span {
    margin: 0 20px 0 10px !important;
  }
  .realisation__inner h2 {
    margin-bottom: 12px;
  }
  .realisationItem {
    margin: 0 5px;
  }

  .services {
    padding: 80px 0;
  }
  .services__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .servicesImage {
    width: 100%;
    max-width: unset;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-bottom: 30px;
  }
  .servicesContent {
    width: 100%;
    max-width: unset;
    padding: 0 30px;
  }
  .servicesContent__inner {
    max-width: unset;
  }
  .servicesContent__list {
    max-width: unset;
  }

  .contact__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contactContent {
    width: 100%;
    max-width: unset;
    margin-bottom: 24px;
  }
  .contactText {
    width: 100%;
    max-width: unset;
  }
  .contactInfo {
    width: 100%;
    max-width: unset;
  }

  .application {
    padding: 70px 0 40px;
  }
  .application.base {
    padding: 70px 0;
  }
  .application__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .applicationForm {
    width: 100%;
    max-width: unset;
    padding: 35px 24px;
    margin-bottom: 35px;
  }
  .applicationContent {
    width: 100%;
    max-width: unset !important;
  }

  .intro__inner {
    min-height: 270px;
  }

  .info.big .infoItem {
    padding: 40px 30px;
    border-bottom: 1px solid var(--primary);
  }
  .info.big .infoItem:last-child {
    border: unset;
  }
  .info.big .infoItem::before {
    display: block;
  }
  .info__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .infoItem {
    width: 100%;
    border: unset;
    border-bottom: 1px solid var(--primary);
    padding: 40px 30px;
  }
  .infoItem__inner {
    padding-left: 50px;
  }
  .infoItem p {
    max-width: unset;
    font-size: 16px;
  }
  .infoItem h5 {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .faq {
    padding-bottom: 70px;
  }
  .faq__inner-col {
    width: 100%;
  }

  .policy {
    padding: 60px 0 80px;
  }
  .policy__inner-title {
    margin-bottom: 30px;
  }

  .boutique {
    padding: 60px 0;
  }
  .boutique__inner-title {
    margin-bottom: 35px;
  }
  .boutique__inner-row {
    margin: 0 -8px;
  }
  .boutique__inner-foot {
    padding-top: 35px;
  }
  .boutique__inner h2 {
    margin-bottom: 20px;
  }
  .boutiqueItem {
    width: calc(33.3% - 16px);
    margin: 12px 8px;
    border-radius: 20px;
  }
  .boutiqueItem__content {
    padding: 16px 0;
  }

  .product {
    padding: 80px 0;
  }
  .productImage {
    width: calc(55% - 10px);
  }
  .productContent {
    width: calc(45% - 10px);
  }
  .productContent__text {
    padding-top: 16px;
    border-width: 1px;
  }
  .productContent h2 {
    margin-bottom: 12px;
  }

  .basket {
    padding: 60px 0;
  }
  .basketItem {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
  .basketItem__side {
    width: calc(50% - 15px);
  }
  .basketItem__side:last-child {
    width: calc(50% - 15px);
  }
  .basketItem__image {
    width: 160px;
    margin-right: 15px;
  }
  .basketItem__content {
    width: calc(100% - 175px);
  }
  .basketItem__content h4 {
    margin-bottom: 12px;
  }
  .basketItem__number {
    width: calc(100% - 190px);
  }
  .basketItem__buttons {
    width: 180px;
    margin-left: 10px;
  }
  .basketItem__buttons .button {
    font-size: 14px;
  }

  .newsletter {
    padding: 50px 0;
  }
  .newsletter__inner-title {
    margin-bottom: 24px;
  }

  .offer {
    padding: 60px 0;
  }
  .offer.sm {
    padding-bottom: 60px;
  }
  .offer__bg {
    height: 70%;
  }
  .offer__inner-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 60px;
  }
  .offer__inner-top .button {
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .offer__inner-title {
    width: 100%;
    max-width: unset;
    margin-bottom: 20px;
  }
  .offer__inner-title h2 {
    margin: 0;
  }
  .offer__inner-text {
    width: 100%;
    max-width: unset;
  }
  .offer__inner-row {
    margin: 0 -6px;
  }
  .offerItem {
    margin: 0 6px;
    width: calc(33.3% - 12px);
  }

  .footer {
    padding-top: 60px;
  }
  .footerMain {
    -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;
  }
  .footerMain__logo {
    margin-bottom: 16px;
  }
  .footerMain__links {
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 -10px;
  }
  .footerMain__links li {
    margin: 8px 10px !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 750px) {
  .auto__container {
    padding: 0 20px;
  }

  h2 {
    font-size: 30px;
  }

  .main {
    padding-top: 84px;
  }

  .nav__bg::before {
    background: #000000;
    opacity: 0.8;
  }
  .nav__bg::after {
    display: none;
  }
  .nav__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
  }
  .nav__inner-logo {
    position: absolute;
    top: 20px;
    left: 20px;
    height: 35px;
    font-size: 34px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .nav__inner-links {
    -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;
    text-align: center;
    width: 100%;
    max-width: unset;
  }
  .nav__inner-links li {
    margin-bottom: 30px;
  }
  .nav__inner-links li a {
    font-size: 25px;
  }
  .navContent {
    width: 100%;
    position: static;
    padding: 150px 20px 20px 20px;
  }
  .navContent__inner {
    position: static;
  }
  .navInfo {
    width: 100%;
    margin: auto 0 0 0;
    padding: 30px 20px;
  }
  .navClose {
    top: 20px;
    right: 20px;
    width: 35px;
    height: 35px;
  }

  .burger {
    width: 35px;
    height: 35px;
  }

  .services {
    padding: 60px 0;
  }
  .servicesContent {
    padding: 0 20px;
  }

  .info.big .infoItem {
    padding: 35px 20px;
  }
  .infoItem {
    padding: 35px 20px;
  }

  .faq {
    padding-bottom: 60px;
  }
  .faq__inner-title {
    margin-bottom: 24px;
  }
  .faqItem {
    margin-bottom: 20px;
  }
  .faqItem.active {
    border-radius: 20px;
  }
  .faqItem__head {
    padding: 12px 40px 12px 20px;
  }
  .faqItem__head span {
    right: 20px;
    width: 18px;
    height: 16px;
  }
  .faqItem__head h5 b {
    margin-right: 16px;
  }
  .faqItem__body {
    padding: 0 20px;
  }
  .faqItem__body.active {
    padding: 0 20px 15px;
  }

  .boutiqueItem {
    width: calc(50% - 16px);
  }

  .product {
    padding: 60px 0;
  }
  .product__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .productImage {
    width: 100%;
    max-width: unset;
    margin-bottom: 30px;
  }
  .productImage__inner {
    padding-bottom: 100%;
  }
  .productContent {
    width: 100%;
    max-width: unset;
  }
  .productContent__text {
    max-width: unset;
  }
  .productContent h2 {
    margin-bottom: 16px;
  }

  .basketItem {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 24px;
    margin-bottom: 24px;
  }
  .basketItem__side {
    width: 100% !important;
    max-width: unset !important;
    margin-bottom: 24px;
  }
  .basketItem__side:last-child {
    margin: 0;
  }
  .basketItem__image {
    width: calc(45% - 15px);
    max-width: 220px;
  }
  .basketItem__content {
    width: calc(55% - 15px);
    max-width: 300px;
    text-align: end;
  }
  .basketItem__buttons {
    width: 190px;
  }
  .basketItem__number {
    width: calc(100% - 200px);
  }

  .about {
    padding: 40px 0 60px;
  }
  .about.sm {
    padding: 30px 0 60px;
  }
  .about.rev {
    padding: 60px 0;
  }
  .about.rev .aboutContent {
    padding: 0 20px;
  }
  .aboutContent {
    padding: 0 20px;
  }

  .realisation.base {
    padding: 0 0 60px;
  }
  .realisation.last {
    margin-bottom: 60px;
  }
  .realisation__inner .swiper-buttons button hr {
    width: 32%;
  }
}
@media (max-width: 540px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 25px;
  }

  h3 {
    font-size: 20px;
  }

  h4 {
    font-size: 14px;
  }

  h5 {
    font-size: 16px;
  }

  p.big {
    font-size: 14px;
  }
  p.ex {
    font-size: 14px;
  }

  body {
    font-size: 14px;
  }

  .main {
    padding-top: 75px;
  }

  .spin__title p {
    font-size: 16px;
  }

  .header__inner {
    padding: 20px 0;
  }
  .header__inner-logo {
    font-size: 30px;
  }
  .header__inner-buttons .button {
    display: none;
  }

  .nav__inner-logo {
    font-size: 30px;
  }

  .burger::before {
    height: 2px;
  }
  .burger::after {
    height: 2px;
  }
  .burger span {
    height: 2px;
  }

  .hero__bg::before {
    background: #000000;
    opacity: 0.6;
  }
  .hero__bg::after {
    display: none;
  }
  .hero__inner {
    padding: 100px 0;
  }
  .hero__inner-content {
    text-align: center;
  }
  .hero__inner-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
  }
  .hero__inner-buttons .button {
    width: 100%;
    max-width: 210px;
    margin: 0 0 20px 0;
  }
  .hero__inner h1 {
    margin-bottom: 30px;
  }

  .about {
    padding: 40px 0;
  }
  .about.sm {
    padding: 20px 0 40px;
  }
  .about.rev {
    padding: 40px 0;
  }
  .aboutImage {
    margin-bottom: 24px;
  }
  .aboutContent p {
    margin-bottom: 18px;
  }
  .aboutContent .button {
    width: 100%;
    max-width: 210px;
  }

  .realisation {
    padding: 40px 0 20px;
  }
  .realisation.sm {
    padding: 40px 0;
  }
  .realisation.new {
    padding: 40px 0;
  }
  .realisation.base {
    padding: 0 0 40px;
  }
  .realisation.last {
    margin-bottom: 40px;
  }
  .realisation__bg::before {
    background: #000000;
    opacity: 0.6;
  }
  .realisation__bg::after {
    display: none;
  }
  .realisation__inner-name {
    margin-bottom: 16px;
  }
  .realisation__inner-title {
    margin-bottom: 35px;
  }
  .realisation__inner-buttons {
    -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;
  }
  .realisation__inner-buttons .button {
    margin: 0 0 20px 0;
    width: 100%;
    max-width: 210px;
  }
  .realisation__inner-slider {
    padding-bottom: 35px;
    overflow: visible;
  }
  .realisation__inner .swiper-buttons button {
    font-size: 14px;
  }
  .realisation__inner .swiper-buttons button hr {
    width: 70%;
  }
  .realisation__inner .swiper-buttons button span {
    width: 14px;
    height: 14px;
    margin: 0 6px 0 12px;
  }
  .realisation__inner .swiper-button-next span {
    margin: 0 12px 0 6px !important;
  }

  .services {
    padding: 30px 0 30px;
  }
  .services.sm {
    padding-top: 20px;
  }
  .servicesImage {
    margin-bottom: 24px;
  }
  .servicesContent__title {
    margin-bottom: 16px;
  }
  .servicesItem {
    border-width: 1px;
    padding: 20px 25px 20px 0;
  }
  .servicesItem span {
    width: 16px;
    height: 14px;
  }
  .servicesItem h5 b {
    margin-right: 14px;
  }

  .contact {
    width: 100%;
    border-radius: unset;
    padding: 40px 0;
  }
  .contact.sm {
    padding: 40px 0;
  }
  .contactContent {
    margin-bottom: 18px;
  }
  .contactContent .button {
    width: 100%;
    max-width: 210px;
  }
  .contactContent p {
    margin-bottom: 20px;
  }
  .contactContent h2 {
    margin-bottom: 12px;
  }
  .contactInfo__links {
    margin-bottom: 30px;
  }

  .application {
    padding: 40px 0 20px;
  }
  .application.base {
    padding: 40px 0;
  }
  .applicationForm {
    margin-bottom: 24px;
    padding: 24px 20px 30px;
  }
  .applicationForm__foot {
    padding-top: 28px;
  }
  .applicationForm .input {
    width: 100%;
    margin-bottom: 6px;
  }
  .applicationForm .button {
    width: 100%;
    max-width: 210px;
    margin: 0 auto;
  }
  .applicationContent__title {
    margin-bottom: 22px;
  }
  .applicationContent__links {
    margin-bottom: 30px;
  }

  .intro__bg::before {
    background: #000000;
    opacity: 0.7;
  }
  .intro__bg::after {
    display: none;
  }
  .intro__blur {
    width: 100%;
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
  }
  .intro__inner {
    min-height: 230px;
    text-align: center;
    padding: 40px 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .info.last {
    padding-bottom: 20px;
  }
  .info.big .infoItem {
    padding: 30px 20px;
  }
  .infoItem {
    padding: 25px 20px;
  }
  .infoItem__inner {
    padding-left: 40px;
  }
  .infoItem h5 {
    margin-bottom: 12px;
    font-size: 18px;
  }
  .infoItem p {
    font-size: 14px;
  }

  .faq {
    padding: 10px 0 40px;
  }
  .faq__inner-title {
    margin-bottom: 24px;
  }
  .faqItem {
    margin-bottom: 16px;
    border-width: 1px;
  }
  .faqItem__head {
    padding: 10px 35px 10px 16px;
  }
  .faqItem__head span {
    right: 18px;
    width: 16px;
    height: 14px;
  }
  .faqItem__head h5 b {
    margin-right: 12px;
  }
  .faqItem__body {
    padding: 0 20px;
  }
  .faqItem__body.active {
    padding: 5px 16px 15px;
  }

  .policy {
    padding: 40px 0 50px;
  }
  .policy__inner-title {
    margin-bottom: 20px;
  }

  .boutique {
    padding: 40px 0;
  }
  .boutique__inner-title {
    margin-bottom: 30px;
  }
  .boutique__inner-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
  }
  .boutique__inner-foot {
    padding-top: 30px;
  }
  .boutique__inner-foot .button {
    width: 100%;
    max-width: 210px;
  }
  .boutiqueItem {
    width: 100%;
    margin: 0 0 20px 0;
  }
  .boutiqueItem:last-child {
    margin: 0;
  }
  .boutiqueItem__image {
    margin-bottom: 20px;
  }
  .boutiqueItem__content {
    border-width: 1px;
  }
  .boutiqueItem h4 {
    font-size: 25px;
  }
  .boutiqueItem h5 {
    font-size: 22px;
  }

  .product {
    padding: 40px 0;
  }

  .basket {
    padding: 40px 0;
  }
  .basket__inner-content {
    margin-bottom: 35px;
  }
  .basket__inner-foot {
    -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;
  }
  .basket__inner-foot .button {
    width: 100%;
    max-width: 210px;
  }
  .basket__inner-total {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }
  .basket__inner-total h4 {
    font-size: 25px;
  }
  .basket__inner-total p {
    font-size: 20px;
  }
  .basketItem {
    border-width: 1px;
  }
  .basketItem__side {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .basketItem__image {
    width: 100%;
    max-width: unset;
    margin: 0 0 20px 0;
  }
  .basketItem__content {
    width: 100%;
    max-width: unset;
    text-align: center;
  }
  .basketItem__content h5 {
    font-size: 25px;
  }
  .basketItem__content p {
    font-size: 20px;
  }
  .basketItem__number {
    width: 100%;
    margin: 0 0 20px 0;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .basketItem__number input {
    text-align: center;
  }
  .basketItem__buttons {
    width: 100%;
  }

  .newsletter {
    padding: 40px 0;
  }
  .newsletter__inner-title {
    margin-bottom: 20px;
  }
  .newsletter__inner h2 {
    margin-bottom: 5px;
  }
  .newsletterForm {
    -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;
  }
  .newsletterForm__input {
    width: 100%;
    margin-bottom: 20px;
  }
  .newsletterForm__input input {
    padding: 14px 20px;
  }
  .newsletterForm .button {
    width: 100%;
    max-width: 210px;
  }

  .offer {
    padding: 40px 0;
  }
  .offer__bg {
    height: 65%;
  }
  .offer.sm {
    padding-bottom: 40px;
  }
  .offer__inner .button {
    width: 100%;
    max-width: 210px;
  }
  .offerItem {
    width: calc(50% - 12px);
  }
  .offerItem:last-child {
    display: none;
  }
  .offerItem__content {
    padding: 15px;
  }

  .footer {
    padding-top: 40px;
  }
  .footer__inner {
    border-width: 1px;
    padding-bottom: 20px;
  }
  .footerMain__logo {
    font-size: 30px;
  }
  .footerMain__links li a {
    font-size: 14px;
  }

  .copy__inner {
    padding: 24px 0;
  }
}
@media (max-width: 440px) {
  h1 {
    font-size: 37px;
  }
}
@media (max-width: 390px) {
  p.big {
    font-size: 13px;
  }
}
/**
 * Swiper 8.4.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2022 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 15, 2022
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color:#007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.swiper-android .swiper-slide, .swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  -ms-touch-action: pan-x;
      touch-action: pan-x;
}

.swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
    max-height: 400px;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-backface-hidden .swiper-slide {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide, .swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top, .swiper-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size)/ 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size)/ 2));
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden, .swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next, .swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
          transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top, 0.2s -webkit-transform;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left, 0.2s -webkit-transform;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right, 0.2s -webkit-transform;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  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;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@-webkit-keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active, .swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
          transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-next + .swiper-slide, .swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-filter: blur(50px);
          filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  -webkit-transition-property: opacity, height, -webkit-transform;
  transition-property: opacity, height, -webkit-transform;
  transition-property: transform, opacity, height;
  transition-property: transform, opacity, height, -webkit-transform;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

.serviceDesc {
    display: none;
}

.serviceDesc.active {
    display: block;
}
