
/* ===== assets\css\buttons.css ===== */
button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  text-align: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

a.button-like {
  text-decoration: none;
  justify-content: center;
}

.button {
  cursor: pointer;
  transition:
    background-color 0.3s,
    color 0.3s,
    border-color 0.3s;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  white-space: nowrap;
}

.button-big {
  padding: 12px 28px;
  font-size: 14px;
}

.button-medium {
  padding: 10px 20px;
  font-size: 12px;
}

.button-small {
  padding: 8px 16px;
  font-size: 12px;
}

.bordered-button-primary {
  border: 1px solid var(--color-primary);
  background-color: var(--color-gray-50);
  color: var(--color-primary);
  &:hover {
    background-color: var(--color-gray-100);
  }
  &:active {
    opacity: 0.7;
  }
}

.bordered-button-white {
  border: 1px solid var(--color-gray-50);
  background-color: var(--color-primary);
  color: var(--color-gray-50);
  &:hover {
    background-color: var(--color-primary-600);
  }
  &:active {
    background-color: var(--color-primary-400);
  }
}

.accent-button {
  background-color: var(--color-accent);
  color: var(--color-gray-50);
  &:hover {
    background-color: var(--color-accent-hover);
  }
  &:active {
    background-color: var(--color-accent-pressed);
  }
}

.gray-button {
  background-color: var(--color-gray-100);
  color: var(--color-primary);
  &:hover {
    background-color: var(--color-gray-200);
  }
  &:active {
    background-color: var(--color-gray-200);
    opacity: 0.7;
  }
}

.primary-button {
  background-color: var(--color-primary);
  color: var(--color-gray-50);
  &:hover {
    background-color: var(--color-primary-600);
  }
  &:active {
    background-color: var(--color-primary-400);
  }
}

.textonly-button {
  color: var(--color-primary);
  background-color: transparent;
  &:hover {
    background-color: var(--color-gray-100);
  }
  &:active {
    background-color: var(--color-gray-100);
    opacity: 0.7;
  }
}

@media (min-width: 768px) {
  .button-big {
    padding: 16px 32px;
    font-size: 16px;
  }
  .button-medium {
    padding: 12px 24px;
    font-size: 14px;
  }

  .button-small {
    padding: 10px 20px;
    font-size: 12px;
  }
}

@media (min-width: 1280px) {
  .button-big {
    padding: 18px 36px;
    font-size: 18px;
  }

  .button-medium {
    padding: 16px 30px;
    font-size: 16px;
  }

  .button-small {
    padding: 14px 24px;
    font-size: 14px;
  }
}


/* ===== assets\css\colors.css ===== */
:root {
  --color-primary: #002866;
  --color-primary-600: #04214c;
  --color-primary-400: #123f83;
  --color-primary-300: #0279cb;
  --color-primary-light: #f1f9ff;

  --color-accent: #ff5900;
  --color-accent-hover: #ee5300;
  --color-accent-pressed: #ff6f22;

  --color-gray-50: #fefefe;
  --color-gray-100: #f2f2f7;
  --color-gray-200: #eeeeee;
  --color-gray-300: #d1d1d1;
  --color-gray-400: #9ea5ad;
  --color-gray-500: #727272;
  --color-gray-600: #596066;
  --color-gray-700: #454c52;
  --color-gray-800: #3a3a3a;
  --color-gray-900: #24292e;
  --color-error: #ef4444;
  --color-warning: #f59e0b;
  --color-success: #10b981;
}

.bg-accent {
  background-color: var(--color-accent);
}

.bg-primary {
  background-color: var(--color-primary);
}

.bg-gray-50 {
  background-color: var(--color-gray-50);
}

.bg-gray-300 {
  background-color: var(--color-gray-300);
}

.bg-gray-200 {
  background-color: var(--color-gray-200);
}

.bg-gray-400 {
  background-color: var(--color-gray-400);
}

.bg-gray-100 {
  background-color: var(--color-gray-100);
}

.text-gray-50 {
  color: var(--color-gray-50);
}

.text-gray-400 {
  color: var(--color-gray-400);
}

.text-primary {
  color: var(--color-primary);
}

.text-accent {
  color: var(--color-accent);
}


/* ===== assets\css\components\404component.css ===== */
.four-zero-four__h1 {
  font-family: 'Inter', sans-serif;
  text-align: center;
  color: var(--color-accent);
  font-size: 130px;
  font-weight: 600;
  position: relative;
}
.four-zero-four__h1 img {
  width: 50px;
  position: absolute;
  top: -26%;
  left: 50%;
  transform: rotate(-30deg) translateX(-55px);
}
.four-zero-four__description {
  text-align: center;
}

@media (min-width: 480px) {
  .four-zero-four__h1 {
    font-size: 180px;
  }
  .four-zero-four__h1 img {
    width: 65px;
    transform: rotate(-30deg) translateX(-75px);
  }
  .four-zero-four__description {
    max-width: 375px;
  }
}
@media (min-width: 768px) {
  .four-zero-four__h1 {
    font-size: 220px;
  }
  .four-zero-four__h1 img {
    width: 80px;
    transform: rotate(-30deg) translateX(-95px);
  }
  .four-zero-four__description {
    max-width: 416px;
  }
}
@media (min-width: 1024px) {
}
@media (min-width: 1280px) {
  .four-zero-four__h1 {
    font-size: 250px;
  }
  .four-zero-four__h1 img {
    width: 94px;
    transform: rotate(-30deg) translateX(-105px);
  }
  .four-zero-four__description {
    max-width: 500px;
  }
}
@media (min-width: 1440px) {
}
@media (min-width: 1920px) {
  .four-zero-four__h1 {
    font-size: 320px;
  }
  .four-zero-four__h1 img {
    width: 108px;
    top: -22%;
    transform: rotate(-30deg) translateX(-125px);
  }
  .four-zero-four__description {
    max-width: 832px;
  }
}


/* ===== assets\css\components\about-company.css ===== */
.about-company {
  gap: 32px;
}

.about-company__grid {
  display: grid;
  gap: 20px;
}
.about-company__card {
  min-height: 136px;
}

