/* Reset and base styles  */
* {
	padding: 0px;
	margin: 0px;
	border: none;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* Links */

a, a:link, a:visited  {
    text-decoration: none;
}

a:hover  {
    text-decoration: none;
}

/* Common */

aside, nav, footer, header, section, main {
	display: block;
}

h1, h2, h3, h4, h5, h6, p {
    font-size: inherit;
	font-weight: inherit;
}

ul, ul li {
	list-style: none;
}

img {
	vertical-align: top;
}

img, svg {
	max-width: 100%;
	height: auto;
}

address {
  font-style: normal;
}

/* Form */

input, textarea, button, select {
	font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}

input::-ms-clear {
	display: none;
}

button, input[type="submit"] {
    display: inline-block;
    box-shadow: none;
    background-color: transparent;
    background: none;
    cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
    outline: none;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

label {
	cursor: pointer;
}

legend {
	display: block;
}

:root {
  --container-width: 1244px;
  --container-padding: 15px;

  --font-main: "Manrope", sans-serif;
  --font-accent: "Exo 2", sans-serif;

  --page-bg: #fff;
  --text-color: rgba(0, 0, 0, 1);
  --accent: rgba(116, 116, 116, 1);
  --text-2: rgba(147, 147, 147, 1);
  --link-color: rgba(79, 186, 190, 1);
  --card-text: rgba(86, 86, 86, 1);
  --footer-text:rgba(171, 171, 171, 1);
  --header-text:rgba(150, 150, 150, 1);

  --info-bg: rgba(249, 247, 247, 1);
  --footer-bg: rgba(249, 247, 247, 1);
  --header-bg: rgba(251, 251, 251, 1);
  --brend-br: rgba(200, 200, 200, 1);
}

html {
  scroll-behavior: smooth;
  background-color: rgb(39, 39, 39);
}

body {
  background-color: var(--page-bg);
  color: var(--text-color);
  font-family: var(--font-main);
}

img {
  display: block;
}

a {
  color: var(--link-color);
}

code {
  background-color: #e9f1f6;
  padding: 0.2rem;
  border-radius: 4px;
}

pre.code {
  overflow-x: auto;
  background-color: #e9f1f6;
  padding: 1rem;
  border-radius: 4px;
}

/* Контейнеры */
.container {
  margin: 0 auto;
  padding: 0 var(--container-padding);

  max-width: var(--container-width);
  width: 100%;
}
.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;
}

.page {
  height: 100%;
  font-size: 14px;
  font-family:var(--font-main);
  line-height: 18px;
}

.page__body {
  display: flex;
  flex-direction: column;
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  background-color: #fff;
  color: #000000;
}

.page-main {
  flex-grow: 1;
}

.footer {
  margin-top: auto;
}


/* Nav Icon */
.mobile-nav-btn {
  --time: 0.1s;

  --width: 42px;
  --height: 42px;

  --line-height: 6px;
  --spacing: 2px;

  --color: #000;
  --radius: 4px;

  /* Fixed height and width */
  /* height: var(--height); */
  /* width: var(--width); */

  /* Dynamic height and width */
  /*  // height: calc(var(--line-height) * 3 + var(--spacing) * 2); */
  height: 38px;
  width: var(--width);

  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--link-color);
  border-radius: 6px;
  // background-color: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(24px);
}

.nav-icon {
  margin: auto;
  position: relative;
  width: 24px;
  height: 1px;
  background-color: var(--link-color);
  border-radius: var(--radius);
}

.nav-icon::before,
.nav-icon::after {
  content: "";
  display: block;

  position: absolute;
  left: 0;

  width: 24px;
  height: 1px;

  border-radius: var(--radius);
  background-color: var(--link-color);
  transition: transform var(--time) ease-in, top var(--time) linear var(--time);
}

.nav-icon::before {
  /* top: calc(var(--line-height) * -2); */
  top: calc(-1 * (var(--line-height) + var(--spacing)));
}

.nav-icon::after {
  /* top: calc(var(--line-height) * 2); */
  top: calc(var(--line-height) + var(--spacing));
}

.nav-icon.nav-icon--active {
  background-color: transparent;
}

.nav-icon.nav-icon--active::before,
.nav-icon.nav-icon--active::after {
  top: 0;
  transition: top var(--time) linear, transform var(--time) ease-in var(--time);
}

