:root {
  --primary: #d0920b;
  --main: #131313;
  --white: #fdfdfd;
  --black: #000;
  --gray: #949494;
  --main-font: "Poppins", sans-serif;
    --header-font: "Poppins", sans-serif;
    --header-size: 60px;
    --text-font: "Poppins", sans-serif;
    --text-size: 18px;

}

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(--white);
}

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: 400;
  font-size: 75px;
  line-height: 120%;
}

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

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;
}

.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: 25px;
  line-height: 100%;
  border-radius: 27px;
  font-weight: 600;
  padding: 14px 30px;
  min-width: 284px;
}
.button.primary {
  color: var(--white);
  background-color: var(--primary);
}
.button.primary:hover {
  opacity: 1;
  color: var(--main);
}
.button.solid {
  color: var(--main);
  border: 1px solid var(--primary);
  background-color: transparent;
}
.button.solid:hover {
  opacity: 1;
  color: var(--primary);
}
.button.base {
  color: var(--main);
  min-width: unset;
  padding: 5px 12px;
  background-color: transparent;
}
.button.base:hover {
  color: var(--primary);
}
.button.base span {
  width: 36px;
  height: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 10px;
}
.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: 24px;
}
.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);
  border-radius: 25px;
  background-color: rgba(230, 230, 230, 0.14);
  padding: 9px 22px;
  resize: unset;
}
.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);
}
.input textarea {
  padding: 14px 22px;
}

.spin__title p {
  font-size: 15px;
  line-height: 100%;
  font-weight: 400;
  color: var(--gray);
  margin-bottom: 15px;
}
.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;
  border-radius: 27px;
  border: 2px solid var(--primary);
  position: relative;
}
.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;
}
.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;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 12;
}
.header .auto__container {
  max-width: 1740px;
}
.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(--main);
}
.header__inner {
  padding: 30px 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);
}

@-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 {
  width: calc(100% - 250px);
  max-width: 1380px;
}
.nav__inner {
  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;
}
.nav__inner-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 40px;
  width: calc(100% - 450px);
}
.nav__inner-links li {
  margin-right: 20px;
  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: 25px;
  line-height: 120%;
  font-weight: 400;
  font-family: var(--main-font);
    white-space: nowrap;
}
.nav__inner-links li a.active {
    text-decoration: underline;
    text-decoration-thickness: 3px;
  color: var(--primary);
}
.nav__inner-links li a:hover {
  opacity: 1;
  color: var(--primary);
}
.nav__inner-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.nav__inner-buttons .button {
  margin-right: 24px;
}

.burger {
  display: none;
}

.footer {
  background-color: var(--main);
  padding-top: 105px;
}
.footer .auto__container {
  max-width: 1780px;
}
.footer__inner {
  border-top: 2px solid #5d5d5d;
  padding: 30px 0;
}
.footerMain {
  max-width: 1570px;
  margin: 0 auto;
  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: flex-start;
  -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 {
  background-color: #212121;
}
.copy__inner {
  padding: 16px 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__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 0 0 50px 50px;
  overflow: hidden;
}
.intro__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--main);
  opacity: 0.7;
}
.intro__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.intro__inner {
  padding: 165px 0 55px;
  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;
}
.intro__inner h1 {
  color: var(--white);
  min-height: 200px;
  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;
}

.info {
  padding-bottom: 60px;
}
.info.big {
  padding-bottom: 230px;
}
.infoMain {
  width: calc(100% - 80px);
  max-width: 1783px;
  margin: 0 auto;
  background-color: #f5f5f5;
  border-radius: 50px;
  padding: 70px 10px 200px;
}
.infoMain__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.infoMain__content {
  width: calc(50% - 15px);
  max-width: 550px;
}
.infoMain__content h2 {
  margin-bottom: 20px;
}
.infoMain__content .button {
  border-color: var(--main);
}
.infoMain__text {
  width: calc(50% - 15px);
  max-width: 680px;
}
.infoMain__text p {
  color: var(--main);
}
.info > .auto__container {
  max-width: 1730px;
}
.info__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: -85px;
  padding: 0 40px;
}
.infoItem {
  width: calc(33.3% - 10px);
  max-width: 505px;
  border-radius: 50px;
  padding: 30px;
  min-height: 290px;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  background-color: var(--white);
  color: var(--primary);
  -webkit-box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.161);
          box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.161);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  cursor: pointer;
}
.infoItem:hover {
  background-color: var(--primary);
  color: var(--white);
}
.infoItem h6 {
  margin-bottom: 16px;
  text-transform: uppercase;
}
.infoItem p {
  max-width: 344px;
}

