@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
html,
body,
ul,
ol,
li,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

html {
  line-height: 1.15;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
select,
textarea {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font-size: 100%;
  vertical-align: baseline;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

input[type=checkbox],
input[type=radio],
input[type=file] {
  vertical-align: middle;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}

html,
body {
  scroll-behavior: smooth;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  font-family: "Inter", sans-serif;
  background: #fff;
  color: #121212;
}

button {
  cursor: pointer;
}

.d-flex {
  display: flex;
}

.d-block {
  display: block;
}

.hidden {
  display: none;
}

.visible {
  visibility: visible;
}

.desktop {
  display: block !important;
}
@media (max-width: 991px) {
  .desktop {
    display: none !important;
  }
}

.mobile {
  display: none !important;
}
@media (max-width: 991px) {
  .mobile {
    display: block !important;
  }
}

.container {
  max-width: 1280px;
  margin: auto;
  padding: 0 40px;
}
@media (max-width: 991px) {
  .container {
    padding: 0 12px;
  }
}

.filter-group {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
@media (max-width: 991px) {
  .filter-group {
    flex-direction: column;
    align-items: flex-start;
  }
}
.filter-group label {
  display: block;
  color: #121212;
  font-size: 13px;
  font-weight: 600;
  line-height: normal;
  text-align: left;
}

.lang-switch {
  position: relative;
  padding-right: 16px;
}
.lang-switch__btn {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.lang-switch__current {
  font-size: 14px;
  font-weight: 600;
  text-align: right;
}
.lang-switch__arrow {
  transition: all 0.3s ease;
}
.lang-switch__list {
  position: absolute;
  top: 120%;
  left: 0;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #ccc;
  transition: all 0.3s ease;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
}
.lang-switch__list.open {
  opacity: 1;
  pointer-events: all;
}
.lang-switch__item {
  padding: 5px 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.lang-switch__item:hover {
  background: #eee;
}

.dropdown {
  position: relative;
  display: block;
}
.dropdown .dropdown-toggle {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  background-color: #fff;
  border: 1px solid #d0d0d0;
  height: 32px;
  border-radius: 4px;
  padding: 0 12px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
  text-align: left;
}
.dropdown .dropdown-toggle .arrow-icon {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.dropdown .dropdown-toggle::after {
  display: none;
}
.dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  min-width: 100%;
  width: 100%;
  background-color: #fff;
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  z-index: 1000;
}
.dropdown .dropdown-menu li {
  list-style: none;
}
.dropdown .dropdown-menu li a {
  display: block;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
  text-align: left;
}
.dropdown .dropdown-menu li a:hover {
  background-color: #d0d0d0;
}
.dropdown.open .dropdown-menu {
  display: block;
}
.dropdown.open .arrow-icon {
  transform: rotateX(180deg);
}

.breadcrumbs-wrap {
  padding: 36px 0;
  background: #fafafa;
}
@media (max-width: 991px) {
  .breadcrumbs-wrap {
    padding: 24px 0;
  }
}
.breadcrumbs-wrap.second {
  background: #fff;
}

.breadcrumbs {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 13px;
  margin-bottom: 33px;
}
@media (max-width: 991px) {
  .breadcrumbs {
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
}
.breadcrumbs.second {
  margin-bottom: 0;
}
.breadcrumbs__item:last-child {
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  text-align: left;
}
.breadcrumbs__item:not(:last-child) {
  position: relative;
  color: #7d7d7d;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  text-align: left;
  text-decoration-line: underline;
}
.breadcrumbs__item:not(:last-child)::before {
  content: "/";
  position: absolute;
  top: 0;
  right: -9px;
  display: block;
}
.breadcrumbs__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  text-align: left;
}
@media (max-width: 991px) {
  .breadcrumbs__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    text-align: left;
  }
}

.btn-primary {
  margin: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 281px;
  height: 66px;
  border-radius: 48px;
  background: #121212;
  color: #fff;
  border: 2px solid #121212;
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.btn-primary svg {
  width: 16px;
  height: 16px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  fill: #fff;
}
.btn-primary:hover {
  background-color: transparent;
  color: #121212;
}
.btn-primary:hover svg {
  fill: #121212;
}
@media (max-width: 991px) {
  .btn-primary {
    width: 100%;
    height: 60px;
  }
}

.btn-outline {
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 285px;
  height: 70px;
  border-radius: 48px;
  border: 2px solid #121212;
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.btn-outline:hover {
  background-color: #121212;
  color: #fff;
}
@media (max-width: 600px) {
  .btn-outline {
    width: 100%;
    height: 60px;
  }
}

.btn-accent {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 281px;
  height: 64px;
  border-radius: 48px;
  border: 2px solid #ff0000;
  background: #ff0000;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.btn-accent svg {
  fill: transparent;
  stroke: #fff;
  width: 20px;
  height: 20px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.btn-accent:hover {
  background-color: transparent;
  color: #ff0000;
}
.btn-accent:hover svg {
  fill: transparent;
  stroke: #ff0000;
}
@media (max-width: 600px) {
  .btn-accent {
    width: 100%;
    height: 60px;
  }
}

@media (max-width: 1024px) {
  .header {
    display: none;
  }
}
.header__top-wrap {
  padding: 12px 0;
  border-bottom: 1px solid #ececec;
}
.header__top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0;
}
.header__top-left {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
}
.header__top-nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 0 16px;
  border-left: 1px solid #ececec;
  border-right: 1px solid #ececec;
}
.header__top-nav--item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__top-city {
  padding-left: 16px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
}
.header__top-city--label {
  margin-right: 8px;
}
.header__top-city--value {
  color: #ff0000;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  text-align: left;
}
.header__top-right {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 0;
}
.header__top-auth {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  padding-right: 16px;
}
.header__top-auth--login {
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  text-align: left;
}
.header__top-auth--reg {
  color: #ff0000;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  text-align: left;
}
.header__top-notification {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  padding: 0 16px;
  border-left: 1px solid #ececec;
  border-right: 1px solid #ececec;
}
.header__top-notification--item {
  position: relative;
}
.header__top-notification--item span {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 13px;
  height: 13px;
  border-radius: 24px;
  background: #ff0000;
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  line-height: 10px;
  text-align: center;
}
.header__top-social {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  padding-left: 16px;
}
.header__top-social--item {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.header__top-social--item:hover {
  transform: scale(1.1);
}
.header__middle-wrap {
  padding: 12px 0;
}
.header__middle {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0;
}
.header__middle-logo {
  width: 118px;
  height: 96px;
  object-fit: cover;
}
.header__middle-search {
  position: relative;
  width: 292px;
  height: 48px;
}
.header__middle-search input {
  width: 100%;
  height: 100%;
  padding: 0 20px;
  border-radius: 48px;
  border: 1px solid rgba(125, 125, 125, 0.5);
}
.header__middle-search input:focus {
  border-color: #121212;
}
.header__middle-search input::placeholder {
  color: #7d7d7d;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  text-align: left;
}
.header__middle-search img {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.header__middle-number {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
}
.header__middle-number--top {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
}
.header__middle-number--top p {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  text-align: left;
  margin-right: 8px;
}
.header__middle-number--top ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.header__middle-number--middle {
  font-size: 26px;
  font-weight: 600;
  line-height: normal;
  text-align: left;
}
.header__middle-number--bottom {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  text-align: left;
  height: 20px;
}
.header__middle-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 250px;
  height: 48px;
  border-radius: 48px;
  background: #1a1c1e;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  text-align: center;
}
.header__middle-btn img {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.header__middle-btn:hover img {
  transform: scale(1.2);
}
.header__bottom-wrap {
  background: #121212;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: sticky;
  z-index: 11;
  top: 0;
  z-index: 1111;
}
@media (max-width: 1024px) {
  .header__bottom-wrap {
    display: none;
  }
}
.header__bottom {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.header__bottom-item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  padding: 0 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  text-align: left;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.header__bottom-item a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.header__bottom-item:hover {
  background-color: #ff0000;
}
.header__bottom-item:hover .header__bottom-submenu-wrap {
  opacity: 1;
  pointer-events: all;
}
.header__bottom-submenu-wrap {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  padding: 50px 0;
  background: rgba(26, 28, 30, 0.95);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.header__bottom-submenu {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0;
}
.header__bottom-submenu--title {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  text-align: left;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}
.header__bottom-submenu--list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 22px;
}
.header__bottom-submenu--item {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  line-height: normal;
  text-align: left;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.header__bottom-submenu--item:hover {
  color: #ff0000;
}

.header-mobile {
  display: none;
}
@media (max-width: 1024px) {
  .header-mobile {
    display: block;
    padding: 12px;
    background: #fff;
    box-shadow: 1px 2px 9px 0 rgba(18, 18, 18, 0.06);
  }
}

.header-mobile-top__row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0;
}
.header-mobile-top__logo {
  width: 54.083px;
  height: 44px;
  flex-shrink: 0;
  aspect-ratio: 59/48;
}
.header-mobile-top__nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.header-mobile-top__item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-mobile-top__item:nth-child(1) {
  padding-right: 16px;
}
.header-mobile-top__item:nth-child(2) {
  padding: 0 16px;
  border-right: 1px solid #ececec;
  border-left: 1px solid #ececec;
  border-radius: 4px;
}
.header-mobile-top__item:nth-child(3) {
  padding-left: 16px;
}
.header-mobile-top .search {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-mobile-top .location {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.header-mobile-top .location span {
  color: #ff0000;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  text-align: left;
}
.header-mobile-top .phone {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-mobile-top__burger {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-mobile-top__search-block {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  box-shadow: 1px 2px 9px 0 rgba(18, 18, 18, 0.06);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.header-mobile-top__search-block.open-search {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  opacity: 1;
  pointer-events: all;
}
.header-mobile-top__search {
  position: relative;
  top: 10px;
  width: 100%;
}
.header-mobile-top__search-input {
  width: 100%;
  width: 100%;
  height: 48px;
  border-radius: 30px;
  padding: 12px 24px;
  border: 1px solid #7d7d7d;
  background: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  text-align: left;
}
.header-mobile-top__search-input::placeholder {
  color: #7d7d7d;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  text-align: left;
}
.header-mobile-top__search-input:focus {
  border-color: #121212;
}
.header-mobile-top__search-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 24px;
}

.header-mobile-menu {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 111;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.header-mobile-menu.open-menu {
  opacity: 1;
  pointer-events: all;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.header-mobile-menu__top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  padding: 24px;
  border-radius: 14px;
}
.header-mobile-menu__close {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-mobile-menu__nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.header-mobile-menu__item {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  text-align: left;
}

.header-mobile-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 100;
  width: 100%;
}
.header-mobile-bottom__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.header-mobile-bottom__calc {
  position: absolute;
  bottom: 37px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  width: 52px;
  height: 52px;
  border-radius: 170px;
  padding: 5px 0;
  background: #fff;
}
.header-mobile-bottom__calc span {
  font-size: 10px;
  font-weight: 500;
  line-height: normal;
  text-align: center;
}
.header-mobile-bottom__nav {
  position: relative;
  bottom: 11px;
  z-index: 101;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0;
}
.header-mobile-bottom__wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}
.header-mobile-bottom__item {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 2px;
  width: 53px;
  height: 44px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  font-weight: 500;
  line-height: normal;
  text-align: center;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.header-mobile-bottom__item svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  stroke-opacity: 0.5;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.header-mobile-bottom__item:hover {
  color: #fff;
}
.header-mobile-bottom__item:hover svg {
  stroke-opacity: 1;
}

.hero-wrap {
  position: relative;
  width: 100%;
  height: 760px;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 991px) {
  .hero-wrap {
    height: 600px;
    background-position: bottom;
  }
}

.hero {
  padding-top: 204px;
  max-width: 593px;
}
@media (max-width: 991px) {
  .hero {
    padding-top: 200px;
    max-width: 450px;
  }
}
.hero__title {
  color: #fff;
  font-size: 65px;
  font-weight: 700;
  line-height: 75px;
  text-align: left;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .hero__title {
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    text-align: left;
    margin-bottom: 20px;
  }
}
.hero__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 285px;
  height: 70px;
  border-radius: 48px;
  border: 2px solid #fff;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.hero__btn:hover {
  background-color: #fff;
  color: #121212;
}
@media (max-width: 600px) {
  .hero__btn {
    width: 100%;
    height: 60px;
  }
}

.why-us {
  padding: 120px 0;
}
@media (max-width: 991px) {
  .why-us {
    padding: 60px 0;
  }
}
.why-us__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .why-us__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    text-align: center;
    margin-bottom: 30px;
  }
}
.why-us__list {
  row-gap: 55px;
}
@media (max-width: 991px) {
  .why-us__list {
    row-gap: 30px;
  }
}
.why-us__item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
}
.why-us__item img {
  margin-bottom: 22px;
}
.why-us__item p {
  padding: 0 25px;
  font-size: 17px;
  font-weight: 600;
  line-height: 23px;
  text-align: center;
}
@media (max-width: 991px) {
  .why-us__item p {
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
    text-align: center;
    padding: 0 12px;
  }
}
.why-us__item p > span {
  color: #ff0000;
}
.why-us__item::before {
  content: "";
  display: block;
  width: 1px;
  height: 50px;
  background: #e7e7e7;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.why-us__item:nth-child(5)::before, .why-us__item:nth-child(9)::before {
  content: none;
}
@media (max-width: 991px) {
  .why-us__item:nth-child(5)::before, .why-us__item:nth-child(9)::before {
    content: "";
  }
}
.why-us__item:nth-child(3)::before, .why-us__item:nth-child(6)::before, .why-us__item:nth-child(9)::before {
  content: "";
}
@media (max-width: 991px) {
  .why-us__item:nth-child(3)::before, .why-us__item:nth-child(6)::before, .why-us__item:nth-child(9)::before {
    content: none;
  }
}
@media (max-width: 768px) {
  .why-us__item:nth-child(3)::before, .why-us__item:nth-child(6)::before, .why-us__item:nth-child(9)::before {
    content: "";
  }
}
.why-us__item:nth-child(2)::before, .why-us__item:nth-child(4)::before, .why-us__item:nth-child(6)::before, .why-us__item:nth-child(8)::before, .why-us__item:nth-child(9)::before {
  content: none;
}
@media (max-width: 768px) {
  .why-us__item:nth-child(2)::before, .why-us__item:nth-child(4)::before, .why-us__item:nth-child(6)::before, .why-us__item:nth-child(8)::before, .why-us__item:nth-child(9)::before {
    content: "";
  }
}

.actions {
  padding: 120px 0;
  background: #fafafa;
}
@media (max-width: 991px) {
  .actions {
    padding: 60px 0;
  }
}
.actions__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .actions__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    text-align: center;
    margin-bottom: 30px;
  }
}
.actions__cards {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .actions__cards {
    gap: 20px;
  }
}
.actions__card-large {
  position: relative;
  width: 365px;
  height: 673px;
  border-radius: 15px;
  object-fit: cover;
  overflow: hidden;
}
@media (max-width: 767px) {
  .actions__card-large {
    width: 100%;
  }
}
.actions__card-large img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.actions__card-large .actions__card-info {
  padding: 36px 52px 0 20px;
}
.actions__card-large h4 {
  position: relative;
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
  text-align: left;
}
.actions__card-large p {
  position: relative;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  text-align: left;
}
.actions__cards-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
@media (max-width: 991px) {
  .actions__cards-right {
    gap: 20px;
  }
}
.actions__cards-top {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
@media (max-width: 991px) {
  .actions__cards-top {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.actions__card-medium {
  position: relative;
  width: 480px;
  height: 322px;
  border-radius: 15px;
  object-fit: cover;
  overflow: hidden;
}
@media (max-width: 767px) {
  .actions__card-medium {
    width: 100%;
  }
}
.actions__card-medium img {
  position: absolute;
  width: 100%;
  height: 100%;
}
.actions__card-medium .actions__card-info {
  padding: 36px 224px 0 20px;
}
@media (max-width: 768px) {
  .actions__card-medium .actions__card-info {
    padding: 36px 100px 0 20px;
  }
}
.actions__card-medium h4 {
  position: relative;
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
  text-align: left;
}
.actions__card-medium p {
  position: relative;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  text-align: left;
}
.actions__card-small {
  position: relative;
  width: 292px;
  height: 322px;
  border-radius: 15px;
  object-fit: cover;
  overflow: hidden;
}
@media (max-width: 767px) {
  .actions__card-small {
    width: 100%;
  }
}
.actions__card-small img {
  position: absolute;
  width: 100%;
  height: 100%;
}
.actions__card-small .actions__card-info {
  padding: 36px 52px 0 20px;
}
.actions__card-small h4 {
  position: relative;
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
  text-align: left;
}
.actions__card-small p {
  position: relative;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  text-align: left;
}
.actions__cards-bottom {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
@media (max-width: 991px) {
  .actions__cards-bottom {
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
  }
}
.actions__btn {
  margin-top: 50px;
}

.actions-page {
  padding-top: 20px;
  background-color: #fff;
}

.categories {
  padding: 120px 0;
  background: #1a1c1e;
  background-image: url("../img/category.png");
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 991px) {
  .categories {
    padding: 60px 0;
  }
}
.categories__title {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .categories__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    text-align: center;
    margin-bottom: 30px;
  }
}
.categories__list {
  row-gap: 50px;
}
@media (max-width: 991px) {
  .categories__list {
    row-gap: 30px;
    gap: 30px;
    justify-content: center;
  }
}
.categories__item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
}
.categories__item-link img {
  width: 204px;
  height: 204px;
  object-fit: cover;
  margin-bottom: 24px;
}
.categories__item-link p {
  max-width: 204px;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  line-height: 23px;
  text-align: center;
}
.categories__btn {
  margin: auto;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 285px;
  height: 70px;
  border-radius: 48px;
  border: 2px solid #fff;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.categories__btn:hover {
  background-color: #fff;
  color: #121212;
}
@media (max-width: 600px) {
  .categories__btn {
    width: 100%;
    height: 60px;
  }
}

.catalog {
  padding-top: 120px;
}
@media (max-width: 991px) {
  .catalog {
    padding-top: 60px;
  }
}
.catalog__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .catalog__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    text-align: center;
    margin-bottom: 30px;
  }
}
.catalog__switcher {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .catalog__switcher {
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
  }
}
.catalog__switch {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: 50px;
  border-radius: 40px;
  padding: 4px 36px;
  border: 2px solid #121212;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  text-align: center;
  letter-spacing: 0.8px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.catalog__switch:hover {
  background: #ff0000;
  color: #fff;
  border-color: #ff0000;
}
.catalog__switch.active {
  background: #ff0000;
  color: #fff;
  border-color: #ff0000;
}
@media (max-width: 991px) {
  .catalog__switch {
    width: fit-content;
    height: 40px;
    border-radius: 30px;
    padding: 2px 24px;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    text-align: center;
    letter-spacing: 0.6px;
  }
}
.catalog__list {
  gap: 30px;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .catalog__list {
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
  }
}
.catalog__item {
  width: 278px;
  height: auto;
  border-radius: 14px;
  background: #fff;
  box-shadow: 1px 2px 9px 0 rgba(18, 18, 18, 0.06);
  overflow: hidden;
  padding: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.catalog__item:hover {
  box-shadow: 1px 2px 24px 0 rgba(18, 18, 18, 0.24);
}
.catalog__item:hover .catalog__item-overlay {
  opacity: 1;
  pointer-events: all;
}
@media (max-width: 600px) {
  .catalog__item {
    width: 95%;
  }
}
.catalog__item-top {
  position: relative;
  width: 100%;
  height: 278px;
  background: #eef0f2;
}
.catalog__item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 18, 18, 0.7);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.catalog__item-btn--buy {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 181px;
  height: 44px;
  border-radius: 48px;
  border: 2px solid #ff0000;
  padding: 0 24px;
  background: #ff0000;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.catalog__item-btn--buy svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  fill: transparent;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.catalog__item-btn--buy:hover {
  background-color: #fff;
  color: #ff0000;
}
.catalog__item-btn--buy:hover svg {
  stroke: #ff0000;
}
.catalog__item-btn--view {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
  width: 181px;
  height: 44px;
  border-radius: 48px;
  border: 2px solid #fff;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.catalog__item-btn--view:hover {
  background-color: #fff;
  color: #121212;
}
.catalog__item-tag {
  position: absolute;
  top: 24px;
  left: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 28px;
  padding: 0 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  border-radius: 4px;
  z-index: 10;
}
.catalog__item-tag.hit {
  background: #ff0000;
}
.catalog__item-tag.new {
  background-color: #121212;
}
.catalog__item-tag.recomm {
  background-color: #ff8400;
}
.catalog__item-heart {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 10;
}
.catalog__item-heart svg {
  width: 20px;
  height: 18px;
  stroke: #121212;
  fill: none;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.catalog__item-heart:hover svg {
  stroke: #ff0000;
  fill: #ff0000;
}
.catalog__item-heart.active svg {
  stroke: #ff0000;
  fill: #ff0000;
}
.catalog__item-img {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 167px;
  height: 165px;
  object-fit: cover;
}
.catalog__item-bottom {
  padding: 24px;
}
.catalog__item-name {
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  margin-bottom: 16px;
}
.catalog__item-stock {
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
  text-align: left;
  margin-bottom: 36px;
}
.catalog__item-stock.in-stock {
  color: #75cc2f;
}
.catalog__item-stock.out-stock {
  color: #ff0000;
}
.catalog__item-footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0;
}
.catalog__item-price {
  font-size: 30px;
  font-weight: 600;
  line-height: 30px;
  text-align: left;
}
.catalog__item-price span {
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  text-align: left;
}
.catalog__item-rate {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  line-height: 30px;
  text-align: right;
}
.catalog__item-rate svg {
  width: 18px;
  height: 18px;
  stroke: transparent;
}

.state {
  padding: 120px 0 58px 0;
}
@media (max-width: 991px) {
  .state {
    padding: 60px 0;
  }
}
.state__block {
  padding: 158px 46px 120px 46px;
  width: 100%;
  height: 572px;
  border-radius: 14px;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 991px) {
  .state__block {
    padding: 100px 24px 60px 24px;
    height: 400px;
    background-position: bottom !important;
  }
}
.state__title {
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
  text-align: left;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .state__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    text-align: center;
    margin-bottom: 12px;
  }
}
.state__text {
  max-width: 533px;
  font-size: 22px;
  font-weight: 600;
  line-height: normal;
  text-align: left;
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .state__text {
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
    text-align: center;
    margin-bottom: 20px;
  }
}
.state__btns {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
}
@media (max-width: 991px) {
  .state__btns {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
  }
}
.state__btns .btn-outline {
  margin: 0;
  width: 265px;
  height: 70px;
}
@media (max-width: 991px) {
  .state__btns .btn-outline {
    width: 100%;
    height: 50px;
  }
}
.state__btns .btn-accent {
  width: 244px;
  height: 70px;
}
@media (max-width: 991px) {
  .state__btns .btn-accent {
    width: 100%;
    height: 50px;
  }
}

.how-we-work {
  padding-bottom: 120px;
}
@media (max-width: 991px) {
  .how-we-work {
    padding-bottom: 60px;
  }
}
.how-we-work__title {
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .how-we-work__title {
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
    text-align: center;
    margin-bottom: 30px;
  }
}
.how-we-work__list {
  gap: 45px;
}
@media (max-width: 991px) {
  .how-we-work__list {
    gap: 20px;
  }
}
.how-we-work__item {
  position: relative;
  max-width: 204px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
}
@media (max-width: 600px) {
  .how-we-work__item {
    max-width: 100%;
  }
}
.how-we-work__item img {
  margin-bottom: 24px;
}
.how-we-work__item span {
  color: #ff0000;
  font-size: 14px;
  font-weight: 600;
  line-height: 23px;
  text-align: center;
}
.how-we-work__item p {
  font-size: 17px;
  font-weight: 600;
  line-height: 23px;
  text-align: center;
}
@media (max-width: 991px) {
  .how-we-work__item p {
    font-size: 16px;
  }
}
.how-we-work__item:not(:last-child)::after {
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -30px;
  content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='15' height='50' viewBox='0 0 15 50' fill='none'><path d='M13.4999 25L0.5 50H1.49998L14.4999 25H13.4999Z' fill='%23E7E7E7'/><path d='M14.4999 25L1.49998 0H0.5L13.4999 25H14.4999Z' fill='%23E7E7E7'/></svg>");
}
@media (max-width: 600px) {
  .how-we-work__item:not(:last-child)::after {
    display: none;
  }
}

.reviews {
  background: #fafafa;
  padding: 120px 0;
}
@media (max-width: 991px) {
  .reviews {
    padding: 60px 0;
  }
}
.reviews__top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .reviews__top {
    gap: 10px;
    margin-bottom: 30px;
  }
}
.reviews__title {
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
  text-align: left;
}
@media (max-width: 991px) {
  .reviews__title {
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
    text-align: left;
  }
}
.reviews__nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.reviews__nav-prev, .reviews__nav-next {
  display: flex;
  justify-content: center;
  align-items: center;
}
.reviews__slider {
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .reviews__slider {
    margin-bottom: 30px;
  }
}
.reviews__item-top {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.reviews__item-avatar {
  width: 32px;
  height: 32px;
  border-radius: 100%;
  object-fit: cover;
}
.reviews__item-name {
  font-size: 17px;
  font-weight: 500;
  line-height: normal;
  text-align: left;
}
.reviews__item-rate {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  margin-bottom: 8px;
}
.reviews__item-stars {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
}
.reviews__item-date {
  color: #535353;
  font-size: 14px;
  font-weight: 300;
  line-height: normal;
  text-align: left;
}
.reviews__item-text {
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  text-align: justify;
}

.articles {
  padding: 120px 0;
}
@media (max-width: 991px) {
  .articles {
    padding: 60px 0;
  }
}
.articles .breadcrumbs-wrap {
  margin-bottom: 56px;
}
@media (max-width: 991px) {
  .articles .breadcrumbs-wrap {
    margin-bottom: 20px;
  }
}
.articles .breadcrumbs__filter {
  margin-top: 32px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  row-gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .articles .breadcrumbs__filter {
    margin-top: 20px;
    gap: 12px;
  }
}
.articles .breadcrumbs__filter-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: 30px;
  border-radius: 4px;
  padding: 0 16px;
  border: 1.5px solid #f2f2f2;
  background: #fff;
  color: #686868;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  text-align: left;
  text-decoration-line: underline;
}
@media (max-width: 991px) {
  .articles .breadcrumbs__filter-item {
    padding: 0 10px;
    height: 24px;
    font-size: 12px;
  }
}
.articles__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .articles__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    text-align: center;
    margin-bottom: 20px;
  }
}
.articles__list {
  margin-bottom: 40px;
  row-gap: 50px;
}
@media (max-width: 991px) {
  .articles__list {
    margin-bottom: 20px;
    row-gap: 20px;
  }
}
.articles__item-img {
  width: 100%;
  height: 260px;
  border-radius: 14px;
  object-fit: cover;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .articles__item-img {
    height: 200px;
  }
}
.articles__item-date {
  color: #535353;
  font-size: 14px;
  font-weight: 300;
  line-height: normal;
  text-align: left;
  margin-bottom: 12px;
}
.articles__item-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  text-align: left;
}
@media (max-width: 991px) {
  .articles__item-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    text-align: left;
  }
}
.articles__item-text {
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  text-align: left;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 12px;
}
@media (max-width: 991px) {
  .articles__item-text {
    font-size: 14px;
    font-weight: 300;
    line-height: 18px;
    text-align: left;
    margin-bottom: 8px;
  }
}
.articles__item-link {
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  text-align: left;
  border-bottom: 1px solid #121212;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.articles__item-link:hover {
  color: #ff0000;
  border-color: #ff0000;
}

.info {
  overflow: hidden;
  padding: 60px 0;
  background: #fafafa;
}
@media (max-width: 991px) {
  .info {
    padding: 40px 0;
  }
}
.info__block {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 32px;
}
@media (max-width: 991px) {
  .info__block {
    flex-direction: column;
    margin-bottom: 24px;
  }
}
.info__block-video {
  position: relative;
  width: 598px;
  height: 510px;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .info__block-video {
    width: 100%;
    height: 510px;
  }
}
@media (max-width: 600px) {
  .info__block-video {
    height: 300px;
  }
}
.info__block-video--iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.info__block-video--overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.info__block-video--btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.info__block-img {
  width: 598px;
  height: 510px;
  border-radius: 20px;
  object-fit: cover;
}
@media (max-width: 991px) {
  .info__block-img {
    width: 100%;
    height: 510px;
  }
}
@media (max-width: 600px) {
  .info__block-img {
    height: 300px;
  }
}
.info__block-content {
  position: relative;
  width: 50%;
}
@media (max-width: 991px) {
  .info__block-content {
    width: 100%;
  }
}
.info__block-content p {
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  text-align: left;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .info__block-content p {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    text-align: left;
    margin-bottom: 20px;
  }
}
.info__block-content .overlay {
  position: absolute;
  left: 0;
  bottom: 70px;
  width: 100%;
  height: 591px;
  background: linear-gradient(to top, #fafafa 9.81%, rgba(250, 250, 250, 0) 100%);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (max-width: 991px) {
  .info__block-content .overlay {
    height: 200px;
  }
}
.info__block-content--btn {
  margin-left: 0;
}
.info__tags {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  row-gap: 12px;
}
@media (max-width: 600px) {
  .info__tags {
    row-gap: 8px;
    gap: 12px;
  }
}
.info__tag {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: 30px;
  border-radius: 4px;
  padding: 0 16px;
  border: 1.5px solid #f2f2f2;
  background: #fff;
  color: #696969;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  text-align: left;
}
@media (max-width: 600px) {
  .info__tag {
    padding: 0 12px;
  }
}

.products {
  padding: 120px 0;
}
@media (max-width: 991px) {
  .products {
    padding: 60px 0;
  }
}
.products__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  text-align: left;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .products__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    text-align: left;
    margin-bottom: 10px;
  }
}
.products__swiper {
  position: relative;
  padding: 30px 20px;
}
@media (max-width: 991px) {
  .products__swiper {
    padding: 20px 10px;
  }
}
.products__prev {
  position: absolute;
  top: 45%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
  background: #fff;
  width: 42px;
  height: 42px;
  border-radius: 100%;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.products__next {
  position: absolute;
  top: 45%;
  right: 0;
  transform: translateY(-50%);
  z-index: 2;
  background: #fff;
  width: 42px;
  height: 42px;
  border-radius: 100%;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.products .swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}
.products__overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 100%;
  background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}
@media (max-width: 991px) {
  .products__overlay {
    display: none;
  }
}

.category-wrap {
  padding-bottom: 120px;
}
@media (max-width: 991px) {
  .category-wrap {
    padding-bottom: 60px;
  }
}

.breadcrumbs-wrap {
  padding: 36px 0;
  background: #fafafa;
}
@media (max-width: 991px) {
  .breadcrumbs-wrap {
    padding: 24px 0;
  }
}

.breadcrumbs {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 13px;
  margin-bottom: 33px;
}
@media (max-width: 991px) {
  .breadcrumbs {
    margin-bottom: 20px;
  }
}
.breadcrumbs__item:last-child {
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  text-align: left;
}
.breadcrumbs__item:not(:last-child) {
  position: relative;
  color: #7d7d7d;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  text-align: left;
  text-decoration-line: underline;
}
.breadcrumbs__item:not(:last-child)::before {
  content: "/";
  position: absolute;
  top: 0;
  right: -9px;
  display: block;
}
.breadcrumbs__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  text-align: left;
}
@media (max-width: 991px) {
  .breadcrumbs__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    text-align: left;
  }
}

