html.has-loader {
  pointer-events: none;
}

html:before,
html.has-loader:after {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 99999998;
}

html:before {
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.15s ease-in-out;
}

html.has-loader:before {
  opacity: 1;
  visibility: visible;
}

html.has-loader:after {
  width: 30px;
  height: 30px;
  margin: auto;
  border: 1px solid #333333;
  border-right-color: transparent;
  border-radius: 50%;
  z-index: 99999999;
  animation: rotate 1s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.c-red {
  color: #ca0000;
}

.new-site {
  font-size: 16px;
  line-height: 1.375;
  font-weight: normal;
  color: var(--color_4);
  background-color: var(--color_5);
}

:where(.new-site) h1,
.new-site-h1 {
  font-family: inherit;
  font-size: 36px;
  line-height: 1.375;
  font-weight: 600;
  margin: 0 0 8px;
  color: inherit;
}

@media (max-width: 767px) {
  :where(.new-site) h1,
  .new-site-h1 {
    font-size: 28px;
  }
}

:where(.new-site) h2,
.new-site h2,
.new-site-h2 {
  font-family: inherit;
  font-size: 24px;
  line-height: 1.375;
  font-weight: 600;
  margin: 0 0 8px;
  color: inherit;
}

:where(.new-site) h3,
.new-site h3,
.new-site-h3 {
  font-family: inherit;
  font-size: 18px;
  line-height: 1.375;
  font-weight: 600;
  margin: 0 0 8px;
  color: inherit;
}

.new-site-btn {
  display: inline-block;
  vertical-align: top;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  padding: 11px 39px;
  border-radius: 4px;
  border: 1px solid var(--color_4);
  background-color: rgba(255, 255, 255, 0.5);
  color: var(--color_4) !important;
  text-decoration: none !important;
  transition: 0.25s ease-in-out;
}

.new-site-btn:hover {
  background-color: var(--color_4);
  color: var(--color_5) !important;
}

.new-site-btn_light {
  background-color: transparent;
  border-color: var(--color_5);
  color: var(--color_5) !important;
}

.new-site-btn_light:hover {
  background-color: var(--color_5);
  color: var(--color_4) !important;
}

.new-site-btn_primary {
  background-color: var(--color_2);
  border-color: var(--color_2);
  color: var(--color_5) !important;
}

.new-site-btn_primary:hover {
  background-color: var(--color_5);
  border-color: var(--color_5);
  color: var(--color_4) !important;
}

.new-site-link {
  display: inline;
  vertical-align: baseline;
  padding: 0;
  border-radius: 0;
  border: none;
  background-color: transparent;
  font-size: 14px;
  font-weight: 600;
  color: var(--color_2) !important;
  text-decoration: underline !important;
  transition: color 0.25s ease-in-out !important;
}

.new-site-link:hover {
  color: var(--color_4) !important;
}

.new-site-form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  column-gap: 20px;
}

.new-site-form-group {
  margin-bottom: 20px;
}

.new-site-form-label {
  display: block;
  font: inherit;
  margin-bottom: 4px;
}

.new-site-form-control,
.new-site-form-select {
  display: block;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  width: 100%;
  height: 46px;
  font-size: 16px;
  line-height: 22px;
  padding: 11px 23px;
  border: 1px solid var(--color_7);
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.5);
  color: var(--color_4);
  transition: 0.25s ease-in-out;
  transition-property: border-color, color;
}

.new-site-form-control::placeholder {
  color: var(--color_3);
  opacity: 1;
}

.new-site-form-control:focus,
.new-site-form-select:focus {
  border-color: var(--color_3);
  outline: none;
}

.new-site-form-select {
  max-width: 100%;
  margin: 0;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.464 3 5.789 6.675a1.12 1.12 0 0 1-1.578 0L.537 3' stroke='%23333333' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 10px 10px;
}

.new-site-form-select::-ms-expand {
  display: none;
}

textarea.new-site-form-control {
  max-width: 100%;
  min-width: 100%;
  overflow: auto;
  height: 89px;
  resize: none;
}

