/* 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;
}

section {
    overflow: hidden;
    position: relative;
}

:root {
  --container-width: 1286px;
  --container-padding: 15px;

  --font-main: "Inter", sans-serif;
  --font-accent: "Raleway", sans-serif;

  --page-bg: #fff;
  --text-color: #000;
  --second: rgba(126, 128, 129, 1);
  --third: rgba(102, 102, 102, 1);
  --accent: rgba(0, 0, 0, 0.5);
  --link-color: rgba(6, 175, 175, 1);

  --section-bg: rgba(192, 191, 196, 1);
  --promo-span: rgba(102, 204, 204, 1);
  --card-br: rgba(0, 0, 0, 0.1);
  --advantages-bg: rgba(243, 242, 247, 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;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background:var(--link-color);
}

::-webkit-scrollbar-thumb:hover {
  background:var(--link-color);
}

/* Контейнеры */
.container {
  margin: 0 auto;
  padding: 0 var(--container-padding);

  max-width: var(--container-width);
  width: 100%;
}

.container-left {
  padding-right: calc(
    (100% - var(--container-width)) / 2 + var(--container-padding)
  );
}

.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: 16px;
  font-family: var(--font-main);
  font-weight: 400;
  line-height: 100%;
}

.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;
}

.footer {
  padding: 60px 0;
  background-color: #e3e3e3;
}

