:root {
  --c-one: #fec303;
  --c-two: #a73501;
  --c-tree: #121212;
  --c-four: #e3e3e3;
  --c-text: #353535;
  --c-white: #fff;
  --c-black: #000;
  --gap: 30px;
  --sgap: 15px;
  --br,
  --bs-border-radius-sm: 1px;
  --bs-border-radius: 1px;
}



/* TOP CAROUSEL */
.top-carousel {}


.top-carousel__slide {
  width: 100%;
  min-height: 550px;
  background-image: url(../image/slides/slide-1.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: grid;
}

.carousel-item:nth-child(1) .top-carousel__slide {
  background-image: url(../image/slides/slide-1.jpg);
}

.carousel-item:nth-child(2) .top-carousel__slide {
  background-image: url(../image/slides/slide-2.jpg);
}

.carousel-item:nth-child(3) .top-carousel__slide {
  background-image: url(../image/slides/slide-3.jpg);
}
.carousel-item:nth-child(4) .top-carousel__slide {
  background-image: url(../image/slides/slide-4.jpg);
}
.carousel-item:nth-child(5) .top-carousel__slide {
  background-image: url(../image/slides/slide-5.jpg);
}

.top-carousel__slide::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  z-index: 0;
  opacity: 0;
}

/* .carousel-item::after {
  position: absolute;
  content: '';
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(50, 50, 50, 0.55);
} */

.top-carousel__wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  justify-content: flex-end;
  padding-bottom: 30px;
}

.top-carousel__text {
  display: flex;
  flex-direction: column;
  width: fit-content;
  padding: 30px;
  background: rgba(0, 0, 0, 0.70);
  border-radius: var(--br);
}

h1.top-carousel__h1 {
  margin: 0 0 30px 0;
  padding: 0;
  color: #fff;
  text-align: left;
  font-size: 2.4rem;
  line-height: 3.5rem;
  font-weight: 400;
}

h1.top-carousel__h1 span {
  font-size: inherit;
  color: var(--c-one);
  font-weight: 400;
}

ul.top-carousel__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

ul.top-carousel__list li {
  position: relative;
  padding-left: 30px;
  font-size: 1.5rem;
  color: var(--c-white);
}

ul.top-carousel__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: calc(50% - 10px);
  width: 20px;
  height: 20px;
  background: url(../image/icons/check-circle.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* END TOP CAROUSEL */

/* ABOUT -----------------------------------------------*/

.about {
  padding: 30px;
  position: relative;
}

.about__text {
  font-size: 1.1rem;
}


ul.about__text-list {
  list-style: none;
  margin: 10px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  /* gap: 5px; */
}

ul.about__text-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 500;
  color: var(--c-text);
}

