*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  width: 100%;
  margin: 0 auto;
  font-family: "Hoves";
  font-weight: 400;
}
body.open {
  overflow-y: hidden;
}

ul,
ol {
  padding: 0;
  margin: 0;
}
p{
    margin: 0;
    padding: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

span {
  display: inline-block;
}

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

li {
  list-style: none;
}

input,
textarea,
button,
select {
  font-family: inherit;
  border: 0;
  background: none;
  outline: none;
  resize: none;
}

/* Inter */
@font-face {
  font-family: "Inter";
  src: url("./assets/fonts/Inter/Inter_24pt-Regular.woff") format("woff"),
    url("./assets/fonts/Inter/Inter_24pt-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("./assets/fonts/Inter/Inter_24pt-Medium.woff") format("woff"),
    url("./assets/fonts/Inter/Inter_24pt-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("./assets/fonts/Inter/Inter_24pt-SemiBold.woff") format("woff"),
    url("./assets/fonts/Inter/Inter_24pt-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  display: swap;
}
@font-face {
  font-family: "Hoves";
  src: url("./assets/fonts/Hoves/TTHoves-Regular.woff") format("woff"),
    url("./assets/fonts/Hoves/TTHoves-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  display: swap;
}
@font-face {
  font-family: "Hoves";
  src: url("./assets/fonts/Hoves/TTHoves-Medium.woff") format("woff"),
    url("./assets/fonts/Hoves/TTHoves-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  display: swap;
}
@font-face {
  font-family: "Hoves";
  src: url("./assets/fonts/Hoves/TTHoves-DemiBold.woff") format("woff"),
    url("./assets/fonts/Hoves/TTHoves-DemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  display: swap;
}
@font-face {
  font-family: "Hoves";
  src: url("./assets/fonts/Hoves/TTHoves-Bold.woff") format("woff"),
    url("./assets/fonts/Hoves/TTHoves-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("./assets/fonts/Montserrat/Montserrat-Medium.woff") format("woff"),
    url("./assets/fonts/Montserrat/Montserrat-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("./assets/fonts/Montserrat/Montserrat-Regular.woff") format("woff"),
    url("./assets/fonts/Montserrat/Montserrat-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  display: swap;
}
@font-face {
  font-family: "Next-Art";
  src: url("./assets/fonts/Next-Art/NEXTART-Bold.woff") format("woff"),
    url("./assets/fonts/Next-Art/NEXTART-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  display: swap;
}
.loader {
  position: fixed;
  background-color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100vh;
  width: 100%;
  z-index: 999999999999;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  left: 0;
  top: 0;
}

.loader svg path {
  fill-opacity: 0;
  stroke-width: 2;
  stroke-dasharray: 2000px;
}

.loader.animating svg path {
  -webkit-animation: DASH3 3s forwards;
  animation: DASH3 3s forwards;
}

.loader.disable {
  opacity: 0;
  visibility: hidden;
}

@-webkit-keyframes DASH3 {
  0% {
    stroke-dashoffset: 2000px;
  }
  80% {
    stroke-dashoffset: 0;
    fill-opacity: 0;
  }
  100% {
    stroke-dashoffset: 0;
    fill-opacity: 1;
  }
}

@keyframes DASH3 {
  0% {
    stroke-dashoffset: 2000px;
  }
  80% {
    stroke-dashoffset: 0;
    fill-opacity: 0;
  }
  100% {
    stroke-dashoffset: 0;
    fill-opacity: 1;
  }
}
.header {
  background-color: #000;
  padding: 18px 0;
  color: #fff;
}
.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__burger-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  border: 1px solid #fff;
  padding: 5px 20px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  cursor: pointer;
}
.header__burger-menu svg path {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.header__burger-menu span {
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.header__burger-menu:hover {
  background-color: #fff;
}
.header__burger-menu:hover svg path {
  stroke: #000;
}
.header__burger-menu:hover span {
  color: #000;
}
.header__menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__menu ul li a {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.header__menu ul li:last-child {
  cursor: pointer;
}
.header__menu ul li a:hover {
  color: #cd0200;
}
.header__menu ul li:last-child {
  background-color: red;
  padding: 12px 19px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.header__menu ul li:last-child:hover {
  background-color: #fff;
}
.header__menu ul li:last-child:hover a {
  color: #000;
}
.header__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 28px;
}
.header__btns a {
  font-weight: 500;
  font-size: 16px;
}
.header__btns a:nth-child(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #fff;
  font-weight: 600;
  font-size: 18px;
  padding: 12px 11px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.header__btns a:nth-child(2):hover {
  background-color: #fff;
  color: #000;
}
.header__mob-wrapper {
  display: none;
}
.header__mob-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.hero {
  position: relative;
}
.hero .swiper-slide {
  background-repeat: no-repeat;
  background-size: cover;
  height: calc(100vh - 83.5px);
}
.hero .swiper-slide .container {
  position: relative;
  height: 100%;
}
.hero .swiper-slide h3 {
  color: #fff;
  font-family: "Hoves";
  font-weight: 600;
  font-size: 50px;
  text-transform: uppercase;
  position: absolute;
  left: 0;
  bottom: 51px;
}
.hero .swiper-button-next,
.hero .swiper-button-prev {
  color: #fff;
}
.hero .swiper-button-next,
.hero .swiper-rtl .swiper-button-prev {
  right: 40px;
}
.hero .swiper-button-prev,
.hero .swiper-rtl .swiper-button-next {
  left: 40px;
}
.hero .swiper-horizontal > .swiper-pagination-bullets,
.hero .swiper-pagination-bullets.swiper-pagination-horizontal,
.hero .swiper-pagination-custom,
.hero .swiper-pagination-fraction {
  bottom: 16px;
}
.hero .swiper-pagination-bullet-active {
  position: relative;
}
.hero .swiper-pagination-bullet-active::after {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  border: 1px solid #fff;
  border-radius: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -5px;
}
.hero .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 1;
  background-color: #fff;
}
.hero .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.hero
  .swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 8px;
}

.products {
  margin-top: 100px;
  margin-bottom: 100px;
}
.products__categories {
  position: relative;
  margin-bottom: 25px;
}
.products__categories h2 {
  position: absolute;
  top: 20px;
  left: 42px;
  font-weight: 600;
  font-size: 40px;
  color: #fff;
}
.products__btn {
  font-weight: 500;
  font-size: 18px;
  border: 1px solid #191817;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #191817;
  color: #fff;
  padding: 19px 32px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.products__btn:hover {
  background-color: #fff;
  color: #000;
}
.products .aos-animate {
  opacity: 1;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.products [data-aos][data-aos][data-aos-duration="1500"] {
  -webkit-transition-duration: 1.5s;
  transition-duration: 1.5s;
}

.popular-products {
  margin-bottom: 150px;
  position: relative;
}
.popular-products .container {
  position: relative;
}
.popular-products__cards {
  border: 0px solid #e0e0e0;
  -webkit-box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.12);
  background-color: #fff;
  position: relative;
}
.popular-products__cards .product-image {
  margin-bottom: 18px;
  width: 100%;
  height: 273px;
  position: relative;
  overflow: hidden; /* Prevents unwanted overflow */
}

.popular-products__cards .product-image img {
  width: 100%;
  height: 272.5px;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out; /* Smooth transition */
}

.popular-products__cards .product-image .hover-image {
  opacity: 0;
  transform: scale(
    1.05
  ); /* Slightly scaled up for a smooth transition effect */
  position: absolute;
  top: 0;
  left: 0;
}

.popular-products__cards .product-image:hover .default-image {
  opacity: 0;
  visibility: hidden;
  z-index: -1; /* Just -1 is enough */
  transform: scale(0.95); /* Shrink effect for smoothness */
}

.popular-products__cards .product-image:hover .hover-image {
  opacity: 1;
  transform: scale(1);
}

.popular-products__cards p {
  font-weight: 500;
  font-size: 18px;
  color: #828282;
  margin-bottom: 14px;
  overflow: hidden;
  height: 21px;
}
.popular-products__cards h3 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 6px;
  height: 50px;
  overflow: hidden;
}
.popular-products__cards span {
  font-weight: 500;
  font-size: 18px;
  color: #828282;
  margin-bottom: 17px;
}
.popular-products__cards .products-descr {
  padding: 0 12px 11px;
  position: relative;
}

.popular-swiper {
  padding: 10px;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: -48px;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: -48px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 70px;
}

.swiper-button-next,
.swiper-button-prev {
  color: #828282;
}

.title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 33px;
}
.title h2 {
  font-weight: 600;
  font-size: 34px;
}
.title .icon {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #000;
}

.purchase_btn {
  width: 100%;
  background-color: #191817;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  font-weight: 600;
  font-size: 20px;
  border: 1px solid #191817;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.purchase_btn:hover {
  background-color: #fff;
  color: #000;
}

.more_btn a {
  color: #fff;
  border: 1px solid #fff;
  padding: 19px 34px;
  font-weight: 500;
  font-size: 18px;
}
.more_btn a:hover {
  color: #000;
  background-color: #fff;
}

.services {
  margin-top: 150px;
  margin-bottom: 155px;
  background-color: #000;
  padding: 86px 0 98px;
}
.services h2 {
  font-weight: 600;
  font-size: 30px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  margin-bottom: 89px;
}
.services__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  background-color: #fff;
  padding: 43px 20px 63px 20px;
  height: 100%;
}
.services__card p {
  margin-top: 28px;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: #000;
}

.discounts {
  position: relative;
}
.discounts .container {
  position: relative;
}
.discounts__cards {
  -webkit-box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.12);
  background-color: #fff;
}
.discounts__card {
  margin-bottom: 18px;
  width: 100%;
  height: 273px;
  position: relative;
  overflow: hidden; /* Prevents unwanted overflow */
}
.discounts__card img {
  width: 100%;
  height: 272.5px;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out; /* Smooth transition */
}
.discounts__card .hover-image {
  opacity: 0;
  transform: scale(
    1.05
  ); /* Slightly scaled up for a smooth transition effect */
  position: absolute;
  top: 0;
  left: 0;
}

.discounts__card:hover .default-image {
  opacity: 0;
  visibility: hidden;
  z-index: -1; /* Just -1 is enough */
  transform: scale(0.95); /* Shrink effect for smoothness */
}

.discounts__card:hover .hover-image {
  opacity: 1;
  transform: scale(1);
}

.discounts__card-context {
  padding: 0 10px 10px 10px;
}
.discounts__card-context p {
  font-weight: 500;
  font-size: 18px;
  color: #828282;
  margin-bottom: 14px;
  overflow: hidden;
  height: 21px;
}
.discounts__card-context h3 {
  margin-bottom: 6px;
  font-size: 20px;
  font-weight: 600;
  height: 50px;
  overflow: hidden;
}
.discounts__card-context del {
  display: block;
  margin-bottom: 12px;
  font-weight: 500;
  font-size: 18px;
  color: #828282;
}
.discounts__card-context span {
  font-weight: 500;
  font-size: 20px;
  color: #cd0200;
  margin-bottom: 17px;
}
.discounts .discounts-swiper {
  padding: 10px 10px 10px 10px;
}
.discounts .swiper-button-next,
.discounts .swiper-rtl .swiper-button-prev {
  right: -48px;
}
.discounts .swiper-button-prev,
.discounts .swiper-rtl .swiper-button-next {
  left: -48px;
}
.discounts .swiper-button-next:after,
.discounts .swiper-button-prev:after {
  font-size: 70px;
}
.discounts .swiper-button-next,
.discounts .swiper-button-prev {
  color: #828282;
}

.clients {
  padding-top: 113px;
  padding-bottom: 113px;
  background-color: #191817;
  margin-top: 147px;
}
.clients__title h2 {
  color: #fff;
  font-weight: 600;
  font-size: 30px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 62px;
}
.clients__cards {
  height: 152px;
  border: 1px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  padding: 0 15px;
  cursor: pointer;
}
.clients__cards img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.clients__cards:hover {
  background-color: #fff;
}
.clients__cards:hover img {
  -webkit-filter: brightness(1) invert(0);
  filter: brightness(1) invert(0);
}

.testimonials {
  position: relative;
  padding-bottom: 105px;
  background-color: #191817;
}
.testimonials .container {
  position: relative;
}
.testimonials__wrapper h3 {
  font-weight: 600;
  font-size: 30px;
  text-transform: uppercase;
  text-align: center;
  color: white;
  margin-bottom: 62px;
}
.testimonials__card {
  background-color: #fff;
  padding: 21px 14px 28px;
}
.testimonials__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 17px;
  border-bottom: 1px solid #e0e0e0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 14px;
}
.testimonials__user-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.testimonials__user-info h2 {
  font-weight: 600;
  font-size: 16px;
}
.testimonials__user-info span {
  font-weight: 400;
  font-size: 14px;
  color: #828282;
}
.testimonials__card-context {
  margin-top: 20px;
}
.testimonials__card-context p {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  height: 240px;
  overflow: hidden;
}
.testimonials .testimonials-swiper {
  padding: 10px 10px 10px 10px;
}

.offers {
  margin-bottom: 150px;
  margin-top: 150px;
  position: relative;
}
.offers .container {
  position: relative;
}

.offers-swiper {
  padding: 10px;
}

.videoblog {
  background-color: #191817;
  padding: 86px 0;
}
.videoblog__wrapper h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 62px;
  font-weight: 600;
  font-size: 30px;
  text-transform: uppercase;
}
.videoblog__cards p {
  color: #fff;
  margin-top: 36px;
  font-weight: 600;
  font-size: 22px;
  text-transform: uppercase;
  height: 48px;
  overflow: hidden;
}
.videoblog__cards {
  width: 100%;
}
.videoblog__img {
  overflow: hidden;
}
.videoblog__img img {
  height: 322px;
  width: 100%;
  transition: transform 0.3s ease;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
}
.videoblog__img img:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.videoblog .more_btn {
  margin-top: 50px;
}

.projects {
  background-color: #191817;
  padding-bottom: 100px;
}
.projects__wrapper h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 62px;
  font-weight: 600;
  font-size: 30px;
  text-transform: uppercase;
}
.project__cards p {
  color: #fff;
  margin-top: 36px;
  font-weight: 600;
  font-size: 22px;
  text-transform: uppercase;
  height: 50px;
  overflow: hidden;
}
.project__cards {
  width: 100%;
}
.project__img {
  overflow: hidden;
}
.project__img img {
  height: 322px;
  width: 100%;
  transition: transform 0.3s ease;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
}
.project__img img:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.projects .more_btn {
  margin-top: 50px;
}

.questions {
  position: relative;
  padding: 245px 0 100px;
  overflow: hidden;
  display: block;
}

.questions.black-background {
  background-color: #191817;
}

.questions.black-background:hover .questions-text {
  color: white !important;
  opacity: 1;
}

.questions-btn svg {
  position: relative;
  z-index: 2;
}

.questions:hover .questions-btn svg path {
  fill: #fff;
}

.questions-btn {
  position: absolute;
  background-color: #fff;
  z-index: 2;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 160px;
  height: 160px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.questions-btn:hover {
  background-color: #000;
}

.questions-btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: #000;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.questions:hover .questions-btn::before {
  width: 101%;
  height: 101%;
}

.questions-text {
  font-family: "Next-Art";
  font-weight: 700;
  font-size: 118px;
  line-height: 188px;
  white-space: nowrap;
  text-transform: uppercase;
  color: #828282;
  opacity: 0.1;
  margin-right: 77px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.questions-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 18%;
  -webkit-animation: scroll linear infinite 40s;
  animation: scroll linear infinite 40s;
  width: 4000px;
  -webkit-transition: -webkit-animation-play-state ease 0.3s;
  transition: -webkit-animation-play-state ease 0.3s;
  transition: animation-play-state ease 0.3s;
  transition: animation-play-state ease 0.3s,
    -webkit-animation-play-state ease 0.3s;
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(-5%);
    transform: translateX(-5%);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: translateX(-5%);
    transform: translateX(-5%);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.category-tabs {
  background-color: #f5f5f5;
}
.category-tabs__wrapper ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 25px;
}
.category-tabs__wrapper ul li a {
  font-weight: 500;
  font-size: 16px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  padding: 5px 18px;
}
.category-tabs__wrapper ul li a.active {
  background-color: #000;
  padding: 5px 18px;
  color: #fff;
}

.chairs {
  background-color: #fff;
  display: none;
}
.chairs.active {
  display: block;
}
.chairs__wrapper {
  margin-bottom: 136px;
}
.chairs__wrapper h1 {
  margin-top: 38px;
  font-weight: 400;
  font-size: 30px;
  text-transform: uppercase;
  text-align: center;
}
.chairs__user-select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  margin-bottom: 24px;
}
.chairs__user-select label {
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: #828282;
}
.chairs__user-select select {
  font-weight: 500;
  font-size: 14px;
  border: 1px solid #e0e0e0;
  padding: 5px 9px;
  color: #000000;
}
.chairs__options {
  -webkit-box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.12);
  background-color: #fff;
  margin-bottom: 24px;
}
.chairs__image {
  width: 100%;
  height: 380px;
  margin-bottom: 15px;
  position: relative;
  overflow: hidden; /* Prevents unwanted overflow */
}

.chairs__image img {
  width: 100%;
  height: 374px;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out; /* Smooth transition */
}

.chairs__image .hover-image {
  opacity: 0;
  transform: scale(
    1.05
  ); /* Slightly scaled up for a smooth transition effect */
}

.chairs__image:hover .default-image {
  opacity: 0;
  visibility: hidden;
  z-index: -1; /* Just -1 is enough */
  transform: scale(0.95); /* Shrink effect for smoothness */
}

.chairs__image:hover .hover-image {
  opacity: 1;
  transform: scale(1);
}

.chairs__product-descr {
  padding: 0 10px 10px 10px;
}
.chairs__product-descr span {
  font-weight: 500;
  font-size: 18px;
  color: #828282;
  margin-bottom: 14px;
}
.chairs__product-descr h3 {
  margin-bottom: 6px;
  font-size: 20px;
  font-weight: 600;
  height: 47px;
  overflow: hidden;
}
.chairs__product-descr p {
  font-weight: 500;
  font-size: 20px;
  color: #828282;
  height: 24px;
  overflow: hidden;
  margin-bottom: 14px;
}

.chairs__product-descr small {
  display: block;
  font-weight: 500;
  font-size: 19px;
  color: #cd0200;
  margin-bottom: 5px;
}

.chairs__product-descr del {
  display: block;
  font-weight: 500;
  font-size: 18px;
  color: #828282;
  margin-bottom: 10px;
}

.products-descr small {
  display: block;
  font-weight: 500;
  font-size: 19px;
  color: #cd0200;
  margin-bottom: 12px;
}

.products-descr del {
  display: block;
  font-weight: 500;
  font-size: 18px;
  color: #828282;
  margin-bottom: 7px;
}

.questions-white .questions {
  position: relative;
  padding: 245px 0 100px;
  overflow: hidden;
  display: block;
}
.questions-white .questions.black-background {
  background-color: #fff;
}
.questions-white .questions.black-background:hover .questions-text {
  color: #828282 !important;
  opacity: 1;
}
.questions-white .questions-btn svg {
  position: relative;
  z-index: 2;
}
.questions-white .questions:hover .questions-btn svg path {
  fill: #fff;
}
.questions-white .questions-btn {
  position: absolute;
  background-color: #fff;
  z-index: 2;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 160px;
  height: 160px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background-color: #000;
}
.questions-white .questions-btn svg path {
  fill: white;
}
.questions-white .questions-btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: #828282;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.questions-white .questions:hover .questions-btn::before {
  width: 101%;
  height: 101%;
}
.questions-white .questions-text {
  font-family: "Next-Art";
  font-weight: 700;
  font-size: 118px;
  line-height: 188px;
  white-space: nowrap;
  text-transform: uppercase;
  color: #828282;
  opacity: 0.1;
  margin-right: 77px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.questions-white .questions-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 18%;
  -webkit-animation: scroll linear infinite 40s;
  animation: scroll linear infinite 40s;
  width: 4000px;
  -webkit-transition: -webkit-animation-play-state ease 0.3s;
  transition: -webkit-animation-play-state ease 0.3s;
  transition: animation-play-state ease 0.3s;
  transition: animation-play-state ease 0.3s,
    -webkit-animation-play-state ease 0.3s;
}
@keyframes scroll {
  0% {
    -webkit-transform: translateX(-5%);
    transform: translateX(-5%);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

.detail-page__wrapper .back-btn {
  cursor: pointer;
  margin: 19px 0 19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 7px;
}

.detail-page__wrapper .back-btn p {
  color: #000;
  font-weight: 400;
  font-size: 14px;
}
.detail-page__wrapper .swiper-slide-thumb-active {
  border: 2px solid #000000 !important;
}
.product-swiper .swiper-slide {
  border: 2px solid transparent;
}
.detail-page__wrapper .swiper-button-prev {
  background-color: #e6e6e6;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  left: 11px;
}
.detail-page__wrapper .swiper-button-next:after,
.detail-page__wrapper .swiper-button-prev:after {
  font-size: 18px;
}
.detail-page__wrapper .swiper-button-next {
  background-color: #e6e6e6;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  right: 11px;
}
.detail-page__wrapper .product-swiper2 {
  margin-bottom: 13px;
}
.detail-page__main_image img {
  object-fit: cover;
  height: 568px;
  width: 100%;
}

.detail-page__image img {
  object-fit: cover;
  height: 140px;
  width: 100%;
}
.detail-page__product_characters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.detail-page__product_card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
.detail-page__product_card p {
  font-weight: 400;
  font-size: 16px;
}
.detail-page__product_item-key {
  position: relative;
  min-width: 215px;
}
.detail-page__product_item-key p {
  display: inline-block;
  background-color: #fff;
  position: relative;
  z-index: 9;
}
.detail-page__product_item-key::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  border-bottom: 1px dashed #000;
  width: 100%;
}
.detail-page__product-info h2 {
  margin-top: 70px;
  margin-bottom: 26px;
  font-weight: 600;
  font-size: 30px;
}
.detail-page__product-info span {
  font-weight: 500;
  font-size: 25px;
  color: #828282;
  margin-bottom: 40px;
}
.detail-page__product-info small {
  display: block;
  font-weight: 500;
  font-size: 25px;
  color: #cd0200;
  margin-bottom: 40px;
}
.detail-page__product-info del {
  display: block;
  font-weight: 500;
  font-size: 25px;
  color: #828282;
  margin-bottom: 10px;
}
.detail-page__product_view {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 11px;
  border: 1px solid;
  width: 256px;
  height: 60px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #f4f4f4;
  margin-top: 10px;
  cursor: pointer;
}
.detail-page__product_view a {
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
}
.detail-page__product_condition {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 69px;
  align-items: center;
}
.detail-page__product_amount {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
.detail-page__product_title p {
  font-weight: 500;
  font-size: 16px;
  color: #828282;
}
.detail-page__product_quantity {
  border: 1px solid #e0e0e0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 120px;
  height: 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 15px;
  font-weight: 500;
  font-size: 16px;
}
.detail-page__product_quantity div {
  cursor: pointer;
  color: #000;
}
.detail-page__product_quantity .adding {
  font-size: 18px;
  color: #000;
}
.detail-page__product_quantity .default {
  color: #000;
}
.detail-page__product_quantity .removing {
  font-size: 18px;
  color: #000;
}
.detail-page__product_color {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
}
.detail-page__product_color a {
  border: 2px solid transparent;
}
.detail-page__product_color a.active {
  border: 2px solid #000000;
}
.detail-page .add__btn button {
  margin-top: 24px;
  background-color: #191817;
  color: #fff;
  border: 1px solid #191817;
  padding: 21px 91px;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  cursor: pointer;
}
.detail-page .add__btn button:hover {
  background-color: #fff;
  color: #000;
}
.detail-page__media {
  margin-top: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 169px;
}
.detail-page__media p {
  font-weight: 500;
  font-size: 18px;
  color: #828282;
}
.detail-page__media a {
  text-decoration: underline;
}
.detail-page__media-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 26px;
}
.detail-page__product_description {
  margin-top: 77px;
  margin-bottom: 77px;
}
.detail-page__product_description h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 22px;
}
.detail-page__product_description p {
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 52px;
}
.detail-page__product_example {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.detail-page__product_example img {
  position: relative;
}
.detail-page__product_example p {
  width: 140px;
  height: 140px;
  border: 2px solid #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 50px 31px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  z-index: 99;
  cursor: pointer;
}
.detail-page__product_example p:hover {
  text-decoration: underline;
}
.detail-page__services_wrapper {
  background-color: #000;
  padding: 70px 0 70px;
}
.detail-page__services_wrapper .services__card {
  padding: 15px 20px 35px 20px;
}
.detail-page__services_wrapper .services__card p {
  margin-top: 12px;
}
.detail-page .detail-page__offers__wrapper {
  margin-top: 93px;
  margin-bottom: 105px;
  position: relative;
}
.detail-page .detail-page__offers__wrapper .container {
  position: relative;
}
.detail-page .detail-page__offers__wrapper .category-swiper {
  padding: 10px;
}
.detail-page .detail-page__offers__wrapper .swiper-button-next,
.detail-page .detail-page__offers__wrapper .swiper-rtl .swiper-button-prev {
  right: -48px;
}
.detail-page .detail-page__offers__wrapper .swiper-button-prev,
.detail-page .detail-page__offers__wrapper .swiper-rtl .swiper-button-next {
  left: -48px;
}
.detail-page .detail-page__offers__wrapper .swiper-button-next:after,
.detail-page .detail-page__offers__wrapper .swiper-button-prev:after {
  font-size: 70px;
}
.detail-page .detail-page__offers__wrapper .swiper-button-next,
.detail-page .detail-page__offers__wrapper .swiper-button-prev {
  color: #828282;
}

.recommended {
  position: relative;
}
.recommended .container {
  position: relative;
}
.recommended .recommended-swiper {
  padding: 10px;
}
.recommended .swiper-button-next,
.recommended .swiper-rtl .swiper-button-prev {
  right: -48px;
}
.recommended .swiper-button-prev,
.recommended .swiper-rtl .swiper-button-next {
  left: -48px;
}
.recommended .swiper-button-next:after,
.recommended .swiper-button-prev:after {
  font-size: 70px;
}
.recommended .swiper-button-next,
.recommended .swiper-button-prev {
  color: #828282;
}

.contacts__wrapper h2 {
  margin: 63px 0 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 400;
  font-size: 30px;
  text-transform: uppercase;
  text-align: center;
}
.contacts__cards {
  background-color: #f5f5f5;
  padding: 36px 52px 34px 26px;
  margin-bottom: 80px;
}
.contacts__address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  margin-bottom: 36px;
}
.contacts__address:last-child {
  margin-bottom: 0;
}
.contacts__info span {
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 9px;
}
.contacts__info p {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 9px;
}
.contacts__info a {
  text-decoration: underline;
  font-weight: 400;
  font-size: 14px;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  color: #828282;
}

.partners {
  background-color: #191817;
  position: relative;
}
.partners::after {
  content: "";
  position: absolute;
  background-image: url("./assets/img/LK.svg");
  background-repeat: no-repeat;
  right: 60px;
  top: 3px;
  width: 257px;
  height: 292px;
}
.partners__wrapper h2 {
  padding-top: 116px;
  padding-bottom: 114px;
  font-weight: 600;
  font-size: 55px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}
.partners .row {
  padding-bottom: 60px;
}
.partners__offer {
  padding-bottom: 144px;
}
.partners__offer-wrapper {
  background-image: url("./assets/img/partner-image.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 488px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 85px 0 183px 56px;
}
.partners__offer-wrapper p {
  max-width: 808px;
  font-weight: 400;
  font-size: 18px;
  line-height: 160%;
  color: #fff;
  margin-top: 30px;
  margin-bottom: 37px;
}
.partners__offer-wrapper h3 {
  font-weight: 600;
  font-size: 30px;
  text-transform: uppercase;
  color: #fff;
}
.partners__offer-wrapper a {
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  background-color: #fff;
  color: #000;
  width: 243px;
  height: 59px;
  text-align: center;
  padding: 20px 0;
}

.video-review {
  background-color: #191817;
  position: relative;
}
.video-review::after {
  content: "";
  position: absolute;
  background-image: url("./assets/img/LK.svg");
  background-repeat: no-repeat;
  right: 60px;
  top: 3px;
  width: 257px;
  height: 292px;
}
.video-review__wrapper h2 {
  padding-top: 116px;
  padding-bottom: 114px;
  font-weight: 600;
  font-size: 55px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}
.video-review__wrapper .videoblog__cards {
  margin-bottom: 91px;
}

.project-review {
  background-color: #191817;
  position: relative;
}
.project-review::after {
  content: "";
  position: absolute;
  background-image: url("./assets/img/LK.svg");
  background-repeat: no-repeat;
  right: 60px;
  top: 3px;
  width: 257px;
  height: 292px;
}
.project-review__wrapper h2 {
  padding-top: 116px;
  padding-bottom: 114px;
  font-weight: 600;
  font-size: 55px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}
.project-review .projects__cards {
  margin-bottom: 91px;
}

.reviews {
  background-color: #191817;
  position: relative;
}
.reviews::after {
  content: "";
  position: absolute;
  background-image: url("./assets/img/LK.svg");
  background-repeat: no-repeat;
  right: 60px;
  top: 3px;
  width: 257px;
  height: 292px;
}
.reviews__wrapper h2 {
  padding-top: 116px;
  padding-bottom: 114px;
  font-weight: 600;
  font-size: 55px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}
.reviews__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  gap: 17px;
  width: 25%;
}
.reviews__user-info h3 {
  font-weight: 600;
  font-size: 16px;
}
.reviews__user-info span {
  font-weight: 400;
  font-size: 14px;
  color: #828282;
}
.reviews__cards {
  background-color: #fff;
  max-width: 968px;
  margin: 0 auto 24px;
  padding: 47px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}
.reviews__cards p {
  max-width: 596px;
}
.reviews__card-context p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
}
.reviews__button {
  margin-top: 16px;
  padding-bottom: 76px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.reviews__button a {
  font-weight: 500;
  font-size: 22px;
  text-align: center;
  border: 1px solid #fff;
  padding: 19px 34px;
  color: #fff;
}

.reviews__button a:hover {
  background-color: white;
  color: #000;
}

.blog-page {
  background-color: #191817;
  position: relative;
}
.blog-page::after {
  content: "";
  position: absolute;
  background-image: url("./assets/img/LK.svg");
  background-repeat: no-repeat;
  right: 60px;
  top: 3px;
  width: 257px;
  height: 292px;
}
.blog-page .back-btn {
  color: #fff;
}
.blog-page__wrapper .back-btn {
  padding: 49px 0 19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 7px;
  margin-bottom: 51px;
  cursor: pointer;
}
.blog-page__wrapper .back-btn p {
  font-weight: 400;
  font-size: 14px;
}
.blog-page__card {
  padding-bottom: 123px;
}
.blog-page__content {
  background-color: #fff;
  max-width: 968px;
  padding: 54px 80px;
  margin: 0 auto;
}
.blog-page__content p {
  margin-bottom: 41px;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
}
.blog-page__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.blog-page__title h2 {
  max-width: 707px;
  font-weight: 600;
  font-size: 55px;
  text-align: center;
  color: #fff;
  margin-bottom: 25px;
}
.blog-page__title span {
  font-weight: 400;
  font-size: 14px;
  color: #bdbdbd;
  margin-bottom: 25px;
}

.project-page {
  background-color: #191817;
  position: relative;
}
.project-page::after {
  content: "";
  position: absolute;
  background-image: url("./assets/img/LK.svg");
  background-repeat: no-repeat;
  right: 60px;
  top: 3px;
  width: 257px;
  height: 292px;
}
.project-page .back-btn {
  color: #fff;
}
.project-page__wrapper .back-btn {
  padding: 49px 0 19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 7px;
  margin-bottom: 51px;
}
.project-page__wrapper .back-btn p {
  font-weight: 400;
  font-size: 14px;
}
.project-page__card {
  padding-bottom: 123px;
}
.project-page__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #fff;
  max-width: 968px;
  padding: 54px 80px;
  margin: 0 auto;
  gap: 41px;
}
.project-page__content p {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
}
.project-page__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.project-page__title h2 {
  font-weight: 600;
  font-size: 55px;
  text-align: center;
  color: #fff;
  margin-bottom: 25px;
}
.project-page__title span {
  font-weight: 400;
  font-size: 14px;
  color: #bdbdbd;
  margin-bottom: 25px;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
  z-index: -999999999;
  visibility: hidden;
}
.modal.active {
  opacity: 1;
  z-index: 999999999;
  visibility: visible;
}
.modal.active .modal__wrapper {
  opacity: 1;
  visibility: visible;
}
.modal__wrapper {
  min-height: 515px;
  max-width: 515px;
  background-color: #fff;
  padding: 60px;
  margin: 0 15px;
  position: relative;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
}

.modal__wrapper img {
  width: 100%;
}
.modal__wrapper .close-btn {
  position: absolute;
  top: 8px;
  right: 7px;
  cursor: pointer;
}
.modal__wrapper .close-btn img {
  margin: 0;
}
.modal__wrapper h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 172%;
  text-transform: uppercase;
  text-align: center;
}
.modal__wrapper img {
  margin-bottom: 21px;
  margin-top: 21px;
}
.modal__wrapper a {
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  color: #fff;
  background-color: #000;
  display: block;
  padding: 19px 10px;
}

.burger-menu {
  color: white;
  background-color: #000000;
  top: 0;
  left: 0;
  position: fixed;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
  z-index: -999999999;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.burger-menu.active {
  opacity: 1;
  z-index: 999999999;
  visibility: visible;
}
.burger-menu .menu-close-btn {
  position: absolute;
  top: -30%;
  right: 0;
  cursor: pointer;
}
.burger-menu__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}
.burger-menu__category {
  width: 480px;
  margin-right: 100px;
}
.burger-menu__category p {
  font-weight: 400;
  font-size: 25px;
  line-height: 140%;
  margin-top: -70px;
  margin-bottom: 35px;
}
.burger-menu__category ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.burger-menu__category ul li {
  position: relative;
}
.burger-menu__category ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 600;
  font-size: 35px;
  line-height: 140%;
  text-transform: uppercase;
  -webkit-transition: padding-left 0.3s ease;
  transition: padding-left 0.3s ease;
}
.burger-menu__category ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 0px;
  height: 0px;
  background-color: #fff;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.burger-menu__category ul li a:hover::before {
  width: 35px;
  height: 35px;
  opacity: 1;
  visibility: visible;
}
.burger-menu__category ul li a:hover {
  padding-left: 52px;
}