.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(--main);
  color: var(--main);
  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(--main);
}
.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(--gray);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.hero {
  position: relative;
  color: var(--white);
}
.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, from(#000000), color-stop(64.8%, rgba(0, 0, 0, 0)));
  background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 64.8%);
  opacity: 0.6;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.hero__inner {
  min-height: calc(100vh - 113px);
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: flex-end;
}
.hero__inner-title {
  max-width: 850px;
  text-align: center;
  margin-bottom: 20px;
}
.hero__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;
  padding: 27px 50px;
  position: relative;
  max-width: 655px;
}
.hero__inner-buttons::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: 68px;
  border: 1px solid var(--white);
  -webkit-backdrop-filter: blur(40px);
          backdrop-filter: blur(40px);
  background-color: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}
.hero__inner .button {
  margin-right: 15px;
  position: relative;
}
.hero__inner .button:last-child {
  margin: 0;
}
.hero__inner .button.base {
  color: var(--white);
}

.advert {
  background-color: var(--primary);
  color: var(--white);
}
.advert__inner {
  padding: 39px 0;
  height: 113px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.advert__inner-slider {
  width: 100%;
}
.advert__inner .slick-list {
  overflow: visible !important;
}
.advert__inner .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.advert__inner .slick-slide {
  height: unset !important;
  margin-right: 26px;
}
.advert__inner .swiper-slide {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  width: unset !important;
  pointer-events: none;
}
.advertItem {
  white-space: nowrap;
  padding-right: 26px;
}
.advertItem span {
  margin-right: 26px;
}
.advertItem h4 {
  line-height: 100%;
  font-weight: 600;
}

.application {
  padding-top: 98px;
  background-color: var(--main);
  color: var(--white);
  margin-bottom: -1px;
}
.application.base {
  padding: 125px 0 160px;
  margin: 0;
  color: var(--gray);
  background-color: transparent;
}
.application.base .auto__container {
  max-width: 1630px;
}
.application.base h2 {
  color: var(--main);
}
.application.base .applicationForm {
  background-color: #f5f5f5;
}
.application.base .applicationForm .input input,
.application.base .applicationForm .input textarea {
  background-color: rgba(152, 152, 152, 0.14);
  color: var(--main);
}
.application.base .applicationForm .input input::-webkit-input-placeholder, .application.base .applicationForm .input textarea::-webkit-input-placeholder {
  color: var(--gray);
}
.application.base .applicationForm .input input::-moz-placeholder, .application.base .applicationForm .input textarea::-moz-placeholder {
  color: var(--gray);
}
.application.base .applicationForm .input input:-ms-input-placeholder, .application.base .applicationForm .input textarea:-ms-input-placeholder {
  color: var(--gray);
}
.application.base .applicationForm .input input::-ms-input-placeholder, .application.base .applicationForm .input textarea::-ms-input-placeholder {
  color: var(--gray);
}
.application.base .applicationForm .input input::placeholder,
.application.base .applicationForm .input textarea::placeholder {
  color: var(--gray);
}
.application.base .applicationForm .button {
  color: var(--main);
}
.application.base .applicationContent {
  max-width: 560px;
}
.application.base .applicationContent__links a {
  color: var(--gray);
}
.application.base .applicationContent__links a:hover {
  color: var(--primary);
}
.application.base .applicationContent__links a span {
  color: var(--primary);
}
.application.base .applicationContent .social a {
  color: var(--primary);
}
.application.base .applicationContent .social a:hover {
  color: var(--main);
}
.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: #212121;
  border-radius: 20px;
  padding: 45px 32px;
  width: calc(55% - 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);
  margin-bottom: 20px;
}
.applicationForm .input:last-child {
  margin: 0;
}
.applicationForm .input.big {
  width: 100%;
}
.applicationContent {
  width: calc(45% - 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;
}

.about {
  padding: 200px 0;
}
.about.sm {
  padding: 150px 0 135px;
}
.about .auto__container {
  max-width: 1500px;
}
.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% - 15px);
  max-width: 680px;
  border-radius: 30px;
  overflow: hidden;
}
.aboutImage__inner {
  padding-bottom: 98%;
  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% - 15px);
  max-width: 680px;
}
.aboutContent h2 {
  margin-bottom: 16px;
}
.aboutContent p {
  margin-bottom: 24px;
}