.category__assortment {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 50px;
  padding: 56px 0;
}
@media (max-width: 991px) {
  .category__assortment {
    flex-direction: column;
    padding: 32px 0;
    gap: 20px;
  }
}
.category__assortment-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 14px;
}
.category__assortment-title {
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  text-align: left;
}
.category__assortment-list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
}
.category__assortment-item {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #696969;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  text-align: left;
  border-bottom: 1px solid #696969;
}
.category__filter {
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .category__filter {
    margin-bottom: 20px;
  }
}
.category__filter-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0;
}
@media (max-width: 991px) {
  .category__filter-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.category__filter-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: fit-content;
  height: 50px;
  border-radius: 4px;
  padding: 0 24px;
  background: #121212;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.category__filter-btn .icon-chev {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.category__filter-btn .icon-chev.rotated {
  transform: rotateX(180deg);
}
.category__filter-panel {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 32px;
}
@media (max-width: 991px) {
  .category__filter-panel {
    width: 100%;
    justify-content: space-between;
  }
}
.category__filter-main {
  padding: 30px 0 0 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  row-gap: 18px;
  display: none;
}
@media (max-width: 991px) {
  .category__filter-main {
    padding: 20px 0 0 0;
    gap: 30px;
  }
}
.category__filter-main.open {
  display: flex;
}
.category__filter-main > .filter-group {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0;
  width: 23%;
}
@media (max-width: 991px) {
  .category__filter-main > .filter-group {
    width: 45%;
  }
}
.category__filter-main > .filter-group > label {
  margin-bottom: 12px;
}
.category__filter-main > .filter-group > .dropdown {
  width: 100%;
}
.category__filter-main > .filter-group > .dropdown .dropdown-toggle {
  width: 100%;
}