.new-site-form-check {
  font-size: 14px;
  line-height: 19px;
  margin-bottom: 20px;
}

.new-site-form-check label {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  cursor: pointer;
  font-weight: normal;
}

.new-site-form-check input {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.new-site-form-check__btn {
  display: flex;
  align-items: center;
  position: relative;
  column-gap: 8px;
  cursor: pointer;
}

.new-site-form-check__icon {
  flex-shrink: 0;
  position: relative;
  width: 22px;
  height: 22px;
  border: 1px solid var(--color_7);
  border-radius: 4px;
}

.new-site-form-check input[type="checkbox"] ~ .new-site-form-check__btn .new-site-form-check__icon:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.15s ease-in-out;
  width: 12px;
  height: 7px;
  margin: 4px 0 0 4px;
  border-style: solid;
  border-color: #00b923;
  border-width: 0 0 2px 2px;
  opacity: 0;
  transform: rotate(-45deg);
}

.new-site-form-check input:checked ~ .new-site-form-check__btn .new-site-form-check__icon {
  border-color: var(--color_4);
}

.new-site-form-check input:checked ~ .new-site-form-check__btn .new-site-form-check__icon:before {
  opacity: 1;
}

.new-site-form-check__text {
  flex-grow: 1;
  min-width: 1px;
}

.callback-section {
  padding: var(--section-space) 0;
}

.callback-section__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(1px, 1fr));
  gap: 20px;
}

.callback-section__content {
  background-color: var(--color_6);
  border-radius: 8px;
  padding: var(--section-space) 40px;
}

.callback-section__header {
  margin-bottom: 40px;
}

.callback-section__header h2 {
  color: var(--color_2);
  margin-bottom: 16px;
}

.callback-section__content .new-site-btn {
  margin-top: 15px;
}

.callback-section__media img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

@media (max-width: 991px) {
  .callback-section__inner {
    grid-template-columns: repeat(1, minmax(1px, 1fr));
  }
}

@media (max-width: 767px) {
  .callback-section__content {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.new-site-section {
  margin: 0;
  padding: var(--section-space) 0;
}

.new-site-section_dark {
  background-color: var(--color_4);
  color: var(--color_5);
}

.new-site-section_light {
  background-color: var(--color_6);
}

.new-site-section-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  column-gap: 20px;
  row-gap: 10px;
  margin-bottom: var(--section-space-2);
}

.new-site-section-header h2 {
  margin: 0;
}

.new-site-section-header p {
  margin: 8px 0 0;
}

.new-site-section-header .new-site-link,
.new-site-section-header .new-site-btn {
  margin-left: auto;
}

.new-site-section-header .new-site-btn {
  align-self: center;
}

@media (max-width: 575px) {
  .new-site-section-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .new-site-section-header .new-site-link,
  .new-site-section-header .new-site-btn {
    margin: 0;
  }
}

.sidebar-nav {
  background: var(--color_6);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
}

.sidebar-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-nav li ul {
  background: var(--color_5);
  display: none;
}

.sidebar-nav li.is-open > ul {
  display: block;
}

.sidebar-nav li {
  margin: 0;
  text-indent: 0;
  position: relative;
}

.sidebar-nav li li {
  font-weight: normal;
}

.sidebar-nav li:before {
  display: none;
}

.sidebar-nav__sublist-btn {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 10px;
  width: 19px;
  height: 19px;
  color: var(--color_4);
}

.sidebar-nav__sublist-btn:hover,
.sidebar-nav li.is-open > a .sidebar-nav__sublist-btn {
  color: var(--color_2);
}

.sidebar-nav li.is-open > a .sidebar-nav__sublist-btn svg {
  transform: rotate(180deg);
}

.sidebar-nav__sublist-btn:before {
  content: "";
  position: absolute;
  inset: -10px;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 10px;
  padding: 14px 16px 13px;
  color: inherit !important;
  text-decoration: none;
  border-bottom: 1px solid var(--color_5);
}

.sidebar-nav > ul > li:last-child > a {
  border-bottom: none;
}

.sidebar-nav li li a {
  padding: 8px 24px 7px;
  border-bottom: 1px solid var(--color_7);
}

.sidebar-nav a.is-active,
.sidebar-nav li:hover > a,
.sidebar-nav li.is-open > a {
  color: var(--color_2) !important;
}

.sidebar-nav li li:hover > a,
.sidebar-nav li li a.is-active {
  background-color: var(--color_6);
}

.hero-section .sidebar-nav__sublist-btn {
  color: inherit !important;
  pointer-events: none;
}

.hero-section .sidebar-nav__sublist-btn svg {
  transform: rotate(270deg) !important;
}

.hero-section .sidebar-nav li ul {
  position: absolute;
  left: 100%;
  top: 0;
  width: 100%;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.15);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: 0.15s ease-in-out;
  transition-property: opacity, visibility;
}

