@charset "UTF-8";
@import "css/bootstrap.css";
@font-face {
  font-family: Axiforma;
  font-weight: 900;
  src: url("fonts/Axiforma-Black.ttf");
}
@font-face {
  font-family: Axiforma;
  font-weight: 800;
  src: url("fonts/Axiforma-ExtraBold.ttf");
}
@font-face {
  font-family: Axiforma;
  font-weight: 700;
  src: url("fonts/Axiforma-Bold.ttf");
}
@font-face {
  font-family: Axiforma;
  font-weight: 600;
  src: url("fonts/Axiforma-SemiBold.ttf");
}
@font-face {
  font-family: Axiforma;
  font-weight: 500;
  src: url("fonts/Axiforma-Medium.ttf");
}
@font-face {
  font-family: Axiforma;
  font-weight: 400;
  src: url("fonts/Axiforma-Regular.ttf");
}
@font-face {
  font-family: Axiforma;
  font-weight: 300;
  src: url("fonts/Axiforma-Light.ttf");
}
@font-face {
  font-family: Axiforma;
  font-weight: 100;
  src: url("fonts/Axiforma-Thin.ttf");
}
.custom-container {
  padding: 0px 15px;
}
@media (min-width: 480px) {
  .custom-container {
    padding: 0 22px;
  }
}
@media (min-width: 768px) {
  .custom-container {
    padding: 0 40px;
  }
}
@media (min-width: 992px) {
  .custom-container {
    padding: 0 40px;
  }
}
@media (min-width: 1200px) {
  .custom-container {
    padding: 0 40px;
  }
}
@media (min-width: 1360px) {
  .custom-container {
    padding: 0 40px;
  }
}
@media (min-width: 1660px) {
  .custom-container {
    padding: 0 105px;
  }
}

.custom-container-steps {
  padding: 0px 15px;
}
@media (min-width: 480px) {
  .custom-container-steps {
    padding: 0 22px;
  }
}
@media (min-width: 768px) {
  .custom-container-steps {
    padding: 0 40px;
  }
}
@media (min-width: 992px) {
  .custom-container-steps {
    padding: 0 40px;
  }
}
@media (min-width: 1200px) {
  .custom-container-steps {
    padding: 0 40px;
  }
}
@media (min-width: 1360px) {
  .custom-container-steps {
    padding: 0 40px;
  }
}
@media (min-width: 1660px) {
  .custom-container-steps {
    padding: 0 390px;
  }
}

.custom-container-larger {
  padding: 0px 15px;
}
@media (min-width: 480px) {
  .custom-container-larger {
    padding: 0 22px;
  }
}
@media (min-width: 768px) {
  .custom-container-larger {
    padding: 0 40px;
  }
}
@media (min-width: 992px) {
  .custom-container-larger {
    padding: 0 40px;
  }
}
@media (min-width: 1200px) {
  .custom-container-larger {
    padding: 0 40px;
  }
}
@media (min-width: 1360px) {
  .custom-container-larger {
    padding: 0 40px;
  }
}
@media (min-width: 1660px) {
  .custom-container-larger {
    padding: 0 390px;
  }
}

.custom-container-about {
  padding: 0px 15px;
}
@media (min-width: 480px) {
  .custom-container-about {
    padding: 0 22px;
  }
}
@media (min-width: 768px) {
  .custom-container-about {
    padding: 0 40px;
  }
}
@media (min-width: 992px) {
  .custom-container-about {
    padding: 0 40px;
  }
}
@media (min-width: 1200px) {
  .custom-container-about {
    padding: 0 40px;
  }
}
@media (min-width: 1360px) {
  .custom-container-about {
    padding: 0 40px;
  }
}
@media (min-width: 1660px) {
  .custom-container-about {
    padding: 0 550px;
  }
}