.target {
  position: relative;
}
.target .swiper {
  width: 100%;
  height: 100%;
}
.target .swiper-slide {
  padding: 36px 22px 20px 20px;
}
.target__img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.target__title {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
  text-align: left;
  margin-bottom: 5px;
}
.target__text {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  text-align: left;
}
.target__nav-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.target__nav-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.target__pagination {
  position: absolute;
  bottom: 20px !important;
  left: 50% !important;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
}
.target .swiper-pagination-bullet {
  background-color: transparent;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  border: 1px solid #c3c3c4;
}
.target .swiper-pagination-bullet-active {
  background-color: rgba(195, 195, 196, 0.3);
}

.action {
  width: 100%;
  height: 400px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media (max-width: 991px) {
  .action {
    height: 150px;
    background-position: right;
  }
}
.action__content {
  padding: 92px 32px;
}
@media (max-width: 991px) {
  .action__content {
    padding: 16px;
  }
}
.action__title {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 43px;
  text-align: left;
  margin-bottom: 16px;
}
@media (max-width: 991px) {
  .action__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    text-align: left;
    margin-bottom: 10px;
  }
}
.action__text {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  text-align: left;
}
@media (max-width: 991px) {
  .action__text {
    width: 250px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    text-align: left;
  }
}

.action__info {
  margin-top: 40px;
}
@media (max-width: 991px) {
  .action__info {
    margin-top: 20px;
  }
}
.action__info-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  text-align: left;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .action__info-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    text-align: left;
    margin-bottom: 20px;
  }
}
.action__info-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .action__info-text {
    margin-bottom: 20px;
  }
}