.hero-section .sidebar-nav li:hover > ul {
  opacity: 1;
  visibility: visible;
}

.hero-section .sidebar-nav li li a {
  border-bottom: none;
}

.hero-section {
  margin: 20px 0 40px;
}

.hero-section__inner {
  display: grid;
  grid-template-columns: 260px minmax(1px, 1fr);
  gap: 20px;
}

.hero-section__aside {
}

.hero-section__main {
}

.new-site .swiper-wrapper {
  box-sizing: inherit;
}

.new-site .swiper-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  margin-top: 24px;
}

.new-site .swiper-footer:not(:has(button:not(.swiper-button-disabled))) {
  display: none;
}

@media (max-width: 575px) {
  .new-site .swiper-footer {
    justify-content: center;
  }
}

.new-site .swiper-button-prev,
.new-site .swiper-button-next {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color_4);
  color: var(--color_4);
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  padding: 10px;
  background: none;
  transition: 0.15s ease-in-out;
}

.new-site-section_dark .swiper-button-prev,
.new-site-section_dark .swiper-button-next {
  border-color: var(--color_5);
  color: var(--color_5);
}

.new-site .swiper-button-prev:hover,
.new-site .swiper-button-next:hover {
  border-color: var(--color_2);
  color: var(--color_2);
}

.new-site .swiper-button-prev:before,
.new-site .swiper-button-next:before {
  content: "";
  width: 10px;
  height: 10px;
  background: currentColor;
}