.nav-icon.nav-icon--active::before {
  transform: rotate(45deg);
}

.nav-icon.nav-icon--active::after {
  transform: rotate(-45deg);
}

/* Layout */

.mobile-nav-btn {
  z-index: 999;
  display: none;
}

.page-header {
  min-width: 320px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  background-color: transparent;
  // box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  width: 100%;
  z-index: 80;
  transition: 0.2s linear;
}

.header-2 {
  position: sticky;
  top: 0;
  left: 0;
  background-color: rgba(251, 251, 251, 1);
  // box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  width: 100%;
  z-index: 80;
  transition: 0.2s linear;
  border-bottom: 1px solid var(--header-br);
}

.header__active {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(15px);
}

.header-2.header__active {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  background-color: rgba(251, 251, 251, 1);
}

.header__row {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding: 37px 0 27px;
  transition: 0.3s ease;
}

.header__active .header__row {
  padding: 15px 0 15px;
}

.header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.logo {
  flex-shrink: 0;
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* // width: 640px; */
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.nav__list li {
  position: relative;
}

.nav__list a {
  font-size: 16px;
  line-height: 100%;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--page-bg);
  transition: 0.3s ease;
  padding: 10px 0;
  text-transform: uppercase;
}

.header-2 .nav__list a {
  color: var(--header-text);
}

.nav__list a:hover,
.nav__list a:focus,
.nav__list a:active {
  color: var(--link-color);
}

.nav__list .nav__submenu {
  position: relative;
  display: flex;
  gap: 4px;
  align-items: center;
  padding-right: 12px;
  /* transition: 0.3s ease; */
}

.nav__submenu img {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s ease;
}

.submenu-open .nav__submenu img {
  transform: translateY(-50%) rotate(-180deg);
}

.submenu-open .nav__submenu {
  color: var(--link-color);
}

.header__submenu {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 0;
  top: 100%;
  opacity: 0;
  min-width: 272px;
  max-width: 100%;
  word-break: break-word;
  white-space: normal;
  visibility: hidden;
  transform: translateY(-20px);
  /* transition: 0.1s ease; */
  z-index: 5;
  padding: 22px 26px;
}

.submenu-open .header__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  background-color: var(--page-bg);
  border-radius: 10px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

.header__submenu li a {
  padding: 7px;
  display: flex;
  background-color: #fff;
  color: var(--text-color);
  text-transform: none;
}

.header__submenu li a:hover {
  color: var(--link-color);
}

.header__submenu-sublist {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 100%;
  top: 0;
  opacity: 0;
  min-width: 272px;
  max-width: 100%;
  word-break: break-word;
  white-space: normal;
  visibility: hidden;
  transform: translateX(-10px);
  transition: 0.3s ease;
  z-index: -1;
}

.header__submenu li:hover .header__submenu-sublist {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  background-color: var(--page-bg);
  border-radius: 12px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  padding: 22px 26px;
}

.header-contact {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: flex-end;
  width: 320px;
}

.header-call {
  font-size: 18px;
  line-height: 100%;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--page-bg);
  transition: 0.3s ease;
  text-transform: uppercase;
}

.header-2 .header-call {
  color: var(--link-color);
}

.header-contact .header-call {
  text-decoration: underline;
}

.header-call:hover,
.header-call:focus,
.header-call:active {
  color: var(--link-color);
}

.header-2 .header-call:hover,
.header-2 .header-call:focus,
.header-2 .header-call:active {
  color: var(--header-text);
}

.header__lang {
  position: relative;
  display: flex;
  gap: 2px;
  flex-shrink: 0;
}

.sub-menu {
  display: flex;
  flex-direction: column;
  gap: 7px;
  position: absolute;
  left: -50%;
  top: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%, -10px);
  transition: 0.3s ease;
  z-index: 50;
  padding: 18px 16px;
}

.header__lang:focus .sub-menu,
.header__lang:hover .sub-menu,
.header__lang:active .sub-menu {
  top: 140%;
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%, 0px);
  background-color: var(--page-bg);
  border-radius: 12px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

.lang {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--page-bg);
  font-size: 17px;
  line-height: 100%;
  font-weight: 500;
  font-family: var(--font-main);
}

.lang:hover,
.lang:focus,
.lang:active {
  color: var(--link-color);
}