/* 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: 2px;
}

.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;
}

.pt {
  padding-top: 64px;
}
.pb {
  padding-bottom: 64px;
}

.pb-2 {
  padding-bottom: 130px;
}

.ptb {
  padding: 64px 0;
}

.mt {
  margin-top: 0;
}

.title-1 {
  font-size: 49px;
  line-height: 110%;
  font-weight: 700;
  letter-spacing: 2.5%;
  font-family: var(--font-accent);
  text-transform: uppercase;
}

.title-1 span {
  color: var(--promo-span);
}

.title-2 {
  font-size: 39px;
  line-height: 110%;
  font-weight: 700;
  font-family: var(--font-accent);
}

.title-3 {
  font-size: 25px;
  line-height: 120%;
  font-weight: 600;
  font-family: var(--font-accent);
  transition: 0.3s ease;
}

.title-4 {
  font-size: 20px;
  line-height: 120%;
  font-weight: 600;
  font-family: var(--font-accent);
  color: var(--text-color);
}

.about-title {
  font-size: 16px;
  line-height: 140%;
  font-weight: 700;
  font-family: var(--font-accent);
  color: var(--link-color);
  text-transform: uppercase;
}

.text {
  font-size: 16px;
  line-height: 140%;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--text-color);
}

.promo-text {
  font-size: 25px;
  line-height: 120%;
  font-weight: 500;
  font-family: var(--font-main);
}

.info-section-text {
  font-size: 20px;
  line-height: 140%;
  font-weight: 400;
  font-family: var(--font-main);
}

.hot-text {
  font-size: 16px;
  line-height: 140%;
  font-weight: 400;
  font-family: var(--font-main);
}

.form__text {
  font-size: 20px;
  line-height: 125%;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--accent);
}

.form__file-title {
  font-size: 16px;
  line-height: 120%;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--text-color);
  text-align: center;
}

.form__file-text {
  font-size: 14px;
  line-height: 150%;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--accent);
  text-align: center;
}

.product-text {
  font-size: 16px;
  line-height: 100%;
  font-weight: 400;
  font-family: var(--font-main);
  color: rgba(0, 0, 0, 0.5);
}

.partner-text {
  font-size: 21px;
  line-height: 125%;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--second);
}

.blog-date {
  font-size: 14px;
  line-height: 140%;
  font-weight: 500;
  font-family: var(--font-main);
  color: var(--accent);
}

.footer-title {
  font-size: 16px;
  line-height: 100%;
  color: var(--page-bg);
  font-weight: 600;
  font-family: var(--font-main);
}

.footer-text {
  font-size: 14px;
  line-height: 140%;
  color: var(--page-bg);
  font-weight: 600;
  font-family: var(--font-main);
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-link {
  transition: 0.3s ease;
}

.footer-link:focus,
.footer-link:hover,
.footer-link:active {
  color: var(--link-color);
}

.footer-link:focus svg path,
.footer-link:hover svg path,
.footer-link:active svg path {
  stroke: var(--link-color);
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 14px;
  line-height: 150%;
  color: var(--page-bg);
  background-color: var(--link-color);
  border: 1px solid var(--link-color);
  border-radius: 9999px;
  padding: 6px 5px;
  transition: 0.4s linear;
  cursor: pointer;
}

.btn:focus,
.btn:hover,
.btn:active {
  background-color: transparent;
  color: var(--link-color);
}

.btn-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 14px;
  line-height: 150%;
  color: var(--text-color);
  background-color: var(--page-bg);
  border-radius: 9999px;
  padding: 4px 4px 4px 20px;
  transition: 0.4s linear;
  cursor: pointer;
}

.btn-2:focus,
.btn-2:hover,
.btn-2:active {
  box-shadow: 0 0 20px var(--page-bg);
}

.btn__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  background-color: var(--link-color);
  border: 1px solid var(--link-color);
  transition: 0.3s ease;
}

.btn__arrow.pagination__classic-btn:focus,
.btn__arrow.pagination__classic-btn:hover,
.btn__arrow.pagination__classic-btn:active {
  background-color: transparent;
}

.btn__arrow.pagination__classic-btn:focus svg path,
.btn__arrow.pagination__classic-btn:hover svg path,
.btn__arrow.pagination__classic-btn:active svg path {
  stroke: var(--link-color);
}

.btn__arrow.pagination__btn-inActive {
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.btn__arrow.pagination__classic-btn.pagination__btn-inActive svg path{
  stroke: rgba(0, 0, 0, 0.1);
}

.btn__arrow.pagination__classic-btn.pagination__btn-inActive:focus svg path,
.btn__arrow.pagination__classic-btn.pagination__btn-inActive:hover svg path,
.btn__arrow.pagination__classic-btn.pagination__btn-inActive:active svg path {
  stroke: rgba(0, 0, 0, 0.1);
}

.pagination__classic-btn-left{
	transform: rotate(180deg);
}

.text-white {
  color: var(--page-bg);
}

.text-gray {
  color: var(--accent);
}

.text-black {
  color: var(--text-color);
}

.header__btn {
  width: 191px;
}

.btn-promo {
  width: 294px;
  font-size: 20px;
}

.form__btn {
  width: 269px;
}

.info-about-btn {
  width: 192px;
  background-color: transparent;
  color: var(--text-color);
}

.product__btn {
  width: 230px;
}

.info-section__contact-btn {
  width: 252px;
}

.pagination-btn {
  width: 108px;
}

.page-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 320px;
  z-index: 98;
  transition: 0.2s linear;
  padding: 24px 0;
}

.header-2.page-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.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);
  padding: 10px 0;
}

.header-2.header__active {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  background-color: var(--page-bg);
  padding: 10px 0;
}

.logo {
  flex-shrink: 0;
}

.header__row {
  display: flex;
  flex-grow: 1;
  align-items: center;
}

.header__nav {
  flex-grow: 1;
  margin: 0 10px 0 48px;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.nav__list li {
  position: relative;
  cursor: pointer;
}

.nav__submenu {
  position: relative;
  display: flex;
  gap: 4px;
  align-items: center;
  padding-right: 12px;
}

.nav__submenu img {
  position: absolute;
  right: -5px;
  top: 55%;
  transform: translateY(-50%);
}

.header__submenu {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 0;
  top: 120%;
  opacity: 0;
  min-width: 400px;
  max-width: 100%;
  word-break: break-word;
  white-space: normal;
  visibility: hidden;
  transform: translateY(-10px);
  transition: 0.5s linear;
  z-index: 5;
}

.nav__list li:hover .header__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  background-color: var(--page-bg);
  border-radius: 12px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

.header__submenu li a {
  padding: 15px;
  display: flex;
  background-color: #fff;
  color: var(--text-color);
}

.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: 400px;
  max-width: 100%;
  word-break: break-word;
  white-space: normal;
  visibility: hidden;
  transform: translateX(-10px);
  transition: 0.5s linear;
  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);
}

.nav__list a {
  font-size: 14px;
  line-height: 100%;
  font-weight: 600;
  font-family: var(--font-main);
  color: var(--page-bg);
  transition: 0.4s linear;
  text-transform: uppercase;
}

.header-2 .nav__list a {
  color: var(--text-color);
}

.nav__list a:hover,
.nav__list a:focus,
.nav__list a:active {
  color: var(--link-color);
}

.header__right {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 24.3%;
}

.header__right-block {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header__search-icon {
  flex-shrink: 0;
}

.header__lang {
  position: relative;
  align-items: center;
  display: flex;
  gap: 2px;
  flex-shrink: 0;
}

.lang {
  display: flex;
  align-items: center;
  gap: 1px;
  color: var(--page-bg);
  font-size: 14px;
  line-height: 120%;
  font-weight: 500;
  font-family: var(--font-main);
}

.lang option{
  color: var(--text-color);
}

.form-control {
    border: none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    min-width: 32px;
    cursor: pointer;
}

.select-arr{
    position: absolute;
    right:0px;
    top:50%;
    transform:translateY(-55%);
}

.header-2 .lang {
  color: var(--text-color);
}

.mobile-nav {
  position: fixed;
  // top: 0;
  left: -110%;
  width: 45%;
  height: 100%;
  z-index: 110;

  display: flex;
  flex-direction: column;
  padding-bottom: 40px;
  background: var(--page-bg);
  box-shadow: 5px 0 10px rgba(0, 0, 0, 0.2);
  transition: all 0.5s ease-in;
}

.mobile-nav--open {
  left: 0;
}

.mobile-nav a {
  color: #151515;
  padding: 15px 10px 15px 20px;
  text-transform: uppercase;
  display: block;
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  line-height: 22px;
  padding-top: 20px;

  & .active {
    opacity: 0.5;
  }
}

.mobile-nav__list li {
  position: relative;
}

.menu-title {
  min-height: 67px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: var(--link-color);
  text-transform: uppercase;
  font-size: 18px;
  line-height: 22px;
  padding: 7px 5px;
  position: relative;
}

.menu-title .menu__close {
  display: none;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.submenu {
  position: fixed;
  top: 0px;
  left: -100%;
  width: 45%;
  height: 100%;
  z-index: 100;

  display: flex;
  flex-direction: column;
  padding-bottom: 40px;
  background: var(--page-bg);
  transition: 0.5s ease-in;
}

.submenu--open {
  left: 0;
}

.submenu ul {
  overflow-y: auto;
  padding-top: 20px;
}

.back-btn {
  position: absolute;
  z-index: 1000;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.back-btn img {
  transform: rotate(90deg);
}

.item-arrow {
  position: relative;
}

.item-arrow .item-arrow-img {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  transform: translateY(-50%) rotate(-90deg);
  right: 30px;
  top: 50%;
  z-index: 15;
}

.item-arrow-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.footer {
  background-color: rgba(38, 38, 38, 1);
  padding: 48px 0 32px;
}

.footer__wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer__top {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  justify-content: space-between;
  padding-bottom: 45px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__right {
  flex-grow: 1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 24px;
}
.footer__row {
  display: flex;
  gap: 24px;
}
.footer__block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__list {
  display: flex;
  flex-direction: column;
}

.footer__list-2 {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__copyright a {
  font-size: 14px;
  line-height: 100%;
  color: var(--page-bg);
  font-weight: 500;
  font-family: var(--font-main);
  transition: 0.4s ease;
}

.footer__copyright a:focus,
.footer__copyright a:hover,
.footer__copyright a:active {
  color: var(--link-color);
}

.catalog-slide,
.project-slide,
.partners-slide,
.certificates-slide {
  display: flex !important;
  height: auto !important;
}

.pagination .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  background-color: rgba(217, 217, 217, 1);
  border-radius: 0;
  transition: all 0.3s ease;
  border-radius: 50%;
  opacity: 1;
}

.pagination .swiper-pagination-bullet-active {
  background-color: var(--link-color);
  opacity: 1;
}

.slider-arrow {
  position: relative;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--link-color);
  background-color: var(--link-color);
  z-index: 50;
  cursor: pointer;
  transition: 0.5s linear;
}

.slider-arrow:focus,
.slider-arrow:hover,
.slider-arrow:active {
  background-color: transparent;
}

.slider-arrow:focus svg path,
.slider-arrow:hover svg path,
.slider-arrow:active svg path {
  stroke: var(--link-color);
}

.button-prev svg {
  position: relative;
  transform: rotate(180deg);
}

.button-next svg {
  position: relative;
}

.swiper-pagination {
  bottom: -45px !important;
}

.breadcrumbs__wrapper {
  display: flex;
  margin-top: 136px;
  margin-bottom: 32px;
}

.breadcrumbs {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.breadcrumbs__link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  line-height: 120%;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--accent);
  position: relative;
  transition: 0.3s ease;
}

.breadcrumbs__link:not(:last-child):focus,
.breadcrumbs__link:not(:last-child):hover,
.breadcrumbs__link:not(:last-child):active {
  color: var(--link-color);
}

.breadcrumbs__link:not(:last-child) {
  padding-right: 0px;
}

.breadcrumbs__link:not(:last-child)::after {
  position: absolute;
  content: "";
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
  background: url("/storage/app/media/svg/bread-arrow.svg") no-repeat center;
  background-size: cover;
  width: 16px;
  height: 16px;
}

.breadcrumbs-active {
  color: var(--text-color);
  font-weight: 500;
}

.promo {
  height: 100vh;
}

.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: linear-gradient(
    to right,
    rgba(37, 39, 40, 0.7),
    rgba(37, 39, 40, 0.4)
  );
  z-index: 0;
}

.banner {
  height: 100%;
}

.banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo__block {
  display: flex;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.promo__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  max-width: 610px;
}
.promo__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.services {
  min-width: 320px;
  background-color: var(--section-bg);
}

.services__wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.services__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
.services__link {
  overflow: hidden;
  position: relative;
  border-radius: 24px;
  transition: 0.3s linear;
}

.services__img {
  width: 100%;
  object-fit: cover;
  border-radius: 24px;
  transform: scale(1);
  transition: 0.3s linear;
}

.services__link:focus .services__img,
.services__link:hover .services__img,
.services__link:active .services__img {
  transform: scale(1.1);
}

.services__arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--page-bg);
  transition: 0.3s linear;
}

.services__link:focus .services__arrow,
.services__link:hover .services__arrow,
.services__link:active .services__arrow {
  box-shadow: 0 0 10px 0 var(--link-color);
}

.services__title {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  transition: 0.3s linear;
}

.services__link:focus .services__title,
.services__link:hover .services__title,
.services__link:active .services__title {
  color: var(--link-color);
}

.section__about-wrapper{
	display: flex;
	align-items: center;
	gap: 32px;
}

.section__about-img{
	width: 50%;
}

.section__about-img img{
	object-fit: cover;
	width: 100%;
	border-radius: 20px;
}

.section__about-info{
	width: 50%;
	display: flex;
	flex-direction: column;
	gap:10px;
}

.section__about-text{
	display: flex;
	flex-direction: column;
	gap:8px;
}

.info-section {
  min-width: 320px;
  position: relative;
}

.info-section-ptb-1 {
  position: relative;
  padding: 64px 0;
}

.info-section-ptb-1::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 51, 51, 0.85);
  z-index: 2;
}

.info-section-ptb-2 {
  position: relative;
  padding: 64px 0;
}

.info-section-ptb-2::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(77, 77, 77, 0.5);
  z-index: 2;
}

.info-section-ptb-3 {
  position: relative;
  padding: 48px 0;
}

.info-section-ptb-4 {
  position: relative;
  padding: 64px 0;
}

.info-section-ptb-4::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(77, 77, 77, 0.5);
  z-index: 2;
}

.info-section__wrapper {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 3;
}

.info-section__inner {
  width: 100%;
  display: flex;
  gap: 32px;
}

.info-section__inner .title-2 {
  width: 50%;
}

.info-section__block {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-section__banner {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.info-section__contact {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.info-section__contact-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-section__contact-block .title-4 {
  font-weight: 400;
}

.hot {
  min-width: 320px;
}

.hot__wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hot__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.hot__item {
  overflow: hidden;
  position: relative;
  border-radius: 24px;
}

.hot__item::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hot__img {
  border-radius: 24px;
  transform: scale(1);
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: 0.4s ease;
}

.hot__item:focus .hot__img,
.hot__item:hover .hot__img,
.hot__item:active .hot__img {
  transform: scale(1.1);
}

.hot__info {
  position: absolute;
  left: 24px;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 3;
}

.hot-step {
  position: absolute;
  right: -50px;
  bottom: 5px;
  font-size: 405px;
  line-height: 290px;
  font-weight: 200;
  font-family: var(--font-accent);
  color: rgba(255, 255, 255, 0.6);
  z-index: 0;
}

.hot__list .hot__item:nth-child(3) .hot-step {
  right: -37px;
  bottom: 55px;
}

.hot__list .hot__item:nth-child(4) .hot-step {
  right: -37px;
  bottom: 55px;
}

.catalog {
  min-width: 320px;
}

.catalog__wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.catalog__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.catalog-link {
  display: flex;
  align-items: center;
  gap: 4px;
  transition: 0.3s ease;
  font-size: 20px;
  line-height: 140%;
  font-weight: 500;
  font-family: var(--font-main);
  color: var(--accent);
}

.catalog-link:focus,
.catalog-link:hover,
.catalog-link:active {
  color: var(--link-color);
}

.catalog-link svg {
  transition: 0.3s ease;
}
.catalog-link:focus svg path,
.catalog-link:hover svg path,
.catalog-link:active svg path {
  stroke: var(--link-color);
}

.catalog__inner {
  position: relative;
}

.catalog-slide {
  flex-direction: column;
  gap: 16px;
}

.catalog__img {
  height: 226px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  transition: 0.3s ease;
}

.catalog-slide:focus .catalog__img,
.catalog-slide:hover .catalog__img,
.catalog-slide:active .catalog__img {
  border-color: var(--link-color);
}

.catalog__img img {
  object-fit: contain;
  height: 100%;
  border-radius: 16px;
  margin: auto;
}

.catalog__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.advantages {
  min-width: 320px;
}

.advantages__wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.advantages__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.advantages__item {
  display: flex;
  flex-direction: column;
  gap: 32px;
  background-color: var(--advantages-bg);
  border-radius: 24px;
  padding: 24px;
}

.advantages__item-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.project {
  min-width: 320px;
}

.project-slide {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.project__img {
	display: block;
	width: 100%;
	height: 408px;
  border-radius: 24px;
}

.project__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  transform: scale(1);
  transition: 0.3s ease;
}

.project__img:focus img,
.project__img:hover img,
.project__img:active img {
  transform: scale(1.1);
}

.project__info {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  border-radius: 12px;
  background-color: var(--page-bg);
  padding: 12px;
}

.partner {
  min-width: 320px;
}

.partner__wrapper {
  display: flex;
  align-items: flex-start;
}
.partner__info {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 49%;
}

.partner__inner {
  width: 50%;
}

.partners-icon {
  display: flex;
  width: 100%;
  height: 96px;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.partners-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.info__about {
  display: flex;
  flex-direction: column;
  gap: 30px;
  background-color: var(--page-bg);
  border-radius: 24px;
  padding: 24px;
  width: 66%;
  margin-left: auto;
  align-items: flex-start;
}
.info__about-block {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.info__about-top {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info__about-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.form__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px;
  border-radius: 24px;
  background-color: var(--page-bg);
  width: 50%;
}
.form__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  position: relative;
}
.form__top {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.form__block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form__block:nth-child(3) {
  grid-column: 1 / 3;
}

.label-text {
  font-size: 14px;
  line-height: 120%;
  font-weight: 500;
  font-family: var(--font-main);
}
.input-text {
  font-size: 16px;
  line-height: 120%;
  font-weight: 400;
  color: var(--text-color);
  font-family: var(--font-main);
  padding: 16px 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  transition: 0.3s ease;
}

.input-text:focus,
.input-text:hover,
.input-text:active {
  border-color: var(--link-color);
}

.input-text::placeholder {
  color: var(--accent);
}

.custom-file-upload-area {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 20px 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  transition: 0.3s ease;
}

.custom-file-upload-area:focus,
.custom-file-upload-area:hover,
.custom-file-upload-area:active {
  border-color: var(--link-color);
}

.custom-file-upload-area svg {
  transition: 0.3s ease;
}

.custom-file-upload-area:focus svg,
.custom-file-upload-area:hover svg,
.custom-file-upload-area:active svg {
  stroke: var(--link-color);
}

.file-upload-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.reliability {
  min-width: 320px;
}

.reliability__wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.reliability__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.reliability__top .title-1 {
  text-transform: none;
  width: 48%;
}

.reliability__text {
  width: 39.4%;
}

.reliability__img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.hang {
  min-width: 320px;
}

.hang__wrapper {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.hang__info {
	display: flex;
	flex-direction: column;
	gap: 10px;
  width: 46.5%;
}

.hang-time__list {
  display: flex;
  flex-direction: column;
  width: 65.5%;
  gap: 48px;
  padding-left: 106px;
}
.hang-time__item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hang-time__item::before {
  position: absolute;
  content: "";
  left: -106px;
  top: 0;
  width: 90px;
  height: 90px;
  background: url("/storage/app/media/svg/time-icon.svg") no-repeat center;
  background-size: contain;
}

.hang-time__item::after {
  content: "";
  position: absolute;
  left: -63px;
  top: 108%;
  width: 2px;
  height: calc(100% - 47px);
  background-color: rgba(243, 242, 247, 1);
}

.hang-time__item:last-child::after {
  display: none;
}

.certificates {
  min-width: 320px;
}

.certificates__wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.certificates__inner {
  position: relative;
}

.certificates-slide {
  flex-direction: column;
  gap: 16px;
  border-radius: 24px;
  border: 1px solid transparent;
  background-color: var(--advantages-bg);
  padding: 24px;
}

.certificates-slide:focus .title-4,
.certificates-slide:hover .title-4,
.certificates-slide:active .title-4 {
  color: var(--link-color);
}

.certificates-slide:focus,
.certificates-slide:hover,
.certificates-slide:active {
  border-color: var(--link-color);
}

.product__main {
  min-width: 320px;
}

.product__wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.product__main-top {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.product__main-sort {
  width: 100%;
}
.form-product {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form-product-search {
  position: relative;
}

.product-search__input {
  transition: 0.3s ease;
  padding: 10px 10px 10px 52px;
  border: 1px solid var(--card-br);
  border-radius: 9999px;
}

.product-search__input:focus,
.product-search__input:hover,
.product-search__input:active {
  border-color: var(--link-color);
}

.product-search__input::placeholder {
  color: var(--accent);
}

.product-search-btn {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  z-index: 4;
}

.form-product__sort {
  display: flex;
  align-items: center;
  gap: 16px;
}

.product-sort {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%236B7280'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 1.2rem;
  padding: 0.7rem 1.7rem 0.7rem 1.3rem;
  border: 1px solid var(--card-br);
  border-radius: 9999px;
  cursor: pointer;
}

.product__layout {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.product__layout-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 24%;
}

.product__layout-left-top{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 5px;
	transition: 0.3s linear;
	cursor: pointer;
}

.product__layout-left-top img{
	width: 12px;

}



.product__layout-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  max-height: 500px;
  transition: 0.3s linear;
}

.product__layout-list.product__layout-list-hidden{
	visibility: hidden;
  opacity: 0;
  transform: translateY(-10px);
  max-height: 0;
}

.product__layout-link.text {
  color: var(--accent);
  transition: 0.3s ease;
  padding: 12px 5px 12px 0;
}

.product__layout-link:focus,
.product__layout-link:hover,
.product__layout-link:active {
  color: var(--link-color);
}

.product__layout-link.product__layout-active {
  font-weight: 600;
  color: var(--text-color);
}
.product__layout-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 75%;
}
.product__layout-list-2 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
.product__layout-link-2 {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product__layout-link-2:focus .catalog__img,
.product__layout-link-2:hover .catalog__img,
.product__layout-link-2:active .catalog__img {
  border-color: var(--link-color);
}

.product-inner {
  min-width: 320px;
}

.product__inner-wrapper {
  display: flex;
  align-items: center;
  gap: 32px;
}
.product__left {
  position: relative;
  width: 50%;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.product-btns {
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: calc(100% - 10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}

.product-slide img {
  width: 100%;
  height: 468px;
  object-fit: contain;
}

.product__right {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 84px;
}
.product__right-top {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.product__list-tex {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.product__item-tex {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.product__item-block-1{
	width: 50%;
}



.product__right-bottom {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}
.product-price__block {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.product__info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.product-info__text {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.work {
  min-width: 320px;
}

.work__wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.work__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.work__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.work__item {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.blog {
  min-width: 320px;
}

.blog__wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.blog__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.blog__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
.blog__item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
  overflow: hidden;
}

.blog__img {
  overflow: hidden;
  width: 100%;
  height: 227px;
  border-radius: 20px;
}

.blog__img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  transform: scale(1);
  transition: 0.3s ease;
}

.blog__item:focus .blog__img img,
.blog__item:hover .blog__img img,
.blog__item:active .blog__img img {
  transform: scale(1.1);
}

.blog__info {
  flex-shrink: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pagination__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.pagination__classic {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pagination__classic-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 999px;
  padding: 4px;
}

.pagination-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: 16px;
  line-height: 100%;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--text-color);
  border-radius: 999px;
  transition: 0.3s ease;
}

.pagination-num:focus,
.pagination-num:hover,
.pagination-num:active {
  color: var(--link-color);
}

.pagination-num.pagination-num__active {
  background-color: var(--page-bg);
}

.pagination__jump {
  display: flex;
  align-items: center;
  gap: 32px;
}

.pagination__jump-block {
  display: flex;
  align-items: center;
  gap: 16px;
}

.custom-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%236B7280'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 1.2rem;

  border-radius: 999px;
  padding: 0.6rem 2rem 0.6rem 1.6rem;
  border: 1px solid rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.circle-nav-button {
  border: 1px solid #e5e7eb;
  background-color: white;
  color: #9ca3af;
}

.tabs__inner {
  overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    white-space: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.tabs__inner::-webkit-scrollbar {
  display: none;
}

.tabs__block {
	min-width: max-content;
  display: inline-flex; 
  gap: 16px;
  align-items: center;
  scroll-snap-align: center;
}

.btn-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  flex: 0 0 auto;
  min-width: 0; 
  user-select: none;
  gap: 7px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 14px;
  line-height: 150%;
  color: var(--text-color);
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 9999px;
  padding: 8.5px 24px;
  transition: 0.4s linear;
  cursor: pointer;
}

.btn-tab:focus,
.btn-tab:hover,
.btn-tab:active {
  background-color: var(--link-color);
  color: var(--page-bg);
}
.btn-tab.tab-active {
  background-color: var(--advantages-bg);
  border: 1px solid transparent;
}

.btn-tab:focus.tab-active,
.btn-tab:hover.tab-active,
.btn-tab:active.tab-active {
  background-color: var(--link-color);
  color: var(--page-bg);
}

.tab-hidden {
  display: none;
}

.contact {
  min-width: 320px;
}

.contact__wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact__inner {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact__info {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.contact__info-top {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact__item-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact__item-info .title-4 {
  font-weight: 500;
  font-family: var(--font-main);
  line-height: 140%;
}
.contact-link {
  transition: 0.3s ease;
}

.contact-link:focus,
.contact-link:hover,
.contact-link:active {
  color: var(--link-color);
}

.contact__social-list {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact__social-link {
  transition: 0.3s ease;
}
.contact__social-link svg path,
.contact__social-link svg rect {
  transition: 0.3s ease;
}

.contact__social-link:focus svg path,
.contact__social-link:hover svg path,
.contact__social-link:active svg path {
  stroke: var(--link-color);
  fill: var(--link-color);
}

.contact__social-link:focus svg rect,
.contact__social-link:hover svg rect,
.contact__social-link:active svg rect {
  stroke: var(--link-color);
}

.contact__map {
  width: 50%;
}

.contact__map iframe{
	width: 100%;
	border: none;
	border-radius: 20px;
}

.news-inner__wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.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;
}

.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: rgba(247, 247, 247, 1);
  z-index: 1;
  border-radius: 16px;
  padding: 50px;
}

.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: var(--page-bg);
  border-radius: 12px;
  border: 1px solid transparent;
  transition: 0.3s ease;
  cursor: pointer;
}

.modal-input::placeholder {
  color: var(--form-place);
}

.modal__btn {
  position: absolute;
  right: 0;
  top: -2px;
  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;
}

.search-form{
	width: 100%;
}

.search{
    min-width: 320px;
}

.search__wrapper{
   display: flex;
    flex-direction: column;
    gap: 40px; 
}

.search__content{
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.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"] {
  background-color: var(--advantages-bg);
  padding: 11px 32px 11px 16px;
  color:var(--text-color);
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.header__search-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.responsiv-uploader-fileupload.style-file-single{
	border: none !important;
}