.new-site .swiper-button-prev:before {
  mask: url('data:image/svg+xml;charset=utf-8,<svg viewBox="0 0 10 10" fill="none" stroke="currentColor" xmlns="http://www.w3.org/2000/svg"><path d="M7 .536 3.325 4.211a1.12 1.12 0 0 0 0 1.578L7 9.464" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center / 100% 100%;
}

.new-site .swiper-button-next:before {
  mask: url('data:image/svg+xml;charset=utf-8,<svg viewBox="0 0 10 10" fill="none" stroke="currentColor" xmlns="http://www.w3.org/2000/svg"><path d="m3 .536 3.675 3.675a1.12 1.12 0 0 1 0 1.578L3 9.464" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center / 100% 100%;
}

.new-site .swiper-pagination {
  display: flex;
  align-items: baseline;
  justify-content: center;
  position: static;
}

.new-site .swiper-pagination-fraction {
  width: 108px;
  font-size: 18px;
  font-weight: 600;
}

.new-site .swiper-pagination-total {
  font-size: 14px;
  font-weight: normal;
}

@media (max-width: 767px) {
  .new-site .swiper-pagination-fraction {
    width: 80px;
  }
}

.hero-slider {
}

.hero-slider .swiper-container {
  border-radius: 8px;
}

.hero-slider img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.hero-slider .swiper-footer {
  justify-content: center;
}

@media (max-width: 991px) {
  .hero-section__inner {
    grid-template-columns: minmax(1px, 1fr);
  }

  .hero-section__aside {
    display: none;
  }
}

.tabs {
}

.tabs__nav {
  font-size: 14px;
  font-weight: normal;
  text-align: left;
  margin-bottom: 24px;
}

.tabs__nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 991px) {
  .tabs__nav {
    margin-left: -15px;
    margin-right: -15px;
    overflow: hidden;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .tabs__nav-list {
    display: inline-flex;
    vertical-align: top;
    flex-wrap: nowrap;
    padding: 0 15px;
  }
}

@media (max-width: 575px) {
  .tabs__nav {
    margin-left: -10px;
    margin-right: -10px;
  }

  .tabs__nav-list {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.tabs__nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  border-radius: 8px;
  background-color: var(--color_6);
  color: var(--color_4) !important;
  text-decoration: none;
}

.tabs__nav-btn:hover,
.tabs__nav-btn.is-active {
  background-color: var(--color_4);
  color: var(--color_5) !important;
}

.tabs__item:not(.is-active) {
  display: none;
}

.new-site-label {
  display: inline-flex;
  vertical-align: top;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 2px;
  color: var(--color_5);
  background: #ffc438;
}

.availability-label {
  display: inline-flex;
  vertical-align: middle;
  align-items: center;
  column-gap: 4px;
  font-size: 12px;
  font-weight: 600;
}

.availability-label:before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ccc;
}

.availability-label[data-status="available"]:before {
  background: #00be16;
}

.availability-label[data-status="orderable"]:before {
  background: #f5a623;
}

.variant-select {
  background-color: var(--color_6);
  border-color: var(--color_6) !important;
  padding-left: 11px;
  cursor: pointer;
}

.variant-select option {
  border-bottom: 1px solid var(--color_5);
  background: var(--color_6);
  padding: 8px 12px;
}

.variant-select option:hover,
.variant-select option:focus,
.variant-select option:checked {
  color: var(--color_2);
}

.variant-select,
.variant-select::picker(select) {
  appearance: base-select;
}

.variant-select::picker-icon {
  display: none;
}

.variant-select::picker(select) {
  border: none;
}

.variant-select option::checkmark {
  display: none;
}

.number-control {
  height: 46px;
  position: relative;
  border: 1px solid var(--color_7);
  border-radius: 4px;
}

.number-control__input {
  display: block;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  text-align: center;
  width: 100%;
  height: 100%;
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  color: inherit;
  transition: 0.25s ease-in-out;
}

.number-control__input:focus {
  outline: none;
}

.number-control__btn {
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 100%;
  font-size: 16px;
  color: inherit;
  padding: 0;
}

.number-control__btn:hover {
  color: var(--color_2);
}

.number-control__input:disabled ~ .number-control__btn {
  color: inherit;
  opacity: 0.25;
  cursor: not-allowed;
  pointer-events: none;
}

.number-control__btn._minus {
  left: 0;
}

.number-control__btn._plus {
  right: 0;
}

.item {
  background: var(--color_5);
  border: 1px solid var(--color_7);
  border-radius: 4px;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.item__link {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
}

.item__header {
  position: absolute;
  left: 8px;
  right: 8px;
  top: 8px;
  z-index: 1;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.item__labels {
  pointer-events: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.item__availability {
  pointer-events: auto;
}

.item__image {
  height: 200px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.item__image img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.item__main {
  flex-grow: 1;
  min-height: 1px;
  display: flex;
  flex-direction: column;
}

.item__content {
  flex-grow: 1;
  min-height: 1px;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  padding: 0 16px 24px;
}

.item__title {
  font-size: 22px;
  font-weight: normal;
  margin-bottom: auto;
}

.item__variant {
  min-height: 46px;
  display: flex;
  align-items: center;
}

.item .variant-select {
  position: relative;
  z-index: 3;
}

.item__price {
  font-size: 18px;
  font-weight: 600;
}

.item__footer {
  margin-top: auto;
  display: flex;
  border-top: 1px solid var(--color_7);
  position: relative;
  z-index: 3;
}

.item__footer > * {
  flex-basis: 0;
  flex-grow: 1;
  min-width: 1px;
  margin-top: -1px;
}

.item__quantity-field .number-control {
  height: 100%;
  border: none;
}

.item__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  vertical-align: top;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  padding: 0;
  height: 50px;
  border-radius: 0 0 3px 3px;
  border: none;
  background-color: var(--color_4);
  color: var(--color_5);
  white-space: nowrap;
  transition: 0.25s ease-in-out;
}

.item__btn:hover {
  background-color: var(--color_2);
}

.item__btn:disabled {
  background-color: var(--color_7);
  color: var(--color_3);
  cursor: not-allowed;
}

.item__btn-field:not(:first-child) .item__btn {
  border-bottom-left-radius: 0;
}

.item.in-cart .item__btn {
  background-color: var(--color_2);
}

.item.in-cart .item__btn > span {
  display: none;
}

.item.in-cart .item__btn:before {
  content: attr(data-incart);
}

@media (max-width: 575px) {
  .item .availability-label {
    font-size: 10px;
  }

  .item__image {
    height: 160px;
  }

  .item__content {
    row-gap: 8px;
    padding: 0 8px 16px;
  }

  .item__title {
    font-size: 14px;
  }

  .item__variant {
    font-size: 12px;
    min-height: 34px;
  }

  .item .variant-select {
    font-size: 12px;
    padding: 5px 24px 5px 8px;
    height: 34px;
    background-position: right 8px center;
  }

  .item__price {
    font-size: 14px;
  }

  .item__btn {
    font-size: 12px;
    height: 40px;
  }

  .item .number-control__input {
    font-size: 14px;
  }

  .item .number-control__btn {
    width: 28px;
    font-size: 12px;
  }
}

.catalog-slider .swiper-slide {
  height: auto;
  display: flex;
}

.categories {
}

.categories__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(1px, 1fr));
  grid-template-rows: repeat(2, minmax(1px, 1fr));
  border: 1px solid var(--color_7);
  background: var(--color_6);
  border-radius: 8px;
  overflow: hidden;
}

.categories__item {
  border: 1px solid var(--color_7);
  border-width: 0 1px 1px 0;
  margin: 0 -1px -1px 0;
  display: flex;
}

.category-banner {
  display: flex;
  width: 100%;
}

.category-banner a {
  display: block;
  width: 100%;
}

.category-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-item {
  width: 100%;
  display: flex;
}

.category-item__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  padding: 23px;
  color: inherit !important;
  text-decoration: none;
}

.category-item__title {
  font-size: 18px;
  font-weight: 600;
  transition: color 0.15s ease-in-out;
}

.category-item__title:hover {
  color: var(--color_2);
}

.category-item__image {
  flex-grow: 1;
  min-height: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-item__image img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.category-item__footer {
  font-size: 14px;
}

.category-item__more-link {
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid;
  color: var(--color_2);
  transition: 0.15s ease-in-out;
}

.category-item__more-link:hover {
  color: var(--color_4);
}

.categories__item:last-child {
  background-color: var(--color_4);
  color: var(--color_5);
}

.categories__item:last-child .category-item__more-link:hover {
  color: inherit;
}

@media (max-width: 1199px) {
  .category-item__content {
    padding: 15px;
  }

  .category-item__title {
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .categories__list {
    grid-template-columns: repeat(3, minmax(1px, 1fr));
    grid-template-rows: auto;
  }
}

@media (max-width: 767px) {
  .categories__list {
    grid-template-columns: repeat(2, minmax(1px, 1fr));
  }
}

@media (max-width: 575px) {
  .category-item__content {
    row-gap: 0;
  }
}

.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 19px;
  background: var(--color_6);
  border-radius: 8px;
  aspect-ratio: 1;
}

.brand-item img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.partners-section {
  overflow: hidden;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.partners-section .swiper-container {
  overflow: visible;
}

.partners-slider .swiper-slide {
  width: auto;
}

.partner-item img {
  filter: grayscale(1) invert(1);
  transition: filter 0.15s ease-in-out;
}

.partner-item img:hover {
  filter: none;
}

.youtube-item {
  display: block;
  position: relative;
}

.youtube-item__image {
}

.youtube-item__image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  opacity: 0.6;
  transition: opacity 0.15s ease-in-out;
}

.youtube-item__play-btn {
  --size: 62px;
  --bg: #ff4d39;
  --wave-color: 255, 77, 57;
  --duration: 1.8s;

  position: absolute;
  left: 50%;
  top: 50%;
  margin: calc(-0.5 * var(--size));
  width: var(--size);
  height: var(--size);
  border: none;
  padding: 0;
  background: var(--bg);
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.15s ease-in-out;
}

.youtube-item__play-btn:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -12px 0 0 -8px;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent #ffffff;
}

.youtube-item__play-btn > span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(var(--size) * 1);
  height: calc(var(--size) * 1);
  transform: translate(-50%, -50%) scale(0.6);
  border-radius: 50%;
  background: rgba(var(--wave-color), 0);
  box-shadow: 0 0 0 2px rgba(var(--wave-color), 0.75) inset;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  animation: ripple var(--duration) ease-out infinite;
}

.youtube-item__play-btn > span:nth-child(1) {
  animation-delay: 0s;
}

.youtube-item__play-btn > span:nth-child(2) {
  animation-delay: calc(var(--duration) / 3);
}

.youtube-item__play-btn > span:nth-child(3) {
  animation-delay: calc(var(--duration) / 1.5);
}

@keyframes ripple {
  0% {
    transform: translate(-50%, -50%) scale(0.6);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.2);
    opacity: 0;
  }
}

