@import 'reset.css';
@import 'fonts.css';
@import 'global.css';
@import 'tables.css';

.header {
}
.header__top {
  padding: 5px 0;
  display: none;
}
.header__top .container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 5px 30px;
}
.header__text {
}
.header__contact {
  display: flex;
  gap: 0 30px;
}
.header__contact a {
  color: #333;
}
.header__contact-phone,
.header__contact-email {
  padding-left: 28px;
  display: inline-block;
  position: relative;
}
.header__contact-phone::before,
.header__contact-email::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 0;
  width: 16px;
  height: 16px;
}
.header__contact-phone::before {
  background-image: url('../../images/icons/telephone-black.svg');
}
.header__contact-email::before {
  background-image: url('../../images/icons/envelope-black.svg');
}
.header__main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #d4041b;
  z-index: 10;
}
.header__main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  min-height: 70px;
}
.header__logo {
}
.header__logo img {
  width: 90px;
}
.header__menu {
}
.menu {
    font-family: 'Montserrat', sans-serif;
}
.menu__body {
    position: fixed;
    width: 100%;
    height: calc(100% - 70px);
    top: 70px;
    left: -100%;
    background-color: #222;
    padding-top: 30px;
    padding-bottom: 30px;
    transition: left 0.3s ease;
    overflow: auto;
    z-index: 1;
}
.menu--open .menu__body {
    left: 0%;
}
.menu__list {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}
.menu__item {
    display: flex;
    flex-direction: column;
    position: relative;
    border-bottom: 1px solid #333;
}
.menu__link {
    display: block;
    color: #fff;
    padding: 15px 20px;
    font-size: .875rem;
    font-weight: 500;
    line-height: 1.5;
    text-transform: uppercase;
    transition: background-color .3s;
}
.menu__link:hover {
    background-color: #333;
}
.menu__item--dropdown {
}
.menu__dropdown {
    background-color: #333;
    overflow: hidden;
    max-height: 0;
    opacity: 1;
    transition: max-height .3s ease;
}
.menu__item--open .menu__dropdown {
    max-height: 500px;
    opacity: 1;
}
.menu__dropdown-item {
}
.menu__dropdown-link {
    display: block;
    padding: 15px 20px;
    font-size: .875rem;
    color: #ddd;
    transition: background-color .3s;
}
.menu__dropdown-link:hover {
    background-color: #444;
}

.icon-menu {
    display: block;
    position: relative;
    z-index: 5;
    width: 30px;
    height: 18px;
    background-color: transparent;
    border: none;
}
.icon-menu__line,
.icon-menu::before,
.icon-menu::after {
    content: "";
    position: absolute;
    background-color: #fff;
    height: 2px;
    width: 100%;
    left: 0;
    transition: all 0.3s;
}

.icon-menu::before {
    top: 0;
}
.icon-menu::after {
    bottom: 0;
}
.icon-menu__line {
    top: calc(50% - 1px);
}
.icon-menu:focus {
    outline: none;
}

.menu--open .icon-menu::before {
    top: calc(50% - 1px);
    transform: rotate(-45deg);
}
.menu--open .icon-menu::after {
    bottom: calc(50% - 1px);
    transform: rotate(45deg);
}
.menu--open .icon-menu__line {
    left: 50%;
    width: 0;
}

.icon-plusminus {
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 20px;
    top: 16px;
    z-index: 5;
    background-color: transparent;
    border: none;
}
.icon-plusminus__line,
.icon-plusminus::before {
    content: '';
    position: absolute;
    background-color: #fff;
    height: 2px;
    width: 100%;
    left: 0;
    transition: all 0.3s;
}
.icon-plusminus::before {
    top: calc(50% - 1px);
    transform: rotate(90deg);
}
.icon-plusminus__line {
    top: calc(50% - 1px);
}
.menu__item--open .icon-plusminus::before {
    left: 50%;
    width: 0%;
}
.icon-plusminus:focus {
    outline: none;
}