.article__top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 45px;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .article__top {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .article__top {
    gap: 25px;
    margin-bottom: 20px;
  }
}
.article__title {
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
  text-align: left;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .article__title {
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
    text-align: left;
    margin-bottom: 20px;
  }
}
.article__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}
.article__img {
  width: auto;
  height: 367px;
  border-radius: 14px;
  object-fit: cover;
}
@media (max-width: 1024px) {
  .article__img {
    width: 100%;
  }
}

.error {
  padding-top: 120px;
  padding-bottom: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
}
@media (max-width: 991px) {
  .error {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.error__img {
  margin-bottom: 56px;
}
@media (max-width: 991px) {
  .error__img {
    margin-bottom: 30px;
  }
}
.error__text {
  color: #c7c7c7;
  font-size: 24px;
  font-weight: 500;
  line-height: normal;
  text-align: center;
  margin-bottom: 120px;
}
@media (max-width: 991px) {
  .error__text {
    margin-bottom: 60px;
  }
}
.error__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 316px;
  height: 66px;
  border-radius: 48px;
  background: #ff0000;
  border: 2px solid #ff0000;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.error__btn:hover {
  background-color: #fff;
  color: #ff0000;
}
@media (max-width: 600px) {
  .error__btn {
    width: 100%;
    height: 60px;
  }
}

.install {
  padding-bottom: 120px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}
@media (max-width: 1024px) {
  .install {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .install {
    gap: 30px;
    padding-bottom: 60px;
  }
}
.install__content h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
  text-align: left;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .install__content h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
    text-align: left;
    margin-bottom: 12px;
  }
}
.install__content p {
  font-size: 22px;
  font-weight: 600;
  line-height: normal;
  text-align: left;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .install__content p {
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    text-align: left;
    margin-bottom: 12px;
  }
}
.install__img {
  width: 672px;
  height: 515px;
  border-radius: 14px;
  object-fit: cover;
}
@media (max-width: 991px) {
  .install__img {
    width: 100%;
    height: 400px;
  }
}