.burger-menu__links p {
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 22px;
  line-height: 140%;
  text-transform: uppercase;
}
.burger-menu__links-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.burger-menu__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  gap: 26px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.burger-menu__btn a:nth-child(1) {
  display: inline-block;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #fff;
  font-weight: 600;
  font-size: 18px;
  padding: 12px 11px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.burger-menu__btn a:nth-child(1):hover {
  background-color: #fff;
  color: #000;
}
.burger-menu .media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #000000;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.burger-menu .media svg path {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.burger-menu .media:hover svg path {
  fill: red;
}

.burger-mob {
  background-color: #191817;
  top: 0;
  left: 0;
  position: fixed;
  height: 100%;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
  z-index: -999999999;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  overflow-y: scroll;
}
.burger-mob.active {
  opacity: 1;
  z-index: 999999999;
  visibility: visible;
}
.burger-mob__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 29px;
  margin-top: 5px;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
}
.burger-mob__header::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 7px;
  width: 113px;
  height: 129px;
  background: url("./assets/img/header/vector.svg");
}
.burger-mob__languages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.burger-mob__catalog {
  color: white;
  text-align: center;
  margin-bottom: 47px;
}
.burger-mob__catalog p {
  margin-top: 47px;
  font-weight: 600;
  font-size: 24px;
  line-height: 140%;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 8px;
}
.burger-mob__catalog ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.burger-mob__catalog ul li {
  cursor: pointer;
}