@media (min-width: 992px) {
  .header__main {
    position: relative;
  }
  .menu__body {
      position: relative;
      width: auto;
      top: auto;
      left: auto;
      height: auto;
      background-color: transparent;
      padding: 0;
      overflow: inherit;
      z-index: 5;
  }
  .menu__list {
      flex-direction: row;
      column-gap: 30px;
      height: 70px;
  }
  .menu__item {
      border-bottom: 0;
  }
  .menu__link {
      height: 100%;
      align-content: center;
      padding: 0;
  }
  .menu__link:hover {
      background-color: transparent;
  }
  .icon-plusminus {
      display: none;
  }
  .menu__dropdown {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      padding: 10px 0;
      min-width: 350px;
      box-shadow: rgba(0, 0, 0, 0.15) 0px 8px 16px 0px;
  }
  .menu__item:nth-last-child(1) .menu__dropdown {
      right: 0;
      left: auto;
  }
  .menu__item--dropdown:hover .menu__dropdown {
      display: block;
      max-height: 500px;
  }
  .menu__icon {
      display: none;
  }
}

@media (min-width: 992px) {
  .header__top {
    display: block;
  }
  .header__top .container {
    flex-direction: row;
  }
}
.carousel {
}
.carousel__slides {
}
.carousel__slide {
}
.carousel__title {
}
.carousel__text {
}
.carousel__button {
}
.carousel__controls {
}
.carousel__control {
}
.hero {
}
.hero__content {
}
.hero__title {
}
.hero__subtitle {
}
.hero__button {
}
.homepage-products {
  padding-top: 70px;
  background-color: #f6f6f6;
}
.homepage-products__title {
  margin-bottom: 1.75rem;
}
.homepage-products__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.homepage-products__item {
  background-color: #fff;
  border-radius: 5px;
}
.homepage-products__item-link {
}
.homepage-products__item-content {
  padding: 20px;
}
.homepage-products__item-image {
  display: block;
  margin: 0 auto;
}
.homepage-products__item-title {
  font-size: 1rem;
  letter-spacing: -0.25px;
  color: #333;
  margin-bottom: 0;
}
.homepage-products__button {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.homepage-products__button a {
  background-color: #d4041b;
  border: none;
  color: #fff;
  border-radius: 5px;
  display: inline-block;
  font-size: .938em;
  height: 46px;
  margin: 0 auto;
  padding: 12px 25px;
  text-decoration: none;
  grid-column-start: 4;
  justify-self: end;
  margin: unset;
}
.news {
}
.news__title {
}
.news__list {
}
.news__item {
}
.news__image {
}
.news__info {
}
.news__name {
}
.news__date {
}
.news__description {
}
.news__button {
}
.partners {
}
.partners__title {
}
.partners__list {
}
.partners__item {
}
.partners__logo {
}
.main {
}
.content-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 50px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}
.page__content--with-sidebar {
  grid-template-columns: 1fr;
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}
.page__content--no-sidebar {
}
.sidebar {
  display: none;
}
.sidebar__menu {
}
.sidebar__menu-list {
}

/*
.sidebar__menu-item {
  border-bottom: 1px solid #ddd;
}
.sidebar__menu-link {
  color: #333;
  font-size: 0.875rem;
  font-weight: 500;
  display: block;
  padding: 7px 0;
}

.sidebar__menu-list,
.sidebar__submenu-list,
.sidebar__subsubmenu-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.sidebar__submenu-list,
.sidebar__subsubmenu-list {
    display: none;
    margin-left: 1rem;
}

.sidebar__menu-item--open > .sidebar__submenu-list,
.sidebar__submenu-item--open > .sidebar__subsubmenu-list {
    display: block;
}

.sidebar__menu-link,
.sidebar__submenu-link,
.sidebar__subsubmenu-link {
    display: block;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: #333;
}

.sidebar__menu-item--has-children > .sidebar__menu-link::after,
.sidebar__submenu-item--has-children > .sidebar__submenu-link::after {
    content: "▶";
    float: right;
    transition: transform 0.3s ease;
}

.sidebar__menu-item--open > .sidebar__menu-link::after,
.sidebar__submenu-item--open > .sidebar__submenu-link::after {
    transform: rotate(90deg);
}
*/


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