.services {
  width: calc(100% - 80px);
  max-width: 1783px;
  margin: 0 auto 80px;
  background-color: #f5f5f5;
  border-radius: 50px;
  padding: 100px 10px;
}
.services.base {
  width: 100%;
  max-width: unset;
  margin: 0;
  background-color: transparent;
  padding: 180px 0;
  border-radius: unset;
}
.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% - 15px);
  max-width: 710px;
}
.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% - 15px);
  max-width: 680px;
  border-radius: 30px;
  overflow: hidden;
}
.servicesImage__inner {
  padding-bottom: 98%;
  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%;
  border-radius: 100px;
  padding: 22px 65px 22px 45px;
  position: relative;
  cursor: pointer;
  border: 2px solid var(--main);
  color: var(--main);
  margin-bottom: 32px;
}
.servicesItem:last-child {
  margin: 0;
}
.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;
}
.servicesItem > 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;
}
.servicesItem > span svg {
  width: 100%;
  height: 100%;
}

.realisation {
  padding-bottom: 125px;
}
.realisation .auto__container {
  max-width: 1480px;
}
.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 {
  max-width: 1050px;
  margin: 0 auto;
  padding-bottom: 52px;
  position: static;
}
.realisation__inner-wrapper {
  position: relative;
  margin: 0 -4px;
}
.realisation__inner .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.realisation__inner .slick-slide {
  height: unset !important;
  margin: 0 4px;
}
.realisation__inner .slick-list {
  overflow: visible !important;
}
.realisation__inner .swiper-pagination {
  position: absolute;
  top: unset !important;
  bottom: 0 !important;
  left: 50% !important;
  width: 100%;
  max-width: 1394px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 18px !important;
  background-color: #f5f5f5;
  border-radius: 100px;
  overflow: hidden;
}
.realisation__inner .swiper-pagination span {
  border-radius: 100px !important;
  background: var(--primary) !important;
}
.realisationItem {
  border-radius: 20px;
  overflow: hidden;
  margin: 0 4px;
}
.realisationItem__inner {
  padding-bottom: 56%;
  position: relative;
}
.realisationItem__inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

.gallery {
  padding: 85px 0 190px;
}
.gallery .auto__container {
  max-width: 1830px;
}
.gallery__inner-title {
  text-align: center;
  max-width: 1184px;
  margin: 0 auto 90px;
}
.gallery__inner-title p {
  margin-bottom: 44px;
}
.gallery__inner-buttons {
  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;
}
.gallery__inner-buttons .button {
  margin-right: 20px;
}
.gallery__inner-buttons .button:last-child {
  margin: 0;
}
.gallery__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -25px;
}
.gallery__inner-foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 32px;
}
.gallery__inner h2 {
  margin-bottom: 16px;
}
.galleryItem {
  width: calc(33.3% - 50px);
  margin: 30px 25px;
  border-radius: 30px;
  overflow: hidden;
  cursor: pointer;
}
.galleryItem:hover {
  opacity: 1;
}
.galleryItem:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.galleryItem__inner {
  width: 100%;
  position: relative;
  padding-bottom: 100%;
}
.galleryItem__inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.contact {
  width: calc(100% - 80px);
  max-width: 1783px;
  margin: 0 auto;
  background-color: var(--primary);
  border-radius: 50px;
  padding: 70px 10px;
  color: var(--white);
}
.contact.light {
  background-color: #f5f5f5;
  color: var(--main);
}
.contact.light h2 {
  color: var(--main);
}
.contact.light .button {
  border-color: var(--main);
  color: var(--main);
}
.contact.light .button:hover {
  color: var(--primary);
  border-color: var(--primary);
}
.contact.last {
  position: relative;
}
.contact.last::before {
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 30000px;
  height: 35%;
  content: "";
  background-color: var(--main);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
.contact.sm {
  padding: 48px 10px;
}
.contact.sm .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(50% - 15px);
  max-width: 550px;
}
.contactContent h2 {
  color: var(--white);
  margin-bottom: 20px;
}
.contactContent p {
  margin-bottom: 30px;
}
.contactContent p:last-child {
  margin: 0;
}
.contactContent .button {
  border-color: var(--white);
  color: var(--white);
}
.contactContent .button:hover {
  color: var(--main);
}
.contactText {
  width: calc(50% - 15px);
  max-width: 680px;
}
.contactInfo {
  width: calc(50% - 15px);
  max-width: 680px;
  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: 120px 0;
}
.policy .auto__container {
  max-width: 1500px;
}
.policy__inner-title {
  margin-bottom: 40px;
}
.policy__inner-content p {
  color: var(--main);
}
.policy__inner-content p a {
  color: var(--primary);
}
.policy__inner-content p b {
  font-weight: 600;
}