ul.about__text-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: calc(50% - 7px);
  width: 15px;
  height: 15px;
  background: url(../image/icons/check-circle.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.aslider {
  height: 420px;
  overflow: hidden;
  margin-bottom: 1px;
}

.aslider ul {
  margin: 0;
  padding: 0;
}

.aslider .bx-prev {
  top: 45% !important;
}

.aslider .bx-next {
  top: 45% !important;
}

/* Кнопки управления */
.bx-wrapper {
  position: relative;
}

.aslider .bx-controls-direction {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 536px;
}

.aslider .bx-controls-direction a:hover {
  filter: brightness(90%);
}
.bx-wrapper .bx-next {
  background: url(https://snipp.ru/demo/193/next.png) 0 0 no-repeat;
}
.bx-wrapper .bx-next:hover, .bx-wrapper .bx-next:focus {
  background-position: 0 0 ;
}
.bx-wrapper .bx-prev {
  background: url(https://snipp.ru/demo/193/prev.png) 0 0 no-repeat;
}
.bx-wrapper .bx-prev:hover, .bx-wrapper .bx-prev:focus {
  background-position: 0 0 ;
}
.aslider .bx-prev {
  background: url(https://snipp.ru/demo/193/prev.png) 0 0 no-repeat;
  display: inline-block;
  width: 30px;
  height: 30px;
  position: absolute;
  margin-top: -15px;
  top: 50%;
  left: 30px !important;
  overflow: hidden;
  text-indent: 999px;
  z-index: 100;
}

.aslider .bx-next {
  background: url(https://snipp.ru/demo/193/next.png) 0 0 no-repeat;
  display: inline-block;
  width: 30px;
  height: 30px;
  position: absolute;
  margin-top: -15px;
  top: 50%;
  right: 30px;
  overflow: hidden;
  text-indent: 999px;
  z-index: 100;
}
.aslider .bx-wrapper .bx-prev {
  left: 16px !important;
}
.aslider .bx-wrapper .bx-next {
  right: 16px !important;
}
.aslider .bx-next:hover, .aslider .bx-next:focus {
  background-position: initial;
}
.aslider .bx-prev:hover, .aslider .bx-prev:focus {
  background-position: initial;
}

/* Превью */
.aslider_pager ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.aslider_pager li {
  margin: 0 1px 10px 0;
  display: inline-block;
  width: 100px;
}

.aslider_pager li a img {
  border: 1px solid var(--c-white);
  width: 100%;
  height: auto;
}

.aslider_pager .active img {
  border: 1px solid var(--c-one);
}

.slider__img {
  object-fit: cover;
  width: 100%;
  height: auto;
}
.about__slider .bx-wrapper {
  border: none;
}
/* 
.about__slider .bx-controls {
  display: none;
}

.about__slider .slider_pager {
  position: absolute;
    bottom: 0;
    left: 10px;
    right: 10px;
}

.about__slider .bx-wrapper {
  margin: 0;
} */
/* END ABOUT -----------------------------------------------*/


/* WAREHOUSE -----------------------------------------------*/

.warehouse {
  background: rgb(254 195 3 / 60%);
}

.warehouse::before {
  position: absolute;
  content: '';
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-image: url(../image/bg-warehouse.jpg);
  background-repeat: repeat;
  background-position: bottom;
  z-index: -1;
  opacity: .3;
}


@media (max-width: 767px) {
  .carousel-multy .carousel-inner .carousel-item>div {
    display: none;
  }

  .carousel-multy .carousel-inner .carousel-item>div:first-child {
    display: block;
  }
}

.carousel-multy .carousel-inner .carousel-item.active,
.carousel-multy .carousel-inner .carousel-item-next,
.carousel-multy .carousel-inner .carousel-item-prev {
  display: flex;
}

/* medium and up screens */
@media (min-width: 768px) {

  .carousel-multy .carousel-inner .carousel-item-end.active,
  .carousel-multy .carousel-inner .carousel-item-next {
    transform: translateX(25%);
  }

  .carousel-multy .carousel-inner .carousel-item-start.active,
  .carousel-multy .carousel-inner .carousel-item-prev {
    transform: translateX(-25%);
  }
}

.carousel-multy .carousel-inner .carousel-item-end,
.carousel-multy .carousel-inner .carousel-item-start {
  transform: translateX(0);
}
.bx-wrapper .bx-next {
  right: -45px !important;
}
.bx-wrapper .bx-prev {
  left: -45px !important;
}
/* END WAREHOUSE -----------------------------------------------*/


/* CLIENTS CAROUSEL -----------------------------------------------*/

.clients-carousel {
  background: rgb(254 195 3 / 80%);
}

.clients-carousel::before {
  position: absolute;
  content: '';
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-image: url(../image/bg-cc.jpg);
  background-repeat: repeat;
  background-position: bottom;
  z-index: -1;
  opacity: .3;
}
/* END CLIENTS CAROUSEL -----------------------------------------------*/

/*  MAP -----------------------------------------------*/
.map {
  padding: 30px 0;
  position: relative;
}

.map__gif {
  height: 100%;
  max-height: 400px;
}

/* END MAP -----------------------------------------------*/

/* FAQ -----------------------------------------------*/
.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 15px;
  font-size: 1.2rem;
  color: var(--c-text);
  text-align: left;
  border-radius: var(--br);
  overflow-anchor: none;
  margin-top: 0px;
  background-color: var(--c-white);
  border: 1px solid var(--c-one);
}

.accordion-button:focus {
  z-index: 3;
  border-color: none;
  outline: 0;
  box-shadow: none;
  border: 1px solid var(--c-one);
}

.accordion-button:not(.collapsed) {
  color: var(--c-text);
  background-color: #fffcf6;
  box-shadow: none;
  border: 1px solid var(--c-one);
}

.accordion-body {
  padding: 15px 0;
}

.accordion-item {
  border: none;
  margin-bottom: var(--sgap);
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}

.faq__accordion {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sgap);
  margin-top: 30px;
}

.faq__accordion-item .accordion-body {
  padding: 15px 15px 0 15px;
}

.accordion-item:first-of-type>.accordion-header .accordion-button {
  border-top-left-radius: var(--br);
  border-top-right-radius: var(--br);
}

.accordion-item:last-of-type>.accordion-header .accordion-button.collapsed {
  border-bottom-right-radius: var(--br);
  border-bottom-left-radius: var(--br);
}

/* END FAQ -----------------------------------------------*/


/* leed -----------------------------------------------*/

.leed {}

.leed::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../image/bg-leed.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -2;
  opacity: 0.5;
}

.leed::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--c-one);
  z-index: -1;
  opacity: 0.8;
}