.youtube-item:hover .youtube-item__image img {
  opacity: 1;
}

.youtube-item:hover .youtube-item__play-btn {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 991px) {
  .swiper-slide-active .youtube-item__image img {
    opacity: 1;
  }

  .swiper-slide-active .youtube-item__play-btn {
    opacity: 1;
    visibility: visible;
  }
}

.instagram-section .new-site-section-header {
  align-items: center;
}

.instagram-section .new-site-section-header img {
  margin: -8px 0;
  position: relative;
  top: -3px;
}

.instagram-group {
  display: grid;
  grid-template-columns: 340fr 570fr 458fr;
  gap: 20px;
}

.instagram-group__item {
  position: relative;
}

.instagram-group__item:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.instagram-group__item:nth-child(1):before {
  padding-top: calc(480 * 100% / 340);
}

.instagram-group__item:nth-child(2):before {
  padding-top: calc(480 * 100% / 570);
}

.instagram-group__item:nth-child(3):before {
  padding-top: calc(231 * 100% / 458);
}

.instagram-group__item:nth-child(4):before {
  padding-top: calc(231 * 100% / 458);
}

.instagram-group__item img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

@media (max-width: 767px) {
  .instagram-group {
    gap: 10px;
  }
}

@media (min-width: 576px) {
  .instagram-group__item:nth-child(1),
  .instagram-group__item:nth-child(2) {
    grid-row: span 2;
  }
}