.header-2 .lang {
  color: var(--header-text);
}

.lang-link {
  color: var(--text-color);
  font-size: 17px;
  line-height: 130%;
  font-weight: 400;
  font-family: var(--font-main);
  transition: 0.3s ease;
}

.lang-link:hover,
.lang-link:focus,
.lang-link:active {
  color: var(--link-color);
}

.header-search {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--page-bg);
  border-radius: 100%;
  transition: 0.3s ease;
  flex-shrink: 0;
}

.header-search:hover,
.header-search:focus,
.header-search:active {
  background-color: var(--link-color);
}

.header-search svg path {
  transition: 0.3s ease;
}

.header-search:hover svg path,
.header-search:focus svg path,
.header-search:active svg path {
  fill: var(--page-bg);
}

.mobile-nav {
  position: fixed;
  // top: 0;
  left: -110%;
  width: 45%;
  height: 100%;
  z-index: 110;

  display: flex;
  flex-direction: column;
  padding-bottom: 40px;
  background: #fff;
  box-shadow: 5px 0 10px rgba(0, 0, 0, 0.2);
  transition: all 0.5s ease-in;
  flex-shrink: 0;
  padding: 0 15px;
}

.mobile-nav--open {
  left: 0;
}

.mobile-nav ul {
  overflow-y: scroll;
}

.mobile-nav a {
  color: var(--text-color);
  padding: 15px 0 15px 0;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  font-size: 17px;
  line-height: 20px;
}

.mobile-nav__list li {
  position: relative;
}

.menu-title {
  min-height: 67px;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  color: var(--text-color);
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  font-size: 18px;
  line-height: 22px;
  padding: 7px 0 18px;
  position: relative;
}

.menu-title .menu__close {
  display: none;
}

.submenu {
  position: fixed;
  top: 0px;
  left: -120%;
  width: 45%;
  height: 100%;
  z-index: 100;

  display: flex;
  flex-direction: column;
  padding-bottom: 40px;
  background: #fff;
  box-shadow: 5px 0 10px rgba(0, 0, 0, 0.2);
  transition: 0.5s ease-in;
  padding: 0 15px;
}

.submenu .menu-title {
  justify-content: flex-start;
  gap: 16px;
}

.submenu--open {
  left: 0;
}

.back-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.back-btn img {
  width: 9px;
  height: 14px;
  transform: rotate(180deg);
}

.has-submenu .menu-toggle {
  padding: 0;
}

.has-submenu .item-arrow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.item-arrow .item-arrow__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;

  z-index: 15;
}

.item-arrow__icon img {
  width: 9px;
  height: 15px;
  transform: rotate(180deg);
}

.footer {
  background-color: var(--footer-bg);
  padding: 46px 0 50px;
  position: relative;
  overflow: hidden;
}

.marquee-container {
  position: absolute;
  bottom: 22%;
  left: 0;
  width: 100%;
  overflow: hidden;
  background: transparent;
}

.form-marquee-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  background: transparent;
}

.marquee-text {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 10s linear infinite;
  font-size: 76px;
  font-weight: 700;
  line-height: 120%;
  font-family: var(--font-main);
  color: rgba(0, 0, 0, 0.2);
}

@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.footer__wrapper {
  display: flex;
  flex-direction: column;
  gap: 171px;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 17px;
  border-bottom: 1px solid rgba(218, 218, 218, 1);
}
.footer__top-block {
  display: flex;
  align-items: center;
  gap: 30px;
}

.footer-search {
  position: relative;
}

.footer-search::after {
  position: absolute;
  content: "";
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 17px;
  background-color: rgba(218, 218, 218, 1);
}

.footer-text {
  font-size: 16px;
  line-height: 115%;
  font-weight: 600;
  font-family: var(--font-main);
  color: var(--text-color);
}
.footer-link {
  transition: 0.3s ease;
}

.footer-link:hover,
.footer-link:focus,
.footer-link:active {
  color: var(--link-color);
}

.footer-title {
  font-size: 18px;
  line-height: 115%;
  font-weight: 500;
  font-family: var(--font-main);
  color: var(--text-color);
}
.footer-up {
  color: var(--link-color);
}
.footer__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.footer__list {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
}
.footer__item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.footer__icon {
  display: block;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  margin-top: 15px;
}
.footer__item-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-text-2 {
  font-size: 14px;
  line-height: 115%;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--footer-text);
}