.boutique {
  padding: 105px 0 122px;
}
.boutique.sm {
  padding-bottom: 82px;
}
.boutique.sm .boutique__inner-foot {
  padding-top: 40px;
}
.boutique .auto__container {
  max-width: 1800px;
}
.boutique__inner-top {
  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;
  max-width: 1535px;
  margin: 0 auto 80px;
}
.boutique__inner-side {
  width: calc(45% - 15px);
  max-width: 550px;
}
.boutique__inner-text {
  width: calc(55% - 15px);
  max-width: 680px;
}
.boutique__inner-title {
  margin-bottom: 40px;
  text-align: center;
}
.boutique__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -12px;
}
.boutique__inner-foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 75px;
}
.boutiqueItem {
  width: calc(25% - 24px);
  margin: 16px 12px;
  border-radius: 30px;
  overflow: hidden;
  background-color: #f5f5f5;
  color: var(--main);
}
.boutiqueItem:hover {
  opacity: 1;
}
.boutiqueItem:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.boutiqueItem__image {
  width: 100%;
  padding-bottom: 105%;
  position: relative;
  overflow: hidden;
}
.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: 20px 20px;
  text-align: center;
}
.boutiqueItem__content h5 {
  margin-bottom: 10px;
}

.product {
  padding: 122px 0 190px;
}
.product .auto__container {
  max-width: 1430px;
}
.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: 668px;
  border-radius: 30px;
  overflow: hidden;
}
.productImage__inner {
  padding-bottom: 112%;
  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: 550px;
  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 {
  max-width: 516px;
}
.productContent h2 {
  margin-bottom: 22px;
}
.productContent .button {
  margin-bottom: 22px;
}
.productContent .spin {
  margin-bottom: 22px;
}

.basket {
  padding: 96px 0;
}
.basket .auto__container {
  max-width: 1500px;
}
.basket__inner-content {
  margin-bottom: 56px;
}
.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;
  max-width: 1360px;
  margin: 0 auto;
}
.basket__inner-total {
  color: var(--main);
}
.basket__inner-total h5 {
  margin-bottom: 10px;
}
.basketItem {
  margin-bottom: 28px;
  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: 22px 36px 22px 16px;
  background-color: #f5f5f5;
  border-radius: 50px;
}
.basketItem:last-child {
  margin: 0;
}
.basketItem__side {
  width: calc(50% - 25px);
  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: 520px;
}
.basketItem__side:last-child {
  max-width: 610px;
}
.basketItem__image {
  width: 216px;
  border-radius: 30px;
  overflow: hidden;
  margin-right: 30px;
}
.basketItem__image-inner {
  padding-bottom: 80%;
  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% - 246px);
  color: var(--main);
  max-width: 222px;
}
.basketItem__content h5 {
  margin-bottom: 20px;
}
.basketItem__number {
  width: 144px;
}
.basketItem__number p {
  font-size: 15px;
  line-height: 100%;
  font-weight: 400;
  color: var(--gray);
  margin-bottom: 15px;
}
.basketItem__number input {
  width: 100%;
  font-family: var(--main-font);
  font-size: 25px;
  line-height: 100%;
  font-weight: 600;
  background-color: transparent;
  color: var(--main);
}
.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,
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 {
    font-size: 22px;
    padding: 12px 24px;
    min-width: 240px;
  }

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

  .nav {
    max-width: 1140px;
    width: calc(100% - 200px);
  }
  .nav__inner-links {
    margin-right: 24px;
    width: calc(100% - 400px);
  }
  .nav__inner-links li a {
    font-size: 22px;
      white-space: nowrap;
  }

  .hero__inner-buttons {
    padding: 20px 40px;
  }

  .about {
    padding: 150px 0;
  }
  .about.sm {
    padding: 120px 0;
  }

  .services {
    padding: 60px 10px;
    border-radius: 40px;
  }
  .services.base {
    padding: 150px 0;
  }
  .servicesContent__title {
    margin-bottom: 30px;
  }
  .servicesItem {
    padding: 18px 60px 18px 35px;
  }
  .servicesItem > span {
    right: 25px;
    width: 22px;
    height: 20px;
  }
  .servicesItem h5 b {
    margin-right: 25px;
  }

  .contact {
    padding: 50px 10px;
    border-radius: 40px;
  }

  .info.big {
    padding-bottom: 190px;
  }
  .infoMain {
    padding: 50px 10px 160px;
    border-radius: 40px;
  }
  .infoItem {
    border-radius: 40px;
    min-height: 270px;
  }

  .faq {
    padding-bottom: 170px;
  }

  .gallery {
    padding: 70px 0 160px;
  }
  .gallery__inner-title {
    margin-bottom: 70px;
  }
  .gallery__inner-row {
    margin: 0 -20px;
  }
  .galleryItem {
    width: calc(33.3% - 40px);
    margin: 20px;
  }

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

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

  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.base {
    padding: 2px 10px;
  }
  .button.base span {
    width: 30px;
    height: 30px;
  }

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

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

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

  .nav {
    max-width: 1000px;
    width: calc(100% - 160px);
  }
  .nav__inner-links {
    width: calc(100% - 330px);
  }
  .nav__inner-links li a {
    font-size: 18px;
  }

  .hero__inner {
    min-height: calc(100vh - 75px);
  }
  .hero__inner-buttons {
    padding: 16px 30px;
  }

  .advert__inner {
    padding: 25px 0;
    height: 75px;
  }
  .advertItem {
    padding-right: 16px;
  }
  .advertItem h4 span {
    margin-right: 16px;
  }

  .about {
    padding: 120px 0;
  }
  .about.sm {
    padding: 100px 0;
  }

  .realisation {
    padding-bottom: 90px;
  }
  .realisation__inner-foot {
    padding-top: 40px;
  }
  .realisation__inner .swiper-pagination {
    height: 14px !important;
  }

  .services {
    padding: 50px 0;
    border-radius: 30px;
  }
  .services.base {
    padding: 120px 0;
  }
  .servicesContent__title {
    margin-bottom: 22px;
  }
  .servicesItem {
    padding: 16px 50px 16px 25px;
    margin-bottom: 22px;
  }
  .servicesItem > span {
    right: 20px;
    width: 18px;
    height: 16px;
  }
  .servicesItem h5 b {
    margin-right: 25px;
  }

  .contact {
    padding: 40px 0;
    border-radius: 30px;
  }
  .contact.sm {
    padding: 40px 0;
  }

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

  .intro__bg {
    border-radius: 0 0 40px 40px;
  }
  .intro__inner {
    padding: 140px 0 50px;
  }
  .intro__inner h1 {
    min-height: 150px;
  }

  .info.big {
    padding-bottom: 150px;
  }
  .infoMain {
    padding: 40px 0 140px;
    border-radius: 30px;
  }
  .infoItem {
    min-height: 240px;
    border-radius: 30px;
  }

  .faq {
    padding-bottom: 140px;
  }

  .gallery {
    padding: 70px 0 120px;
  }
  .gallery__inner-title {
    margin-bottom: 50px;
  }
  .gallery__inner-row {
    margin: 0 -14px;
  }
  .galleryItem {
    width: calc(33.3% - 28px);
    margin: 14px;
  }

  .policy {
    padding: 100px 0;
  }

  .boutique {
    padding: 90px 0 100px;
  }
  .boutique__inner-top {
    margin-bottom: 60px;
  }
  .boutique__inner-row {
    margin: 0 -8px;
  }
  .boutique__inner-foot {
    padding-top: 60px;
  }
  .boutiqueItem {
    margin: 12px 8px;
    width: calc(25% - 16px);
    border-radius: 24px;
  }

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

  .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,