.nav-list {
  margin: 0;
  list-style: none;
}
.nav-list li {
  list-style: none;
  display: inline-block;
}
.nav-list li a {
  font-family: Axiforma, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #111;
  position: relative;
  overflow: hidden; /* Добавено за да скрием препълването на border-bottom */
}
.nav-list li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px; /* Фиксирана височина на границата */
  background-color: transparent;
  transition: all 0.3s ease-in-out;
}
.nav-list li a:hover::after {
  background-color: #EE6700;
  width: 100%; /* Променяме ширината от 0% до 100% */
}
@keyframes expandBorder {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.nav-phone {
  font-family: Axiforma, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #323232;
}

.b2b-btn {
  background-color: #EE6700;
  font-family: Axiforma, sans-serif;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  border-radius: 30px;
  padding: 10px 15px;
  border: none;
  transition: all 0.3s ease-in-out;
}
.b2b-btn:hover {
  background-color: #d65c00;
}

.search-btn {
  background-color: #EE6700;
  border-radius: 30px;
  border: none;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.search-btn:hover {
  background-color: #d65c00;
}

.nav-second-list {
  list-style: none;
  margin: 0;
}
.nav-second-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #323232;
  font-family: Axiforma, sans-serif;
  font-size: 14px;
  transition: ease-in-out all 0.2s;
}
.nav-second-list li:hover {
  color: #EE6700;
}
.nav-second-list a {
  color: #323232 !important;
  font-family: Axiforma, sans-serif;
  font-size: 14px;
  transition: ease-in-out all 0.2s;
}
.nav-second-list a:hover {
  color: #EE6700;
}

.owl-bg {
  padding: 100px 0;
  background-image: url("img/index-owl-bg.png");
  height: 61vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.owl-bg-1 {
  padding: 100px 0;
  background-image: url("img/owl-bg-1.png");
  height: 61vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.owl-container {
  box-shadow: 2px 16px 19px 0px rgba(0, 0, 0, 0.0901960784);
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: radial-gradient(90.16% 143.01% at 15.32% 21.04%, rgba(224, 249, 255, 0.2) 0%, rgba(110, 191, 244, 0.0447917) 77.08%, rgba(70, 144, 213, 0) 100%);
  border-radius: 30px;
  backdrop-filter: blur(10px);
}

.index-owl-title {
  font-family: Axiforma, sans-serif;
  font-size: 28px;
  color: #fff;
  font-weight: 300;
  line-height: 1em;
}

.index-owl-model {
  font-family: Axiforma, sans-serif;
  font-size: 42px;
  color: #fff;
  font-weight: 800;
}

.index-owl-list {
  font-family: Axiforma, sans-serif;
  font-size: 16px;
  color: #fff;
  font-weight: 400;
}

.index-owl-btn {
  border: 1px solid #FFFFFF;
  background-color: transparent;
  border-radius: 30px;
  min-width: 175px;
  padding-top: 12px;
  padding-bottom: 12px;
  transition: ease-in-out all 0.3s;
}
.index-owl-btn span {
  font-family: Axiforma, sans-serif;
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  line-height: 1em;
  z-index: 1233;
}
.index-owl-btn:hover {
  background-color: #EE6700;
  color: #fff;
  border: 1px solid #EE6700;
}

.category-btn {
  border: 1px solid #323232;
  color: #323232;
  background: transparent;
  border-radius: 30px;
  min-width: 236px;
}
.category-btn span {
  font-family: Axiforma, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 25.66px;
  text-align: center;
  list-style: none;
  display: inline-flex;
  position: relative;
  overflow: hidden; /* Добавено за да скрием препълването на border-bottom */
}
.category-btn span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px; /* Фиксирана височина на границата */
  background-color: transparent;
  transition: all 0.3s ease-in-out;
}
.category-btn:hover span::after {
  background-color: #323232;
  width: 100%; /* Променяме ширината от 0% до 100% */
}
@keyframes expandBorder {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.abs-img {
  background-image: url("img/index-owl-abs-img.png");
  height: 100%;
  position: absolute;
  right: -300px;
  bottom: 0;
  width: 100%;
  background-position: bottom;
  background-size: contain;
  background-repeat: no-repeat;
}

.abs-img-1 {
  background-image: url("img/benzo.png");
  height: 100%;
  position: absolute;
  right: -300px;
  bottom: 0;
  width: 100%;
  background-position: bottom;
  background-size: contain;
  background-repeat: no-repeat;
}

.arrow-prev {
  position: absolute;
  left: -32px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  padding: 20px;
  top: 50%;
  width: 70px;
  height: 70px;
  text-align: end;
  border: none;
  z-index: 123;
}

.arrow-next {
  position: absolute;
  right: -32px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  padding: 20px;
  top: 50%;
  width: 70px;
  height: 70px;
  text-align: start;
  border: none;
  z-index: 123;
}

.index-info {
  border: 1px solid #EE6700;
  background-color: #FDEDE0;
  padding: 0 30px;
  border-radius: 10px;
}

.index-info-text {
  font-family: Axiforma, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  color: #EE6700;
}

.product-text {
  font-family: Axiforma, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 22px;
  color: #111;
}
.product-text span {
  font-family: Axiforma, sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 22px;
  color: #111;
}

a {
  text-decoration-line: none;
}

.index-category-title {
  font-family: Axiforma, sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 66.64px;
  color: #323232;
}

.category-btn {
  border: 1px solid #323232;
  font-family: Axiforma, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 25.66px;
  text-align: left;
  color: #323232;
  background: transparent;
  border-radius: 30px;
  min-width: 236px;
  text-align: center;
}

.owl-carousel-news .item {
  border: 1px solid #E9EAED;
  border-radius: 10px;
}

.news-date {
  font-family: Axiforma, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #595959;
}

.news-title {
  font-family: Axiforma, sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1em;
  color: #323232;
  margin-bottom: 10px;
}

.news-subtitle {
  font-family: Axiforma, sans-serif;
  font-size: 19px;
  font-weight: 600;
  line-height: 24px;
  color: #111;
}

.footer-title {
  font-family: Axiforma, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 26.1px;
  color: #323232;
}

.company-footer-border {
  border-right: 1px solid #D9D9D9;
}

.footer-paragraph {
  font-family: Axiforma, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 25.34px;
  text-align: left;
  color: #323232;
}

.footer-ul {
  list-style: none;
  padding-left: 0;
}
.footer-ul li a {
  font-family: Axiforma, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 25.34px;
  text-align: left;
  color: #323232;
}
.footer-ul li {
  padding-bottom: 5px;
}

.footer-contact-border {
  border: 1px solid #323232;
  border-radius: 10px;
  max-width: 190px;
  font-family: Axiforma, sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  color: #323232;
  min-height: 48px;
}

.footer-rights {
  font-family: Axiforma, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  color: #fff;
}

.mobile-nav-btn {
  border: none;
  background-color: transparent;
}

.search-mobile-input {
  border-radius: 40px;
  border: 1px solid #D9D9D9;
  width: 100%;
  padding: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  background-color: #fff;
}
.search-mobile-input input {
  border: none;
  background-color: transparent;
  outline: none;
  font-family: Axiforma, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 24.06px;
  color: #323232;
}
.search-mobile-input input::placeholder {
  font-family: Axiforma, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 24.06px;
  color: #323232;
}

.custom-search-modal {
  position: fixed;
  top: 9%;
  left: 0;
  width: 100%;
  /* transform: translate(-50%, -50%); */
  max-height: calc(100% - 40px);
  overflow-y: auto;
  z-index: 1050;
  display: none;
  animation: all 0.3s ease-in-out;
}

.overlay.show {
  display: block;
}

/* Стилове за overlay ако искате */
.overlay {
  display: none;
  position: fixed;
  top: 77px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1040; /* По-нисък от контейнера, но по-висок от менюто */
}

.dropdown-menu {
  border-radius: 0;
  border: none;
}

.dropdown-menu-list ul li {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.dropdown-menu-list ul li .dropdown-submenu a {
  font-family: Axiforma, sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #323232 !important;
  padding-bottom: 20px;
}
.dropdown-menu-list ul li .dropdown-submenu a:hover {
  color: #EE6700 !important;
}
.dropdown-menu-list ul li a {
  font-family: Axiforma, sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #EE6700 !important;
  padding-bottom: 10px;
}
.dropdown-menu-list ul li a:hover {
  color: #be5200 !important;
}

.overlay-desktop.show {
  display: block;
}

.overlay-desktop {
  display: none;
  position: fixed;
  top: 92px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1040; /* По-нисък от контейнера, но по-висок от менюто */
}

.modal-overflow-hidden {
  overflow: hidden;
}

.mobile-nav-style {
  position: fixed;
  top: 9%;
  left: 0;
  width: 100%;
  /* transform: translate(-50%, -50%); */
  max-height: calc(100% - 40px);
  overflow-y: auto;
  z-index: 1050;
  animation: all 0.3s ease-in-out;
}

.accordion-item {
  border-top: 0;
  border-right: 0;
  border-left: none;
  box-shadow: none !important;
}

.accordion-button {
  background-color: #F5F5F5 !important;
  box-shadow: none !important;
}

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

.mobile-accordion-item {
  font-family: Axiforma, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 23.76px;
  color: #323232;
}

#mobile-nav {
  display: none;
}

.breadcrumbs {
  text-decoration: none;
  list-style: none;
  flex-wrap: wrap;
  background-color: #FCFCFC;
  margin: 0;
}
.breadcrumbs li a {
  font-family: Axiforma, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22.18px;
  text-align: left;
  color: #323232 !important;
}
.breadcrumbs .active a {
  font-family: Axiforma, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 23.03px;
  color: #323232;
}

.product-sections {
  border-bottom: 1px solid #E9EAED;
}
.product-sections a {
  font-family: Axiforma, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 25.34px;
  color: #323232;
  border-bottom: 2px solid transparent;
  text-align: center;
}
.product-sections a:hover {
  border-bottom: 2px solid #EE6700;
  color: #EE6700;
}

.index-nav-tabs {
  border-bottom: 1px solid #E9EAED;
}
.index-nav-tabs li a {
  font-family: Axiforma;
  font-size: 16px;
  font-weight: 400;
  line-height: 25.34px;
  text-align: left;
  color: #323232;
  border-bottom: 2px solid transparent;
}
.index-nav-tabs li a:hover {
  color: #EE6700;
  border-bottom: 2px solid #EE6700;
}
.index-nav-tabs li .active {
  color: #EE6700;
  border-bottom: 2px solid #EE6700;
}

.dropdown-menu {
  width: 100%;
  height: 39vh;
}

.input-group {
  position: relative;
}

.btn-success {
  position: absolute;
  right: 0;
  top: 0;
}

.form-control {
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

body {
  font-family: Axiforma, sans-serif;
}

a {
  color: #000;
}

.dropdown-menu-list ul.row > li:nth-child(-n+6) {
  border-bottom: 1px solid #F4F4F4; /* Добавя бордер на първите четири елемента на списъка */
}

.ui-slider-handle {
  border: 1px solid rgba(0, 0, 0, 0.4) !important;
  width: 14px !important;
  height: 14px !important;
  background: #fff !important;
  border-radius: 50px !important;
}

.ui-slider-handle:focus-visible {
  outline: none;
  border-color: #F76600 !important;
  border-width: 2px !important;
}

/* Customize slider range line */
.ui-slider .ui-slider-range {
  background: #F76600 !important;
}

.ui-slider-horizontal .ui-slider-handle {
  top: -0.375em !important;
}

.ui-slider-horizontal {
  height: 4px !important;
  background-color: #DFE0E3 !important;
}

.form-check {
  position: relative;
  box-shadow: none;
}

.form-check-input {
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
  border: 1px solid #DFE0E3 !important;
  border-radius: 3px !important;
  margin-top: 0.1em;
}

input[type=checkbox] {
  width: 16px;
  height: 16px;
}

input[type=checkbox]:checked + label::before {
  content: "";
  display: block;
  position: absolute;
  text-align: center;
  height: 16px;
  width: 16px;
  left: 0;
  top: 3px;
  background-color: #F76600;
  font-family: "Axiforma";
  border-radius: 3px;
  border: 1px solid #F76600;
}

input[type=checkbox]:checked + label::after {
  content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="10" viewBox="0 0 12 10" fill="none"><path d="M12.0002 1.66668L4.00016 9.66668L0.333496 6.00002L1.2735 5.06002L4.00016 7.78002L11.0602 0.726685L12.0002 1.66668Z" fill="white"/></svg>');
  display: block;
  position: absolute;
  left: 2px;
  top: 0px;
}

.category-filters-subtitle {
  font-family: Axiforma, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #323232;
}
.category-filters-subtitle h4 {
  font-family: Axiforma, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  color: #323232;
}

.category-filters-title {
  font-family: Axiforma, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: #323232;
}

.category-filters-border {
  border-bottom: 1px solid rgba(0, 0, 0, 0.0509803922);
}

.range-price {
  font-family: Axiforma, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  color: #323232;
}

.buttonLabel {
  padding: 4px;
  margin: 5px;
  border: 1px solid #DFE0E3;
  cursor: pointer;
  border-radius: 6px;
  display: inline-block;
}
.buttonLabel:hover {
  border: 1px solid #000 !important;
}

.filters-clear button {
  font-family: Axiforma, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #ADAEB0;
  background-color: transparent;
  border: none;
}

.category-title {
  font-family: Axiforma, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 46px;
  color: #323232;
}

.page-link.active, .active > .page-link {
  background-color: #EE6700;
  border-color: #EE6700;
  border-radius: 5px;
  font-family: Axiforma, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  color: #fff;
}

.page-link {
  border: none;
  font-family: Axiforma, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  color: #323232;
  padding: 10px 19px;
  box-shadow: none !important;
}

.page-link:hover {
  color: #000;
}

.owl-prev {
  position: absolute;
  top: 42%;
  left: -34px;
}

.owl-next {
  position: absolute;
  top: 42%;
  right: -34px;
}

.product-btn-from-where {
  background-color: #EE6700;
  font-family: Axiforma, sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #fff;
  border: none;
  border-radius: 10px;
  height: 49px;
  padding: 0 25px;
  transition: all 0.3s ease-in-out;
}
.product-btn-from-where:hover {
  background-color: #d65c00;
}

.product-btn-warranty-extension {
  background-color: #FDEDE0;
  font-family: Axiforma, sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #EE6700;
  border: none;
  border-radius: 10px;
  height: 49px;
  padding: 0 25px;
  transition: all 0.3s ease-in-out;
}
.product-btn-warranty-extension:hover {
  background-color: #e3d5c9;
}

.product-description {
  font-family: Axiforma, sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #323232;
  border-left: 1px solid #E9EAED;
}
.product-description span {
  font-family: Axiforma, sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #323232;
}

.product-title {
  font-family: Axiforma, sans-serif;
  font-size: 39px;
  font-weight: 400;
  line-height: 46px;
  text-align: left;
  color: #323232;
}
.product-title span {
  font-family: Axiforma, sans-serif;
  font-size: 39px;
  font-weight: 800;
  line-height: 46px;
  color: #323232;
}

.product-number {
  font-family: Axiforma, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 23.76px;
  color: #323232;
}

.product-all-characteristics {
  font-family: Axiforma, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 26.93px;
  color: #323232;
  text-decoration-line: underline;
}

.product-share-btn {
  font-family: Axiforma, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 26.1px;
  color: #323232;
}

.product-features-box {
  border: 1px solid #E9EAED;
  border-radius: 10px;
  padding: 12px 20px;
  font-family: Axiforma, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 21px;
  color: #323232;
}

.product-titles {
  font-family: Axiforma, sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #323232;
}

.characteristics-title {
  font-family: Axiforma, sans-serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 37.83px;
  letter-spacing: 0.01em;
  color: #EE6700;
}
.characteristics-title p {
  font-family: Axiforma;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.01em;
  color: #323232;
}

.technical-data-text {
  font-family: Axiforma, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #323232;
  background-color: #FDEDE0;
  padding: 12px 20px;
  border-radius: 10px;
}
.technical-data-text span {
  font-family: Axiforma;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  color: #323232;
}

.technical-data-text:nth-child(odd) {
  background-color: #FDEDE0;
}

.technical-data-text:nth-child(even) {
  background-color: #fff;
}

.advantages-list {
  background: #FDEDE0;
  padding: 35px 0;
  border-radius: 10px;
}
.advantages-list ul {
  list-style: none;
  margin: 0;
}
.advantages-list ul li {
  font-family: Axiforma, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 36px;
  color: #323232;
}
.advantages-list ul li::before {
  content: "• ";
  color: #F76600;
  padding-right: 10px;
}

.timeline {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 5px solid #D9D9D9;
}
.timeline p {
  font-family: Axiforma, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 25.34px;
  color: #111111;
}

.timeline-title {
  font-family: Axiforma, sans-serif;
  font-size: 36px;
  line-height: 1.6;
  font-weight: 700;
  text-align: left;
  color: #EE6700;
}

.about-title {
  font-family: Axiforma, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 46px;
  color: #323232;
}

.news-info {
  font-family: Axiforma, sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 36px;
  color: #111111;
  padding: 20px;
}
.news-info span {
  font-family: Axiforma, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 36px;
  color: #595959;
}

.news-info-right {
  font-family: Axiforma, sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: #111111;
  padding: 10px 0;
  line-height: 23px;
}
.news-info-right span {
  font-family: Axiforma, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #595959;
}

.border-news {
  border-radius: 10px;
  border: 1px solid #E9EAED;
}

.blog-title {
  font-family: Axiforma, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 46px;
  color: #323232;
}

.img-rounded {
  border-radius: 10px 0px 0px 10px;
}

.article-more-title {
  font-family: Axiforma, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 46px;
  color: #323232;
}

.saw-text {
  font-family: Axiforma;
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-height: 28.51px;
  color: #111111;
  text-transform: uppercase;
}

.table-header tr {
  background-color: #EE6700 !important; /* Change this to your desired color */
  color: white; /* Text color */
  font-family: Axiforma;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  color: #fff;
  border-radius: 10px;
}

.table-article {
  width: 100%;
}

.table-body tr {
  border-collapse: separate; /* Separate border model */
  border-spacing: 0; /* No spacing between cells */
  border: none; /* Remove table border */
  border-radius: 10px; /* Border radius for the table */
  overflow: hidden; /* Hide any content outside the rounded corners */
}
.table-body tr:nth-child(odd) {
  background-color: #fff;
}
.table-body tr:nth-child(even) {
  background-color: #FDEDE0;
}
.table-body tr td {
  font-family: Axiforma;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  color: #323232;
}
.table-body tr td:first-child {
  font-family: Axiforma;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #323232;
  text-align: start;
}

.table-article {
  border-collapse: separate; /* Separate border model */
  border-spacing: 0; /* No spacing between cells */
  border: none; /* Remove table border */
}

.table-article th,
.table-article td {
  padding: 8px; /* Adjust padding as needed */
  text-align: center; /* Center align content */
}

/* Apply border-radius to individual cells */
.table-article .rounded-top-left {
  border-top-left-radius: 10px; /* Rounded top left corner */
}

.table-article .rounded-top-right {
  border-top-right-radius: 10px; /* Rounded top right corner */
}

.table-article .rounded-bottom-left {
  border-bottom-left-radius: 10px; /* Rounded bottom left corner */
}

.table-article .rounded-bottom-right {
  border-bottom-right-radius: 10px; /* Rounded bottom right corner */
}

.article-steps-title {
  font-family: Axiforma, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 46px;
  color: #323232;
}

.article-steps-paragraph {
  font-family: Axiforma, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 25.34px;
  color: #111111;
}

.article-steps-subtitle {
  font-family: Axiforma, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 42px;
  text-align: left;
  color: #EE6700;
}

.pagination-text {
  font-family: Axiforma, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 23px;
  text-align: left;
  color: #111111;
}
.pagination-text span {
  font-family: Axiforma, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 23px;
  text-align: left;
  color: #111111;
}

.article-video {
  height: 600px !important;
}

.article-btn-border-mobile {
  border: 1px solid #D9D9D9;
  border-radius: 5px;
  padding: 20px;
}

.contact-text {
  font-family: Axiforma, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 25.66px;
  letter-spacing: 0.01em;
  color: #323232;
}

.contact-search-border {
  border-radius: 30px;
  border: 1px solid #D9D9D9;
  width: 100%;
  padding: 4px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.contact-search-border input {
  border: none;
  width: 100%;
  outline: none;
}
.contact-search-border input::placeholder {
  font-family: Axiforma, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 25.66px;
  letter-spacing: 0.01em;
  color: #323232;
}
.contact-search-border button {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background-color: #EE6700;
  width: 47px;
  height: 42px;
  border-radius: 30px;
}

.contact-title {
  font-family: Axiforma, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 46px;
  text-align: left;
  color: #323232;
  margin-bottom: 15px;
}

.contact-right {
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0px 0px 60px 20px rgba(0, 0, 0, 0.031372549);
  padding: 10px 15px;
}

.contact-right-location-menu {
  overflow-y: scroll;
  height: 505px;
}
.contact-right-location-menu a:hover .contact-menu-border {
  border-bottom: 1px solid #EE6700;
}

.contact-menu-border {
  border-bottom: 1px solid #F1F1F1;
  transition: all 0.2s ease-in-out;
}

.contact-service-network {
  background-color: #EFEFEF;
  border-radius: 10px;
  padding: 20px 15px;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
  font-family: Axiforma, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 28.87px;
  color: #323232;
  height: 100%;
  display: flex;
  align-items: center;
}
.contact-service-network:hover {
  border: 1px solid #EE6700;
  background-color: #FDEDE0;
  color: #EE6700;
}

.contact-page-left {
  background-color: #EE6700;
  padding: 40px 30px;
  border-radius: 5px;
  height: 100%;
}

.contact-page-container {
  box-shadow: 0px 0px 60px 30px rgba(0, 0, 0, 0.031372549);
  padding: 30px 10px;
  border-radius: 10px;
  margin-bottom: 55px;
}

.contact-form {
  font-family: Axiforma, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 36px;
  color: #323232;
  border: none;
  border-bottom: 1px solid #323232;
  width: 100%;
  outline: none;
}

.contact-form-container {
  padding: 40px 40px;
}

.contact-page-left-title {
  font-family: Axiforma, sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 36px;
  color: #fff;
  margin-bottom: 30px;
}

.contact-page-left-text {
  font-family: Axiforma, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}
.contact-page-left-text span {
  font-family: Axiforma, sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 36px;
  text-align: left;
  color: #fff;
}

.contact-send-btn button {
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.1215686275);
  background-color: #EE6700;
  border-radius: 5px;
  font-family: Axiforma, sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  color: #Fff;
  border: none;
  padding: 15px 40px;
}

.contact-container {
  box-shadow: 0px 0px 60px 30px rgba(0, 0, 0, 0.031372549);
  border-radius: 10px;
}

@media (max-width: 480px) {
  .filters-mobile-title {
    border-radius: 10px;
    background-color: rgba(238, 103, 0, 0.2);
    padding: 13px;
    color: #EE6700 !important;
  }
  .filters-mobile-title svg path {
    fill: #EE6700;
  }
  .filters-mobile-title h2 {
    margin: 0;
  }
  .filters-mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }
  .filters-mobile-menu .mobile-border {
    padding: 25px 15px;
    border-radius: 0px 0px 10px 10px;
    border: 1px solid #E9E9E9;
  }
  .advantages-list {
    padding: 20px 20px;
  }
  .advantages-list ul {
    padding: 0;
  }
  .product-titles {
    font-size: 32px;
  }
  .product-features-box {
    font-size: 13px;
    padding: 11px;
  }
  .product-description {
    border: none;
    line-height: 1em;
  }
  .product-title {
    font-size: 24px;
    line-height: 1em;
  }
  .product-title span {
    font-size: 24px;
  }
  .product-sections {
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
  }
  .product-sections .a {
    display: inline-block;
  }
  .timeline-title::after {
    content: none;
  }
  .timeline {
    border-right: none;
  }
  .table-container {
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
  }
  .article-steps-title {
    font-size: 27px;
    line-height: 32px;
  }
  .article-steps-subtitle {
    font-size: 26px;
    line-height: 32px;
    margin-top: 25px;
  }
  .article-video {
    height: 190px;
    margin-bottom: 55px;
  }
  .contact-page-container {
    padding: 0;
  }
  .contact-page-left {
    padding: 40px 15px;
  }
  .contact-page-left-text {
    font-size: 13px;
  }
  .contact-page-left-text span {
    font-size: 16px;
    line-height: 1em;
  }
  .contact-page-left-title {
    font-size: 21px;
    text-align: center;
  }
  .contact-form-container {
    padding: 40px 0;
    padding-bottom: 0;
  }
  .contact-send-btn button {
    width: 100%;
  }
  .index-nav-tabs {
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    flex-wrap: nowrap;
  }
  .index-nav-tabs .a {
    display: inline-block;
  }
  .index-category-title {
    font-size: 35px;
    color: #323232;
    line-height: 38px;
  }
  .index-owl-title {
    font-family: Axiforma, sans-serif;
    font-size: 18px;
    color: #fff;
    font-weight: 300;
    line-height: 1em;
  }
  .index-owl-model {
    font-family: Axiforma, sans-serif;
    font-size: 28px;
    color: #fff;
    line-height: 1em;
    font-weight: 800;
  }
  .owl-container {
    height: 456px;
    width: 294px;
  }
  .index-owl-list {
    font-family: Axiforma, sans-serif;
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    padding: 0;
    padding-left: 13px;
  }
  .index-owl-btn {
    font-family: Axiforma, sans-serif;
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    border: 1px solid #FFFFFF;
    background-color: transparent;
    border-radius: 30px;
    width: 100%;
    z-index: 1233;
    position: relative;
  }
  .abs-img {
    background-image: url(img/index-owl-abs-img.png);
    height: 77px;
    position: static;
    right: -300px;
    bottom: 0;
    width: 100%;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-bottom: 20px;
  }
  .abs-img-1 {
    background-image: url(img/benzo.png);
    height: 77px;
    position: static;
    right: -300px;
    bottom: 0;
    width: 100%;
    padding: 0;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-bottom: 20px;
  }
  .owl-bg-1 {
    padding: 30px;
  }
  .owl-bg {
    padding: 30px;
  }
  .index-info-text {
    font-size: 16px;
    line-height: 21px;
  }
  .index-info {
    flex-direction: row-reverse;
    padding-left: 0;
    clip-path: border-box;
    gap: 20px;
  }
  .footer-ul li {
    padding-bottom: 20px;
  }
  .footer-ul li:last-child {
    padding-bottom: 0;
  }
  .product-all-characteristics {
    margin-top: 20px;
  }
  .about-title {
    font-size: 32px;
  }
  .contact-send-icon {
    margin-bottom: -48px;
    justify-content: center;
  }
  .contact-send-icon svg {
    margin-right: -100px;
  }
}
@media (min-width: 481px) and (max-width: 767px) {
  .filters-mobile-title {
    border-radius: 10px;
    background-color: rgba(238, 103, 0, 0.2);
    padding: 13px;
    color: #EE6700 !important;
  }
  .filters-mobile-title svg path {
    fill: #EE6700;
  }
  .filters-mobile-title h2 {
    margin: 0;
  }
  .filters-mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }
  .filters-mobile-menu .mobile-border {
    padding: 25px 15px;
    border-radius: 0px 0px 10px 10px;
    border: 1px solid #E9E9E9;
  }
  .advantages-list {
    padding: 20px 20px;
  }
  .advantages-list ul {
    padding: 0;
  }
  .product-titles {
    font-size: 32px;
  }
  .product-features-box {
    font-size: 13px;
    padding: 11px;
  }
  .product-description {
    border: none;
    line-height: 1em;
  }
  .product-title {
    font-size: 24px;
    line-height: 1em;
  }
  .product-title span {
    font-size: 24px;
  }
  .product-sections {
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
  }
  .product-sections .a {
    display: inline-block;
  }
  .timeline-title::after {
    content: none;
  }
  .timeline {
    border-right: none;
  }
  .table-container {
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
  }
  .article-steps-title {
    font-size: 27px;
    line-height: 32px;
  }
  .article-steps-subtitle {
    font-size: 26px;
    line-height: 32px;
    margin-top: 25px;
  }
  .article-video {
    height: 190px;
    margin-bottom: 55px;
  }
  .contact-page-container {
    padding: 0;
  }
  .contact-page-left {
    padding: 40px 15px;
  }
  .contact-page-left-text {
    font-size: 13px;
  }
  .contact-page-left-text span {
    font-size: 16px;
    line-height: 1em;
  }
  .contact-page-left-title {
    font-size: 21px;
    text-align: center;
  }
  .contact-form-container {
    padding: 40px 0;
    padding-bottom: 0;
  }
  .contact-send-btn button {
    width: 100%;
  }
  .index-nav-tabs {
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    flex-wrap: nowrap;
  }
  .index-nav-tabs .a {
    display: inline-block;
  }
  .index-category-title {
    font-size: 35px;
    color: #323232;
    line-height: 38px;
  }
  .index-owl-title {
    font-family: Axiforma, sans-serif;
    font-size: 18px;
    color: #fff;
    font-weight: 300;
    line-height: 1em;
  }
  .index-owl-model {
    font-family: Axiforma, sans-serif;
    font-size: 28px;
    color: #fff;
    line-height: 1em;
    font-weight: 800;
  }
  .owl-container {
    height: 456px;
    width: 294px;
  }
  .index-owl-list {
    font-family: Axiforma, sans-serif;
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    padding: 0;
    padding-left: 13px;
  }
  .index-owl-btn {
    font-family: Axiforma, sans-serif;
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    border: 1px solid #FFFFFF;
    background-color: transparent;
    border-radius: 30px;
    width: 100%;
    z-index: 1233;
    position: relative;
  }
  .abs-img {
    background-image: url(img/index-owl-abs-img.png);
    height: 77px;
    position: static;
    right: -300px;
    bottom: 0;
    width: 100%;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-bottom: 20px;
  }
  .abs-img-1 {
    background-image: url(img/benzo.png);
    height: 77px;
    position: static;
    right: -300px;
    bottom: 0;
    width: 100%;
    padding: 0;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-bottom: 20px;
  }
  .owl-bg-1 {
    padding: 30px;
  }
  .owl-bg {
    padding: 30px;
  }
  .index-info-text {
    font-size: 16px;
    line-height: 21px;
  }
  .index-info {
    flex-direction: row-reverse;
    padding-left: 0;
    clip-path: border-box;
    gap: 20px;
  }
  .footer-ul li {
    padding-bottom: 20px;
  }
  .footer-ul li:last-child {
    padding-bottom: 0;
  }
  .product-all-characteristics {
    margin-top: 20px;
  }
  .about-title {
    font-size: 32px;
  }
  .contact-send-icon {
    margin-bottom: -48px;
    justify-content: center;
  }
  .contact-send-icon svg {
    margin-right: -100px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .filters-mobile-title {
    border-radius: 10px;
    background-color: rgba(238, 103, 0, 0.2);
    padding: 13px;
    color: #EE6700 !important;
  }
  .filters-mobile-title svg path {
    fill: #EE6700;
  }
  .filters-mobile-title h2 {
    margin: 0;
  }
  .filters-mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }
  .filters-mobile-menu .mobile-border {
    padding: 25px 15px;
    border-radius: 0px 0px 10px 10px;
    border: 1px solid #E9E9E9;
  }
  .advantages-list {
    padding: 20px 20px;
  }
  .advantages-list ul {
    padding: 0;
  }
  .product-titles {
    font-size: 32px;
  }
  .product-features-box {
    font-size: 13px;
    padding: 11px;
  }
  .product-description {
    border: none;
    line-height: 1em;
  }
  .product-title {
    font-size: 24px;
    line-height: 1em;
  }
  .product-title span {
    font-size: 24px;
  }
  .product-sections {
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
  }
  .product-sections .a {
    display: inline-block;
  }
  .timeline-title::after {
    content: none;
  }
  .timeline {
    border-right: none;
  }
  .table-container {
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
  }
  .article-steps-title {
    font-size: 27px;
    line-height: 32px;
  }
  .article-steps-subtitle {
    font-size: 26px;
    line-height: 32px;
    margin-top: 25px;
  }
  .article-video {
    height: 190px;
    margin-bottom: 55px;
  }
  .contact-page-container {
    padding: 0;
  }
  .contact-page-left {
    padding: 40px 15px;
  }
  .contact-page-left-text {
    font-size: 13px;
  }
  .contact-page-left-text span {
    font-size: 16px;
    line-height: 1em;
  }
  .contact-page-left-title {
    font-size: 21px;
    text-align: center;
  }
  .contact-form-container {
    padding: 40px 0;
    padding-bottom: 0;
  }
  .contact-send-btn button {
    width: 100%;
  }
  .index-nav-tabs {
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    flex-wrap: nowrap;
  }
  .index-nav-tabs .a {
    display: inline-block;
  }
  .index-category-title {
    font-size: 35px;
    color: #323232;
    line-height: 38px;
  }
  .index-owl-title {
    font-family: Axiforma, sans-serif;
    font-size: 18px;
    color: #fff;
    font-weight: 300;
    line-height: 1em;
  }
  .index-owl-model {
    font-family: Axiforma, sans-serif;
    font-size: 28px;
    color: #fff;
    line-height: 1em;
    font-weight: 800;
  }
  .owl-container {
    height: 456px;
    width: 294px;
  }
  .index-owl-list {
    font-family: Axiforma, sans-serif;
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    padding: 0;
    padding-left: 13px;
  }
  .index-owl-btn {
    font-family: Axiforma, sans-serif;
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    border: 1px solid #FFFFFF;
    background-color: transparent;
    border-radius: 30px;
    width: 100%;
    z-index: 1233;
    position: relative;
  }
  .abs-img {
    background-image: url(img/index-owl-abs-img.png);
    height: 77px;
    position: static;
    right: -300px;
    bottom: 0;
    width: 100%;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-bottom: 20px;
  }
  .abs-img-1 {
    background-image: url(img/benzo.png);
    height: 77px;
    position: static;
    right: -300px;
    bottom: 0;
    width: 100%;
    padding: 0;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-bottom: 20px;
  }
  .owl-bg-1 {
    padding: 30px;
  }
  .owl-bg {
    padding: 30px;
  }
  .index-info-text {
    font-size: 16px;
    line-height: 21px;
  }
  .index-info {
    flex-direction: row-reverse;
    padding-left: 0;
    clip-path: border-box;
    gap: 20px;
  }
  .footer-ul li {
    padding-bottom: 20px;
  }
  .footer-ul li:last-child {
    padding-bottom: 0;
  }
  .product-all-characteristics {
    margin-top: 20px;
  }
  .about-title {
    font-size: 32px;
  }
  .contact-send-icon {
    margin-bottom: -48px;
    justify-content: center;
  }
  .contact-send-icon svg {
    margin-right: -100px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .nav-list li {
    font-size: 14px;
  }
  .advantages-list {
    padding: 20px 20px;
  }
  .advantages-list ul {
    padding: 0;
  }
  .product-titles {
    font-size: 32px;
  }
  .product-features-box {
    font-size: 13px;
    padding: 11px;
  }
  .product-description {
    border: none;
    line-height: 1em;
  }
  .product-title {
    font-size: 24px;
    line-height: 1em;
  }
  .product-title span {
    font-size: 24px;
  }
  .product-sections {
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
  }
  .product-sections .a {
    display: inline-block;
  }
  .timeline-title::after {
    content: none;
  }
  .timeline {
    border-right: none;
  }
  .table-container {
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
  }
  .article-steps-title {
    font-size: 27px;
    line-height: 32px;
  }
  .article-steps-subtitle {
    font-size: 26px;
    line-height: 32px;
    margin-top: 25px;
  }
  .article-video {
    height: 190px;
    margin-bottom: 55px;
  }
  .contact-page-container {
    padding: 0;
  }
  .contact-page-left {
    padding: 40px 15px;
  }
  .contact-page-left-text {
    font-size: 13px;
  }
  .contact-page-left-text span {
    font-size: 16px;
    line-height: 1em;
  }
  .contact-page-left-title {
    font-size: 21px;
    text-align: center;
  }
  .contact-form-container {
    padding: 40px 0;
    padding-bottom: 0;
  }
  .contact-send-btn button {
    width: 100%;
  }
  .index-nav-tabs {
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    flex-wrap: nowrap;
  }
  .index-nav-tabs .a {
    display: inline-block;
  }
  .index-category-title {
    font-size: 35px;
    color: #323232;
    line-height: 38px;
  }
  .index-owl-title {
    font-family: Axiforma, sans-serif;
    font-size: 18px;
    color: #fff;
    font-weight: 300;
    line-height: 1em;
  }
  .index-owl-model {
    font-family: Axiforma, sans-serif;
    font-size: 28px;
    color: #fff;
    line-height: 1em;
    font-weight: 800;
  }
  .owl-container {
    height: 456px;
    width: 294px;
  }
  .index-owl-list {
    font-family: Axiforma, sans-serif;
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    padding: 0;
    padding-left: 13px;
  }
  .index-owl-btn {
    font-family: Axiforma, sans-serif;
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    border: 1px solid #FFFFFF;
    background-color: transparent;
    border-radius: 30px;
    width: 100%;
    z-index: 1233;
    position: relative;
  }
  .abs-img {
    background-image: url(img/index-owl-abs-img.png);
    height: 77px;
    position: static;
    right: -300px;
    bottom: 0;
    width: 100%;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-bottom: 20px;
  }
  .abs-img-1 {
    background-image: url(img/benzo.png);
    height: 77px;
    position: static;
    right: -300px;
    bottom: 0;
    width: 100%;
    padding: 0;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-bottom: 20px;
  }
  .owl-bg-1 {
    padding: 30px;
  }
  .owl-bg {
    padding: 30px;
  }
  .index-info-text {
    font-size: 16px;
    line-height: 21px;
  }
  .index-info {
    flex-direction: row-reverse;
    padding-left: 0;
    clip-path: border-box;
    gap: 20px;
  }
  .footer-ul li {
    padding-bottom: 20px;
  }
  .footer-ul li:last-child {
    padding-bottom: 0;
  }
  .product-all-characteristics {
    margin-top: 20px;
  }
  .about-title {
    font-size: 32px;
  }
  .contact-send-icon {
    margin-bottom: -48px;
    justify-content: center;
  }
  .contact-send-icon svg {
    margin-right: -100px;
  }
  .nav-second-list a {
    font-size: 12px;
  }
  .nav-second-list li {
    font-size: 12px;
  }
  .nav-list li a {
    font-size: 12px;
  }
}
@media (min-width: 1200px) and (max-width: 1359px) {
  .nav-list li {
    font-size: 14px;
  }
  .advantages-list {
    padding: 20px 20px;
  }
  .advantages-list ul {
    padding: 0;
  }
  .product-titles {
    font-size: 32px;
  }
  .product-features-box {
    font-size: 13px;
    padding: 11px;
  }
  .product-description {
    border: none;
    line-height: 1em;
  }
  .product-title {
    font-size: 24px;
    line-height: 1em;
  }
  .product-title span {
    font-size: 24px;
  }
  .product-sections {
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
  }
  .product-sections .a {
    display: inline-block;
  }
  .timeline-title::after {
    content: none;
  }
  .timeline {
    border-right: none;
  }
  .table-container {
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
  }
  .article-steps-title {
    font-size: 27px;
    line-height: 32px;
  }
  .article-steps-subtitle {
    font-size: 26px;
    line-height: 32px;
    margin-top: 25px;
  }
  .article-video {
    height: 190px;
    margin-bottom: 55px;
  }
  .contact-page-container {
    padding: 0;
  }
  .contact-page-left {
    padding: 40px 15px;
  }
  .contact-page-left-text {
    font-size: 13px;
  }
  .contact-page-left-text span {
    font-size: 16px;
    line-height: 1em;
  }
  .contact-page-left-title {
    font-size: 21px;
    text-align: center;
  }
  .contact-form-container {
    padding: 40px 0;
    padding-bottom: 0;
  }
  .contact-send-btn button {
    width: 100%;
  }
  .index-nav-tabs {
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    flex-wrap: nowrap;
  }
  .index-nav-tabs .a {
    display: inline-block;
  }
  .index-category-title {
    font-size: 35px;
    color: #323232;
    line-height: 38px;
  }
  .index-owl-title {
    font-family: Axiforma, sans-serif;
    font-size: 18px;
    color: #fff;
    font-weight: 300;
    line-height: 1em;
  }
  .index-owl-model {
    font-family: Axiforma, sans-serif;
    font-size: 28px;
    color: #fff;
    line-height: 1em;
    font-weight: 800;
  }
  .owl-container {
    height: 456px;
    width: 294px;
  }
  .index-owl-list {
    font-family: Axiforma, sans-serif;
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    padding: 0;
    padding-left: 13px;
  }
  .index-owl-btn {
    font-family: Axiforma, sans-serif;
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    border: 1px solid #FFFFFF;
    background-color: transparent;
    border-radius: 30px;
    width: 100%;
    z-index: 1233;
    position: relative;
  }
  .abs-img {
    background-image: url(img/index-owl-abs-img.png);
    height: 77px;
    position: static;
    right: -300px;
    bottom: 0;
    width: 100%;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-bottom: 20px;
  }
  .abs-img-1 {
    background-image: url(img/benzo.png);
    height: 77px;
    position: static;
    right: -300px;
    bottom: 0;
    width: 100%;
    padding: 0;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-bottom: 20px;
  }
  .owl-bg-1 {
    padding: 30px;
  }
  .owl-bg {
    padding: 30px;
  }
  .index-info-text {
    font-size: 16px;
    line-height: 21px;
  }
  .index-info {
    flex-direction: row-reverse;
    padding-left: 0;
    clip-path: border-box;
    gap: 20px;
  }
  .footer-ul li {
    padding-bottom: 20px;
  }
  .footer-ul li a {
    font-size: 14px;
  }
  .footer-ul li:last-child {
    padding-bottom: 0;
  }
  .product-all-characteristics {
    margin-top: 20px;
  }
  .about-title {
    font-size: 32px;
  }
  .contact-send-icon {
    margin-bottom: -48px;
    justify-content: center;
  }
  .contact-send-icon svg {
    margin-right: -100px;
  }
  .footer-title {
    font-size: 14px;
  }
  .footer-paragraph {
    font-size: 14px;
  }
  .footer-contact-border {
    font-size: 14px;
  }
  .product-btn-from-where {
    padding: 0;
  }
}

/*# sourceMappingURL=style.css.map */