.burger-mob__catalog ul li .sales {
  background-color: red;
  display: inline-block;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 4px 25px;
}
.burger-mob__catalog ul li .sales:hover {
  background-color: white;
  color: black;
}
.burger-mob__catalog ul li a {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
}
.burger-mob__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 20px;
  gap: 26px;
  align-items: center;
  margin-bottom: 20px;
}
.burger-mob__btn .tell {
  display: inline-block;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #fff;
  font-weight: 600;
  font-size: 18px;
  padding: 12px 11px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  color: white;
}
.burger-mob__media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #191817;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  gap: 21px;
}

.request {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
  z-index: 999999999;
  visibility: hidden;
  transition: 0.2s ease;
}
.request.active {
  opacity: 1;
  visibility: visible;
}
.request.active .request__wrapper {
  opacity: 1;
  visibility: visible;
}

.request .request__wrapper {
  margin: 0 15px;
}

.success {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
  z-index: 999999999;
  visibility: hidden;
  transition: 0.2s ease;
}
.success.active {
  opacity: 1;
  visibility: visible;
}
.success.active .request__wrapper {
  opacity: 1;
  visibility: visible;
}

.success .request__wrapper {
  margin: 0 15px;
}

.success img {
  margin: 0 auto !important;
}

.success .request__wrapper h3 {
  font-size: 21px;
}