.footer-text-3 {
  max-width: 340px;
  width: 100%;
  font-size: 13px;
  line-height: 115%;
  font-weight: 300;
  font-family: var(--font-main);
  color: var(--text-color);
}

.footer__copyright a {
  font-size: 18px;
  line-height: 115%;
  font-weight: 500;
  font-family: var(--font-main);
  color: var(--text-color);
}

.mt {
  margin-top: 40px;
}

.pt {
  padding-top: 55px;
}

.pb {
  padding-bottom: 107px;
}

.pt-2 {
  padding-top: 115px;
}

.pb-2 {
  padding-bottom: 115px;
}

.brend-card__slide,
.product-slide {
  display: flex !important;
}

.swiper-pagination {
    bottom: -50px !important;
}

.pagination .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  background-color: rgba(196, 196, 196, 1);
  border-radius: 0;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.pagination .swiper-pagination-bullet-active {
  background-color: var(--link-color);
  opacity: 1;
}

.slider-arrow {
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  z-index: 50;
  cursor: pointer;
  transition: 0.3s ease;
  user-select: none;
}

.slider-arrow:focus svg path,
.slider-arrow:hover svg path,
.slider-arrow:active svg path {
  fill: var(--link-color);
}

.button-prev {
  left: -50px;
}

.button-next {
  right: -50px;
  transform: translateY(-50%) rotate(0deg);
}

.title-1 {
  font-size: 49px;
  line-height: 115%;
  font-weight: 700;
  font-family: var(--font-main);
}

.title-2 {
  font-size: 45px;
  line-height: 120%;
  font-weight: 700;
  font-family: var(--font-main);
}

.title-2 strong {
  color: var(--text-color);
}

.title-3 {
  font-size: 31px;
  line-height: 120%;
  font-weight: 600;
  font-family: var(--font-main);
}

.title-4 {
  font-size: 21px;
  line-height: 120%;
  font-weight: 600;
  font-family: var(--font-main);
}

.title-5 {
  font-size: 20px;
  line-height: 120%;
  font-weight: 700;
  font-family: var(--font-main);
}

.text {
  font-size: 18px;
  line-height: 120%;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--accent);
}

.text-2 {
  font-size: 16px;
  line-height: 120%;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--card-text);
}

.promo__text {
  font-size: 16px;
  line-height: 115%;
  font-weight: 400;
  font-family: var(--font-main);
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 17px;
  line-height: 100%;
  font-weight: 500;
  font-family: var(--font-main);
  padding: 16px 6px;
  color: var(--page-bg);
  background-color: var(--link-color);
  border-radius: 55px;
  border: 1px solid transparent;
  transition: 0.3s ease;
}

.btn:hover,
.btn:focus,
.btn:active {
  background-color: transparent;
  color: var(--link-color);
  border-color: var(--link-color);
}

.btn-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 17px;
  line-height: 100%;
  font-weight: 500;
  font-family: var(--font-main);
  padding: 16px 6px;
  color: var(--text-color);
  background-color: var(--page-bg);
  border-radius: 55px;
  border: 1px solid transparent;
  transition: 0.3s ease;
}

.btn-2:hover,
.btn-2:focus,
.btn-2:active {
  background-color: transparent;
  color: var(--page-bg);
  border-color: var(--page-bg);
}

.btn-3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 17px;
  line-height: 100%;
  font-weight: 500;
  font-family: var(--font-main);
  padding: 16px 6px;
  color: var(--page-bg);
  background-color: var(--text-color);
  border-radius: 55px;
  border: 1px solid transparent;
  transition: 0.3s ease;
}

.btn-3:hover,
.btn-3:focus,
.btn-3:active {
  background-color: transparent;
  color: var(--text-color);
  border-color: var(--text-color);
}

.promo-btn {
  width: 100%;
  max-width: 333px;
}

.services-btn {
  width: 100%;
  max-width: 333px;
}

.text-white {
  color: var(--page-bg);
}

.text-black {
  color: var(--text-color);
}