.for-whom {
  padding-bottom: 120px;
}
@media (max-width: 991px) {
  .for-whom {
    padding-bottom: 60px;
  }
}
.for-whom__title {
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
  text-align: left;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .for-whom__title {
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
    text-align: left;
    margin-bottom: 30px;
  }
}
.for-whom__list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
@media (max-width: 991px) {
  .for-whom__list {
    flex-direction: column;
    gap: 15px;
  }
}
.for-whom__card {
  position: relative;
  width: 380px;
  height: 260px;
  border-radius: 14px;
  background: linear-gradient(295deg, #dedee0 1.24%, #f5f5f5 65.83%);
  padding: 24px;
}
@media (max-width: 991px) {
  .for-whom__card {
    width: 100%;
  }
}
.for-whom__card p {
  position: relative;
  z-index: 2;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  text-align: left;
}
.for-whom .left {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
}
.for-whom .left img {
  position: absolute;
  right: 20px;
  bottom: 0;
}
.for-whom .left p {
  max-width: 190px;
  text-align: left;
}
.for-whom .center {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
}
.for-whom .center img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
.for-whom .center p {
  max-width: 266px;
  text-align: center;
}
.for-whom .right {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 0;
}
.for-whom .right img {
  position: absolute;
  left: 20px;
  bottom: 0;
}
.for-whom .right p {
  width: 222px;
  text-align: right;
}

.portfolio {
  padding-bottom: 120px;
}
@media (max-width: 991px) {
  .portfolio {
    padding-bottom: 60px;
  }
}
.portfolio__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .portfolio__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    text-align: center;
    margin-bottom: 30px;
  }
}
.portfolio__cards {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .portfolio__cards {
    gap: 20px;
    flex-direction: column;
  }
}
.portfolio__card-large {
  position: relative;
  width: 380px;
  height: 550px;
  border-radius: 15px;
  object-fit: cover;
  overflow: hidden;
}
.portfolio__card-large:hover img {
  transform: scale(1.2);
}
@media (max-width: 767px) {
  .portfolio__card-large {
    width: 100%;
  }
}
.portfolio__card-large img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.portfolio__card-large .loop {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
}
.portfolio__cards-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
@media (max-width: 991px) {
  .portfolio__cards-right {
    gap: 20px;
    width: 100%;
  }
}
.portfolio__cards-top {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
@media (max-width: 991px) {
  .portfolio__cards-top {
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
  }
}
.portfolio__card-medium {
  position: relative;
  width: 790px;
  height: 260px;
  border-radius: 15px;
  object-fit: cover;
  overflow: hidden;
}
.portfolio__card-medium:hover img {
  transform: scale(1.2);
}
@media (max-width: 991px) {
  .portfolio__card-medium {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .portfolio__card-medium {
    width: 100%;
  }
}
.portfolio__card-medium img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.portfolio__card-medium .loop {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
}
.portfolio__card-small {
  position: relative;
  width: 380px;
  height: 260px;
  border-radius: 15px;
  object-fit: cover;
  overflow: hidden;
}
.portfolio__card-small:hover img {
  transform: scale(1.2);
}
@media (max-width: 991px) {
  .portfolio__card-small {
    width: 48%;
  }
}
@media (max-width: 767px) {
  .portfolio__card-small {
    width: 100%;
  }
}
.portfolio__card-small img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.portfolio__card-small .loop {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
}
.portfolio__cards-bottom {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
@media (max-width: 991px) {
  .portfolio__cards-bottom {
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
  }
}
.portfolio__btn {
  margin-top: 50px;
}

.portfolio-page {
  padding-top: 20px;
  background-color: #fff;
}

.small-form {
  padding: 120px 0;
  background: #1a1c1e url(../../img/footer.png) 0px -276.815px/100% 159.275% no-repeat;
}
@media (max-width: 991px) {
  .small-form {
    padding: 36px 0;
    background: #1a1c1e;
  }
}
.small-form__title {
  margin: auto;
  max-width: 681px;
  color: #fffefe;
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .small-form__title {
    font-size: 36px;
    font-weight: 700;
    line-height: 36px;
    text-align: center;
  }
}
.small-form__text {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .small-form__text {
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    text-align: center;
    margin-bottom: 20px;
  }
}
.small-form__form {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .small-form__form {
    flex-direction: column;
    margin-bottom: 36px;
  }
}
.small-form__form-input {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 380px;
  height: 70px;
  border-radius: 50px;
  padding: 0 32px;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  text-align: left;
  border: 1.5px solid #9c9a9a;
}
.small-form__form-input::placeholder {
  color: #999798;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  text-align: left;
}
.small-form__form-input:focus {
  border-color: #fff;
}
@media (max-width: 991px) {
  .small-form__form-input {
    width: 100%;
    height: 60px;
  }
}
.small-form__form-input-btn {
  position: relative;
  width: 516px;
}
@media (max-width: 991px) {
  .small-form__form-input-btn {
    width: 100%;
  }
}
.small-form__form-input-btn input {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70px;
  border-radius: 50px;
  padding: 0 32px;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  text-align: left;
  border: 1.5px solid #9c9a9a;
}
.small-form__form-input-btn input::placeholder {
  color: #999798;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  text-align: left;
}
.small-form__form-input-btn input:focus {
  border-color: #fff;
}
@media (max-width: 991px) {
  .small-form__form-input-btn input {
    height: 60px;
  }
}
.small-form__form-input-btn button {
  position: absolute;
  top: 5px;
  right: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 281px;
  height: 60px;
  border-radius: 48px;
  background: #ff0000;
  border: 2px solid #ff0000;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.small-form__form-input-btn button:hover {
  background-color: transparent;
  color: #ff0000;
}
@media (max-width: 991px) {
  .small-form__form-input-btn button {
    width: 100%;
    height: 60px;
    position: static;
    margin-top: 12px;
  }
}

.product {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
}
@media (max-width: 991px) {
  .product {
    flex-direction: column-reverse;
    gap: 20px;
  }
}
.product__left {
  width: 50%;
}
@media (max-width: 991px) {
  .product__left {
    width: 100%;
  }
}
.product .documents {
  margin: 36px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0;
}
@media (max-width: 991px) {
  .product .documents {
    width: 100%;
    flex-direction: column;
    gap: 15px;
    margin: 24px 0;
  }
}
.product .documents__item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
@media (max-width: 991px) {
  .product .documents__item {
    width: 100%;
    justify-content: space-around;
  }
}
.product .documents__item span {
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  text-align: left;
  border-bottom: 1px dashed #121212;
}
.product .certificates {
  margin-bottom: 24px;
}
.product .certificates__label {
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  text-align: left;
  margin-bottom: 16px;
}
.product__descr-item--top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 24px 16px;
  border-bottom: 1px solid rgba(125, 125, 125, 0.16);
}
@media (max-width: 991px) {
  .product__descr-item--top {
    padding: 12px 8px;
  }
}
.product__descr-item--top:first-child {
  border-top: 1px solid rgba(125, 125, 125, 0.16);
}
.product__descr-item--name {
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  text-align: left;
}
.product__descr-item--icon {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.product__descr-item--body {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.product__descr-item--body p {
  padding: 0 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}
.product__descr-item--body p > a {
  text-decoration-line: underline;
  text-decoration-style: solid;
}
.product__descr-item--body span {
  display: block;
  text-align: center;
}
.product__descr-item--body img {
  width: 100%;
  margin: 15px 0;
}
.product__descr-item--body ul {
  padding: 0 16px;
  list-style-type: disc;
  list-style-position: outside;
  padding-left: 20px;
}
.product__descr-item--body ul > li {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}
.product__descr-item--body ul > li:not(:last-child) {
  margin-bottom: 20px;
}
.product__descr-item--body ul > li > a {
  text-decoration-line: underline;
  text-decoration-style: solid;
}
.product__descr-item--body ul.second {
  margin-left: 40px;
}
.product__descr-item--body ul.second > li:not(:last-child) {
  margin-bottom: 0;
}
.product__descr-item--body ul.third {
  list-style-type: none;
}
.product__descr-item--body ul.third > li:not(:last-child) {
  margin-bottom: 36px;
}
@media (max-width: 991px) {
  .product__descr-item--body ul.third > li:not(:last-child) {
    margin-bottom: 24px;
  }
}
.product__descr-item--body ul.third > li > .top {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  margin-bottom: 6px;
}
.product .product-specs {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  text-align: left;
}
.product .product-specs td {
  padding: 12px 16px;
}
.product .product-specs tr:not(.section) td:first-child {
  width: 50%;
  color: #7d7d7d;
  border-right: 1px solid rgba(125, 125, 125, 0.16);
}
.product .product-specs tr:not(.section) td:last-child {
  width: 50%;
  text-align: right;
}
.product .product-specs .section td {
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  text-align: left;
  color: #121212;
  padding-left: 16px;
  padding-bottom: 6px;
  padding-top: 24px;
}
.product .product-specs tr:not(.section):nth-child(even) {
  background: #fafafa;
}
.product .product-specs a {
  text-decoration: underline;
}
.product__right {
  width: 50%;
  position: sticky;
  top: 0;
  right: 0;
}
@media (max-width: 991px) {
  .product__right {
    width: 100%;
    position: static;
  }
}
.product__right-title {
  margin-top: 50px;
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
  text-align: left;
  margin-bottom: 16px;
}
@media (max-width: 991px) {
  .product__right-title {
    margin-top: 0;
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
    text-align: left;
  }
}
.product__right-stock {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  margin-bottom: 16px;
}
.product__right-rate {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  padding-bottom: 12px;
  border-bottom: 1px solid #c7c7c7;
  margin-bottom: 36px;
}
@media (max-width: 991px) {
  .product__right-rate {
    margin-bottom: 24px;
  }
}
.product__right-price {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .product__right-price {
    margin-bottom: 16px;
  }
}
.product__right-descr {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .product__right-descr {
    margin-bottom: 16px;
  }
}
.product__right-descr p {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}
.product__right-characteristics {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0;
}
.product__right-characteristics--item {
  position: relative;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  width: 102px;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .product__right-characteristics--item {
    font-size: 16px;
    margin-bottom: 16px;
    width: 80px;
    height: 40px;
  }
}
.product__right-characteristics--item .arrow-up {
  position: absolute;
  left: 4.973px;
  top: -4.294px;
}
@media (max-width: 991px) {
  .product__right-characteristics--item .arrow-up {
    left: 0;
    top: -7px;
  }
}
.product__right-characteristics--item .arrow-bottom {
  position: absolute;
  right: 12.973px;
  bottom: -4.295px;
}
@media (max-width: 991px) {
  .product__right-characteristics--item .arrow-bottom {
    right: 0;
    bottom: -7px;
  }
}
.product .tag {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: 28px;
  border-radius: 4px;
  padding: 0 12px;
  background: #ff0000;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  text-align: center;
}
.product .stock {
  color: #75cc2f;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  text-align: left;
}
.product .rating {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
@media (max-width: 991px) {
  .product .rating {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 6px;
  }
}
.product .rating__label {
  color: #7d7d7d;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  text-align: left;
}
.product .rating__stars {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.product .rating__star {
  display: flex;
  justify-content: center;
  align-items: center;
}
.product .rating__value {
  font-size: 16px;
  font-weight: 600;
  line-height: 30px;
  text-align: right;
}
.product .article {
  color: #7d7d7d;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  text-align: left;
}
.product .price {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.product .new {
  color: #ff0000;
  font-size: 34px;
  font-weight: 500;
  line-height: normal;
  text-align: left;
  white-space: nowrap;
}
@media (max-width: 991px) {
  .product .new {
    font-size: 24px;
  }
}
.product .old {
  font-size: 34px;
  font-weight: 500;
  line-height: normal;
  text-align: left;
  white-space: nowrap;
  text-decoration: line-through;
}
@media (max-width: 991px) {
  .product .old {
    font-size: 24px;
  }
}
.product .controls {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}
.product .controls svg {
  width: 36px;
  height: 32px;
  stroke: #121212;
  fill: #fff;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (max-width: 991px) {
  .product .controls svg {
    width: 24px;
    height: 18px;
  }
}
.product .controls__like:hover svg {
  stroke: #ff0000;
  fill: #ff0000;
}
.product .controls__like.active svg {
  stroke: #ff0000;
  fill: #ff0000;
}
.product__right-options {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  margin-bottom: 36px;
  /* Кольори */
  /* Radio кастом */
}
@media (max-width: 991px) {
  .product__right-options {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
  }
}
.product__right-options .product__right-option-label {
  display: block;
  color: #7d7d7d;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  text-align: left;
  margin-bottom: 6px;
}
.product__right-options .product__right-colors {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.product__right-options .product__right-colors input {
  display: none;
}
.product__right-options .product__right-colors .color-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: block;
  cursor: pointer;
  border: 2px solid transparent;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.product__right-options .product__right-colors .color-circle:hover {
  transform: scale(1.1);
}
.product__right-options .product__right-colors input:checked + .color-circle {
  border: 2px solid #121212;
}
.product__right-options .product__right-radios {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}
.product__right-options .product__right-radios input {
  display: none;
}
.product__right-options .product__right-radios label {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 6px;
  color: #7d7d7d;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  text-align: left;
  margin-bottom: 6px;
}
.product__right-options .product__right-radios .radio-custom {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #d0d0d0;
  display: inline-block;
  position: relative;
  cursor: pointer;
}
.product__right-options .product__right-radios input:checked + .radio-custom {
  border-color: #ff0000;
}
.product__right-options .product__right-radios input:checked + .radio-custom::after {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ff0000;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.product__right-options .diameter-label {
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  text-align: left;
}
.product__right-options .diameter__list {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}
.product__right-options .diameter__list-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.product__right-options .diameter__list-item a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 34px;
  border-radius: 3px;
  border: 1px solid #121212;
  background: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  text-align: center;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.product__right-options .diameter__list-item.disabled a {
  color: #c7c7c7;
  border-color: #c7c7c7;
}
.product__right-options .diameter__list-item.active a {
  color: #fff;
  background: #121212;
}
.product__right-options .diameter__list-item:hover a {
  color: #fff;
  background: #121212;
}
.product__right-buy {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 25px;
  /* Кількість */
}
@media (max-width: 991px) {
  .product__right-buy {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
  }
}
.product__right-buy .product__right-option-label {
  display: block;
  color: #7d7d7d;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  text-align: left;
  margin-bottom: 6px;
}
.product__right-buy .qty-control {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
  border-radius: 30px;
  background: #fff;
  border: 1px solid #c7c7c7;
  overflow: hidden;
}
.product__right-buy .qty-control .qty-btn {
  width: 38px;
  height: 46px;
  background: #fafafa;
  color: #c7c7c7;
  font-size: 22px;
}
.product__right-buy .qty-control .qty-input {
  width: 40px;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  text-align: center;
}
.product__right-add-to-cart {
  width: 100%;
}
.product__right-buy-click {
  margin-top: 16px;
  width: 100%;
}
.product__right-buy-click svg {
  fill: transparent;
  stroke: #fff;
  width: 20px;
  height: 20px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.product__right-buy-click:hover {
  background-color: transparent;
  color: #121212;
}
.product__right-buy-click:hover svg {
  fill: transparent;
  stroke: #121212;
}
@media (max-width: 991px) {
  .product .gallery {
    margin-bottom: 20px;
  }
}
.product .gallery-top {
  position: relative;
}
.product .gallery-swiper-button-prev {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.product .gallery-swiper-button-next {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.product .gallery-thumbs .swiper-slide {
  opacity: 0.5;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.product .gallery-thumbs .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
  border: 1px solid #121212;
  border-radius: 14px;
  overflow: hidden;
}
.product .swiper-slide-top > img {
  width: 100%;
}

.project__title {
  margin-top: 20px;
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
  text-align: left;
  margin-bottom: 56px;
}
@media (max-width: 991px) {
  .project__title {
    margin-top: 10px;
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
    text-align: left;
    margin-bottom: 30px;
  }
}
.project__content {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 32px;
  margin-bottom: 56px;
}
@media (max-width: 991px) {
  .project__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
  }
}
.project__content-img {
  width: 526px;
  height: 350px;
  border-radius: 14px;
  flex-shrink: 0;
  object-fit: cover;
}
@media (max-width: 991px) {
  .project__content-img {
    width: 100%;
    height: 300px;
    border-radius: 14px;
  }
}
.project__content-label {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-align: left;
  margin-bottom: 7px;
}
.project__content-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}
.project__solution {
  padding: 24px;
  border-radius: 14px;
  background: #fafafa;
  margin-bottom: 56px;
}
@media (max-width: 991px) {
  .project__solution {
    padding: 16px;
  }
}
.project__solution-label {
  font-size: 22px;
  font-weight: 700;
  line-height: normal;
  text-align: left;
  margin-bottom: 6px;
}
@media (max-width: 991px) {
  .project__solution-label {
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    text-align: left;
  }
}
.project__solution-text {
  font-size: 22px;
  font-weight: 300;
  line-height: normal;
  text-align: left;
}
@media (max-width: 991px) {
  .project__solution-text {
    font-size: 16px;
    font-weight: 300;
    line-height: normal;
    text-align: left;
  }
}
.project__content-second {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 56px;
  margin-bottom: 56px;
}
@media (max-width: 991px) {
  .project__content-second {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
  }
}
.project__content-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 36px;
}
@media (max-width: 991px) {
  .project__content-info {
    gap: 20px;
  }
}
.project__results {
  margin-bottom: 120px;
}
@media (max-width: 991px) {
  .project__results {
    margin-bottom: 60px;
  }
}
.project__results-title {
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  margin-bottom: 36px;
}
@media (max-width: 991px) {
  .project__results-title {
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
    text-align: center;
    margin-bottom: 20px;
  }
}
.project__results-list {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 36px;
}
@media (max-width: 991px) {
  .project__results-list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
  }
}
.project__results-item {
  max-width: 376px;
}
@media (max-width: 991px) {
  .project__results-item {
    max-width: 100%;
  }
}
.project__results-item--title {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  text-align: left;
  margin-bottom: 6px;
}
@media (max-width: 991px) {
  .project__results-item--title {
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    text-align: left;
  }
}
.project__results-item--descr {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}

.advantages {
  margin: 120px auto;
}
@media (max-width: 991px) {
  .advantages {
    margin: 60px auto;
  }
}
.advantages__title {
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .advantages__title {
    font-size: 24px;
  }
}
.advantages__list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 36px;
}
@media (max-width: 991px) {
  .advantages__list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
}
.advantages__item {
  max-width: 376px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
}
.advantages__item-img {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .advantages__item-img {
    margin-bottom: 16px;
  }
}
.advantages__item-title {
  color: #ff0000;
  font-size: 17px;
  font-weight: 700;
  line-height: 23px;
  text-align: center;
}
@media (max-width: 991px) {
  .advantages__item-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    text-align: center;
  }
}
.advantages__item-text {
  font-size: 17px;
  font-weight: 400;
  line-height: 23px;
  text-align: center;
}
@media (max-width: 991px) {
  .advantages__item-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
  }
}

.offer {
  max-width: 800px;
}
.offer__title {
  margin-top: 30px;
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
  text-align: left;
  margin-bottom: 56px;
}
@media (max-width: 991px) {
  .offer__title {
    margin-top: 15px;
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
    text-align: left;
    margin-bottom: 30px;
  }
}
.offer__block:not(:last-child) {
  margin-bottom: 56px;
}
@media (max-width: 991px) {
  .offer__block:not(:last-child) {
    margin-bottom: 30px;
  }
}
.offer__block-title {
  font-size: 22px;
  font-weight: 700;
  line-height: normal;
  text-align: left;
  margin-bottom: 16px;
}
@media (max-width: 991px) {
  .offer__block-title {
    font-size: 18px;
  }
}
.offer__block-list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
}
.offer__block-item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}
.offer__block-item span {
  display: flex;
  flex-shrink: 0;
  width: 36px;
}
.offer__block-table {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
}
.offer__block-table--item {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  gap: 6px;
}
@media (max-width: 991px) {
  .offer__block-table--item {
    flex-direction: column;
    align-items: flex-start;
  }
}
.offer__block-table--item .label {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  white-space: nowrap;
}
@media (max-width: 991px) {
  .offer__block-table--item .label {
    white-space: wrap;
  }
}
.offer__block-table--item .line {
  display: block;
  width: 100%;
  height: 1px;
  background: #ececec;
}
@media (max-width: 991px) {
  .offer__block-table--item .line {
    display: none;
  }
}
.offer__block-table--item .value {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-align: right;
  white-space: nowrap;
}
@media (max-width: 991px) {
  .offer__block-table--item .value {
    text-align: left;
    white-space: wrap;
  }
}

.sitemap__title {
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
  text-align: left;
  margin-bottom: 56px;
}
@media (max-width: 991px) {
  .sitemap__title {
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
    text-align: left;
    margin-bottom: 30px;
  }
}
.sitemap__content {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 56px;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .sitemap__content {
    gap: 30px;
  }
}
.sitemap__left {
  width: 572px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 36px;
}
@media (max-width: 991px) {
  .sitemap__left {
    width: 100%;
    gap: 20px;
  }
}
.sitemap__right {
  width: 572px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 36px;
}
@media (max-width: 991px) {
  .sitemap__right {
    width: 100%;
    gap: 20px;
  }
}
.sitemap__section-title {
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  text-align: left;
  margin-bottom: 9px;
}
.sitemap__section-list {
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
}
.sitemap__section-item {
  color: rgba(18, 18, 18, 0.7);
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  text-align: left;
}

.shop__title {
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
  text-align: left;
  margin-bottom: 56px;
}
@media (max-width: 991px) {
  .shop__title {
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
    text-align: left;
    margin-bottom: 30px;
  }
}
.shop__switcher {
  display: inline-flex;
  box-shadow: 0 -4px 20px -8px rgba(18, 18, 18, 0.1), -4px 0 20px -8px rgba(18, 18, 18, 0.1), 4px 0 20px -8px rgba(18, 18, 18, 0.1);
  border-radius: 14px 14px 0 0;
}
.shop__switch {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-top: 1px solid #ececec;
  border-right: 1px solid #ececec;
  border-left: 1px solid #ececec;
  border-bottom: 3px solid transparent;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.shop__switch a {
  padding: 24px 56px;
  color: rgba(18, 18, 18, 0.3);
  font-size: 22px;
  font-weight: 700;
  line-height: normal;
  text-align: left;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (max-width: 991px) {
  .shop__switch a {
    padding: 10px 16px;
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    text-align: left;
  }
}
.shop__switch:nth-child(1) {
  border-radius: 14px 0 0 0;
}
.shop__switch:nth-child(2) {
  border-left: 1px solid #ececec;
  border-right: 1px solid #ececec;
}
.shop__switch:nth-child(3) {
  border-radius: 0 14px 0 0;
}
.shop__switch.active {
  border-bottom: 3px solid #ff0000;
}
.shop__switch.active a {
  color: #121212;
}
.shop__body {
  padding: 24px;
  border-radius: 0 14px 14px 14px;
  border: 1px solid #ececec;
  background: #fff;
  box-shadow: 1px 2px 38px 0 rgba(18, 18, 18, 0.1);
}
@media (max-width: 991px) {
  .shop__body {
    padding: 16px;
  }
}

.delivery__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}
.delivery__list {
  margin: 56px 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 36px;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .delivery__list {
    margin: 30px 0;
    gap: 20px;
  }
}
.delivery__item {
  width: 48%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}
@media (max-width: 991px) {
  .delivery__item {
    width: 100%;
    flex-direction: column;
  }
}

.payment__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}
.payment__block {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 56px;
  margin: 24px 0;
}
@media (max-width: 991px) {
  .payment__block {
    flex-direction: column;
    margin: 16px 0;
    gap: 30px;
  }
}
.payment__left {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 36px;
}
@media (max-width: 991px) {
  .payment__left {
    width: 100%;
    gap: 20px;
  }
}
.payment__right {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 36px;
}
@media (max-width: 991px) {
  .payment__right {
    width: 100%;
    gap: 20px;
  }
}
.payment__section p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}
.payment__section ul {
  list-style-type: disc;
}
.payment__section ul > li {
  margin-left: 20px;
}
.payment__section a {
  text-decoration: underline;
}

.return__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}
.return a {
  text-decoration: underline;
}

.contacts__block {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 56px;
  padding: 24px;
  border-radius: 14px;
  background: #fafafa;
}
@media (max-width: 991px) {
  .contacts__block {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
    padding: 16px;
  }
}
.contacts__info {
  padding: 56px 0;
}
@media (max-width: 991px) {
  .contacts__info {
    padding: 30px 0;
  }
}
.contacts__info-title {
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
  text-align: left;
  margin-bottom: 36px;
}
@media (max-width: 991px) {
  .contacts__info-title {
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
    text-align: left;
    margin-bottom: 20px;
  }
}
.contacts__info-num {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  font-size: 32px;
  font-weight: 400;
  line-height: normal;
  text-align: left;
  opacity: 0.5;
  margin-bottom: 6px;
}
@media (max-width: 991px) {
  .contacts__info-num {
    gap: 8px;
    font-size: 24px;
    font-weight: 400;
    line-height: normal;
    text-align: left;
  }
}
.contacts__info-label {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  text-align: left;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .contacts__info-label {
    margin-bottom: 16px;
  }
}
.contacts__info-email {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  text-align: left;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .contacts__info-email {
    margin-bottom: 16px;
  }
}
.contacts__info-email a {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 6px;
}
.contacts__info-schedule {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 6px;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  text-align: left;
}
.contacts__map {
  border-radius: 14px;
  overflow: hidden;
  background-color: #fff;
}
.contacts__map iframe {
  width: 742px;
  height: 445px;
}
@media (max-width: 991px) {
  .contacts__map iframe {
    width: 100%;
  }
}
.contacts__map p {
  padding: 24px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 16px;
  font-size: 22px;
  font-weight: 400;
  line-height: normal;
  text-align: left;
}
@media (max-width: 991px) {
  .contacts__map p {
    padding: 16px;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
  }
}
.contacts__map p > span {
  font-weight: 700;
}
.contacts__table h2 {
  margin-top: 56px;
  margin-bottom: 24px;
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
  text-align: left;
}
@media (max-width: 991px) {
  .contacts__table h2 {
    margin-top: 30px;
    margin-bottom: 16px;
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
    text-align: left;
  }
}

.wholesale {
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
@media (max-width: 991px) {
  .wholesale {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
  }
}
.wholesale__info h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
  text-align: left;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .wholesale__info h1 {
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
    text-align: left;
    margin-bottom: 16px;
  }
}
.wholesale__info p {
  font-size: 22px;
  font-weight: 600;
  line-height: normal;
  text-align: left;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .wholesale__info p {
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    text-align: left;
    margin-bottom: 16px;
  }
}
.wholesale__img {
  width: 672px;
  height: 515px;
  border-radius: 14px;
  object-fit: cover;
}
@media (max-width: 991px) {
  .wholesale__img {
    width: 100%;
    height: 400px;
  }
}

.brands__title {
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  margin-bottom: 59px;
}
@media (max-width: 991px) {
  .brands__title {
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
    text-align: center;
    margin-bottom: 20px;
  }
}
.brands__list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 36px;
}
@media (max-width: 991px) {
  .brands__list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-bottom: 20px;
  }
}
.brands__item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.audience {
  margin-top: 120px;
}
@media (max-width: 991px) {
  .audience {
    margin-top: 60px;
  }
}
.audience__title {
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .audience__title {
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
    text-align: center;
    margin-bottom: 20px;
  }
}
.audience__list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
@media (max-width: 991px) {
  .audience__list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
}
.audience__item {
  position: relative;
  padding-top: 24px;
  width: 278px;
  height: 260px;
  border-radius: 14px;
  background: linear-gradient(295deg, #dedee0 1.24%, #f5f5f5 65.83%);
}
@media (max-width: 480px) {
  .audience__item {
    width: 100%;
  }
}
.audience__item p {
  max-width: 217px;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  margin: auto;
  margin-bottom: 29px;
}
.audience__item img {
  position: absolute;
  bottom: 0;
}
@media (max-width: 991px) {
  .audience__item img {
    max-width: 80%;
  }
}
.audience__item:nth-child(1) img {
  left: 59px;
}
.audience__item:nth-child(2) img {
  left: 16px;
}
.audience__item:nth-child(3) img {
  left: 11px;
}
.audience__item:nth-child(4) img {
  left: 11px;
}

.workflow {
  margin-top: 120px;
}
@media (max-width: 991px) {
  .workflow {
    margin-top: 60px;
  }
}
.workflow__title {
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .workflow__title {
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
    text-align: center;
    margin-bottom: 20px;
  }
}
.workflow__list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .workflow__list {
    gap: 20px;
    margin-bottom: 20px;
  }
}
.workflow__item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 50px;
}
@media (max-width: 991px) {
  .workflow__item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .workflow__item:nth-child(2) {
    flex-direction: column-reverse;
  }
}
.workflow__img {
  width: 575px;
  height: 262px;
  border-radius: 14px;
  object-fit: cover;
}
@media (max-width: 991px) {
  .workflow__img {
    width: 100%;
  }
}
.workflow__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 18px;
}
@media (max-width: 991px) {
  .workflow__info {
    gap: 10px;
  }
}
.workflow__info-title {
  font-size: 22px;
  font-weight: 700;
  line-height: normal;
  text-align: left;
}
@media (max-width: 991px) {
  .workflow__info-title {
    font-size: 18px;
  }
}
.workflow__info-text {
  font-size: 17px;
  font-weight: 400;
  line-height: normal;
  text-align: left;
}
@media (max-width: 991px) {
  .workflow__info-text {
    font-size: 14px;
  }
}