.success .request__pop-up {
  height: 278px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 25px;
}

.request__wrapper {
  width: 100%;
  max-width: 515px;
  margin: 0 15px;
  background-color: #fff;
  padding: 132px 70px;
  position: relative;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  box-sizing: border-box; /* important for consistent sizing */
}
.request__wrapper .request-btn {
  position: absolute;
  top: 8px;
  right: 7px;
  cursor: pointer;
}
.request__wrapper .request-btn img {
  margin: 0;
}
.request__wrapper h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 172%;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 30px;
}
.request__wrapper form input {
  font-weight: 500;
  font-size: 18px;
  background-color: #f5f5f5;
  padding: 19px 10px;
  border: none;
  outline: none;
  padding: 16px 0 16px 20px;
  margin-bottom: 24px;
  width: 100%;
}
.request__wrapper button {
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  color: #fff;
  background-color: #000;
  display: block;
  padding: 19px 10px;
  display: block;
  width: 100%;
  cursor: pointer;
}

.footer {
  background-color: #000000;
  padding-top: 74px;
  padding-bottom: 43px;
  color: #fff;
}
.footer__wrapper {
  position: relative;
}
.footer .row {
  margin-bottom: 50px;
}
.footer__wrapper::after {
  content: "";
  position: absolute;
  background: url("./assets/img/footer/footer-logo.svg");
  background-repeat: no-repeat;
  bottom: 55px;
  right: 119px;
  width: 155px;
  height: 176px;
}
.footer__logo p {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  text-transform: uppercase;
  margin-top: 24px;
}
.footer__pages p {
  font-weight: 600;
  font-size: 22px;
  line-height: 140%;
  margin-bottom: 19px;
  text-transform: uppercase;
}
.footer__pages ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}
.footer__pages ul li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.footer__pages ul li a:hover {
  color: #cd0200;
}
.footer__media p {
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 22px;
  line-height: 140%;
  text-transform: uppercase;
}
.footer__media-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer__media .media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #727272;
  width: 55px;
  height: 55px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.footer__media .media:hover {
  background-color: #fff;
}
.footer__media .media:hover svg path {
  fill: #000000;
}
.footer__info {
  padding-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.footer__info p {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
}
.footer__company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  gap: 14px;
}
.footer__company span {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
}
.footer__company a {
  color: #fff;
  font-weight: 600;
  font-size: 30px;
  text-align: center;
}

