@charset "UTF-8";

:root {
  --bg-black: #f2f2f2;
  --color-black: #3a3a3a;
  --logo-black: #393e3a;
  --logo-green: #61a337;
  --logo-green-dark: #538138;
  --color-white: #ffffff;
  --bg: #0f1115;
  --card: #171a21;
  --text: #f3f5f7;
  --muted: rgba(243, 245, 247, 0.72);
  --line: rgba(255, 255, 255, 0.08);
  --accent: #c9a86a;
  --radius: 22px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

/* --- FONTS ---- */
@font-face {
  font-family: "Montserrat";
  src: url(../fonts/Montserrat-Light.ttf) format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

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

@font-face {
  font-family: "Montserrat";
  src: url(../fonts/Montserrat-Medium.ttf) format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url(../fonts/Montserrat-SemiBold.ttf) format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url(../fonts/Montserrat-Black.ttf) format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url(../fonts/Montserrat-one.ttf) format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* --- FONTS ---- */

/*--- COMMON ---*/
body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
}

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

h1 {
  font-weight: 600;
}

@media (max-width: 767px) {
  h1 {
    font-size: calc(24px + 47.6 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  h1 {
    font-size: calc(24px + 28 * 100vw / 1900);
  }
}

h2 {
  font-weight: 500;
}

@media (max-width: 767px) {
  h2 {
    font-size: calc(24px + 30.6 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  h2 {
    font-size: calc(24px + 18 * 100vw / 1900);
  }
}

h3 {
  font-weight: 500;
}

@media (max-width: 767px) {
  h3 {
    font-size: calc(20px + 13.6 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  h3 {
    font-size: calc(20px + 8 * 100vw / 1900);
  }
}

h4 {
  font-weight: 500;
}

@media (max-width: 767px) {
  h4 {
    font-size: calc(20px + 6.8 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  h4 {
    font-size: calc(20px + 4 * 100vw / 1900);
  }
}

p {
  line-height: 1.4;
}

@media (max-width: 767px) {
  p {
    font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  p {
    font-size: calc(16px + 2 * 100vw / 1900);
  }
}

a {
  text-decoration: none;
}

p:not(:last-child) {
  margin-bottom: 10px;
}

.container {
  max-width: 1400px;
  width: 100%;
  box-sizing: border-box;
  padding: 60px 15px;
  margin: 0 auto;
}

.btn {
  display: inline-block;
  border: none;
  background-image: linear-gradient(90deg, #fff0be 13%, #fddd6f 100%);
  box-sizing: border-box;
  padding: 18px 30px;
  color: #23241f;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  border-radius: 4px 4px;
  cursor: pointer;
}

@media (max-width: 575px) {
  .btn {
    padding: 16px 30px;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

address {
  font-style: normal;
}

.advantages-description {
  text-align: left;
  box-sizing: border-box;
  padding: 60px 0 0 0;
}

/*--- COMMON ---*/
/*--- HEADER ---*/
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-image: linear-gradient(900deg, rgba(0, 0, 0, 0.75) 13%, rgba(0, 0, 0, 0.01) 100%);
  z-index: 12;
}

@media (max-width: 767px) {
  .header {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
  }
}

.container-header {
  padding-top: 30px;
}

@media (max-width: 767px) {
  .container-header {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.main-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-navigation .btn {
  text-transform: none;
  padding: 14px 20px;
  letter-spacing: normal;
}

@media (max-width: 930px) {
  .main-navigation .btn {
    display: none;
  }
}

.logo {
  width: 300px;
}

@media (max-width: 1239px) {
  .logo {
    width: 250px;
  }
}

.logo__img {
  width: 45px;
  margin-right: 8px;
}

@media (max-width: 1239px) {
  .logo__img {
    width: 50px;
  }
}

@media (max-width: 767px) {
  .logo__img {
    width: 40px;
  }
}

.logo-link {
  display: flex;
  align-items: center;
  color: #fff;
}

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

.text-adv {
  width: 290px;
  color: #fff;
}

@media (max-width: 1300px) {
  .text-adv {
    width: 200px;
  }
}

@media (max-width: 1110px) {
  .text-adv {
    display: none;
  }
}

.social {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 210px;
}

@media (max-width: 930px) {
  .social {
    width: 170px;
  }
}

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

.social__text {
  color: #fff;
}

.social__text span {
  font-weight: 600;
}

.social-group {
  display: flex;
}

.social-group__link:not(:last-child) {
  margin-right: 6px;
}

.social-group__icon {
  width: 35px;
}

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

.header-online_group {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}

.modile-group {
  display: none;
  margin-top: 20px;
}

@media (max-width: 767px) {
  .modile-group {
    display: block;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .modile-group .header-online {
    display: block;
  }
}

@media (max-width: 767px) {
  .modile-group .header-online_group {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .modile-group .header-online .online-text {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .modile-group .header-online .online-link {
    margin: 6px 0;
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .modile-group .header-online .btn-online {
    font-size: 18px;
  }
}

.online-dot {
  width: 7px;
  height: 7px;
  background-color: #69e21e;
  border-radius: 100%;
  margin-right: 6px;
  box-shadow: 0 0 0 0 rgba(105, 226, 30, 0.7);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(105, 226, 30, 0.7);
  }

  70% {
    box-shadow: 0 0 0 5px rgba(105, 226, 30, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(105, 226, 30, 0);
  }
}

.online-text {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.online-img {
  width: 20px;
}

.online-link {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  margin-left: 4px;
}

.btn-online {
  font-size: 14px;
  color: #cfc88e;
  border-bottom: 1px dashed #cfc88e;
}

.header-menu {
  position: absolute;
  top: 120px;
  left: 0;
  right: 0;
  z-index: 15;
}

@media (max-width: 767px) {
  .header-menu {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.8);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    width: 100%;
    height: 100%;
    top: 60px;
    bottom: 0;
    transform: translateX(150%);
    transition: transform 0.25s ease-in-out;
  }
}

.header-menu--phone {
  transform: translateX(0);
}

@media (min-width: 768px) {
  .header-menu--active {
    position: fixed;
    top: 6px;
    right: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
  }
}

.container-header-menu {
  padding: 0 0;
}

.list-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 991px) {
  .list-menu {
    flex-wrap: wrap;
    margin-top: 20px;
  }
}
.list-menu__item {
  width: 14.5%;
  position: relative;
}
@media (max-width: 991px) {
  .list-menu__item {
    width: 100%;
    margin: 0 4px;
  }
}
.list-menu__item:nth-child(1) {
  width: 11%;
}
@media (max-width: 1166px) {
  .list-menu__item:nth-child(1) {
    width: 9%;
  }
}
@media (max-width: 991px) {
  .list-menu__item:nth-child(1) {
    width: 100%;
  }
}
@media (max-width: 1166px) {
  .list-menu__item:nth-child(2) {
    width: 16%;
  }
}
@media (max-width: 991px) {
  .list-menu__item:nth-child(2) {
    width: 100%;
  }
}
@media (max-width: 1270px) {
  .list-menu__item:nth-child(4) {
    width: 15%;
  }
}
@media (max-width: 1166px) {
  .list-menu__item:nth-child(4) {
    width: 16%;
  }
}
@media (max-width: 991px) {
  .list-menu__item:nth-child(4) {
    width: 100%;
  }
}
.list-menu__item:nth-child(6) {
  width: 11%;
}
@media (max-width: 991px) {
  .list-menu__item:nth-child(6) {
    width: 100%;
  }
}
.list-menu__item:nth-child(7) {
  width: 11%;
}
@media (max-width: 1166px) {
  .list-menu__item:nth-child(7) {
    width: 10%;
  }
}
@media (max-width: 991px) {
  .list-menu__item:nth-child(7) {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .list-menu__item:not(:last-child) {
    border-bottom: 1px solid #fff;
  }
}
.list-menu__link {
  display: block;
  width: 100%;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  box-sizing: border-box;
  padding: 20px 5px;
  font-weight: 500;
}
@media (max-width: 1239px) {
  .list-menu__link {
    padding: 20px 0px;
  }
}
@media (max-width: 991px) {
  .list-menu__link {
    padding: 10px 10px;
    text-align: left;
  }
}
.list-menu__link:hover {
  color: #cfc88e;
}
/*--- HEADER ---*/
/*--- BERGER ---*/
.burger {
  display: none;
  position: absolute;
  top: 16px;
  right: 16px;
  width: 30px;
  height: 25px;
  font-size: 0;
  background-color: transparent;
  border: none;
}

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

.burger::before,
.burger::after {
  position: absolute;
  content: "";
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 26px 26px;
  background-color: #fce383;
  transition: transform 0.25s ease-in-out;
}

.burger::before {
  top: 0;
}

.burger::after {
  bottom: 0;
}

.burger__line {
  position: absolute;
  top: calc(50% - 1.5px);
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #fce383;
  border-radius: 26px 26px;
  opacity: 1;
  transition: opacity 0.25 ease-in-out;
}

.burger--active::before {
  top: 45%;
  transform: rotate(45deg);
}

.burger--active::after {
  bottom: 45%;
  transform: rotate(-45deg);
}

.burger--active .burger__line {
  opacity: 0;
}

/*--- BERGER ---*/
/*--- DROPDOWN ---*/
.dropdown {
  position: relative;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  background-color: #ffffff;
  box-shadow:
    rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em,
    rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em,
    rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
  width: 400px;
  border-top: 3px solid #cfc88e;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: all 0.25s ease-in-out;
  z-index: 10;
}
@media (max-width: 991px) {
  .dropdown-content {
    width: 100%;
  }
}
.dropdown-content--mebel {
  width: 250px;
}

.dropdown-content::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 17%;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid white;
}

.dropdown-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.dropdown-list__item:not(:last-child) {
  border-bottom: 1px solid #e1e1e1;
}
.dropdown-list__link {
  display: block;
  box-sizing: border-box;
  padding: 10px 6px;
  color: #23241f;
  font-weight: 500;
}
@media (max-width: 991px) {
  .dropdown-list__link {
    padding: 12px 6px;
    font-size: 16px;
  }
}
.dropdown-list__link:hover {
  background-color: #fdf3b8;
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

/*--- DROPDOWN ---*/
/*--- HERO ---*/
.hero {
  background-image:
    linear-gradient(900deg, rgba(0, 0, 0, 0.3) 13%, rgba(0, 0, 0, 0.05) 100%), url(../img/background/hero.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
}

.hero::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 70%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 0;
  -webkit-mask: linear-gradient(90deg, rgb(0, 0, 0) 15%, rgba(0, 0, 0, 0) 100%);
  mask: linear-gradient(90deg, rgb(0, 0, 0) 15%, rgba(0, 0, 0, 0) 100%);
}

.hero--stoleshnica {
  background-image:
    linear-gradient(900deg, rgba(0, 0, 0, 0.35) 13%, rgba(0, 0, 0, 0.65) 100%), url(../img/background/2.png);
}

.hero--shkaf {
  background-image:
    linear-gradient(900deg, rgba(0, 0, 0, 0.15) 13%, rgba(0, 0, 0, 0.65) 100%), url(../img/background/bg-9.jpg);
}

.hero--garderob {
  background-image:
    linear-gradient(900deg, rgba(0, 0, 0, 0.15) 13%, rgba(0, 0, 0, 0.65) 100%), url(../img/background/bg-10.jpg);
}

.hero--stoleshnica::before {
  position: absolute;
  content: "";
  background: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  z-index: 0;
  -webkit-mask: linear-gradient(90deg, rgb(0, 0, 0) 15%, rgba(0, 0, 0, 0) 100%);
  mask: linear-gradient(90deg, rgb(0, 0, 0) 15%, rgba(0, 0, 0, 0) 100%);
}

.hero--podokonik {
  background-image:
    linear-gradient(900deg, rgba(0, 0, 0, 0.35) 13%, rgba(0, 0, 0, 0.65) 100%), url(../img/background/5.jpg);
}

.hero--podokonik::before {
  position: absolute;
  content: "";
  background: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  z-index: 0;
  -webkit-mask: linear-gradient(90deg, rgb(0, 0, 0) 15%, rgba(0, 0, 0, 0) 100%);
  mask: linear-gradient(90deg, rgb(0, 0, 0) 15%, rgba(0, 0, 0, 0) 100%);
}

.hero--poddon {
  background-image:
    linear-gradient(900deg, rgba(0, 0, 0, 0.35) 13%, rgba(0, 0, 0, 0.65) 100%), url(../img/background/6.jpg);
}

.hero--poddon::before {
  position: absolute;
  content: "";
  background: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  z-index: 0;
  -webkit-mask: linear-gradient(90deg, rgb(0, 0, 0) 15%, rgba(0, 0, 0, 0) 100%);
  mask: linear-gradient(90deg, rgb(0, 0, 0) 15%, rgba(0, 0, 0, 0) 100%);
}

.hero--vanna {
  background-image:
    linear-gradient(900deg, rgba(0, 0, 0, 0.35) 13%, rgba(0, 0, 0, 0.65) 100%), url(../img/background/7.webp);
}

.hero--vanna::before {
  position: absolute;
  content: "";
  background: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  z-index: 0;
  -webkit-mask: linear-gradient(90deg, rgb(0, 0, 0) 15%, rgba(0, 0, 0, 0) 100%);
  mask: linear-gradient(90deg, rgb(0, 0, 0) 15%, rgba(0, 0, 0, 0) 100%);
}

.hero--bar {
  background-image:
    linear-gradient(900deg, rgba(0, 0, 0, 0.35) 13%, rgba(0, 0, 0, 0.65) 100%), url(../img/background/8.jpg);
}

.hero--bar::before {
  position: absolute;
  content: "";
  background: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  z-index: 0;
  -webkit-mask: linear-gradient(90deg, rgb(0, 0, 0) 15%, rgba(0, 0, 0, 0) 100%);
  mask: linear-gradient(90deg, rgb(0, 0, 0) 15%, rgba(0, 0, 0, 0) 100%);
}

.hero--moika {
  background-image:
    linear-gradient(900deg, rgba(0, 0, 0, 0.35) 13%, rgba(0, 0, 0, 0.65) 100%), url(../img/background/9.webp);
}

.hero--moika::before {
  position: absolute;
  content: "";
  background: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  z-index: 0;
  -webkit-mask: linear-gradient(90deg, rgb(0, 0, 0) 15%, rgba(0, 0, 0, 0) 100%);
  mask: linear-gradient(90deg, rgb(0, 0, 0) 15%, rgba(0, 0, 0, 0) 100%);
}

.container-hero {
  position: relative;
  padding-bottom: 80px;
  z-index: 1;
}

@media (max-width: 767px) {
  .container-hero {
    padding-bottom: 50px;
  }
}

.container-hero h1 {
  color: #ffffff;
  font-weight: 400;
  line-height: 1.4;
}

@media (max-width: 767px) {
  .container-hero h1 {
    line-height: 1.2;
  }
}

.container-hero h1 span {
  font-weight: 600;
  border-bottom: 1px dashed #fdf3b8;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .container-hero h1 span {
    border-bottom: none;
  }
}

.text-hero-product {
  display: inline-block;
  text-align: center;
  margin: 20px 0 40px 0;
  color: #fdf3b8;
  background-color: rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
  padding: 6px 16px;
  border-radius: 28px 28px;
}

@media (max-width: 767px) {
  .text-hero-product {
    font-size: calc(22px + 13.6 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .text-hero-product {
    font-size: calc(22px + 8 * 100vw / 1900);
  }
}

.text-hero {
  color: #fdf3b8;
  font-weight: 500;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .text-hero {
    font-size: calc(22px + 13.6 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .text-hero {
    font-size: calc(22px + 8 * 100vw / 1900);
  }
}

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

.hero-content {
  width: 70%;
  margin-top: 150px;
}

@media (max-width: 1239px) {
  .hero-content {
    width: 100%;
    margin-top: 150px;
  }
}

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

.hero-content .btn {
  margin-top: 60px;
}

@media (max-width: 400px) {
  .hero-content .btn {
    width: 100%;
    text-align: center;
  }
}

.hero-product {
  width: 76%;
  margin: 0 auto;
  margin-top: 160px;
  text-align: center;
}

@media (max-width: 1240px) {
  .hero-product {
    width: 100%;
  }
}

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

.group-hero {
  display: flex;
  align-items: center;
  margin: 48px 0;
}

@media (max-width: 575px) {
  .group-hero {
    margin: 30px 0;
  }
}

.group-hero__dots {
  width: 8px;
  height: 8px;
  margin-right: 4px;
  border-radius: 100%;
  border: 1px solid #4a493e;
}

.group-hero__dots:first-child {
  width: 6px;
  height: 6px;
  border: 1px solid #323231;
}

.group-hero__dots:last-child {
  width: 10px;
  height: 10px;
  border: 1px solid #737054;
}

.group-dots {
  display: flex;
  align-items: center;
}

.text-hero-date {
  color: #ffffff;
  line-height: 1;
  margin-left: 4px;
}

@media (max-width: 767px) {
  .text-hero-date {
    font-size: calc(20px + 10.2 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .text-hero-date {
    font-size: calc(20px + 6 * 100vw / 1900);
  }
}

.title-hero-product {
  display: inline-block;
  color: #fdf3b8;
  margin: 70px 0;
  position: relative;
  font-weight: 500;
}

@media (max-width: 767px) {
  .title-hero-product {
    font-size: calc(20px + 10.2 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .title-hero-product {
    font-size: calc(20px + 6 * 100vw / 1900);
  }
}

@media (max-width: 567px) {
  .title-hero-product {
    margin: 40px 0;
  }
}

.title-hero-product::after,
.title-hero-product::before {
  position: absolute;
  content: "";
  top: 15px;
  width: 50px;
  height: 2px;
  background-color: #fdf3b8;
}

.title-hero-product::before {
  left: -54px;
}

.title-hero-product::after {
  right: -54px;
}

.hero-adv {
  display: flex;
  gap: 20px;
}

@media (max-width: 991px) {
  .hero-adv {
    gap: 10px;
    flex-wrap: wrap;
  }
}

.hero-adv__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(25% - 15px);
}

@media (max-width: 800px) {
  .hero-adv__item {
    width: calc(50% - 5px);
  }
}

.hero-adv__circle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 100%;
}

@media (max-width: 400px) {
  .hero-adv__circle {
    width: 25px;
    height: 25px;
  }
}

.hero-adv__icon {
  width: 60%;
  margin-left: 20%;
}

.hero-adv__text {
  font-size: 14px;
  color: #ffffff;
  width: calc(100% - 50px);
  line-height: 1.3;
}

@media (max-width: 400px) {
  .hero-adv__text {
    font-size: 12px;
    width: calc(100% - 32px);
  }
}

.hero-adv__text span {
  font-weight: 600;
}

/*--- HERO ---*/
/*--- CATALOG ---*/
.catalog {
  background-image: url(../img/background/image-7.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
}

@media (max-width: 767px) {
  .container-catalog {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.container-catalog h2 {
  text-align: center;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .container-catalog .text-catalog {
    font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .container-catalog .text-catalog {
    font-size: calc(16px + 2 * 100vw / 1900);
  }
}

.wrapper-catalog {
  display: flex;
  justify-content: flex-start;
  margin-top: 50px;
  background-color: #ffffff;
  position: relative;
  box-sizing: border-box;
  padding: 0 15px 60px 15px;
  border-radius: 4px 4px;
  z-index: 1;
}

@media (max-width: 1400px) {
  .wrapper-catalog {
    padding: 0 10px 60px 10px;
  }
}

@media (max-width: 1239px) {
  .wrapper-catalog {
    flex-direction: column;
    margin-top: 30px;
  }
}

@media (max-width: 400px) {
  .wrapper-catalog {
    padding: 0 10px 30px 10px;
  }
}

.tab {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  overflow: hidden;
  width: 280px;
}

@media (max-width: 1330px) {
  .tab {
    width: 250px;
  }
}

@media (max-width: 1239px) {
  .tab {
    flex-direction: row;
    gap: 10px;
    width: 100%;
    margin-bottom: 20px;
  }
}

@media (max-width: 575px) {
  .tab {
    gap: 5px;
  }
}

/* Style the buttons inside the tab */
.tab button {
  width: 100%;
  background-color: transparent;
  border: none;
  outline: none;
  padding: 12px 0px;
  transition: 0.3s;
  font-size: 18px;
  text-align: left;
  color: #23241f;
  cursor: pointer;
}

@media (max-width: 1239px) {
  .tab button {
    width: calc(25% - 10px);
    border: 1px solid #cfc88e;
    box-sizing: border-box;
    padding: 10px 10px;
  }
}

@media (max-width: 1120px) {
  .tab button {
    width: calc(33.333% - 10px);
  }
}

@media (max-width: 991px) {
  .tab button {
    width: calc(50% - 10px);
  }
}

@media (max-width: 575px) {
  .tab button {
    width: 100%;
  }
}

/* Change background color of buttons on hover */
.tab button:hover span {
  border-bottom: 2px solid #cfc88e;
}

/* Create an active/current tablink class */
.tab button.active span {
  border-bottom: 2px solid #cfc88e;
}

@media (max-width: 1239px) {
  .tab button.active span {
    border-bottom: none;
  }
}

@media (max-width: 1239px) {
  .tab button.active {
    background-image: linear-gradient(90deg, #fff0be 13%, #fddd6f 100%);
  }
}

/* Style the tab content */
.tabcontent {
  width: calc(100% - 300px);
  display: none;
}

@media (max-width: 1330px) {
  .tabcontent {
    width: calc(100% - 280px);
  }
}

@media (max-width: 1239px) {
  .tabcontent {
    width: 100%;
  }
}

.tabcontent h3 {
  margin-bottom: 20px;
}

.wrapper-tabcontent {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .wrapper-tabcontent {
    flex-direction: column;
  }
}

.catalog-img {
  width: 450px;
  border-radius: 4px 4px;
}

@media (max-width: 1330px) {
  .catalog-img {
    width: 420px;
  }
}

@media (max-width: 1239px) {
  .catalog-img {
    width: 400px;
  }
}

@media (max-width: 991px) {
  .catalog-img {
    width: 100%;
    height: 300px;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.tab-icon {
  width: 20px;
}

.catalog-content {
  width: calc(100% - 470px);
}

@media (max-width: 1330px) {
  .catalog-content {
    width: calc(100% - 435px);
  }
}

@media (max-width: 1239px) {
  .catalog-content {
    width: calc(100% - 415px);
  }
}

@media (max-width: 991px) {
  .catalog-content {
    width: 100%;
    margin-top: 20px;
  }
}

.group-tab {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

@media (max-width: 1239px) {
  .group-tab {
    justify-content: flex-start;
  }
}

@media (max-width: 575px) {
  .group-tab {
    flex-direction: column;
    margin-top: 20px;
  }
}

.group-tab .btn {
  text-transform: none;
}

.group-tab__link {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  color: #23241f;
  border-bottom: 2px solid #cfc88e;
}

@media (max-width: 1239px) {
  .group-tab__link {
    margin-left: 15px;
  }
}

@media (max-width: 575px) {
  .group-tab__link {
    justify-content: center;
    margin-top: 10px;
    margin-left: 0;
  }
}

.group-tab__link span {
  display: block;
  margin-right: 6px;
}

.group-tab__link--calc {
  border: 2px solid #f5d15b;
  padding: 18px 30px;
  color: #23241f;
  font-weight: 600;
  letter-spacing: 2px;
  border-radius: 4px 4px;
}

@media (max-width: 1330px) {
  .group-tab__link--calc {
    padding: 18px 15px;
  }
}

@media (max-width: 575px) {
  .group-tab__link--calc {
    padding: 12px 15px;
  }
}

/*--- CATALOG ---*/
/*--- MAIN-INFO ---*/
.main-info {
  background-image: url(../img/background/bg-main.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: -250px;
  z-index: 0;
}

.container-main-info {
  padding-top: 270px;
  padding-bottom: 100px;
  color: #fff;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

@media (max-width: 767px) {
  .container-main-info {
    padding-bottom: 50px;
  }
}

.container-main-info::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.05);
  top: 0;
  left: 27%;
  z-index: 0;
}

.container-main-info::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.05);
  top: 0;
  right: 27%;
  z-index: 0;
}

.container-main-info h2 {
  width: 820px;
  margin: 0 auto;
  text-align: center;
  font-weight: 400;
}

@media (max-width: 991px) {
  .container-main-info h2 {
    width: 100%;
  }
}

.container-main-info h2 span {
  font-weight: 600;
}

.main-info-content {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 1239px) {
  .main-info-content {
    display: block;
  }
}

.main-info-img {
  position: absolute;
  top: 450px;
  left: calc(50% - 350px);
  width: 700px;
}

@media (max-width: 1239px) {
  .main-info-img {
    display: none;
    width: 100%;
  }
}

@media (max-width: 1239px) {
  .main-info-img {
    display: block;
    position: static;
    margin-top: 30px;
  }
}

.wrapper-group-info {
  margin-top: 110px;
}

@media (max-width: 1239px) {
  .wrapper-group-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 15px;
    margin-top: 50px;
  }
}

.group-main-info {
  position: relative;
  text-align: center;
}

@media (max-width: 1239px) {
  .group-main-info {
    position: static;
    width: calc(50% - 10px);
    border: 1px solid #fff;
    box-sizing: border-box;
    padding: 15px 15px;
  }
}

@media (max-width: 767px) {
  .group-main-info {
    width: 100%;
  }
}

.group-main-info__content {
  width: 300px;
}

@media (max-width: 1239px) {
  .group-main-info__content {
    width: 100%;
  }
}

.group-main-info__title {
  font-weight: 600;
  margin-bottom: 6px;
}

@media (max-width: 767px) {
  .group-main-info__title {
    font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .group-main-info__title {
    font-size: calc(16px + 2 * 100vw / 1900);
  }
}

.group-main-info__text {
  color: rgba(255, 255, 255, 0.65);
}

.group-main-info:nth-child(1) {
  margin-left: 90px;
}

@media (max-width: 1239px) {
  .group-main-info:nth-child(1) {
    margin: 0;
  }
}

.group-main-info:nth-child(2) {
  margin-top: 55px;
}

@media (max-width: 1239px) {
  .group-main-info:nth-child(2) {
    margin: 0;
  }
}

.group-main-info:nth-child(3) {
  margin-top: 60px;
}

@media (max-width: 1239px) {
  .group-main-info:nth-child(3) {
    margin: 0;
  }
}

.group-main-info:nth-child(4) {
  margin-top: 60px;
  margin-left: 90px;
}

@media (max-width: 1239px) {
  .group-main-info:nth-child(4) {
    margin: 0;
  }
}

.wrapper-group-info:nth-of-type(2) .group-main-info:nth-child(1) {
  position: relative;
  right: 170px;
}

@media (max-width: 1390px) {
  .wrapper-group-info:nth-of-type(2) .group-main-info:nth-child(1) {
    right: 100px;
  }
}

@media (max-width: 1239px) {
  .wrapper-group-info:nth-of-type(2) .group-main-info:nth-child(1) {
    position: static;
  }
}

.wrapper-group-info:nth-of-type(2) .group-main-info:nth-child(2) {
  margin-top: 60px;
  margin-left: 70px;
}

@media (max-width: 1390px) {
  .wrapper-group-info:nth-of-type(2) .group-main-info:nth-child(2) {
    margin-left: 120px;
  }
}

@media (max-width: 1239px) {
  .wrapper-group-info:nth-of-type(2) .group-main-info:nth-child(2) {
    margin: 0;
  }
}

.wrapper-group-info:nth-of-type(2) .group-main-info:nth-child(2) .group-main-info__content {
  width: 300px;
  margin-right: 0;
}

@media (max-width: 1239px) {
  .wrapper-group-info:nth-of-type(2) .group-main-info:nth-child(2) .group-main-info__content {
    width: 100%;
  }
}

.wrapper-group-info:nth-of-type(2) .group-main-info:nth-child(3) {
  position: relative;
  right: 80px;
  margin-top: 60px;
}

@media (max-width: 1390px) {
  .wrapper-group-info:nth-of-type(2) .group-main-info:nth-child(3) {
    right: 0px;
  }
}

@media (max-width: 1239px) {
  .wrapper-group-info:nth-of-type(2) .group-main-info:nth-child(3) {
    margin: 0;
  }
}

.wrapper-group-info:nth-of-type(2) .group-main-info:nth-child(3) .group-main-info__content {
  width: 350px;
  margin-right: 0;
}

@media (max-width: 1239px) {
  .wrapper-group-info:nth-of-type(2) .group-main-info:nth-child(3) .group-main-info__content {
    width: 100%;
  }
}

.circle-info {
  position: absolute;
  width: 35px;
  height: 35px;
  border-radius: 100%;
  background-color: #fce383;
  box-shadow:
    0 0 10px 5px rgba(252, 227, 131, 0.1),
    0 0 10px 10px rgba(252, 227, 131, 0.1),
    0 0 10px 15px rgba(252, 227, 131, 0.1);
  z-index: 10;
}

@media (max-width: 1390px) {
  .circle-info {
    display: none;
  }
}

.circle-info::before {
  position: absolute;
  content: "";
  top: calc(50% - 11px);
  left: calc(50% - 11px);
  background-image: url(../img/icon/check-2.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 22px;
  height: 22px;
}

.group-main-info:nth-child(1) .circle-info {
  top: calc(50% - 11px);
  right: -115px;
}

.group-main-info:nth-child(2) .circle-info {
  top: calc(50% - 11px);
  right: 10px;
}

.group-main-info:nth-child(3) .circle-info {
  top: calc(50% - 30px);
  right: -15px;
}

.group-main-info:nth-child(4) .group-main-info__content {
  width: 320px;
}

@media (max-width: 1239px) {
  .group-main-info:nth-child(4) .group-main-info__content {
    width: 100%;
  }
}

.group-main-info:nth-child(4) .circle-info {
  top: calc(50% - 40px);
  right: -135px;
}

.wrapper-group-info:nth-of-type(2) .group-main-info:nth-child(1) .circle-info {
  top: calc(50% - 30px);
  left: -65px;
  background-color: #d8d9d9;
  box-shadow: none;
}

.wrapper-group-info:nth-of-type(2) .group-main-info:nth-child(2) .circle-info {
  top: calc(50% - 20px);
  left: -40px;
  background-color: #d8d9d9;
  box-shadow: none;
}

.wrapper-group-info:nth-of-type(2) .group-main-info:nth-child(3) .circle-info {
  top: calc(50% - 30px);
  left: -60px;
  background-color: #d8d9d9;
  box-shadow: none;
}

/*--- MAIN-INFO ---*/
/*--- CALC ---*/
.calc {
  background-image: url(../img/background/bg-4.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
}

.container-calc {
  text-align: center;
  border-left: 1px solid rgba(0, 0, 0, 0.05);
  border-right: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.container-calc::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.05);
  top: 0;
  left: 27%;
  z-index: 0;
}

.container-calc::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.05);
  top: 0;
  right: 27%;
  z-index: 0;
}

.form-calc {
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.55) 13%, rgba(255, 255, 255, 0.75) 97%), url(../img/background/1.jpg);
  background-color: #fff;
  box-shadow:
    rgba(14, 30, 37, 0.12) 0px 2px 4px 0px,
    rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  margin-top: 50px;
  border-radius: 12px;
  color: #23241f;
  text-align: left;
  font-weight: 400;
  position: relative;
  z-index: 5;
}

@media (max-width: 850px) {
  .form-calc {
    flex-direction: column;
  }
}

.form-calc__content {
  width: calc(100% - 500px);
  box-sizing: border-box;
  padding: 30px;
}

@media (max-width: 1175px) {
  .form-calc__content {
    width: calc(100% - 350px);
  }
}

@media (max-width: 1022px) {
  .form-calc__content {
    padding: 20px;
  }
}

@media (max-width: 850px) {
  .form-calc__content {
    width: 100%;
  }
}

.form-calc__select {
  width: 100%;
  height: 50px;
  box-sizing: border-box;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid rgba(110, 132, 153, 0.4745098039);
  outline-color: rgba(11, 158, 216, 0.431372549);
}

@media (max-width: 850px) {
  .form-calc__select {
    height: 42px;
  }
}

.form-calc__file {
  display: none;
}

.form-calc__img {
  width: 30px;
}

.form-calc__contact {
  width: 500px;
  box-sizing: border-box;
  background-color: #f5f5f5;
  border-left: 1px solid #bfbfbf;
  border-radius: 0 12px 12px 0;
  padding: 30px;
}

@media (max-width: 1175px) {
  .form-calc__contact {
    width: 350px;
  }
}

@media (max-width: 1022px) {
  .form-calc__contact {
    padding: 20px;
  }
}

@media (max-width: 850px) {
  .form-calc__contact {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .form-calc__contact .text {
    font-size: calc(14px + 3.4 * (100vw - 320px) / 1920);
  }
}

@media (min-width: 767px) {
  .form-calc__contact .text {
    font-size: calc(14px + 0.1041666667vw);
  }
}

.form-calc__title {
  width: 65%;
  margin: 0 auto;
  margin-bottom: 35px;
  text-align: center;
}

@media (max-width: 767px) {
  .form-calc__title {
    font-size: calc(20px + 3.4 * (100vw - 320px) / 1920);
  }
}

@media (min-width: 767px) {
  .form-calc__title {
    font-size: calc(20px + 0.2083333333vw);
  }
}

.form-calc__title span {
  font-weight: 600;
}

.form-calc__input {
  width: 100%;
  height: 50px;
  box-sizing: border-box;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid rgba(110, 132, 153, 0.4745098039);
  outline-color: rgba(11, 158, 216, 0.431372549);
}

@media (max-width: 850px) {
  .form-calc__input {
    height: 42px;
  }
}

.form-calc__radio {
  display: none;
}

.form-calc .text {
  text-align: center;
  line-height: 1.4;
}

.form-calc .text .link {
  font-weight: 600;
  color: #23241f;
}

.form-calc .btn {
  width: 100%;
  margin: 0 auto;
  margin-top: 20px;
}

@media (max-width: 450px) {
  .form-calc .btn {
    width: 100%;
    padding: 16px;
  }
}

.group-form__text {
  margin-bottom: 6px;
}

.group-form label {
  display: flex;
  align-items: center;
  border-radius: 6px;
  background: linear-gradient(115deg, #e5ebea, #eee);
  color: #23241f;
  box-sizing: border-box;
  padding: 10px 30px;
  width: 250px;
  cursor: pointer;
}

@media (max-width: 502px) {
  .group-form label {
    width: 100%;
  }
}

.group-form:not(:last-child) {
  margin-bottom: 16px;
}

.group-content {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 1002px) {
  .group-content {
    flex-wrap: wrap;
  }
}

.group-content--radio {
  justify-content: flex-start;
  margin-top: 6px;
}

.group-content .group-form:first-child {
  width: 300px;
}

@media (max-width: 1002px) {
  .group-content .group-form:first-child {
    width: 100%;
  }
}

.group-content .group-form:last-child {
  width: calc(100% - 330px);
}

@media (max-width: 1002px) {
  .group-content .group-form:last-child {
    width: 100%;
    margin-bottom: 16px;
  }
}

.group-radio {
  width: 205px;
  margin-bottom: 20px;
}

@media (max-width: 502px) {
  .group-radio {
    width: 100%;
  }
}

.label-radio {
  display: flex;
  align-items: center;
  background: linear-gradient(115deg, #e5ebea, #eee);
  color: #23241f;
  box-sizing: border-box;
  padding: 10px 20px;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
}

.label-radio::before {
  position: absolute;
  content: "";
  left: 20px;
  width: 20px;
  height: 20px;
  background-color: #f9f9f9;
}

.label-radio span {
  padding-left: 30px;
}

.group-radio:first-child {
  margin-right: 20px;
}

@media (max-width: 502px) {
  .group-radio:first-child {
    margin-right: 0;
  }
}

.form-calc__radio:checked + .label-radio {
  background: rgba(37, 211, 101, 0.4941176471);
  font-weight: 500;
  color: #23241f;
}

.form-calc__radio:checked + .label-radio::after {
  position: absolute;
  content: "✔";
  left: 24px;
  color: #23241f;
}

.sale {
  text-align: left;
  margin-top: 90px;
  position: relative;
  z-index: 4;
}

@media (max-width: 767px) {
  .sale {
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .sale .text {
    font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .sale .text {
    font-size: calc(16px + 2 * 100vw / 1900);
  }
}

.wrapper-sale {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .wrapper-sale {
    flex-direction: column;
  }
}

.wrapper-sale__content {
  width: 65%;
  box-sizing: border-box;
  padding: 0 35px 0 0;
}

@media (max-width: 1300px) {
  .wrapper-sale__content {
    width: 60%;
  }
}

@media (max-width: 1100px) {
  .wrapper-sale__content {
    width: 53%;
    padding: 0 0px 0 0;
  }
}

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

.wrapper-sale__title {
  width: 600px;
}

@media (max-width: 767px) {
  .wrapper-sale__title {
    font-size: calc(20px + 17 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .wrapper-sale__title {
    font-size: calc(20px + 10 * 100vw / 1900);
  }
}

@media (max-width: 1100px) {
  .wrapper-sale__title {
    width: 100%;
  }
}

.wrapper-sale__title span {
  font-weight: 600;
}

.wrapper-sale__title:first-child {
  margin: 10px 0 20px 0;
}

@media (max-width: 991px) {
  .wrapper-sale__title:first-child {
    margin: 0px 0 10px 0;
  }
}

.wrapper-sale__title:last-child {
  margin-top: 20px;
}

@media (max-width: 767px) {
  .wrapper-sale__text {
    font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .wrapper-sale__text {
    font-size: calc(16px + 2 * 100vw / 1900);
  }
}

.wrapper-sale__zayavka {
  width: 32%;
}

@media (max-width: 1300px) {
  .wrapper-sale__zayavka {
    width: 38%;
  }
}

@media (max-width: 1100px) {
  .wrapper-sale__zayavka {
    width: 45%;
  }
}

@media (max-width: 991px) {
  .wrapper-sale__zayavka {
    width: 100%;
    margin-top: 20px;
  }
}

.wrapper-sale__zayavka .btn {
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 18px 50px;
  line-height: 1.35;
}

@media (max-width: 991px) {
  .wrapper-sale__zayavka .btn {
    width: 400px;
    margin: 0 auto;
    padding: 14px 20px;
  }
}

@media (max-width: 575px) {
  .wrapper-sale__zayavka .btn {
    width: 100%;
    padding: 14px 10px;
  }
}

.wrapper-sale-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.wrapper-sale-group__text {
  width: calc(100% - 60px);
  line-height: 1.35;
}

@media (max-width: 991px) {
  .wrapper-sale-group__text {
    width: calc(100% - 45px);
  }
}

.wrapper-sale-group__text span {
  font-weight: 600;
}

.sale-circle {
  position: relative;
  width: 35px;
  height: 35px;
  border-radius: 100%;
  background-color: #fce383;
  box-shadow:
    0 0 10px 5px rgba(252, 227, 131, 0.1),
    0 0 10px 10px rgba(252, 227, 131, 0.1),
    0 0 10px 15px rgba(252, 227, 131, 0.1);
  z-index: 10;
}

.sale-circle::before {
  position: absolute;
  content: "";
  top: calc(50% - 11px);
  left: calc(50% - 11px);
  background-image: url(../img/icon/check-2.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 22px;
  height: 22px;
}

.img-sale-link {
  width: 35px;
  transform: rotate(-40deg);
}

.wrapper-sale-obrazec {
  display: flex;
  justify-content: flex-start;
  position: relative;
  margin-left: 38px;
  top: 150px;
}

@media (max-width: 1400px) {
  .wrapper-sale-obrazec {
    top: 190px;
  }
}

@media (max-width: 1240px) {
  .wrapper-sale-obrazec {
    top: 170px;
  }
}

@media (max-width: 900px) {
  .wrapper-sale-obrazec {
    top: 160px;
  }
}

@media (max-width: 800px) {
  .wrapper-sale-obrazec {
    top: 150px;
  }
}

@media (max-width: 767px) {
  .wrapper-sale-obrazec {
    top: 175px;
  }
}

@media (max-width: 700px) {
  .wrapper-sale-obrazec {
    top: 155px;
  }
}

@media (max-width: 600px) {
  .wrapper-sale-obrazec {
    top: 145px;
  }
}

@media (max-width: 567px) {
  .wrapper-sale-obrazec {
    top: 175px;
    margin-left: 0;
  }
}

@media (max-width: 450px) {
  .wrapper-sale-obrazec {
    top: 145px;
  }
}

@media (max-width: 400px) {
  .wrapper-sale-obrazec {
    top: 125px;
  }
}

.wrapper-sale-obrazec__item {
  position: relative;
}

.wrapper-sale-obrazec__img {
  position: relative;
  width: 258px;
  transform: rotate(45deg);
  z-index: 2;
}

@media (max-width: 1400px) {
  .wrapper-sale-obrazec__img {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .wrapper-sale-obrazec__item:nth-child(5) .wrapper-sale-obrazec__img {
    display: none;
  }
}

@media (max-width: 767px) {
  .wrapper-sale-obrazec__item:nth-child(4) .wrapper-sale-obrazec__img {
    display: none;
  }
}

@media (max-width: 567px) {
  .wrapper-sale-obrazec__item:nth-child(3) .wrapper-sale-obrazec__img {
    display: none;
  }
}

.sale-main {
  position: absolute;
  top: -25px;
  right: -26px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 95px;
  height: 95px;
  border-radius: 100%;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 13%, rgba(0, 0, 0, 0.9) 100%);
  z-index: 1;
}

@media (max-width: 1400px) {
  .sale-main {
    right: -26px;
  }
}

@media (max-width: 1240px) {
  .sale-main {
    right: -36px;
  }
}

@media (max-width: 1240px) {
  .sale-main {
    top: -40px;
    right: -40px;
  }
}

.sale-main__text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
}

.sale-main__title {
  color: #fff;
}

@media (max-width: 991px) {
  .wrapper-sale-obrazec__item:nth-child(4) .sale-main {
    display: none;
  }
}

@media (max-width: 767px) {
  .wrapper-sale-obrazec__item:nth-child(3) .sale-main {
    display: none;
  }
}

@media (max-width: 567px) {
  .wrapper-sale-obrazec__item:nth-child(2) .sale-main {
    display: none;
  }
}

/*--- CALC ---*/
/*--- COMPANY ---*/
.company {
  background-image: url(../img/background/bg-main.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.container-company {
  padding-bottom: 80px;
  color: #fff;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.container-company::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.05);
  top: 0;
  left: 27%;
  z-index: 0;
}

.container-company::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.05);
  top: 0;
  right: 27%;
  z-index: 0;
}

.container-company h2 {
  margin-bottom: 30px;
}

.wrapper-company {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .wrapper-company {
    flex-direction: column;
  }
}

.wrapper-company__content {
  width: calc(50% - 15px);
  box-sizing: border-box;
}

@media (max-width: 991px) {
  .wrapper-company__content {
    width: 100%;
    margin-bottom: 16px;
  }
}

.wrapper-company__content .btn {
  margin-top: 20px;
}

@media (max-width: 575px) {
  .wrapper-company__content .btn {
    width: 100%;
    text-align: center;
  }
}

.wrapper-company__photo {
  box-sizing: border-box;
  width: calc(50% - 0px);
}

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

.wrapper-grid {
  display: grid;
  grid-template-rows: 228px 228px;
  grid-template-columns: 50% 50%;
  box-sizing: border-box;
}

@media (max-width: 1239px) {
  .wrapper-grid {
    grid-template-rows: 200px 200px;
  }
}

@media (max-width: 767px) {
  .wrapper-grid {
    grid-template-rows: 150px 150px;
  }
}

@media (max-width: 575px) {
  .wrapper-grid {
    grid-template-rows: 120px 120px;
  }
}

.wrapper-grid .item-grid-0 {
  grid-row-start: 1;
  grid-column-start: 1;
  grid-row-end: 3;
  grid-column-end: 2;
  border-radius: 4px 4px;
  margin-right: 20px;
}

.wrapper-grid .item-grid-1 {
  grid-row-start: 1;
  grid-column-start: 2;
  grid-row-end: 2;
  grid-column-end: 3;
  border-radius: 4px 4px;
  margin-bottom: 20px;
}

.wrapper-grid .item-grid-2 {
  grid-row-start: 2;
  grid-column-start: 2;
  grid-row-end: 3;
  grid-column-end: 3;
  border-radius: 4px 4px;
}

.wrapper-grid__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 4px 4px;
}

.wrapper-garant {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background-image: url(../img/background/bg-4.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  margin-top: 80px;
  color: #23241f;
  border-radius: 6px 6px;
  overflow: hidden;
}

@media (max-width: 991px) {
  .wrapper-garant {
    flex-direction: column;
  }
}

@media (max-width: 450px) {
  .wrapper-garant {
    margin-top: 40px;
  }
}

.wrapper-garant--gallery {
  margin-top: 20px;
}

.wrapper-garant__item {
  width: calc(50% - 200px);
  box-sizing: border-box;
  padding: 26px 20px;
}

@media (max-width: 1300px) {
  .wrapper-garant__item {
    width: calc(50% - 150px);
  }
}

@media (max-width: 1240px) {
  .wrapper-garant__item {
    width: calc(50% - 90px);
  }
}

@media (max-width: 991px) {
  .wrapper-garant__item {
    width: 100%;
    padding: 15px 15px;
  }
}

.wrapper-garant__title {
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .wrapper-garant__title {
    font-size: calc(22px + 13.6 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .wrapper-garant__title {
    font-size: calc(22px + 8 * 100vw / 1900);
  }
}

.wrapper-garant__title span {
  font-weight: 600;
}

.wrapper-garant__text {
  line-height: 1.35;
}

@media (max-width: 767px) {
  .wrapper-garant__text {
    font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .wrapper-garant__text {
    font-size: calc(16px + 2 * 100vw / 1900);
  }
}

.wrapper-garant__text span {
  font-weight: 600;
}

.img-garant {
  width: 250px;
  transform: rotate(45deg);
  position: relative;
  top: 130px;
}

@media (max-width: 1300px) {
  .img-garant {
    top: 30px;
    width: 200px;
  }
}

@media (max-width: 1240px) {
  .img-garant {
    top: 60px;
    width: 120px;
  }
}

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

.wrapper-brend {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 20px;
}

@media (max-width: 567px) {
  .wrapper-brend {
    gap: 15px;
  }
}

.wrapper-brend__item {
  width: 33%;
  box-sizing: border-box;
  padding: 10px;
  padding-bottom: 0;
}

@media (max-width: 567px) {
  .wrapper-brend__item {
    width: calc(50% - 10px);
    box-sizing: border-box;
    padding: 10px 10px;
    border: 1px solid #cfc88e;
  }
}

.wrapper-brend__img {
  width: 100%;
}

.portfolio-hero {
  margin: 70px 0 30px 0;
  text-align: center;
}

@media (max-width: 567px) {
  .portfolio-hero {
    margin: 40px 0 30px 0;
  }
}

.portfolio-hero--portfolio {
  margin-top: 0;
}

.mr-t-40 {
  margin: 40px 0 0 0;
}

@media (max-width: 767px) {
  .text-portfolio {
    font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .text-portfolio {
    font-size: calc(16px + 2 * 100vw / 1900);
  }
}

.wrapper-portfolio {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 50px;
}

@media (max-width: 767px) {
  .wrapper-portfolio {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}

.wrapper-portfolio__item:nth-child(1) {
  grid-column-start: span 2;
}

.wrapper-portfolio__item:nth-child(7) {
  grid-column-start: span 2;
}

@media (max-width: 767px) {
  .wrapper-portfolio__item:nth-child(8) {
    display: none;
  }
}

.wrapper-portfolio__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 4px;
}

/*--- COMPANY ---*/
/*--- CONTACT-HERO ---*/
.contact-hero {
  background-image: url(../img/background/Moskva.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.container-contact-hero {
  padding-top: 70px;
  padding-bottom: 70px;
  border-left: 1px solid rgba(0, 0, 0, 0.05);
  border-right: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

@media (max-width: 400px) {
  .container-contact-hero {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.container-contact-hero::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.05);
  top: 0;
  left: 27%;
  z-index: 0;
}

.container-contact-hero::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.05);
  top: 0;
  right: 27%;
  z-index: 0;
}

.container-contact-hero h1 {
  font-weight: 500;
}

@media (max-width: 767px) {
  .container-contact-hero h1 {
    font-size: calc(26px + 27.2 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .container-contact-hero h1 {
    font-size: calc(26px + 16 * 100vw / 1900);
  }
}

.container-contact-hero h2 {
  margin-bottom: 30px;
}

.wrapper-contact-hero {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .wrapper-contact-hero {
    flex-direction: column;
  }
}

.wrapper-contact-hero__content {
  width: 400px;
}

@media (max-width: 767px) {
  .wrapper-contact-hero__content {
    width: 100%;
  }
}

.wrapper-contact-hero__content .online-text {
  font-size: 16px;
  color: #23241f;
}

.wrapper-contact-hero__content .online-text span {
  font-weight: 500;
}

.wrapper-contact-hero__content .header-online_group--contact {
  margin-top: 10px;
}

.wrapper-contact-hero__content .social-group {
  margin-top: 8px;
}

.wrapper-contact-hero__content .social-group__icon {
  width: 40px;
}

.wrapper-contact-hero__content .btn {
  margin-top: 30px;
}

@media (max-width: 400px) {
  .wrapper-contact-hero__content .btn {
    width: 100%;
  }
}

.wrapper-contact-hero__map {
  width: calc(100% - 420px);
  padding: 6px 0 0 0;
}

@media (max-width: 767px) {
  .wrapper-contact-hero__map {
    width: 100%;
    margin-top: 20px;
  }
}

.wrapper-contact-hero__title {
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .wrapper-contact-hero__title {
    font-size: calc(20px + 17 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .wrapper-contact-hero__title {
    font-size: calc(20px + 10 * 100vw / 1900);
  }
}

.contact-hero-tel {
  display: block;
  color: #23241f;
  font-weight: 500;
  margin: 16px 0 4px 0;
}

@media (max-width: 767px) {
  .contact-hero-tel {
    font-size: calc(22px + 13.6 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .contact-hero-tel {
    font-size: calc(22px + 8 * 100vw / 1900);
  }
}

.contact-hero-modal {
  color: #d1a103;
  border-bottom: 1px dashed #d1a103;
}

.mr-t-20 {
  margin: 20px 0 0 0;
}

.map {
  width: 100%;
  height: 430px;
}

@media (max-width: 767px) {
  .map {
    height: 350px;
  }
}

@media (max-width: 400px) {
  .map {
    height: 280px;
  }
}

.wrapper-adres {
  display: flex;
  margin-bottom: 16px;
}

.wrapper-adres__icon {
  width: 16px;
  margin-right: 6px;
}

/*--- CONTACT-HERO ---*/
/*--- FOOTER ---*/
.footer {
  background-image: url(../img/background/bg-main.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.container-footer {
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.container-footer::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.05);
  top: 0;
  left: 27%;
  z-index: 0;
}

.container-footer::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.05);
  top: 0;
  right: 27%;
  z-index: 0;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}

@media (max-width: 991px) {
  .footer-content {
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  .footer-content {
    justify-content: center;
    text-align: center;
  }
}

.footer-logo {
  width: 30%;
}

@media (max-width: 1271px) {
  .footer-logo {
    width: 25%;
  }
}

@media (max-width: 991px) {
  .footer-logo {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .footer-logo {
    width: 100%;
    margin-bottom: 15px;
  }
}

.footer-logo__link {
  display: flex;
  align-items: center;
  color: #fff;
}

@media (max-width: 767px) {
  .footer-logo__link {
    font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .footer-logo__link {
    font-size: calc(16px + 2 * 100vw / 1900);
  }
}

@media (max-width: 767px) {
  .footer-logo__link {
    flex-direction: column;
    justify-content: center;
  }
}

.footer-logo__img {
  width: 60px;
  margin-right: 10px;
}

@media (max-width: 767px) {
  .footer-logo__img {
    margin-right: 0;
    width: 85px;
    margin-bottom: 15px;
  }
}

.footer-opet {
  width: 15%;
  line-height: 1.35;
}

@media (max-width: 991px) {
  .footer-opet {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .footer-opet {
    width: 100%;
    margin-bottom: 15px;
  }
}

.copyrigth {
  text-align: center;
  line-height: 1.35;
  width: 25%;
}

@media (max-width: 1350px) {
  .copyrigth {
    width: 22%;
  }
}

@media (max-width: 1296px) {
  .copyrigth {
    width: 20%;
  }
}

@media (max-width: 1200px) {
  .copyrigth {
    width: 18%;
  }
}

@media (max-width: 991px) {
  .copyrigth {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .copyrigth {
    width: 100%;
    margin-bottom: 15px;
  }
}

.privacy-policy {
  width: 20%;
}

@media (max-width: 991px) {
  .privacy-policy {
    width: 50%;
  }
}

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

.privacy-policy__link {
  color: #cfc88e;
  border-bottom: 1px dashed #cfc88e;
}

.developed {
  width: 15%;
}

@media (max-width: 991px) {
  .developed {
    width: 50%;
    margin-top: 15px;
  }
}

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

.developed__link {
  color: #cfc88e;
  border-bottom: 1px dashed #cfc88e;
}

/*--- FOOTER ---*/
/*--- MODAl ---*/
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.65);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  z-index: 100;
}

.modal:target {
  pointer-events: auto;
  opacity: 1;
}

.container-modal {
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .container-modal {
    max-width: 98%;
  }
}

.wrapper-modal {
  position: absolute;
  top: 80px;
  width: 750px;
  background-color: #fff;
}

@media (max-width: 767px) {
  .wrapper-modal {
    top: 30px;
    width: 98%;
  }
}

.modal-content {
  box-sizing: border-box;
  padding: 15px 20px;
}

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

.close {
  position: absolute;
  top: 15px;
  right: 0;
  color: #fff;
  font-weight: 500;
  z-index: 100;
}

@media (max-width: 767px) {
  .close {
    font-size: calc(20px + 10.2 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .close {
    font-size: calc(20px + 6 * 100vw / 1900);
  }
}

@media (max-width: 767px) {
  .close {
    color: #23241f;
  }
}

.close::after {
  position: absolute;
  content: "✖";
  top: 0px;
  right: 18px;
}

.close:hover {
  color: #f00b0b;
}

.img-modal {
  width: 100%;
}

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

.modal-title {
  margin-bottom: 10px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .modal-title {
    font-size: calc(20px + 10.2 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .modal-title {
    font-size: calc(20px + 6 * 100vw / 1900);
  }
}

.form-modal {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
}

@media (max-width: 767px) {
  .form-modal {
    flex-direction: column;
  }
}

.form-modal__input {
  width: 33%;
  height: 54px;
  box-sizing: border-box;
  padding: 10px;
  border-radius: 4px 4px;
  border: 1px solid #e1e1e1;
}

@media (max-width: 767px) {
  .form-modal__input {
    width: 100%;
    margin-bottom: 10px;
    height: 44px;
  }
}

.form-modal .btn {
  width: 30%;
  text-transform: none;
  letter-spacing: normal;
}

@media (max-width: 767px) {
  .form-modal .btn {
    width: 100%;
  }
}

.form-text {
  font-size: 13px;
  line-height: 1.35;
  margin-top: 15px;
}

.form-link {
  color: #23241f;
  font-weight: 600;
}

.whatsapp-fixed {
  position: fixed;
  right: 60px;
  bottom: 70px;
  z-index: 10;
  cursor: pointer;
}

@media (max-width: 790px) {
  .whatsapp-fixed {
    right: 30px;
    bottom: 50px;
  }
}

@media (max-width: 790px) {
  .link-phone {
    display: none;
  }
}

.link-phone-mob {
  display: none;
}

@media (max-width: 790px) {
  .link-phone-mob {
    display: block;
  }
}

@media (max-width: 790px) {
  .link-phone-mob img {
    width: 35px;
    transform: translate(-5%, 5%);
  }
}

.size-button {
  width: 50px;
  height: 50px;
  background: linear-gradient(#d81535 0%, #f52447 100%);
  border: 2px solid #d81535;
  padding: 10px;
  border-radius: 100%;
  text-align: center;
  animation: pulse-whatsapp 1.5s infinite;
}

@media (max-width: 790px) {
  .size-button {
    width: 50px;
    height: 50px;
    background: #d81535;
    border: 1px solid #d81535;
    box-shadow:
      0 0 0 0 rgba(216, 21, 53, 0.4),
      inset 0 4px 0 #d81535;
  }
}

.size-button:hover {
  transition: transform 0.2s ease-in-out;
  transform: scale(1.15);
}

@media (max-width: 790px) {
  .size-button {
    width: 40px;
    height: 40px;
  }
}

.whatsapp-icon {
  transform: translate(1px, -2px);
  fill: #fff;
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(211, 38, 38, 0.4);
  }

  70% {
    box-shadow: 0 0 0 25px rgba(211, 38, 38, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(211, 38, 38, 0);
  }
}

@media (max-width: 790px) {
  @keyframes pulse {
    100% {
      box-shadow:
        0 0 0 15px rgba(90, 153, 220, 0),
        inset 0 1px 0 #d81535;
    }
  }
}

/*--- MODAl ---*/
/*--- POLITRA ---*/
.wrapper-politra {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 45px;
}

@media (max-width: 567px) {
  .wrapper-politra {
    gap: 10px;
  }
}

.wrapper-politra__item {
  width: calc(12.5% - 16px);
  border-radius: 6px;
}

@media (max-width: 1240px) {
  .wrapper-politra__item {
    width: calc(16.666% - 16px);
  }
}

@media (max-width: 991px) {
  .wrapper-politra__item {
    width: calc(20% - 16px);
  }
}

@media (max-width: 767px) {
  .wrapper-politra__item {
    width: calc(25% - 16px);
  }
}

@media (max-width: 567px) {
  .wrapper-politra__item {
    width: calc(33.333% - 10px);
  }
}

.wrapper-politra__img {
  width: 100%;
  height: 130px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 6px;
}

@media (max-width: 567px) {
  .wrapper-politra__img {
    height: 90px;
  }
}

.btn-obrazec {
  display: block;
  text-align: center;
  width: 250px;
  margin: 0 auto;
  margin-top: 60px;
}

/*--- POLITRA ---*/
/*--- PRODUCT ---*/
.product {
  background-image: url(../img/background/bg-4.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
}

.container-product {
  padding: 60px 15px;
  padding-bottom: 0px;
  border-left: 1px solid rgba(0, 0, 0, 0.05);
  border-right: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

@media (max-width: 500px) {
  .container-product {
    padding: 40px 15px;
    padding-bottom: 0;
  }
}

.container-product::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.05);
  top: 0;
  left: 27%;
  z-index: 0;
}

.container-product::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.05);
  top: 0;
  right: 27%;
  z-index: 0;
}

@media (max-width: 770px) {
  .container-product {
    padding-top: 30px;
  }
}

.wrapper-product {
  display: flex;
  justify-content: space-between;
  margin: 46px 0;
}

@media (max-width: 500px) {
  .wrapper-product {
    margin: 30px 0;
  }
}

@media (max-width: 890px) {
  .wrapper-product {
    flex-direction: column;
  }
}

.wrapper-product__slider {
  width: 53%;
}

@media (max-width: 1239px) {
  .wrapper-product__slider {
    width: 40%;
  }
}

@media (max-width: 890px) {
  .wrapper-product__slider {
    width: 100%;
  }
}

.wrapper-product__content {
  width: 45%;
}

@media (max-width: 1239px) {
  .wrapper-product__content {
    width: 58%;
  }
}

@media (max-width: 890px) {
  .wrapper-product__content {
    width: 100%;
    margin-top: 20px;
  }
}

.wrapper-product__content h2 {
  margin-bottom: 20px;
}

.wrapper-product__content .text:not(:last-child) {
  margin-bottom: 10px;
}

.wrapper-product__content .text:nth-child(2) {
  font-weight: 600;
}

.container-slider {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.main-slide {
  width: calc(100% - 120px);
}

@media (max-width: 500px) {
  .main-slide {
    width: calc(100% - 85px);
  }
}

.mySlides {
  display: none;
}

.mySlides img {
  width: 100%;
  height: 540px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 6px;
}

@media (max-width: 500px) {
  .mySlides img {
    height: 250px;
  }
}

.cursor {
  cursor: pointer;
}

.row {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width: 100px;
}

@media (max-width: 500px) {
  .row {
    width: 75px;
  }
}

.column {
  width: 100%;
}

.column:not(:last-child) {
  margin-bottom: 10px;
}

@media (max-width: 500px) {
  .column:not(:last-child) {
    margin-bottom: 6px;
  }
}

.column img {
  height: 95px;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 500px) {
  .column img {
    height: 42px;
  }
}

.demo {
  opacity: 0.6;
  width: 100%;
  border-radius: 6px;
}

.active,
.demo:hover {
  opacity: 1;
}

.group-product {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  position: relative;
  z-index: 10;
}

@media (max-width: 767px) {
  .group-product {
    flex-direction: column;
  }
}

.group-product--obrazec {
  justify-content: center;
  margin-top: 45px;
}

@media (max-width: 430px) {
  .group-product {
    flex-wrap: wrap;
  }
}

.group-product .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 10px;
  text-transform: none;
  margin-right: 10px;
}

@media (max-width: 767px) {
  .group-product .btn {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

@media (max-width: 1080px) {
  .group-product .btn {
    width: 240px;
  }
}

@media (max-width: 1010px) {
  .group-product .btn {
    width: 220px;
  }
}

@media (max-width: 950px) {
  .group-product .btn {
    width: 200px;
  }
}

@media (max-width: 890px) {
  .group-product .btn {
    width: 49%;
    box-sizing: border-box;
  }
}

@media (max-width: 5767px) {
  .group-product .btn {
    width: 100%;
  }
}

.group-product .btn:last-child {
  background: #fff;
  color: #333;
  box-shadow:
    rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

@media (max-width: 430px) {
  .group-product .btn:last-child {
    margin-top: 10px;
  }
}

.group-product .btn:last-child svg {
  margin-right: 6px;
}

.adv-product {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  position: relative;
  z-index: 10;
}

.adv-product__item {
  display: flex;
  align-items: center;
  width: 49%;
  box-sizing: border-box;
  padding: 6px 8px;
  background-color: #fff;
  box-shadow:
    rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
    rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  border-radius: 4px;
  font-weight: 500;
}

@media (max-width: 529px) {
  .adv-product__item {
    width: calc(50% - 5px);
  }
}

@media (max-width: 430px) {
  .adv-product__item {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .adv-product__title {
    font-size: calc(14px + 3.4 * (100vw - 320px) / 1920);
  }
}

@media (min-width: 767px) {
  .adv-product__title {
    font-size: calc(14px + 0.1041666667vw);
  }
}

.adv-product__icon {
  width: 38px;
  margin-right: 10px;
}

@media (max-width: 529px) {
  .adv-product__icon {
    width: 25px;
    margin-right: 6px;
  }
}

.btn-product {
  width: 400px;
  margin: 0 auto;
  margin-top: 50px;
}

@media (max-width: 767px) {
  .btn-product {
    width: 100%;
    margin-top: 40px;
  }
}

/*--- PRODUCT ---*/
/*--- PAGES ---*/
.pages-mabel {
  margin: 0 0 40px 0;
}
.container-pages {
  padding-top: 180px;
}

@media (max-width: 966px) {
  .container-pages {
    padding-top: 180px;
  }
}

@media (max-width: 917px) {
  .container-pages {
    padding-top: 120px;
  }
}

@media (max-width: 770px) {
  .container-pages {
    padding-top: 90px;
  }
}

@media (max-width: 500px) {
  .container-pages {
    padding-top: 80px;
  }
}

.pages {
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  line-height: 1.35;
}

.pages__item:not(:last-child) {
  margin-right: 22px;
}

.pages__item:last-child {
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 770px) {
  .pages__item:last-child {
    border-bottom: none;
  }
}

.pages__link {
  color: #848484;
  position: relative;
}

.pages__link::before {
  position: absolute;
  content: "/";
  font-size: 14px;
  top: 2px;
  right: -12px;
}

/*--- PAGES ---*/
/*--- ADVANTAGES ---*/
.wrapper-advantages {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 25px 0;
}

.wrapper-advantages__item {
  width: 22.5%;
  position: relative;
}

@media (max-width: 991px) {
  .wrapper-advantages__item {
    width: 48%;
    margin: 20px 0;
  }
}

@media (max-width: 600px) {
  .wrapper-advantages {
    margin: 15px 0;
  }

  .wrapper-advantages__item {
    width: 100%;
  }
}

.wrapper-advantages__item::before {
  position: absolute;
  content: "";
  top: -30px;
  left: calc(50% - 60px);
  font-weight: 600;
  color: rgba(0, 0, 0, 0.1);
  z-index: 0;
}

@media (max-width: 767px) {
  .wrapper-advantages__item::before {
    font-size: calc(95px + 144.5 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .wrapper-advantages__item::before {
    font-size: calc(95px + 85 * 100vw / 1900);
  }
}

@media (max-width: 500px) {
  .wrapper-advantages__item::before {
    top: -10px;
  }
}

@media (max-width: 500px) {
  .wrapper-advantages__item::before {
    top: -10px;
    left: calc(50% - 45px);
  }
}

.wrapper-advantages__title {
  font-weight: 600;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .wrapper-advantages__title {
    font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .wrapper-advantages__title {
    font-size: calc(16px + 2 * 100vw / 1900);
  }
}

.wrapper-advantages__text {
  line-height: 1.35;
}

@media (max-width: 767px) {
  .wrapper-advantages__text {
    font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .wrapper-advantages__text {
    font-size: calc(16px + 2 * 100vw / 1900);
  }
}

.wrapper-advantages__item:nth-child(1)::before {
  content: "1";
}

.wrapper-advantages__item:nth-child(2)::before {
  content: "2";
}

.wrapper-advantages__item:nth-child(3)::before {
  content: "3";
}

.wrapper-advantages__item:nth-child(4)::before {
  content: "4";
}

/*--- ADVANTAGES ---*/
/*--- CONTACT ---*/
.contact-bg {
  background-image: url(../img/background/bg-main.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  height: 200px;
}

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

.contact {
  background-image: url(../img/background/bg-4.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 767px) {
  .container-contact {
    padding-top: 90px;
  }
}

.container-contact h1 {
  margin: 30px 0;
}

@media (max-width: 767px) {
  .container-contact h1 {
    font-size: calc(26px + 27.2 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .container-contact h1 {
    font-size: calc(26px + 16 * 100vw / 1900);
  }
}

.container-contact h2 {
  margin-bottom: 30px;
}

.container-contact h3 {
  margin: 25px 0;
}

.wrapper-contact {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .wrapper-contact {
    flex-direction: column;
  }
}

.wrapper-contact__content {
  width: 64%;
}

@media (max-width: 1240px) {
  .wrapper-contact__content {
    width: 65%;
  }
}

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

.wrapper-contact__content .text {
  margin: 16px 0;
}

@media (max-width: 767px) {
  .wrapper-contact__content .text {
    font-size: calc(20px + 3.4 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .wrapper-contact__content .text {
    font-size: calc(20px + 2 * 100vw / 1900);
  }
}

.wrapper-contact__online {
  position: sticky;
  top: 80px;
  width: 34%;
  background-color: #f5f5f5;
  border: 1px solid #e1e1e1;
  border-radius: 10px 10px;
  box-sizing: border-box;
  padding: 25px 25px;
}

@media (max-width: 1240px) {
  .wrapper-contact__online {
    padding: 15px 15px;
  }
}

@media (max-width: 991px) {
  .wrapper-contact__online {
    width: 100%;
    margin-top: 20px;
  }
}

@media (max-width: 1240px) {
  .wrapper-contact__online h3 {
    margin-top: 10px;
  }
}

.wrapper-contact__text {
  margin-top: 16px;
}

@media (max-width: 767px) {
  .wrapper-contact__text {
    font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .wrapper-contact__text {
    font-size: calc(16px + 2 * 100vw / 1900);
  }
}

.wrapper-contact-group {
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  padding-right: 20px;
}

@media (max-width: 767px) {
  .wrapper-contact-group {
    flex-direction: column;
    padding-right: 0px;
  }
}

.group-contact {
  background-color: #f5f5f5;
  border: 1px solid #e1e1e1;
  border-radius: 10px 10px;
  box-sizing: border-box;
  padding: 20px 20px;
  width: 48%;
}

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

@media (max-width: 1240px) {
  .group-contact {
    padding: 15px 15px;
  }
}

.group-contact__title {
  color: rgba(46, 56, 78, 0.85);
}

@media (max-width: 767px) {
  .group-contact__title {
    font-size: calc(16px + 13.6 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .group-contact__title {
    font-size: calc(16px + 8 * 100vw / 1900);
  }
}

.group-contact__tel {
  font-weight: 500;
  display: block;
  color: #23241f;
  margin: 20px 0;
}

@media (max-width: 767px) {
  .group-contact__tel {
    font-size: calc(22px + 13.6 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .group-contact__tel {
    font-size: calc(22px + 8 * 100vw / 1900);
  }
}

@media (max-width: 767px) {
  .group-contact__tel {
    margin: 10px 0;
  }
}

.group-contact__text {
  margin-top: 15px;
  color: rgba(46, 56, 78, 0.85);
}

@media (max-width: 767px) {
  .group-contact__text {
    font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .group-contact__text {
    font-size: calc(16px + 2 * 100vw / 1900);
  }
}

@media (max-width: 767px) {
  .group-contact__text {
    margin-top: 10px;
  }
}

.group-contact__text span {
  color: #23241f;
  font-weight: 500;
}

@media (max-width: 767px) {
  .group-contact:not(:last-child) {
    margin-bottom: 20px;
  }
}

.btn-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #5bad54;
  box-sizing: border-box;
  padding: 10px 20px;
  border-radius: 26px 26px;
  margin-bottom: 16px;
  color: #fff;
}

@media (max-width: 767px) {
  .btn-contact {
    font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .btn-contact {
    font-size: calc(16px + 2 * 100vw / 1900);
  }
}

.btn-contact svg {
  margin-left: 8px;
}

.conatct-email {
  display: block;
  color: #d1a103;
}

@media (max-width: 767px) {
  .conatct-email {
    font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .conatct-email {
    font-size: calc(16px + 2 * 100vw / 1900);
  }
}

.form-contact {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 30px;
}

.form-contact__input {
  width: 100%;
  height: 50px;
  box-sizing: border-box;
  padding: 10px;
  border: 1px solid #e1e1e1;
  border-radius: 4px 4px;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .form-contact__input {
    height: 46px;
  }
}

.form-contact__massage {
  width: 100%;
  height: 120px;
  box-sizing: border-box;
  padding: 10px;
  border: 1px solid #e1e1e1;
  border-radius: 4px 4px;
}

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

.form-contact .btn {
  text-transform: none;
  width: 100%;
  text-align: center;
}

.file-contact {
  display: none;
}

.label-contact {
  display: flex;
  align-items: center;
  margin: 14px 0;
  line-height: 1.3;
  cursor: pointer;
}

.label-contact__title {
  color: #d1a103;
  font-weight: 600;
}

.label-contact__text {
  font-size: 14px;
}

.img-form-file {
  width: 40px;
}

/*--- CONTACT ---*/
/*--- PORTFOLIO ---*/
.wrapper-galereya {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.wrapper-galereya__item {
  position: relative;
  width: calc(33.333% - 20px);
  background-color: #fff;
  box-shadow:
    rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
    rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

@media (max-width: 991px) {
  .wrapper-galereya__item {
    width: calc(50% - 15px);
  }
}

@media (max-width: 650px) {
  .wrapper-galereya__item {
    width: 100%;
  }
}

.wrapper-galereya__img {
  width: 100%;
  height: 280px;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 1240px) {
  .wrapper-galereya__img {
    height: 240px;
  }
}

.wrapper-galereya__img--blog {
  height: 240px;
}

@media (max-width: 767px) {
  .wrapper-galereya__img--blog {
    height: 160px;
  }
}

.wrapper-galereya__content {
  box-sizing: border-box;
  padding: 20px 20px;
}

@media (max-width: 991px) {
  .wrapper-galereya__content {
    padding: 15px 15px;
  }
}

.wrapper-galereya__link {
  /* width: 75%; */
  margin: 0 auto;
  display: block;
  font-weight: 500;
  text-align: center;
  color: #23241f;
}

@media (max-width: 767px) {
  .wrapper-galereya__link {
    font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .wrapper-galereya__link {
    font-size: calc(16px + 2 * 100vw / 1900);
  }
}

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

.wrapper-galereya__title {
  font-size: 18px;
}

.wrapper-galereya__text {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
  list-style: 1.4;
  margin: 10px 0 0 0;
}

.wrapper-galereya .btn {
  width: 100%;
  padding: 12px 20px;
  text-align: center;
  margin: 16px 0 0 0;
  text-transform: none;
}
.date-public {
  position: absolute;
  padding: 0 16px;
  background: #f5f5f7;
  border-radius: 15px;
  color: #3b3b3b;
  font-size: 12px;
  line-height: 30px;
  left: 20px;
  top: 15px;
  z-index: 1;
}

.wrapper-galereya__link:hover {
  text-decoration: underline;
}

.wrapper-portfolio-page {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 50px;
}

@media (max-width: 567px) {
  .wrapper-portfolio-page {
    margin-top: 30px;
  }
}

.wrapper-portfolio {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 26px;
}

@media (max-width: 767px) {
  .wrapper-portfolio {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}

/* Применяем стили к каждому 4-му ряду (8 элементов) и его повторениям */
.wrapper-portfolio__item:nth-child(8n + 1),
.wrapper-portfolio-page__item:nth-child(8n + 1) {
  grid-column-start: span 2;
}

.wrapper-portfolio__item:nth-child(8n + 7),
.wrapper-portfolio-page__item:nth-child(8n + 7) {
  grid-column-start: span 2;
}

@media (max-width: 767px) {
  .wrapper-portfolio__item:nth-child(8n + 8),
  .wrapper-portfolio-page__item:nth-child(8n + 8) {
    display: none;
  }
}

.wrapper-portfolio__img,
.wrapper-portfolio-page__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 4px;
}

.wrapper-portfolio-page__item {
  max-height: 330px;
  overflow: hidden;
}

@media (max-width: 1240px) {
  .wrapper-portfolio-page__item {
    max-height: 290px;
  }
}

@media (max-width: 991px) {
  .wrapper-portfolio-page__item {
    max-height: 250px;
  }
}

@media (max-width: 450px) {
  .wrapper-portfolio-page__item {
    max-height: 220px;
  }
}

@media (max-width: 400px) {
  .wrapper-portfolio-page__item {
    max-height: 180px;
  }
}

@media (max-width: 767px) {
  .wrapper-portfolio-page {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}

.title-gallery-main {
  line-height: 1.35;
}

@media (max-width: 767px) {
  .title-gallery-main {
    font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .title-gallery-main {
    font-size: calc(16px + 2 * 100vw / 1900);
  }
}

/*--- PORTFOLIO ---*/
/*--- ABOUT ---*/
.wrapper-about {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .wrapper-about {
    flex-direction: column;
  }
}

.wrapper-about__content {
  width: calc(50% - 10px);
}

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

.group-about-title {
  display: flex;
  align-items: center;
}

@media (max-width: 650px) {
  .group-about-title {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 30px;
  }
}

.group-about-title__content {
  width: 600px;
  line-height: 1.35;
  font-weight: 600;
  margin-left: 100px;
}

@media (max-width: 767px) {
  .group-about-title__content {
    font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .group-about-title__content {
    font-size: calc(16px + 2 * 100vw / 1900);
  }
}

@media (max-width: 650px) {
  .group-about-title__content {
    width: 100%;
    text-align: left;
    margin-left: 0;
  }
}

.group-about {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 30px;
}

@media (max-width: 650px) {
  .group-about {
    flex-direction: column;
  }
}

.group-about__img {
  width: calc(50% - 10px);
  height: 220px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 8px 8px;
}

@media (max-width: 650px) {
  .group-about__img {
    width: 100%;
  }
}

@media (max-width: 650px) {
  .group-about__img:not(:last-child) {
    margin-bottom: 20px;
  }
}

/*--- ABOUT ---*/
/*--- CATALOG ---*/
.catalog-product {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

@media (max-width: 1300px) {
  .catalog-product {
    gap: 15px;
  }
}

.catalog-product__item {
  width: calc(33.333% - 20px);
  background-color: #fff;
  box-shadow:
    rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
    rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

@media (max-width: 1300px) {
  .catalog-product__item {
    width: calc(50% - 10px);
  }
}

@media (max-width: 650px) {
  .catalog-product__item {
    width: 100%;
  }
}

.catalog-product__link {
  color: #23241f;
}

.catalog-product__img {
  width: 100%;
  height: 270px;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 1300px) {
  .catalog-product__img {
    height: 220px;
  }
}

.catalog-product__title {
  font-weight: 500;
  margin: 20px 26px 20px 26px;
}

@media (max-width: 767px) {
  .catalog-product__title {
    font-size: calc(18px + 8.5 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .catalog-product__title {
    font-size: calc(18px + 5 * 100vw / 1900);
  }
}

@media (max-width: 1300px) {
  .catalog-product__title {
    margin: 20px 16px 20px 16px;
  }
}

@media (max-width: 650px) {
  .catalog-product__title {
    text-align: center;
    margin: 12px 10px 16px 10px;
  }
}

.catalog-product__title:hover {
  color: #d1a103;
}

/*--- CATALOG ---*/
.wrapper-material__img {
  float: right;
  width: 500px;
  height: 280px;
  object-fit: cover;
  border-radius: 8px 8px;
  margin: 0 0 10px 10px;
}

@media (max-width: 991px) {
  .wrapper-material__img {
    width: 400px;
  }
}

@media (max-width: 767px) {
  .wrapper-material__img {
    width: 100%;
    margin: 10px 0;
    float: none;
  }
}

/* --- FAQ --- */
.faq {
  background-image: url(../img/background/bg-4.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
}
.container-faq {
  border-left: 1px solid rgba(0, 0, 0, 0.05);
  border-right: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}
.accordion {
  max-width: 100%;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin-top: 40px;
}

.accordion-item + .accordion-item {
  border-top: 1px solid #eaeaea;
}

.accordion-header {
  width: 100%;
  padding: 18px 22px;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;

  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: #222;
  transition: background 0.2s ease;
}

.accordion-header:hover {
  background: #f2f4f7;
}

.accordion-header .icon {
  font-size: 22px;
  transition: transform 0.3s ease;
}

.accordion-item.active .icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
  padding: 0 22px;
}

.accordion-content p {
  margin: 0;
  padding-bottom: 18px;
  color: #555;
  line-height: 1.6;
}

.accordion-item.active .accordion-content {
  max-height: 200px;
  padding-top: 10px;
}
/* --- FAQ --- */

/*--- FEEDBACK ---*/
.feedback {
  background-image: url(../img/background/bg-main.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.container-feedback {
  padding-bottom: 80px;
  color: #fff;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.feedback-content h2 {
  margin: 0 0 30px 0;
}

.mySwiper {
  margin: 40px 0 0 0;
}

.swiper-content {
  background-color: #ffffff;
  box-sizing: border-box;
  padding: 20px 20px 60px 20px;
  border-radius: 6px;
  color: #000;
}
@media (max-width: 567px) {
  .swiper-content {
    padding: 20px 20px 20px 20px;
  }
}

.swiper-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 30px 0;
}
@media (max-width: 567px) {
  .swiper-header {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 0 0 10px 0;
  }
}

.data-client {
  display: flex;
  align-items: center;
}

.swiper-img {
  width: 54px;
  height: 54px;
  border-radius: 100%;
}

.group-swiper {
  margin: 0 0 0 10px;
}

.date-publict {
  color: #888;
  margin: 0 0 6px 0;
}

.client {
  font-size: 18px;
  font-weight: 500;
}

@media (max-width: 567px) {
  .star {
    margin: 10px 0 0 0;
  }
}

/*--- FEEDBACK ---*/

.messenger-widgets {
  position: fixed;
  right: 60px;
  bottom: 60px;
  width: 64px;
  height: 64px;
  background: linear-gradient(240deg, rgb(225, 72, 211), rgb(17, 187, 226));
  border: 1px solid rgb(182, 229, 243);
  box-sizing: border-box;
  padding: 10px 10px;
  border-radius: 100%;
  transform: translate(-50%, -50%);
  z-index: 10;
  animation: messenger-pulse 1.5s infinite;
  transition:
    background-color 0.3s,
    color 0.3s,
    box-shadow 0.3s;
  cursor: pointer;
}

.messenger-widgets--active {
  background: #646464;
  animation: none;
}

@media (max-width: 991px) {
  .messenger-widgets {
    right: 5px;
    bottom: 24px;
    width: 54px;
    height: 54px;
  }
}

@keyframes messenger-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(17, 187, 226, 0.6);
  }

  70% {
    box-shadow: 0 0 0 30px rgba(17, 187, 226, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(17, 187, 226, 0);
  }
}

@-webkit-keyframes messenger-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(17, 187, 226, 0.6);
  }

  70% {
    box-shadow: 0 0 0 30px rgba(17, 187, 226, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(17, 187, 226, 0);
  }
}

.widgets-img {
  width: 100%;
}

.widgets-img-close {
  width: 100%;
  display: none;
}

.widgets-menu {
  display: none;
  position: absolute;
  bottom: 74px;
  right: 4px;
  width: 286px;
  background-color: #fff;
  box-shadow:
    rgba(9, 30, 66, 0.25) 0px 4px 8px -2px,
    rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
  box-sizing: border-box;
  padding: 16px 14px;
  border-radius: 6px 6px;
}

@media (max-width: 991px) {
  .widgets-menu {
    bottom: 64px;
  }
}
.widgets-menu--active {
  display: block;
}
.widgets-menu__header {
  font-weight: 600;
  box-sizing: border-box;
  padding: 0 0 10px 0;
  border-bottom: 1px solid #e1e1e1;
  color: #333;
}
.widgets-menu__body {
  padding: 12px 0 0px 0;
}
.widgets-text {
  font-size: 14px;
  line-height: 1.25;
  color: #696969;
}

.widgets-text:not(:last-child) {
  margin: 0 0 6px 0;
}

.group-widgets {
  display: flex;
  justify-content: space-between;
  margin: 12px 0 0 0;
}
.messenger-widget__link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #ffffff;
  box-sizing: border-box;
  padding: 6px 21px;
  border-radius: 6px 6px;
}
.messenger-widget__link--telegram {
  background-color: #2aabee;
}
.widgets-icon {
  margin: 0 10px 0 0;
}
.messenger-widget__link--max {
  background-color: #0077ff;
}
.widgets-menu__footer {
  padding: 10px 0 0 0;
}

/*--- MEBEL ---*/
.section-advantage {
  background-image: url(../img/background/bg-4.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
}
.section-advantage .container {
  border-left: 1px solid rgba(0, 0, 0, 0.05);
  border-right: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.section-advantage__container {
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  padding-top: 0;
}
@media (max-width: 991px) {
  .section-advantage__container {
    flex-direction: column;
    gap: 30px;
  }
}

.advantage__image-wrapper {
  flex: 1;
}
@media (max-width: 991px) {
  .advantage__image-wrapper {
    width: 100%;
  }
}

.advantage__image {
  width: 100%;
  height: 600px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 4px 4px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}
@media (max-width: 991px) {
  .advantage__image {
    height: 300px;
  }
}

.advantage__content {
  flex: 1;
}

.advantage__title {
  font-weight: 600;
  margin-bottom: 20px;
}

.advantage__subtitle {
  font-size: 18px;
  margin-bottom: 40px;
  color: #555;
}

.comparison {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.comparison__column {
  flex: 1;
  padding: 25px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.comparison__column--market {
  border: 1px solid #eee;
}

.comparison__column--custom {
  border: 2px solid #e9c03a;
  box-shadow: 0 15px 40px rgba(255, 217, 0, 0.2);
}

.comparison__title {
  font-size: 20px;
  margin-bottom: 15px;
}

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

.comparison__item {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.comparison__item--minus::before {
  content: "✖";
  position: absolute;
  left: 0;
  color: #d9534f;
}

.comparison__item--plus::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #28a745;
}

.advantage__price {
  font-size: 20px;
  margin-bottom: 25px;
  font-weight: 600;
}
.advantage__price span {
  font-weight: 700;
  border-bottom: 1px dashed #bfbfbf;
}

.advantage__button {
  display: inline-block;
  padding: 16px 30px;
  background: #ff7a00;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(255, 122, 0, 0.3);
}

.advantage__button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 122, 0, 0.4);
}

/* 🔹 Адаптив */
@media (max-width: 992px) {
  .advantage__container {
    flex-direction: column;
    gap: 40px;
  }
  .comparison {
    flex-direction: column;
  }
  .advantage__title {
    font-size: 26px;
  }
}
@media (max-width: 576px) {
  .advantage {
    padding: 50px 15px;
  }
  .advantage__title {
    font-size: 22px;
  }
  .advantage__subtitle {
    font-size: 16px;
  }
  .advantage__button {
    width: 100%;
    text-align: center;
  }
}
.marquee {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(90deg, #ffdf76 13%, #f7d156 57%, #ffcc25 100%);
  padding: 12px 0;
}

.marquee__track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: marquee-scroll 17s linear infinite;
}

.marquee__content {
  display: flex;
  gap: 60px;
}

.marquee__text {
  white-space: nowrap;
  font-size: 16px;
  font-weight: 500;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.subtitle-calc {
  margin: 20px 0 0 0;
  font-size: 18px;
  text-align: center;
}

.calc-kuhnya {
  display: flex;
  justify-content: flex-start;
  -moz-column-gap: 20px;
  column-gap: 20px;
  margin: 50px 0 40px 0;
}
@media (max-width: 767px) {
  .calc-kuhnya {
    flex-direction: column-reverse;
  }
}

.calc-kuhnya__sale {
  width: 350px;
  box-sizing: border-box;
  padding: 20px 20px;
  border-radius: 6px 6px;
  background-image: url(../img/background/sale.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border: 1px solid #e1e1e1;
}
@media (max-width: 991px) {
  .calc-kuhnya__sale {
    display: none;
  }
}

.calc-kuhnya__sale--all {
  background-image: url(../img/background/sale-2.jpg);
}

.calc-kuhnya__quiz {
  width: calc(100% - 350px);
}
@media (max-width: 991px) {
  .calc-kuhnya__quiz {
    width: 100%;
  }
}

.portfolio-title-kuhni {
  text-align: center;
}

.calc-kuhni p {
  text-align: left;
}

.company-kuhni .text-portfolio {
  text-align: left;
  line-height: 1.35;
}

/* Блок: steps */
.steps {
  background-image: url(../img/background/bg-4.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
}

.steps-content {
  width: 100%;
}

/* Заголовок блока (отдельный элемент) */
.steps__title {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
  color: #3a3a3a;
}

/* Сетка: 2 ряда по 3 колонки */
.steps__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 767px) {
  .steps__grid {
    gap: 10px;
  }
}

/* Элемент: карточка шага */
.step-card {
  width: calc(33.333% - 18px);
  background-color: #fff;
  box-shadow:
    rgba(9, 30, 66, 0.25) 0px 4px 8px -2px,
    rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
  border-radius: 4px;
  box-sizing: border-box;
  padding: 28px 20px;
  transition: all 0.2s ease;
  border: 1px solid rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (max-width: 1240px) {
  .step-card {
    width: calc(50% - 18px);
  }
}
@media (max-width: 767px) {
  .step-card {
    width: 100%;
  }
}

.step-card:hover {
  background-color: #ffffff;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  border-color: #e9eef2;
}

/* Номер шага (декоративный) */
.step-card__number {
  font-size: 1rem;
  font-weight: 500;
  color: #9aa8b9;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.step-card__number::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #d0d9e2;
}

/* Основное содержимое */
.step-card__content {
  flex: 1;
}

/* Заголовок внутри карточки */
.step-card__title {
  font-size: 1.35rem;
  font-weight: 650;
  line-height: 1.3;
  margin-bottom: 8px;
  color: #3a3a3a;
}

/* Подзаголовок (время, детали) */
.step-card__subtitle {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
  background: #f5f5f5;
  border: 1px solid #e1e1e1;
  display: inline-block;
  padding: 4px 12px;
  border-radius: 40px;
  color: #3a3a3a;
}

/* Описание шага */
.step-card__description {
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.85;
  color: #3a3a3a;
}

/* Дополнительные акценты для жирности */
.step-card__description strong {
  font-weight: 600;
}

.wrapper-garant--mebel {
  flex-direction: column;
  box-sizing: border-box;
  padding: 20px 28px;
  width: 100%;
}
@media (max-width: 767px) {
  .wrapper-garant--mebel {
    padding: 14px 18px;
  }
}

.wrapper-brend--mebel {
  justify-content: space-between;
  gap: 30px;
  width: 100%;
}
@media (max-width: 767px) {
  .wrapper-brend--mebel {
    justify-content: flex-start;
    gap: 20px;
    margin: 0;
  }
}
@media (max-width: 567px) {
  .wrapper-brend--mebel {
    gap: 10px;
  }
}

.wrapper-garant--mebel__cat {
  margin: 0;
}

.wrapper-brend__item--mebel {
  width: calc(25% - 24px);
  height: 80px;
  background-color: #ffffff;
  border: 1px solid #e1e1e1;
  box-sizing: border-box;
  padding: 15px 20px;
}
@media (max-width: 767px) {
  .wrapper-brend__item--mebel {
    width: calc(33.333% - 14px);
  }
}
@media (max-width: 567px) {
  .wrapper-brend__item--mebel {
    width: calc(50% - 6px);
  }
}

.wrapper-brend__img--mebel {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.catalog-product--mebel {
  margin: 0 0 40px 0;
}

/*--- MEBEL ---*/

/* --- SANK --- */
.thanks-page__header {
  margin: 40px 0 24px 0;
}

.thanks-page__title {
  margin: 0 0 12px;
}

.thanks-page__text {
  margin: 0;
  font-size: 18px;
}

.thanks-page__card {
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

@media (max-width: 767px) {
  .thanks-page__card {
    padding: 10px;
  }
}

.thanks-page__card-title {
  margin: 0 0 16px;
  font-size: 22px;
  line-height: 1.2;
  color: #111;
}

.thanks-page__list {
  margin: 0 0 24px;
  padding-left: 20px;
  color: #333;
}

.thanks-page__item {
  margin-bottom: 10px;
  line-height: 1.5;
}

.thanks-page__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 14px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.thanks-page__button:hover {
  opacity: 0.9;
}
/* --- SANK --- */

/* --- PORTFOLIO-VIDEO --- */
.portfolio__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgb(255 255 255 / 0.9);
  backdrop-filter: blur(3px);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}
.container-product--mrb {
  padding-bottom: 60px;
}

.portfolio__item:hover .portfolio__play {
  transform: translate(-50%, -50%) scale(1.06);
}

.portfolio__play-icon {
  width: 0;
  height: 0;
  border-left: 18px solid #c9a86a;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 4px; /* чуть визуально центрируем */
}

/* чтобы кнопка не мешала hover-эффектам */
.portfolio__item {
  position: relative;
}
.portfolio-video {
  padding: 10px 0;
  background: linear-gradient(180deg, #0f1115c4 0%, #0b0d11af 100%), url(../img/background/bg-main.jpg);
  color: var(--text);
}

.container-portfolio-video {
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}
.container-portfolio-video::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.05);
  top: 0;
  left: 27%;
  z-index: 0;
}
.container-portfolio-video::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.05);
  top: 0;
  right: 27%;
  z-index: 0;
}

.portfolio__header {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.portfolio__title {
  margin: 0;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.05;
  font-weight: 700;
}

.portfolio__description {
  margin: 14px 0;
  line-height: 1.6;
  color: var(--muted);
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  grid-auto-rows: minmax(160px, auto);
}

.portfolio__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  isolation: isolate;
  min-height: 240px;
  cursor: pointer;
  transform: translateZ(0);
}
.portfolio__item--wide {
  grid-column: span 6;
  min-height: 300px;
}
.portfolio__item--small {
  grid-column: span 3;
  min-height: 240px;
}

.portfolio__video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
  background: #101317;
}

.portfolio__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.18) 45%, rgba(0, 0, 0, 0.68) 100%);
  z-index: 1;
  pointer-events: none;
}

.portfolio__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 22px;
  transform: translateY(calc(100% - 78px));
  transition: transform 0.35s ease;
  background: linear-gradient(180deg, rgba(14, 16, 20, 0.14) 0%, rgba(14, 16, 20, 0.92) 100%);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.portfolio__item:hover .portfolio__content,
.portfolio__item--active .portfolio__content,
.portfolio__item:focus-within .portfolio__content {
  transform: translateY(0);
}

.portfolio__item video {
  max-height: 400px;
}

.portfolio__item:hover .portfolio__video,
.portfolio__item--active .portfolio__video,
.portfolio__item:focus-within .portfolio__video {
  transform: scale(1.04);
}

.portfolio__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.portfolio__name {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
}

.portfolio__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(201, 168, 106, 0.14);
  color: var(--accent);
  font-size: 12px;
  white-space: nowrap;
  flex-shrink: 0;
}

.portfolio__text {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  max-width: 42ch;
}

.portfolio__hint {
  margin: 0px 0 15px 0;
  font-size: 13px;
  color: rgba(243, 245, 247, 0.55);
}

@media (max-width: 1100px) {
  .portfolio__item--large,
  .portfolio__item--tall {
    grid-column: span 12;
  }
  .portfolio__item--wide {
    grid-column: span 6;
  }
  .portfolio__item--small {
    grid-column: span 6;
  }
}

@media (max-width: 700px) {
  .portfolio {
    padding: 48px 16px;
  }
  .portfolio__grid {
    gap: 14px;
  }
  .portfolio__item--large,
  .portfolio__item--tall,
  .portfolio__item--wide,
  .portfolio__item--small {
    grid-column: span 12;
    min-height: 260px;
  }
  .portfolio__content {
    transform: translateY(calc(100% - 72px));
    padding: 18px;
  }
  .portfolio__name {
    font-size: 16px;
  }
}
.portfolio__item--playing .portfolio__play {
  opacity: 0;
  pointer-events: none;
}

.portfolio__item--playing .portfolio__content {
  opacity: 0;
  transform: translateY(20px);
}
/* --- PORTFOLIO-VIDEO --- */

/*--- COOKIE ---*/
.cookie {
  position: fixed;
  right: 13%;
  bottom: 70px;
  background-color: #ffffff;
  border-radius: 4px 4px;
  box-shadow:
    rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em,
    rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em,
    rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
  z-index: 500;
}
@media (max-width: 1440px) {
  .cookie {
    right: 15px;
  }
}
@media (max-width: 767px) {
  .cookie {
    left: 15px;
    bottom: 50px;
  }
}

.container-cookie {
  width: 592px;
  box-sizing: border-box;
  padding: 12px 12px;
}
@media (max-width: 767px) {
  .container-cookie {
    width: calc(100% - 0px);
    padding: 12px 12px;
  }
}

.container-cookie p {
  font-size: 16px;
  line-height: 1.3;
}

.wrapper-buttons {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 10px 0 0 0;
}
@media (max-width: 567px) {
  .wrapper-buttons {
    flex-direction: column;
  }
}
.wrapper-buttons .btn {
  font-weight: 500;
  letter-spacing: normal;
  width: 150px;
  font-size: 16px;
  padding: 12px 20px;
  text-transform: none;
  justify-content: center;
  text-align: center;
  cursor: pointer;
}
@media (max-width: 567px) {
  .wrapper-buttons .btn {
    width: 100%;
    margin: 0 0 6px 0;
  }
}

.privacy {
  color: #23241f;
  border-bottom: 1px dashed #333;
}

.cookie.hidden {
  display: none;
}

/*--- COOKIE ---*/

/*--- RUTUBE ---*/
.video-section {
 background-image: url(../img/background/bg-4.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
}


.video-section .container {
  border-left: 1px solid rgba(0, 0, 0, 0.05);
  border-right: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.video-section h2 {
  margin: 0 0 30px ;
}
.video-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 45px;
}

.video-section__content {
  max-width: 820px;
}

.video-section__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 9px 15px;
  border: 1px solid rgba(238, 41, 54, 0.2);
  border-radius: 100px;
  color: #123aed;
  background: rgba(238, 41, 54, 0.06);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-section__label-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #ffffff;
  background: #1283ed;
}

.video-section__label-icon svg {
  width: 10px;
  height: 10px;
  margin-left: 2px;
  fill: currentColor;
}

.video-section__title {
  max-width: 900px;
  margin: 0 0 20px;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #1e1e1e;
}

.video-section__description {
  max-width: 760px;
  margin: 0;
  color: #696969;
  font-size: 18px;
  line-height: 1.65;
}

.video-section__header-button,
.video-section__bottom-button {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-sizing: border-box;
  padding: 16px 25px;
  border-radius: 6px;
  color: #ffffff;
    background-image: linear-gradient(90deg, #fff0be 13%, #fddd6f 100%);
        color: #23241f;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}


.video-section__header-button svg,
.video-section__bottom-button svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: currentColor;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.video-card {
  overflow: hidden;
  border: 1px solid #e7e7e7;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 15px 45px rgba(35, 35, 35, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.video-card:hover {
  border-color: rgba(238, 41, 54, 0.25);
  box-shadow: 0 22px 55px rgba(35, 35, 35, 0.13);
  transform: translateY(-6px);
}

.video-card__player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #191919;
}

.video-card__player iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card__body {
  padding: 23px 24px 26px;
}

.video-card__number {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.video-card__title {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
}

.video-card__text {
  margin: 0;
  color: #737373;
  line-height: 1.6;
}

.channel-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  margin-top: 32px;
  padding: 30px 34px;
  border-radius: 18px;
  background: #242424;
}

.channel-banner__main {
  display: flex;
  align-items: center;
  gap: 20px;
}

.channel-banner__icon {
  display: flex;
  flex: 0 0 58px;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 14px;
  color: #ffffff;
  background: #1283ed;
}

.channel-banner__icon svg {
  width: 25px;
  height: 25px;
  margin-left: 3px;
  fill: currentColor;
}

.channel-banner__title {
  margin: 0 0 7px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
}

.channel-banner__text {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 15px;
  line-height: 1.55;
}

.video-section__bottom-button {
  border-color: #ffffff;
  color: #242424;
  background: #ffffff;
  box-shadow: none;
  white-space: nowrap;
}


@media (max-width: 1100px) {
  .video-section {
    padding: 80px 20px;
  }

  .video-section__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 12px);
  }
}

@media (max-width: 760px) {
  .video-section {
    padding: 65px 15px;
  }

  .video-section__header {
    gap: 25px;
    margin-bottom: 32px;
  }

  .video-section__description {
    font-size: 16px;
  }

  .video-section__header-button {
    width: 100%;
  }

  .video-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .video-card:last-child {
    grid-column: auto;
    width: 100%;
  }

  .channel-banner {
    align-items: flex-start;
    flex-direction: column;
    padding: 25px 22px;
  }

  .channel-banner__main {
    align-items: flex-start;
  }

  .video-section__bottom-button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .video-section__title {
    font-size: 32px;
  }

  .video-card__body {
    padding: 20px;
  }

  .video-card__title {
    font-size: 18px;
  }

  .channel-banner__main {
    flex-direction: column;
  }
}
/*--- RUTUBE ---*/