h2 {
    font-size: 45px;
  }
}
@media (max-width: 1180px) {
  .auto__container {
    padding: 0 30px;
  }

  h1,
h2 {
    font-size: 40px;
  }

  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: 26px;
    height: 26px;
  }

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

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

  .nav {
    max-width: 840px;
    width: calc(100% - 130px);
  }
  .nav__inner-links {
    width: calc(100% - 300px);
  }
  .nav__inner-links li a {
    font-size: 16px;
  }
  .nav__inner-buttons .button {
    margin-right: 16px;
  }

  .about {
    padding: 90px 0;
  }
  .about.sm {
    padding: 80px 0;
  }

  .services {
    width: calc(100% - 60px);
    border-radius: 25px;
    margin-bottom: 60px;
    padding: 40px 0;
  }
  .services.base {
    padding: 90px 0;
  }
  .servicesItem {
    padding: 12px 40px 12px 20px;
    margin-bottom: 18px;
  }
  .servicesItem > span {
    right: 20px;
    width: 18px;
    height: 16px;
  }
  .servicesItem h5 b {
    margin-right: 16px;
  }

  .contact {
    width: calc(100% - 60px);
    border-radius: 25px;
  }

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

  .intro__bg {
    border-radius: 0 0 30px 30px;
  }
  .intro__inner {
    padding: 120px 0 40px;
  }
  .intro__inner h1 {
    min-height: 110px;
  }

  .info.big {
    padding-bottom: 100px;
  }
  .info__inner {
    padding: 0 30px;
    margin-top: -60px;
  }
  .infoMain {
    width: calc(100% - 60px);
    border-radius: 25px;
    padding: 40px 0 100px;
  }
  .infoItem {
    min-height: 220px;
    border-radius: 25px;
    padding: 24px 20px;
  }
  .infoItem h6 {
    margin-bottom: 12px;
  }
  .infoItem p {
    font-size: 14px;
  }

  .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;
  }
  .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;
  }

  .gallery {
    padding: 60px 0 90px;
  }
  .gallery__inner-title {
    margin-bottom: 40px;
  }
  .gallery__inner-title p {
    margin-bottom: 30px;
  }
  .gallery__inner-row {
    margin: 0 -12px;
  }
  .galleryItem {
    width: calc(33.3% - 24px);
    margin: 12px;
    border-radius: 24px;
  }

  .policy {
    padding: 80px 0;
  }

  .boutique {
    padding: 70px 0 80px;
  }
  .boutique.sm {
    padding-bottom: 70px;
  }
  .boutique__inner-top {
    margin-bottom: 44px;
  }
  .boutique__inner-row {
    margin: 0 -10px;
  }
  .boutique__inner-foot {
    padding-top: 44px;
  }
  .boutiqueItem {
    width: calc(33.3% - 20px);
    margin: 14px 10px;
  }

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

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

  .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;
  }

  .header {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .header.active {
    background-color: var(--main);
  }
  .header__inner {
    padding: 24px 0;
  }

  body.active {
    overflow: hidden;
  }

  .nav {
    max-width: unset;
    position: fixed;
    top: 82px;
    left: 0;
    width: 100%;
    height: calc(100% - 82px);
    z-index: 9;
    background: rgba(0, 0, 0, 0.4);
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -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;
  }
  .nav.active {
    transform: translate(0, 0);
    -moz-ransform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
  }
  .nav__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 1;
    padding: 60px 20px 40px 20px;
    height: 100%;
    overflow-y: auto;
    background: var(--main);
    max-width: 390px;
  }
  .nav__inner-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    margin: 0 0 30px 0;
  }
  .nav__inner-links li {
    width: 100%;
    margin: 0 0 30px 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .nav__inner-links li a {
    font-size: 25px;
  }
  .nav__inner-buttons {
    margin: auto 0 0 0;
    -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;
  }
  .nav__inner-buttons .button {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 20px;
    font-size: 20px;
  }
  .nav__inner-buttons .social a {
    width: 24px;
    height: 24px;
  }
  .nav__inner-buttons .social a.big {
    width: 28px;
    height: 28px;
  }
  .nav__inner-buttons .social a.sm {
    width: 14px;
  }

  .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: 30px;
    height: 30px;
  }
  .burger:hover {
    opacity: 0.8;
  }
  .burger::before {
    top: 15%;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    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: 2px;
    border-radius: 2px;
    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: 15%;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    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);
  }
}
@media (max-width: 930px) {
  h1,
h2 {
    font-size: 35px;
  }

  h4 {
    font-size: 18px;
  }

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

  .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;
  }

  .hero__inner {
    min-height: calc(100vh - 58px);
  }
  .hero__inner-buttons {
    padding: 15px 20px;
  }

  .advert__inner {
    padding: 20px 0;
    height: 58px;
  }
  .advertItem {
    padding-right: 12px;
  }
  .advertItem h4 span {
    margin-right: 12px;
  }

  .about {
    padding: 70px 0;
  }
  .about.sm {
    padding: 60px 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;
    border-radius: 22px;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .aboutImage__inner {
    padding-bottom: 70%;
  }
  .aboutContent {
    width: 100%;
    max-width: unset;
  }

  .realisation {
    padding-bottom: 70px;
  }
  .realisation__inner-foot {
    padding-top: 30px;
  }
  .realisation__inner-slider {
    padding-bottom: 38px;
    margin: 0 -4px;
  }
  .realisation__inner-wrapper {
    margin: 0;
  }
  .realisation__inner .swiper-pagination {
    height: 10px !important;
  }

  .services.base {
    padding: 70px 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;
    border-radius: 22px;
  }
  .servicesImage__inner {
    padding-bottom: 70%;
  }
  .servicesContent {
    width: 100%;
    max-width: unset;
  }

  .contact {
    padding: 35px 0;
  }
  .contact.sm {
    padding: 35px 0;
  }
  .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-top: 60px;
  }
  .application.base {
    padding: 60px 0 70px;
  }
  .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;
  }

  .intro__bg {
    border-radius: 0 0 22px 22px;
  }
  .intro__inner {
    padding: 100px 0 40px;
  }
  .intro__inner h1 {
    min-height: 80px;
  }

  .info.big {
    padding-bottom: 80px;
  }
  .info__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
    padding: 0;
  }
  .infoMain {
    margin-bottom: 30px;
    padding: 40px 0;
  }
  .infoMain__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .infoMain__content {
    width: 100%;
    max-width: unset;
    margin-bottom: 30px;
  }
  .infoMain__text {
    width: 100%;
    max-width: unset;
  }
  .infoItem {
    width: 100%;
    max-width: unset;
    margin-bottom: 24px;
    border-radius: 20px;
  }
  .infoItem:last-child {
    margin: 0;
  }

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

  .gallery {
    padding: 50px 0 70px;
  }
  .gallery__inner-title {
    margin-bottom: 30px;
  }
  .gallery__inner-title p {
    margin-bottom: 24px;
  }
  .gallery__inner-row {
    margin: 0 -8px;
  }
  .galleryItem {
    width: calc(33.3% - 16px);
    margin: 8px;
    border-radius: 20px;
  }

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

  .boutique {
    padding: 60px 0;
  }
  .boutique.sm {
    padding-bottom: 60px;
  }
  .boutique__inner-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 35px;
  }
  .boutique__inner-side {
    width: 100%;
    max-width: unset;
    margin-bottom: 24px;
  }
  .boutique__inner-text {
    width: 100%;
    max-width: unset;
  }
  .boutique__inner-row {
    margin: 0 -8px;
  }
  .boutique__inner-foot {
    padding-top: 35px;
  }
  .boutiqueItem {
    width: calc(33.3% - 16px);
    margin: 12px 8px;
    border-radius: 20px;
  }
  .boutiqueItem__content {
    padding: 15px;
  }

  .product {
    padding: 60px 0 80px;
  }
  .product__inner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .productImage {
    width: calc(55% - 10px);
    border-radius: 24px;
  }
  .productContent {
    width: calc(45% - 10px);
  }
  .productContent h2 {
    margin-bottom: 12px;
  }

  .basket {
    padding: 60px 0;
  }
  .basketItem {
    margin-bottom: 20px;
    border-radius: 30px;
    padding: 20px 16px;
  }
  .basketItem__side {
    width: calc(55% - 20px);
  }
  .basketItem__side:last-child {
    width: calc(45% - 20px);
  }
  .basketItem__image {
    width: 160px;
    margin-right: 20px;
    border-radius: 20px;
  }
  .basketItem__content {
    width: calc(100% - 180px);
  }
  .basketItem__content h5 {
    margin-bottom: 12px;
  }
  .basketItem__number input {
    font-size: 22px;
  }

  .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;
  }

  h1,