@media (max-width: 1200px) {
  .video-review__wrapper .videoblog__cards {
    margin-bottom: 40px;
  }
  .video-review::after {
    content: none;
  }
  .detail-page__product-info h2 {
    margin-top: 41px;
  }
  .project-review .projects__cards {
    margin-bottom: 40px;
  }
  .project-review::after {
    content: none;
  }
  .reviews::after {
    content: none;
  }
  .project-page::after {
    content: none;
  }
  .blog-page::after {
    content: none;
  }
  .partners::after {
    content: none;
  }
  .header__wrapper {
    display: none;
  }
  .header__mob-wrapper {
    display: block;
  }
  .hero .swiper-button-prev,
  .hero .swiper-rtl .swiper-button-next {
    left: 10px;
  }
  .hero .swiper-button-next,
  .hero .swiper-rtl .swiper-button-prev {
    right: 10px;
  }
  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 40px;
  }
  .popular-products .swiper-button-next,
  .popular-products .swiper-button-prev {
    top: 25px;
    right: 20px;
  }
  .popular-products .swiper-button-prev,
  .popular-products .swiper-rtl .swiper-button-next {
    left: auto;
    right: 90px;
  }
  .popular-products .swiper-button-next:after,
  .popular-products .swiper-button-prev:after {
    font-size: 50px;
  }
  .popular-products {
    margin-bottom: 100px;
  }
  .recommended .swiper-button-next,
  .recommended .swiper-button-prev {
    top: 25px;
    right: 20px;
  }
  .recommended .swiper-button-prev,
  .recommended .swiper-rtl .swiper-button-next {
    left: auto;
    right: 90px;
  }
  .recommended .swiper-button-next:after,
  .recommended .swiper-button-prev:after {
    font-size: 50px;
  }
  .services {
    margin-top: 100px;
    margin-bottom: 105px;
  }
  .discounts .swiper-button-next,
  .discounts .swiper-button-prev {
    top: 25px;
    right: 20px;
  }
  .discounts .swiper-button-prev,
  .discounts .swiper-rtl .swiper-button-next {
    left: auto;
    right: 90px;
  }
  .discounts .swiper-button-next:after,
  .discounts .swiper-button-prev:after {
    font-size: 50px;
  }
  .offers .swiper-button-next,
  .offers .swiper-button-prev {
    top: 22px;
    right: 20px;
  }
  .offers .swiper-button-prev,
  .offers .swiper-rtl .swiper-button-next {
    left: auto;
    right: 90px;
  }
  .offers .swiper-button-next:after,
  .offers .swiper-button-prev:after {
    font-size: 36px;
  }
  .clients {
    margin-top: 105px;
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .testimonials {
    padding-bottom: 90px;
  }
  .offers {
    margin-top: 100px;
    margin-bottom: 105px;
  }
  .detail-page__media {
    margin-top: 50px;
    gap: 50px;
  }
  .detail-page-icons a img {
    min-width: 100%;
  }

  .detail-page .detail-page__offers__wrapper .swiper-button-next,
  .detail-page .detail-page__offers__wrapper .swiper-button-prev {
    top: 22px;
    right: 20px;
  }
  .detail-page .detail-page__offers__wrapper .swiper-button-prev,
  .detail-page .detail-page__offers__wrapper .swiper-rtl .swiper-button-next {
    left: auto;
    right: 90px;
  }
  .detail-page .detail-page__offers__wrapper .swiper-button-next:after,
  .detail-page .detail-page__offers__wrapper .swiper-button-prev:after {
    font-size: 50px;
  }
}
@media (max-width: 1150px) {
  .footer__wrapper::after {
    right: 105px;
  }
}
@media (max-width: 1090px) {
  .footer__wrapper::after {
    right: 90px;
  }
}
@media (max-width: 1045px) {
  .footer__wrapper::after {
    right: 80px;
  }
}
@media (max-width: 900px) {
  .project-review .project__img img {
    height: 250px;
  }
  .video-review .videoblog__img img {
    height: 250px;
  }
  .videoblog .videoblog__img img {
    height: 250px;
  }
  .projects .project__img img {
    height: 250px;
  }
  .detail-page .video__inner {
    height: 490px;
  }
  .popular-products__cards .product-image img {
    height: 235px;
  }
  .popular-products__cards .product-image {
    height: 235px;
  }
  .discounts .discounts__card img {
    height: 235px;
  }
  .discounts .discounts__card {
    height: 235px;
  }
}