@media (max-width: 575px) {
  .instagram-group {
    grid-template-columns: 340fr 570fr;
  }

  .instagram-group__item:nth-child(3),
  .instagram-group__item:nth-child(4) {
    grid-column: span 2;
  }
}

.blog-item {
}

.blog-item__link {
  display: block;
  color: inherit !important;
  text-decoration: none;
}

.blog-item__image {
  position: relative;
  margin-bottom: 8px;
}

.blog-item__image:before {
  content: "";
  display: block;
  padding-top: calc(248 * 100% / 337);
}

.blog-item__image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.blog-item__content {
  display: flex;
  flex-direction: column;
  row-gap: 4px;
  padding: 0 8px;
}

.blog-item__date {
  font-size: 14px;
  color: var(--color_3);
}

.blog-item__title {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  transition: color 0.15s ease-in-out;
}

.blog-item__link:hover .blog-item__title {
  color: var(--color_2);
}

@media (max-width: 575px) {
  .blog-item__content {
    padding: 0;
  }

  .blog-item__date {
    font-size: 12px;
  }

  .blog-item__title {
    font-size: 14px;
  }
}

.testimonials-slider .swiper-slide {
  height: auto;
  display: flex;
}

.testimonial-item {
  border: 1px solid var(--color_7);
  border-radius: 8px;
  padding: 19px;
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}

.testimonial-item__header {
  display: flex;
  align-items: flex-start;
  column-gap: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--color_7);
}