.sidebar__menu-item {
  position: relative;
}

.sidebar__menu-link {
  display: block;
  padding: 0.5em 0;
  text-decoration: none;
  font-weight: 600;
  color: #888;
}

.sidebar__menu-link.is-active,
.sidebar__menu-link:hover {
  color: #333;
  cursor: pointer;
}

.sidebar__menu-item > .sidebar__menu-list {
  display: none;
  padding-left: 1rem;
}

.sidebar__menu-item--expanded > .sidebar__menu-list {
  display: block;
}


.content {
}
.breadcrumbs {
}
.breadcrumbs__list {
}
.breadcrumbs__item {
}
.breadcrumbs__link {
}
.page {
}
.page__title {
}
.page__content {
}
.about {
}
.about__title {
}
.about__text {
}
.contact {
}
.contact__header {
}
.contact__header-title {
}
.contact__header-subtitle {
}
.contact__info {
}
.contact__info-item {
}
.contact__info-title {
}
.contact__info-address {
}
.contact__info-hours {
}
.contact__info-phone {
}
.contact__info-email {
}
.contact-form {
}
.contact-form__title {
}
.form {
}
.form__label {
}
.form__input {
}
.form__textarea {
}
.form__button {
}
.contact-map {
}
.contact-map__title {
}
.contact-map__container {
}
.blog {
}
.blog__title {
}
.blog__subtitle {
}
.blog__items {
  margin-top: 50px;
}
.blog__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ddd;
}
.blog__item-image {
}
.blog__item-image img {
  max-width: 60%;
  margin-left: auto;
  margin-right: auto;
}
.blog__item-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.blog__item-title {
  font-size: 1.5rem;
  letter-spacing: -0.75px;
  margin-top: 0;
}
.blog__item-date {
  font-size: 0.875rem;
  color: #888;
}
.blog__item-excerpt {
  display: inline;
}
.blog__item-excerpt p {
  margin-top: 0;
}
.blog-page {
}
.blog__item-title a {
  color: #333;
}
.blog__item-title a:hover {
  color: red;
}
.blog-page__date {
  font-size: 0.875rem;
  color: #888;
}
.blog-page__content {
}
.blog-page__content ul {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.blog-page__image {
}
.products {
}
.products__header {
}
.products__details {
}
.products__title {
}
.products__description {
  margin-top: 1rem;
}
.products__image {
}
.products__categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.products__category {
  background-color: #fff;
  border-radius: 5px;
}
.products__category-link {
  color: #333;
}
.products__category-content {
  padding: 30px;
}
.products__category-image {
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}
.products__category-title {
  font-size: 1.5rem;
  letter-spacing: -.5px;
}
.products__category-description {
  font-size: .875rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.products__category-link .products__category-description {
  color: #333;
}
.products-category {
}
.products-category__header {
}
.products-category__details {
}
.products-category__title {
}
.products-category__description {
  margin-top: 1rem;
}
.products-category__image {
}
.products-category__items {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}
.products-category__item {
  display: grid;
  grid-template-columns: 180px auto;
  gap: 30px;
  background-color: #fff;
  padding: 30px;
  border-radius: 5px;
}
.products-category__item-image {
}
.products-category__item-info {
}
.products-category__item-title {
  font-size: 1.5rem;
  letter-spacing: -.5px;
  margin-top: 0;
}
.products-category__item-title a {
  color: #333;
}
.products-category__item-description {
  font-size: .875rem;
  margin-top: 1rem;
}
.products-category__item-specifications {
  font-size: .875rem;
  margin-top: 1rem;
}
.products-category__item-price {
  font-size: 1.125rem;
  font-weight: 700;
  color: red;
  margin-top: 1rem;
}
.product {
  margin-top: 50px;
  margin-bottom: 100px;
}
.product__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
.product__image img {
  border-radius: 5px;
}
.product__info {
}
.product__title {
}
.product__description {
  margin-top: 1rem;
}
.product__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: red;
  margin-top: 1rem;
}
.product__specifications {
  margin-top: 40px;
}
.product__specifications-title {
  margin-bottom: 1rem;
}
.product__specifications-list {
}
.product__specification {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 30px;
  border-bottom: 1px solid #ddd;
  padding-top: 7px;
  padding-bottom: 7px;
}
.product__specification-name {
  font-weight: 700;
}
.product__specification-value {
}

/* Download start */
/* Download items start */
.download-page {
}
.download-page__section {
  margin-bottom: 40px;
}
.download-page__title {
}
.download-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.download-items__item {
  display: grid;
  grid-template-columns: 30px 1fr 30px 80px;
  gap: 20px;
  align-items: center;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
}
.download-items__icon {
}
.download-items__type-pdf {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  color: var(--color-red);
}
.download-items__type-pdf::before {
  content: '';
  display: block;
  background-image: url('../images/icons/file-earmark-pdf.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 24px;
  height: 24px;
  filter: invert(27%) sepia(86%) saturate(5824%) hue-rotate(346deg) brightness(96%) contrast(112%);
}
.download-items__content {
}
.download-items__title {
  font-size: 1rem;
  letter-spacing: -.5px;
  margin-top: 0;
  margin-bottom: .75rem;
}
.download-items__title a {
  font-size: 1rem;
  color: #000;
}
.download-items__info {
  display: flex;
  align-items: center;
  line-height: 1;
}
.download-items__info span {
  font-size: .875rem;
  color: #898989;
  border-right: 1px solid #898989;
  margin-right: 15px;
  padding-right: 15px;
}
.download-items__info span:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}
.download-items__text {
}
.download-items__language {
}
.download-items__year {
}
.download-items__button {
}
.download-items__link--download {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  color: var(--color-red);
}
.download-items__link--download::before {
  content: '';
  display: block;
  background-image: url('../images/icons/download.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 24px;
  height: 24px;
  filter: invert(27%) sepia(86%) saturate(5824%) hue-rotate(346deg) brightness(96%) contrast(112%);
}
.download-items__size {
  font-size: .875rem;
}
/* Download items end */
/* Download end */


.downloads {
}
.downloads__header {
}
.downloads__title {
}
.downloads__description {
}
.downloads__list {
}
.downloads__item {
}
.downloads__item-title {
}
.downloads__item-description {
}
.downloads__item-details {
}
.downloads__item-size {
}
.downloads__item-format {
}
.downloads__item-link {
}
.pagination {
}
.pagination__list {
}
.pagination__item {
}
.pagination__link {
}
.pagination__link--disabled {
}
.pagination__link--active {
}
.sidebar--right {
}
.footer {
  background-color: #55575c;
}
.footer__top {
  padding: 70px 0;
  border-bottom: 1px solid #676767;
}
.footer__top .container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}
.footer__left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.footer__logo {
}
.footer__logo img {
  width: 90px;
}
.footer__text {
  color: #ddd;
}
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 6px 0;
}
.footer__contact-address,
.footer__contact-phone,
.footer__contact-email {
  padding-left: 30px;
  display: block;
  position: relative;
  color: #ddd;
}