.thank {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media (max-width: 991px) {
  .thank {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.thank__title {
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .thank__title {
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
    text-align: center;
    margin-bottom: 30px;
  }
}
.thank__text {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .thank__text {
    margin-bottom: 20px;
  }
}
.thank .btn-accent {
  margin: auto;
}

.about-us {
  padding-bottom: 120px;
}
@media (max-width: 991px) {
  .about-us {
    padding-bottom: 60px;
  }
}
.about-us__title {
  max-width: 668px;
  margin: auto;
  margin-top: 56px;
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  margin-bottom: 36px;
}
@media (max-width: 991px) {
  .about-us__title {
    max-width: 100%;
    margin-top: 30px;
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
    text-align: center;
    margin-bottom: 20px;
  }
}
.about-us__brands {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 63px;
  margin-bottom: 8px;
}
@media (max-width: 991px) {
  .about-us__brands {
    gap: 20px;
  }
}
.about-us__brand {
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-us__slogan {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  margin-bottom: 36px;
}
@media (max-width: 991px) {
  .about-us__slogan {
    margin-bottom: 20px;
  }
}
.about-us__desc {
  max-width: 800px;
  margin: auto;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  margin-bottom: 56px;
}
@media (max-width: 991px) {
  .about-us__desc {
    max-width: 100%;
    margin-bottom: 20px;
  }
}
.about-us__slider-large {
  position: relative;
  width: 800px;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .about-us__slider-large {
    width: 100%;
  }
}
.about-us__slider-button-prev {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.about-us__slider-button-next {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.about-us__slider-small {
  width: 800px;
  margin-bottom: 36px;
}
@media (max-width: 991px) {
  .about-us__slider-small {
    width: 100%;
    margin-bottom: 20px;
  }
}
.about-us__slider-small .about-us__slider-item {
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid #c7c7c7;
  opacity: 0.5;
  background: url(<path-to-image>) lightgray 2.519px 2.53px/94.963% 100% no-repeat;
}
.about-us__slider-small .swiper-slide-thumb-active {
  opacity: 1;
  border: 1px solid #121212;
}
.about-us__advantages {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 56px;
}
@media (max-width: 991px) {
  .about-us__advantages {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-bottom: 20px;
  }
}
.about-us__advantages-item {
  max-width: 204px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
}
@media (max-width: 991px) {
  .about-us__advantages-item {
    max-width: 100%;
  }
}
.about-us__advantages-img {
  margin-bottom: 24px;
}
.about-us__advantages-text--bold {
  font-size: 17px;
  font-weight: 700;
  line-height: 23px;
  text-align: center;
}
.about-us__advantages-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
}
.about-us__block {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
@media (max-width: 991px) {
  .about-us__block {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .about-us__block:nth-child(2n) {
    flex-direction: column-reverse;
  }
}
.about-us__block:not(:last-child) {
  margin-bottom: 36px;
}
@media (max-width: 991px) {
  .about-us__block:not(:last-child) {
    margin-bottom: 20px;
  }
}
.about-us__block-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}
.about-us__description p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  margin-bottom: 24px;
}
.about-us__description span {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-align: left;
}
.about-us__description ul {
  list-style-type: disc;
}
.about-us__description ul > li {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  margin-left: 20px;
}

.projects {
  padding-bottom: 120px;
}
@media (max-width: 991px) {
  .projects {
    padding-bottom: 60px;
  }
}
.projects__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  text-align: left;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .projects__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    text-align: left;
    margin-bottom: 20px;
  }
}
.projects__list {
  margin-bottom: 40px;
  row-gap: 50px;
}
@media (max-width: 991px) {
  .projects__list {
    margin-bottom: 20px;
    row-gap: 20px;
  }
}
.projects__item-img {
  width: 100%;
  height: 260px;
  border-radius: 14px;
  object-fit: cover;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .projects__item-img {
    height: 200px;
  }
}
.projects__item-date {
  color: #535353;
  font-size: 14px;
  font-weight: 300;
  line-height: normal;
  text-align: left;
  margin-bottom: 12px;
}
.projects__item-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  text-align: left;
}
@media (max-width: 991px) {
  .projects__item-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    text-align: left;
  }
}
.projects__item-text {
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  text-align: left;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 12px;
}
@media (max-width: 991px) {
  .projects__item-text {
    font-size: 14px;
    font-weight: 300;
    line-height: 18px;
    text-align: left;
    margin-bottom: 8px;
  }
}
.projects__item-link {
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  text-align: left;
  border-bottom: 1px solid #121212;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.projects__item-link:hover {
  color: #ff0000;
  border-color: #ff0000;
}
.projects__pagination {
  margin-top: 50px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
@media (max-width: 991px) {
  .projects__pagination {
    margin-top: 20px;
    gap: 8px;
  }
}
.projects__pagination-chevron {
  display: flex;
  justify-content: center;
  align-items: center;
}
.projects__pagination-page {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  text-align: left;
  width: 42px;
  height: 42px;
  border-radius: 40px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.projects__pagination-page:hover {
  color: #fff;
  background: #121212;
}
.projects__pagination-page.active {
  color: #fff;
  background: #121212;
}

.calculator {
  padding-bottom: 120px;
}
@media (max-width: 991px) {
  .calculator {
    padding-bottom: 60px;
  }
}
.calculator__title {
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  margin-bottom: 16px;
}
@media (max-width: 991px) {
  .calculator__title {
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
    text-align: center;
  }
}
.calculator__text {
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  margin-bottom: 36px;
}
@media (max-width: 991px) {
  .calculator__text {
    margin-bottom: 20px;
  }
}
.calculator__bar {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 56px;
}
@media (max-width: 991px) {
  .calculator__bar {
    margin-bottom: 20px;
  }
}
.calculator__bar-item span {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  letter-spacing: -0.36px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 36px;
  background: #c7c7c7;
}
@media (max-width: 991px) {
  .calculator__bar-item span {
    font-size: 16px;
    width: 30px;
    height: 30px;
    border-radius: 30px;
  }
}
.calculator__bar-item p {
  color: #c7c7c7;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  letter-spacing: -0.36px;
}
@media (max-width: 991px) {
  .calculator__bar-item p {
    font-size: 16px;
  }
}
.calculator__bar-item.active span {
  background: #ff0000;
}
.calculator__bar-item.active p {
  color: #121212;
}
.calculator__bar-line {
  position: relative;
  top: 18px;
  width: 100%;
  height: 1px;
  background: #c7c7c7;
}
@media (max-width: 1024px) {
  .calculator__bar-line {
    width: 20px;
  }
}
@media (max-width: 991px) {
  .calculator__bar-line {
    top: 15px;
  }
}
.calculator__bar-line.active {
  background: #ff0000;
}
.calculator__sub-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  text-align: left;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .calculator__sub-title {
    margin-bottom: 20px;
  }
}
.calculator__row {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 30px;
}
@media (max-width: 1024px) {
  .calculator__row {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .calculator__row {
    gap: 20px;
  }
}
.calculator__list {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
@media (max-width: 991px) {
  .calculator__list {
    width: 100%;
    gap: 20px;
    margin-bottom: 30px;
  }
}
.calculator__list-item input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  inline-size: 24px;
  block-size: 24px;
  border: 2px solid #d0d0d0;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  margin-right: 8px;
  cursor: pointer;
}
.calculator__list-item input[type=radio]::before {
  content: "";
  inline-size: 16px;
  block-size: 16px;
  border-radius: 50%;
  background: #ff0000;
  transform: scale(0);
  transition: transform 0.2s ease;
}
.calculator__list-item input[type=radio]:checked {
  border: 2px solid #ff0000;
}
.calculator__list-item input[type=radio]:checked::before {
  transform: scale(1);
}
.calculator__list-item input[type=radio]:checked ~ * {
  border-color: #ff0000;
}
.calculator__list-item:has(input[type=radio]:checked) {
  opacity: 1;
  box-shadow: 1px 2px 24px 0 rgba(18, 18, 18, 0.24);
}
.calculator__list-item:hover {
  opacity: 1;
  box-shadow: 1px 2px 24px 0 rgba(18, 18, 18, 0.24);
}
.calculator__list-item {
  position: relative;
  width: 276px;
  height: 322px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 1px 2px 9px 0 rgba(18, 18, 18, 0.06);
  opacity: 0.6;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (max-width: 991px) {
  .calculator__list-item {
    width: 100%;
  }
}
.calculator__list-item img {
  width: 100%;
  height: 90%;
  object-fit: cover;
}
.calculator__info {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 122px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0;
  padding: 24px;
  background: #fff;
}
.calculator__info span {
  margin-top: 24px;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
}
.calculator__info-top {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 6px;
  width: 100%;
}
.calculator__info-top p {
  width: 80%;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  text-align: left;
}
.calculator__list-item.second {
  height: 255px;
}
.calculator__list-item.second .calculator__info {
  height: 100%;
}
.calculator__list-item.third {
  height: 122px;
}
.calculator__list-item.third .calculator__info {
  height: 100%;
}
.calculator__list-item.fourth {
  height: 153px;
}
.calculator__list-item.fifth {
  height: 552px;
}
.calculator__list-item.fifth .calculator__info {
  height: 74px;
  border-radius: 14px;
  background: #fafafa;
}
.calculator__info-form {
  margin-top: 24px;
}
.calculator__info-form.second {
  margin-top: 0;
}
.calculator__info-form p {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  margin-bottom: 8px;
}
.calculator__info-form .inputs {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
}
.calculator__info-form .input {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 6px;
}
.calculator__info-form label {
  display: block;
  color: #9c9a9a;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  text-align: left;
}
.calculator__info-form input {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 106px;
  height: 48px;
  border-radius: 50px;
  padding: 0 24px;
  border: 1.5px solid #9c9a9a;
}
.calculator__block-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
  padding: 24px;
  border-radius: 14px;
  background: #fafafa;
}
@media (max-width: 991px) {
  .calculator__block-info {
    margin-bottom: 30px;
  }
}
.calculator__block-info p {
  width: 234px;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  text-align: left;
}
@media (max-width: 991px) {
  .calculator__block-info p {
    width: 100%;
  }
}
.calculator__btn-wrap {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 36px;
}
@media (max-width: 991px) {
  .calculator__btn-wrap {
    gap: 16px;
  }
}
.calculator__btn-wrap .btn-outline {
  margin: 0;
  stroke: #121212;
  gap: 8px;
  width: 145px;
  height: 48px;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  text-align: left;
}
.calculator__btn-wrap .btn-accent {
  width: 158px;
  height: 48px;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  text-align: left;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.modal__content {
  background: #fff;
  padding: 50px;
  width: 539px;
  border-radius: 14px;
  position: relative;
}
@media (max-width: 991px) {
  .modal__content {
    padding: 20px;
    max-width: 90%;
  }
}
.modal__close {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .modal__close {
    width: 24px;
    height: 24px;
  }
}
.modal__title {
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .modal__title {
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
    text-align: center;
    margin-bottom: 12px;
  }
}
.modal__text {
  font-size: 22px;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .modal__text {
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    text-align: center;
    margin-bottom: 12px;
  }
}
.modal__form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.modal__form-input {
  width: 100%;
  height: 70px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  text-align: left;
  padding: 0 32px;
  border: 1.5px solid #121212;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .modal__form-input {
    height: 50px;
  }
}
.modal__form-input::placeholder {
  color: #9c9a9a;
}
.modal__form-submit {
  width: 100%;
  height: 70px;
}
@media (max-width: 991px) {
  .modal__form-submit {
    height: 50px;
  }
}

body.modal-open {
  overflow: hidden;
}

.modal__content-preview {
  background: #fff;
  padding: 50px;
  max-width: 1200px;
  height: 100%;
  border-radius: 14px;
  position: relative;
  overflow: scroll;
}
@media (max-width: 991px) {
  .modal__content-preview {
    padding: 20px;
    max-width: 90%;
  }
}

.footer {
  padding-top: 120px;
  background: #1a1c1e url(../../img/footer.png) 0 -556px/100% 159.275% no-repeat;
}
@media (max-width: 991px) {
  .footer {
    padding-top: 36px;
    background: #1a1c1e;
  }
}
.footer__title {
  color: #fffefe;
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  text-align: center;
  margin-bottom: 5px;
}
@media (max-width: 991px) {
  .footer__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
    text-align: center;
  }
}
.footer__text {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 37px;
  text-align: center;
  margin-bottom: 28px;
}
@media (max-width: 991px) {
  .footer__text {
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    text-align: center;
  }
}
.footer__form {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .footer__form {
    flex-direction: column;
    padding-bottom: 36px;
    margin-bottom: 36px;
  }
}
.footer__form-input {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 380px;
  height: 70px;
  border-radius: 50px;
  padding: 0 32px;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  text-align: left;
  border: 1.5px solid #9c9a9a;
}
.footer__form-input::placeholder {
  color: #999798;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  text-align: left;
}
@media (max-width: 991px) {
  .footer__form-input {
    width: 100%;
    height: 60px;
  }
}
.footer__form-input-btn {
  position: relative;
  width: 516px;
}
@media (max-width: 991px) {
  .footer__form-input-btn {
    width: 100%;
  }
}
.footer__form-input-btn input {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70px;
  border-radius: 50px;
  padding: 0 32px;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  text-align: left;
  border: 1.5px solid #9c9a9a;
}
.footer__form-input-btn input::placeholder {
  color: #999798;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  text-align: left;
}
@media (max-width: 991px) {
  .footer__form-input-btn input {
    height: 60px;
  }
}
.footer__form-input-btn button {
  position: absolute;
  top: 5px;
  right: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 281px;
  height: 60px;
  border-radius: 48px;
  background: #fff;
  border: 2px solid #fff;
  color: #121212;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.footer__form-input-btn button:hover {
  background-color: transparent;
  color: #fff;
}
@media (max-width: 991px) {
  .footer__form-input-btn button {
    width: 100%;
    height: 60px;
    position: static;
    margin-top: 12px;
  }
}
.footer__row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}
@media (max-width: 991px) {
  .footer__row {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 24px;
  }
}
.footer__col {
  max-width: 273px;
}
@media (max-width: 991px) {
  .footer__col {
    max-width: 100%;
  }
}
.footer__col h4 {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  line-height: normal;
  text-align: left;
  margin-bottom: 31px;
}
@media (max-width: 991px) {
  .footer__col h4 {
    margin-bottom: 8px;
  }
}
.footer__list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 22px;
}
@media (max-width: 991px) {
  .footer__list {
    gap: 8px;
  }
}
.footer__list-second {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 22px;
}
.footer__item-second .num {
  color: #fffefe;
  font-size: 29px;
  font-weight: 400;
  line-height: normal;
  text-align: left;
}
@media (max-width: 991px) {
  .footer__item-second .num {
    font-size: 26px;
  }
}
.footer__item-second .num span {
  color: #cdcdcd;
  font-size: 22px;
  font-weight: 500;
  line-height: normal;
  text-align: left;
}
@media (max-width: 991px) {
  .footer__item-second .num span {
    font-size: 26px;
  }
}
.footer__item-second .text {
  color: #fffefe;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  text-align: left;
}
.footer__item-second .list-one {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
}
.footer__item-second .text-second {
  color: #cdcdcd;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}
@media (max-width: 991px) {
  .footer__item-second .text-second {
    font-size: 14px;
  }
}
.footer__item-second .text-link {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  text-align: left;
  border-bottom: 1px solid #fff;
}
.footer__item-second .list-two {
  margin-top: 6px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
}
@media (max-width: 991px) {
  .footer__item-second .list-two {
    justify-content: space-between;
  }
}
.footer__item {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  text-align: left;
}
@media (max-width: 991px) {
  .footer__item {
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    text-align: left;
  }
}
.footer__descr {
  margin-top: 120px;
  padding: 40px 0;
  background: #141516;
}
@media (max-width: 991px) {
  .footer__descr {
    margin-top: 36px;
    padding: 24px 0 80px 0;
  }
}
.footer__descr-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 13px;
}
@media (max-width: 991px) {
  .footer__descr-list {
    justify-content: space-between;
    margin-bottom: 8px;
  }
}
.footer__descr-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer__descr-offer {
  display: block;
  margin: auto;
  width: fit-content;
  color: #999798;
  font-size: 14px;
  font-weight: 300;
  line-height: normal;
  text-align: center;
  border-bottom: 1px solid #999798;
  margin-bottom: 13px;
}
@media (max-width: 991px) {
  .footer__descr-offer {
    margin-bottom: 8px;
  }
}
.footer__descr-text {
  color: #999798;
  font-size: 14px;
  font-weight: 300;
  line-height: normal;
  text-align: center;
}