.testimonial-item__image {
  flex-shrink: 0;
  width: 60px;
}

.testimonial-item__image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.testimonial-item__header-content {
  flex-grow: 1;
  min-width: 1px;
  display: flex;
  flex-direction: column;
  row-gap: 4px;
}

.testimonial-item__name {
  font-size: 16px;
  font-weight: 600;
}

.testimonial-item__date-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 5px;
}

.testimonial-item__rating {
  display: flex;
  column-gap: 3px;
}

.testimonial-item__rating > span {
  display: block;
  width: 16px;
  height: 16px;
  background: url("../images/star-fill.svg") no-repeat center / cover;
}

.testimonial-item__date {
  font-size: 14px;
  color: var(--color_3);
}

.testimonial-item__content {
  font-size: 14px;
}

.about-grid {
  display: grid;
  column-gap: 20px;
  row-gap: 40px;
  grid-template-columns: repeat(3, minmax(1px, 1fr));
}

.about-grid__item {
  position: relative;
  padding-left: 60px;
  padding-right: 20px;
}

.about-grid__item-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
}

.about-grid__item-icon img {
  display: block;
  width: 100%;
  height: auto;
}

.about-grid__item-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.about-grid__item-text {
  font-size: 14px;
}

@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: repeat(2, minmax(1px, 1fr));
  }

  .about-grid__item {
    padding-right: 0;
  }
}

@media (max-width: 575px) {
  .about-grid {
    grid-template-columns: repeat(1, minmax(1px, 1fr));
  }
}

.video-card {
}

.video-card__head {
  position: relative;
}

.video-card__head:before {
  content: "";
  display: block;
  padding-top: calc(540 * 100% / 960);
}

.video-card__head img,
.video-card__head video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.video-card__body {
  margin-top: 16px;
}

.video-card__title {
  font-size: 16px;
  font-weight: 600;
}

@media (min-width: 768px) {
  .system-videos-section .new-site-section-header {
    padding-right: 200px;
  }

  .system-videos-slider {
    position: relative;
  }

  .system-videos-slider .swiper-footer {
    position: absolute;
    right: 0;
    bottom: 100%;
    margin: 0 0 36px 0;
  }
}

@media (max-width: 767px) {
  .video-card__body {
    margin-top: 8px;
  }

  .video-card__title {
    font-size: 14px;
  }
}

.system-variants-section .new-site-section-header {
  margin-bottom: 8px;
}

.system-variants-groups {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}

.system-variants-group__header {
  margin-bottom: 24px;
}

.system-variants-group__header h3 {
  color: var(--color_2);
  margin-bottom: 0;
}

.system-variants-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.system-variant-item {
  flex: 0 0 auto;
  width: 160px;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  border: 1px solid var(--color_7);
  border-radius: 4px;
  padding: 7px;
  text-align: center;
  font-size: 14px;
  color: inherit !important;
  text-decoration: none;
  transition: 0.15s ease-in-out;
}

.system-variant-item:hover {
  border-color: var(--color_2);
  color: var(--color_2) !important;
}

.system-variant-item__image {
  position: relative;
}

.system-variant-item__image:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.system-variant-item__image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

@media (max-width: 767px) {
  .system-variants-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(135px, 1fr));
    gap: 10px;
  }

  .system-variant-item {
    width: auto;
  }
}

@media (max-width: 575px) {
  .system-variant-item {
    font-size: 12px;
  }
}

.gallery-section .new-site-section-header {
  max-width: 700px;
}

.gallery-slider .swiper-slide {
  height: auto;
}

.gallery-slider .swiper-slide,
.gallery-item,
.gallery-item a {
  display: flex;
  width: 100%;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.technology-item {
}

.technology-item__image {
  position: relative;
}

.technology-item__image:before {
  content: "";
  display: block;
  padding-top: calc(280 * 100% / 456);
}

.technology-item__image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.technology-item__content {
  padding: 16px 8px 0;
  font-size: 14px;
}

.technology-item__content h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.technology-item__content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.technology-item__content p,
.technology-item__content li {
  margin-bottom: 8px;
}

.technology-item__content li {
  position: relative;
  padding-left: 12px;
}

.technology-item__content li:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 1px;
  position: absolute;
  left: 0;
  top: 7px;
  transform: rotate(45deg);
  background: var(--color_2);
}