.footer__contact-address::before,
.footer__contact-phone::before,
.footer__contact-email::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 0;
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.footer__contact-address::before {
  background-image: url('../../images/icons/geo-alt.svg');
}
.footer__contact-phone a {
  color: #ddd;
}
.footer__contact-phone::before {
  background-image: url('../../images/icons/telephone.svg');
}
.footer__contact-email a {
  color: #ddd;
}
.footer__contact-email::before {
  background-image: url('../../images/icons/envelope.svg');
}
.footer__right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.footer__menu {
}
.footer__menu-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 30px;
  row-gap: 5px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__menu-item {
  margin: 0;
}
.footer__menu-link {
  color: #fff;
}
.footer__menu-link:hover {
  color: #f39c12;
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer__social-item {
}
.footer__social-link {
  position: relative;
  width: 24px;
  height: 24px;
}
.footer__social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: currentColor;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}
.footer__social-link--facebook::before {
  mask-image: url('../../images/icons/square-facebook-brands-solid.svg');
}
.footer__social-link--youtube::before {
  mask-image: url('../../images/icons/youtube.svg');
}
.footer__social-link--facebook {
  color: #ddd;
}
.footer__social-link--youtube {
  color: #ddd;
}
.footer__form {
}
.footer__form-input {
}
.footer__form-button {
}
.footer__bottom {
  padding: 20px 0;
}
.footer__bottom .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px 30px;
}
.footer__copyright {
  color: #ddd;
}
.footer__partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0 10px;
}
.footer__partners img {
  width: 100px;
}