.text-gray {
  color: var(--text-2);
}
.font-regular {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.promo {
  height: 800px;
}

.promo-2 {
  height: 500px;
  position: relative;
}

.promo__wrapper {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.promo__wrapper::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00000070;
  z-index: 0;
}

.banner {
  height: 100%;
}

.banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner__img-2 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo__block {
  display: flex;
  align-items: flex-end;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  padding-bottom: 100px;
}

.promo__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

.promo__info {
  display: flex;
  flex-direction: column;
    gap: 30px;
    max-width: 635px;
}

.promo__block-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 590px;
  width: 100%;
  font-size:20px;
  line-height: 1.4;
}

.promo__layout {
  display: flex;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.promo__info-2 {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.brend-card {
  min-width: 320px;
}

.brend-card__wrapper {
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.brend__card {
  position: relative;
}

.brend-card__slide {
  align-items: center;
  justify-content: center;
  height: 104px !important;
  border: 1px solid var(--brend-br);
  padding: 10px;
}

.brend-card__slide img {
  max-width: 100%;
  max-height:  100%;
  object-fit: contain;
}

.supply {
  background-color: var(--info-bg);
}

.supply__wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.supply__top {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.supply__text {
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-width: 691px;
  width: 100%;
}

.supply__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.supply__item {
  overflow: hidden;
  position: relative;
}

.supply__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.supply__item-block {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  padding: 16px;
  background-color: rgba(0, 0, 0, 0.5);
      z-index: 1;
}

.about {
  min-width: 320px;
}

.about-2 {
  min-width: 320px;
  background-color: var(--info-bg);
}

.about__wrapper {
  display: flex;
  flex-direction: column;
  gap: 67px;
}
.about__wrapper .title-2 {
  max-width: 927px;
  width: 100%;
  font-weight: 600;
}

.about__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 57px;
}

.reverse {
  flex-direction: row-reverse;
}

.about__img {
  width: 50%;
}

.about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__info {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.about__circle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 144px;
  height: 144px;
}

.about__circle-btn::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url("/storage/app/media/svg/about-circle.svg") no-repeat;
  background-size: cover;
  animation: 15s linear infinite rotate;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.about__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.advantages {
  min-width: 320px;
  background-color: var(--info-bg);
}

.advantages__wrapper {
  display: flex;
  flex-direction: column;
  gap: 55px;
}

.advantages__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 19px;
  row-gap: 28px;
}
.advantages__item {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background-color: var(--page-bg);
  padding: 30px 10px 20px 30px;
}
.advantages__icon {
  width: 60px;
  height: 60px;
}

.advantages__icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.advantages__info {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.info-section {
  position: relative;
  padding: 114px 0 134px;
}

.info-section::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.info-section .container {
  position: relative;
  z-index: 3;
}

.info-section__wrapper {
  max-width: 651px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.info-section__wrapper .title-2 {
  font-weight: 400;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 503px;
  width: 100%;
  position: relative;
}
.form__block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  gap: 33px;
}

.form-label {
  width: 100%;
}

.form-input {
  width: 100%;
  font-size: 16px;
  line-height: 110%;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--page-bg);
  padding: 0 15px 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  transition: 0.3s ease;
  cursor: pointer;
}

.form-input::placeholder {
  color: var(--page-bg);
}

.radio-option {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.control-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.control-mark {
  width: 20px;
  height: 20px;
  border: 1px solid var(--page-bg);
  border-radius: 50%;
  position: relative;
  transition: all 0.25s ease;
}

.control-mark::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.control-input:checked + .control-mark::after {
  opacity: 1;
}

.control-input:checked ~ .control-mark {
  border-color: #fff;
}

.info-section__bg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services {
  min-width: 320px;
}

.services__wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.services__list {
  display: flex;
  flex-direction: column;
}
.services__item {
  display: flex;
  align-items: stretch;
  background-color: var(--info-bg);
  gap: 73px;
}
.services__img {
  width: 50%;
}

.services__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services__info {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 67px 48px 67px 0;
}
.services__block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.services__text {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.work {
  background-color: var(--info-bg);
}

.work__wrapper {
  display: flex;
  flex-direction: column;
  gap: 55px;
}

.work__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.work__item {
  display: flex;
  flex-direction: column;
  gap: 65px;
  background-color: var(--page-bg);
  padding: 32px;
}
.work__info {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.work__item-list {
  display: flex;
  flex-direction: column;
}
.work__item-item {
  position: relative;
  padding-left: 15px;
}

.work__item-item::after {
  position: absolute;
  content: "";
  left: 5px;
  top: 7px;
  border-radius: 50%;
  width: 3px;
  height: 3px;
  background-color: var(--card-text);
}

.work-num {
  margin-top: auto;
  font-size: 49px;
  line-height: 120%;
  font-weight: 300;
  font-family: var(--font-main);
  color: var(--link-color);
}

.project {
  min-width: 320px;
}

.project__wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.project__inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.project__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.project__list-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.project__item {
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
}

.project__item:after{
	position: absolute;
	content:'';
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.3);
}

.project__item-2 {
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
}

.project__item:nth-child(4) {
  height: 484px;
}

.project__item:nth-child(5) {
  height: 484px;
}

.project__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease;
}

.project__item:hover .project__img,
.project__item:focus .project__img,
.project__item:active .project__img {
  transform: scale(1.1);
}

.project__item-2:hover .project__img,
.project__item-2:focus .project__img,
.project__item-2:active .project__img {
  transform: scale(1.1);
}

.project__block {
  position: absolute;
  left: 40px;
  bottom: 40px;
  right: 40px;
  display: flex;
  align-items: flex-start;
  flex-direction: column-reverse;
  justify-content: space-between;
  gap: 22px;
  z-index: 3;
}

.project__block .title-4 {
  max-width: 286px;
}

.project__item:nth-child(1) {
  grid-row: 1 / 3;
}

.project__item:nth-child(1) .project__block {
  flex-direction: row;
}

.project-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12);
}

.project-arrow-2 {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--link-color);
  backdrop-filter: blur(12);
}