.system-slider {
  margin: 0;
  position: relative;
}

.system-slider__main {
}

.system-slider__item {
  height: 728px;
  position: relative;
  background: var(--color_4);
  color: var(--color_5);
}

.system-slider__item-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.system-slider__item-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.system-slider__item-image:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
}

.system-slider__item .container {
  height: 100%;
}

.system-slider__item-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 300px;
}

.system-slider__item-content {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.system-slider__item-title {
  font-size: 36px;
  font-weight: 600;
  margin: 0 0 24px;
}

.system-slider__item-text {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 16px;
}

.system-slider__item-price {
  font-size: 24px;
  font-weight: 900;
}

.system-slider__inner {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

.system-slider__inner .container {
  height: 100%;
}

.system-slider__aside {
  height: 100%;
  width: 265px;
  display: flex;
  align-items: center;
}

.system-slider__thumbs {
  pointer-events: auto;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: var(--color_5);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}

.system-slider__thumbs-arrows {
}

.system-slider__thumbs-list {
  height: 388px;
}

.system-slider__thumbs-list .swiper-container {
  height: 100%;
}

.system-slider__thumbs-item {
  border-bottom: 1px solid;
  padding-bottom: 15px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.system-slider__thumbs-item-image {
  order: 1;
  flex-shrink: 0;
  width: 80px;
  height: 66px;
  position: relative;
}

.system-slider__thumbs-item-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.system-slider__thumbs-item-content {
  flex-grow: 1;
  min-width: 1px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.system-slider__thumbs-item-title {
  font-size: 16px;
  font-weight: 600;
}

.system-slider__thumbs-item-price {
  font-size: 16px;
  font-weight: 900;
}

.swiper-slide-thumb-active .system-slider__thumbs-item {
  border-color: var(--color_2);
}

.swiper-slide-thumb-active .system-slider__thumbs-item-image:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border: 1px solid var(--color_2);
  box-shadow: 0 0 0 2px var(--color_4) inset;
}

.system-slider__thumbs-footer {
}

.system-slider__thumbs-btn {
  width: 100%;
  font-size: 14px;
  text-align: center;
  padding: 6px 0;
}

@media (min-width: 768px) {
  .system-slider__thumbs-arrows .swiper-footer {
    margin: 0;
    column-gap: 24px;
    justify-content: flex-start;
  }

  .system-slider__thumbs-arrows .swiper-pagination {
    display: none !important;
  }

  .system-slider__thumbs-arrows .swiper-button-prev,
  .system-slider__thumbs-arrows .swiper-button-next {
    width: 28px;
    height: 28px;
    padding: 9px;
    border-color: var(--color_5);
    color: var(--color_5);
  }
}

@media (max-width: 991px) {
  .system-slider__item-inner {
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .system-slider__item {
    height: 320px;
  }

  .system-slider__item-inner {
    padding: 0;
  }

  .system-slider__item-title {
    font-size: 24px;
    margin: 0 0 8px;
  }

  .system-slider__item-text {
    font-size: 16px;
    margin: 0 0 8px;
  }

  .system-slider__item-price {
    font-size: 16px;
  }

  .system-slider__inner {
    position: static;
  }

  .system-slider__aside {
    width: auto;
    display: block;
  }

  .system-slider__thumbs {
    background: none;
    color: inherit;
    border-radius: 0;
    padding: 0;
    display: block;
  }

  .system-slider__thumbs-arrows .swiper-footer {
    justify-content: center;
  }

  .system-slider__thumbs-list {
    display: none;
  }

  .system-slider__thumbs-footer {
    margin-top: 24px;
  }

  .system-slider__thumbs-footer .system-slider__thumbs-btn {
    background-color: var(--color_2) !important;
    border-color: var(--color_2) !important;
    color: var(--color_5) !important;
  }
}