.leed__wrapper {
  background: url(../image/bg-leed-wrap.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 30px;
  border-radius: var(--br);
  margin-left: auto;
}

.leed__block {
  min-height: 400px;
  padding: 30px;
  background: rgb(255 255 255 / 85%);
  width: 35%;
  border-radius: var(--br);
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
}

.leed__title {
  font-size: 1.7rem;
  text-align: center;
  display: block;
  margin-bottom: 30px;
  line-height: 2.5rem;
}
.leed__block-mswr {
  background: var(--c-black);
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  width: 100%;
}
.product-benefit {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--c-two);
  text-align: center;
}

/* END LEED -----------------------------------------------*/

/* MAIN CATEGORIES -----------------------------------------------*/
.catprod {
  background: #f4f8fa;
}
.catprod .site-title span {
  background: #f4f8fa;
}
.catprod__wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sgap);
}

.catprod__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: var(--sgap);
  background: var(--c-white);
  border: 1px var(--c-four) solid;
  border-radius: var(--br);
  position: relative;
  transition: border .2s ease-in-out,
    box-shadow .2s ease-in-out;
}


.catprod__item:hover {
  border: 1px var(--c-one) solid;
  box-shadow: 0 0 4px #dedcdc;
}

img.catprod__item-image {
  max-height: 200px;
  width: auto;
  object-fit: cover;
  position: relative;
  margin-bottom: 15px;
}

.catprod__item-title {
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-style: normal;
  text-align: center;
  font-size: 1.7rem;
  line-height: normal;
  color: var(--c-text);
}

/* END MAIN CATEGORIES -----------------------------------------------*/

.detuning-title {
  padding: 0 200px;
  line-height: normal;
  font-size: 1.8rem;
}
.detuning-title span {
  
}


/* STOCK -------------------------------------------------------------*/

.stock {
  position: relative;
  padding: 30px 0;
  background: rgb(0 0 0 / 70%);
}

.stock::before {
  position: absolute;
  content: '';
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-image: url(../image/bg-stock.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  z-index: -1;
}

.stock-title {
  color: var(--c-white);
}
.stock .red {
  color: var(--c-two);
  text-align: center;
}

.stock__block-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  min-height: 100%;
  background: var(--c-white);
  padding: 30px;
}

.stock__block-right {
  background: var(--c-white);
  padding: 30px;
  border-radius: var(--br);
}
.cat-item.stock__item {
  width: 100%;
  background: var(--c-white);
}

.stock__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--c-two);
  display: block;
  text-align: center;
}

.stock__stroke-price {
  display: block;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  color: var(--c-two);
}

.stock__stroke-price span {
  font-size: 2rem;
  font-weight: 400;
  color: var(--c-two);
  text-decoration: line-through;
  margin-right: 15px;
}

ul.stock__options {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
}

ul.stock__options li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  border-bottom: 1px #495057 dashed;
  line-height: normal;
  padding: 5px 0;
}

ul.stock__options li span {
  font-size: 0.9rem;
  line-height: 1.2rem;
  color: #495057;
}

.stock ul.products {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
}

.timer {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
}

.timer__items {
  display: flex;
  font-size: 48px;
  min-height: 55px;
}

.timer__item {
  position: relative;
  width: 70px;
  margin-left: 10px;
  margin-right: 10px;
  padding-bottom: 15px;
  text-align: center;
  font-size: 3rem;
  color: var(--c-black);
}

.timer__item::before {
  content: attr(data-title);
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  font-size: 16px;
}

.timer__item:not(:last-child)::after {
  content: ':';
  position: absolute;
  right: -15px;
  top: 12%;
  font-size: 2rem;
}

/* END STOCK --------------------------------------------------------*/

.reviews {
  min-height: 400px;
}