.no-scroll {
  overflow: hidden;
}

.modal {
  position: fixed;
  width: 643px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  z-index: 400;
  visibility: hidden;
  opacity: 0;
  transition: 0.7s ease;
}

.modal-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 399;
  background-color: rgba(0, 0, 0, 0.3);
  visibility: hidden;
  opacity: 0;
}

.modal__active {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, -50%);
}

.modal__active-bg {
  visibility: visible;
  opacity: 1;
}

.modal__wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: var(--page-bg);
  z-index: 1;
  border-radius: 16px;
  padding: 46px;
}

.modal__form {
  width: 100%;
}

.modal__top {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 20px;
  position: relative;
}

.modal-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal-form__top-inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.modal-form__top {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.modal__block {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.modal-label {
  width: 100%;
}

.modal-label .modal-input {
  width: 100%;
}

.modal-label {
  width: 100%;
  font-size: 18px;
  line-height: 27px;
  font-weight: 700;
  font-family: var(--font-main);
  color: var(--text-color);
}
.modal__input {
  width: 100%;
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--text-color);
  padding: 17px 20px;
  background-color: transparent;
  border: 1px solid var(--link-color);
  transition: 0.3s ease;
  cursor: pointer;
}

.modal-input::placeholder {
  color: var(--form-place);
}

.modal__btn {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  transform: rotate(0deg);
  transition: transform 0.5s ease;
}

.modal__btn:hover {
  transform: rotate(25deg);
}

.modal__input:focus,
.modal__input:hover,
.modal__input:active {
  border: 1px solid var(--link-color);
  outline: none;
}

.modal-review {
  outline: none;
  resize: none;
  height: 82px;
  width: 100%;
}

.form__success {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.form__success .alert-success {
  width: 500px;
  background-color: white;
  padding: 20px;
  position: relative;
  border-radius: 15px;
}

.form__success .alert-success button {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 19px;
  line-height: 23px;
  color: #151515;
  background: url("/storage/app/media/svg/close-success-2.svg") no-repeat;
  background-size: cover;
  background-position: center;
}

.form__success .alert-success button span {
  visibility: hidden;
}

.form__success .alert-success p {
  font-size: 19px;
  line-height: 23px;
  color: #151515;
}

.btn-2:focus.modal-form__btn,
.btn-2:hover.modal-form__btn,
.btn-2:active.modal-form__btn{
	color: var(--text-color);
}

.pagination_news{
	display: flex;
	justify-content: center;
	align-items: center;
}

.pagination_news-arrow{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background-color: transparent;
	border:1px solid var(--info-bg);
	transition: 0.4s linear;
}

.pagination_news-arrow:focus,
.pagination_news-arrow:hover,
.pagination_news-arrow:active{
	border-color:var(--text-color);
}

.news__arrow-left{
	transform:rotate(180deg);
}

.news-arrow-right{
	margin-right: 12px;
}

.news-arrow-left{
	margin-left: 12px;
}


.pagination_news-numbrs{
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0 32px 0 32px; 
}

.pagination_news-numbrs li{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background-color: var(--info-bg);
	transition: 0.4s linear;
}

.pagination_news-numbrs .dots{
	background-color:transparent;
	border:1px solid var(--info-bg);
}

.pagination_news-numbrs li a{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	text-align: center;
	font-size: 18px;
	line-height: 100%;
	font-weight: 400;
	font-family: var(--font-main);
	color: var(--text-color);
	transition: 0.3s ease;
}

.pagination_news-numbrs li a:hover,
.pagination_news-numbrs li a:focus,
.pagination_news-numbrs li a:active{
	color: var(--page-bg);
	background-color: var(--link-color);
}

.pagination_news-numbrs .news-active{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background-color: var(--link-color);
}

.pagination_news-numbrs .news-active a{
	color: var(--page-bg);
}

.brend {
  min-width: 320px;
}

.brend__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.brend-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.brend-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brend-br);
  overflow: hidden;
  height: 231px;
  padding: 10px;
  transition: 0.3s ease;
}

