@font-face {
  font-family: 'Gilroy';
  src: url("fonts/Gilroy-Regular.eot");
  src: local("Gilroy Regular"), local("Gilroy-Regular"), url("fonts/Gilroy-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/Gilroy-Regular.woff2") format("woff2"), url("fonts/Gilroy-Regular.woff") format("woff"), url("fonts/Gilroy-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'Gilroy';
  src: url("fonts/Gilroy-Medium.eot");
  src: local("Gilroy Medium"), local("Gilroy-Medium"), url("fonts/Gilroy-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/Gilroy-Medium.woff2") format("woff2"), url("fonts/Gilroy-Medium.woff") format("woff"), url("fonts/Gilroy-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal; }
@font-face {
  font-family: 'Gilroy';
  src: url("fonts/Gilroy-Semibold.eot");
  src: local("Gilroy Semibold"), local("Gilroy-Semibold"), url("fonts/Gilroy-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/Gilroy-Semibold.woff2") format("woff2"), url("fonts/Gilroy-Semibold.woff") format("woff"), url("fonts/Gilroy-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal; }
@font-face {
  font-family: 'Gilroy';
  src: url("fonts/Gilroy-Bold.eot");
  src: local("Gilroy Bold"), local("Gilroy-Bold"), url("fonts/Gilroy-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/Gilroy-Bold.woff2") format("woff2"), url("fonts/Gilroy-Bold.woff") format("woff"), url("fonts/Gilroy-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal; }
:root {
  font-size: 20px; }

ul, li {
  margin: 0;
  padding: 0;
  display: block; }

a {
  transition: .3s all;
  outline: none;
  text-decoration: none; }
  a:hover {
    text-decoration: none; }

button {
  transition: .6s all;
  border: none;
  outline: none;
  background: none;
  padding: 0; }

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

input {
  outline: none;
  border-radius: 0;
  background: transparent;
  color: #fff;
  padding: 0 1.2rem;
  background: #202027;
  border: none;
  font-weight: 700;
  font-size: .8rem; }
  input::placeholder {
    color: rgba(255, 255, 255, 0.5); }
  input.error {
    color: red !important;
    border-color: red !important; }

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0; }

input[type=number] {
  -moz-appearance: textfield; }

html {
  scroll-behavior: smooth; }

.customSelect {
  position: relative;
  z-index: auto;
  font-size: 0.8rem;
  font-weight: 700; }
  .customSelect__option {
    padding: 0 1rem;
    height: 3.3rem;
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    border-radius: 0; }
  .customSelect__option--value {
    height: 3.3rem;
    width: 100%;
    padding: 0 1.2rem;
    padding-right: 2.1rem !important;
    display: flex;
    align-items: center;
    white-space: normal;
    line-height: 1.1;
    border: none !important;
    font-size: 0.8rem;
    color: #fff;
    background: #202027; }
    .customSelect__option--value::after {
      background-image: url(../img/icons/chevron-down.svg);
      width: .55rem;
      height: .4rem;
      right: 1rem; }
    .customSelect__option--value:hover, .customSelect__option--value:focus {
      background: #111; }
  .customSelect--active .customSelect__option--value:hover, .customSelect--active .customSelect__option--value:focus {
    background: #111; }
  .customSelect--active .customSelect__option--value {
    border-radius: 0; }
  .customSelect__dropdown {
    border-radius: 0 !important;
    background: #202027;
    border: 1px solid #322F2D;
    z-index: 4;
    padding: .5rem 0;
    font-size: 0.9rem; }
    .customSelect__dropdown .customSelect__option {
      border-radius: 0;
      height: 2.2rem;
      padding: 0 1.2rem;
      color: #fff; }
      .customSelect__dropdown .customSelect__option--selected {
        pointer-events: none;
        font-weight: 500; }
      .customSelect__dropdown .customSelect__option:hover {
        color: #fff;
        background: #B38F5F; }

body {
  font-family: 'Gilroy', sans-serif;
  font-size: 0.8rem;
  color: #fff;
  background: #15151B; }

::-webkit-scrollbar {
  width: .5rem;
  height: 0.5rem; }

::-webkit-scrollbar-track {
  background: #ddd; }

::-webkit-scrollbar-thumb {
  background: #15151B;
  border: 1px solid #ddd; }

.lazy {
  opacity: 0; }

.disabled {
  pointer-events: none; }

.container {
  padding: 0 5rem;
  width: 100%;
  margin: 0 auto;
  max-width: 77.5rem; }

.btn {
  height: 3rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(30px);
  font-size: 0.85rem;
  color: #fff;
  padding-right: 1.5rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 2rem; }
  .btn::after {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    content: '';
    background: rgba(255, 255, 255, 0.2);
    transition: .6s all;
    z-index: -1;
    transform: translateY(100%); }
  .btn:hover::after {
    transform: none; }
  .btn:hover img {
    transform: translateX(0.25rem); }
  .btn img {
    width: 1.3rem;
    position: absolute;
    right: 1rem;
    transition: .6s all; }

.arrows {
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-left: -5.5rem;
  width: calc(100% + 11rem); }
  .arrows span {
    background: rgba(255, 255, 255, 0.2);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: .6s all;
    cursor: pointer;
    user-select: none;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    pointer-events: auto; }
    .arrows span:hover {
      background: rgba(225, 187, 138, 0.45); }
    .arrows span img {
      width: 100%; }

.section-title {
  font-weight: 400;
  letter-spacing: 0.01em;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 2rem; }

.slider-wrap {
  position: relative; }
  .slider-wrap::after {
    position: absolute;
    right: -1rem;
    width: 3rem;
    height: 100%;
    background: linear-gradient(to right, rgba(21, 21, 27, 0) 0%, #15151b 70%);
    content: '';
    top: 0;
    z-index: 2;
    pointer-events: none; }

.page-head {
  padding-top: 7rem; }
  .page-head__card {
    position: relative;
    height: 27rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3.8rem; }
  .page-head__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1;
    letter-spacing: 0.02em; }
  .page-head__text {
    font-size: 0.9rem;
    letter-spacing: 0.01em; }
  .page-head__img {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    z-index: -1; }
    .page-head__img img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover; }

.pagination {
  display: flex;
  margin-top: 2.5rem;
  justify-content: center;
  gap: .5rem; }
  .pagination .page-item {
    width: 2.5rem;
    height: 2.5rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #fff; }
    .pagination .page-item.active .page-link {
      pointer-events: none;
      background: #B38F5F; }
    .pagination .page-item.disabled {
      pointer-events: none;
      opacity: .7; }
  .pagination .page-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    box-shadow: 0 0.2rem 0.2rem rgba(0, 0, 0, 0.25);
    background: #212127;
    color: #fff; }
    .pagination .page-link:hover {
      background: #B38F5F; }
    .pagination .page-link svg {
      width: 1rem;
      height: 1rem; }

@keyframes turbineSpin {
  0% {
    transform: rotate(0deg); }
  70% {
    transform: rotate(1000deg); }
  85% {
    transform: rotate(1080deg); }
  100% {
    transform: rotate(1440deg); } }
@keyframes pulse-btn {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5); }
  70% {
    box-shadow: 0 0 0 1rem rgba(255, 121, 63, 0); }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 121, 63, 0); } }
.preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #15151B url(../img/preloader/bg.png) bottom right no-repeat;
  background-size: 55vw;
  display: flex;
  justify-content: center;
  align-items: center; }
  .preloader-logo {
    display: flex;
    gap: .55rem;
    height: 3.7rem; }
    .preloader-logo__ico {
      height: 100%; }
      .preloader-logo__ico img {
        height: 100%;
        display: block;
        animation: turbineSpin 12s linear infinite; }
    .preloader-logo__text {
      height: 100%; }
      .preloader-logo__text img {
        height: 100%;
        display: block; }

.search {
  padding: 7.5rem 0; }
  .search-form {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%; }
    .search-form input {
      height: 3.3rem;
      font-size: 0.8rem;
      width: 100%;
      padding-right: 3.3rem; }
    .search-form button {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      transition: .6s all;
      cursor: pointer;
      user-select: none;
      height: 3.3rem;
      width: 3.3rem;
      color: #B38F5F;
      position: absolute;
      z-index: 2;
      right: 0; }
      .search-form button svg {
        width: 1.25rem;
        height: 1.25rem; }
      .search-form button:hover {
        color: #F2694D; }
  .search-head {
    max-width: 44.5rem;
    margin: 0 auto 5rem; }
  .search .product-empty {
    justify-content: center; }

.tel-popup {
  position: fixed;
  z-index: 4;
  right: 3rem;
  bottom: 5rem;
  background: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: .6s all;
  cursor: pointer;
  user-select: none;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  color: #B38F5F;
  animation: pulse-btn 2s infinite; }
  .tel-popup span {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 1.5rem 0 rgba(30, 77, 127, 0.33);
    border-radius: 50%; }
  .tel-popup:hover {
    color: #fff;
    background: #B38F5F; }
  .tel-popup svg {
    width: 1.4rem;
    height: 1.4rem; }

.feedback {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 8;
  background: rgba(0, 0, 0, 0.6);
  display: none; }
  .feedback-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 2rem;
    border-bottom: 0.65rem solid #B38F5F;
    background: #15151B;
    width: 22rem;
    color: #fff; }
  .feedback__close {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -3.5rem;
    width: 2.5rem;
    border-radius: 50%;
    height: 2.5rem;
    color: #fff;
    background: #B38F5F;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: .6s all;
    cursor: pointer;
    user-select: none;
    z-index: 3; }
    .feedback__close:hover {
      background: #C4A680; }
    .feedback__close svg {
      width: .5rem;
      height: .5rem; }
  .feedback__title {
    margin-bottom: .5rem;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 400; }
  .feedback .section-text {
    text-align: center;
    line-height: 1.5; }
  .feedback-form {
    margin: 1.5rem 0 0.8rem; }
    .feedback-form input {
      width: 100%;
      height: 3rem;
      margin-bottom: 0.5rem; }
    .feedback-form .btn {
      height: 3rem;
      width: 100%;
      background: #B38F5F; }
  .feedback__agree {
    font-size: 0.8rem;
    text-align: center;
    max-width: 13rem;
    margin: 0 auto;
    font-weight: 400; }
  .feedback-done {
    display: none; }
    .feedback-done .feedback__text {
      margin-bottom: 1rem;
      padding: 0 1rem; }
  .feedback__img {
    margin: 2.5rem 0 2rem;
    text-align: center; }
    .feedback__img img {
      display: inline-block;
      width: 6.5rem; }

.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 7;
  background: rgba(0, 0, 0, 0.8);
  display: none; }
  .menu-content {
    width: 50vw;
    background: #15151B;
    height: 100%;
    padding: 4rem;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: flex-start;
    transform: translateX(-100%);
    transition: .8s all;
    transition-delay: .5s;
    cursor: default; }
  .menu__close {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    gap: .3rem; }
    .menu__close img {
      width: 1rem; }
  .menu-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    width: 100%; }
  .menu-search {
    width: 18rem;
    margin-top: -0.25rem; }
    .menu-search .search-form input {
      height: 2.6rem;
      padding-right: 2.6rem; }
    .menu-search .search-form button {
      width: 2.6rem;
      height: 2.6rem; }
  .menu__list li {
    margin-bottom: 1.3rem; }
    .menu__list li a {
      color: #fff;
      font-size: 1.7rem;
      text-transform: uppercase;
      border-bottom: .1rem solid transparent;
      font-weight: 500; }
      .menu__list li a:hover {
        border-color: #fff; }
    .menu__list li:last-child {
      margin-bottom: 0; }
  .menu__lang {
    display: none; }
  .menu-social {
    display: flex;
    margin-top: 2rem;
    gap: 1rem; }
    .menu-social a {
      display: inline-flex;
      align-items: center;
      color: #fff;
      gap: .2rem; }
      .menu-social a svg {
        color: #F2694D; }
      .menu-social a:hover {
        color: #F2694D; }
  .menu.show .menu-content {
    transform: none; }

.header {
  padding: 0.8rem 3rem;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 5; }
  .header-mobile {
    display: none; }
  .header .container {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 1s all;
    clip-path: inset(0px 0px 0px 0px);
    max-width: none; }
  .header-wrap {
    display: flex;
    align-items: center;
    gap: 2.5rem; }
  .header-search {
    height: 1.5rem;
    width: 2.5rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #F2694D;
    margin-right: -.5rem; }
    .header-search svg {
      width: 1.25rem;
      height: 1.25rem; }
    .header-search:hover {
      color: #fff; }
  .header__logo {
    margin-right: 2rem;
    width: 11rem;
    transition: .5s all;
    transition-delay: .2s;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }
    .header__logo img {
      width: 100%;
      display: block; }
    .header__logo.active {
      opacity: 0;
      visibility: hidden; }
  .header-lang {
    display: flex;
    align-items: center;
    gap: .45rem;
    cursor: pointer;
    padding-bottom: 10rem;
    margin-bottom: -10rem;
    font-size: 0.65rem; }
    .header-lang div {
      display: flex;
      align-items: center;
      gap: .5rem; }
      .header-lang div img {
        width: .4rem;
        transition: .6s all; }
    .header-lang.active div img {
      transform: rotate(180deg); }
  .header-dropdown {
    position: absolute;
    display: none;
    width: 3rem;
    right: calc(41px + 22.5rem);
    margin-top: -1rem;
    padding-left: 1rem;
    font-size: 0.65rem; }
    .header-dropdown li {
      margin-bottom: .5rem;
      margin-top: .5rem; }
    .header-dropdown a {
      color: #fff; }
  .header-phones {
    display: flex;
    gap: 1.7rem; }
    .header-phones a {
      color: #fff;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      font-size: .8rem; }
      .header-phones a svg {
        width: 0.95rem;
        height: auto; }
      .header-phones a:hover {
        color: #F2694D; }
  .header__btn {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 41px;
    gap: 8px 11px;
    cursor: pointer; }
    .header__btn span {
      height: 3px;
      border-radius: 3px;
      width: 15px;
      background: #fff;
      display: block;
      transition: .6s all; }
      .header__btn span:nth-child(3) {
        width: 20px; }
      .header__btn span:nth-child(2), .header__btn span:nth-child(4) {
        opacity: .7; }
    .header__btn:hover span:nth-child(1), .header__btn:hover span:nth-child(2), .header__btn.active span:nth-child(1), .header__btn.active span:nth-child(2) {
      transform: translateY(11px); }
    .header__btn:hover span:nth-child(4), .header__btn:hover span:nth-child(5), .header__btn.active span:nth-child(4), .header__btn.active span:nth-child(5) {
      transform: translateY(-11px); }
  .header.scrolled {
    pointer-events: none; }
    .header.scrolled .header__btn {
      pointer-events: auto; }
    .header.scrolled .container {
      background: #010101;
      clip-path: inset(0px calc(100% - 2rem - 41px) 0px 0px); }
  .header.active {
    pointer-events: auto; }
    .header.active .container {
      clip-path: inset(0px 0px 0px 0px); }

.main {
  position: relative;
  min-height: 100vh; }
  .main-arrows {
    z-index: 2;
    padding: 0 4.5rem;
    margin: 0;
    width: 100%; }
  .main-item {
    height: 100vh;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center; }
    .main-item__img {
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      position: absolute;
      z-index: -1; }
      .main-item__img::after {
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        position: absolute;
        content: '';
        background: linear-gradient(180deg, #15151b 0%, rgba(21, 21, 27, 0) 30%), linear-gradient(0deg, #15151b 0%, rgba(21, 21, 27, 0) 25%), rgba(21, 21, 27, 0.3); }
      .main-item__img img, .main-item__img video {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover; }
        .main-item__img img.mob, .main-item__img video.mob {
          display: none; }
    .main-item__title {
      font-size: 3.3rem;
      font-weight: 700;
      line-height: 0.9;
      margin-bottom: 1.25rem;
      letter-spacing: 0.02em; }
    .main-item__text {
      font-size: 1.2rem;
      letter-spacing: 0.01em;
      margin-bottom: 4rem; }
    .main-item__btn {
      height: 3.5rem;
      width: 13.3rem;
      background: #B38F5F; }
      .main-item__btn img {
        width: 1.5rem !important; }
  .main .owl-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 3rem;
    z-index: 2;
    display: flex;
    gap: .75rem; }
    .main .owl-dots .owl-dot {
      border: 1px solid transparent;
      width: 0.8rem;
      height: 0.8rem;
      border-radius: 50%;
      padding: 0.2rem !important;
      display: inline-flex; }
      .main .owl-dots .owl-dot span {
        border-radius: 50%;
        background: #fff;
        display: inline-flex;
        width: 100%;
        height: 100%; }
      .main .owl-dots .owl-dot.active {
        border-color: #fff; }

.categories {
  padding-top: 6rem; }
  .categories .section-title {
    margin-bottom: 1.7rem; }
  .categories-list {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem; }
  .categories-item {
    width: calc(25% - .45rem);
    height: 13rem;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    transition: .6s all; }
    .categories-item:nth-child(1), .categories-item:nth-child(2), .categories-item:nth-child(3), .categories-item:nth-child(8), .categories-item:nth-child(9), .categories-item:nth-child(10) {
      width: calc(33.3333% - .4rem);
      height: 17.5rem; }
    .categories-item__btn {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 0.65rem;
      border-radius: 0; }
    .categories-item__img {
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      position: absolute;
      z-index: -1;
      overflow: hidden; }
      .categories-item__img::after {
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        position: absolute;
        content: '';
        background: linear-gradient(0deg, black 0%, rgba(0, 0, 0, 0) 25%), rgba(0, 0, 0, 0.45); }
      .categories-item__img img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        transition: .6s all;
        transform: scale(1.025); }
    .categories-item__name {
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: 0.02em;
      line-height: 0.9; }
    .categories-item__btn {
      padding-right: 3rem;
      padding-left: 1.25rem;
      font-size: 0.8rem;
      height: 2.5rem;
      opacity: 0;
      border-radius: 2rem; }
      .categories-item__btn img {
        width: 1.15rem; }
    .categories-item.active .categories-item__btn {
      opacity: 1; }
    .categories-item.active .categories-item__img img {
      transform: scale(1.075); }
    .categories-item.other {
      opacity: .5; }
      .categories-item.other .categories-item__img img {
        transform: scale(1); }
  .categories-banner {
    margin: 4.2rem 0;
    position: relative; }
    .categories-banner__img img {
      width: 100%;
      display: block; }
    .categories-banner__content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      width: 20rem; }
    .categories-banner__title {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 2.5rem; }
    .categories-banner__btn {
      width: 11.5rem; }
  .categories-brands {
    position: relative;
    margin-bottom: 4.2rem; }

.brands-main {
  height: 7.5rem;
  display: flex;
  align-items: center;
  background: #15151B;
  box-shadow: 0 0 1.5rem rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden; }
  .brands-main::before, .brands-main::after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 4.5rem;
    z-index: 2;
    pointer-events: none; }
  .brands-main::before {
    left: -1px;
    background: linear-gradient(to left, rgba(21, 21, 27, 0) 0%, #15151b 100%); }
  .brands-main::after {
    right: -1px;
    background: linear-gradient(to right, rgba(21, 21, 27, 0) 0%, #15151b 100%); }
.brands-item {
  position: relative;
  height: 3.5rem;
  width: 9rem;
  margin: 0 1.5rem; }
  .brands-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain; }
  .brands-item a {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute; }

.popular {
  position: relative;
  z-index: 2;
  padding-top: 8.5rem; }

.products-list {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem; }
.products-all {
  text-align: center;
  margin-top: 2.5rem; }
  .products-all .btn {
    width: 13.3rem;
    height: 3.5rem;
    background: #B38F5F; }
    .products-all .btn img {
      width: 1.5rem; }

.product {
  padding: 6.3rem 0 3.5rem;
  position: relative; }
  .product-item {
    width: calc(25% - .375rem);
    border: 1px solid #322F2D;
    transition: .6s all;
    padding: 1rem;
    position: relative; }
    .product-item:hover {
      background: rgba(255, 255, 255, 0.1); }
    .product-item__img {
      height: 13rem;
      padding: 0.5rem;
      margin-bottom: 1rem; }
      .product-item__img img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: contain; }
    .product-item__brand {
      margin-bottom: 0.5rem;
      font-size: 0.7rem;
      text-transform: uppercase; }
      .product-item__brand a {
        color: #AEAEAF;
        position: relative;
        z-index: 2; }
        .product-item__brand a:hover {
          color: #B38F5F; }
    .product-item__name {
      font-size: .9rem;
      line-height: 1.1rem;
      overflow: hidden;
      text-overflow: ellipsis;
      -webkit-box-orient: vertical;
      display: -webkit-box;
      -webkit-line-clamp: 4;
      height: 4.4rem;
      margin-bottom: 1rem; }
    .product-item__bot {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem; }
    .product-item__price {
      font-size: 1.1rem;
      font-weight: 700; }
      .product-item__price span {
        font-weight: 500;
        font-size: 0.9rem; }
    .product-item__arrow {
      flex-shrink: 0;
      width: 1.8rem;
      height: 1.8rem;
      background: #B38F5F;
      display: inline-flex;
      justify-content: center;
      align-items: center; }
      .product-item__arrow img {
        width: 1rem !important; }
    .product-item__link {
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      position: absolute;
      z-index: 1; }
  .product-banner {
    width: calc(50% - .25rem);
    height: 25rem;
    position: relative; }
    .product-banner__img {
      height: 100%; }
      .product-banner__img img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover; }
    .product-banner__btn {
      width: 11.5rem;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: 5rem; }
    .product-banner-mob {
      display: none; }
  .product__back {
    position: absolute;
    left: 3rem;
    box-shadow: 0 0.2rem 0.2rem rgba(0, 0, 0, 0.25);
    background: #212127;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 2.1rem;
    height: 2.1rem; }
    .product__back img {
      width: 100%; }
    .product__back:hover {
      background: #B38F5F; }
  .product-head {
    border: 1px solid #322F2D;
    padding: 1.25rem;
    display: flex;
    gap: 3.5rem;
    margin-bottom: 2.5rem; }
  .product-gallery {
    width: 52%;
    position: relative; }
    .product-gallery__img {
      width: 100%;
      height: 20rem;
      padding: 2rem;
      margin-bottom: 1rem;
      position: relative;
      overflow: hidden; }
      .product-gallery__img .main-img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: contain;
        object-fit: contain; }
      .product-gallery__img .zoom-img {
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        position: absolute;
        transform: scale(2);
        opacity: 0;
        pointer-events: none;
        object-fit: contain; }
    .product-gallery__thumbs {
      display: flex;
      gap: .6rem; }
      .product-gallery__thumbs li {
        width: calc(33.3333% - .4rem);
        padding: 1.2rem;
        height: 9rem;
        box-shadow: 0 0.2rem 0.2rem rgba(0, 0, 0, 0.25);
        background: #212127;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        transition: .6s all;
        cursor: pointer;
        user-select: none; }
        .product-gallery__thumbs li img {
          width: 100%;
          height: 100%;
          display: block;
          object-fit: contain; }
        .product-gallery__thumbs li:hover {
          background: #2d2725; }
        .product-gallery__thumbs li.active {
          background: #2d2725;
          pointer-events: none; }
  .product-wrap {
    width: 48%;
    padding-right: 1rem; }
  .product-main {
    margin-bottom: 1.5rem; }
  .product__brand {
    color: #AEAEAF;
    display: inline-block;
    margin-bottom: 1rem; }
    .product__brand:hover {
      color: #B38F5F; }
  .product__title {
    font-weight: 400;
    font-size: 1.15rem;
    margin-bottom: 2rem; }
    .product__title-config {
      margin-bottom: 1rem; }
  .product-config {
    margin-bottom: 1.5rem; }
    .product-config__title {
      font-size: 1rem;
      margin-bottom: .5rem;
      font-weight: 500; }
    .product-config__list {
      display: flex;
      flex-wrap: wrap;
      gap: .45rem; }
      .product-config__list li {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        transition: .6s all;
        cursor: pointer;
        user-select: none;
        width: 2.5rem;
        height: 2.5rem;
        box-shadow: 0 0.2rem 0.2rem rgba(0, 0, 0, 0.25);
        background: #212127; }
        .product-config__list li:hover {
          background: #B38F5F; }
        .product-config__list li.active {
          background: #B38F5F;
          pointer-events: none; }
  .product__price {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 2.5rem; }
    .product__price span {
      font-size: 1.1rem;
      font-weight: 500; }
    .product__price-config {
      margin-bottom: 1rem; }
  .product__btn {
    padding: 0 3rem;
    background: #B38F5F; }
  .product-info__title {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 700; }
  .product-info__list {
    width: 100%;
    font-size: .9rem; }
    .product-info__list li {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-bottom: 1rem;
      margin-bottom: 1rem;
      border-bottom: 1px solid #322F2D; }
      .product-info__list li:last-child {
        margin-bottom: 0; }
  .product-content__choose {
    display: flex;
    gap: .5rem;
    margin-bottom: 0.75rem; }
    .product-content__choose li {
      box-shadow: 0 0.2rem 0.2rem rgba(0, 0, 0, 0.25);
      background: #212127;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      transition: .6s all;
      cursor: pointer;
      user-select: none;
      width: 12rem;
      height: 2.8rem;
      border-radius: 2rem; }
      .product-content__choose li:hover {
        background: #B38F5F; }
      .product-content__choose li.active {
        background: #B38F5F;
        pointer-events: none; }
  .product-content__tabs {
    border: 1px solid #322F2D;
    padding: 3rem 3.5rem;
    line-height: 1.5; }
    .product-content__tabs ul {
      padding-left: 2rem; }
    .product-content__tabs li {
      display: list-item; }
    .product-content__tabs table {
      width: 100%; }
      .product-content__tabs table tr:nth-child(2n) {
        background: #212127; }
      .product-content__tabs table th {
        padding: 0.5rem 1rem;
        background: #B38F5F;
        font-weight: 400; }
      .product-content__tabs table td {
        padding: 0.65rem 1rem;
        width: 50%; }
        .product-content__tabs table td:nth-child(1) {
          padding-right: 3rem; }
        .product-content__tabs table td:nth-child(2) {
          text-align: center; }
  .product-content__tab {
    display: none;
    max-width: 45rem; }
    .product-content__tab:first-child {
      display: block; }
    .product-content__tab figure {
      margin: 0 !important; }
  .product-empty {
    font-size: 1.2rem;
    height: 10rem;
    display: flex;
    align-items: center; }

.calc {
  padding: 9rem 0;
  position: relative;
  z-index: auto; }
  .calc::before {
    position: absolute;
    top: -9rem;
    z-index: -1;
    left: 0;
    pointer-events: none;
    width: 100%;
    height: calc(100% + 18rem);
    background: url(../img/calc.png) center right no-repeat;
    background-size: contain;
    content: ''; }
  .calc-card {
    padding: 1.75rem;
    display: flex;
    gap: 1.25rem;
    background: #15151B;
    border: 1px solid #322F2D; }
  .calc-form {
    width: 67%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 1.25rem; }
  .calc-wrap {
    width: 33%;
    flex-direction: column;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center; }
  .calc-row {
    display: flex;
    align-items: flex-end;
    gap: 1.25rem; }
  .calc-item {
    width: calc(33.3333% - .83333rem); }
    .calc-item__name {
      font-weight: 400;
      margin-bottom: 0.5rem;
      letter-spacing: 0.01em;
      max-width: 12rem;
      font-size: 0.7em; }
    .calc-item__input input {
      width: 100%;
      height: 3.3rem; }
  .calc__logo {
    width: 13.7rem; }
    .calc__logo img {
      width: 100%;
      display: block; }
  .calc-result {
    text-align: center;
    padding: 1.3rem;
    background: #202027;
    width: 100%; }
    .calc-result__text {
      font-weight: 400;
      margin-bottom: 1.25rem; }
    .calc-result__number {
      font-weight: 700;
      font-size: 1.4rem;
      color: #B38F5F;
      margin-bottom: 1.25rem; }
    .calc-result__btns {
      display: flex;
      gap: .3rem;
      font-size: 0.75rem; }
      .calc-result__btns a {
        width: 50%;
        height: 2.5rem;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        border: 1px solid #B38F5F;
        color: #fff;
        border-radius: 2rem; }
        .calc-result__btns a:first-child {
          background: #B38F5F; }
          .calc-result__btns a:first-child:hover {
            background: transparent; }
        .calc-result__btns a:last-child {
          background: transparent; }
          .calc-result__btns a:last-child:hover {
            background: #B38F5F; }

.projects {
  position: relative;
  z-index: 1; }
  .projects-wrap {
    position: relative; }
  .projects .owl-stage {
    display: flex; }
  .projects-item {
    margin-right: 1rem;
    width: 21rem;
    background: #202027;
    height: 100%;
    border: 1px solid #322F2D; }
    .projects-item:hover .projects-item__img img {
      transform: scale(1.1); }
    .projects-item__head {
      width: 100%;
      height: 17rem;
      position: relative;
      display: flex;
      align-items: flex-end;
      padding: 1.5rem;
      color: #fff;
      font-size: 1.25rem;
      font-weight: 600;
      z-index: 1; }
    .projects-item__img {
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      position: absolute;
      z-index: -1;
      overflow: hidden; }
      .projects-item__img::after {
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        position: absolute;
        content: '';
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 2%, rgba(0, 0, 0, 0.29) 50%); }
      .projects-item__img img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        transition: .6s all; }
    .projects-item__wrap {
      padding: 1rem 1.25rem 3.5rem; }
    .projects-item__info {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
      margin-bottom: 1.25rem; }
      .projects-item__info div {
        display: flex;
        gap: .75rem;
        align-items: center; }
        .projects-item__info div img {
          width: 1.2rem !important; }
    .projects-item__list {
      margin-bottom: 1.5rem;
      font-size: .85rem; }
      .projects-item__list ul li {
        margin-bottom: 0.5rem;
        display: flex;
        gap: 1.2rem; }
        .projects-item__list ul li::before {
          content: '';
          width: 0.3rem;
          height: 0.3rem;
          background: #B38F5F;
          border-radius: 50%;
          flex-shrink: 0;
          margin-top: 0.3rem; }
        .projects-item__list ul li:last-child {
          margin-bottom: 0; }
    .projects-item__logo {
      height: 1.6rem;
      position: absolute;
      bottom: 1.4rem; }
      .projects-item__logo img {
        height: 100%;
        object-fit: contain;
        object-position: center left; }

.news {
  padding-top: 9rem; }
  .news-wrap {
    position: relative; }
  .news-item {
    width: 21rem;
    margin-right: 1rem;
    height: 21rem;
    position: relative;
    color: #fff;
    padding: 1.3rem 1.5rem 1.5rem;
    display: flex;
    justify-content: space-between;
    flex-direction: column; }
    .news-item:hover .news-item__img img {
      transform: scale(1.1); }
    .news-item__img {
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      position: absolute;
      z-index: -1;
      overflow: hidden; }
      .news-item__img::after {
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        position: absolute;
        content: '';
        background: rgba(0, 0, 0, 0.6); }
      .news-item__img img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        transition: .6s all; }
    .news-item__head {
      margin-right: -1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 400;
      font-size: 0.65rem; }
    .news-item__date {
      display: inline-flex;
      align-items: center;
      gap: .65rem; }
      .news-item__date::before {
        width: 0.3rem;
        height: 0.3rem;
        background: #B38F5F;
        border-radius: 50%;
        content: '';
        flex-shrink: 0; }
    .news-item__tag {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      height: 1.5rem;
      background: #B38F5F;
      padding: 0 0.75rem; }
    .news-item__main {
      height: 7.2rem; }
    .news-item__name {
      font-weight: 600;
      margin-bottom: 0.75rem;
      letter-spacing: 0.02em;
      font-size: 1.05rem;
      line-height: 1.1; }
    .news-item__text {
      line-height: 1rem;
      overflow: hidden;
      text-overflow: ellipsis;
      -webkit-box-orient: vertical;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      height: 2rem;
      margin-bottom: 1.25rem; }
    .news-item__more {
      border-bottom: 1px solid #fff;
      color: #fff;
      font-weight: 400; }
      .news-item__more:hover {
        border-color: transparent; }
  .news-page {
    padding: 3.75rem 0 5rem; }
  .news-list {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap; }
    .news-list .news-item {
      width: calc(33.3333% - .8rem);
      margin: 0; }
  .news-single {
    padding: 7rem 0; }
    .news-single .container {
      display: flex;
      gap: 2.5rem; }
    .news-single__main {
      width: calc(100% - 23.5rem); }
    .news-single__img {
      margin-bottom: 2rem; }
      .news-single__img img {
        display: block;
        width: 100%; }
    .news-single__title {
      font-size: 2rem;
      letter-spacing: 0.02em;
      margin-bottom: 1.5rem; }
    .news-single__content {
      line-height: 1.5;
      font-size: 0.85rem; }
      .news-single__content ul, .news-single__content ol {
        padding-left: 1.5rem; }
      .news-single__content li {
        display: list-item; }
      .news-single__content a {
        color: #B38F5F; }
        .news-single__content a:hover {
          color: #F2694D; }
  .news-side {
    width: 21rem;
    flex-shrink: 0; }
    .news-side__title {
      font-weight: 500;
      font-size: 1.2rem;
      margin-bottom: 1.2rem; }
    .news-side__list .news-item {
      width: 100%;
      margin-right: 0;
      margin-bottom: 1.5rem; }

.watched {
  padding: 8.5rem 0; }
  .watched-wrap {
    position: relative; }
  .watched .product-item {
    width: 100%; }
  .watched.watched-empty {
    padding-bottom: 0; }

.catalog {
  padding: 2.5rem 0 6.5rem; }
  .catalog-choose {
    overflow: hidden;
    margin-bottom: 2.5rem; }
    .catalog-choose__brands {
      margin-bottom: 0.75rem; }
    .catalog-choose__item {
      padding: 0 3rem;
      height: 3rem;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 0.2rem 0.2rem rgba(0, 0, 0, 0.25);
      background: #212127;
      color: #fff;
      margin-right: 0.75rem; }
      .catalog-choose__item:hover {
        background: #B38F5F; }
      .catalog-choose__item.active {
        background: #B38F5F;
        pointer-events: none; }
    .catalog-choose__first {
      min-width: 11.5rem;
      justify-content: flex-start;
      padding-left: 0.9rem;
      gap: 1.5rem;
      padding-right: .5rem; }
      .catalog-choose__first img {
        width: 1.2rem !important; }
    .catalog-choose .owl-stage-outer {
      overflow: visible; }

.about {
  padding-top: 4rem; }
  .about-top {
    text-align: center;
    margin-bottom: 7rem; }
  .about__text {
    max-width: 43.5rem;
    margin: 0 auto;
    font-size: .9rem;
    line-height: 1.4; }
    .about__text span {
      color: #B38F5F; }
  .about__img {
    margin: 3rem auto;
    width: 34rem;
    background: #15151B; }
    .about__img img {
      width: 100%;
      display: block; }
  .about-why .section-title {
    text-align: center;
    margin-bottom: 3rem; }
  .about-why__list {
    display: flex;
    gap: 3rem 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem; }
    .about-why__list li {
      width: calc(25% - 1.125rem);
      background: #212127;
      box-shadow: 0 0.2rem 0.2rem rgba(0, 0, 0, 0.25);
      position: relative;
      padding: 1.5rem 1rem;
      min-height: 8rem;
      text-align: center; }
      .about-why__list li span {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 2rem;
        height: 2rem;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        top: -1rem;
        background: #B38F5F;
        font-size: 1rem;
        font-weight: 700;
        border-radius: 50%; }
  .about-why__img {
    width: 100%; }
    .about-why__img img {
      width: 100%;
      display: block; }

.history {
  padding-top: 7.5rem; }
  .history .section-title {
    margin-bottom: 1rem; }
  .history__text {
    font-size: 0.9rem;
    line-height: 1.4;
    max-width: 43.5rem;
    margin-bottom: 2rem; }
    .history__text span {
      color: #B38F5F; }
    .history__text p {
      margin-bottom: 1.5rem; }
      .history__text p:last-child {
        margin-bottom: 0; }
  .history-wrap {
    overflow: hidden; }
  .history .owl-stage-outer {
    overflow: visible; }
  .history .owl-stage {
    position: relative; }
    .history .owl-stage::before {
      top: 14.75rem;
      left: 2.25rem;
      width: calc(100% - 27.5rem);
      height: .1rem;
      background: #fff;
      content: '';
      position: absolute; }
  .history-item {
    display: flex;
    gap: 1rem;
    width: 28rem;
    padding-right: 1rem;
    position: relative; }
    .history-item__img {
      width: 5rem;
      height: 5rem;
      flex-shrink: 0;
      position: relative;
      z-index: 2; }
      .history-item__img img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        border-radius: 50%; }
    .history-item__dot {
      width: 0.5rem;
      height: 0.5rem;
      border-radius: 50%;
      background: #fff;
      position: absolute;
      left: 2.25rem; }
      .history-item__dot::after {
        width: .1rem;
        height: 2.5rem;
        background: #fff;
        content: '';
        position: absolute;
        left: 0.2rem; }
    .history-item__count {
      font-size: 1;
      margin-bottom: 0.25rem; }
    .history-item__date {
      font-size: 2.25rem;
      font-weight: 700;
      color: #B38F5F;
      padding-bottom: 1rem;
      margin-bottom: 0.7rem;
      position: relative; }
      .history-item__date::after {
        left: 4rem;
        bottom: 0;
        height: 2px;
        width: 2.5rem;
        content: '';
        background: #fff;
        position: absolute; }
    .history-item__text {
      margin-left: 4rem;
      position: relative;
      font-size: .85rem;
      line-height: 1.1rem;
      overflow: hidden;
      text-overflow: ellipsis;
      -webkit-box-orient: vertical;
      display: -webkit-box;
      -webkit-line-clamp: 6;
      max-height: 6.6rem; }
  .history .owl-item:nth-child(2n) .history-item {
    padding-bottom: 2.5rem;
    align-items: flex-end;
    height: 15rem; }
    .history .owl-item:nth-child(2n) .history-item__dot {
      bottom: 0; }
      .history .owl-item:nth-child(2n) .history-item__dot::after {
        bottom: 0.2rem; }
  .history .owl-item:nth-child(2n+1) .history-item {
    padding-top: 2.5rem;
    align-items: flex-start;
    margin-top: 14.55rem; }
    .history .owl-item:nth-child(2n+1) .history-item__dot {
      top: 0; }
      .history .owl-item:nth-child(2n+1) .history-item__dot::after {
        top: 0.2rem; }

.team {
  padding-top: 5rem; }
  .team .section-title {
    margin-bottom: 1.5rem; }
  .team .arrows {
    margin-left: 0;
    position: static;
    transform: none;
    width: 100%;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 1.75rem; }
  .team-item {
    width: 21rem;
    height: 22rem;
    position: relative;
    z-index: 1;
    padding: 1.5rem;
    display: flex;
    align-items: flex-end;
    margin-right: 1.25rem; }
    .team-item__img {
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      position: absolute;
      z-index: -1; }
      .team-item__img::after {
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        position: absolute;
        content: '';
        background: linear-gradient(to top, rgba(17, 15, 15, 0.5) 0%, rgba(17, 15, 15, 0.3) 30%, rgba(17, 15, 15, 0.25) 55%, rgba(17, 15, 15, 0) 75%); }
      .team-item__img img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover; }
    .team-item__name {
      font-size: 1.05rem;
      margin-bottom: 0.65rem;
      font-weight: 500; }
    .team-item__pos {
      font-size: .9rem; }
  .team-wrap {
    overflow: hidden; }
  .team .owl-stage-outer {
    overflow: visible; }

.partners {
  padding-top: 5.5rem; }
  .partners .section-title {
    margin-bottom: 1.5rem; }
  .partners__text {
    font-size: 0.85rem;
    line-height: 1.5;
    max-width: 28rem;
    margin-bottom: 2rem; }
  .partners-main {
    position: relative;
    overflow: hidden; }
    .partners-main::before, .partners-main::after {
      content: '';
      position: absolute;
      top: 0;
      height: 100%;
      width: 3rem;
      z-index: 2;
      pointer-events: none; }
    .partners-main::before {
      left: -1px;
      background: linear-gradient(to left, rgba(21, 21, 27, 0) 0%, #15151b 100%); }
    .partners-main::after {
      right: -1px;
      background: linear-gradient(to right, rgba(21, 21, 27, 0) 0%, #15151b 100%); }
  .partners-slider__top {
    margin-bottom: 0.8rem; }
  .partners-item {
    margin: 0 0.4rem;
    width: 10.6rem;
    height: 8.9rem;
    background: #C9C9C9; }
    .partners-item img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: contain; }

.letter {
  padding: 6rem 0 7rem; }
  .letter .arrows {
    margin-left: 0;
    position: static;
    transform: none;
    width: 100%;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 1.75rem; }
  .letter .section-title {
    margin-bottom: 1.5rem; }
  .letter-item {
    width: 21.5rem;
    height: 28.5rem;
    margin-right: 1.5rem;
    cursor: pointer; }
    .letter-item img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover; }
  .letter-wrap {
    overflow: hidden; }
  .letter .owl-stage-outer {
    overflow: visible; }
  .letter-popup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 7;
    background: rgba(0, 0, 0, 0.6);
    cursor: pointer;
    display: none; }
    .letter-popup__img {
      height: calc(100vh - 6rem);
      cursor: default;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
      .letter-popup__img img {
        height: 100%;
        display: block; }

.contact {
  padding: 7rem 0 3.5rem; }
  .contact__map {
    width: 100%;
    height: 27rem; }
    .contact__map #contactMap {
      width: 100%;
      height: 100%; }

.downloads {
  padding: 2.5rem 0 5rem; }
  .downloads-list {
    display: flex;
    gap: 1.5rem; }
  .downloads-item {
    width: calc(25% - 1.125rem);
    position: relative; }
    .downloads-item:hover .downloads-item__btn {
      opacity: 1; }
    .downloads-item__wrap {
      position: relative;
      height: 21.25rem;
      margin-bottom: 1rem; }
    .downloads-item__img {
      width: 100%;
      height: 100%; }
      .downloads-item__img img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover; }
    .downloads-item__btn {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 0.6rem;
      height: 2.15rem;
      width: 8.2rem;
      background: #B38F5F;
      opacity: 0;
      transition: .6s all; }
      .downloads-item__btn img {
        width: 0.9rem; }
    .downloads-item__link {
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      position: absolute;
      z-index: 2; }
    .downloads-item__title {
      font-size: 1.05rem;
      font-weight: 600; }

.footer {
  padding: 3rem 0 2.5rem;
  border-top: 1px solid #322F2D; }
  .footer-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.7rem; }
  .footer .section-title {
    margin-bottom: 0; }
  .footer__logo {
    width: 11rem; }
    .footer__logo img {
      width: 100%;
      display: block; }
  .footer-block {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem; }
  .footer-item__title {
    margin-bottom: 0.75rem; }
  .footer-item__link {
    color: #fff;
    font-size: 1rem;
    font-weight: 700; }
    .footer-item__link:hover {
      color: #B38F5F; }
  .footer-item__address {
    font-size: 1rem;
    max-width: 18.3rem;
    font-weight: 700; }
  .footer-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem; }
  .footer-location {
    display: flex;
    align-items: flex-end;
    gap: 2rem; }
    .footer-location__btn {
      display: inline-flex;
      align-items: center;
      gap: .6rem;
      font-size: 1rem;
      color: #fff;
      font-weight: 700; }
      .footer-location__btn img {
        width: .85rem; }
      .footer-location__btn span {
        transition: .6s all;
        border-bottom: 1px solid #fff; }
      .footer-location__btn:hover span {
        border-color: transparent; }
  .footer-social {
    display: flex;
    gap: 1rem; }
    .footer-social li {
      display: inline-flex; }
    .footer-social a {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      border-radius: 50%;
      background: #fff;
      color: #15151B; }
      .footer-social a svg {
        width: 100%;
        height: auto; }
      .footer-social a:hover {
        color: #F2694D; }
  .footer-bot {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #919093;
    font-size: .85rem;
    text-transform: uppercase; }
  .footer-copy {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }
  .footer-worktime {
    display: flex;
    gap: 2.5rem;
    line-height: 1.2; }
  .footer-btns {
    display: flex;
    gap: 1.5rem; }
    .footer-btns a {
      background: #5B5B5F;
      border: 1px solid #fff;
      display: inline-flex;
      justify-content: center;
      align-items: center; }
      .footer-btns a:hover {
        background: #B38F5F; }
  .footer__download {
    height: 2rem;
    gap: 1.15rem;
    padding-left: 0.6rem;
    padding-right: 2rem;
    border-radius: 2rem;
    color: #fff;
    text-transform: none;
    font-size: 0.75rem; }
    .footer__download img {
      width: 1.1rem; }
  .footer__top {
    width: 2rem;
    height: 2rem;
    border-radius: 50%; }
    .footer__top img {
      width: 1rem; }

@media (max-width: 1700.98px) {
  :root {
    font-size: 19px; } }
@media (max-width: 1600.98px) {
  :root {
    font-size: 18px; } }
@media (max-width: 1500.98px) {
  :root {
    font-size: 17px; } }
@media (max-width: 1400.98px) {
  :root {
    font-size: 16px; } }
@media (max-width: 1300.98px) {
  :root {
    font-size: 15px; } }
@media (max-width: 1200.98px) {
  :root {
    font-size: 13px; } }
@media (max-width: 1100.98px) {
  :root {
    font-size: 12px; } }
@media (max-width: 1000.98px) {
  :root {
    font-size: 11px; } }
@media (max-width: 900.98px) {
  :root {
    font-size: 10px; } }
@media (max-width: 767.98px), (max-width: 1080px) and (orientation: portrait) {
  :root {
    font-size: 17px; }

  .container {
    padding: 0 3rem; }

  .arrows {
    display: none; }

  .preloader {
    background-size: 100vw; }

  .tel-popup {
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    bottom: 2.5rem; }
    .tel-popup svg {
      width: 1rem;
      height: 1rem; }

  .page-head {
    padding-top: 5rem; }
    .page-head__card {
      padding: 2.5rem; }
    .page-head__img img {
      object-position: left; }

  .search {
    padding-top: 6rem; }

  .menu-content {
    width: 80%; }
  .menu-flex {
    flex-direction: column-reverse;
    gap: 2.5rem; }
  .menu__lang {
    display: flex;
    font-size: 1rem;
    gap: 1rem; }
    .menu__lang a {
      color: #fff; }

  .header {
    padding: 0.3rem 1.5rem;
    transition: .6s all; }
    .header-lang {
      display: none; }
    .header .header-phones a:last-child {
      display: none; }
    .header.scrolled {
      pointer-events: auto;
      background: #15151B;
      border-bottom: 1px solid #322F2D; }
      .header.scrolled .container {
        background: transparent;
        clip-path: inset(0px 0px 0px 0); }

  .main {
    min-height: 80svh; }
    .main-item {
      height: 80svh; }
      .main-item__content {
        width: 100%;
        padding: 0 3rem; }

  .categories-item {
    width: calc(50% - .3rem);
    height: 17.5rem; }
    .categories-item:nth-child(1), .categories-item:nth-child(8) {
      width: 100%;
      height: 22rem; }
    .categories-item:nth-child(2), .categories-item:nth-child(3), .categories-item:nth-child(9), .categories-item:nth-child(10) {
      width: calc(50% - .3rem);
      height: 17.5rem; }
  .categories-banner__title {
    font-size: 1.5rem;
    margin-bottom: 1rem; }

  .popular .products-list .product-item {
    width: 100%; }

  .product {
    padding-top: 5rem; }
    .product-item {
      width: calc(50% - .25rem); }
    .product-banner {
      width: 100%;
      height: auto; }
      .product-banner-mob {
        display: block;
        margin-top: 2.5rem; }
    .product-head {
      border: none;
      flex-direction: column;
      padding: 0;
      gap: 1.5rem; }
    .product-config__list {
      justify-content: center; }
    .product-gallery {
      width: 100%;
      border: 1px solid #322F2D;
      padding: 1rem; }
    .product-wrap {
      width: 100%; }
    .product-main {
      margin: 0 auto 2rem;
      max-width: 20rem;
      text-align: center; }
    .product-content__tabs {
      padding: 2rem 1rem; }

  .calc-card {
    flex-direction: column; }
  .calc-form {
    width: 100%;
    gap: 1rem; }
  .calc-wrap {
    width: 100%;
    flex-direction: column-reverse;
    gap: 2rem; }
  .calc-row {
    gap: 1rem;
    flex-wrap: wrap; }
  .calc-item {
    width: calc(50% - .5rem); }

  .news-list .news-item {
    width: calc(50% - .6rem); }
  .news-single {
    padding-top: 5rem; }
    .news-single .container {
      flex-direction: column; }
    .news-single__main {
      width: 100%; }
  .news-side {
    width: 100%; }
    .news-side__list {
      display: flex;
      gap: 1rem; }
      .news-side__list .news-item {
        width: calc(50% - .5rem); }

  .about-top {
    margin-bottom: 5rem; }
  .about-why__list li {
    width: calc(50% - .75rem);
    min-height: 7rem; }

  .history {
    padding-top: 5rem; }

  .team .arrows, .letter .arrows {
    display: flex; }

  .letter-popup__img {
    height: auto;
    width: calc(100% - 6rem); }
    .letter-popup__img img {
      height: auto;
      width: 100%; }

  .contact {
    padding-top: 5rem; }

  .downloads-item {
    width: calc(50% - .75rem); }

  .footer-block {
    flex-wrap: wrap;
    margin-bottom: 2rem; }
  .footer-item {
    width: calc(50% - 1rem); }
  .footer-bot {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem; }
  .footer-btns {
    width: 100%;
    justify-content: space-between; }
  .footer-copy {
    position: static;
    transform: none; } }
@media (max-width: 767.98px) {
  :root {
    font-size: 16px; }

  body {
    font-size: 0.9rem; }

  .container {
    padding: 0 1rem; }

  input {
    padding: 0 1rem;
    font-size: 0.9rem; }

  .slider-wrap::after {
    display: none; }

  .btn {
    font-size: 0.9rem; }

  .customSelect__option {
    height: 2.8rem;
    font-size: 0.9rem; }
  .customSelect__option--value {
    height: 2.8rem;
    padding: 0 1rem;
    padding-right: 1.5rem !important;
    font-size: 0.9rem; }
    .customSelect__option--value::after {
      background-image: url(../img/icons/chevron-down.svg);
      width: .6rem;
      height: .45rem;
      right: .5rem; }
  .customSelect__dropdown .customSelect__option {
    height: 2rem;
    padding: 0 1rem;
    font-size: 0.9rem; }

  .section-title {
    font-size: 1.4rem;
    margin-bottom: 1.5rem; }

  .page-head {
    padding-top: 0;
    text-align: center; }
    .page-head .container {
      padding: 0; }
    .page-head__card {
      padding: 1rem 3rem;
      height: 30rem; }
    .page-head__img::after {
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      position: absolute;
      content: '';
      background: rgba(0, 0, 0, 0.35); }
    .page-head__img img {
      object-position: center; }

  .pagination {
    margin-top: 2.5rem;
    gap: .3rem; }
    .pagination .page-item {
      width: 2.2rem;
      height: 2.2rem;
      font-size: 0.9rem; }

  .preloader {
    background-size: 150vw; }
    .preloader-logo {
      height: 3rem;
      gap: .4rem; }

  .feedback-content {
    width: calc(100% - 2rem);
    padding: 2rem 1.5rem; }

  .search {
    padding: 5rem 0; }
    .search-head {
      margin-bottom: 2.5rem; }
    .search-form input {
      font-size: 0.9rem; }
    .search .product-item {
      padding: 1rem 0.75rem .75rem; }
      .search .product-item__img {
        height: 8rem; }
      .search .product-item__name {
        font-size: .75rem;
        line-height: 1.1rem;
        height: 4.4rem; }
      .search .product-item__price {
        font-size: .8rem; }
        .search .product-item__price span {
          font-size: 0.7rem; }
      .search .product-item__bot {
        gap: .5rem; }
      .search .product-item__arrow {
        width: 1.4rem;
        height: 1.4rem; }

  .menu-content {
    width: 100%;
    padding: 1.5rem 1rem; }
  .menu__list li a {
    font-size: 1.5rem; }

  .header {
    padding: 0; }
    .header .container {
      padding: 1rem; }
    .header__logo {
      width: 8rem; }
    .header-wrap {
      gap: 1rem; }
    .header-search {
      width: 1.5rem;
      height: 1.5rem;
      margin-right: 0;
      color: #fff; }
    .header__btn {
      width: 2.05rem;
      gap: .4rem .55rem; }
      .header__btn span {
        height: .15rem;
        border-radius: .15rem;
        width: .75rem; }
        .header__btn span:nth-child(3) {
          width: 1rem; }
      .header__btn:hover span:nth-child(1), .header__btn:hover span:nth-child(2), .header__btn.active span:nth-child(1), .header__btn.active span:nth-child(2) {
        transform: translateY(0.55rem); }
      .header__btn:hover span:nth-child(4), .header__btn:hover span:nth-child(5), .header__btn.active span:nth-child(4), .header__btn.active span:nth-child(5) {
        transform: translateY(-0.55rem); }
    .header .header-phones a svg {
      width: 1.2rem;
      height: 1.2rem; }
      .header .header-phones a svg path {
        fill: #fff; }
    .header .header-phones a span {
      display: none; }

  .main-item {
    background: #15151B; }
    .main-item__content {
      padding: 0 1rem; }
    .main-item__title {
      font-size: 2.2rem;
      margin-bottom: 1rem; }
    .main-item__text {
      font-size: 1.1rem;
      margin-bottom: 2rem; }
    .main-item__img img.desk, .main-item__img video.desk {
      display: none; }
    .main-item__img img.mob, .main-item__img video.mob {
      display: block; }
  .main .owl-dots {
    bottom: 2rem; }

  .categories-list {
    gap: 1rem; }
  .categories-item {
    width: calc(50% - .5rem);
    height: 12rem;
    padding: 1rem; }
    .categories-item:nth-child(2), .categories-item:nth-child(3), .categories-item:nth-child(8), .categories-item:nth-child(9), .categories-item:nth-child(10) {
      width: calc(50% - .5rem);
      height: 12rem;
      padding: 1rem; }
    .categories-item:nth-child(3n-2) {
      width: 100%;
      height: 17rem; }
  .categories-banner {
    margin: 2.5rem 0; }
    .categories-banner__title {
      font-size: 1.2rem;
      margin-bottom: 0;
      max-width: 13rem; }
    .categories-banner__content {
      transform: none;
      top: 0;
      left: 0;
      height: 100%;
      padding: 1rem;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      text-align: left; }
    .categories-banner__btn {
      width: 9rem; }
  .categories-brands {
    margin-bottom: 2.5rem; }

  .brands-main {
    padding: 0;
    height: 6rem; }
    .brands-main::before, .brands-main::after {
      width: 3rem; }
  .brands-item {
    margin: 0 0.25rem;
    height: 3rem;
    width: 6rem; }

  .popular {
    padding-top: 5rem; }
    .popular .products-list {
      margin-left: -1rem;
      width: calc(100% + 2rem); }
      .popular .products-list .owl-stage-outer {
        padding: 0 1rem; }
      .popular .products-list .product-item {
        width: 15rem; }

  .product {
    padding-top: 4rem; }
    .product-item__img {
      height: 10rem;
      padding: 0; }
    .product-item__brand {
      font-size: 0.8rem; }
    .product-item__name {
      font-size: 1rem;
      line-height: 1.2rem;
      -webkit-line-clamp: 4;
      height: 4.8rem; }
    .product-item__price {
      font-size: 1.1rem; }
      .product-item__price span {
        font-size: 0.9rem; }
    .product-banner__btn {
      bottom: 2.5rem; }
    .product__back {
      left: 1rem; }
    .product-gallery__img {
      height: 17rem;
      padding: 1rem; }
    .product-gallery__thumbs {
      gap: .45rem; }
      .product-gallery__thumbs li {
        padding: 1rem;
        width: calc(33.3333% - .3rem);
        height: 5.5rem; }
    .product__title {
      margin-bottom: 1rem; }
    .product__price {
      margin-bottom: 1rem; }
    .product-info__list li {
      padding-bottom: 1rem;
      margin-bottom: 1rem; }
    .product-content__choose li {
      width: calc(50% - .25rem); }
    .product-content__tabs table {
      font-size: 0.8rem; }
      .product-content__tabs table th {
        padding: 0.5rem; }
      .product-content__tabs table td {
        padding: .5rem; }
        .product-content__tabs table td:nth-child(1) {
          padding-right: .5rem; }

  .calc {
    padding: 5rem 0; }
    .calc::before {
      height: 27rem;
      top: 0;
      background-size: 40rem; }
    .calc-card {
      padding: 0; }
    .calc-form {
      padding: 1rem; }
    .calc-item__name {
      font-size: 0.8rem; }
    .calc-item__input input {
      height: 2.8rem; }
    .calc-wrap {
      padding-top: 0;
      gap: 2.5rem;
      padding-bottom: 2.5rem; }
    .calc__logo {
      width: 10rem; }
    .calc-result__number {
      font-size: 1.5rem; }
    .calc-result__btns {
      font-size: 0.8rem; }

  .projects-slider {
    margin-left: -1rem;
    width: calc(100% + 2rem); }
    .projects-slider .owl-stage-outer {
      padding: 0 1rem; }
  .projects-item {
    width: 19rem; }
    .projects-item__head {
      height: 15rem;
      padding: 1.5rem 1rem;
      font-size: 1.3rem; }
    .projects-item__wrap {
      padding: 1rem 1rem 3.5rem; }

  .news {
    padding-top: 5rem; }
    .news-slider {
      margin-left: -1rem;
      width: calc(100% + 2rem); }
      .news-slider .owl-stage-outer {
        padding: 0 1rem; }
    .news-item {
      width: 19rem;
      padding: 1.3rem 1rem 1.5rem; }
      .news-item__head {
        margin-right: -1rem;
        font-size: 0.75rem; }
    .news-page {
      padding: 2rem 0 4rem; }
    .news-list {
      gap: 1rem; }
      .news-list .news-item {
        width: 100%; }
    .news-single {
      padding: 4rem 0; }
      .news-single__title {
        font-size: 1.5rem; }
      .news-single__content {
        font-size: 0.9rem; }
    .news-side__list {
      flex-direction: column; }
      .news-side__list .news-item {
        width: 100%;
        margin-bottom: 0; }

  .watched {
    padding: 5rem 0; }
    .watched-slider {
      margin-left: -1rem;
      width: calc(100% + 2rem); }
      .watched-slider .owl-stage-outer {
        padding: 0 1rem; }
      .watched-slider .product-item {
        width: 15rem; }

  .catalog {
    padding: 2rem 0 4rem; }
    .catalog-choose {
      margin-bottom: 2rem; }
      .catalog-choose__brands {
        margin-bottom: 0.6rem; }
      .catalog-choose__item {
        padding: 0 2rem;
        height: 2.5rem;
        margin-right: 0.6rem;
        font-size: 0.85rem; }
      .catalog-choose__first {
        min-width: 11rem;
        padding-left: 0.75rem;
        gap: 1rem; }
        .catalog-choose__first img {
          width: 1rem !important; }
    .catalog .product-item {
      padding: 1rem 0.75rem .75rem; }
      .catalog .product-item__img {
        height: 8rem; }
      .catalog .product-item__name {
        font-size: .75rem;
        line-height: 1.1rem;
        height: 4.4rem; }
      .catalog .product-item__price {
        font-size: .8rem; }
        .catalog .product-item__price span {
          font-size: 0.7rem; }
      .catalog .product-item__bot {
        gap: .5rem; }
      .catalog .product-item__arrow {
        width: 1.4rem;
        height: 1.4rem; }

  .about {
    padding-top: 2rem; }
    .about__img {
      margin: 2rem 0;
      width: 100%; }
    .about-top {
      margin-bottom: 3rem; }
    .about-why__list {
      gap: 2rem 1rem;
      margin-bottom: 2rem; }
      .about-why__list li {
        width: calc(50% - .5rem);
        font-size: 0.65rem; }
    .about-why__img {
      margin-left: -1rem;
      width: calc(100% + 2rem);
      height: 15rem; }
      .about-why__img img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover; }

  .history {
    padding-top: 4rem; }
    .history .owl-stage::before {
      top: 13.75rem;
      width: calc(100% - 19.5rem); }
    .history-item {
      width: 20rem; }
      .history-item__date {
        font-size: 1.7rem; }
        .history-item__date::after {
          left: 0; }
      .history-item__text {
        margin-left: 0;
        font-size: .8rem;
        line-height: 1.1rem;
        max-height: 5.5rem;
        -webkit-line-clamp: 5; }
    .history .owl-item:nth-child(2n) .history-item {
      height: 14rem; }
    .history .owl-item:nth-child(2n+1) .history-item {
      margin-top: 13.55rem; }

  .team {
    padding-top: 4rem; }
    .team-item {
      padding: 1.5rem 1rem;
      margin-right: 1rem;
      width: 19rem;
      height: 20rem; }
    .team .arrows {
      margin-top: 1.5rem; }

  .partners {
    padding-top: 4rem; }
    .partners-main::before, .partners-main::after {
      width: 1.5rem; }
    .partners__text {
      font-size: 0.9rem; }
    .partners-slider__top {
      margin-bottom: 0.6rem; }
    .partners-item {
      width: 6rem;
      height: 5rem;
      margin: 0 0.3rem; }

  .letter {
    padding: 4rem 0 5rem; }
    .letter-item {
      width: 19rem;
      height: 25.2rem; }
    .letter .arrows {
      margin-top: 1.5rem; }
    .letter-popup__img {
      width: calc(100% - 2rem); }

  .contact {
    padding: 4rem 0 2rem; }

  .downloads {
    padding: 1.5rem 0 3.5rem; }
    .downloads-list {
      gap: 1rem; }
    .downloads-item {
      width: calc(50% - .5rem); }
      .downloads-item__wrap {
        height: calc(67.5vw - 2rem); }
      .downloads-item__btn {
        display: none; }
      .downloads-item__title {
        font-size: 0.9rem;
        font-weight: 500; }

  .footer-block {
    gap: 1.5rem; }
  .footer__logo {
    width: calc(50% - .75rem); }
  .footer-item {
    width: calc(50% - .75rem); }
    .footer-item__address {
      width: 100%;
      max-width: none; }
  .footer-wrap {
    gap: 2rem;
    flex-direction: column;
    align-items: flex-start; }
  .footer-location {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start; }
    .footer-location .footer-item {
      width: 100%; }
  .footer__download {
    font-size: 0.85rem; } }
@media (max-width: 389.98px) {
  :root {
    font-size: 15px; } }
@media (max-width: 375.98px) {
  :root {
    font-size: 14px; } }
@media (max-width: 345.98px) {
  :root {
    font-size: 13px; } }
@media (max-width: 330.98px) {
  :root {
    font-size: 12px; } }
@media (max-width: 320.98px) {
  :root {
    font-size: 11px; } }
@media (max-width: 300.98px) {
  :root {
    font-size: 10px; } }
@media (max-width: 1000px) and (orientation: landscape) {
  :root {
    font-size: 8.5px; } }
@media (max-width: 700px) and (orientation: landscape) {
  :root {
    font-size: 8px; } }

/*# sourceMappingURL=main.css.map */