@media (min-width: 768px) {
  .homepage-products__list {
    grid-template-columns: repeat(3, 1fr);
  }
  .page__content--with-sidebar {
    grid-template-columns: 290px 1fr;
  }
  .blog__item {
    grid-template-columns: 180px auto;
  }
  .blog__item-image img {
    max-width: 100%;
  }
  .product__content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .homepage-products {
    padding-top: 0;
  }
  .homepage-products__list {
    grid-template-columns: repeat(4, 1fr);
  }
  .homepage-products__button {
    justify-content: end;
  }
  .sidebar {
    display: block;
  }
  .footer__top .container {
    flex-direction: row;
  }
  .footer__bottom .container {
    justify-content: space-between;
  }
}

.store-card {
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
}
    .swiper {
      width: 600px;
      height: 100%;
    }

    .swiper-slide {
      text-align: center;
      font-size: 18px;
      background: #444;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .swiper-slide img {
      display: block;
      width: 600px;
      height: 100%;
      object-fit: cover;
    }

    .swiper {
      width: 600px;
      height: 300px;
      margin-left: auto;
      margin-right: auto;
    }

    .swiper-slide {
      background-size: cover;
      background-position: center;
    }

    .mySwiper2 {
      height: 80%;
      width: 100%;
    }

    .mySwiper {
      height: 20%;
      box-sizing: border-box;
      padding: 10px 0;
    }

    .mySwiper .swiper-slide {
      width: 25%;
      height: 100%;
      opacity: 0.4;
    }

    .mySwiper .swiper-slide-thumb-active {
      opacity: 1;
    }

    .swiper-slide img {
      display: block;
      width: 600px;
      height: 100%;
      object-fit: cover;
    }


.product-slider {
  position: relative;
  max-width: 800px;
  overflow: hidden;
  /* box-shadow: 0 4px 20px rgba(0,0,0,0.15); */
}

.product-slider__track {
  display: flex;
  transition: transform 0.5s ease;
  cursor: grab;
  width: 100%;
}

.product-slider__slide {
  width: 100%;
  flex-shrink: 0;
  user-select: none;
}

.product-slider__button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  user-select: none;
  z-index: 10;

  /* Glassmorphism */
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
  /* box-shadow: 0 4px 12px rgba(0,0,0,0.15); */
  transition: background 0.3s, transform 0.2s;
}

.product-slider__button:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.1);
}

.product-slider__button--prev { left: 10px; }
.product-slider__button--next { right: 10px; }

.product-slider__dots {
  text-align: center;
  position: absolute;
  bottom: 10px;
  width: 100%;
}

.product-slider__dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 4px;
  background: #bbb;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.product-slider__dots span.active {
  background: #007bff;
}