@charset "UTF-8";

@font-face {
  font-family: "Garet";
  src: local("Garet Regular"), local("Garet-Regular"), url("../fonts/Garet-Regular.woff2") format("woff2"), url("../fonts/Garet-Regular.woff") format("woff"), url("../fonts/Garet-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Garet";
  src: local("Garet Bold"), local("Garet-Bold"), url("../fonts/Garet-Bold.woff2") format("woff2"), url("../fonts/Garet-Bold.woff") format("woff"), url("../fonts/Garet-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

body {
  font-size: 16px;
  background: #232521;
  font-family: "Garet", sans-serif;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  overflow-x: hidden;
}

@media (max-width: 1199px) {
  body {
    font-size: 15px;
  }
}

@media (max-width: 991px) {
  body {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  body {
    font-size: 13px;
  }
}

body.hidden {
  overflow: hidden;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #272925;
  z-index: 9000;
}

.preloader__loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.preloader__icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: loader 1.5s infinite;
}

.preloader__icon svg {
  width: 100%;
  height: 100%;
}

.preloader__text {
  font-size: 18px;
  line-height: 1.5;
}

@keyframes loader {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main {
  overflow: hidden;
  flex-grow: 1;
  position: relative;
}

a {
  color: #C8FF70;
  text-decoration: none;
  transition: 0.4s ease-in-out;
}

a:hover {
  color: #A2C240;
}

#ajax-post {
  transition: 0.4s ease-in-out;
}

.transition-0 {
  transition: 0s !important;
}

/* @media (min-width: 1199px) {
  ::-webkit-scrollbar {
    width: 12px;
    height: 5px;
    background: #ffffff;
  }

  ::-webkit-scrollbar-button {
    display: none;
  }

  ::-webkit-scrollbar-thumb {
    background: #272925;
    border-radius: 50px;
    border: 3px solid transparent;
    background-clip: content-box;
  }
} */

.form-control {
  background-color: #ffffff;
  border-radius: 200px;
  color: #272925;
  height: auto;
  transition: 0.4s ease-in-out, background-position 0s;
  border: 2px solid #ffffff;
  line-height: 1.2;
  padding: 26px 28px;
}

@media (max-width: 991px) {
  .form-control {
    padding: 20px 24px;
  }
}

@media (max-width: 767px) {
  .form-control {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .form-control {
    font-size: 13px;
  }
}

.form-control:focus,
.form-control:hover {
  border-color: #C8FF70;
  background-color: #ffffff !important;
}

.form-control.wpcf7-not-valid {
  border-color: #D53327 !important;
}

.wpcf7-response-output {
  display: none;
}

.wpcf7-not-valid-tip {
  display: none;
}

input::-moz-placeholder,
textarea::-moz-placeholder,
.form-control::-moz-placeholder {
  font-weight: 400;
  color: #696969;
  opacity: 1;
}

input::placeholder,
textarea::placeholder,
.form-control::placeholder {
  font-weight: 400;
  color: #696969;
  opacity: 1;
}

input:focus,
textarea:focus {
  box-shadow: none !important;
  outline: none;
}

.textarea.form-control {
  transition: all 0.4s ease-in-out, height 0s !important;
  border-radius: 20px;
}

input,
textarea {
  font-family: "Garet", sans-serif;
}

textarea {
  resize: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}

.btn {
  transition: 0.4s ease-in-out;
  border-radius: 100px;
  padding: 0;
  border: 0;
  color: #272925;
  background: transparent;
  text-align: center;
  line-height: 1.2;
}

.btn:disabled {
  opacity: 0.5;
}

.btn:active {
  opacity: 1;
  background: inherit !important;
  color: inherit !important;
}

.btn:focus {
  box-shadow: none !important;
  outline: none;
}

.btn--large {
  padding: 1.625em 3.5em;
}

@media (max-width: 1199px) {
  .btn--large {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .btn--large {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .btn--large {
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 13px;
  }
}

.btn--small {
  padding: 0.625em 0.75em;
}

@media (max-width: 767px) {
  .btn--small {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .btn--small {
    font-size: 12px;
  }
}

.btn__main {
  background: #C8FF70;
  color: #272925;
  line-height: 1.2;
  font-size: 16px;
}

@media (max-width: 1199px) {
  .btn__main {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .btn__main {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .btn__main {
    font-size: 13px;
  }
}

.btn__main:hover,
.btn__main:active,
.btn__main.active {
  background: #A2C240 !important;
  color: #272925 !important;
}

.btn__main--trans {
  background: transparent;
  border: 1px solid #C8FF70;
  color: #C8FF70;
}

.btn__main--trans:hover,
.btn__main--trans:active,
.btn__main--trans.active {
  background: #C8FF70 !important;
  color: #272925 !important;
  border-color: #C8FF70 !important;
}

.btn__white {
  background: #ffffff;
  color: #272925;
  line-height: 1.2;
  font-size: 16px;
}

@media (max-width: 1199px) {
  .btn__white {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .btn__white {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .btn__white {
    font-size: 13px;
  }
}

.btn__white:hover,
.btn__white:active,
.btn__white.active {
  background: #e6e6e6 !important;
  color: #272925 !important;
}

.btn__white--trans {
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}

.btn__white--trans:hover,
.btn__white--trans:active,
.btn__white--trans.active {
  background: #ffffff !important;
  color: #272925 !important;
  border-color: #ffffff !important;
}

.btn__sticky {
  position: fixed;
  z-index: 1000;
  right: 1.875em;
  bottom: 1.875em;
}

@media (max-width: 991px) {
  .btn__sticky {
    padding: 18px 48px;
  }
}

@media (max-width: 767px) {
  .btn__sticky {
    padding: 16px 24px;
    right: 20px;
    bottom: 20px;
  }
}

@media (max-width: 575px) {
  .btn__sticky {
    padding: 16px 18px;
    right: 16px;
    bottom: 16px;
  }
}

._container {
  width: 100%;
  padding: 0 20px;
  max-width: 1180px;
  margin: 0 auto;
}

@media (max-width: 1199px) {
  ._container {
    max-width: 992px;
  }
}

@media (max-width: 991px) {
  ._container {
    max-width: 768px;
  }
}

@media (max-width: 767px) {
  ._container {
    max-width: 576px;
  }
}

@media (max-width: 575px) {
  ._container {
    max-width: 100%;
    padding: 0 16px;
  }
}

.row {
  margin: 0 -10px;
  row-gap: 30px;
}

@media (max-width: 991px) {
  .row {
    row-gap: 20px;
  }
}

.row>* {
  padding: 0 10px;
}

h1,
h2,
h3,
h4,
h5 {
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 700;
}

h1 {
  font-size: 3em;
}

h2 {
  font-size: 2.5em;
}

h3 {
  font-size: 2.25em;
}

h4 {
  font-size: 1.625em;
}

h5 {
  font-size: 1.375em;
}

.title {
  font-size: 40px;
  color: #ffffff;
  font-weight: 700;
}

@media (max-width: 1199px) {
  .title {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .title {
    font-size: 28px;
  }
}

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

.page-title {
  font-size: 48px;
}

@media (max-width: 1199px) {
  .page-title {
    font-size: 40px;
  }
}

@media (max-width: 991px) {
  .page-title {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .page-title {
    font-size: 32px;
  }
}

@media (max-width: 575px) {
  .page-title {
    font-size: 28px;
  }
}

.select {
  position: relative;
}

.select__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #272925;
}

.select__btn span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.select__btn svg {
  transition: 0.4s ease-in-out;
  width: 10px;
  height: 6px;
  flex: 0 0 10px;
}

.select__btn.active svg {
  transform: rotate(180deg);
}

.select__list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  z-index: 10;
}

.select__item {
  transition: 0.4s ease-in-out;
  cursor: pointer;
}

.select.active {
  pointer-events: none;
}

.swiper-pagination {
  margin: 0 auto;
  margin-top: 35px;
  position: relative;
  /* display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 10px;
  column-gap: 10px;
  width: 100%; */
  bottom: auto !important;
  top: auto !important;
  /* width: auto !important; */
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 0 !important;
  transform: none !important;
}

.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) !important;
}

.swiper-pagination .swiper-pagination-bullet {
  margin: 0 !important;
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  opacity: 1 !important;
  background: #474845 !important;
  transition: 0.4s ease-in-out;
}

.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #C8FF70 !important;
  opacity: 1 !important;
}

.modal.fade .modal-dialog {
  transition: all 0.4s ease-in-out;
  transform: scale(0.8);
}

.modal.show .modal-dialog {
  transform: scale(1);
}

.modal .modal-content {
  border-radius: 12px;
  border: 0;
  background: #2C2D2B;
}

.modal .modal-close {
  position: absolute;
  cursor: pointer;
  transition: 0.4s ease-in-out;
  top: 18px;
  right: 20px;
}

.modal .modal-close svg {
  fill: #ffffff;
  width: 18px;
  height: 18px;
}

.modal .modal-close:hover {
  opacity: 0.5;
}

.modal-backdrop {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(39, 41, 37, 0.5);
  opacity: 1;
}

.modal-backdrop.show {
  opacity: 1;
}

.modal-master .modal-dialog {
  max-width: 754px;
  width: 100%;
}

@media (max-width: 767px) {
  .modal-master .modal-dialog {
    margin: 0;
  }
}

.modal-master__content {
  padding: 45px 47px 50px;
}

@media (max-width: 767px) {
  .modal-master__content {
    padding: 36px 40px 40px;
  }
}

@media (max-width: 575px) {
  .modal-master__content {
    padding: 50px 16px;
  }
}

.modal-master__title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 50px;
}

@media (max-width: 991px) {
  .modal-master__title {
    margin-bottom: 36px;
    font-size: 28px;
  }
}

@media (max-width: 575px) {
  .modal-master__title {
    font-size: 24px;
    margin-bottom: 1em;
  }
}

.master-from {
  row-gap: 30px;
}

@media (max-width: 767px) {
  .master-from {
    row-gap: 24px;
  }
}

@media (max-width: 575px) {
  .master-from {
    row-gap: 20px;
  }
}

.master-from__label {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 14px;
}

@media (max-width: 767px) {
  .master-from__label {
    margin-bottom: 12px;
  }
}

@media (max-width: 575px) {
  .master-from__label {
    margin-bottom: 9px;
    font-size: 13px;
  }
}

.master-from__accept {
  text-align: center;
  margin-top: -5px;
  margin-bottom: -5px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 575px) {
  .master-from__accept {
    margin: 0;
  }
}

.master-from .btn {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.master-from .textarea {
  min-height: 100px;
  line-height: 1.4;
}

.modal-menu {
  display: none;
  width: 100%;
  position: fixed;
  top: 102px;
  left: 0;
  z-index: 1040;
  height: calc(100% - 102px);
  background: #232521;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: 0.4s ease-in-out;
}

@media (max-width: 767px) {
  .modal-menu {
    display: block;
  }
}

.modal-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.modal-menu__content {
  padding: 32px 15px 40px;
}

.modal-menu__point {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 5px;
  column-gap: 5px;
  transition: 0.4s ease-in-out;
  cursor: pointer;
  margin-bottom: 32px;
}

.modal-menu__point:hover {
  opacity: 0.5;
}

.modal-menu__point svg {
  flex: 0 0 15px;
  width: 15px;
  height: 15px;
  fill: #ffffff;
}

.modal-menu__point span {
  font-size: 14px;
}

@media (max-width: 991px) {
  .modal-menu__point span {
    font-size: 13px;
  }
}

.modal-menu__menu {
  list-style: none;
  padding-left: 0;
  margin-bottom: 45px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal-menu__menu li a {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 15px;
}

.modal-menu__menu li.current-menu-item a {
  color: #C8FF70;
}

.modal-menu__button {
  padding: 18px;
  width: 100%;
  margin-bottom: 42px;
  font-size: 15px;
}

.modal-menu__action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  margin-bottom: 22px;
}

.modal-menu__tel {
  color: #ffffff;
  font-weight: 700;
  font-size: 22px;
}

.modal-menu__tel span {
  line-height: 1.2;
  display: block;
}

.modal-menu__tel:hover {
  color: rgba(255, 255, 255, 0.5);
}

.modal-menu__callback {
  color: #C8FF70;
  font-size: 14px;
}

.modal-menu__callback:hover {
  color: #A2C240;
}

.modal-menu__info {
  list-style: none;
  padding-left: 0;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.modal-menu__info li span {
  display: inline-block;
  font-size: 14px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.5);
}

.modal-menu__info li p {
  margin-bottom: 0;
  color: #ffffff;
  font-size: 16px;
}

.modal-menu__info li p a {
  color: #C8FF70;
}

.modal-menu__info li p a:hover {
  color: #A2C240;
}

.modal-menu__text {
  margin-bottom: 0;
  line-height: 1.2;
}

@media (max-width: 1199px) {
  .modal-menu__text {
    font-size: 13px;
  }
}

.modal-callback .modal-dialog {
  max-width: 560px;
  width: 100%;
}

@media (max-width: 991px) {
  .modal-callback .modal-dialog {
    max-width: 480px;
  }
}

@media (max-width: 767px) {
  .modal-callback .modal-dialog {
    max-width: 420px;
  }
}

@media (max-width: 575px) {
  .modal-callback .modal-dialog {
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - 32px);
  }
}

.modal-callback__content {
  padding: 60px 77px 56px;
}

@media (max-width: 991px) {
  .modal-callback__content {
    padding: 60px 50px;
  }
}

@media (max-width: 767px) {
  .modal-callback__content {
    padding: 60px 50px 50px;
  }
}

@media (max-width: 575px) {
  .modal-callback__content {
    padding: 50px 30px 40px;
  }
}

.modal-callback__title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .modal-callback__title {
    font-size: 26px;
    margin-bottom: 16px;
  }
}

@media (max-width: 575px) {
  .modal-callback__title {
    font-size: 22px;
    margin-bottom: 12px;
  }
}

.modal-callback__subtitle {
  text-align: center;
  margin-bottom: 36px;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .modal-callback__subtitle {
    margin-bottom: 28px;
  }
}

@media (max-width: 575px) {
  .modal-callback__subtitle {
    margin-bottom: 20px;
  }
}

@media (max-width: 575px) {
  .modal-callback__form .quiz-form__accept {
    margin: 16px 0;
  }
}

@media (max-width: 575px) {
  .modal-callback .quiz-success__text {
    font-size: 12px;
  }
}

.modal-city .modal-dialog {
  max-width: 754px;
  width: 100%;
}

@media (max-width: 767px) {
  .modal-city .modal-dialog {
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - 32px);
  }
}

.modal-city__content {
  padding: 36px 50px 50px;
}

@media (max-width: 575px) {
  .modal-city__content {
    padding: 50px 30px 40px;
  }
}

.modal-city__title {
  margin-bottom: 50px;
  font-size: 24px;
}

@media (max-width: 767px) {
  .modal-city__title {
    margin-bottom: 36px;
    font-size: 22px;
  }
}

@media (max-width: 575px) {
  .modal-city__title {
    font-size: 20px;
  }
}

.modal-city__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  -moz-column-count: 3;
  column-count: 3;
}

@media (max-width: 767px) {
  .modal-city__list {
    -moz-column-count: 2;
    column-count: 2;
  }
}

@media (max-width: 575px) {
  .modal-city__list {
    -moz-column-count: 1;
    column-count: 1;
  }
}

.modal-city__list li {
  font-size: 18px;
  margin-bottom: 12px;
}

@media (max-width: 767px) {
  .modal-city__list li {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .modal-city__list li {
    font-size: 14px;
    margin-bottom: 16px;
  }
}

.modal-city__list li a {
  font-size: 1em;
  color: #ffffff;
}

.modal-city__list li a:hover {
  color: #C8FF70;
}

.modal-order__content {
  padding: 45px 75px 60px;
}

@media (max-width: 767px) {
  .modal-order__content {
    padding: 45px 50px 50px;
  }
}

@media (max-width: 575px) {
  .modal-order__content {
    padding: 45px 30px 40px;
  }
}

.modal-order__label {
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.5;
  color: #C8FF70;
  font-size: 16px;
  font-weight: 400;
}

@media (max-width: 767px) {
  .modal-order__label {
    margin-bottom: 16px;
  }
}

.modal-order__title {
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 16px;
  text-align: center;
}

.modal-order__image {
  margin: 0 auto 36px;
  width: 140px;
  height: 140px;
}

@media (max-width: 767px) {
  .modal-order__image {
    margin-bottom: 16px;
  }
}

.modal-order__image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  -o-object-fit: cover;
  object-fit: cover;
}

.modal-order__subtitle {
  margin-bottom: 30px;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 767px) {
  .modal-order__subtitle {
    margin-bottom: 16px;
  }
}

.modal-repair__icon {
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #353833;
}

.modal-repair__icon svg {
  fill: #C8FF70;
  width: 35px;
  height: 35px;
}

.modal-repair__title {
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 30px;
  text-align: center;
}

.modal-repair__info {
  margin-bottom: 45px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.modal-repair__info>span {
  color: #ffffff;
  line-height: 1.5;
}

.modal-repair__info p {
  font-size: 30px;
  color: #C8FF70;
  line-height: 1.5;
  margin-bottom: 0;
  font-weight: 700;
}

.header {
  position: relative;
  z-index: 1000;
}

@media (max-width: 767px) {
  .header {
    border-bottom: 1px solid #C8FF70;
  }
}

@media (max-width: 767px) {
  .header {
    position: sticky;
    top: 0;
    background: #232521;
  }
}

.header-top {
  border-bottom: 1px solid #3F4535;
}

@media (max-width: 767px) {
  .header-top {
    border-bottom: 0;
  }
}

.header-top__body {
  padding: 13px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .header-top__body {
    padding: 7px 0;
  }
}

@media (max-width: 767px) {
  .header-top__body {
    padding: 7px 0 0;
    gap: 15px;
  }
}

.header-top__left {
  display: flex;
  align-items: center;
  -moz-column-gap: 45px;
  column-gap: 45px;
}

@media (max-width: 991px) {
  .header-top__left {
    -moz-column-gap: 34px;
    column-gap: 34px;
  }
}

@media (max-width: 767px) {
  .header-top__left {
    display: none;
  }
}

.header-top__hours {
  font-size: 14px;
}

@media (max-width: 991px) {
  .header-top__hours {
    font-size: 13px;
  }
}

.header-top__mail {
  font-size: 14px;
}

@media (max-width: 991px) {
  .header-top__mail {
    font-size: 13px;
  }
}

.header-top__point {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 5px;
  column-gap: 5px;
  transition: 0.4s ease-in-out;
  cursor: pointer;
}

@media (max-width: 767px) {
  .header-top__point {
    display: none;
  }
}

.header-top__point:hover {
  opacity: 0.5;
}

.header-top__point svg {
  flex: 0 0 15px;
  width: 15px;
  height: 15px;
  fill: #ffffff;
}

.header-top__point span {
  font-size: 14px;
}

@media (max-width: 991px) {
  .header-top__point span {
    font-size: 13px;
  }
}

.header-top .header-socials {
  display: none;
}

@media (max-width: 767px) {
  .header-top .header-socials {
    display: flex;
  }
}

.header-top .header-middle__callback {
  display: none;
}

@media (max-width: 767px) {
  .header-top .header-middle__callback {
    display: block;
  }
}

@media (max-width: 575px) {
  .header-top .header-middle__callback {
    font-size: 12px;
    text-align: right;
  }
}

.header-middle__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 50px;
  column-gap: 50px;
  padding: 16px 0 23px;
}

@media (max-width: 991px) {
  .header-middle__body {
    -moz-column-gap: 0px;
    column-gap: 0px;
    padding: 13px 0 15px;
  }
}

@media (max-width: 767px) {
  .header-middle__body {
    padding: 13px 0;
  }
}

.header-middle__logo a {
  display: block;
  width: 150px;
}

@media (max-width: 991px) {
  .header-middle__logo a {
    width: 132px;
  }
}

@media (max-width: 575px) {
  .header-middle__logo a {
    width: 109px;
  }
}

.header-middle__logo a img {
  width: 100%;
  height: auto;
}

.header-middle__brand {
  font-size: 14px;
  line-height: 1.3;
  max-width: 250px;
}

@media (max-width: 991px) {
  .header-middle__brand {
    font-size: 12px;
    max-width: 220px;
  }
}

@media (max-width: 767px) {
  .header-middle__brand {
    display: none;
  }
}

@media (max-width: 767px) {
  .header-middle__socials {
    display: none !important;
  }
}

.header-middle__connect {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

@media (max-width: 767px) {
  .header-middle__connect {
    gap: 0;
  }
}

.header-middle__tel {
  color: #ffffff;
  font-weight: 700;
  font-size: 24px;
}

@media (max-width: 1199px) {
  .header-middle__tel {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .header-middle__tel {
    font-size: 16px;
  }
}

@media (max-width: 374px) {
  .header-middle__tel {
    font-size: 4.2vw;
  }
}

.header-middle__tel span {
  line-height: 1.2;
  display: block;
}

.header-middle__tel:hover {
  color: rgba(255, 255, 255, 0.5);
}

.header-middle__callback {
  color: #C8FF70;
  font-size: 15px;
}

@media (max-width: 1199px) {
  .header-middle__callback {
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .header-middle__callback {
    display: none;
  }
}

.header-middle__callback:hover {
  color: #A2C240;
}

.header-socials {
  display: flex;
  align-items: center;
}

.header-socials__label {
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: 0.4s ease-in-out;
}

.header-socials__label:hover {
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1199px) {
  .header-socials__label {
    display: none;
  }
}

@media (max-width: 767px) {
  .header-socials__label {
    display: inline-flex;
  }
}

@media (max-width: 575px) {
  .header-socials__label {
    font-size: 11px;
  }
}

.header-socials__label::after {
  content: "";
  height: 1px;
  width: 28px;
  flex: 0 0 28px;
  background: #535552;
  margin-left: 10px;
  margin-right: 12px;
}

@media (max-width: 767px) {
  .header-socials__label::after {
    flex: 0 0 22px;
    width: 22px;
  }
}

@media (max-width: 575px) {
  .header-socials__label::after {
    margin-left: 6px;
    margin-right: 9px;
  }
}

.header-socials__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
  column-gap: 8px;
}

@media (max-width: 767px) {
  .header-socials__list {
    -moz-column-gap: 6px;
    column-gap: 6px;
  }
}

.header-socials__list li {
  font-size: 0;
  line-height: 0;
}

.header-socials__list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 46px;
  height: 46px;
  border-radius: 50%;
}

@media (max-width: 767px) {
  .header-socials__list li a {
    width: 36px;
    height: 36px;
  }
}

.header-socials__list li a svg {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  fill: #ffffff;
  transition: 0.4s ease-in-out;
}

@media (max-width: 767px) {
  .header-socials__list li a svg {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
  }
}

.header-socials__list li a:hover {
  background: #ffffff;
  border-color: #ffffff;
}

.header-socials__list li a:hover svg {
  fill: #272925;
}

.header-bottom {
  background: #272925;
}

@media (max-width: 767px) {
  .header-bottom {
    display: none;
  }
}

.header-bottom__nav {
  height: 58px;
}

@media (max-width: 1199px) {
  .header-bottom__nav {
    height: 48px;
  }
}

.header-bottom__menu {
  height: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  -moz-column-gap: 40px;
  column-gap: 40px;
}

@media (max-width: 1199px) {
  .header-bottom__menu {
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}

@media (max-width: 991px) {
  .header-bottom__menu {
    -moz-column-gap: 0;
    column-gap: 0;
    justify-content: space-between;
  }
}

.header-bottom__menu li a {
  height: 100%;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-size: 14px;
  color: #ffffff;
  border-bottom: 1px solid transparent;
}

@media (max-width: 1199px) {
  .header-bottom__menu li a {
    font-size: 12px;
  }
}

@media (max-width: 991px) {
  .header-bottom__menu li a {
    font-size: 11px;
  }
}

.header-bottom__menu li a:hover {
  color: #C8FF70;
}

.header-bottom__menu li.current-menu-item a {
  color: #C8FF70;
  border-bottom-color: #C8FF70;
}

.header-sticky {
  background: #272925;
  position: fixed;
  width: 100%;
  left: 0;
  transform: translateY(-100%);
  transition: 0.4s ease-in-out;
  z-index: 900;
  top: 0;
  opacity: 0;
}

@media (max-width: 767px) {
  .header-sticky {
    display: none;
  }
}

.header-sticky._scrolling {
  opacity: 1;
  transform: translate(0);
}

.header-sticky__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-sticky__nav {
  height: 58px;
}

@media (max-width: 1199px) {
  .header-sticky__nav {
    height: 48px;
  }
}

@media (max-width: 991px) {
  .header-sticky__nav {
    width: 100%;
  }
}

.header-sticky__menu {
  height: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  -moz-column-gap: 20px;
  column-gap: 20px;
}

@media (max-width: 1199px) {
  .header-sticky__menu {
    -moz-column-gap: 16px;
    column-gap: 16px;
  }
}

@media (max-width: 991px) {
  .header-sticky__menu {
    -moz-column-gap: 0;
    column-gap: 0;
    justify-content: space-between;
  }
}

.header-sticky__menu li a {
  height: 100%;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-size: 13px;
  color: #ffffff;
  border-bottom: 1px solid transparent;
}

@media (max-width: 1199px) {
  .header-sticky__menu li a {
    font-size: 12px;
  }
}

@media (max-width: 991px) {
  .header-sticky__menu li a {
    font-size: 11px;
  }
}

.header-sticky__menu li a:hover {
  color: #C8FF70;
}

.header-sticky__menu li.current-menu-item a {
  color: #C8FF70;
  border-bottom-color: #C8FF70;
}

.header-sticky__tel {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

@media (max-width: 1199px) {
  .header-sticky__tel {
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .header-sticky__tel {
    display: none;
  }
}

.header-sticky__tel:hover {
  color: rgba(255, 255, 255, 0.5);
}

.header-sticky__tel span {
  display: block;
}

.breadcrumbs {
  padding-top: 30px;
  margin-bottom: 40px;
  transition: 0.4s ease-in-out;
}

@media (max-width: 767px) {
  .breadcrumbs {
    margin-bottom: 30px;
    padding-top: 24px;
  }
}

@media (max-width: 575px) {
  .breadcrumbs {
    margin-bottom: 24px;
  }
}

.breadcrumbs ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
}

.breadcrumbs ul li {
  line-height: 1.2;
  font-size: 12px;
  color: #ffffff;
  letter-spacing: 0;
}

@media (max-width: 767px) {
  .breadcrumbs ul li {
    font-size: 10px;
  }
}

@media (max-width: 575px) {
  .breadcrumbs ul li {
    font-size: 9px;
  }
}

.breadcrumbs ul li:not(:last-child) {
  display: inline-flex;
  align-items: center;
}

.breadcrumbs ul li:not(:last-child):after {
  content: "—";
  margin: 0 0.5em;
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
  line-height: 1.2;
}

@media (max-width: 767px) {
  .breadcrumbs ul li:not(:last-child):after {
    font-size: 10px;
  }
}

@media (max-width: 575px) {
  .breadcrumbs ul li:not(:last-child):after {
    font-size: 9px;
  }
}

.breadcrumbs ul li:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-clamp: 1;
  box-orient: vertical;
  padding: 2px 0;
  margin: -2px 0;
}

.breadcrumbs ul li a {
  font-size: 1em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.3);
}

.breadcrumbs ul li a:hover {
  color: #ffffff;
}

.action {
  margin-bottom: 30px;
}

@media (max-width: 575px) {
  .action {
    margin-bottom: 20px;
  }
}

.action__back {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 7px;
  column-gap: 7px;
  color: #ffffff;
  font-size: 12px;
}

.action__back svg {
  transition: 0.4s ease-in-out;
  width: 6px;
  height: 10px;
  fill: #ffffff;
}

.action__back:hover {
  color: #C8FF70;
}

.action__back:hover svg {
  fill: #C8FF70;
}

.bars {
  display: none;
  cursor: pointer;
  position: relative;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
}

@media (max-width: 767px) {
  .bars {
    display: block;
  }
}

.bars span {
  display: block;
  height: 1px;
  width: 32px;
  background: #ffffff;
  transition: 0.4s ease-in-out;
  position: absolute;
}

.bars span:nth-child(1) {
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
}

.bars span:nth-child(2) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.bars span:nth-child(3) {
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
}

.bars.active span:nth-child(1) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.bars.active span:nth-child(2) {
  width: 0;
  opacity: 0;
  transition: 0s;
}

.bars.active span:nth-child(3) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.footer {
  padding: 50px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 767px) {
  .footer {
    padding: 30px 0 35px;
    padding-bottom: 90px;
  }
}

@media (max-width: 575px) {
  .footer {
    padding-bottom: 80px;
  }
}

.footer__row {
  margin-bottom: 70px;
}

@media (max-width: 1199px) {
  .footer__row {
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .footer__row {
    row-gap: 42px;
  }
}

.footer__logo {
  margin-bottom: 100px;
}

@media (max-width: 1199px) {
  .footer__logo {
    margin-bottom: 50px;
  }
}

@media (max-width: 575px) {
  .footer__logo {
    margin-bottom: 0;
  }
}

.footer__logo a {
  display: block;
  width: 150px;
}

@media (max-width: 575px) {
  .footer__logo a {
    width: 109px;
  }
}

.footer__logo a img {
  width: 100%;
  height: auto;
}

.footer__info {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 44px;
}

@media (max-width: 1199px) {
  .footer__info {
    gap: 30px;
  }
}

@media (max-width: 575px) {
  .footer__info {
    gap: 28px;
  }
}

.footer__info li span {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1199px) {
  .footer__info li span {
    font-size: 13px;
    margin-bottom: 10px;
  }
}

@media (max-width: 575px) {
  .footer__info li span {
    font-size: 14px;
    margin-bottom: 12px;
  }
}

.footer__info li p {
  margin-bottom: 0;
  color: #ffffff;
}

@media (max-width: 1199px) {
  .footer__info li p {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .footer__info li p {
    font-size: 16px;
  }
}

.footer__info li p a {
  color: #C8FF70;
}

.footer__info li p a:hover {
  color: #A2C240;
}

.footer__title {
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1199px) {
  .footer__title {
    font-size: 11px;
    margin-bottom: 16px;
  }
}

@media (max-width: 575px) {
  .footer__title {
    font-size: 12px;
    margin-bottom: 22px;
  }
}

.footer__menu {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 1199px) {
  .footer__menu {
    gap: 10px;
  }
}

@media (max-width: 575px) {
  .footer__menu {
    gap: 12px;
  }
}

.footer__menu li a {
  color: #ffffff;
}

@media (max-width: 1199px) {
  .footer__menu li a {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .footer__menu li a {
    font-size: 16px;
  }
}

.footer__menu li a:hover {
  color: #C8FF70;
}

.footer__action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

@media (max-width: 767px) {
  .footer__action {
    align-items: flex-start;
  }
}

@media (max-width: 575px) {
  .footer__action {
    gap: 7px;
    margin-bottom: 22px;
  }
}

.footer__tel {
  color: #ffffff;
  font-weight: 700;
  font-size: 24px;
}

@media (max-width: 1199px) {
  .footer__tel {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  .footer__tel {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .footer__tel {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .footer__tel {
    font-size: 22px;
  }
}

.footer__tel span {
  line-height: 1.2;
  display: block;
}

.footer__tel:hover {
  color: rgba(255, 255, 255, 0.5);
}

.footer__callback {
  color: #C8FF70;
  font-size: 15px;
}

@media (max-width: 1199px) {
  .footer__callback {
    font-size: 13px;
  }
}

@media (max-width: 575px) {
  .footer__callback {
    font-size: 14px;
  }
}

.footer__callback:hover {
  color: #A2C240;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer__text {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.2;
}

@media (max-width: 1199px) {
  .footer__text {
    font-size: 13px;
  }
}

.hero {
  margin-top: -190px;
  padding-top: 190px;
  margin-bottom: 120px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(28, 28, 28, 0.4) 0%, rgba(217, 217, 217, 0) 100%);
}

@media (max-width: 1199px) {
  .hero {
    margin-top: -177px;
    padding-top: 177px;
    margin-bottom: 90px;
  }
}

@media (max-width: 991px) {
  .hero {
    margin-top: -153px;
    padding-top: 153px;
    margin-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .hero {
    margin-top: -102px;
    padding-top: 102px;
  }
}

@media (max-width: 575px) {
  .hero {
    margin-bottom: 40px;
  }
}

.hero__body {
  padding-top: 50px;
  position: relative;
}

@media (max-width: 991px) {
  .hero__body {
    padding-top: 40px;
  }
}

@media (max-width: 767px) {
  .hero__body {
    padding-top: 30px;
  }
}

.hero__body::before {
  content: "";
  position: absolute;
  top: 0;
  left: -390px;
  width: 922px;
  height: 729px;
  background-image: url(../img/lines.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media (max-width: 1199px) {
  .hero__body::before {
    width: 800px;
    height: 633px;
    left: -270px;
  }
}

@media (max-width: 991px) {
  .hero__body::before {
    width: 760px;
    height: 614px;
    left: -160px;
  }
}

@media (max-width: 767px) {
  .hero__body::before {
    width: 500px;
    height: 396px;
    left: -30px;
  }
}

@media (max-width: 575px) {
  .hero__body::before {
    left: 0;
  }
}

.hero__body>* {
  position: relative;
  z-index: 1;
}

.hero__row {
  margin-bottom: 50px;
}

@media (max-width: 991px) {
  .hero__row {
    margin-bottom: 73px;
    padding-bottom: 260px;
  }
}

@media (max-width: 767px) {
  .hero__row {
    margin-bottom: 40px;
    padding-bottom: 200px;
  }

  .hero__row>*:first-child {
    position: relative;
    z-index: 1;
  }
}

@media (max-width: 575px) {
  .hero__row {
    padding-bottom: 0;
    margin-bottom: 30px;
  }
}

.hero__title {
  font-size: 46px;
  margin-bottom: 50px;
}

@media (max-width: 1199px) {
  .hero__title {
    font-size: 38px;
    margin-bottom: 36px;
  }
}

@media (max-width: 991px) {
  .hero__title {
    font-size: 44px;
    margin-bottom: 27px;
  }
}

@media (max-width: 767px) {
  .hero__title {
    font-size: 36px;
    margin-bottom: 24px;
  }
}

@media (max-width: 575px) {
  .hero__title {
    font-size: 28px;
    margin-bottom: 20px;
  }
}

.hero__title span {
  color: #C8FF70;
}

.hero__subtitle {
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 37px;
}

@media (max-width: 1199px) {
  .hero__subtitle {
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .hero__subtitle {
    font-size: 18px;
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .hero__subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }
}

@media (max-width: 575px) {
  .hero__subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 350px;
}

@media (max-width: 1199px) {
  .hero__actions {
    gap: 10px;
  }
}

@media (max-width: 767px) {
  .hero__actions {
    gap: 8px;
  }
}

.hero__button {
  width: 100%;
}

.hero__image {
  margin-bottom: 0;
  width: 100%;
}

@media (max-width: 991px) {
  .hero__image {
    width: 605px;
    position: absolute;
    right: -80px;
    bottom: 0;
  }
}

@media (max-width: 767px) {
  .hero__image {
    width: 480px;
    right: -150px;
  }
}

@media (max-width: 575px) {
  .hero__image {
    position: relative;
    right: 0;
    width: 100%;
    margin-top: 4px;
  }
}

.hero__image img {
  width: 100%;
}

.utp-list {
  background: #2C2D2B;
  border-radius: 12px;
  padding: 30px 40px;
}

@media (max-width: 1199px) {
  .utp-list {
    padding: 30px;
  }
}

@media (max-width: 991px) {
  .utp-list {
    padding: 24px;
  }
}

@media (max-width: 575px) {
  .utp-list {
    padding: 20px 25px;
  }
}

.utp-item {
  padding-left: 40px;
}

@media (max-width: 991px) {
  .utp-item {
    padding-left: 4px;
  }
}

@media (max-width: 575px) {
  .utp-item {
    padding-left: 0;
  }
}

.utp-item__title {
  color: #C8FF70;
  font-size: 55px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1;
}

@media (max-width: 991px) {
  .utp-item__title {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .utp-item__title {
    font-size: 24px;
    margin-bottom: 8px;
  }
}

@media (max-width: 575px) {
  .utp-item__title {
    font-size: 20px;
  }
}

.utp-item__title span {
  font-size: 24px;
}

@media (max-width: 991px) {
  .utp-item__title span {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .utp-item__title span {
    font-size: 20px;
  }
}

.utp-item__text {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
  max-width: 246px;
}

@media (max-width: 991px) {
  .utp-item__text {
    max-width: 210px;
  }
}

@media (max-width: 767px) {
  .utp-item__text {
    max-width: 100%;
  }
}

.home-about {
  margin-bottom: 90px;
}

@media (max-width: 991px) {
  .home-about {
    margin-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .home-about {
    margin-bottom: 48px;
  }
}

.home-about__body {
  padding-bottom: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 991px) {
  .home-about__body {
    padding-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .home-about__body {
    padding-bottom: 48px;
  }
}

@media (max-width: 575px) {
  .home-about__body {
    border-bottom: 0;
    padding-bottom: 0;
  }
}

.home-about--about .home-about__body {
  padding-bottom: 0;
  border-bottom: 0;
}

.home-about__row {
  row-gap: 20px;
}

@media (max-width: 991px) {
  .home-about__row {
    row-gap: 45px;
  }
}

@media (max-width: 767px) {
  .home-about__row {
    row-gap: 30px;
  }
}

@media (max-width: 575px) {
  .home-about__row {
    row-gap: 20px;
  }
}

.home-about--about .home-about__row {
  row-gap: 50px;
  margin-bottom: 80px;
}

@media (max-width: 1199px) {
  .home-about--about .home-about__row {
    row-gap: 40px;
  }
}

@media (max-width: 767px) {
  .home-about--about .home-about__row {
    margin-bottom: 48px;
    row-gap: 30px;
  }
}

@media (max-width: 575px) {
  .home-about--about .home-about__row {
    row-gap: 24px;
  }
}

.home-about__title {
  margin-bottom: 1em;
}

@media (max-width: 767px) {
  .home-about__title {
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .home-about__title {
    margin-bottom: 16px;
  }
}

.home-about__subtitle {
  color: #C8FF70;
  margin: 0;
  font-size: 26px;
  line-height: 1.5;
}

@media (max-width: 1199px) {
  .home-about__subtitle {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .home-about__subtitle {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .home-about__subtitle {
    font-size: 16px;
  }
}

.home-about__desc {
  max-width: 490px;
  margin-left: auto;
  margin-right: 0;
}

@media (max-width: 991px) {
  .home-about__desc {
    max-width: 100%;
  }
}

.home-about__desc p {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 1.5em;
}

@media (max-width: 1199px) {
  .home-about__desc p {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .home-about__desc p {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .home-about__desc p {
    font-size: 14px;
  }
}

.home-about__desc p:last-child {
  margin-bottom: 0;
}

.home-about--about .home-about__desc {
  max-width: 100%;
}

.service-cards {
  overflow: hidden;
  margin-bottom: 100px;
}

@media (max-width: 1199px) {
  .service-cards {
    margin-bottom: 90px;
  }
}

@media (max-width: 991px) {
  .service-cards {
    margin-bottom: 60px;
  }
}

@media (max-width: 575px) {
  .service-cards {
    margin-bottom: 48px;
  }
}

.service-cards__title {
  margin-bottom: 36px;
}

@media (max-width: 767px) {
  .service-cards__title {
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .service-cards__title {
    margin-bottom: 24px;
  }
}

.service-cards__slider .swiper-slide {
  height: auto;
  display: flex;
  flex-direction: column;
}

.service-cards__row {
  row-gap: 20px;
}

@media (max-width: 767px) {
  .service-cards__row {
    row-gap: 16px;
    margin: 0 -8px;
  }

  .service-cards__row>* {
    padding: 0 8px;
  }
}

@media (max-width: 575px) {
  .service-cards__row {
    row-gap: 10px;
    margin: 0 -4px;
  }

  .service-cards__row>* {
    padding: 0 4px;
  }
}

.card-item {
  flex: 1 0 auto;
  overflow: hidden;
  background: #2C2D2B;
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
}

.card-item__thumb {
  display: block;
}

.card-item__thumb figure {
  margin-bottom: 0;
  padding-top: 62.1253405995%;
  position: relative;
  overflow: hidden;
}

.card-item__thumb figure img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

@media (max-width: 575px) {

  .card-item--service,
  .card-item--small {
    border-radius: 8px;
  }
}

.card-item--small .card-item__thumb figure {
  padding-top: 74.0740740741%;
}

@media (max-width: 575px) {
  .card-item--small .card-item__thumb figure img {
    border-radius: 8px 8px 0 0;
  }
}

@media (max-width: 575px) {
  .card-item--service figure img {
    border-radius: 8px 8px 0 0;
  }
}

.card-item--news .card-item__thumb figure {
  padding-top: 62.1253405995%;
}

.card-item__content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 30px 42px;
}

@media (max-width: 1199px) {
  .card-item__content {
    padding: 24px 24px 36px;
  }
}

@media (max-width: 991px) {
  .card-item__content {
    padding: 24px;
  }
}

@media (max-width: 767px) {
  .card-item__content {
    padding: 20px;
  }
}

@media (max-width: 575px) {
  .card-item__content {
    padding: 14px 18px 18px;
  }
}

.card-item--small .card-item__content {
  padding: 20px 20px 30px;
}

@media (max-width: 1199px) {
  .card-item--small .card-item__content {
    padding: 20px;
  }
}

@media (max-width: 575px) {
  .card-item--detail .card-item__content {
    padding: 12px 10px;
  }
}

@media (max-width: 575px) {
  .card-item--service .card-item__content {
    padding: 12px 10px;
  }
}

.card-item--news .card-item__content {
  padding: 30px 30px 40px;
  min-height: 280px;
}

@media (max-width: 1199px) {
  .card-item--news .card-item__content {
    padding: 20px 20px 30px;
    min-height: 240px;
  }
}

@media (max-width: 767px) {
  .card-item--news .card-item__content {
    min-height: 200px;
    padding: 20px;
  }
}

@media (max-width: 575px) {
  .card-item--news .card-item__content {
    min-height: 180px;
  }
}

.card-item__title {
  margin-bottom: 45px;
  color: #ffffff;
  font-size: 22px;
}

@media (max-width: 991px) {
  .card-item__title {
    font-size: 20px;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .card-item__title {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

@media (max-width: 575px) {
  .card-item__title {
    font-size: 16px;
    margin-bottom: 12px;
  }
}

.card-item--small .card-item__title {
  font-size: 18px;
  margin-bottom: 30px;
}

@media (max-width: 1199px) {
  .card-item--small .card-item__title {
    margin-bottom: 20px;
  }
}

@media (max-width: 575px) {
  .card-item--small .card-item__title {
    font-size: 16px;
    margin-bottom: 12px;
  }
}

@media (max-width: 575px) {
  .card-item--detail .card-item__title {
    margin-bottom: 20px;
    font-size: 12px;
  }
}

@media (max-width: 575px) {
  .card-item--service .card-item__title {
    margin-bottom: 20px;
    font-size: 12px;
  }
}

.card-item--news .card-item__title {
  margin-bottom: 30px;
}

@media (max-width: 1199px) {
  .card-item--news .card-item__title {
    margin-bottom: 20px;
  }
}

.card-item__info {
  list-style: none;
  padding-left: 0;
  margin-bottom: 27px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

@media (max-width: 1199px) {
  .card-item__info {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .card-item__info {
    gap: 10px;
  }
}

.card-item__info li {
  font-size: 14px;
}

@media (max-width: 767px) {
  .card-item__info li {
    font-size: 13px;
  }
}

.card-item__info li span {
  display: inline-block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.5);
}

.card-item__info li p {
  margin-bottom: 0;
}

@media (max-width: 575px) {
  .card-item--detail .card-item__info {
    gap: 10px;
  }
}

@media (max-width: 575px) {
  .card-item--detail .card-item__info li {
    font-size: 9px;
  }
}

@media (max-width: 575px) {
  .card-item--detail .card-item__info li span {
    margin-bottom: 3px;
  }
}

.card-item__price {
  font-size: 24px;
  color: #C8FF70;
  margin-bottom: 30px;
  font-weight: 700;
}

@media (max-width: 1199px) {
  .card-item__price {
    margin-bottom: 24px;
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .card-item__price {
    font-size: 24px;
  }
}

.card-item--small .card-item__price {
  margin-bottom: 25px;
}

@media (max-width: 1199px) {
  .card-item--small .card-item__price {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .card-item--small .card-item__price {
    margin-bottom: 24px;
  }
}

@media (max-width: 575px) {
  .card-item--detail .card-item__price {
    font-size: 12px;
    margin-bottom: 20px;
  }
}

@media (max-width: 575px) {
  .card-item--service .card-item__price {
    font-size: 12px;
    margin-bottom: 20px;
  }
}

.card-item__actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.card-item__button {
  width: 100%;
}

@media (max-width: 991px) {
  .card-item__button {
    padding: 20px 0;
  }
}

@media (max-width: 767px) {
  .card-item__button {
    padding: 19px 0;
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .card-item__button {
    font-size: 13px;
  }
}

.card-item--small .card-item__button {
  padding: 20px 0;
  text-align: center;
}

@media (max-width: 767px) {
  .card-item--small .card-item__button {
    padding: 19px 0;
  }
}

@media (max-width: 575px) {
  .card-item--detail .card-item__button {
    font-size: 11px;
    padding: 14px 0;
  }
}

@media (max-width: 575px) {
  .card-item--service .card-item__button {
    font-size: 11px;
    padding: 14px 0;
  }
}

.home-quiz {
  margin-bottom: 100px;
}

@media (max-width: 1199px) {
  .home-quiz {
    margin-bottom: 90px;
  }
}

@media (max-width: 991px) {
  .home-quiz {
    margin-bottom: 60px;
  }
}

.home-quiz__title {
  text-align: center;
  margin-bottom: 20px;
}

@media (max-width: 575px) {
  .home-quiz__title {
    text-align: left;
  }
}

.home-quiz__desc {
  text-align: center;
  margin-bottom: 45px;
  font-size: 18px;
}

@media (max-width: 767px) {
  .home-quiz__desc {
    margin-bottom: 30px;
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .home-quiz__desc {
    margin-bottom: 20px;
    font-size: 13px;
    text-align: left;
  }
}

.quiz-form {
  background: #2C2D2B;
  border-radius: 12px;
  padding: 50px 77px;
}

@media (max-width: 767px) {
  .quiz-form {
    padding: 40px 60px;
  }
}

@media (max-width: 575px) {
  .quiz-form {
    padding: 0;
    background: transparent;
    border-radius: 0;
  }
}

.quiz-form__pagination {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
  column-gap: 10px;
}

.quiz-form__pagination div {
  flex-grow: 1;
  height: 1px;
  width: 100%;
  background: rgba(255, 255, 255, 0.5);
}

.quiz-form__pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s ease-in-out;
  border-radius: 5px;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  color: #272925;
  background: #ffffff;
}

.quiz-form__pagination span.active {
  background: #C8FF70;
}

.quiz-form__row {
  display: flex;
  overflow: hidden;
  align-items: flex-start;
}

.quiz-form__step {
  flex: 0 0 100%;
  transition: 0.4s ease-in-out;
  margin-right: 20px;
}

.quiz-form__step--1 {
  padding-top: 38px;
}

@media (max-width: 767px) {
  .quiz-form__step--1 {
    padding-top: 30px;
  }
}

.quiz-form__step--2 {
  padding-top: 60px;
}

.quiz-form.active .quiz-form__step {
  transform: translateX(calc(-100% - 20px));
}

.quiz-form__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 45px;
  display: flex;
  flex-direction: column;
  gap: 19px;
}

@media (max-width: 767px) {
  .quiz-form__list {
    gap: 16px;
    margin-bottom: 30px;
  }
}

.quiz-form__list li {
  font-size: 18px;
}

@media (max-width: 767px) {
  .quiz-form__list li {
    font-size: 16px;
    line-height: 1;
  }
}

@media (max-width: 575px) {
  .quiz-form__list li {
    font-size: 14px;
  }
}

.quiz-form__list li label {
  margin-bottom: 0;
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 10px;
  column-gap: 10px;
  line-height: 1;
  cursor: pointer;
}

.quiz-form__list li label input:checked+.check-fake {
  background: #C8FF70;
}

.quiz-form__list li label input:checked+.check-fake svg {
  opacity: 1;
}

.quiz-form__actions {
  display: flex;
  -moz-column-gap: 20px;
  column-gap: 20px;
}

@media (max-width: 767px) {
  .quiz-form__actions {
    -moz-column-gap: 16px;
    column-gap: 16px;
  }
}

.quiz-form__button {
  flex: 1 0 calc(50% - 10px);
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

@media (max-width: 767px) {
  .quiz-form__button {
    padding: 19px 0;
    flex: 1 0 calc(50% - 8px);
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .quiz-form__button {
    font-size: 13px;
  }
}

.quiz-form__group {
  margin-bottom: 11px;
}

@media (max-width: 767px) {
  .quiz-form__group {
    margin-bottom: 10px;
  }
}

.quiz-form__accept {
  margin-top: 25px;
  margin-bottom: 25px;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 575px) {
  .quiz-form__accept {
    font-size: 11px;
  }
}

.check-fake {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  border: 1px solid #C8FF70;
  transition: 0.4s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.check-fake svg {
  width: 12px;
  height: 9px;
  fill: #2C2D2B;
  opacity: 0;
}

.quiz-success {
  background: #2C2D2B;
  border-radius: 12px;
  padding: 70px 77px 85px;
  display: none;
}

@media (max-width: 767px) {
  .quiz-success {
    padding: 50px 60px;
  }
}

@media (max-width: 575px) {
  .quiz-success {
    padding: 40px 24px;
  }
}

.quiz-success__icon {
  margin: 0 auto 20px;
  width: 75px;
}

.quiz-success__icon img {
  width: 100%;
  height: auto;
}

.quiz-success__title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 18px;
}

@media (max-width: 767px) {
  .quiz-success__title {
    margin-bottom: 16px;
  }
}

@media (max-width: 575px) {
  .quiz-success__title {
    font-size: 24px;
    margin-bottom: 16px;
  }
}

.quiz-success__text {
  text-align: center;
  line-height: 1.5;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .quiz-success__text {
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .quiz-success__text {
    margin-bottom: 24px;
  }
}

.quiz-success__button {
  width: 100%;
}

@media (max-width: 767px) {
  .quiz-success__button {
    padding: 19px 0;
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .quiz-success__button {
    font-size: 13px;
  }
}

.home-spoilers {
  margin-bottom: 100px;
  overflow: hidden;
}

@media (max-width: 1199px) {
  .home-spoilers {
    margin-bottom: 90px;
  }
}

@media (max-width: 991px) {
  .home-spoilers {
    margin-bottom: 60px;
  }
}

.spoiler {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.spoiler:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.spoiler__header {
  padding: 27px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

@media (max-width: 1199px) {
  .spoiler__header {
    padding: 25px 16px 25px 0;
  }
}

@media (max-width: 767px) {
  .spoiler__header {
    padding: 20px 0;
  }
}

@media (max-width: 575px) {
  .spoiler__header {
    padding: 17px 0;
  }
}

.spoiler__title {
  font-size: 36px;
  margin: 0;
}

@media (max-width: 1199px) {
  .spoiler__title {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .spoiler__title {
    font-size: 25px;
  }
}

@media (max-width: 575px) {
  .spoiler__title {
    font-size: 22px;
  }
}

.spoiler__icon svg {
  transition: 0.4s ease-in-out;
  fill: #ffffff;
  width: 22px;
  height: 12px;
}

@media (max-width: 767px) {
  .spoiler__icon svg {
    width: 20px;
  }
}

@media (max-width: 575px) {
  .spoiler__icon svg {
    width: 16px;
  }
}

.spoiler.active .spoiler__icon svg {
  fill: #C8FF70;
  transform: rotate(180deg);
}

.spoiler__body {
  margin-bottom: 100px;
  display: none;
}

@media (max-width: 1199px) {
  .spoiler__body {
    margin-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .spoiler__body {
    padding-top: 10px;
    margin-bottom: 40px;
  }
}

.filter {
  list-style: none;
  padding-left: 0;
  margin-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 8px;
  column-gap: 8px;
  row-gap: 12px;
}

@media (max-width: 1199px) {
  .filter {
    -moz-column-gap: 6px;
    column-gap: 6px;
    row-gap: 10px;
  }
}

@media (max-width: 767px) {
  .filter {
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .filter {
    -moz-column-gap: 4px;
    column-gap: 4px;
    row-gap: 4px;
  }
}

.filter--wrapper {
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
  margin-left: -16px;
  margin-right: -16px;
  -webkit-mask-image: linear-gradient(var(--mask-direction, to right), hsla(0, 0%, 0%, 0), hsl(0, 0%, 0%) 20%, hsl(0, 0%, 0%) 80%, hsla(0, 0%, 0%, 0));
  mask-image: linear-gradient(var(--mask-direction, to right), hsla(0, 0%, 0%, 0), hsl(0, 0%, 0%) 20%, hsl(0, 0%, 0%) 80%, hsla(0, 0%, 0%, 0));
}

.filter--wrapper::-webkit-scrollbar {
  display: none;
  opacity: 0;
  height: 0;
  width: 0;
}

.filter--marquee {
  overflow: hidden;
  padding-bottom: 3px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -moz-column-gap: 8px;
  column-gap: 8px;
  width: -moz-max-content;
  width: max-content;
  flex-wrap: nowrap;
}

@media (max-width: 1199px) {
  .filter--marquee {
    -moz-column-gap: 6px;
    column-gap: 6px;
    margin-bottom: 10px;
  }
}

@media (max-width: 575px) {
  .filter--marquee {
    -moz-column-gap: 4px;
    column-gap: 4px;
    margin-bottom: 6px;
  }
}

.filter--marquee__group {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: start;
  -moz-column-gap: 8px;
  column-gap: 8px;
  animation: scroll-x 40s linear infinite;
}

@media (max-width: 1199px) {
  .filter--marquee__group {
    -moz-column-gap: 6px;
    column-gap: 6px;
  }
}

@media (max-width: 575px) {
  .filter--marquee__group {
    -moz-column-gap: 4px;
    column-gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .filter--marquee__group {
    animation-play-state: paused;
  }
}

.filter--last {
  margin-left: -16px;
}

@media (max-width: 1199px) {
  .filter--last {
    -moz-column-gap: 6px;
    column-gap: 6px;
  }
}

@media (max-width: 575px) {
  .filter--last {
    -moz-column-gap: 4px;
    column-gap: 4px;
  }
}

.filter--spoiler {
  margin-bottom: 30px;
}

@keyframes scroll-x {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - clamp(10rem, 1rem + 40vmin, 30rem) / 14));
  }
}

@media (min-width: 991px) {
  .spoiler-slider .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
    row-gap: 30px;
    width: calc(100% + 20px);
  }
}

.spoiler-slider .swiper-slide {
  height: auto;
  display: flex;
  flex-direction: column;
}

@media (min-width: 991px) {
  .spoiler-slider .swiper-slide {
    padding: 0 10px;
    flex: 0 0 25%;
    width: 25%;
  }
}

@media (min-width: 991px) {
  .spoiler-slider .swiper-pagination {
    display: none;
  }
}

.home-work {
  margin-bottom: 100px;
}

@media (max-width: 1199px) {
  .home-work {
    margin-bottom: 90px;
  }
}

@media (max-width: 991px) {
  .home-work {
    margin-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .home-work {
    margin-bottom: 48px;
  }
}

.home-work__title {
  margin-bottom: 36px;
}

.home-work__video {
  display: block;
  position: relative;
  overflow: hidden;
  padding-top: 50.8771929825%;
  border-radius: 12px;
}

@media (max-width: 575px) {
  .home-work__video {
    padding-top: 58.7209302326%;
  }
}

.home-work__video img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 12px;
}

.home-work__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 767px) {
  .home-work__play {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.home-work__play span {
  position: absolute;
  color: #C8FF70;
  font-size: 18px;
  top: calc(100% + 35px);
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

@media (max-width: 1199px) {
  .home-work__play span {
    font-size: 16px;
    top: calc(100% + 24px);
  }
}

@media (max-width: 767px) {
  .home-work__play span {
    position: relative;
    top: 0;
    transform: translate(0);
    left: 0;
    margin-top: 14px;
    display: block;
    text-align: center;
    font-size: 14px;
  }
}

.home-work__btn {
  width: 138px;
  height: 138px;
  border-radius: 50%;
  background: rgba(200, 255, 112, 0.6);
  border: 1px solid #C8FF70;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1199px) {
  .home-work__btn {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 767px) {
  .home-work__btn {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 575px) {
  .home-work__btn {
    width: 93px;
    height: 93px;
  }
}

.home-work__btn:hover,
.home-work__btn:active {
  background: #C8FF70 !important;
  border-color: #C8FF70 !important;
}

.home-work__btn:hover svg,
.home-work__btn:active svg {
  fill: #272925;
}

.home-work__btn svg {
  fill: #ffffff;
  width: 20px;
  height: 20px;
  transition: 0.4s ease-in-out;
}

@media (max-width: 767px) {
  .home-work__btn svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 575px) {
  .home-work__btn svg {
    width: 12px;
    height: 12px;
  }
}

.home-prefers {
  margin-bottom: 100px;
}

@media (max-width: 1199px) {
  .home-prefers {
    margin-bottom: 90px;
  }
}

@media (max-width: 991px) {
  .home-prefers {
    margin-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .home-prefers__row {
    margin: 0 -4px;
    row-gap: 8px;
  }

  .home-prefers__row>* {
    padding: 0 4px;
  }
}

.prefers-card {
  flex: 1 0 auto;
  background: #2C2D2B;
  border-radius: 12px;
  padding: 26px 48px;
}

@media (max-width: 1199px) {
  .prefers-card {
    padding: 26px 24px;
  }
}

@media (max-width: 575px) {
  .prefers-card {
    padding: 18px 20px 24px;
  }
}

.prefers-card__number {
  display: block;
  color: #696969;
  margin-bottom: 50px;
}

@media (max-width: 1199px) {
  .prefers-card__number {
    margin-bottom: 42px;
  }
}

@media (max-width: 575px) {
  .prefers-card__number {
    margin-bottom: 32px;
  }
}

.prefers-card__image {
  width: 45px;
  margin-bottom: 36px;
}

@media (max-width: 1199px) {
  .prefers-card__image {
    margin-bottom: 28px;
  }
}

@media (max-width: 575px) {
  .prefers-card__image {
    width: 35px;
    margin-bottom: 24px;
  }
}

.prefers-card__image img {
  width: 100%;
  height: auto;
}

.prefers-card__title {
  margin: 0;
  color: #ffffff;
  font-weight: 400;
  font-size: 18px;
}

@media (max-width: 1199px) {
  .prefers-card__title {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .prefers-card__title {
    font-size: 13px;
  }
}

.home-steps {
  margin-bottom: 80px;
}

@media (max-width: 991px) {
  .home-steps {
    margin-bottom: 60px;
  }
}

.home-steps__title {
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .home-steps__title {
    margin-bottom: 36px;
  }
}

.home-steps__row {
  margin-bottom: 60px;
}

@media (max-width: 767px) {
  .home-steps__row {
    row-gap: 30px;
    margin-bottom: 50px;
  }
}

@media (max-width: 575px) {
  .home-steps__row {
    row-gap: 24px;
  }
}

@media (max-width: 767px) {
  .home-steps__action {
    display: flex;
    justify-content: center;
  }
}

.home-steps__button {
  width: 350px;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

@media (max-width: 767px) {
  .steps-card {
    display: flex;
    align-items: center;
    -moz-column-gap: 36px;
    column-gap: 36px;
  }
}

@media (max-width: 575px) {
  .steps-card {
    align-items: flex-start;
    -moz-column-gap: 24px;
    column-gap: 24px;
  }
}

.steps-card__image {
  height: 110px;
  margin-bottom: 22px;
  position: relative;
}

@media (max-width: 1199px) {
  .steps-card__image {
    height: 90px;
  }
}

@media (max-width: 991px) {
  .steps-card__image {
    padding-left: 10px;
  }
}

@media (max-width: 767px) {
  .steps-card__image {
    padding-left: 0;
    margin-bottom: 0;
    height: auto;
    width: 100px;
    flex: 0 0 100px;
  }
}

@media (max-width: 575px) {
  .steps-card__image {
    flex: 0 0 80px;
    width: 80px;
  }
}

.steps-card__image img {
  height: 100%;
  width: auto;
}

@media (max-width: 767px) {
  .steps-card__image img {
    width: 100%;
    height: auto;
  }
}

.steps-card__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 235px;
}

@media (max-width: 1199px) {
  .steps-card__arrow {
    left: 195px;
  }
}

@media (max-width: 991px) {
  .steps-card__arrow {
    left: 160px;
  }
}

@media (max-width: 767px) {
  .steps-card__arrow {
    display: none;
  }
}

.steps-card__arrow svg {
  width: 44px;
  height: 16px;
  fill: rgba(255, 255, 255, 0.5);
}

.steps-card:last-child .steps-card__arrow {
  display: none;
}

.steps-card__content {
  max-width: 270px;
}

@media (max-width: 767px) {
  .steps-card__content {
    max-width: 100%;
  }
}

.steps-card__title {
  padding-left: 10px;
  font-size: 24px;
  margin-bottom: 10px;
}

@media (max-width: 1199px) {
  .steps-card__title {
    font-size: 22px;
  }
}

@media (max-width: 575px) {
  .steps-card__title {
    font-size: 14px;
  }
}

.steps-card__desc {
  padding-left: 10px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.5);
}

.home-cosult {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 80px;
  margin-bottom: 100px;
}

@media (max-width: 1199px) {
  .home-cosult {
    margin-bottom: 90px;
  }
}

@media (max-width: 991px) {
  .home-cosult {
    margin-bottom: 60px;
    padding: 60px 0;
  }
}

@media (max-width: 575px) {
  .home-cosult {
    padding: 48px 0 0;
  }
}

@media (max-width: 991px) {
  .home-cosult__row {
    align-items: flex-end;
  }
}

@media (max-width: 767px) {
  .home-cosult__row {
    row-gap: 0;
  }
}

@media (max-width: 575px) {
  .home-cosult__row {
    row-gap: 20px;
  }
}

.home-cosult__title {
  margin-bottom: 36px;
}

@media (max-width: 1199px) {
  .home-cosult__title {
    font-size: 35px;
    margin-bottom: 24px;
  }
}

@media (max-width: 991px) {
  .home-cosult__title {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .home-cosult__title {
    font-size: 28px;
    margin-bottom: 16px;
  }
}

@media (max-width: 575px) {
  .home-cosult__title {
    font-size: 24px;
    margin-bottom: 12px;
  }
}

.home-cosult__desc {
  font-size: 18px;
  margin-bottom: 45px;
}

@media (max-width: 1199px) {
  .home-cosult__desc {
    font-size: 16px;
    margin-bottom: 36px;
  }
}

@media (max-width: 767px) {
  .home-cosult__desc {
    font-size: 14px;
    margin-bottom: 28px;
  }
}

@media (max-width: 575px) {
  .home-cosult__desc {
    font-size: 13px;
    margin-bottom: 24px;
  }
}

.home-cosult__image {
  margin-bottom: 0;
  width: 532px;
  max-width: 100%;
}

@media (max-width: 991px) {
  .home-cosult__image {
    margin-bottom: -60px;
  }
}

@media (max-width: 767px) {
  .home-cosult__image {
    display: none;
  }
}

@media (max-width: 575px) {
  .home-cosult__image {
    display: block;
    margin: 0 auto;
    max-width: 375px;
    width: auto;
  }
}

.home-cosult__image img {
  width: 100%;
  height: auto;
}

.cosult-form__group {
  margin-bottom: 12px;
  max-width: 350px;
}

.cosult-form__group>.btn {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

@media (max-width: 991px) {
  .cosult-form__group>.btn {
    padding: 20px 0;
  }
}

.cosult-form__accept {
  margin-top: 36px;
  margin-bottom: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1199px) {
  .cosult-form__accept {
    margin-top: 28px;
  }
}

@media (max-width: 991px) {
  .cosult-form__accept {
    margin-top: 24px;
  }
}

@media (max-width: 767px) {
  .cosult-form__accept {
    max-width: 350px;
  }
}

@media (max-width: 575px) {
  .cosult-form__accept {
    max-width: 100%;
    margin-top: 20px;
    text-align: center;
  }
}

.home-details {
  margin-bottom: 100px;
}

@media (max-width: 1199px) {
  .home-details {
    margin-bottom: 90px;
  }
}

@media (max-width: 991px) {
  .home-details {
    margin-bottom: 60px;
  }
}

.home-details__title {
  margin-bottom: 36px;
}

.home-details__row {
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .home-details__row {
    margin: 0 -8px 36px;
    row-gap: 16px;
  }

  .home-details__row>* {
    padding: 0 8px;
  }
}

@media (max-width: 575px) {
  .home-details__row {
    margin: 0 -4px 24px;
    row-gap: 10px;
  }

  .home-details__row>* {
    padding: 0 4px;
  }
}

.home-details__action {
  display: flex;
  justify-content: center;
}

.home-details__button {
  width: 350px;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

.home-why {
  margin-bottom: 100px;
  overflow: hidden;
}

@media (max-width: 1199px) {
  .home-why {
    margin-bottom: 90px;
  }
}

@media (max-width: 991px) {
  .home-why {
    margin-bottom: 60px;
  }
}

.home-why__title {
  margin-bottom: 36px;
}

@media (max-width: 767px) {
  .home-why__row {
    row-gap: 30px;
  }
}

@media (max-width: 767px) {
  .why-card {
    display: flex;
    align-items: center;
    -moz-column-gap: 32px;
    column-gap: 32px;
  }
}

@media (max-width: 575px) {
  .why-card {
    align-items: flex-start;
  }
}

.why-card__image {
  height: 95px;
  margin-bottom: 28px;
}

@media (max-width: 1199px) {
  .why-card__image {
    height: 80px;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .why-card__image {
    margin: 0;
  }
}

@media (max-width: 575px) {
  .why-card__image {
    height: 50px;
  }
}

.why-card__image img {
  height: 100%;
  width: auto;
}

.why-card__title {
  font-size: 22px;
  margin-bottom: 40px;
}

@media (max-width: 1199px) {
  .why-card__title {
    font-size: 20px;
    margin-bottom: 24px;
  }
}

@media (max-width: 767px) {
  .why-card__title {
    margin-bottom: 10px;
  }
}

@media (max-width: 575px) {
  .why-card__title {
    margin-bottom: 12px;
    font-size: 14px;
  }
}

.why-card__desc {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
  max-width: 330px;
}

@media (max-width: 1199px) {
  .why-card__desc {
    font-size: 15px;
    max-width: 240px;
  }
}

@media (max-width: 767px) {
  .why-card__desc {
    max-width: 100%;
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .why-card__desc {
    font-size: 13px;
  }
}

.home-news {
  margin-bottom: 100px;
  overflow: hidden;
}

@media (max-width: 1199px) {
  .home-news {
    margin-bottom: 90px;
  }
}

@media (max-width: 991px) {
  .home-news {
    margin-bottom: 60px;
  }
}

.home-news__title {
  margin-bottom: 36px;
}

.home-news__slider .swiper-slide {
  display: flex;
  flex-direction: column;
  height: auto;
}

.home-contact {
  margin-bottom: 100px;
}

@media (max-width: 1199px) {
  .home-contact {
    margin-bottom: 90px;
  }
}

@media (max-width: 991px) {
  .home-contact {
    margin-bottom: 60px;
  }
}

.home-contact__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 40px;
}

@media (max-width: 575px) {
  .home-contact__header {
    flex-direction: column;
    row-gap: 24px;
    margin-bottom: 20px;
  }
}

@media (max-width: 575px) {
  .home-contact--contact .home-contact__header {
    margin-bottom: 24px;
  }
}

.home-contact__title {
  margin-bottom: 8px;
}

@media (max-width: 1199px) {
  .home-contact__title {
    margin-bottom: 10px;
  }
}

@media (max-width: 575px) {
  .home-contact__title {
    margin-bottom: 8px;
  }
}

.home-contact--contact .home-contact__title {
  margin-bottom: 40px;
}

@media (max-width: 1199px) {
  .home-contact--contact .home-contact__title {
    margin-bottom: 36px;
  }
}

@media (max-width: 991px) {
  .home-contact--contact .home-contact__title {
    margin-bottom: 24px;
  }
}

@media (max-width: 767px) {
  .home-contact--contact .home-contact__title {
    margin-bottom: 16px;
  }
}

@media (max-width: 575px) {
  .home-contact--contact .home-contact__title {
    margin-bottom: 12px;
  }
}

.home-contact__desc p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
}

@media (max-width: 1199px) {
  .home-contact__desc p {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .home-contact__desc p {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .home-contact__desc p {
    font-size: 13px;
  }
}

.home-contact__desc p:last-child {
  margin-bottom: 0;
}

.home-contact__socials {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  -moz-column-gap: 14px;
  column-gap: 14px;
}

@media (max-width: 991px) {
  .home-contact__socials {
    -moz-column-gap: 10px;
    column-gap: 10px;
  }
}

.home-contact__socials li {
  font-size: 0;
  line-height: 0;
}

.home-contact__socials li a {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 86px;
  height: 86px;
  border-radius: 50%;
}

@media (max-width: 1199px) {
  .home-contact__socials li a {
    width: 64px;
    height: 64px;
  }
}

.home-contact__socials li a svg {
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  fill: #ffffff;
  transition: 0.4s ease-in-out;
}

@media (max-width: 1199px) {
  .home-contact__socials li a svg {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
  }
}

.home-contact__socials li a:hover {
  background: #ffffff;
  border-color: #ffffff;
}

.home-contact__socials li a:hover svg {
  fill: #272925;
}

@media (max-width: 767px) {
  .home-contact__body {
    display: flex;
    flex-direction: column-reverse;
    row-gap: 40px;
  }
}

.home-contact__row {
  margin-bottom: 50px;
}

@media (max-width: 991px) {
  .home-contact__row {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .home-contact__row {
    margin-bottom: 0;
    row-gap: 24px;
  }
}

.home-contact__label {
  font-size: 14px;
  display: block;
  margin-bottom: 1em;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 767px) {
  .home-contact__label {
    margin-bottom: 12px;
  }
}

.home-contact__tel {
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
}

@media (max-width: 1199px) {
  .home-contact__tel {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .home-contact__tel {
    font-size: 26px;
  }
}

.home-contact__tel:hover {
  color: rgba(255, 255, 255, 0.5);
}

.home-contact__hours {
  font-size: 20px;
}

@media (max-width: 1199px) {
  .home-contact__hours {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .home-contact__hours {
    font-size: 20px;
  }
}

.home-contact__mail {
  font-size: 20px;
}

@media (max-width: 1199px) {
  .home-contact__mail {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .home-contact__mail {
    font-size: 20px;
    font-weight: 700;
  }
}

.home-contact__map {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  padding-top: 38.8888888889%;
}

@media (max-width: 991px) {
  .home-contact__map {
    padding-top: 360px;
  }
}

@media (max-width: 767px) {
  .home-contact__map {
    padding-top: 270px;
  }
}

.home-contact__map>* {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.septic-hero {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-bottom: 90px;
}

@media (max-width: 991px) {
  .septic-hero {
    margin-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .septic-hero {
    margin-bottom: 48px;
    background-position: 80% 0;
  }
}

.septic-hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(39, 41, 37, 0.75);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
}

.septic-hero__body {
  position: relative;
  z-index: 1;
  padding: 51px 0;
  min-height: 600px;
}

@media (max-width: 1199px) {
  .septic-hero__body {
    min-height: 1px;
    padding: 51px 0 90px;
  }
}

@media (max-width: 991px) {
  .septic-hero__body {
    padding: 40px 0 60px;
  }
}

@media (max-width: 767px) {
  .septic-hero__body {
    padding: 30px 0 48px;
  }
}

@media (max-width: 991px) {
  .septic-hero__row {
    row-gap: 40px;
  }
}

@media (max-width: 767px) {
  .septic-hero__row {
    row-gap: 30px;
  }
}

@media (max-width: 575px) {
  .septic-hero__row {
    row-gap: 20px;
  }
}

.septic-utp {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

@media (max-width: 991px) {
  .septic-utp {
    flex-direction: row;
  }
}

@media (max-width: 767px) {
  .septic-utp {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 575px) {
  .septic-utp {
    gap: 16px;
  }
}

.septic-utp__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 1199px) {
  .septic-utp__item {
    gap: 8px;
  }
}

@media (max-width: 575px) {
  .septic-utp__item {
    gap: 5px;
  }
}

.septic-utp__head {
  display: block;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
}

@media (max-width: 991px) {
  .septic-utp__head {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .septic-utp__head {
    font-size: 24px;
  }
}

@media (max-width: 575px) {
  .septic-utp__head {
    font-size: 20px;
  }
}

.septic-utp__head span {
  font-size: 24px;
}

@media (max-width: 991px) {
  .septic-utp__head span {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .septic-utp__head span {
    font-size: 20px;
  }
}

.septic-utp__text {
  line-height: 1.2;
  font-size: 14px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.septic {
  margin-bottom: 90px;
}

@media (max-width: 991px) {
  .septic {
    margin-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .septic {
    margin-bottom: 48px;
  }
}

.septic__title {
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .septic__title {
    margin-bottom: 30px;
  }
}

.septic__row {
  margin-bottom: 64px;
  row-gap: 30px;
}

@media (max-width: 767px) {
  .septic__row {
    row-gap: 16px;
    margin: 0 -8px;
  }

  .septic__row>* {
    padding: 0 8px;
  }
}

@media (max-width: 575px) {
  .septic__row {
    row-gap: 10px;
    margin: 0 -4px;
  }

  .septic__row>* {
    padding: 0 4px;
  }
}

.septic__row--mb {
  margin-bottom: 60px;
}

.septic__action {
  display: flex;
  justify-content: center;
}

.archive-brand {
  margin-bottom: 120px;
}

@media (max-width: 1199px) {
  .archive-brand {
    margin-bottom: 90px;
  }
}

@media (max-width: 991px) {
  .archive-brand {
    margin-bottom: 60px;
  }
}

.archive-brand__title {
  margin-bottom: 45px;
}

@media (max-width: 1199px) {
  .archive-brand__title {
    margin-bottom: 36px;
  }
}

@media (max-width: 575px) {
  .archive-brand__title {
    margin-bottom: 24px;
  }
}

.archive-brand__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  row-gap: 14px;
}

@media (max-width: 767px) {
  .archive-brand__list {
    margin: 0 -8px;
    row-gap: 12px;
  }

  .archive-brand__list>* {
    padding: 0 8px;
  }
}

@media (max-width: 575px) {
  .archive-brand__list {
    margin: 0 -4px;
    row-gap: 10px;
  }

  .archive-brand__list>* {
    padding: 0 4px;
  }
}

.archive-brand__item {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.text-content {
  margin-bottom: 100px;
}

@media (max-width: 1199px) {
  .text-content {
    margin-bottom: 90px;
  }
}

@media (max-width: 991px) {
  .text-content {
    margin-bottom: 60px;
  }
}

@media (max-width: 575px) {
  .text-content {
    margin-bottom: 48px;
  }
}

.text-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

@media (max-width: 991px) {
  .text-content p {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .text-content p {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .text-content p {
    font-size: 13px;
  }
}

.text-content * p {
  margin-bottom: 1.5em;
}

.text-content * p:last-child {
  margin-bottom: 0;
}

.text-content .wp-block-image {
  position: relative;
  width: 100%;
  padding-top: 36.8421052632%;
  margin-bottom: 40px;
}

@media (max-width: 991px) {
  .text-content .wp-block-image {
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .text-content .wp-block-image {
    margin-bottom: 20px;
    padding-top: 47.3684210526%;
  }
}

.text-content .wp-block-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}

.brand-hero {
  margin-bottom: 60px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(217, 217, 217, 0) 100%);
}

@media (max-width: 767px) {
  .brand-hero {
    margin-bottom: 48px;
  }
}

@media (max-width: 1199px) {
  .brand-hero__body {
    padding-bottom: 0;
  }
}

@media (max-width: 767px) {
  .brand-hero__row {
    flex-direction: column-reverse;
    row-gap: 0;
  }
}

.brand-hero__title {
  margin-bottom: 36px;
}

@media (max-width: 1199px) {
  .brand-hero__title {
    margin-bottom: 24px;
  }
}

@media (max-width: 767px) {
  .brand-hero__title {
    margin-bottom: 16px;
  }
}

.brand-hero__price {
  margin-bottom: 60px;
  color: #C8FF70;
}

@media (max-width: 1199px) {
  .brand-hero__price {
    margin-bottom: 36px;
  }
}

@media (max-width: 767px) {
  .brand-hero__price {
    margin-bottom: 24px;
    font-size: 28px;
  }
}

@media (max-width: 575px) {
  .brand-hero__price {
    font-size: 24px;
  }
}

.brand-hero__image {
  margin-bottom: 0;
  width: 100%;
}

@media (max-width: 991px) {
  .brand-hero__image {
    margin-top: 16px;
  }
}

@media (max-width: 767px) {
  .brand-hero__image {
    width: 50%;
    margin-bottom: 16px;
    margin-top: 0;
  }
}

@media (max-width: 575px) {
  .brand-hero__image {
    width: 100%;
    max-width: 375px;
    margin-bottom: 20px;
  }
}

.brand-hero__image img {
  width: 100%;
  border-radius: 6px;
}

.brand-hero__stock {
  margin-bottom: 50px;
  font-size: 12px;
  border-radius: 5px;
  padding: 8px 10px;
  color: rgba(39, 41, 37, 0.75);
  display: inline-block;
}

@media (max-width: 1199px) {
  .brand-hero__stock {
    margin-bottom: 40px;
  }
}

@media (max-width: 991px) {
  .brand-hero__stock {
    margin-bottom: 32px;
  }
}

@media (max-width: 767px) {
  .brand-hero__stock {
    margin-bottom: 24px;
  }
}

.brand-hero__stock--in {
  background: #C8FF70;
}

.brand-hero__stock--out {
  background: #B5B5B5;
}

.brand-hero__info {
  list-style: none;
  margin-top: 35px;
  padding-left: 0;
  margin-bottom: 0;
}

@media (max-width: 1199px) {
  .brand-hero__info {
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .brand-hero__info {
    margin-bottom: 24px;
  }
}

.brand-hero__info li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  -moz-column-gap: 0.5em;
  column-gap: 0.5em;
}

.brand-hero__info li:last-child {
  margin-bottom: 0;
}

.brand-hero__info li span {
  display: block;
  color: rgba(255, 255, 255, 0.5);
}

.brand-hero__info li p {
  margin-bottom: 0;
}

.brand-price {
  margin-top: 50px;
  border-radius: 12px;
  background: #2C2D2B;
  padding: 25px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1199px) {
  .brand-price {
    padding: 24px 30px;
  }
}

@media (max-width: 991px) {
  .brand-price {
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .brand-price {
    flex-direction: column;
    row-gap: 20px;
  }
}

@media (max-width: 575px) {
  .brand-price {
    align-items: flex-start;
    padding: 24px 28px;
    margin-top: 30px;
  }
}

.brand-price__icon {
  flex: 0 0 82px;
  width: 82px;
  height: 82px;
  background: #353833;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991px) {
  .brand-price__icon {
    display: none;
  }
}

.brand-price__icon svg {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  fill: #C8FF70;
}

.brand-price__type {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  -moz-column-gap: 24px;
  column-gap: 24px;
}

@media (max-width: 991px) {
  .brand-price__type {
    flex-direction: column;
    row-gap: 16px;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .brand-price__type {
    flex-direction: row;
    align-items: center;
  }
}

@media (max-width: 575px) {
  .brand-price__type {
    flex-direction: column;
    align-items: flex-start;
  }
}

.brand-price__type li label {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  -moz-column-gap: 6px;
  column-gap: 6px;
  font-size: 14px;
  cursor: pointer;
}

@media (max-width: 575px) {
  .brand-price__type li label {
    font-size: 13px;
  }
}

.brand-price__type li label span:last-child {
  transition: 0.4s ease-in-out;
}

.brand-price__type li label input:checked+.fake-check {
  border-color: #C8FF70;
}

.brand-price__type li label input:checked+.fake-check::before {
  opacity: 1;
}

.brand-price__type li label input:checked~span:last-child {
  color: #C8FF70;
}

.brand-price__price {
  font-size: 30px;
  color: #C8FF70;
  font-weight: 700;
}

@media (max-width: 767px) {
  .brand-price__price {
    font-size: 26px;
  }
}

@media (max-width: 575px) {
  .brand-price__price {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .brand-price__btn {
    width: 100%;
    max-width: 350px;
  }
}

.fake-check {
  display: block;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  transition: 0.4s ease-in-out;
  position: relative;
}

.fake-check::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: #C8FF70;
  opacity: 0;
  transition: 0.4s ease-in-out;
  border-radius: 50%;
}

.load-more__item {
  transition: opacity 0.5s, transform 0.5s;
}

.load-more__item.visually-hidden {
  opacity: 0;
  transform: translateY(-10px);
}

.load-more__item.visually-visible {
  opacity: 1;
  transform: translateY(0);
}

.load-more__btn-wrap {
  display: block;
  text-align: center;
}

.load-more__btn--mt {
  margin-top: 65px;
}

.header-top__search-wrap {
  display: flex;
  gap: 15px;
  align-items: center;
}

@media (min-width: 768px) {
  .header-top__search-wrap {
    gap: 45px;
  }
}

.header-top__search {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
}

.header-top__search svg {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  fill: #C8FF70;
  transition: 0.4s ease-in-out;
}

.header-top__search svg:hover {
  fill: #A2C240;
}