h2 {
    font-size: 30px;
  }

  .services {
    width: calc(100% - 40px);
    border-radius: 20px;
    margin-bottom: 40px;
  }
  .services.base {
    padding: 60px 0;
  }

  .contact {
    width: calc(100% - 40px);
    border-radius: 20px;
  }

  .info.big {
    padding-bottom: 60px;
  }
  .infoMain {
    width: calc(100% - 40px);
    border-radius: 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;
  }

  .gallery {
    padding: 50px 0 60px;
  }
  .galleryItem {
    width: calc(50% - 16px);
    border-radius: 16px;
  }

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

  .product {
    padding: 50px 0 60px;
  }
  .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: 24px 20px;
  }
  .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);
  }
}
@media (max-width: 540px) {
  h1,
h2 {
    font-size: 25px;
  }

  h4 {
    font-size: 14px;
  }

  h5 {
    font-size: 16px;
  }

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

  body {
    font-size: 14px;
  }

  .header__inner {
    padding: 20px 0;
  }
  .header__inner-logo {
    font-size: 30px;
  }

  .nav {
    top: 70px;
    height: calc(100% - 70px);
  }

  .hero__bg::before {
    background: var(--black);
    opacity: 0.4;
  }
  .hero__inner {
    min-height: calc(100vh - 44px);
  }
  .hero__inner-title {
    margin-bottom: 24px;
  }
  .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%;
    padding: 0;
  }
  .hero__inner-buttons::before {
    border-radius: 20px;
    display: none;
  }
  .hero__inner-buttons .button {
    width: 100%;
    max-width: 210px;
    margin: 0 0 15px 0;
  }

  .advert__inner {
    padding: 15px 0;
    height: 44px;
  }
  .advertItem {
    padding-right: 10px;
  }
  .advertItem h4 span {
    margin-right: 10px;
  }

  .about {
    padding: 40px 0;
  }
  .about.sm {
    padding: 40px 0;
  }
  .aboutImage {
    border-radius: 16px;
    margin-bottom: 24px;
  }
  .aboutImage__inner {
    padding-bottom: 98%;
  }
  .aboutContent p {
    margin-bottom: 18px;
  }
  .aboutContent .button {
    width: 100%;
    max-width: 210px;
  }

  .realisation {
    padding-bottom: 40px;
  }
  .realisation__inner-slider {
    padding-bottom: 30px;
  }
  .realisation__inner-foot {
    padding-top: 24px;
    -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-foot .button {
    margin: 0 0 15px 0;
    width: 100%;
    max-width: 210px;
  }
  .realisation__inner .swiper-pagination {
    height: 8px !important;
  }
  .realisationItem {
    border-radius: 14px;
  }

  .services {
    width: 100%;
    border-radius: unset;
    padding: 40px 0;
    margin-bottom: 0;
  }
  .services.base {
    padding: 40px 0;
  }
  .servicesImage {
    border-radius: 16px;
    margin-bottom: 24px;
  }
  .servicesImage__inner {
    padding-bottom: 98%;
  }
  .servicesItem {
    padding: 12px 35px 12px 16px;
    margin-bottom: 14px;
    border-width: 1px;
  }
  .servicesItem > span {
    right: 16px;
    width: 16px;
    height: 14px;
  }
  .servicesItem h5 b {
    margin-right: 12px;
  }

  .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;
  }
  .contactInfo__links {
    margin-bottom: 30px;
  }

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

  .intro__bg {
    border-radius: 0;
  }
  .intro__inner {
    padding: 80px 0 40px;
  }

  .info {
    background-color: #f5f5f5;
    padding: 40px 0;
  }
  .info.big {
    padding-bottom: 40px;
  }
  .infoMain {
    padding: 0;
    width: 100%;
  }
  .infoMain__content {
    margin-bottom: 18px;
  }
  .infoMain__inner {
    padding: 0 0 56px 0;
    position: relative;
  }
  .infoMain .button {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 210px;
  }
  .infoMain h2 {
    margin: 0;
  }
  .infoItem {
    min-height: 180px;
    border-radius: 16px;
    margin-bottom: 20px;
  }

  .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;
  }

  .gallery {
    padding: 40px 0;
  }
  .gallery__inner-title {
    margin-bottom: 24px;
  }
  .gallery__inner-title p {
    margin-bottom: 22px;
  }
  .gallery__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;
  }
  .gallery__inner-buttons .button {
    width: 100%;
    max-width: 210px;
    margin: 0 0 15px 0;
  }
  .gallery__inner-row {
    margin: 0 -5px;
  }
  .gallery__inner-foot {
    padding-top: 24px;
  }
  .gallery__inner-foot .button {
    width: 100%;
    max-width: 210px;
  }
  .galleryItem {
    width: calc(50% - 10px);
    border-radius: 12px;
    margin: 5px;
  }

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

  .boutique {
    padding: 40px 0;
  }
  .boutique.sm {
    padding-bottom: 40px;
  }
  .boutique__inner-top {
    margin-bottom: 30px;
  }
  .boutique__inner-title {
    margin-bottom: 30px;
  }
  .boutique__inner-side {
    margin-bottom: 16px;
  }
  .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;
  }
  .boutiqueItem {
    width: 100%;
    margin: 0 0 20px 0;
  }
  .boutiqueItem:last-child {
    margin: 0;
  }
  .boutiqueItem__content {
    padding: 20px;
  }
  .boutiqueItem h5 {
    font-size: 23px;
  }
  .boutiqueItem p {
    font-size: 20px;
  }

  .product {
    padding: 40px 0;
  }
  .productImage {
    border-radius: 16px;
  }

  .basket {
    padding: 40px 0 20px;
  }
  .basket__inner-content {
    margin-bottom: 30px;
  }
  .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 h5 {
    font-size: 23px;
  }
  .basket__inner-total p {
    font-size: 20px;
  }
  .basketItem {
    border-radius: 20px;
  }
  .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%;
    text-align: center;
  }
  .basketItem__content h5 {
    font-size: 23px;
  }
  .basketItem__content p {
    font-size: 20px;
  }
  .basketItem__number {
    width: 100%;
    margin: 0 0 20px 0;
    text-align: center;
  }
  .basketItem__number input {
    text-align: center;
  }
  .basketItem__buttons {
    width: 100%;
  }

  .footer {
    padding-top: 40px;
  }
  .footer__inner {
    border-width: 1px;
    padding: 24px 0;
  }
  .footerMain__logo {
    font-size: 30px;
  }
  .footerMain__links li a {
    font-size: 14px;
  }
}
@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%;
  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;
}

.realisation__inner-slider {
    height: fit-content;
}

.serviceDesc {
    display: none;
}

.serviceDesc.active {
    display: block;
}

p, div:not(:is(h1 > div, h2 > div, h3 > div, h4 > div, h5 > div, h6 > div, span > div)) {
    font-family: var(--text-font);
    font-size: var(--text-size);
}

h1, h2, h1 div, h2 div {
    font-size: var(--header-size)!important;
}

h1, h2 {
    font-family: var(--header-font);
}