.brend-item img {
	width: 200px;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.brend-item:hover,
.brend-item:focus,
.brend-item:active {
  transform: translateY(-10px);
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.7);
}

.cer {
  min-width: 320px;
}

.cer__wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.cer__inner {
  position: relative;
}

.cer-slide {
  overflow: visible;
  border: 1px solid var(--text-color);
}

.cer-slide img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.news {
  min-width: 320px;
}

.news__wrapper {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.news__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.news__item {
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
}

.news__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease;
}

.news__item:hover img,
.news__item:focus img,
.news__item:active img{
	transform: scale(1.1);
}

.news__item::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.news__block {
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: absolute;
  right: 87px;
  left: 23px;
  bottom: 35px;
  z-index: 5;
}

.product {
  min-width: 320px;
}

.product__wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.product__inner {
  position: relative;
}

.product-slide {
  flex-direction: column;
  gap: 32px;
  padding: 50px 34px;
  background-color: var(--info-bg);
}

.product__img {
  width: 100%;
  height: 217px;
  overflow: hidden;
}

.product__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.task {
  min-width: 320px;
}

.task__wrapper {
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.task__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.task__item {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 30px;
  background-color: var(--info-bg);
}
.task__img {
  width: 100%;
  height: 245px;
}

.task__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.task__info {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.contact {
  min-width: 320px;
}

.contact__wrapper {
  display: flex;
  align-items: center;
  gap: 65px;
}
.contact__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 30%;
}

.contact__list {
  display: flex;
  flex-direction: column;
  gap: 23px;
}
.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact__icon {
  flex-shrink: 0;
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
}
.contact__item-block {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-map {
  width: 86%;
}

.contact-map iframe{
	width: 100%;
	height: 386px;
	border:none !important;
}

.fixed-social {
  position: fixed;
  right: 20px;
  bottom: 12px;
  z-index: 200;
  transition: 0.7s ease;
}
.fixed-social__list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.fixed-social__link {
  display: block;
  transition: 0.7s ease;
}

.fixed-social__link img {
  width: 70px;
  height: 70px;
}


.fixed-social.hidden {
  opacity: 0;
  visibility: hidden;
  transition: 0.7s ease;
}

.search{
    
    min-width: 320px;
}

.search__wrapper{
   display: flex;
    flex-direction: column;
    gap: 30px; 
}

.search__content{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.search__results{
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.ss-result {
    font-size: 20px;
    line-height: 26px;
    
}
.ss-result__aside {
    float: right;
    margin-left: .5em;
}
.ss-result__title {
    font-weight: bold;
    margin-bottom: .5em;
}
.ss-result__badge {
    font-size: .7em;
    padding: .2em .5em;
    border-radius: 4px;
    margin-left: .75em;
    background: #eee;
    display: inline-block;
}
.ss-result__text {
    font-size: 17px;
    line-height: 22px;
    font-weight: 400;
    color: #777777;
    margin-bottom: .5em;
}

.header__search__label{
	position: relative;
	width: 100%;
	display: flex;
  
}

.header__search__label input[type="text"] {
  border:1px solid var(--link-color);
  padding: 11px 32px 11px 16px;
  color:var(--text-color);
  width: 100%;
}

.header__search-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.news-inner__wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.news-inner__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.news-inner__link img {
  object-fit: cover;
  width: 100%;
  height: 300px;
  border-radius: 16px;
}

.supply__item img {
    filter: grayscale(1);
    transition: .5s;
}

.supply__item:hover img {
    filter: grayscale(0);
}
.supply__item {
    position: relative;
}

.supply__item:before {
        position: absolute;
    content: "";
    background-blend-mode: saturation;
    background: #00000080;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: .5s;
}

.supply__item:hover:before {
    opacity: 0;
}



.modal.callback_modal {
    width: 1072px;
    max-width: 95%;
}

.modal_body {
    display: grid;
    gap: 0px;
        grid-template-columns: 408px 1fr;
            align-items: center;
}

.modal_body__img {
    height: auto;
        padding: 20px 0 20px 20px;
}

.modal_body__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.modal__top .title-3 {
    font-size: 34px;
}

.modal__top  .text {
    font-size: 18px;
    color: #424B5A;
}
.modal-form__top-inner.flex {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px 32px;
}

.modal-form__top-inner.flex .w50 {
    width: calc(50% - 16px);
}
.callback_modal .modal_body__form {
    padding: 40px;
}

.callback_modal .modal__wrapper {
    padding: 0;
}
.modal-label {
    display: none;
}
.modal__input {
    border: 1px solid var(--Color-Gray-200, #D6D6DC);
    font-size: 16px;
}
.submit_bottom {
    display: flex;
    gap: 30px;
    align-items: center;
}

.submit_bottom .btn {
    font-size: 20px;
    padding: 15px 40px;
        text-transform: capitalize;
}

.form_note {
    color: #424B5A;
    font-size: 14px;
}
.mb16{margin-bottom:16px;}
.mb32 {
    margin-bottom: 32px;
}
.catalog_list {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 24px;
}

.product_card {
    background: #F9F7F7;
    display: block;
    color: #151515;
}

.prod_img {
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prod_img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.prod_preview {
    padding: 20px;
}

.prod_name {
    font-size: 20px;
    line-height: 1.1;
    font-weight: 500;
    font-family: 'CeraPro';
    margin-bottom: 15px;
}

.attr_row {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    font-size: 13px;
}

.prod_attrs {
    display: flex;
    flex-direction: column;
    gap: 12px;
        color: #7C7C83;
}

.link_more {
    color: #67676F;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.attr_row span:last-child {
    color: #000000;
    font-weight: 500;
    text-align: right;
}
.product_page {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 24px;
}

.mt {
    margin-right: auto;
}

.product_sect {
    display: flex;
    flex-direction: column;
}

.product_sect .text {
    color: #000000;
    line-height: 1.4;
}

.prod_gallery a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prod_gallery {
    background: #F9F9FB;
}

.prod_gallery a img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
        mix-blend-mode: darken;
}

.text p {
    margin-bottom: 14px;
}

.product_sect .attr_row {
    font-size: 14px;
}
.prod_gallery {
    height: 445px;
}
.product_sect .mt {
    margin-top: auto;
}
.product_sect .btn {
    align-self: flex-start;
    min-width: 200px;
}
.catalog_page {
    display: grid;
    grid-template-columns: 286px 1fr;
    gap: 16px;
    align-items: flex-start;
}

.cat_menu {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.cat_menu li.active a {
    color: #000000;
}

.cat_menu li a {
    color: #707076;
    padding: 12px;
    padding-left: 0;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}

.cat_menu li.active {
    font-weight: 600;
}
.products__list {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
}

.product_card {transition: .5s;}

.product_card_img {
    height: 240px;
}

.product_card_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: darken;
}

.product_card_preview {
    padding: 20px;
}

.product_card_name {
    font-weight: 600;
    font-size: 18px;
}
.product_card:hover {
    color: var(--link-color);
}

.catalog_page.fw_catalog {
    grid-template-columns: 1fr;
}

.fw_catalog .products__list {
    grid-template-columns: repeat(4, 1fr);
}