.about-company__card-bordered {
  background-color: var(--color-gray-50);
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-company__card-primary {
  background-color: var(--color-primary);
  color: var(--color-gray-50);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-company__card-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.about-company__card__image-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: var(--color-gray-50);
  max-height: 100px;
}

.about-company__card__image-wrapper img,
.about-company__card-partners__wrapper img {
  max-width: 100%;
  object-fit: cover;
  height: auto;
  display: block;
}

.about-company__card-partners {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-company__card-partners__wrapper {
  border: 1px solid var(--color-gray-300);
  display: flex;
  justify-content: center;
  background-color: var(--color-gray-50);
  max-height: 100px;
}

@media (min-width: 480px) {
  .about-company {
    gap: 44px;
  }
  .about-company__card-partners__wrapper,
  .about-company__card__image-wrapper {
    max-height: 120px;
  }
}
@media (min-width: 768px) {
  .about-company {
    gap: 52px;
  }
  .about-company__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-company__card__item-1-3 {
    grid-column: 2;
  }
  .about-company__card__item-4-2 {
    grid-column: 1;
  }
  .about-company__card__item-4-3 {
    grid-column: 2;
  }
}
@media (min-width: 1024px) {
  .about-company__card-partners__wrapper,
  .about-company__card__image-wrapper {
    max-height: 140px;
  }
}
@media (min-width: 1280px) {
  .about-company {
    gap: 60px;
  }
  .about-company__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-company__card__item-1-3 {
    grid-column: 3;
  }

  .about-company__card__image-wrapper-1-1 {
    grid-column: 2;
  }
  .about-company__card__item-2-1 {
    grid-column: 2;
  }
  .about-company__card__item-2-2 {
    grid-column: 3;
  }
  .about-company__card-partners__wrapper {
    max-height: 174px;
  }
  .about-company__card__item-4-2 {
    grid-column: 2;
  }
  .about-company__card__item-4-3 {
    grid-column: 3;
  }
  .about-company__card-images {
    grid-template-rows: 1fr 1fr;
  }
  .about-company__card__image-wrapper {
    max-height: 200px;
  }
}
@media (min-width: 1440px) {
  .about-company__card__image-wrapper {
    max-height: 170px;
  }
}
@media (min-width: 1920px) {
  .about-company__card-partners__wrapper {
    max-height: 230px;
  }
  .about-company__card__image-wrapper {
    max-height: 260px;
  }
}


/* ===== assets\css\components\breadcrumbs.css ===== */
.breadcrumbs {
  display: none;
}

.breadcrumbs ul {
  display: flex;
  gap: 10px;
  padding-bottom: 24px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.breadcrumbs li {
  position: relative;
}

.breadcrumbs li + li::before {
  content: '•'; /* точка */
  color: var(--color-gray-300);
  display: inline-block;
  margin: 0 8px;
  font-size: 6px; 
  vertical-align: middle;
  width: 6px;
  height: 6px;
  background-color: var(--color-gray-300);
}

.breadcrumbs a {
  color: var(--color-gray-300);
  text-decoration: none;
}

.breadcrumbs li:last-child a {
  color: var(--color-primary);
  pointer-events: none; /* последний элемент не кликабелен */
}

@media (min-width: 480px) {
  .breadcrumbs {
    display: flex;
    padding-bottom: 24px;
    gap: 10px;
    align-items: center;
  }
}
@media (min-width: 768px) {
  .breadcrumbs {
    padding-bottom: 32px;
  }
}
@media (min-width: 1280px) {
  .breadcrumbs {
    padding-bottom: 40px;
  }
}

/* ===== assets\css\components\burger-menu.css ===== */
.burger-menu {
  box-sizing: border-box;
  width: 100%;
  background-color: var(--color-gray-50);
  position: absolute;
  top: 100%;
  left: 0;
  padding-bottom: 30px;
  gap: 24px;
  .burger-menu__section {
    gap: 8px;
    .burger-menu__section__item {
      min-height: 30px;
      font-size: 14px;
    }
    .burger-menu__section__submenu {
      gap: 16px;
      margin-bottom: 16px;
      a {
        text-decoration: none;
        color: var(--color-primary);
        &:hover {
          text-decoration: underline;
        }
      }
    }
  }
  .back-to__wrapper {
    height: 20px;
    .back-to {
      gap: 10px;
      font-size: 14px;
      color: var(--color-gray-600);
    }
  }
  .burger-menu__body {
    gap: 20px;
  }
}
@media (min-width: 480px) {
}
@media (min-width: 768px) {
  .burger-menu {
    padding-bottom: 40px;
    gap: 32px;
  }
}
@media (min-width: 1024px) {
  .burger-menu {
    display: none;
  }
}
@media (min-width: 1280px) {
}
@media (min-width: 1440px) {
}
@media (min-width: 1920px) {
}


/* ===== assets\css\components\cart.css ===== */
.cart__body {
}
.cart__body__request {
  gap: 32px;
  padding: 20px;
  background-color: var(--color-gray-100);
}
.cart__body__products {
  gap: 10px;
}
.cart__body__products__item {
  padding: 20px;
  background-color: var(--color-gray-100);
}
.cart__body__products__item__image-wrapper {
  aspect-ratio: 4/3;
  display: flex;
  justify-content: center;
}
.cart__body__products__item__image-wrapper img {
  max-width: 100%;
  min-width: 100%;
  object-fit: cover;
}
.cart__body__products__item__buttons {
  .buttons-wrapper {
    width: 100%;
    justify-content: space-between;
    gap: 20px;
    height: min-content;
  }
}

.count {
  width: 32px;
  height: 32px;
  border: 1px solid var(--color-gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.x-button {
  border: 1px solid var(--color-gray-300);
  color: var(--color-gray-300);
  width: 22px;
  height: 22px;
  svg {
    width: 7px;
    height: 7px;
  }
}

@media (min-width: 480px) {
  .cart__body__products__item {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .cart__body__products__item {
    grid-template-columns: repeat(3, 1fr);
  }
  .cart__body__products__item__buttons {
    .buttons-wrapper {
      justify-content: flex-end;
      gap: 32px;
    }
  }
}
@media (min-width: 1024px) {
  .cart__body {
    grid-template-columns: 2fr 1fr;
  }
  .cart__body__request {
    gap: 40px;
  }
}
@media (min-width: 1280px) {
}
@media (min-width: 1440px) {
}
@media (min-width: 1920px) {
}


/* ===== assets\css\components\category-products.css ===== */
.category {
  gap: 32px;
}
.category-products {
  gap: 20px;
  display: grid;
}

.category-products__card {
  min-width: 0;
  gap: 20px;
  display: flex;
  flex-direction: column;
  background-color: var(--color-gray-50);
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.category-products__card__image-wrapper {
  display: flex;
  justify-content: center;
  background-color: var(--color-gray-50);
}
.category-products__card__image-wrapper img {
  min-width: 100%;
}

.navigation {
  display: none;
}

.navigation__adaptation {
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 20px;
  min-width: 33%;
  .navigation__submenu {
    margin-left: 10px;
    padding-left: 30px;
    border-left: 1px solid var(--color-gray-400);
    .navigation__submenu__list {
      gap: 20px;
    }
  }
}

.product-480,
.product-1280 {
  display: none;
}

.products-amount {
  gap: 10px;
  align-items: baseline;
  flex-wrap: wrap;
}

.filter-buttons {
}

.category-products__filters {
  gap: 10px;
  flex-wrap: wrap;
}
.category-products__filters__item {
  padding: 6px 16px;
  gap: 10px;
  align-items: center;
}

.filters-opened-hidden {
  display: none;
}

.categories-adaptation__header,
.filters-adaptation__header {
  padding: 20px;
  width: 100%;
  gap: 20px;
  justify-content: space-between;
  box-sizing: border-box;
  text-transform: uppercase;
}

.categories-adaptation__body,
.filters-adaptation__body {
  padding: 20px;
  width: 100%;
  gap: 20px;
  align-items: start;
  box-sizing: border-box;
}

@media (min-width: 480px) {
  .category {
    gap: 44px;
  }
  .category-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .products-amount,
  .filter-buttons,
  .categories-adaptation,
  .filters-adaptation {
    grid-column: span 2;
  }

  .product-480 {
    display: flex;
  }
}
@media (min-width: 768px) {
  .category {
    gap: 52px;
  }

  .filter-buttons {
    display: none;
  }

  .navigation {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 33%;
    .navigation__submenu {
      margin-left: 10px;
      padding-left: 30px;
      border-left: 1px solid var(--color-gray-400);
      .navigation__submenu__list {
        gap: 20px;
      }
    }
  }

  .filters-opened-hidden {
    display: flex;
  }

  .categories-adaptation,
  .filters-adaptation {
    display: none;
  }
}
@media (min-width: 1024px) {
}
@media (min-width: 1280px) {
  .category {
    gap: 60px;
  }
  .category-products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .products-amount {
    grid-column: span 3;
  }

  .product-1280 {
    display: flex;
  }

  .navigation {
    min-width: 25%;
  }
}
@media (min-width: 1440px) {
}
@media (min-width: 1920px) {
}


/* ===== assets\css\components\contact-us.css ===== */
.contact-us {
  gap: 32px;
}

.contact-us__body__card-bordered {
  background-color: var(--color-gray-50);
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.contact-us__body {
  direction: rtl;
}
.contact-us__body__card {
  min-width: 0;
  gap: 24px;
  display: flex;
  flex-direction: column;
  direction: ltr;
  min-height: 136px;
  .phone, .email {
    &:hover {
      text-decoration: underline;
      text-underline-offset: 4px;
    }
  }
}
.contact-us__body__card-orange {
  background-color: var(--color-accent);
  color: var(--color-gray-50);
}
.contact-us__body__card-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.contact-us__body__card-image__one {
  background-image: url('/assets/images/main/countactus/garden.jpg');
  display: none;
}
.contact-us__body__card-image__two {
  background-image: url('/assets/images/main/countactus/baby.jpg');
}

@media (min-width: 480px) {
  .contact-us {
    gap: 44px;
  }

  .contact-us__body {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-us__body__card {
    min-height: 200px;
  }

  .contact-us__body__card-image__two {
    order: 1;
  }
}

@media (min-width: 768px) {
  .contact-us {
    gap: 52px;
  }

  .contact-us__body__card {
    gap: 32px;
    min-height: 228px;
  }
}

@media (min-width: 1024px) {
  .contact-us__body {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-us__body__card {
    min-height: 256px;
  }

  .contact-us__body__card-image__one {
    display: flex;
  }
  .contact-us__body__card-bordered__working-hours {
    order: 2;
  }
}

@media (min-width: 1280px) {
  .contact-us {
    gap: 60px;
  }
  .contact-us__body__card {
    gap: 40px;
  }
}

@media (min-width: 1920px) {
  .contact-us__body__card {
    gap: 45px;
  }

  .contact-us__body__card {
    min-height: 312px;
  }
}


/* ===== assets\css\components\content.css ===== */
.content {
  color: var(--color-primary);
  div,
  p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    letter-spacing: -0%;
  }
}

.content__block {
  gap: 20px;
}

.content__body,
.content__body-reverse {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.content__body__image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  max-width: 100%;
}

.content__body__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 480px) {
  .content__block {
    gap: 24px;
  }
  .content {
    div,
    p {
      font-size: 14px;
    }
  }
}
@media (min-width: 768px) {
  .content__block {
    gap: 32px;
  }
  .content {
    div,
    p {
      font-size: 16px;
    }
  }
}
@media (min-width: 1024px) {
  .content__body,
  .content__body-reverse {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}
@media (min-width: 1280px) {
  .content__body {
    grid-template-columns: 3fr 2fr;
  }
  .content__body-reverse {
    grid-template-columns: 2fr 3fr;
  }
  .content__block {
    gap: 40px;
  }
  .content {
    div,
    p {
      font-size: 18px;
    }
  }
}
@media (min-width: 1440px) {
  .content__title {
    max-width: 800px;
  }
}
@media (min-width: 1920px) {
  .content {
    div,
    p {
      font-size: 24px;
    }
  }
}


/* ===== assets\css\components\dots.css ===== */
.dots {
  gap: 8px;
}

.dots__square {
  width: 10px;
  height: 10px;
}
@media (min-width: 768px) {
  .dots__square {
    width: 12px;
    height: 12px;
  }
}


/* ===== assets\css\components\form-contact.css ===== */
.form-contact {
  gap: 32px;
  margin: auto;
}
.form-contact__phone {
  &:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
  }
}
.form-contact__title-narrow {
  /* max-width: 1000px; */
  width: 100%;
}
.form-contact__body {
  grid-template-columns: 1fr;
  width: 100%;
}
.form-contact__head {
  /* max-width: 1000px; */
}
.form-contact__head__contacts {
  gap: 24px;
}
.form-contact__head__address {
  font-size: 14px;

  font-family: 'Inter', sans-serif;
}

.form-contact__head__image {
  min-height: 216px;
  width: 100%;
  background-image: url('/assets/images/product/formcontact.jpg');
  background-size: cover;
  background-position: center 20%;
}
.form-contact__footer {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  box-sizing: border-box;
  max-width: none;
}
.form-contact__footer__address {
  grid-column: span 2;
}
.form-contact__footer__email {
  text-align: end;
}
@media (min-width: 480px) {
  .form-contact {
    gap: 44px;
  }
}

@media (min-width: 768px) {
  .form-contact {
    gap: 52px;
  }

  .form-contact__body {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .form-contact__head {
    align-items: stretch;
    grid-template-columns: repeat(2, 1fr);
  }

  .form-contact__head__contacts {
    gap: 32px;
  }

  .form-contact__head__address {
    font-size: 16px;
  }

  .form-contact__body__textarea-wrapper {
    grid-column: span 2;
  }
  .form-contact__submit-button,
  .form-contact__chackbox-wrapper {
    grid-column: span 2;
  }

  .form-contact__footer {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .form-contact__footer__address {
    grid-column: span 1;
  }
  .form-contact__footer__phone {
    text-align: center;
  }
}

@media (min-width: 1280px) {
  .form-contact {
    gap: 60px;
  }

  /* .form-contact__body,
  .form-contact__title,
  .form-contact__head,
  .form-contact__footer {
    padding-left: 100px;
    padding-right: 100px;
  } */

  .form-contact__head__address {
    font-size: 18px;
  }
}
/* @media (min-width: 1440px) {
  .form-contact__body,
  .form-contact__title,
  .form-contact__head,
  .form-contact__footer {
    padding-left: 112px;
    padding-left: 112px;
  }
}
@media (min-width: 1920px) {
  .form-contact__head {
    padding-left: 258px;
    padding-right: 258px;
  }
} */


/* ===== assets\css\components\header-menu.css ===== */
.header-menu {
  display: none;
  box-sizing: border-box;
  width: 100%;
  background-color: var(--color-gray-50);
  position: absolute;
  top: 100%;
  left: 0;
  padding-bottom: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--color-gray-400);
}
.header-menu__content {
  width: 100%;
  padding: 0 100px;
  gap: 40px 20px;
}
.quick-product-search {
  width: 295;
  height: 49;
  justify-content: space-between;
  align-items: center;
  opacity: 1;
  padding-right: 20px;
  padding-left: 20px;
  border: 1px solid var(--color-gray-400);
  input {
    flex: 1;
  }
  svg {
    stroke: var(--color-gray-400);
    width: 16px;
    height: 16px;
  }
}
.search-input {
  border: none !important;
  padding: 0;
  width: 100%;
}
.header-menu__content__col {
  gap: 20px;
  font-size: 14px;
  .header-menu__content__col__title {
    text-transform: uppercase;
  }
  .header-menu__content__col__body {
    gap: 12px;
    a {
      text-decoration: none;
      color: var(--color-primary);
      &:hover {
        text-decoration: underline;
      }
    }
  }
}
@media (min-width: 1024px) {
  .header-menu {
    display: flex;
  }
}
@media (min-width: 1280px) {
  .header-menu {
    padding-bottom: 40px;
    padding-top: 40px;
  }
}
@media (min-width: 1440px) {
  .header-menu__content__col {
    font-size: 16px;
    .header-menu__content__col__body {
      gap: 18px;
    }
  }
}
@media (min-width: 1920px) {
  .header-menu__content__col {
    font-size: 18px;
    .header-menu__content__col__body {
      gap: 20px;
    }
  }
}


/* ===== assets\css\components\hero.css ===== */
.hero-section__body {
  gap: 24px;
}

.hero-section__image-wrapper {
  height: 340px;
  background-size: cover;
  background-position: center;
}

.hero-section__image-wrapper__main {
  background-image: url('/assets/images/main/hero.jpg');
}
.hero-section__image-wrapper__about {
  background-image: url('/assets/images/main/hero.jpg');
}
.hero-section__image-wrapper__blog {
  background-image: url('/assets/images/blogpost/hero.png');
}
.hero-section__image-wrapper__bezopasnost {
  background-image: url('/assets/images/bezopasnost/hero.jpg');
}
.hero-section__image-wrapper__safety {
  background-image: url('/assets/images/safety/hero.jpg');
  background-position: center 10%;
}

.hero-section__button {
  display: hidden;
}
.hero-section__h1-perwrapper {
  transform: translateY(-50%);
}
.hero-section__h1-wrapper {
  background-color: var(--color-primary);
  padding: 10px 20px;
  width: fit-content;
}

@media (min-width: 768px) {
  .hero-section__button {
    display: flex;
  }

  .hero-section__h1-wrapper {
    padding: 20px 32px;
  }

  .hero-section__body {
    gap: 32px;
  }
  .hero-section__description {
    max-width: 500px;
  }
}

@media (min-width: 1280px) {
  .hero-section__image-wrapper {
    height: 410px;
  }

  .hero-section__h1-wrapper {
    padding: 20px 40px;
  }

  .hero-section__body {
    gap: 40px;
  }
}
@media (min-width: 1440px) {
  .hero-section__image-wrapper {
    height: 462px;
  }

  .hero-section__description {
    max-width: 600px;
  }
}
@media (min-width: 1920px) {
  .hero-section__image-wrapper {
    height: 616px;
  }

  .hero-section__h1-wrapper {
    padding: 40px 80px;
  }

  .hero-section__description {
    max-width: 800px;
  }
}


/* ===== assets\css\components\highlights.css ===== */
.highlights__head {
  gap: 24px;
}

.highlights__body__card {
  min-width: 0;
  gap: 24px;
  display: flex;
  flex-direction: column;
}

.highlights__body__card__image-wrapper {
  display: flex;
  justify-content: center;
  background-color: var(--color-gray-50);
  height: 200px;
}
.highlights__body__card__image-wrapper img {
  min-width: 100%;
  object-fit: cover;
}
@media (min-width: 480px) {
  .highlights__body {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .highlights__body__card__image-wrapper {
    height: 220px;
  }
}

@media (min-width: 768px) {
  .highlights__head {
    gap: 32px;
  }

  .highlights__head__description {
    max-width: 500px;
  }

  .highlights__body__card {
    gap: 32px;
  }

  .highlights__body__card__image-wrapper {
    height: 250px;
  }
}

@media (min-width: 1024px) {
  .highlights__body {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .highlights__body__card__image-wrapper {
    aspect-ratio: 13 / 10;
  }
}
@media (min-width: 1280px) {
  .highlights__head {
    gap: 40px;
  }

  .highlights__body__card {
    gap: 40px;
  }
}
@media (min-width: 1440px) {
  .highlights__head__description {
    max-width: 600px;
  }
}
@media (min-width: 1920px) {
  .highlights__head__description {
    max-width: 800px;
  }
  .highlights__body__card {
    gap: 45px;
  }
}


/* ===== assets\css\components\latest-product-news.css ===== */
.latest-product-news {
  gap: 32px;
}

.latest-product-news__head {
  gap: 24px;
}

.latest-product-news__body {
  gap: 20px;
}

.latest-product-news__body__card {
  min-width: 0;
  gap: 24px;
  display: flex;
  flex-direction: column;
  grid-template-columns: repeat(1, minmax(0, 100%));
  background-color: var(--color-gray-100);
}

.latest-product-news__body__card__image-wrapper {
  display: flex;
  justify-content: center;
  background-color: var(--color-gray-50);
  aspect-ratio: 3/2;
  overflow: hidden;
}
.latest-product-news__body__card__image-wrapper img {
  min-width: 100%;
  object-fit: cover;
}

@media (min-width: 480px) {
  .latest-product-news {
    gap: 44px;
  }

  .latest-product-news__body {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .latest-product-news {
    gap: 52px;
  }
  .latest-product-news__head {
    gap: 32px;
  }
  .latest-product-news__description {
    max-width: 500px;
  }

  .latest-product-news__body__card {
    gap: 32px;
  }
}

@media (min-width: 1024px) {
  .latest-product-news__body {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .latest-product-news {
    gap: 60px;
  }
  .latest-product-news__head {
    gap: 40px;
  }

  .latest-product-news__body__card {
    gap: 40px;
  }
}
@media (min-width: 1920px) {
  .latest-product-news__body {
    row-gap: 60px;
    column-gap: 20px;
  }
  .latest-product-news__body__card {
    gap: 45px;
  }
}


/* ===== assets\css\components\pagination.css ===== */
.pagination__pages,
.pagination__arrows {
  gap: 10px;
  white-space: nowrap;
}

.pagination__pages__page {
  color: var(--color-primary);
  background-color: var(--color-gray-50);
  display: none;
  border: 1px solid var(--color-gray-500);
  cursor: pointer;
}

.pagination__pages__page-selected {
  background-color: var(--color-primary);
  color: var(--color-gray-50);
  display: none;
  cursor: pointer;
}

.pagination__arrows__arrow {
  color: var(--color-primary);
  display: none;
  border: 1px solid var(--color-gray-500);
  cursor: pointer;
}

.pagination__arrows__arrow-disabled {
  color: var(--color-gray-500);
  display: none;
  border: 1px solid var(--color-gray-500);
}

@media (min-width: 768px) {
  .pagination__pages__page,
  .pagination__pages__page-selected,
  .pagination__arrows__arrow,
  .pagination__arrows__arrow-disabled {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    width: 32px;
    box-sizing: border-box;
  }
}
@media (min-width: 1280px) {
  .pagination__pages__page,
  .pagination__pages__page-selected,
  .pagination__arrows__arrow,
  .pagination__arrows__arrow-disabled {
    height: 42px;
    width: 42px;
  }
}


/* ===== assets\css\components\partners.css ===== */
.partners__head {
  gap: 24px;
}

.partners {
  gap: 32px;
  background-color: var(--color-gray-100);
}
.partners__body {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  direction: rtl;
}
.partners__body__card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-shrink: 1;
}

.partners__body__card__image-wrapper {
  display: flex;
  justify-content: center;
  padding: 20px 40px;
  background-color: var(--color-gray-50);
}
.partners__body__card__image-wrapper img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 480px) {
  .partners {
    gap: 44px;
  }
}

@media (min-width: 768px) {
  .partners__head {
    gap: 32px;
  }

  .partners__head__description {
    max-width: 500px;
  }

  .partners {
    gap: 52px;
  }

  .partners__body {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .partners__head {
    gap: 40px;
  }

  .partners {
    gap: 60px;
  }
}
@media (min-width: 1440px) {
  .partners__head__description {
    max-width: 600px;
  }
}
@media (min-width: 1920px) {
  .partners__head__description {
    max-width: 800px;
  }
  .partners__body {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}


/* ===== assets\css\components\popular-products.css ===== */
.popular-products__carousel {
  gap: 24px;
}

.popular-products__list {
  gap: 20px;
  display: grid;
}

.popular-products__card {
  min-width: 0;
  gap: 20px;
  display: flex;
  flex-direction: column;
  background-color: var(--color-gray-50);
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.popular-products__card__image-wrapper {
  display: flex;
  justify-content: center;
  background-color: var(--color-gray-50);
}
.popular-products__card__image-wrapper img {
  min-width: 100%;
}

.product-480,
.product-768,
.product-1280 {
  display: none;
}

@media (min-width: 480px) {
  .popular-products__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .products-amount {
    grid-column: span 2;
  }

  .product-480 {
    display: flex;
  }
}
@media (min-width: 768px) {
  .popular-products__carousel {
    gap: 32px;
  }
  .popular-products__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .product-768 {
    display: flex;
  }
}
@media (min-width: 1024px) {
}
@media (min-width: 1280px) {
  .popular-products__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .products-amount {
    grid-column: span 3;
  }

  .product-1280 {
    display: flex;
  }
  .popular-products__carousel {
    gap: 40px;
  }
}
@media (min-width: 1440px) {
}
@media (min-width: 1920px) {
}


/* ===== assets\css\components\product-list.css ===== */
.products,
.products-4 {
  gap: 20px;
  display: grid;
}

.products__card {
  min-width: 0;
  gap: 24px;
  display: flex;
  flex-direction: column;
  background-color: var(--color-gray-50);
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.products__card__image-wrapper {
  display: flex;
  justify-content: center;
  background-color: var(--color-gray-50);
}
.products__card__image-wrapper__3-4 {
  aspect-ratio: 3/4;
  display: flex;
  justify-content: center;
}
.products__card__image-wrapper img,
.products__card__image-wrapper__3-4 img {
  min-width: 100%;
  object-fit: cover;
}

@media (min-width: 480px) {
  .products,
  .products-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 768px) {
  .products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .products-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (min-width: 1280px) {
  .products__card {
    gap: 40px;
  }
}
@media (min-width: 1440px) {
}
@media (min-width: 1920px) {
  .products__card {
    gap: 45px;
  }
}


/* ===== assets\css\components\product-main.css ===== */
.product-main__head {
  gap: 10px;
}

.product-main__image-wrapper {
  display: flex;
  justify-content: center;
}
.product-main__image-wrapper img {
  min-width: 100%;
  max-width: 100%;
}

.product-main__dots {
  display: flex;
  justify-content: center;
}
.product-main__thumbnails {
  display: none;
}
.product-main__thumbnails__thumbnail {
  display: flex;
  justify-content: center;
}
.product-main__thumbnails__thumbnail img {
  min-width: 100%;
  max-width: 100%;
  background-size: cover;
}
.product-main__thumbnails__thumbnail-default {
  border: 1px solid var(--color-gray-300);
}
.product-main__thumbnails__thumbnail-active {
  border: 1px solid var(--color-primary);
}
.product-main__thumbnails__arrow {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-primary);
  background-color: var(--color-gray-100);
  cursor: pointer;
  height: 36px;
  width: 36px;
}

@media (min-width: 480px) {
}
@media (min-width: 768px) {
  .product-main__dots {
    display: none;
  }
  .product-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto 1fr auto;
  }
  .product-main__image {
    grid-row: span 2;
  }

  .product-main__thumbnails {
    display: flex;
  }
  .product-main__thumbnails__thumbnail {
    width: 36px;
    height: 36px;
  }
}
@media (min-width: 1024px) {
  .product-main__thumbnails__thumbnail {
    width: 64px;
    height: 64px;
  }
}
@media (min-width: 1280px) {
  .product-main__thumbnails__thumbnail {
    width: 88px;
    height: 88px;
  }
}
@media (min-width: 1440px) {
  .product-main__thumbnails__thumbnail {
    width: 100px;
    height: 100px;
  }
}
@media (min-width: 1920px) {
  .product-main__thumbnails__thumbnail {
    width: 120px;
    height: 120px;
  }
}


/* ===== assets\css\components\product360view.css ===== */
.product360view__wrapper {
  gap: 44px;
  width: 1024px;
  max-width: 100%;
}
.corner-frame {
  aspect-ratio: 4/3;
  position: relative;
  padding: 24px;
  background:
    /* top left */
    linear-gradient(var(--color-primary), var(--color-primary)) left top,
    linear-gradient(var(--color-primary), var(--color-primary)) left top,
    /* top right */ linear-gradient(var(--color-primary), var(--color-primary))
      right top,
    linear-gradient(var(--color-primary), var(--color-primary)) right top,
    /* bottom left */
    linear-gradient(var(--color-primary), var(--color-primary)) left bottom,
    linear-gradient(var(--color-primary), var(--color-primary)) left bottom,
    /* bottom right */
    linear-gradient(var(--color-primary), var(--color-primary)) right bottom,
    linear-gradient(var(--color-primary), var(--color-primary)) right bottom;

  background-size:
    60px 2px,
    2px 60px,
    60px 2px,
    2px 60px,
    60px 2px,
    2px 60px,
    60px 2px,
    2px 60px;

  background-repeat: no-repeat;
}

.corner-frame img {
  min-width: 100%;
  max-width: 100%;
  object-fit: cover;
  height: auto;
  display: block;
}

.overlay-360 {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.overlay-360__wrapper {
  background-color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 40px;
}
.overlay-360__wrapper svg {
  width: 40px;
  height: 27px;
}

@media (min-width: 480px) {
}
@media (min-width: 768px) {
  .product360view__wrapper {
    gap: 52px;
  }
  .corner-frame {
    background-size:
      92px 2px,
      2px 92px,
      92px 2px,
      2px 92px,
      92px 2px,
      2px 92px,
      92px 2px,
      2px 92px;
  }
  .overlay-360__wrapper {
    width: 132px;
    height: 82px;
  }
  .overlay-360__wrapper svg {
    width: 92px;
    height: 62px;
  }
}
@media (min-width: 1024px) {
}
@media (min-width: 1280px) {
  .product360view__wrapper {
    gap: 60px;
  }
}
@media (min-width: 1440px) {
}
@media (min-width: 1920px) {
}


/* ===== assets\css\components\ready.css ===== */
.ready__wrapper {
  position: relative;
}
.ready__content {
  position: relative;
  z-index: 1;
}

.ready__content__primary-bg {
  background-color: var(--color-primary);
  padding: 40px 20px;
  gap: 24px;
}

.ready-bg {
  background-image: url('/assets/images/main/ready/background_firemen.jpg');
  position: absolute;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: 260px;
}

@media (min-width: 480px) {
  .ready__content__primary-bg {
    padding: 50px 24px;
    max-width: 346px;
  }
}

@media (min-width: 768px) {
  .ready-bg {
    height: 270px;
  }

  .ready__content {
    padding: 0 5px;
  }

  .ready__content__primary-bg {
    padding: 50px 32px;
    gap: 32px;
    max-width: 404px;
  }
}

@media (min-width: 1024px) {
  .ready-bg {
    height: 360px;
  }

  .ready__content {
    padding: 0 20px;
  }

  .ready__content__primary-bg {
    padding: 100px 32px;
    max-width: 448px;
  }
}

@media (min-width: 1280px) {
  .ready__content__primary-bg {
    padding: 120px 40px;
    gap: 40px;
    max-width: 672px;
  }
}
@media (min-width: 1440px) {
  .ready-bg {
    height: 400px;
  }

  .ready__content {
    padding: 0 40px;
  }
  .ready__content__primary-bg {
    padding: 150px 40px;
    max-width: 672px;
  }
}
@media (min-width: 1920px) {
  .ready-bg {
    height: 534px;
  }
  .ready__content__primary-bg {
    padding: 200px 80px;
    max-width: 680px;
  }
}


/* ===== assets\css\components\search.css ===== */
.search-button {
  position: relative;
  padding: 16px;
  box-sizing: border-box;
}
.search-input {
  border: none;
  padding: 0;
  width: 100%;
}

.search-wrapper {
  height: 44px !important;
  width: 100% !important;
  height: 100%;
  border: 1px solid var(--color-gray-400);
  input {
    flex: 1;
  }
  svg {
    stroke: var(--color-primary);
    width: 16px;
    height: 16px;
  }
}
.search-button__search-opened {
  display: none !important;
  max-width: 362px;
}
.search-header {
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  box-shadow: 0px 2px 2px 0px #00000040;
  display: flex;
  flex-direction: column;
  font-size: 12px;
  .search-header__item {
    padding: 16px;
    &:hover {
      background-color: var(--color-gray-200);
    }
  }
}
.search-header-adaptation {
  background-color: var(--color-gray-50);
  position: absolute;
  top: 100%;
  left: 0;
  border: 1px solid var(--color-gray-400);
  box-sizing: border-box;
  width: 100%;
  padding-top: 24px;
  padding-bottom: 24px;
  min-height: 100vh;
}

.cart-link__search-opened {
  display: none !important;
}

@media (min-width: 480px) {
}
@media (min-width: 768px) {
}
@media (min-width: 1024px) {
  .cart-link__search-opened {
    display: flex !important;
  }
  .search-button__search-opened {
    display: flex !important;
  }
  .search-header-adaptation {
    display: none;
  }
}
@media (min-width: 1280px) {
}
@media (min-width: 1440px) {
}
@media (min-width: 1920px) {
  .search-header {
    font-size: 16px;
  }
}


/* ===== assets\css\components\solutions.css ===== */
.solutions__head {
  gap: 24px;
}

.solutions {
  gap: 32px;
}

.solutions__body {
  grid-template-columns: repeat(1, minmax(0, 100%));
}

.solutions__body__card {
  min-width: 0;
  gap: 24px;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 100%));
}

.solutions__body__card__blue {
  background-color: var(--color-primary);
  color: var(--color-gray-50);
}
.solutions__body__card__white {
  background-color: var(--color-gray-50);
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}
.solutions__body__card__image-wrapper {
  display: flex;
  justify-content: center;
  background-color: var(--color-gray-50);
}
.solutions__body__card__image-wrapper img {
  min-width: 100%;
}

@media (min-width: 480px) {
  .solutions {
    gap: 44px;
  }

  .solutions__body {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solutions__body__card {
    grid-template-rows:
      minmax(2.5rem, auto)
      minmax(4.5rem, auto)
      minmax(0, auto)
      minmax(0, auto);
  }
}

@media (min-width: 768px) {
  .solutions__head {
    gap: 32px;
  }

  .solutions__head__description {
    max-width: 500px;
  }

  .solutions__head__description-wide {
    max-width: 1000px;
  }

  .solutions {
    gap: 52px;
  }

  .solutions__body__card {
    gap: 32px;

    grid-template-rows:
      minmax(4rem, auto)
      minmax(4rem, auto)
      minmax(0, auto)
      minmax(0, auto);
  }
}

@media (min-width: 1024px) {
  .solutions__body {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .solutions__head {
    gap: 40px;
  }

  .solutions {
    gap: 60px;
  }

  .solutions__body__card {
    gap: 40px;
  }
}
@media (min-width: 1920px) {
  .solutions__body__card {
    gap: 45px;
  }
}


/* ===== assets\css\components\spec-short.css ===== */
.spec-short {
  gap: 12px;
}

.spec-short__card {
  min-width: 0;
  gap: 24px;
  display: flex;
  flex-direction: column;
  grid-template-columns: repeat(1, minmax(0, 100%));
  background-color: var(--color-gray-100);
}

@media (min-width: 480px) {
  .spec-short__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 768px) {
  .spec-short {
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  .spec-short__cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}


/* ===== assets\css\components\specifications.css ===== */
.specification {
  gap: 24px;
}

.specification__body {
  gap: 20px;
  grid-template-columns: 180px auto;
  grid-template-rows: auto 1px;
}
.specification__body__separator {
  background-color: var(--color-gray-300);
  grid-column: span 2;
  height: 1px;
  width: 100%;
}

.specification__downloads {
  grid-template-columns: 1fr auto;
}

.specification__downloads__first,
.specification__downloads__last,
.specification__downloads__second {
  padding: 10px 16px 10px 0;
}

.specification__downloads__blue {
  grid-column: span 2;
  background-color: var(--color-primary-light);
  gap: 10px;
  padding: 10px;
}

.specification__downloads__white {
  grid-column: span 2;
  gap: 10px;
  padding: 10px;
}
.specification__downloads__arrow {
  padding: 10px;
}
@media (min-width: 480px) {
  .specification__body {
    grid-template-columns: 280px auto;
  }

  .specification__downloads__first,
  .specification__downloads__last,
  .specification__downloads__second {
    padding: 12px;
  }

  .specification__downloads__blue,
  .specification__downloads__white {
    padding: 12px 22px;
  }
  .specification__downloads__arrow {
    padding: 16px;
  }
}
@media (min-width: 768px) {
  .specification {
    gap: 32px;
  }
  .specification__body {
    grid-template-columns: 304px auto;
  }
  .specification__downloads__first,
  .specification__downloads__last,
  .specification__downloads__second,
  .specification__downloads__arrow {
    padding: 20px;
  }

  .specification__downloads__blue,
  .specification__downloads__white {
    padding: 20px 40px;
  }
}
@media (min-width: 1024px) {
}
@media (min-width: 1280px) {
  .specification {
    gap: 40px;
  }
}
@media (min-width: 1440px) {
}
@media (min-width: 1920px) {
}


/* ===== assets\css\components\subcategories.css ===== */
.subcategories {
  gap: 0 20px;
  display: grid;
  grid-template-rows: repeat(1, minmax(0, 1fr));
  grid-auto-rows: 0;
  overflow: hidden;
}
.subcategories__card {
  min-width: 0;
  gap: 20px;
  display: flex;
  flex-direction: column;
  background-color: var(--color-gray-50);
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  margin-bottom: 20px;
}
.subcategories__card__image-wrapper {
  display: flex;
  justify-content: center;
  background-color: var(--color-gray-50);
}
.subcategories__card__image-wrapper img {
  min-width: 100%;
}
@media (min-width: 480px) {
  .subcategories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 768px) {
  .subcategories {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .subcategories {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (min-width: 1280px) {
}
@media (min-width: 1440px) {
}
@media (min-width: 1920px) {
  .subcategories {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}


/* ===== assets\css\components\tabs.css ===== */
.tabs {
  /* width: 100%; */
  max-width: 100vw;
  overflow-y: auto;
  margin: 32px 0;
}

.tab {
  padding: 20px 10px 20px 20px;
  white-space: nowrap;
}
.tab-first {
  white-space: nowrap;
  padding: 20px 10px 20px 0px;
}
.tab-default {
  border-bottom: 1px solid var(--color-gray-300);
  cursor: pointer;
  color: var(--color-gray-300);
  transition: 0.3s;
  &:hover {
    border-bottom: 2px solid var(--color-gray-400);
    color: var(--color-gray-400);
  }
}

.tab-active {
  border-bottom: 2px solid var(--color-accent);
  color: var(--color-primary);
}

.tab-empty {
  border-bottom: 1px solid var(--color-gray-300);
  flex-grow: 1;
}
@media (min-width: 480px) {
  .tab {
    padding: 20px 20px 20px 20px;
  }
  .tab-first {
    padding: 20px 20px 20px 0px;
  }
}
@media (min-width: 768px) {
}
@media (min-width: 1024px) {
}
@media (min-width: 1280px) {
  .tabs {
    margin: 40px 0;
  }
}
@media (min-width: 1440px) {
}
@media (min-width: 1920px) {
}


/* ===== assets\css\components\video.css ===== */
.video-wrapper {
  aspect-ratio: 16 / 9;
  width: 100%;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}


/* ===== assets\css\coockies.css ===== */
.coockies {
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #11111155;
  display: flex;
  justify-content: end;
  align-items: end;
  z-index: 999;
  max-width: 100%;
}
.coockies__banner {
  background-color: var(--color-gray-50);
  padding: 20px;
  gap: 20px;
  max-width: 280px;
}
@media (min-width: 480px) {
  .coockies__banner {
    max-width: 290px;
  }
}
@media (min-width: 768px) {
}
@media (min-width: 1024px) {
}
@media (min-width: 1280px) {
  .coockies__banner {
    max-width: 400px;
  }
}
@media (min-width: 1440px) {
}
@media (min-width: 1920px) {
  .coockies__banner {
    max-width: 500px;
  }
}


/* ===== assets\css\flexes.css ===== */
.flex-col {
  display: flex;
  flex-direction: column;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-end {
  justify-content: flex-end;
}

.gap-2 {
  gap: 8px;
}
.gap-3 {
  gap: 12px;
}
.gap-4 {
  gap: 16px;
}
.gap-5 {
  gap: 20px;
}
.gap-6 {
  gap: 24px;
}

.grow {
  flex-grow: 1;
}

.w-full {
  width: 100%;
}

hr {
  height: 1px;
  width: 100%;
  border: none;
  margin: 0px;
}

.paddings-x {
  padding-left: 20px;
  padding-right: 20px;
}

.paddings-y {
  padding-top: 80px;
  padding-bottom: 80px;
}
.paddings-top {
  padding-top: 80px;
}
.paddings-bottom {
  padding-bottom: 80px;
}

.paddings-y-half {
  padding-top: 40px;
  padding-bottom: 40px;
}
.paddings-top-half {
  padding-top: 40px;
}
.paddings-bottom-half {
  padding-bottom: 40px;
}

@media (min-width: 480px) {
}

@media (min-width: 768px) {
  .paddings-x {
    padding-left: 40px;
    padding-right: 40px;
  }
  .paddings-y {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .paddings-top {
    padding-top: 100px;
  }
  .paddings-bottom {
    padding-bottom: 100px;
  }
  .paddings-y-half {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .paddings-top-half {
    padding-top: 50px;
  }
  .paddings-bottom-half {
    padding-bottom: 50px;
  }
}

@media (min-width: 1280px) {
  .paddings-x {
    padding-left: 60px;
    padding-right: 60px;
  }
  .paddings-y {
    padding-top: 150px;
    padding-bottom: 150px;
  }
  .paddings-top {
    padding-top: 150px;
  }
  .paddings-bottom {
    padding-bottom: 150px;
  }
  .paddings-y-half {
    padding-top: 75px;
    padding-bottom: 75px;
  }
  .paddings-top-half {
    padding-top: 75px;
  }
  .paddings-bottom-half {
    padding-bottom: 75px;
  }
}

@media (min-width: 1920px) {
  .paddings-x {
    padding-left: 200px;
    padding-right: 200px;
  }
}


/* ===== assets\css\fonts.css ===== */
@font-face {
    font-family: 'Oswald';
    src: url('../fonts/Oswald-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900; 
    font-style: normal;
    font-display: swap; 
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 100 900;  
    font-style: normal;    
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Italic-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 100 900; 
    font-style: italic;   
    font-display: swap;
}


/* ===== assets\css\footer.css ===== */
footer {
  padding: 50px 20px;
  grid-template-columns: repeat(2, 1fr);
  font-family: 'Inter', sans-serif;
  color: var(--color-gray-50);
}

.footer-col {
  grid-column: span 2;
  gap: 40px;
  display: flex;
  flex-direction: column;
}

.accordion {
  display: flex;
  a {
    &:hover {
      text-decoration: underline;
      text-underline-offset: 4px;
    }
  }
}

.pages-col {
  display: none;
  .pages-list {
    a {
      &:hover {
        text-decoration: underline;
        text-underline-offset: 4px;
      }
    }
  }
}

.footer-phone {
  &:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
  }
}

.logo-footer {
  width: 146px;
  height: 32px;
}

.logo-prewrapper {
  gap: 24px;
  display: flex;
  flex-direction: column;
}

.logo-wrapper {
  gap: 24px;
}

.logo-description {
  font-size: 16px;
}

.contacts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.links,
.year {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

@media (min-width: 480px) {
  .logo-prewrapper {
    flex-direction: row;
    align-items: end;
    gap: 30px;
  }
}
@media (min-width: 768px) {
  footer {
    padding: 50px 40px;
  }
  .contacts {
    flex-direction: row;
    gap: 40px;
  }
  .links,
  .year {
    grid-column: span 1;
    flex-direction: row;
    gap: 20px;
    margin-top: 24px;
  }
}
@media (min-width: 1024px) {
  footer {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-col {
    grid-column: span 1;
  }

  .accordion {
    display: none;
  }

  .pages-col {
    display: flex;
    flex-direction: column;
  }

  .logo-footer {
    width: 218px;
    height: 48px;
  }
  .logo-prewrapper {
    flex-direction: column;
    align-items: start;
    gap: 40px;
  }
  .logo-description {
    font-size: 24px;
  }
  .contacts {
    flex-direction: column;
    gap: 20px;
  }
  .year,
  .links {
    grid-column: span 2;
    margin-top: 32px;
  }
}

@media (min-width: 1280px) {
  footer {
    padding: 75px 60px;
  }
  .links {
    justify-content: end;
  }
  .year,
  .links {
    margin-top: 130px;
  }
}
@media (min-width: 1920px) {
  footer {
    padding: 75px 200px;
  }
}


/* ===== assets\css\grid.css ===== */
.grid {
  display: grid;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.col-span-2 {
  grid-column: span 2 / span 2;
}

.justify-items-end {
  justify-items: end;
}

.justify-content-end {
  justify-content: end;
}


/* ===== assets\css\header.css ===== */

body {
  padding-top: 78px;
}

header {
  position: fixed;
  box-sizing: border-box;
  top: 0;
  left: 0;
  width: 100%;
  height: 78px;
  padding: 0 20px;
  background: rgba(254, 254, 254, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);

  z-index: 1000;
}

.link {
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  font-weight: 500; /* Medium */
  font-size: 14px;
  text-decoration: none;
  color: var(--color-primary);
  &:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
  }
}

.icon-wrapper {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}

.icon-search {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
}

.nav,
.contactus-btn {
  display: none !important;
}

@media (min-width: 480px) {
  body {
    padding-top: 90px;
  }

  header {
    height: 90px;
  }
}
@media (min-width: 768px) {
  header {
    padding: 0 40px;
  }
}
@media (min-width: 1024px) {
  .icon-wrapper {
    width: 40px;
    height: 40px;
  }
  .icon-search {
    width: 16px;
    height: 16px;
  }
  .nav,
  .contactus-btn {
    display: flex !important;
  }
  .burger-wrapper,
  .burger-cross-wrapper,
  .search-cross-wrapper {
    display: none;
  }
}

@media (min-width: 1280px) {
  body {
    padding-top: 104px;
  }

  header {
    height: 104px;
    padding: 0 60px;
  }
  .icon-wrapper {
    width: 48px;
    height: 48px;
  }
}
@media (min-width: 1920px) {
  body {
    padding-top: 128px;
  }

  header {
    height: 128px;
    padding: 0px 200px;
  }
}


/* ===== assets\css\inputs.css ===== */
.input-with-label {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input {
  height: 36px;
  display: flex;
  align-items: center;
}

input:focus {
  outline: none;
}

input,
textarea {
  font-family: 'Inter', sans-serif;
  padding-left: 10px;
  padding-right: 10px;
  border: none;
  border-bottom: 1px solid var(--color-primary);
  outline: none;
  font-size: 12px;
  box-sizing: border-box;
  &:hover, &:focus {
    border: 1px solid var(--color-primary);
  }
}

textarea {
  padding-top: 10px;
  padding-bottom: 10px;
  resize: vertical;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-height: 105px;
}

.dropdown {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: 'Inter', sans-serif;
}

.dropdown__arrow {
  position: absolute;
  bottom: 0;
  right: 10px;
  transform: translateY(-50%);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  width: 100%;
  background: var(--color-gray-50);
  border: 1px solid #ccc;
  display: none;
  box-sizing: border-box;
}

.dropdown:focus-within .dropdown-menu {
  display: block;
}

.dropdown:focus-within input {
  display: block;
  border: 1px solid #ccc;
}

.option {
  padding: 8px 10px;
  cursor: pointer;
  font-size: 12px;
  color: var(--color-gray-500);
}

.option:hover {
  background: var(--color-primary);
  color: var(--color-gray-50);
}

/* чекбокс */
.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  width: 0;
  height: 0;
}

.custom-checkbox .checkmark {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: var(--color-gray-50);
  border: 1px solid var(--color-primary);
  vertical-align: middle;
  margin-right: 8px;
  transition: all 0.2s;
  flex-shrink: 0;
}

.custom-checkbox input:checked + .checkmark::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 12px;
  border: solid var(--color-primary);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.custom-checkbox:hover .checkmark {
  background-color: var(--color-gray-100);
}

@media (min-width: 768px) {
  input,
  textarea {
    padding-left: 20px;
    padding-right: 20px;
  }
  .option {
    padding: 8px 20px;
  }

  .dropdown__arrow {
    right: 20px;
  }
}

@media (min-width: 1920px) {
  .option,
  input,
  textarea {
    font-size: 16px;
  }
}


/* ===== assets\css\style.css ===== */

body {
  margin: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
  background-color: var(--color-gray-50);
  font-family: 'Inter', sans-serif;
}

img {
  display: block;
}

.uppercase {
  text-transform: uppercase;
}

.no-decoration {
  text-decoration: none;
}

.text-left {
  text-align: left;
}

ul {
  margin: 0;
  padding: 0 0 0 20px;
}
li {
  margin: 0;
  padding: 0;
}

.section-gaps {
  gap: 32px;
}

.capitalize {
  text-transform: uppercase;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.hover-underline {
  &:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
  }
}

a {
  cursor: pointer;
}
.font-bold {
  font-weight: 700;
}
.font-semibold {
  font-weight: 600;
}
.font-medium {
  font-weight: 500;
}

.hidden {
  display: none !important;
}

@media (min-width: 480px) {
  .section-gaps {
    gap: 44px;
  }
}

@media (min-width: 768px) {
  .section-gaps {
    gap: 52px;
  }
}

@media (min-width: 1024px) {
}

@media (min-width: 1280px) {
  .section-gaps {
    gap: 60px;
  }
}
@media (min-width: 1920px) {
}


/* ===== assets\css\tooltip.css ===== */
.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 220px; /* ширина подсказки */
  background-color: #676e76; /* цвет фона */
  color: var(--color-gray-50); /* цвет текста */
  text-align: left;
  padding: 10px;
  position: absolute;
  z-index: 1;
  bottom: 125%; /* позиция над элементом */
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 12px;
}

.tooltip .tooltiptext::after {
  content: '';
  position: absolute;
  top: 100%; /* треугольник внизу подсказки */
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: #676e76 transparent transparent transparent; /* только верхний край окрашен */
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}


/* ===== assets\css\typography.css ===== */
/* ---------- H1 ---------- */
h1 {
  font-family: 'Oswald', sans-serif;
  font-weight: 400; /* Oswald variable, обычный вес */
  font-size: 20px;
  line-height: 120%;
  letter-spacing: 0;
  text-transform: uppercase;
  margin: 0;
}

/* ---------- H2 ---------- */
h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: 0;
  text-transform: uppercase;
  margin: 0;
}

/* ---------- H3 ---------- */
h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0;
  text-transform: uppercase;
  margin: 0;
}

/* ---------- H4 ---------- */
h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600; /* Semibold */
  font-size: 20px;
  line-height: 110%;
  letter-spacing: -0%;
  margin: 0;
}

/* ---------- H5 ---------- */
h5 {
  font-family: 'Inter', sans-serif;
  font-weight: 600; /* Semibold */
  font-size: 16px;
  line-height: 130%;
  letter-spacing: -0%;
  margin: 0;
}

/* ---------- SUBTITILE ---------- */
.subtitile {
  font-family: 'Inter', sans-serif;
  font-weight: 600; /* Semibold */
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0%;
  margin: 0;
}

/* ---------- Body основной ---------- */
.body-main {
  font-family: 'Inter', sans-serif;
  font-weight: 400; /* Regular */
  font-size: 14px;
  line-height: 130%;
  letter-spacing: -0%;
}

/* ---------- Body карточек ---------- */
.body-card {
  font-family: 'Inter', sans-serif;
  font-weight: 400; /* Regular */
  font-size: 14px;
  line-height: 130%;
  letter-spacing: -0%;
}

/* ---------- Caption ---------- */
.caption {
  font-family: 'Inter', sans-serif;
  font-weight: 400; /* Regular */
  font-size: 14px;
  line-height: 130%;
  letter-spacing: -0%;
}

/* ---------- Caption футера / навигации (Bold) ---------- */
.caption-bold {
  font-family: 'Inter', sans-serif;
  font-weight: 700; /* Bold */
  font-size: 14px;
  line-height: 130%;
  letter-spacing: -0%;
}

/* ---------- Caption мелкий ---------- */
.caption-small {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 130%;
  letter-spacing: -0%;
}

.caption-breadcrumbs {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  letter-spacing: -0%;
}

.section-wrapper {
  gap: 80px;
}

.accent-text {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
}

.card-padding {
  padding: 20px;
}

/* ---------- ADAPTATION FOR 480px ---------- */
@media (min-width: 480px) {
  h1 {
    font-size: 28px;
    line-height: 120%;
  }

  h2 {
    font-size: 28px;
    line-height: 120%;
  }

  h3 {
    font-size: 16px;
    line-height: 120%;
  }

  h4 {
    font-size: 20px;
    line-height: 110%;
  }

  h5 {
    font-size: 20px;
  }

  .subtitile {
    font-size: 24px;
  }

  .body-main {
    font-size: 14px;
    line-height: 130%;
  }

  .body-card {
    font-size: 14px;
    line-height: 130%;
  }

  .caption,
  .caption-bold {
    font-size: 14px;
    line-height: 130%;
  }

  .caption-small {
    font-size: 12px;
    line-height: 130%;
  }

  .section-wrapper {
    gap: 80px;
  }
}

/* ---------- ADAPTATION FOR 768px ---------- */
@media (min-width: 768px) {
  h1 {
    font-size: 36px;
    line-height: 120%;
  }

  h2 {
    font-size: 36px;
    line-height: 120%;
  }

  h3 {
    font-size: 28px;
    line-height: 120%;
  }

  h4 {
    font-size: 24px;
    line-height: 110%;
  }

  .subtitile {
    font-size: 32px;
  }

  .body-main {
    font-size: 16px;
    line-height: 130%;
  }

  .body-card {
    font-size: 14px;
    line-height: 130%;
  }

  .caption,
  .caption-bold {
    font-size: 14px;
    line-height: 130%;
  }

  .caption-small {
    font-size: 12px;
    line-height: 130%;
  }

  .section-wrapper {
    gap: 100px;
  }
}

/* ---------- ADAPTATION FOR 1280px ---------- */
@media (min-width: 1280px) {
  h1 {
    font-size: 56px;
    line-height: 120%;
  }

  h2 {
    font-size: 56px;
    line-height: 120%;
  }

  h3 {
    font-size: 28px;
    line-height: 120%;
  }

  h4 {
    font-size: 32px;
    line-height: 110%;
  }

  h5 {
    font-size: 24px;
  }

  .subtitile {
    font-size: 48px;
  }

  .body-main {
    font-size: 18px;
    line-height: 130%;
  }

  .body-card {
    font-size: 16px;
    line-height: 130%;
  }

  .caption,
  .caption-bold {
    font-size: 14px;
    line-height: 130%;
  }

  .caption-small {
    font-size: 12px;
    line-height: 130%;
  }

  .section-wrapper {
    gap: 150px;
  }

  .accent-text {
    font-size: 18px;
  }
}

/* ---------- ADAPTATION FOR 1920px ---------- */
@media (min-width: 1920px) {
  h1 {
    font-size: 64px;
    line-height: 120%;
  }

  h2 {
    font-size: 64px;
    line-height: 120%;
  }

  h3 {
    font-size: 36px;
    line-height: 120%;
  }

  h4 {
    font-size: 40px;
    line-height: 110%;
  }

  h5 {
    font-size: 32px;
  }

  .body-main {
    font-size: 24px;
    line-height: 130%;
  }

  .body-card {
    font-size: 20px;
    line-height: 130%;
  }

  .caption,
  .caption-bold {
    font-size: 18px;
    line-height: 130%;
  }

  .caption-small {
    font-size: 16px;
    line-height: 130%;
  }
  .card-padding {
    padding: 40px;
  }
  .section-wrapper {
    gap: 150px;
  }

  .accent-text {
    font-size: 24px;
  }
}