@media (max-width: 950px) {
  .discounts-page .discounts-page__image img {
    height: 280px;
  }
  .chairs__image {
    height: 280px;
  }
  .chairs__image img {
    height: 280px;
    margin-bottom: 0px;
  }
}

@media (max-width: 992px) {
  .project__img img {
    height: 290px;
  }
  .videoblog__img img {
    height: 290px;
  }
  .detail-page .video__inner {
    height: 540px;
  }
  .discounts-page__options .discounts-page__product-descr p {
    font-size: 16px;
    margin-bottom: 9px;
    height: 22px;
  }
  .chairs__image {
    margin-bottom: 10px;
  }

  .chairs__product-descr small {
    font-size: 18px;
    margin-bottom: 2px;
  }
  .detail-page .add__btn button {
    width: 100%;
  }
  .video-review__wrapper .videoblog__cards {
    margin-bottom: 20px;
  }
  .video-review__wrapper h2 {
    font-size: 45px;
    padding: 60px 0;
  }
  .reviews__wrapper h2 {
    font-size: 45px;
    padding: 60px 0;
  }
  .reviews__cards {
    padding: 20px;
  }
  .project-review .projects__cards {
    margin-bottom: 20px;
  }
  .project-review__wrapper h2 {
    font-size: 45px;
    padding: 60px 0;
  }
  .project-page__content {
    padding: 20px;
  }
  .project-page__title h2 {
    font-size: 45px;
  }
  .blog-page__content {
    padding: 20px;
  }
  .blog-page__title h2 {
    font-size: 45px;
  }
  .partners::after {
    content: none;
  }
  .partners__wrapper h2 {
    font-size: 45px;
    padding: 60px 0;
  }
  .hero .swiper-slide {
    height: 390px;
  }
  .hero .swiper-slide h3 {
    left: 17px;
    font-size: 32px;
  }
  .products__categories h2 {
    font-size: 30px;
    left: 15px;
  }
  .popular-products__cards .product-image {
    margin-bottom: 15px;
  }
  .discounts__card {
    margin-bottom: 15px;
  }
  .popular-products__cards p {
    font-size: 16px;
  }
  .popular-products__cards h3 {
    font-size: 17px;
    height: 40px;
  }
  .popular-products__cards span {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .products-descr del {
    font-size: 16px;
  }
  .products-descr small {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .popular-products .purchase_btn {
    padding: 8px;
    font-size: 18px;
  }
  .recommended .purchase_btn {
    font-size: 18px;
  }
  .detail-page .purchase_btn {
    font-size: 18px;
  }
  .discounts__cards .product-image {
    margin-bottom: 15px;
  }
  .discounts__cards p {
    font-size: 16px;
  }
  .discounts__cards h3 {
    font-size: 17px;
    height: 40px;
  }
  .discounts__cards span {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .discounts .purchase_btn {
    padding: 8px;
    font-size: 18px;
  }
  .services__card p {
    font-size: 18px;
  }
  .clients .more_btn a {
    padding: 19px 25px;
  }
  .testimonials .more_btn a {
    padding: 19px 25px;
  }
  .videoblog {
    padding: 62px 0;
  }
  .videoblog__wrapper h2 {
    font-size: 30px;
    margin-bottom: 40px;
  }
  .videoblog__cards a {
    width: 100%;
  }
  .videoblog__cards p {
    margin-top: 25px;
    font-size: 18px;
    margin-bottom: 20px;
  }
  .videoblog .more_btn {
    margin-top: 15px;
  }
  .videoblog .more_btn a {
    padding: 19px 25px;
    font-size: 16px;
  }
  .projects__wrapper h2 {
    font-size: 30px;
    margin-bottom: 40px;
  }
  .projects__cards a {
    width: 100%;
  }
  .projects__cards p {
    margin-top: 25px;
    font-size: 18px;
    margin-bottom: 20px;
    height: 45px;
  }
  .projects .more_btn {
    margin-top: 15px;
  }
  .projects .more_btn a {
    padding: 19px 25px;
    font-size: 16px;
  }
  .footer__pages {
    margin-top: 50px;
  }
  .footer__media {
    margin-top: 50px;
  }
  .footer .footer__wrapper::after {
    content: none;
  }
  .footer .footer__info .footer__copyrights {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-top: 24px;
  }
  .footer .footer__info .footer__company {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .chairs__product-descr h3 {
    font-size: 17px;
    height: 40px;
  }
  .chairs__product-descr p {
    font-size: 16px;
    margin-bottom: 9px;
    height: 22px;
  }
  .chairs__product-descr span {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .chairs__product-descr del {
    font-size: 16px;
  }
  .category-tabs__wrapper ul {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    padding-left: 5px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 16px;
  }
  .category-tabs__wrapper ul li a {
    border: 1px solid black;
    padding: 5px 11px;
  }
  .detail-page__product_description h4 {
    margin-bottom: 14px;
  }
  .detail-page__product_description p {
    margin-bottom: 20px;
  }
}
@media (max-width: 845px) {
  .project-review .project__img img {
    height: 220px;
  }
  .video-review .videoblog__img img {
    height: 220px;
  }
  .videoblog .videoblog__img img {
    height: 220px;
  }
  .projects .project__img img {
    height: 220px;
  }
  .detail-page .video__inner {
    height: 455px;
  }
  .reviews__cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .reviews__info {
    margin-bottom: 20px;
    width: 60%;
  }
  .reviews__card-context p {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .project-review .project__img img {
    height: 390px;
  }
  .video-review .videoblog__img img {
    height: 390px;
  }
  .videoblog .videoblog__img img {
    height: 390px;
  }
  .projects .project__img img {
    height: 390px;
  }
  .detail-page__main_image img {
    height: 460px;
  }
  .video-review__wrapper h2 {
    font-size: 36px;
  }
  .detail-page .video__inner {
    height: 410px;
  }
  .reviews__wrapper h2 {
    font-size: 36px;
  }
  .reviews__button a {
    padding: 19px 25px;
    font-size: 19px;
  }
  .project-review__wrapper h2 {
    font-size: 36px;
  }
  .partners__wrapper h2 {
    font-size: 36px;
  }
  .partners__offer-wrapper {
    padding: 85px 0 183px 25px;
  }
  .project-page__title h2 {
    font-size: 36px;
  }
  .blog-page__title h2 {
    font-size: 36px;
  }
  .blog-page__wrapper .back-btn {
    min-block-size: 30px;
  }
  .project-page__wrapper .back-btn {
    margin-bottom: 30px;
  }
  .hero .swiper-slide {
    height: 267px;
  }
  .hero .swiper-slide h3 {
    font-size: 26px;
  }
  .hero .swiper-slide h3 br {
    display: none;
  }
  .hero .swiper-pagination-bullet {
    background-color: #000;
  }
  .hero .swiper-pagination-bullet-active::after {
    border: 1px solid #000;
  }
  .hero .swiper-button-next:after,
  .hero .swiper-button-prev:after {
    font-size: 40px;
  }
  .hero .swiper-horizontal > .swiper-pagination-bullets,
  .hero .swiper-pagination-bullets.swiper-pagination-horizontal,
  .hero .swiper-pagination-custom,
  .hero .swiper-pagination-fraction {
    bottom: -25px;
  }
  .products {
    margin-top: 60px;
    margin-bottom: 80px;
  }
  .products__categories {
    width: 100%;
    height: 100%;
  }
  .products__categories img {
    width: 100%;
    height: 100%;
  }
  .products h2 {
    top: 30px;
    font-size: 35px;
    left: 25px;
  }
  .popular-products .title h2 {
    font-size: 25px;
  }
  .popular-products .title .icon {
    width: 45px;
    height: 45px;
  }
  .popular-products .swiper-button-next:after {
    font-size: 45px;
  }
  .popular-products .swiper-button-prev:after {
    font-size: 45px;
  }
  .popular-products .swiper-button-next,
  .popular-products .swiper-button-prev {
    top: 23px;
    right: 20px;
  }
  .popular-products .swiper-button-prev,
  .popular-products .swiper-rtl .swiper-button-next {
    left: auto;
    right: 90px;
  }
  .recommended .title h2 {
    font-size: 25px;
  }
  .recommended .title .icon {
    width: 45px;
    height: 45px;
  }
  .recommended .swiper-button-next:after {
    font-size: 45px;
  }
  .recommended .swiper-button-prev:after {
    font-size: 45px;
  }
  .recommended .swiper-button-next,
  .recommended .swiper-button-prev {
    top: 23px;
    right: 20px;
  }
  .recommended .swiper-button-prev,
  .recommended .swiper-rtl .swiper-button-next {
    left: auto;
    right: 90px;
  }
  .services__card p {
    margin-top: 22px;
    font-size: 16px;
  }
  .dicounts .title h2 {
    font-size: 25px;
  }
  .dicounts .title .icon {
    width: 45px;
    height: 45px;
  }
  .dicounts .swiper-button-next:after {
    font-size: 45px;
  }
  .dicounts .swiper-button-prev:after {
    font-size: 45px;
  }
  .dicounts .swiper-button-next,
  .dicounts .swiper-button-prev {
    top: 23px;
    right: 20px;
  }
  .dicounts .swiper-button-prev,
  .dicounts .swiper-rtl .swiper-button-next {
    left: auto;
    right: 90px;
  }
  .offers .title h2 {
    font-size: 25px;
  }
  .offers .title .icon {
    width: 45px;
    height: 45px;
  }
  .offers .swiper-button-next:after {
    font-size: 35px;
  }
  .offers .swiper-button-prev:after {
    font-size: 35px;
  }
  .offers .swiper-button-next,
  .offers .swiper-button-prev {
    top: 16px;
    right: 20px;
  }
  .offers .swiper-button-prev,
  .offers .swiper-rtl .swiper-button-next {
    left: auto;
    right: 90px;
  }
  .clients__title h2 {
    font-size: 30px;
  }
  .testimonials__wrapper h3 {
    font-size: 30px;
  }
  .videoblog__cards a {
    width: 100%;
  }
  .videoblog__cards p {
    margin-top: 25px;
    font-size: 18px;
    margin-bottom: 10px;
  }
  .projects__cards a {
    width: 100%;
  }
  .projects__cards p {
    margin-top: 25px;
    font-size: 18px;
    margin-bottom: 10px;
  }
  .footer__pages ul {
    gap: 10px;
  }
  .footer__pages ul li a {
    font-size: 15px;
  }
  .chairs__user-select {
    margin-top: 24px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .detail-page .detail-page__offers__wrapper {
    margin-bottom: 80px;
  }
  .detail-page .detail-page__offers__wrapper .title h2 {
    font-size: 25px;
  }
  .detail-page .detail-page__offers__wrapper .swiper-button-next:after {
    font-size: 45px;
  }
  .detail-page .detail-page__offers__wrapper .swiper-button-prev:after {
    font-size: 45px;
  }
  .detail-page .detail-page__offers__wrapper .swiper-button-next,
  .detail-page .detail-page__offers__wrapper .swiper-button-prev {
    top: 17px;
    right: 20px;
  }
  .detail-page .detail-page__offers__wrapper .swiper-button-prev,
  .detail-page .detail-page__offers__wrapper .swiper-rtl .swiper-button-next {
    left: auto;
    right: 90px;
  }
}
@media (max-width: 768px) {
  .discounts-page .discounts-page__image img {
    height: 320px;
  }
}

@media (max-width: 690px) {
  .project-review .project__img img {
    height: 340px;
  }
  .video-review .videoblog__img img {
    height: 340px;
  }
  .videoblog .videoblog__img img {
    height: 340px;
  }
  .projects .project__img img {
    height: 340px;
  }
}

@media (max-width: 610px) {
  .project-review .project__img img {
    height: 310px;
  }
  .video-review .videoblog__img img {
    height: 310px;
  }
  .videoblog .videoblog__img img {
    height: 310px;
  }
  .projects .project__img img {
    height: 310px;
  }
}

@media (max-width: 576px) {
  .project-review .project__img img {
    height: 280px;
  }
  .video-review .videoblog__img img {
    height: 280px;
  }
  .videoblog .videoblog__img img {
    height: 280px;
  }
  .projects .project__img img {
    height: 280px;
  }
  .detail-page__main_image img {
    height: 379px;
  }
  .discounts .discounts__card img {
    height: 290px;
  }
  .discounts .discounts__card {
    height: 290px;
  }
  .popular-products__cards .product-image {
    height: 290px;
  }
  .popular-products__cards .product-image img {
    height: 290px;
  }
  .detail-page .video__inner {
    height: 310px;
  }
  .request__wrapper {
    padding: 70px 20px;
  }
  .modal__wrapper .modal__pop-up br {
    display: none;
  }
  .partners__offer {
    display: none;
  }
  .chairs__image {
    height: 250px;
  }
  .chairs__image img {
    height: 250px;
  }
  .video-review__wrapper .videoblog__cards {
    margin-bottom: 15px;
  }
  .video-review__wrapper h2 {
    font-size: 26px;
  }
  .reviews__wrapper h2 {
    font-size: 26px;
  }
  .project-review .projects__cards {
    margin-bottom: 15px;
  }
  .project-review__wrapper h2 {
    font-size: 26px;
  }
  .project-page__wrapper .back-btn {
    margin-bottom: 20px;
  }
  .project-page__title h2 {
    font-size: 26px;
  }
  .blog-page__wrapper .back-btn {
    min-block-size: 20px;
  }
  .blog-page__title h2 {
    font-size: 26px;
  }
  .video-review::after {
    content: none;
  }
  .partners__wrapper h2 {
    font-size: 26px;
  }
  .popular-products .swiper-button-next,
  .popular-products .swiper-button-prev {
    display: none;
  }
  .products {
    margin-bottom: 70px;
  }
  .products__btn {
    padding: 15px 19px;
    font-size: 15px;
  }
  .products h2 {
    top: 25px;
    font-size: 25px;
    left: 20px;
  }
  .popular-products {
    margin-bottom: 80px;
  }
  .popular-products .title {
    margin-bottom: 20px;
  }
  .popular-products .title h2 {
    font-size: 22px;
  }
  .popular-products .title .icon {
    width: 30px;
    height: 30px;
  }
  .recommended .swiper-button-next,
  .recommended .swiper-button-prev {
    display: none;
  }
  .recommended .title h2 {
    font-size: 22px;
  }
  .recommended .title .icon {
    width: 30px;
    height: 30px;
  }
  .discounts .swiper-button-next,
  .discounts .swiper-button-prev {
    display: none;
  }
  .discounts .title h2 {
    font-size: 22px;
  }
  .discounts .title .icon {
    width: 30px;
    height: 30px;
  }
  .offers .swiper-button-next,
  .offers .swiper-button-prev {
    display: none;
  }
  .offers {
    margin-top: 80px;
    margin-bottom: 80px;
  }
  .offers .title h2 {
    font-size: 22px;
  }
  .offers .title .icon {
    width: 30px;
    height: 30px;
  }
  .services {
    margin-top: 80px;
    margin-bottom: 80px;
    padding: 53px 0 54px;
  }
  .services__wrapper h2 {
    margin-bottom: 26px;
    font-size: 20px;
  }
  .services__card {
    padding: 20px 15px 30px 15px;
  }
  .services__card img {
    width: 80px;
    height: 80px;
  }
  .services__card p {
    margin-top: 8px;
    font-size: 12px;
  }
  .clients {
    margin-top: 80px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .clients__title h2 {
    font-size: 22px;
    margin-bottom: 26px;
  }
  .testimonials {
    padding-bottom: 60px;
  }
  .testimonials__wrapper h3 {
    font-size: 22px;
    margin-bottom: 26px;
  }
  .videoblog__wrapper h2 {
    font-size: 25px;
    margin-bottom: 40px;
  }
  .videoblog__cards p {
    margin-top: 18px;
    font-size: 16px;
    margin-bottom: 10px;
  }
  .projects__wrapper h2 {
    font-size: 25px;
    margin-bottom: 40px;
  }
  .projects__cards p {
    margin-top: 18px;
    font-size: 16px;
    margin-bottom: 10px;
    height: 39px;
  }
  .footer__info {
    padding-top: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
  .detail-page__product_description {
    margin-top: 50px;
  }
  .detail-page__offers__wrapperproducts .title {
    margin-bottom: 20px;
  }
  .detail-page__offers__wrapperproducts .title h2 {
    font-size: 20px;
  }
  .detail-page .detail-page__offers__wrapper .swiper-button-next,
  .detail-page .detail-page__offers__wrapper .swiper-button-prev {
    display: none;
  }
}
@media (max-width: 576px) {
  .discounts-page .discounts-page__image img {
    height: 250px;
  }
}
@media (max-width: 500px) {
  .project-review .project__img img {
    height: 250px;
  }
  .video-review .videoblog__img img {
    height: 250px;
  }
  .videoblog .videoblog__img img {
    height: 250px;
  }
  .projects .project__img img {
    height: 250px;
  }
  .loader svg {
    width: 300px;
    height: 400px;
  }
  .detail-page__image img {
    height: 90px;
  }
  .detail-page__product_condition {
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }
  .modal__wrapper {
    min-height: 400px;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 50px;
  }
  .modal__wrapper h3 {
    width: 100%;
    font-size: 18px;
  }

  .modal__wrapper a {
    width: 100%;
  }
  .chairs__options {
    margin-bottom: 0;
  }
  .clients__cards {
    height: 125px;
  }
  .clients .more_btn a {
    padding: 15px 19px;
    font-size: 15px;
  }
  .testimonials .more_btn a {
    padding: 15px 19px;
    font-size: 15px;
  }
  .videoblog .more_btn a {
    padding: 15px 19px;
    font-size: 15px;
  }
  .projects .more_btn a {
    padding: 15px 19px;
    font-size: 15px;
  }
  .footer__pages p {
    margin-bottom: 7px;
  }
  .footer__media p {
    margin-bottom: 7px;
  }
  .chairs__image img {
    margin-bottom: 12px;
  }
  .chairs__product-descr h3 {
    font-size: 14px;
    height: 33px;
  }
  .chairs__product-descr p {
    font-size: 14px;
    margin-bottom: 9px;
    height: 19px;
  }
  .category-tabs__wrapper ul {
    padding: 10px 10px 10px 0px;
  }
  .category-tabs__wrapper ul li a {
    font-size: 14px;
  }
  .chairs__wrapper {
    margin-bottom: 100px;
  }
  .detail-page__media {
    margin-top: 40px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 25px;
  }
  .detail-page__product_example p {
    width: 100px;
    height: 100px;
    padding: 0;
  }
  .contacts__cards {
    margin-bottom: 60px;
    padding: 35px 52px 34px 18px;
  }
  .contacts__wrapper h2 {
    margin: 63px 0 40px;
  }
  .contacts__info p {
    font-size: 14px;
  }
}
@media (max-width: 500px) {
  .discounts-page {
    .discounts-page__image img {
      margin-bottom: 12px;
    }

    .discounts-page__product-descr {
      h3 {
        font-size: 14px;
        height: 33px;
      }
      p {
        font-size: 14px;
        height: 19px;
      }
      span {
        font-size: 16px;
        margin-bottom: 4px;
      }
      del {
        font-size: 13px;
      }
    }
  }
}

@media (max-width: 450px) {
  .project-review .project__img img {
    height: 213px;
  }
  .video-review .videoblog__img img {
    height: 213px;
  }
  .videoblog .videoblog__img img {
    height: 213px;
  }
  .projects .project__img img {
    height: 213px;
  }
  .chairs__image img {
    height: 185px !important;
  }
  .chairs__image {
    height: 185px !important;
  }
  .detail-page .video__inner {
    height: 240px !important;
  }
}

@media (max-width: 450px) {
  .discounts-page .discounts-page__image img {
    height: 185px !important;
  }
  .popular-products__cards .product-image {
    height: 235px !important;
  }
  .popular-products__cards .product-image img {
    height: 235px !important;
  }
  .discounts .discounts__card img {
    height: 235px !important;
  }
  .discounts .discounts__card {
    height: 235px !important;
  }
}

.project-page__content img {
  width: 100%;
  height: 100%;
  display: block;
  margin: 25px 0;
}

.blog-page__content img {
  width: 100%;
  height: 100%;
  display: block;
  margin: 25px 0;
}

.discounts-page__wrapper {
  margin-bottom: 136px;
}
.discounts-page__wrapper h1 {
  margin-top: 38px;
  margin-bottom: 38px;
  font-weight: 400;
  font-size: 30px;
  text-transform: uppercase;
  text-align: center;
}
.discounts-page__options {
  -webkit-box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.12);
  background-color: #fff;
  margin-bottom: 24px;
}
.discounts-page__image {
  width: 100%;
  height: 380px;
  position: relative;
  overflow: hidden; /* Prevents unwanted overflow */
}

.discounts-page__image img {
  width: 100%;
  height: 374px;
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: 18px;
  position: absolute;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out; /* Smooth transition */
}

.discounts-page__image .hover-image {
  opacity: 0;
  transform: scale(
    1.05
  ); /* Slightly scaled up for a smooth transition effect */
}

.discounts-page__image:hover .default-image {
  opacity: 0;
  visibility: hidden;
  z-index: -1; /* Just -1 is enough */
  transform: scale(0.95); /* Shrink effect for smoothness */
}

.discounts-page__image:hover .hover-image {
  opacity: 1;
  transform: scale(1);
}
.discounts-page__product-descr {
  padding: 0 10px 10px 10px;
}
.discounts-page__product-descr del {
  display: block;
  font-weight: 500;
  font-size: 16px;
  color: #828282;
  margin-bottom: 10px;
}
.discounts-page__product-descr span {
  font-weight: 500;
  font-size: 19px;
  color: #cd0200;
  margin-bottom: 14px;
}
.discounts-page__product-descr h3 {
  margin-bottom: 4px;
  font-size: 20px;
  font-weight: 600;
  height: 48px;
  overflow: hidden;
}
.discounts-page__product-descr p {
  font-weight: 500;
  font-size: 20px;
  color: #828282;
  height: 24px;
  overflow: hidden;
  margin-bottom: 14px;
}
.video__inner {
  height: 634px;
  width: 100%;
}
.numeric__price {
  display: none;
}

.customer__cards {
  background-color: #fff;
  padding: 40px 80px 54px;
  max-width: 968px;
  margin: 0 auto 80px;
}

.customer__cards h1 {
  text-align: center;
  font-weight: 600;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 27px;
}

.customer__cards ol {
  padding-left: 15px;
}

.customer__cards p {
  line-height: 160%;
}

.customer__cards p ol {
  font-weight: 400;
  font-size: 18px;
}

.customer__cards ol li {
  list-style: desc;
  line-height: 160%;
}

.customer__cards ol li a {
  color: #2f80ed;
  text-decoration: underline;
}

.customer__cards ul li {
  list-style: disc;
  line-height: 160%;
}
.customer__cards ul {
  padding-left: 20px;
}

.customer__cards ul li a {
  color: #2f80ed;
  text-decoration: underline;
}

.customer__cards .list {
  padding-left: 0;
}
.customer__cards .list li {
  list-style: none !important;
}
.accordion-item {
  border: none;
  border-bottom: 1px solid #e0e0e0;
}

.accordion-button {
  font-weight: 600;
  font-size: 20px;
  color: #000;
}

.accordion-button:not(.collapsed) {
  color: #000;
}
.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  box-shadow: none;
}

.accordion-body {
  padding-top: 0;
  padding-bottom: 30px;
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
}

.accordion-button:not(.collapsed) {
  background: none;
}

@media (max-width: 800px) {
  .customer__cards {
    padding: 40px 40px 54px;
  }
  .blog-page__content iframe {
    height: 400px;
  }

  .project-page__content iframe {
    height: 400px;
  }
}

@media (max-width: 576px) {
  .blog-page__content iframe {
    height: 300px;
  }
  .project-page__content iframe {
    height: 300px;
  }
  .customer__cards {
    padding: 40px 15px 34px;
  }
  .customer__cards {
    margin-bottom: 30px;
  }
}
