:root {
  --font-family: "WorkSans", sans-serif;
  --content-width: 1520px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --main-color: #272E3E;
  --accent-color: #F0642F;
  --light-color: #fff;
  --scrollTop: 0;
  --header-height: 130px;
}
@media (max-width: 992px) {
  :root {
    --header-height: 110px;
  }
}
@media (max-width: 992px) {
  :root {
    --header-height: 83px;
  }
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable value-keyword-case */
@font-face {
  font-family: "WorkSans";
  src: url("../fonts/../fonts/WorkSans-Light.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "WorkSans";
  src: url("../fonts/../fonts/WorkSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "WorkSans";
  src: url("../fonts/../fonts/WorkSans-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "WorkSans";
  src: url("../fonts/../fonts/WorkSans-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "WorkSans";
  src: url("../fonts/../fonts/WorkSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/../fonts/Raleway-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6, p {
  padding: 0;
  margin: 0;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.page {
  height: 100%;
  font-family: var(--font-family, sans-serif);
  -webkit-text-size-adjust: 100%;
}

.page__body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  font-size: 18px;
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  text-decoration: none;
}

.site-container {
  overflow: hidden;
}

.is-hidden {
  display: none !important; /* stylelint-disable-line declaration-no-important */
}

.btn-reset {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

._container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

._container-inner {
  max-width: 1262px;
  margin: 0 auto;
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

.btn-outline {
  color: var(--accent-color);
  font-family: "Raleway";
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border: 2px solid var(--accent-color);
  border-radius: 12px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  z-index: 0;
}
.btn-outline:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--accent-color);
  border-radius: 8px;
  z-index: -1;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.btn-outline:hover {
  color: var(--light-color);
}
.btn-outline:hover:after {
  width: 100%;
}

.btn-grad {
  display: inline-block;
  color: var(--light-color);
  font-family: "Raleway";
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 12px;
  background: -webkit-gradient(linear, left top, right top, from(#F0642F), color-stop(48.97%, #8F663E), color-stop(101.1%, #306100));
  background: linear-gradient(90deg, #F0642F 0%, #8F663E 48.97%, #306100 101.1%);
  -webkit-animation: gradient 2s infinite linear;
  animation: gradient 2s infinite linear;
  background-size: 170%;
  -webkit-box-shadow: 0px 20px 40px 0px rgba(240, 100, 47, 0.3);
  box-shadow: 0px 20px 40px 0px rgba(240, 100, 47, 0.3);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.btn-grad img {
  margin-left: 10px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.btn-grad:hover img {
  -webkit-transform: translateX(10px);
  -ms-transform: translateX(10px);
  transform: translateX(10px);
}

.title {
  color: var(--main-color);
  font-size: 56px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  text-transform: uppercase;
}
.title > span {
  color: var(--accent-color);
}
@media (max-width: 768px) {
  .title {
    font-size: 44px;
  }
}
@media (max-width: 480px) {
  .title {
    font-size: 32px;
  }
}

.title-white {
  color: var(--light-color);
  text-align: center;
  font-size: 64px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .title-white {
    font-size: 44px;
  }
}
@media (max-width: 480px) {
  .title-white {
    font-size: 32px;
  }
}

.centered {
  text-align: center;
}

.subtitle {
  color: var(--main-color);
  font-family: "Raleway";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 75px;
}
.subtitle p:not(:last-child) {
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .subtitle {
    font-size: 16px;
    line-height: 140%;
    margin-bottom: 50px;
  }
}

.banner-promo_blog {
  padding-bottom: 130px !important;
}
.banner-promo .subtitle {
  margin: 0;
  margin-top: 25px;
  color: var(--light-color);
}

/**
 * Swiper 10.2.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: August 17, 2023
 */
@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;
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

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

.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-transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

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

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

.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;
  display: block;
}

.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-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.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-css-mode.swiper-horizontal > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
}

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

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  -ms-scroll-snap-type: none;
  scroll-snap-type: none;
}

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

.swiper-css-mode.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-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.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-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.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-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.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-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%;
  -ms-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-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: var(--swiper-navigation-top-offset, 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 svg, .swiper-button-prev svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}

.swiper-rtl .swiper-button-next svg, .swiper-rtl .swiper-button-prev svg {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

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

.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:after, .swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

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

.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: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  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);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}

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

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

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

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

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

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-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: var(--swiper-pagination-bullet-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: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  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%);
  -ms-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%);
  -ms-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-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, 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);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-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: var(--swiper-pagination-progressbar-size, 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: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

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

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  -ms-touch-action: none;
  background: var(--swiper-scrollbar-bg-color, 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: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-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;
  -ms-touch-action: none;
  touch-action: none;
}

.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 {
  pointer-events: auto;
}

.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;
  -ms-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;
  -ms-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-prev {
  pointer-events: auto;
  visibility: visible;
}

.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-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

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

.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-flip.swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-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;
  -ms-transform-origin: center bottom;
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

.all_pages {
  position: fixed;
  top: 20%;
  right: 0;
  z-index: 101;
}
.all_pages:hover ul {
  right: 0;
}
.all_pages .page_point {
  padding: 10px 15px;
  background: #00d2ff;
  cursor: pointer;
  color: #fff;
}
.all_pages ul {
  background: #00d2ff;
  padding: 15px 20px;
  position: absolute;
  top: 100%;
  width: 200px;
  right: -200px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  max-height: 450px;
  overflow-y: auto;
}
.all_pages ul li {
  list-style: none;
  margin-bottom: 15px;
  font-size: 16px;
}
.all_pages ul li a {
  color: #fff;
}

.wow {
  visibility: hidden;
}

body {
  background-color: #F8F8F8;
}
body.lock {
  overflow: hidden;
}

.header {
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: white;
  background-color: #F8F8F8;
  margin: 0 auto;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
@media (max-width: 992px) {
  .header {
    padding: 10px 0;
  }
}
.header.scroll {
  -webkit-box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.2);
  padding: 5px 0;
}
.header.scroll .header__logo svg {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.header__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 992px) {
  .header__wrap {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
@media (max-width: 992px) {
  .header__wrap > .header__admin a {
    font-size: 0;
    border: none;
  }
}
.header__logo {
  position: relative;
  z-index: 101;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  margin-right: 110px;
  width: 131px;
}
@media (max-width: 1400px) {
  .header__logo {
    margin-right: 50px;
  }
}
@media (max-width: 992px) {
  .header__logo {
    width: auto;
  }
}
.header__logo svg {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.header__logo svg path, .header__logo svg g, .header__logo svg rect {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 576px) {
  .header__logo {
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  .header__logo svg {
    max-width: 90px;
    height: auto;
  }
}
@-webkit-keyframes rotateLogo {
  0% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  25% {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
  }
  50% {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
  75% {
    -webkit-transform: rotateY(720deg);
    transform: rotateY(720deg);
  }
  100% {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
}
@keyframes rotateLogo {
  0% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  25% {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
  }
  50% {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
  75% {
    -webkit-transform: rotateY(720deg);
    transform: rotateY(720deg);
  }
  100% {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
}
.header__admin {
  margin-left: auto;
}
.header__admin a.header__login {
  color: var(--main-color);
  margin-right: 40px;
}
@media (max-width: 1200px) {
  .header__admin a.header__login {
    margin-right: 20px;
  }
}
@media (max-width: 576px) {
  .header__admin a.header__login {
    margin-right: 0;
  }
}
@media (max-width: 576px) or (max-height: 400px) {
  .header__admin {
    margin-right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    text-align: center;
  }
}
.header__admin a {
  display: inline-block;
  font-family: "Raleway";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media (max-width: 992px) {
  .header__admin {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 7%;
  }
  @media (max-width: 576px) or (max-height: 400px) {
    .header__admin {
      bottom: 7%;
    }
  }
  .header__admin a {
    padding: 12px 24px;
    border-radius: 12px;
    color: var(--light-color) !important;
    border: 2px solid var(--light-color);
  }
  @media (max-width: 576px) or (max-height: 400px) {
    .header__admin a {
      border: none;
      border-radius: 0;
      -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
    }
  }
  .header__admin a:after {
    content: none;
  }
}
.header__login {
  position: relative;
}
.header__login:after {
  content: "";
  opacity: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: 12px;
  height: 12px;
  background-color: var(--accent-color);
  border-radius: 50%;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.header__login:hover:after {
  opacity: 1;
}
.header__sign {
  padding: 12px 24px;
}
@media (max-width: 992px) {
  .header .nav {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    overflow-y: auto;
    width: 100%;
    height: 100vh;
    background-color: rgb(220, 135, 135);
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -webkit-transform-origin: 100% 0%;
    -ms-transform-origin: 100% 0%;
    transform-origin: 100% 0%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
  }
  .header .nav.menu--active {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
.header .nav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 992px) {
  .header .nav > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-left: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: -webkit-gradient(linear, left bottom, left top, from(#F0642F), color-stop(28.97%, #8F663E), color-stop(101.1%, #306100));
    background: linear-gradient(0deg, #F0642F 0%, #8F663E 28.97%, #306100 101.1%);
    position: relative;
  }
}
.header .nav > ul > li:not(:last-child) {
  margin-right: 56px;
}
@media (max-width: 1400px) {
  .header .nav > ul > li:not(:last-child) {
    margin-right: 30px;
  }
}
@media (max-width: 1200px) {
  .header .nav > ul > li:not(:last-child) {
    margin-right: 20px;
  }
}
@media (max-width: 992px) {
  .header .nav > ul > li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.header .nav > ul > li > a {
  color: var(--main-color);
  font-family: "Raleway";
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  position: relative;
}
@media (max-width: 992px) {
  .header .nav > ul > li > a {
    font-size: 24px;
    color: var(--light-color);
  }
}
@media (max-height: 400px) {
  .header .nav > ul > li > a {
    font-size: 18px;
  }
}
@media (min-width: 993px) {
  .header .nav > ul > li > a.active:after {
    content: "";
    opacity: 1;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    position: absolute;
    left: 50%;
    bottom: -18px;
    width: 12px;
    height: 12px;
    background-color: var(--accent-color);
    border-radius: 50%;
  }
}
.header .nav > ul > li > a:after {
  content: "";
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 0;
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: 12px;
  height: 12px;
  background-color: var(--accent-color);
  border-radius: 50%;
}
@media (min-width: 993px) {
  .header .nav > ul > li > a:hover:after {
    opacity: 1;
  }
}
@media (max-width: 992px) {
  .header .nav > ul {
    width: 100%;
    height: 100%;
  }
}
.header .burger {
  --burger-width: 30px;
  --burger-height: 20px;
  --burger-line-height: 2px;
  position: relative;
  border: none;
  padding: 0;
  width: var(--burger-width);
  height: var(--burger-height);
  color: #000;
  background-color: transparent;
  cursor: pointer;
  display: none;
}
.header .burger::before, .header .burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.header .burger::before {
  top: 0;
}
.header .burger::after {
  top: calc(100% - var(--burger-line-height));
}
.header .burger__line {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.header .burger--active::before {
  top: 50%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  background-color: var(--light-color);
}
.header .burger--active::after {
  top: 50%;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  background-color: var(--light-color);
}
.header .burger--active .burger__line {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .header .burger {
    display: block;
    z-index: 101;
  }
}

.hero {
  margin-top: var(--header-height);
  background-color: #F8F8F8;
  padding-top: 80px;
  position: relative;
}
.hero > img {
  position: absolute;
  z-index: 10;
  bottom: 2%;
  right: 4%;
}
@media (max-width: 1500px) {
  .hero > img {
    width: 300px;
  }
}
@media (max-width: 768px) {
  .hero > img {
    width: 200px;
  }
}
@media (max-width: 576px) {
  .hero > img {
    width: 150px;
  }
}
@media (max-width: 480px) {
  .hero > img {
    display: none;
  }
}
@media (max-width: 1600px) {
  .hero {
    padding-top: 80px;
  }
}
@media (max-width: 768px) {
  .hero {
    padding-top: 60px;
  }
}
@media (max-width: 480px) {
  .hero {
    padding-top: 30px;
  }
}
.hero__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 25px;
  -moz-column-gap: 25px;
  column-gap: 25px;
  padding-bottom: 155px;
}
@media (max-width: 1600px) {
  .hero__wrap {
    padding-bottom: 0;
  }
}
@media (max-width: 1400px) {
  .hero__wrap {
    padding-top: 30px;
  }
}
@media (max-width: 1200px) {
  .hero__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 50px;
    padding-top: 0;
  }
}
.hero__content {
  max-width: 640px;
  padding-top: 55px;
}
@media (max-width: 1600px) {
  .hero__content {
    max-width: 500px;
  }
}
@media (max-width: 1400px) {
  .hero__content {
    padding-top: 0px;
  }
}
@media (max-width: 1200px) {
  .hero__content {
    max-width: 100%;
  }
}
.hero__title {
  color: var(--main-color);
  font-size: 80px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 24px;
}
@media (max-width: 1600px) {
  .hero__title {
    font-size: 55px;
  }
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 46px;
  }
}
@media (max-width: 576px) {
  .hero__title {
    font-size: 37px;
  }
}
@media (max-width: 480px) {
  .hero__title {
    font-size: 32px;
    margin-bottom: 15px;
  }
}
.hero__text {
  color: var(--main-color);
  font-family: "Raleway";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 63px;
}
@media (max-width: 480px) {
  .hero__text {
    font-size: 18px;
    line-height: 130%;
  }
}
.hero__btn {
  padding: 20px 57px 20px 57px;
}
@media (max-width: 480px) {
  .hero__btn {
    padding: 15px 0;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.hero__img {
  position: relative;
}
.hero__img svg {
  overflow: hidden;
  position: absolute;
  top: -25px;
  left: 0;
  text-align: center;
}
.hero__img svg path, .hero__img svg rect {
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}
@media (max-width: 1600px) {
  .hero__img svg {
    position: static;
    width: 100%;
    height: auto;
  }
}
@media (max-width: 1200px) {
  .hero__img svg {
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
  }
}
@media (max-width: 1200px) and (max-width: 768px) {
  .hero__img svg {
    -webkit-transform: translateX(15px);
    -ms-transform: translateX(15px);
    transform: translateX(15px);
  }
}
@media (max-width: 1200px) and (max-width: 480px) {
  .hero__img svg {
    -webkit-transform: translateX(5px);
    -ms-transform: translateX(5px);
    transform: translateX(5px);
  }
}

.commissions {
  padding-top: 125px;
  padding-bottom: 130px;
  background-color: #f8f8f8;
}
@media (max-width: 1200px) {
  .commissions {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}
.commissions__title {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .commissions__title {
    margin-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .commissions__title {
    margin-bottom: 30px;
  }
}
.commissions__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-column-gap: 24px;
  -moz-column-gap: 24px;
  column-gap: 24px;
  margin-bottom: 72px;
}
@media (max-width: 1200px) {
  .commissions__items {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    row-gap: 24px;
  }
}
@media (max-width: 768px) {
  .commissions__items {
    margin-bottom: 50px;
  }
}
@media (max-width: 480px) {
  .commissions__items {
    row-gap: 15px;
    margin-bottom: 30px;
  }
}
.commissions__item {
  border-radius: 12px;
  background: var(--light-color);
  -webkit-box-shadow: 0px 10px 80px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 10px 80px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(100% - 18px);
  flex: 0 1 calc(100% - 18px);
  padding: 50px 35px 50px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 28px;
  -moz-column-gap: 28px;
  column-gap: 28px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  padding-left: 40px;
}
@media (min-width: 993px) {
  .commissions__item:hover {
    -webkit-box-shadow: 0px 10px 80px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 10px 80px 0px rgba(0, 0, 0, 0.3);
  }
}
@media (max-width: 1600px) {
  .commissions__item {
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 1200px) {
  .commissions__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc(50% - 12px);
    flex: 0 1 calc(50% - 12px);
    max-width: 490px;
  }
}
@media (max-width: 992px) {
  .commissions__item {
    padding-left: 20px;
  }
}
@media (max-width: 768px) {
  .commissions__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    max-width: 490px;
    padding-left: 40px;
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
  }
}
@media (max-width: 480px) {
  .commissions__item {
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 20px;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}
@media (max-width: 1600px) {
  .commissions__img img {
    width: 110px;
  }
}
@media (max-width: 480px) {
  .commissions__img img {
    width: 80px;
  }
}
.commissions__info > ul > li {
  color: var(--main-color);
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 1600px) {
  .commissions__info > ul > li {
    font-size: 18px;
  }
}
@media (max-width: 1200px) {
  .commissions__info > ul > li {
    font-size: 22px;
  }
}
@media (max-width: 992px) {
  .commissions__info > ul > li {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .commissions__info > ul > li {
    font-size: 16px;
  }
}
@media (max-width: 400px) {
  .commissions__info > ul > li {
    font-size: 13px;
  }
}
.commissions__info > ul > li:nth-child(2) {
  color: #000000;
  font-size: 35px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 1600px) {
  .commissions__info > ul > li:nth-child(2) {
    font-size: 27px;
  }
}
@media (max-width: 1200px) {
  .commissions__info > ul > li:nth-child(2) {
    font-size: 34px;
  }
}
@media (max-width: 992px) {
  .commissions__info > ul > li:nth-child(2) {
    font-size: 27px;
  }
}
@media (max-width: 400px) {
  .commissions__info > ul > li:nth-child(2) {
    font-size: 20px;
  }
}
.commissions__info > ul > li:not(:last-child) {
  margin-bottom: 10px;
}
.commissions__btn {
  padding: 20px 48px 20px 48px;
}
@media (max-width: 480px) {
  .commissions__btn {
    padding: 15px 0;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.our-brands {
  padding-top: 128px;
  padding-bottom: 158px;
  background-color: var(--light-color);
}
.our-brands .subtitle h2 {
  color: var(--main-color);
  font-size: 56px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 60px;
  text-align: center;
}
@media (max-width: 768px) {
  .our-brands .subtitle h2 {
    font-size: 44px;
    margin-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .our-brands .subtitle h2 {
    font-size: 32px;
    margin-bottom: 30px;
  }
}
@media (max-width: 992px) {
  .our-brands {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media (max-width: 480px) {
  .our-brands {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.our-brands__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 992px) {
  .our-brands__wrap {
    display: block;
  }
}
.our-brands__title {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 180px;
  flex: 0 1 180px;
  -webkit-writing-mode: tb-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: tb-rl;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  text-align: right;
}
@media (max-width: 1200px) {
  .our-brands__title {
    -ms-flex-preferred-size: 100px;
    flex-basis: 100px;
  }
}
@media (max-width: 992px) {
  .our-brands__title {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -webkit-writing-mode: inherit;
    -ms-writing-mode: inherit;
    writing-mode: inherit;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    text-align: left;
    margin-bottom: 50px;
  }
}
@media (max-width: 576px) {
  .our-brands__title {
    margin-bottom: 30px;
  }
}
.our-brands__slider {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(100% - 180px);
  flex: 0 1 calc(100% - 180px);
  position: relative;
}
@media (max-width: 1200px) {
  .our-brands__slider {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc(100% - 100px);
    flex: 0 1 calc(100% - 100px);
  }
}
@media (max-width: 992px) {
  .our-brands__slider {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}
.our-brands .swiper-slide {
  width: 100% !important;
}
.our-brands__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 32px;
  -moz-column-gap: 32px;
  column-gap: 32px;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .our-brands__header {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    margin-bottom: 30px;
    padding-top: 60px;
  }
}
@media (max-width: 768px) {
  .our-brands__icon img {
    width: 60px;
  }
}
.our-brands__names h3 {
  margin-bottom: 10px;
}
@media (max-width: 1200px) {
  .our-brands__names h3 {
    font-size: 40px;
    margin-bottom: 5px;
  }
}
@media (max-width: 768px) {
  .our-brands__names h3 {
    font-size: 28px;
  }
}
@media (max-width: 400px) {
  .our-brands__names h3 {
    font-size: 22px;
  }
}
.our-brands__names > div {
  color: #9B9B9B;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 56px;
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  .our-brands__names > div {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .our-brands__names > div {
    font-size: 22px;
    line-height: 130%;
  }
}
@media (max-width: 400px) {
  .our-brands__names > div {
    font-size: 18px;
  }
}
.our-brands__text {
  height: 570px;
  overflow-y: scroll;
  padding-right: 80px;
}
@media (max-width: 768px) {
  .our-brands__text {
    padding-right: 30px;
  }
}
@media (max-width: 480px) {
  .our-brands__text {
    padding-right: 15px;
  }
}
.our-brands__text p {
  color: var(--main-color);
  font-family: "Raleway";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.our-brands__text p:not(:last-child) {
  margin-bottom: 30px;
}
@media (max-width: 480px) {
  .our-brands__text p {
    font-size: 16px;
  }
}
.our-brands .swiper-btn-prev,
.our-brands .swiper-btn-next {
  position: absolute;
  z-index: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}
@media (max-width: 576px) {
  .our-brands .swiper-btn-prev,
  .our-brands .swiper-btn-next {
    width: 40px;
    height: 40px;
  }
}
.our-brands .swiper-btn-prev:hover,
.our-brands .swiper-btn-next:hover {
  background-color: rgb(234, 231, 231);
}
.our-brands .swiper-btn-prev {
  top: 0;
  right: 64px;
}
@media (max-width: 576px) {
  .our-brands .swiper-btn-prev {
    right: auto;
    left: 0;
  }
}
.our-brands .swiper-btn-next {
  top: 0;
  right: 0;
}
@media (max-width: 576px) {
  .our-brands .swiper-btn-next {
    right: auto;
    left: 55px;
  }
}
.our-brands .swiper-button-disabled {
  opacity: 0.5;
  cursor: auto;
  pointer-events: none;
}
.our-brands *::-webkit-scrollbar {
  width: 4px;
}
.our-brands *::-webkit-scrollbar-track {
  background: #D9D9D9;
}
.our-brands *::-webkit-scrollbar-thumb {
  background-color: var(--accent-color);
}

.withdraw {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(57, 102, 0, 0.19)), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(180deg, rgba(57, 102, 0, 0.19) 0%, rgba(255, 255, 255, 0) 100%);
  padding-top: 128px;
}
@media (max-width: 1200px) {
  .withdraw {
    padding-bottom: 50px;
  }
}
@media (max-width: 768px) {
  .withdraw {
    padding-top: 90px;
  }
}
.withdraw__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 60px;
  -moz-column-gap: 60px;
  column-gap: 60px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .withdraw__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 50px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.withdraw__title {
  margin-bottom: 60px;
}
@media (max-width: 480px) {
  .withdraw__title {
    margin-bottom: 30px;
  }
}
@media (max-width: 400px) {
  .withdraw__title {
    font-size: 28px;
  }
}
.withdraw__img {
  padding-top: 10px;
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 564px;
  flex: 0 1 564px;
  -ms-grid-column-align: center;
  justify-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}
@media (max-width: 1200px) {
  .withdraw__img {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}
@media (max-width: 576px) {
  .withdraw__img svg {
    width: 100%;
    height: auto;
  }
}
.withdraw__info {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 750px;
  flex: 0 1 750px;
}
@media (max-width: 1200px) {
  .withdraw__info {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}
.withdraw__inner {
  -webkit-transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  transform-origin: 0% 0%;
  max-width: 270px;
  position: absolute;
  left: 50%;
  bottom: -5%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.withdraw__inner h4 {
  text-align: center;
  color: var(--main-color);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 55px;
}
@media (max-width: 576px) {
  .withdraw__inner h4 {
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .withdraw__inner h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
@media (max-width: 400px) {
  .withdraw__inner h4 {
    font-size: 16px;
    margin-bottom: 5px;
  }
}
.withdraw__btn {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 20px;
  padding-bottom: 20px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.withdraw__btn:nth-of-type(1) {
  margin-bottom: 16px;
}
@media (max-width: 400px) {
  .withdraw__btn:nth-of-type(1) {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .withdraw__btn {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
@media (max-width: 400px) {
  .withdraw__btn {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 14px;
  }
}
@media (max-width: 1400px) {
  .withdraw__items {
    margin-bottom: 50px;
  }
}
.withdraw__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 32px;
  -moz-column-gap: 32px;
  column-gap: 32px;
  margin-bottom: 56px;
}
@media (max-width: 1400px) {
  .withdraw__item {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    margin-bottom: 25px;
  }
}
@media (max-width: 480px) {
  .withdraw__item {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 25px;
    text-align: center;
  }
}
.withdraw__icon {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 96px;
  flex: 0 1 96px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background-color: var(--accent-color);
  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;
  -webkit-box-shadow: 0px 20px 40px 0px rgba(240, 100, 47, 0.3);
  box-shadow: 0px 20px 40px 0px rgba(240, 100, 47, 0.3);
}
@media (max-width: 1400px) {
  .withdraw__icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 80px;
    flex: 0 1 80px;
    width: 80px;
    height: 80px;
  }
  .withdraw__icon img {
    width: 50%;
  }
}
.withdraw__descr {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(100% - 128px);
  flex: 0 1 calc(100% - 128px);
}
@media (max-width: 1400px) {
  .withdraw__descr {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc(100% - 100px);
    flex: 0 1 calc(100% - 100px);
  }
}
.withdraw__descr h3 {
  color: var(--main-color);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 180%;
  margin-bottom: 16px;
}
@media (max-width: 1400px) {
  .withdraw__descr h3 {
    font-size: 22px;
    margin-bottom: 8px;
  }
}
.withdraw__descr p {
  color: var(--main-color);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  opacity: 0.7;
}
@media (max-width: 1400px) {
  .withdraw__descr p {
    font-size: 18px;
  }
}
.withdraw__payments {
  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;
  row-gap: 24px;
  -webkit-column-gap: 24px;
  -moz-column-gap: 24px;
  column-gap: 24px;
}
@media (max-width: 1440px) {
  .withdraw__payments {
    row-gap: 15px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
@media (max-width: 1200px) {
  .withdraw__payments {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.withdraw__payment {
  width: 233px;
  height: 100px;
  border-radius: 12px;
  border: 1px solid #DDD;
  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;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.withdraw__payment:hover {
  -webkit-filter: sepia(100%);
  filter: sepia(100%);
  border: 1px solid rgba(0, 0, 0, 0.5);
}
@media (max-width: 1440px) {
  .withdraw__payment {
    width: 180px;
    height: 80px;
  }
}
@media (max-width: 1200px) {
  .withdraw__payment {
    width: 230px;
    height: 100px;
  }
}
@media (max-width: 480px) {
  .withdraw__payment {
    height: 80px;
  }
}

.work {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 1920px 1250px;
  padding-top: 135px;
  padding-bottom: 128px;
}
@media (max-width: 768px) {
  .work {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.work__title {
  margin-bottom: 60px;
  white-space: wrap;
}
@media (max-width: 768px) {
  .work__title {
    margin-bottom: 60px;
  }
}
@media (max-width: 480px) {
  .work__title {
    margin-bottom: 40px;
  }
}
.work__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 24px;
  margin-bottom: 72px;
}
@media (max-width: 768px) {
  .work__items {
    margin-bottom: 60px;
  }
}
.work__item {
  background-repeat: no-repeat;
  background-size: 256px 256px;
  background-position: 110% 30%;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(33.3333333333% - 18px);
  flex: 0 1 calc(33.3333333333% - 18px);
  border-radius: 12px;
  border: 2px solid #FFF;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  padding: 38px 40px;
}
.work__item:hover {
  -webkit-box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.3);
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);
}
@media (max-width: 992px) {
  .work__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc(50% - 12px);
    flex: 0 1 calc(50% - 12px);
  }
}
@media (max-width: 768px) {
  .work__item {
    padding: 30px 20px;
  }
}
@media (max-width: 576px) {
  .work__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}
@media (max-width: 400px) {
  .work__item {
    text-align: center;
  }
}
.work__icon {
  width: 72px;
  height: 72px;
  margin-bottom: 28px;
}
@media (max-width: 400px) {
  .work__icon {
    margin-right: auto;
    margin-left: auto;
  }
}
.work__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.work__name {
  color: var(--accent-color);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .work__name {
    line-height: 120%;
  }
}
.work__text {
  color: var(--main-color);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  opacity: 0.7;
}
.work__btn {
  padding: 20px 48px 20px 48px;
}
@media (max-width: 480px) {
  .work__btn {
    padding: 15px 0;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.contact {
  padding-top: 130px;
  padding-bottom: 90px;
  background-color: #F8F8F8;
  overflow: hidden;
}
@media (max-width: 992px) {
  .contact {
    padding-top: 30px;
  }
}
.contact__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .contact__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 40px;
  }
}
.contact__content {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  background-repeat: no-repeat;
  background-size: 413px 399px;
  background-position: center bottom;
}
@media (max-width: 992px) {
  .contact__content {
    background-size: 200px 190px;
    background-position: 90% 50%;
  }
}
.contact__title {
  margin-bottom: 50px;
}
@media (max-width: 480px) {
  .contact__title {
    margin-bottom: 20px;
  }
}
.contact__subtitle {
  color: var(--main-color);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  opacity: 0.7;
  max-width: 580px;
}
@media (max-width: 480px) {
  .contact__subtitle {
    font-size: 20px;
    line-height: 130%;
  }
}
.contact__form-wrap {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  border-radius: 12px;
  border: 2px solid #FFF;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.08);
  padding: 53px 75px;
}
@media (max-width: 1200px) {
  .contact__form-wrap {
    padding: 60px 40px;
  }
}
@media (max-width: 576px) {
  .contact__form-wrap {
    padding: 40px 20px;
  }
}
.contact__form-name {
  color: var(--accent-color);
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 48px;
}
@media (max-width: 480px) {
  .contact__form-name {
    margin-bottom: 30px;
    font-size: 32px;
  }
}
.contact__form input {
  width: 100%;
  margin-bottom: 32px;
  padding: 12px;
  background-color: transparent;
  border-radius: 0;
}
.contact__form textarea {
  margin-bottom: 48px;
  padding: 8px;
  width: 100%;
  resize: vertical;
  height: 140px;
  background-color: transparent;
  border-radius: 0;
}
@media (max-width: 576px) {
  .contact__form textarea {
    margin-bottom: 30px;
  }
}
.contact__form input, .contact__form textarea {
  border: none;
  outline: none;
  border-bottom: 1px solid rgba(240, 100, 47, 0.3);
}
.contact__form input:focus, .contact__form textarea:focus {
  outline: 3px solid rgba(240, 100, 47, 0.8);
  border-bottom: none;
}
.contact__form input::-webkit-input-placeholder, .contact__form textarea::-webkit-input-placeholder {
  color: #001140;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  opacity: 0.5;
}
.contact__form input::-moz-placeholder, .contact__form textarea::-moz-placeholder {
  color: #001140;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  opacity: 0.5;
}
.contact__form input:-ms-input-placeholder, .contact__form textarea:-ms-input-placeholder {
  color: #001140;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  opacity: 0.5;
}
.contact__form input::-ms-input-placeholder, .contact__form textarea::-ms-input-placeholder {
  color: #001140;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  opacity: 0.5;
}
.contact__form input::placeholder, .contact__form textarea::placeholder {
  color: #001140;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  opacity: 0.5;
}
.contact__form button {
  display: inline-block;
  margin: 0 auto;
  padding: 20px 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: none;
  color: var(--light-color);
  font-family: "Raleway";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  cursor: pointer;
}
@media (max-width: 576px) {
  .contact__form button {
    padding: 15px 30px;
  }
}
@media (max-width: 400px) {
  .contact__form button {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.contact__team {
  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;
}
@media (max-width: 1200px) {
  .contact__team {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 24px;
  }
}
.contact .employee {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 20%;
  flex: 0 1 20%;
  text-align: center;
  padding: 60px 0px;
}
.contact .employee:not(:last-child) {
  border-right: 1px solid #DDD;
}
@media (max-width: 1200px) {
  .contact .employee {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc(33.3333333333% - 48px);
    flex: 0 1 calc(33.3333333333% - 48px);
    border: 1px solid #DDD;
    border-radius: 12px;
    border: 2px solid #FFF;
    background-color: rgba(255, 255, 255, 0.5);
    -webkit-box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.08);
    padding: 40px 0;
  }
}
@media (max-width: 992px) {
  .contact .employee {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc(50% - 24px);
    flex: 0 1 calc(50% - 24px);
    max-width: 330px;
  }
}
@media (max-width: 576px) {
  .contact .employee {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}
.contact .employee__avatar {
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 100%;
  margin: 0 auto;
  margin-bottom: 27px;
}
.contact .employee__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.contact .employee__name {
  color: var(--main-color);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  padding: 0 80px;
  margin-bottom: 16px;
}
@media (max-width: 1400px) {
  .contact .employee__name {
    padding: 0 15px;
  }
}
.contact .employee__prof {
  color: var(--main-color);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  opacity: 0.7;
  margin-bottom: 24px;
}
.contact .employee__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 24px;
  -moz-column-gap: 24px;
  column-gap: 24px;
}
.contact .employee__contacts a svg path {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.contact .employee__contacts a:hover svg path {
  fill: #306100;
}

.commission {
  margin-top: var(--header-height);
  padding-top: 134px;
  padding-bottom: 134px;
}
.commission .subtitle {
  max-width: 1024px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 100px;
}
@media (max-width: 576px) {
  .commission .subtitle {
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  .commission {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (max-width: 576px) {
  .commission {
    padding-top: 60px;
  }
}
.commission__title {
  text-align: center;
  max-width: 1400px;
  margin: 0 auto 24px auto;
  font-size: 64px;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 1400px) {
  .commission__title {
    font-size: 55px;
  }
}
@media (max-width: 1100px) {
  .commission__title {
    font-size: 42px;
    max-width: 90%;
  }
}
@media (max-width: 992px) {
  .commission__title {
    font-size: 36px;
    max-width: 90%;
  }
}
@media (max-width: 768px) {
  .commission__title {
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .commission__title {
    font-size: 32px;
  }
}
@media (max-width: 400px) {
  .commission__title {
    font-size: 28px;
  }
}
.commission__subtitle {
  max-width: 1024px;
  margin: 0 auto 70px auto;
  color: var(--main-color);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media (max-width: 1400px) {
  .commission__subtitle {
    margin-bottom: 50px;
  }
}
@media (max-width: 400px) {
  .commission__subtitle {
    font-size: 16px;
  }
}
.commission__list {
  counter-reset: list;
  list-style: none;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-auto-rows: 1fr;
  gap: 24px;
  margin-bottom: 80px;
  padding-left: 0;
}
@media (max-width: 1200px) {
  .commission__list {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .commission__list {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .commission__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 20px;
  }
}
.commission__item {
  position: relative;
  border-radius: 12px;
  border: 2px solid var(--light-color);
  background: linear-gradient(253deg, #FFF9E9 3.67%, #FFF 100.61%);
  -webkit-box-shadow: 0px 10px 80px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 10px 80px 0px rgba(0, 0, 0, 0.1);
  padding: 66px 22px;
  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;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.commission__item:hover {
  background: linear-gradient(253deg, #fff3cf 3.67%, #FFF 100.61%);
  -webkit-box-shadow: 0px 10px 80px 0px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 10px 80px 0px rgba(0, 0, 0, 0.4);
}
.commission__item:hover:after {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .commission__item {
    width: 100%;
    max-width: 490px;
  }
}
@media (max-width: 576px) {
  .commission__item {
    padding: 50px 20px;
  }
}
.commission__item:after {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  counter-increment: list;
  content: counter(list);
  width: 64px;
  height: 64px;
  position: absolute;
  top: 22px;
  right: 22px;
  background-image: url("../img/bg_coin.svg");
  background-size: 64px 64px;
  background-repeat: none;
  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: #FFCC4D;
  text-shadow: 0px 2px 0px #CB801E;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 480px) {
  .commission__item:after {
    background-size: 50px 50px;
    font-size: 24px;
    width: 50px;
    height: 50px;
    top: 10px;
    right: 10px;
  }
}
.commission__level, .commission__ngr {
  color: var(--main-color);
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 10px;
}
@media (max-width: 400px) {
  .commission__level, .commission__ngr {
    margin-bottom: 5px;
    font-size: 20px;
  }
}
.commission__ftd {
  color: var(--accent-color);
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 400px) {
  .commission__ftd {
    font-size: 28px;
    margin-bottom: 5px;
  }
}
.commission__btn {
  padding: 20px 57px;
  margin-bottom: 128px;
}
@media (max-width: 1200px) {
  .commission__btn {
    margin-bottom: 80px;
  }
}
.commission__text {
  max-width: 1400px;
  margin: 0 auto;
  color: var(--main-color);
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media (max-width: 768px) {
  .commission__text {
    font-size: 26px;
    line-height: 130%;
  }
}
@media (max-width: 400px) {
  .commission__text {
    font-size: 22px;
  }
}
.commission__wrap .commissions {
  background-color: var(--light-color);
}

.brands-single {
  margin-top: var(--header-height);
  padding-top: 144px;
  padding-bottom: 190px;
}
@media (max-width: 992px) {
  .brands-single {
    padding-top: 100px;
    padding-bottom: 120px;
  }
}
@media (max-width: 480px) {
  .brands-single {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.brands-single__title {
  text-align: center;
  margin-bottom: 157px;
  font-size: 64px;
}
@media (max-width: 992px) {
  .brands-single__title {
    margin-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .brands-single__title {
    font-size: 44px;
  }
}
@media (max-width: 480px) {
  .brands-single__title {
    margin-bottom: 40px;
    font-size: 32px;
  }
}
.brands-single__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 36px;
  -moz-column-gap: 36px;
  column-gap: 36px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 33px 0;
  width: 100%;
  border-radius: 12px;
  border: 2px solid var(--light-color);
  background: linear-gradient(92deg, #DD673B 3.47%, #000 95.07%);
  -webkit-box-shadow: 0px 10px 80px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 10px 80px 0px rgba(0, 0, 0, 0.1);
  background-size: 170%;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-animation: gradientBrands 6s infinite linear alternate;
  animation: gradientBrands 6s infinite linear alternate;
}
@media (max-width: 400px) {
  .brands-single__link {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}
.brands-single__link img {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 576px) {
  .brands-single__link img:first-child {
    width: 90px;
    height: auto;
  }
  .brands-single__link img:last-child {
    width: 150px;
    height: auto;
  }
}
@media (max-width: 400px) {
  .brands-single__link img:first-child {
    width: 70px;
  }
  .brands-single__link img:last-child {
    width: 100px;
  }
}
.brands-single__link:hover {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}
.brands-single__link:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.brands-plurare {
  margin-top: var(--header-height);
  padding-top: 144px;
  padding-bottom: 190px;
}
@media (max-width: 992px) {
  .brands-plurare {
    padding-top: 100px;
    padding-bottom: 120px;
  }
}
@media (max-width: 480px) {
  .brands-plurare {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.brands-plurare__title {
  text-align: center;
  margin-bottom: 157px;
  font-size: 64px;
}
@media (max-width: 992px) {
  .brands-plurare__title {
    margin-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .brands-plurare__title {
    font-size: 44px;
  }
}
@media (max-width: 480px) {
  .brands-plurare__title {
    margin-bottom: 40px;
    font-size: 32px;
  }
}
.brands-plurare__items {
  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;
  -webkit-column-gap: 24px;
  -moz-column-gap: 24px;
  column-gap: 24px;
  row-gap: 24px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 1400px) {
  .brands-plurare__items {
    -webkit-column-gap: 12px;
    -moz-column-gap: 12px;
    column-gap: 12px;
  }
}
@media (max-width: 1200px) {
  .brands-plurare__items {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    row-gap: 12px;
  }
}
.brands-plurare__item {
  -ms-flex-preferred-size: calc(33.3333333333% - 16px);
  flex-basis: calc(33.3333333333% - 16px);
}
@media (max-width: 1400px) {
  .brands-plurare__item {
    -ms-flex-preferred-size: calc(33.3333333333% - 8px);
    flex-basis: calc(33.3333333333% - 8px);
  }
}
@media (max-width: 1200px) {
  .brands-plurare__item {
    -ms-flex-preferred-size: calc(50% - 12px);
    flex-basis: calc(50% - 12px);
  }
}
@media (max-width: 768px) {
  .brands-plurare__item {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}
.brands-plurare__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 36px;
  -moz-column-gap: 36px;
  column-gap: 36px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 60px 0;
  width: 100%;
  border-radius: 12px;
  border: 2px solid var(--light-color);
  background: linear-gradient(92deg, #DD673B 3.47%, #000 95.07%);
  -webkit-box-shadow: 0px 10px 80px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 10px 80px 0px rgba(0, 0, 0, 0.1);
  background-size: 170%;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-animation: gradientBrands 6s infinite linear alternate;
  animation: gradientBrands 6s infinite linear alternate;
}
@media (max-width: 992px) {
  .brands-plurare__link {
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
    padding: 40px 0;
  }
}
@media (max-width: 400px) {
  .brands-plurare__link {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}
.brands-plurare__link img {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 576px) {
  .brands-plurare__link img:first-child {
    width: 90px;
    height: auto;
  }
  .brands-plurare__link img:last-child {
    width: 150px;
    height: auto;
  }
}
@media (max-width: 400px) {
  .brands-plurare__link img:first-child {
    width: 60px;
  }
  .brands-plurare__link img:last-child {
    width: 90px;
  }
}
.brands-plurare__link:hover {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}
.brands-plurare__link:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.brand-page {
  margin-top: var(--header-height);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.brand-page__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 145px 0;
}
@media (max-width: 576px) {
  .brand-page__images {
    padding: 120px 0;
  }
}
@media (max-width: 480px) {
  .brand-page__images img:first-child {
    width: 100px;
  }
  .brand-page__images img:last-child {
    width: 150px;
  }
}

.brand-content {
  background-color: #f8f8f8;
  padding-top: 108px;
  padding-bottom: 24px;
}
.brand-content .subtitle {
  text-align: center;
}
.brand-content .subtitle h2 {
  color: var(--main-color);
  font-family: "Raleway";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .brand-content .subtitle h2 {
    font-size: 16px;
    line-height: 140%;
  }
}
@media (max-width: 992px) {
  .brand-content {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .brand-content {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (max-width: 480px) {
  .brand-content {
    padding-bottom: 30px;
  }
}
.brand-content__suptitle {
  max-width: 1450px;
  margin: 0 auto 146px auto;
  color: var(--main-color);
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media (max-width: 992px) {
  .brand-content__suptitle {
    margin-bottom: 80px;
  }
}
@media (max-width: 576px) {
  .brand-content__suptitle {
    font-size: 24px;
    margin-bottom: 60px;
  }
}
.brand-content__title {
  font-size: 48px;
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .brand-content__title {
    margin-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .brand-content__title {
    font-size: 44px;
    line-height: 110%;
  }
}
@media (max-width: 480px) {
  .brand-content__title {
    font-size: 32px;
  }
}
.brand-content__title span {
  font-size: 64px;
}
@media (max-width: 768px) {
  .brand-content__title span {
    font-size: 44px;
  }
}
@media (max-width: 480px) {
  .brand-content__title span {
    font-size: 32px;
  }
}
.brand-content__items {
  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;
}
.brand-content__items > li {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(50% - 66px);
  flex: 0 1 calc(50% - 66px);
  margin-bottom: 60px;
}
@media (max-width: 1600px) {
  .brand-content__items > li {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc(50% - 30px);
    flex: 0 1 calc(50% - 30px);
    margin-bottom: 45px;
  }
}
@media (max-width: 992px) {
  .brand-content__items > li {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    margin-bottom: 30px;
  }
}
.brand-content__items > li h3 {
  color: var(--accent-color);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 16px;
}
.brand-content__items > li p {
  color: rgba(39, 46, 62, 0.7);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.tags {
  padding-top: 96px;
  padding-bottom: 96px;
  background-color: var(--light-color);
}
@media (max-width: 992px) {
  .tags {
    padding-top: 80px;
  }
}
@media (max-width: 768px) {
  .tags {
    padding-top: 60px;
  }
}
@media (max-width: 480px) {
  .tags {
    padding-top: 50px;
  }
}
.tags__block {
  margin-bottom: 55px;
}
@media (max-width: 480px) {
  .tags__block {
    margin-bottom: 40px;
  }
}
.tags__block:last-child {
  margin-bottom: 0;
}
.tags__block p {
  color: var(--main-color);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 18px;
}
@media (max-width: 480px) {
  .tags__block p {
    font-size: 22px;
  }
}
.tags__block > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 16px;
  -moz-column-gap: 16px;
  column-gap: 16px;
  row-gap: 16px;
}
@media (max-width: 480px) {
  .tags__block > ul {
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    row-gap: 10px;
  }
}
.tags__block > ul > li {
  display: inline-block;
  color: rgba(240, 100, 47, 0.7);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  border-radius: 8px;
  border: 1px solid var(--accent-color);
  background: rgba(240, 100, 47, 0.1);
  padding: 8px 16px;
  overflow: hidden;
  -webkit-transition: all 0.3s cubic-bezier(0.51, 0.92, 0.24, 1);
  transition: all 0.3s cubic-bezier(0.51, 0.92, 0.24, 1);
  position: relative;
  z-index: 0;
}
@media (max-width: 480px) {
  .tags__block > ul > li {
    font-size: 14px;
    padding: 6px 12px;
  }
}
.tags__block > ul > li::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0%;
  z-index: -1;
  height: 100%;
  background-color: var(--accent-color);
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: var(--x) 50%;
  -ms-transform-origin: var(--x) 50%;
  transform-origin: var(--x) 50%;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.51, 0.92, 0.24, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.51, 0.92, 0.24, 1);
  transition: transform 0.4s cubic-bezier(0.51, 0.92, 0.24, 1);
  transition: transform 0.4s cubic-bezier(0.51, 0.92, 0.24, 1), -webkit-transform 0.4s cubic-bezier(0.51, 0.92, 0.24, 1);
}
@media (min-width: 993px) {
  .tags__block > ul > li:hover {
    opacity: 1;
    color: var(--light-color);
  }
  .tags__block > ul > li:hover::after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
  }
}

.contact-us {
  margin-top: var(--header-height);
}
.contact-us .contact {
  padding-top: 110px;
}

.banner-promo {
  margin-top: var(--header-height);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--accent-color);
  padding-top: 95px;
  padding-bottom: 175px;
}

.search {
  background-color: var(--light-color);
}
.search ._container {
  width: 100%;
  position: relative;
  margin: 0 auto;
}
.search__wrap {
  position: absolute;
  left: 15px;
  right: 15px;
  z-index: 1;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 12px;
  border: 2px solid var(--light-color);
  background-color: var(--light-color);
  -webkit-box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.08);
  padding: 25px 48px;
}
@media (max-width: 768px) {
  .search__wrap {
    padding: 20px;
  }
}
@media (max-width: 400px) {
  .search__wrap {
    padding: 15px 10px;
    right: 5px;
    left: 5px;
  }
}
.search__form {
  position: relative;
  margin-bottom: 12px;
}
.search__form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.search__form form input {
  border: none;
  color: #001140;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  padding: 8px 24px;
  border-bottom: 1px solid rgba(240, 100, 47, 0.3);
}
@media (max-width: 480px) {
  .search__form form input {
    font-size: 14px;
    line-height: 26px;
    padding: 6px 24px;
  }
}
.search__form form input:focus {
  border-bottom: 0;
  outline: 1px solid rgba(240, 100, 47, 0.6);
}
.search__form form input::-webkit-input-placeholder {
  color: rgba(0, 17, 64, 0.5);
}
.search__form form input::-moz-placeholder {
  color: rgba(0, 17, 64, 0.5);
}
.search__form form input:-ms-input-placeholder {
  color: rgba(0, 17, 64, 0.5);
}
.search__form form input::-ms-input-placeholder {
  color: rgba(0, 17, 64, 0.5);
}
.search__form form input::placeholder {
  color: rgba(0, 17, 64, 0.5);
}
.search__form button {
  outline: none;
  border: none;
  background-color: transparent;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
}
.search__input {
  width: 100%;
}
.search__input input {
  width: 100%;
}
.search__sort {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 8px;
  -moz-column-gap: 8px;
  column-gap: 8px;
  row-gap: 8px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .search__sort {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    gap: 6px;
  }
}
.search__sort span {
  color: rgba(0, 17, 64, 0.5);
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  margin-right: 14px;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
}
.search__sort input[type=radio] {
  display: none;
}
.search__sort label {
  display: inline-block;
  color: var(--accent-color);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  padding: 4px 16px;
  cursor: pointer;
  border-radius: 4px;
  border: 1px solid var(--accent-color);
  background: rgba(240, 100, 47, 0.1);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 480px) {
  .search__sort label {
    text-align: center;
    font-size: 10px;
    padding: 4px 10px;
  }
}
.search__sort input[type=radio]:checked + label {
  background-color: var(--accent-color);
  color: var(--light-color);
}
.search__sort label:hover {
  background-color: var(--accent-color);
  color: var(--light-color);
}

.blog {
  padding-top: 160px;
  padding-bottom: 115px;
  background-color: #F8F8F8;
}
.blog .subtitle {
  overflow: hidden;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  height: 0;
}
.blog .subtitle.show {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  height: auto;
}
@media (max-width: 768px) {
  .blog {
    padding-top: 120px;
    padding-bottom: 80px;
  }
}
.blog__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: 460px 1fr 1fr 1fr;
  grid-template-rows: 460px 1fr 1fr 1fr;
  grid-auto-rows: 1fr;
  gap: 24px;
  margin-bottom: 64px;
}
@media (max-width: 1200px) {
  .blog__items {
    -ms-grid-rows: 388px 1fr 1fr 1fr;
    grid-template-rows: 388px 1fr 1fr 1fr;
    gap: 16px;
  }
}
@media (max-width: 992px) {
  .blog__items {
    -ms-grid-rows: 460px 1fr 1fr 1fr;
    grid-template-rows: 460px 1fr 1fr 1fr;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .blog__items {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .blog__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 25px;
  }
}
.blog__item {
  border-radius: 12px;
  background-color: var(--light-color);
  padding: 24px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.blog__item:first-child {
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 74px;
  -moz-column-gap: 74px;
  column-gap: 74px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 40px;
  padding-right: 100px;
}
@media (max-width: 1400px) {
  .blog__item:first-child {
    padding-right: 16px;
  }
}
@media (max-width: 1200px) {
  .blog__item:first-child {
    -webkit-column-gap: 24px;
    -moz-column-gap: 24px;
    column-gap: 24px;
  }
}
@media (max-width: 992px) {
  .blog__item:first-child {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .blog__item:first-child {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
  }
}
@media (max-width: 576px) {
  .blog__item:first-child {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
  }
}
.blog__item:first-child .blog__counters {
  margin-top: 0px;
  margin-left: 32px;
}
.blog__item:first-child .blog__img {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 635px;
  flex: 0 1 635px;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .blog__item:first-child .blog__img {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 500px;
    flex: 0 1 500px;
  }
}
@media (max-width: 992px) {
  .blog__item:first-child .blog__img {
    margin-bottom: 16px;
  }
}
.blog__item:first-child .blog__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.blog__item:first-child .blog__description {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(100% - 709px);
  flex: 0 1 calc(100% - 709px);
}
@media (max-width: 1200px) {
  .blog__item:first-child .blog__description {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc(100% - 524px);
    flex: 0 1 calc(100% - 524px);
  }
}
.blog__item:first-child .blog__description > p {
  color: #000000;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
  margin-bottom: 16px;
}
@media (max-width: 1200px) {
  .blog__item:first-child .blog__description > p {
    font-size: 32px;
  }
}
@media (max-width: 992px) {
  .blog__item:first-child .blog__description > p {
    font-size: 26px;
    margin-bottom: 10px;
  }
}
.blog__item:first-child .blog__descr {
  color: rgba(39, 46, 62, 0.7);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media (max-width: 992px) {
  .blog__item:first-child .blog__descr {
    font-size: 16px;
    line-height: 130%;
  }
}
@media (max-width: 1200px) {
  .blog__item {
    padding: 16px;
  }
}
@media (max-width: 992px) {
  .blog__item {
    -webkit-box-shadow: 0px 10px 50px 0px rgba(39, 46, 62, 0.3);
    box-shadow: 0px 10px 50px 0px rgba(39, 46, 62, 0.3);
  }
}
@media (max-width: 576px) {
  .blog__item {
    padding-bottom: 24px;
  }
}
@media (min-width: 993px) {
  .blog__item:hover {
    -webkit-box-shadow: 0px 10px 50px 0px rgba(39, 46, 62, 0.3);
    box-shadow: 0px 10px 50px 0px rgba(39, 46, 62, 0.3);
  }
  .blog__item:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
}
.blog__item span {
  color: rgba(39, 46, 62, 0.7);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-column-gap: 8px;
  -moz-column-gap: 8px;
  column-gap: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1200px) {
  .blog__item span {
    -webkit-column-gap: 6px;
    -moz-column-gap: 6px;
    column-gap: 6px;
  }
}
@media (max-width: 480px) {
  .blog__item span {
    font-size: 12px;
  }
}
.blog__item > p {
  color: #000000;
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
}
@media (max-width: 1200px) {
  .blog__item > p {
    font-size: 22px;
  }
}
.blog__img {
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 24px;
}
@media (max-width: 1200px) {
  .blog__img {
    margin-bottom: 16px;
  }
}
@media (max-width: 576px) {
  .blog__img {
    max-height: 350px;
  }
}
.blog__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.blog__information {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.blog__counters {
  margin-top: 16px;
}
.blog__counters svg {
  cursor: pointer;
}
.blog__favorite {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.blog__view {
  margin-left: 32px;
}
@media (max-width: 1200px) {
  .blog__view {
    margin-left: 16px;
  }
}
.blog__btn {
  padding: 20px 48px;
  border: none;
  outline: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.blog__btn:active {
  -webkit-transform: translate(2px, 2px);
  -ms-transform: translate(2px, 2px);
  transform: translate(2px, 2px);
}
.blog__btn:focus {
  outline: 1px solid var(--accent-color);
}

.blog__counters .blog__favorite svg, .blog__counters .blog__view svg {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.blog__counters .blog__favorite:hover path, .blog__counters .blog__view:hover path {
  stroke: var(--accent-color);
}
.blog__counters .blog__favorite:hover circle, .blog__counters .blog__view:hover circle {
  stroke: var(--accent-color);
}

.single-promo {
  background-color: #f8f8f8;
}

.single {
  padding-bottom: 93px;
  background-color: #f8f8f8;
}
@media (max-width: 576px) {
  .single {
    padding-bottom: 70px;
  }
}
.single__wrap .contact {
  background-color: var(--light-color);
}
.single h1 {
  color: #000000;
  font-size: 64px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 64px;
}
@media (max-width: 1400px) {
  .single h1 {
    font-size: 52px;
  }
}
@media (max-width: 1200px) {
  .single h1 {
    font-size: 48px;
  }
}
@media (max-width: 992px) {
  .single h1 {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .single h1 {
    font-size: 36px;
    margin-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .single h1 {
    font-size: 28px;
    margin-bottom: 25px;
  }
}
.single h2 {
  color: #000000;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .single h2 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .single h2 {
    margin-bottom: 15px;
  }
}
@media (max-width: 576px) {
  .single h2 {
    font-size: 24px;
  }
}
.single h2 + p {
  color: rgba(39, 46, 62, 0.7);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .single h2 + p {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .single h2 + p {
    margin-bottom: 25px;
    font-size: 16px;
  }
}
.single ol {
  counter-reset: list;
  padding: 0;
  list-style: none;
  margin: 0;
  margin-bottom: 64px;
}
.single ol li {
  position: relative;
  margin-bottom: 33px;
}
@media (max-width: 768px) {
  .single ol li {
    margin-bottom: 25px;
  }
}
.single ol li:before {
  counter-increment: list;
  content: "#" counter(list);
  position: absolute;
  top: 0px;
  left: 0;
  color: var(--accent-color);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 8px;
}
@media (max-width: 992px) {
  .single ol li:before {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .single ol li:before {
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  .single ol li:before {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .single ol {
    margin-bottom: 30px;
  }
}
.single ol h3 {
  color: var(--accent-color);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 8px;
  padding-left: 40px;
}
@media (max-width: 992px) {
  .single ol h3 {
    font-size: 22px;
    padding-left: 35px;
  }
}
@media (max-width: 768px) {
  .single ol h3 {
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  .single ol h3 {
    font-size: 18px;
    padding-left: 30px;
  }
}
.single ol h3 + p {
  color: rgba(39, 46, 62, 0.7);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media (max-width: 768px) {
  .single ol h3 + p {
    font-size: 16px;
  }
}
.single .banner-promo {
  margin-top: calc(var(--header-height) + 48px);
  padding-top: 155px;
  padding-bottom: 151px;
  border-radius: 12px;
  -webkit-box-shadow: 0px 10px 80px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 10px 80px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: 52px;
}
@media (max-width: 576px) {
  .single .banner-promo {
    margin-bottom: 40px;
  }
}
.single .banner-promo__title {
  font-size: 56px;
}
@media (max-width: 992px) {
  .single .banner-promo__title {
    font-size: 44px;
  }
}
@media (max-width: 480px) {
  .single .banner-promo__title {
    font-size: 32px;
  }
}
.single__link {
  color: #525D89;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 100%;
  text-transform: uppercase;
  padding-left: 40px;
  background-image: url("../img/Arrow_left_light.svg");
  background-repeat: no-repeat;
  background-size: 24px 24px;
  background-position: left center;
  display: inline-block;
  margin-bottom: 52px;
}
@media (max-width: 576px) {
  .single__link {
    margin-bottom: 40px;
  }
}
.single__block:last-child h2 + p {
  margin-bottom: 0;
}
.single .sigle__views {
  color: rgba(39, 46, 62, 0.7);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  padding-top: 32px;
  border-top: 1px solid #ddd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 14px;
}
@media (max-width: 576px) {
  .single .sigle__views {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 4px;
    padding-top: 16px;
  }
}
.single .sigle__views .blog__counters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 16px;
  -moz-column-gap: 16px;
  column-gap: 16px;
  margin-top: 0;
}
.single .sigle__views .blog__counters svg {
  cursor: pointer;
}
.single .sigle__views .blog__view {
  margin-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 8px;
  -moz-column-gap: 8px;
  column-gap: 8px;
}
.single .sigle__views .blog__favorite {
  -webkit-column-gap: 8px;
  -moz-column-gap: 8px;
  column-gap: 8px;
}
.single .sigle__views .single__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 8px;
  -moz-column-gap: 8px;
  column-gap: 8px;
}
@media (max-width: 480px) {
  .single .sigle__views .single__social {
    font-size: 12px;
  }
}
.single .sigle__views .single__social > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.single .sigle__views .single__social > ul > li {
  height: 32px;
  width: 32px;
}
.single .sigle__views .single__social > ul > li:nth-child(3) a path {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.single .sigle__views .single__social > ul > li:nth-child(3) a:hover path {
  fill: var(--accent-color);
  stroke: var(--accent-color);
}
.single .sigle__views .single__social > ul > li > a {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.single .sigle__views .single__social > ul > li > a path {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.single .sigle__views .single__social > ul > li > a:hover path {
  fill: var(--accent-color);
}

.banner-promo-faq {
  padding-top: 130px;
  padding-bottom: 140px;
}

.search-faq .search__wrap {
  padding: 20px 48px;
}
@media (max-width: 576px) {
  .search-faq .search__wrap {
    padding: 20px;
  }
}

.section-faq {
  padding-top: 100px;
  padding-bottom: 128px;
  background-color: #f8f8f8;
}
@media (max-width: 768px) {
  .section-faq {
    padding-bottom: 60px;
  }
}

.faq__wrap .contact {
  background-color: var(--light-color);
  padding-top: 92px;
}
@media (max-width: 768px) {
  .faq__wrap .contact {
    padding-top: 60px;
  }
}

.faq {
  margin-top: 16px;
  border: 1px solid var(--accent-color);
  border-radius: 8px;
}

.faq .accordion {
  padding: 32px 15px 32px 15px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 0px;
  background: none;
  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;
  cursor: pointer;
  color: #001140;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
}
.faq .accordion h2 {
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
}

.faq .accordion.active {
  padding-bottom: 11px;
}

@media (max-width: 992px) {
  .faq .accordion {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media (max-width: 992px) and (max-width: 576px) {
  .faq .accordion {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.faq .active, .faq .accordion:hover {
  background-color: none;
}

.faq .active i {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.faq .accordion.active .vertical {
  background-color: var(--accent-color);
}

@media (max-width: 992px) {
  .faq .accordion h2 {
    display: block;
    max-width: 90%;
    font-size: 20px;
    line-height: 120%;
  }
}
@media (max-width: 576px) {
  .faq .accordion h2 {
    max-width: 85%;
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .faq .accordion h2 {
    font-size: 16px;
  }
}

.faq .accordion.active h2 {
  color: var(--accent-color);
}

.faq:hover div h2 {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  color: var(--accent-color);
}

.faq:hover div {
  color: var(--accent-color);
}

.faq:hover .circle-animation .vertical,
.faq:hover .circle-animation .horizontal {
  background-color: var(--accent-color);
}

.faq .panel {
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  -webkit-transition-duration: 400ms;
  transition-duration: 400ms;
  -webkit-transition-property: max-height, visibility;
  transition-property: max-height, visibility;
  -webkit-transition-delay: 0, 400ms;
  transition-delay: 0, 400ms;
  padding-right: 50px;
  padding-left: 15px;
}
@media (max-width: 992px) {
  .faq .panel {
    max-width: 90%;
  }
}
@media (max-width: 576px) {
  .faq .panel {
    max-width: 100%;
    padding-right: 25px;
  }
}

.panel.open {
  visibility: visible;
  -webkit-transition-duration: 400ms;
  transition-duration: 400ms;
  -webkit-transition-property: max-height, visibility;
  transition-property: max-height, visibility;
  -webkit-transition-delay: 400ms, 0;
  transition-delay: 400ms, 0;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  padding-bottom: 25px;
}

.closed .vertical {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.closed .horizontal {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  opacity: 1;
}

.active {
  opacity: 1;
}

.active .vertical {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.active .horizontal {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  opacity: 0;
}

.circle-animation {
  border: 1px solid #dddddd;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 32px;
  flex: 0 0 32px;
}
@media (max-width: 480px) {
  .circle-animation {
    width: 24px;
    height: 24px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 24px;
    flex: 0 0 24px;
  }
}

.circle-animation .horizontal {
  position: absolute;
  background-color: rgba(0, 17, 64, 0.5);
  width: 9px;
  height: 1px;
  left: 50%;
  top: 50%;
  margin-left: -4px;
}

.circle-animation .vertical {
  position: absolute;
  background-color: rgba(0, 17, 64, 0.5);
  width: 1px;
  height: 9px;
  left: 50%;
  top: 50%;
  margin-top: -4px;
}

.panel p {
  padding: 7px 0;
  color: #001140;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 31px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media (max-width: 576px) {
  .panel p {
    font-size: 14px;
    line-height: 24px;
    padding: 5px 0;
  }
}
.page-404__wrapper {
  padding-top: 20px;
  padding-left: 15px;
  padding-right: 15px;
  height: 100vh;
  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;
  background: radial-gradient(97.08% 97.08% at 50% 50%, #FFF 0%, #F4DAD0 100%);
}
@media (max-width: 576px) {
  .page-404__wrapper {
    padding-top: 10px;
  }
}
@media (max-width: 576px) {
  .page-404__logo img {
    max-width: 70px;
    height: auto;
  }
}
.page-404__wrap {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  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;
  -webkit-column-gap: 66px;
  -moz-column-gap: 66px;
  column-gap: 66px;
}
@media (max-width: 992px) {
  .page-404__wrap {
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
}
@media (max-width: 576px) {
  .page-404__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 25px;
    padding-top: 40px;
  }
}
@media (max-width: 400px) {
  .page-404__wrap {
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
}
@media (max-width: 768px) {
  .page-404__img {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 220px;
    flex: 0 1 220px;
  }
}
@media (max-width: 576px) {
  .page-404__img {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    text-align: center;
  }
  .page-404__img img {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    width: 250px;
  }
}
@media (max-width: 400px) {
  .page-404__img img {
    width: 200px;
  }
}
.page-404__descr {
  color: var(--main-color);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  max-width: 610px;
}
@media (max-width: 992px) {
  .page-404__descr {
    font-size: 22px;
    line-height: 130%;
    max-width: 500px;
  }
}
@media (max-width: 768px) {
  .page-404__descr {
    font-size: 20px;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc(100% - 250px);
    flex: 0 1 calc(100% - 250px);
  }
}
@media (max-width: 576px) {
  .page-404__descr {
    text-align: center;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
  }
}
.page-404__title {
  color: #000000;
  font-size: 56px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .page-404__title {
    margin-bottom: 15px;
    font-size: 44px;
  }
}
@media (max-width: 768px) {
  .page-404__title {
    font-size: 32px;
  }
}
.page-404__text {
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .page-404__text {
    margin-bottom: 20px;
  }
}
.page-404__btn {
  padding: 20px 57px 20px 57px;
  margin-left: 24px;
}
@media (max-width: 768px) {
  .page-404__btn {
    padding: 15px 35px;
  }
}
@media (max-width: 400px) {
  .page-404__btn {
    display: block;
    margin-left: 0;
    margin-top: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.privacy {
  margin-top: var(--header-height);
  background-color: #f8f8f8;
  padding-top: 49px;
  padding-bottom: 28px;
}
.privacy h1 {
  color: #000000;
  font-size: 64px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 72px;
}
@media (max-width: 768px) {
  .privacy h1 {
    margin-bottom: 30px;
    font-size: 56px;
  }
}
@media (max-width: 480px) {
  .privacy h1 {
    font-size: 36px;
  }
}
.privacy h2 {
  color: #000000;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .privacy h2 {
    margin-bottom: 15px;
  }
}
@media (max-width: 480px) {
  .privacy h2 {
    font-size: 28px;
    line-height: 130%;
  }
}
.privacy h3 {
  color: var(--accent-color);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 8px;
}
@media (max-width: 992px) {
  .privacy h3 {
    font-size: 22px;
    padding-left: 35px;
  }
}
@media (max-width: 768px) {
  .privacy h3 {
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  .privacy h3 {
    font-size: 18px;
    padding-left: 30px;
  }
}
.privacy p {
  color: rgba(39, 46, 62, 0.7);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 24px;
}
.privacy div {
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .privacy div {
    margin-bottom: 35px;
  }
}
.privacy ul > li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 18px;
  color: rgba(39, 46, 62, 0.7);
  font-style: normal;
  font-weight: 400;
}
.privacy ul > li:after {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 8px;
  height: 8px;
  background-color: var(--accent-color);
  border-radius: 50%;
}
.privacy ol {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 24px;
  counter-reset: list;
}
.privacy ol > li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 30px;
  color: rgba(39, 46, 62, 0.7);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.privacy ol > li:after {
  counter-increment: list;
  content: counter(list, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-color);
}
.privacy a {
  color: var(--accent-color);
}
.privacy a:hover {
  text-decoration: underline;
}

.testimonials {
  padding-top: 117px;
  padding-bottom: 96px;
  background-color: #f8f8f8;
}
@media (max-width: 992px) {
  .testimonials {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.testimonials__wrap .contact {
  background-color: var(--light-color);
  padding-top: 100px;
}
.testimonials__items {
  margin-bottom: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonials__item {
  -ms-flex-preferred-size: calc(50% - 12px);
  flex-basis: calc(50% - 12px);
  border-radius: 8px;
  background: var(--light-color);
  -webkit-box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.08);
  padding: 32px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.testimonials__item:hover {
  -webkit-box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.28);
  box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.28);
}
.testimonials__item:hover .testimonials__link p {
  color: var(--accent-color);
}
@media (max-width: 1400px) {
  .testimonials__item {
    padding: 24px;
  }
}
@media (max-width: 992px) {
  .testimonials__item {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 750px;
    margin: 0 auto;
  }
}
@media (max-width: 400px) {
  .testimonials__item {
    padding: 18px;
  }
}
.testimonials__link {
  width: 100%;
  height: 100%;
}
.testimonials__title {
  color: #001140;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 16px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 576px) {
  .testimonials__title {
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 12px;
  }
}
.testimonials__text {
  color: rgba(39, 46, 62, 0.7);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media (max-width: 992px) {
  .testimonials__text {
    font-size: 20px;
  }
}
.testimonials__btn {
  padding: 20px 48px;
  border: none;
  outline: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.testimonials__btn:active {
  -webkit-transform: translate(2px, 2px);
  -ms-transform: translate(2px, 2px);
  transform: translate(2px, 2px);
}
.testimonials__btn:focus {
  outline: 1px solid var(--accent-color);
}

.footer {
  padding-top: 58px;
  padding-bottom: 72px;
  background-color: var(--main-color);
}
@media (max-width: 1400px) {
  .footer {
    padding-bottom: 30px;
  }
}
.footer__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 27px;
}
@media (max-width: 1200px) {
  .footer__wrap {
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
  }
}
@media (max-width: 992px) {
  .footer__wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 40px;
  }
}
@media (max-width: 480px) {
  .footer__wrap {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.footer__block {
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%;
}
.footer__block:first-child {
  -ms-flex-preferred-size: 26%;
  flex-basis: 26%;
}
@media (max-width: 1200px) {
  .footer__block:first-child {
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
  }
}
.footer__block:last-child {
  -ms-flex-preferred-size: 14%;
  flex-basis: 14%;
}
@media (max-width: 1200px) {
  .footer__block:last-child {
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
  }
}
.footer__block:last-child > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-column-gap: 8px;
  -moz-column-gap: 8px;
  column-gap: 8px;
}
.footer__block:last-child > ul > li {
  width: 32px;
  height: 32px;
  border-radius: 5px;
  border: 1px solid rgba(240, 100, 47, 0.3);
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.footer__block:last-child > ul > li:hover {
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
}
.footer__block:last-child > ul > li > a {
  width: 32px;
  height: 32px;
  width: 100%;
  height: 100%;
}
.footer__block:last-child > ul > li > a img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.footer__block:nth-child(3) {
  padding-left: 13px;
}
@media (max-width: 1200px) {
  .footer__block:nth-child(3) {
    padding-left: 0;
  }
}
.footer__block:nth-child(4) {
  padding-left: 28px;
}
@media (max-width: 1200px) {
  .footer__block:nth-child(4) {
    padding-left: 0;
  }
}
@media (max-width: 1200px) {
  .footer__block {
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
  }
}
.footer__block:nth-child(4) ul:nth-child(2) {
  margin-bottom: 45px;
}
.footer__block p {
  color: var(--accent-color);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 8px;
}
@media (max-width: 480px) {
  .footer__block > ul > li {
    margin-bottom: 0;
  }
}
.footer__block > ul > li > a {
  color: var(--light-color);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  opacity: 0.5;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 480px) {
  .footer__block > ul > li > a {
    line-height: 30px;
  }
}
.footer__block:not(:last-child, :first-child) > ul > li > a {
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.footer__block:not(:last-child, :first-child) > ul > li > a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background-color: var(--light-color);
  opacity: 0.5;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.footer__block:not(:last-child, :first-child) > ul > li > a:hover:after {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 100%;
}
@media (max-width: 768px) {
  .footer__block {
    -ms-flex-preferred-size: calc(50% - 24px);
    flex-basis: calc(50% - 24px);
  }
}
@media (max-width: 480px) {
  .footer__block {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    text-align: center;
  }
}
.footer__brands {
  color: var(--light-color) !important;
}
.footer__copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 16px;
}
@media (max-width: 480px) {
  .footer__copy {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 5px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.footer__copy a {
  color: rgba(255, 255, 255, 0.5);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.footer__copy a:hover {
  color: rgb(255, 255, 255);
}

@-webkit-keyframes heroBgText {
  0%, 10%, 100% {
    background-position: -40rem 0;
  }
  65%, 85% {
    background-position: 0 0;
  }
}

@keyframes heroBgText {
  0%, 10%, 100% {
    background-position: -40rem 0;
  }
  65%, 85% {
    background-position: 0 0;
  }
}
@-webkit-keyframes heroCursorText {
  0%, 10%, 100% {
    width: 0;
  }
  65%, 78%, 85% {
    width: 100%;
    opacity: 1;
  }
  75%, 81% {
    opacity: 0;
  }
}
@keyframes heroCursorText {
  0%, 10%, 100% {
    width: 0;
  }
  65%, 78%, 85% {
    width: 100%;
    opacity: 1;
  }
  75%, 81% {
    opacity: 0;
  }
}
@-webkit-keyframes gradient {
  0% {
    background-position: 100% 0%;
  }
  50% {
    background-position: 40% 0%;
  }
  100% {
    background-position: 100% 0%;
  }
}
@keyframes gradient {
  0% {
    background-position: 100% 0%;
  }
  50% {
    background-position: 40% 0%;
  }
  100% {
    background-position: 100% 0%;
  }
}
@-webkit-keyframes gradientBrands {
  0% {
    background-position: 100% 0%;
  }
  50% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 0%;
  }
}
@keyframes gradientBrands {
  0% {
    background-position: 100% 0%;
  }
  50% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 0%;
  }
}
.accent {
  -webkit-animation: 1.5s blackColor linear 1.5s infinite alternate;
  animation: 1.5s blackColor linear 1.5s infinite alternate;
}

.black {
  -webkit-animation: 1.5s accent linear 0s infinite alternate;
  animation: 1.5s accent linear 0s infinite alternate;
}

.rotate {
  -webkit-transform-origin: 13.5% 50%;
  -ms-transform-origin: 13.5% 50%;
  transform-origin: 13.5% 50%;
  -webkit-animation: 2s rotate linear 0s infinite alternate;
  animation: 2s rotate linear 0s infinite alternate;
}

.rotate-phone {
  -webkit-transform-origin: 18.5% 50%;
  -ms-transform-origin: 18.5% 50%;
  transform-origin: 18.5% 50%;
  -webkit-animation: 2s rotate linear 0s infinite alternate;
  animation: 2s rotate linear 0s infinite alternate;
}

.money {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

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

@keyframes rotate {
  0% {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
  }
  100% {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
}
@-webkit-keyframes accent {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.4;
  }
}
@keyframes accent {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.4;
  }
}
@-webkit-keyframes blackColor {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.4;
  }
}
@keyframes blackColor {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.4;
  }
}
@media (min-width: 1601px) {
  .text-animate {
    position: relative;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
  }
  .text-animate h1 {
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.15);
    color: transparent;
    background-image: -webkit-gradient(linear, left top, left bottom, from(var(--main-color)), to(var(--main-color)));
    background-image: linear-gradient(var(--main-color), var(--main-color));
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    background-position: 0 0;
    -webkit-animation: heroBgText 6s linear infinite;
    animation: heroBgText 6s linear infinite;
  }
  .text-animate h1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0px;
    width: 0px;
    height: 80%;
    border-right: 1px solid var(--main-color);
    z-index: 1;
    -webkit-animation: heroCursorText 6s linear infinite;
    animation: heroCursorText 6s linear infinite;
  }
}
/*# sourceMappingURL=main.css.map */