.container-big {
  max-width: 1920px;
}

.home-hero-slider {
  margin-bottom: 34px;
}
.home-hero-slider .swiper-pagination {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  scroll-behavior: smooth;
}
.home-hero-slider .swiper-pagination-bullet-active {
  background: #333;
  color: #fff;
}

.home-hero-controls-wrapper {
  max-width: 1256px;
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  right: 0;
  z-index: 1;
  height: 48px;
  padding-left: var(--padd-container);
  padding-right: var(--padd-container);
}

@media (min-width: 992px) {
  .home-hero-thumb-slider {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    height: 40px;
  }
}
.home-hero-thumb-slider {
  width: 100%;
}
.home-hero-thumb-slider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  padding: 0 13px;
  transition: background-color var(--hover-transition) ease;
  flex: 1 0 auto;
  white-space: nowrap;
  width: auto !important;
  user-select: none;
}
.home-hero-thumb-slider .swiper-slide-thumb-active,
.home-hero-thumb-slider .swiper-slide:hover {
  background-color: rgba(0, 0, 0, 0.08);
}
.home-hero-thumb-slider .swiper-slide:first-of-type {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.home-hero-thumb-slider .swiper-slide:last-of-type {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.hero-swiper-btns-wrapper {
  position: absolute;
  top: 28%;
  z-index: 2;
  pointer-events: none;
  width: 100%;
  overflow: hidden;
}

.hero-swiper-btn {
  pointer-events: all;
  cursor: pointer;
  transition: transform var(--hover-transition) ease;
  user-select: none;
}
.hero-swiper-btn .hero-swiper-btn-bg {
  transition: fill var(--hover-transition) ease;
}
.hero-swiper-btn:hover .hero-swiper-btn-bg {
  fill: #d8d8d8;
}

.hero-swiper-btn-prev {
  transform: translateX(-100%);
}

.hero-swiper-btn-next {
  transform: translateX(100%);
}

.home-hero-slider-container:hover .hero-swiper-btn {
  transform: translateX(0);
}

.home-hero-img {
  width: 100%;
}

@media (min-width: 900px) {
  .home-hero-img {
    min-height: 380px;
    object-fit: cover;
  }
}
.home-hero-slider-content {
  position: absolute;
  top: calc(50% - 24px);
  left: 0;
  transform: translateY(-50%);
  width: 100%;
}

.home-hero-desc p {
  margin: 0;
  line-height: 30px;
}

.home-hero-pretitle {
  margin-bottom: 14px;
  color: rgb(82, 82, 82);
}

.hero-content-container {
  max-width: 1256px;
  padding: 0 var(--padd-container);
}

.home-hero-content-maxw {
  max-width: 60%;
}

@media (min-width: 1920px) {
  .home-hero-slider-container {
    max-width: 1600px;
    border-radius: var(--radius12);
    margin-top: 34px;
  }
  .home-hero-slider,
  .home-hero-img {
    border-radius: var(--radius12);
  }
}
@media (min-width: 1537px) {
  .hero-content-container,
  .home-hero-controls-wrapper {
    max-width: 1488px;
  }
}
@media (max-width: 1199px) {
  .hero-swiper-btns-wrapper {
    display: none;
  }
  .home-hero-slider-content {
    display: none;
  }
}
@media (max-width: 991px) {
  .home-hero-slide {
    height: auto;
  }
  .home-hero-slider {
    margin-bottom: 0;
  }
  .home-hero-slider-container {
    padding-top: 13px;
    padding-left: var(--padd-container);
    padding-right: var(--padd-container);
    padding-bottom: 20px;
  }
  .home-hero-img {
    border-radius: var(--sectionRadius);
    height: 100%;
    object-fit: cover;
  }
  .home-hero-controls-wrapper {
    max-width: 90%;
    position: relative;
    bottom: unset;
    left: unset;
    width: 100%;
    right: unset;
    z-index: 1;
    height: auto;
    padding-left: 0;
    padding-right: 0;
    top: 8px;
    padding-bottom: 6px;
  }
  .home-hero-slider {
    z-index: 2;
  }
  .home-hero-controls-slide span {
    display: none;
  }
  .home-hero-slider {
    border-radius: var(--sectionRadius);
  }
  .home-hero-thumb-slider {
    height: 6px;
  }
  .home-hero-thumb-slider .swiper-wrapper {
    gap: 0 3px;
  }
  .home-hero-controls-slide:first-of-type {
    border-top-left-radius: var(--sectionRadius);
    border-bottom-left-radius: var(--sectionRadius);
  }
  .home-hero-controls-slide:last-of-type {
    border-top-right-radius: var(--sectionRadius);
    border-bottom-right-radius: var(--sectionRadius);
  }
  .home-hero-thumb-slider .home-hero-controls-slide {
    background: var(--gray);
    padding: 0;
    border-radius: var(--sectionRadius);
    position: relative;
  }
  .home-hero-controls-slide::after {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gray);
    border-radius: var(--sectionRadius);
  }
  .home-hero-controls-wrapper .home-hero-controls-slide--active::after {
    background: linear-gradient(to left, var(--gray) var(--progress-pct), var(--theme) 0%);
  }
}
.default-slider-btns-wrapper {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 1;
  pointer-events: none;
}

.default-slider-btn {
  position: relative;
  top: unset;
  right: unset;
  left: unset;
  pointer-events: all;
  transform: unset;
  width: 42px;
  height: 42px;
  background: #fff;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.15s ease;
}

.default-slider-btn:hover:not(.swiper-button-disabled) {
  background: var(--gray2);
  border: 1px solid var(--gray2);
}

.default-slider .swiper-button-disabled:hover {
  opacity: 0.6;
}

.default-slider .swiper-button-disabled:not(:hover) {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 991px) {
  .default-slider {
    overflow: visible;
    margin-left: calc(var(--padd-container) * -1);
    margin-right: calc(var(--padd-container) * -1);
  }
  .default-slider.added_popup_page-slider {
    margin-left: auto;
    margin-right: auto;
  }
  .default-slider-btns-wrapper {
    display: none;
  }
  .default-slider-wrapper {
    display: flex;
    overflow: hidden;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .default-slide,
  .popup-product-slide {
    display: flex;
  }
  .default-slide::before,
  .popup-product-slide::before {
    content: "";
    display: block;
    min-width: var(--padd-container);
    width: var(--padd-container);
  }
  .default-slide:last-of-type::after,
  .popup-product-slide:last-of-type::after {
    content: "";
    display: block;
    min-width: var(--padd-container);
    width: var(--padd-container);
  }
  .default-slide,
  .popup-product-slide {
    flex: 0 0 auto;
    width: 28.5714285714%;
  }
  .default-slide:last-of-type,
  .popup-product-slide:last-of-type {
    width: calc(28.5714285714% + var(--padd-container));
  }
  .brands-slide,
  .categories-slide {
    width: 22.2222222222%;
  }
  .brands-slide:last-of-type,
  .categories-slide:last-of-type {
    width: calc(22.2222222222% + var(--padd-container));
  }
}
@media (max-width: 860px) {
  .default-slide,
  .popup-product-slide {
    width: 37.037037037%;
  }
  .default-slide:last-of-type,
  .popup-product-slide:last-of-type {
    width: calc(37.037037037% + var(--padd-container));
  }
  .brands-slide {
    width: 23.2558139535%;
  }
  .categories-slide,
  .brands-slide {
    width: 27.027027027%;
  }
  .brands-slide:last-of-type,
  .categories-slide:last-of-type {
    width: calc(27.027027027% + var(--padd-container));
  }
}
@media (max-width: 768px) {
  .default-slide {
    width: 40%;
  }
  .default-slide:last-of-type {
    width: calc(40% + var(--padd-container));
  }
  .categories-slide,
  .brands-slide {
    width: 30.303030303%;
  }
  .brands-slide:last-of-type,
  .categories-slide:last-of-type {
    width: calc(30.303030303% + var(--padd-container));
  }
}
@media (max-width: 640px) {
  .default-slide {
    width: 43.4782608696%;
  }
  .default-slide:last-of-type {
    width: calc(43.4782608696% + var(--padd-container));
  }
  .categories-slide,
  .brands-slide {
    width: 35.7142857143%;
  }
  .brands-slide:last-of-type,
  .categories-slide:last-of-type {
    width: calc(35.7142857143% + var(--padd-container));
  }
}
@media (max-width: 480px) {
  .default-slide {
    width: 58.8235294118%;
  }
  .default-slide:last-of-type {
    width: calc(58.8235294118% + var(--padd-container));
  }
  .categories-slide,
  .brands-slide {
    width: 37.037037037%;
  }
  .brands-slide:last-of-type,
  .categories-slide:last-of-type {
    width: calc(37.037037037% + var(--padd-container));
  }
}
@media (max-width: 425px) {
  .categories-slide,
  .brands-slide {
    width: 40%;
  }
  .brands-slide:last-of-type,
  .categories-slide:last-of-type {
    width: calc(40% + var(--padd-container));
  }
}
@media (max-width: 370px) {
  .default-slide {
    width: 68.9655172414%;
  }
  .default-slide:last-of-type {
    width: calc(68.9655172414% + var(--padd-container));
  }
  .categories-slide,
  .brands-slide {
    width: 40%;
  }
  .brands-slide:last-of-type,
  .categories-slide:last-of-type {
    width: calc(40% + var(--padd-container));
  }
}
@media (max-width: 350px) {
  .categories-slide,
  .brands-slide {
    width: 45.4545454545%;
  }
  .brands-slide:last-of-type,
  .categories-slide:last-of-type {
    width: calc(45.4545454545% + var(--padd-container));
  }
}
.block-promo {
  border: 2px solid var(--theme);
  border-radius: var(--sectionRadius);
}

@media (min-width: 1270px) {
  .col-featured-prod {
    -ms-flex: 0 0 28%;
    flex: 0 0 28%;
    max-width: 28%;
  }
  .product-mini-img .product-promo-image {
    width: 300px;
  }
}
.col-featured-prod:empty {
  display: none !important;
}

.cd-prod_container {
  background: var(--gray2);
  padding: 14px;
  border-radius: 8px;
}

.cd-prod-label-group {
  width: 78px;
  border-radius: 8px;
  background: #fff;
  padding: 4px;
}

.cd-prod_wrapper {
  text-align: center;
  gap: 0 6px;
  line-height: 18px !important;
}

@media (max-width: 500px) {
  .product-promo-image {
    max-width: 240px;
  }
}
@media (max-width: 370px) {
  .product-promo-image {
    max-width: 220px;
  }
}
.block-cat__circle {
  border-radius: 100%;
  background: var(--gray2);
  width: 180px;
  height: 180px;
}

.block-cat__title {
  transition: border-color 0.15s ease;
  border-bottom: 1px solid transparent;
}

.block-cat:hover .block-cat__title {
  border-color: var(--black);
}

.category-slider {
  padding-bottom: 4px;
}

.category-slider-btns-wrapper {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 1;
  pointer-events: none;
}

.cat-slider-btn {
  position: relative;
  top: unset;
  right: unset;
  left: unset;
  pointer-events: all;
  transform: unset;
  width: 42px;
  height: 42px;
  background: #fff;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.15s ease;
}

.cat-slider-btn:hover:not(.swiper-button-disabled) {
  background: var(--gray2);
  border: 1px solid var(--gray2);
}

.category-slider .swiper-button-disabled:hover {
  opacity: 0.6;
}

.category-slider .swiper-button-disabled:not(:hover) {
  opacity: 0;
  pointer-events: none;
}

@media (min-width: 992px) {
  .block-cat__circle-img {
    transition: all 0.2s ease-out;
  }
  .block-cat:hover .block-cat__circle-img {
    transform: scale(1.05);
  }
}
@media (max-width: 991px) {
  .category-slider {
    overflow: visible;
  }
  .category-slider-btns-wrapper {
    display: none;
  }
}
@media (max-width: 520px) {
  .block-cat__circle {
    width: 145px;
    height: 145px;
  }
  .block-cat__circle-img {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 385px) {
  .block-cat__circle {
    width: 135px;
    height: 135px;
  }
  .block-cat__circle-img {
    width: 85px;
    height: 85px;
  }
}
@media (max-width: 340px) {
  .block-cat__circle {
    width: 125px;
    height: 125px;
  }
  .block-cat__circle-img {
    width: 75px;
    height: 75px;
  }
}
.blog-item__img {
  aspect-ratio: 188/109;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #e9e9e9;
}

.blog-item__title,
.blog-short-desc {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.blog-short-desc {
  -webkit-line-clamp: 2;
}

.blog-item:hover .blog-item__title {
  text-decoration: underline;
}

.btn-more-news {
  display: none;
}

@media (max-width: 575px) {
  .btn-more-news {
    display: inline-block;
  }
}
.brand-logo {
  filter: grayscale(1);
  opacity: 0.9;
}

.brand-link:hover .brand-logo {
  filter: grayscale(0);
  opacity: 1;
}

@media (min-width: 992px) {
  .brand-logo {
    transition: all 0.2s ease-out;
  }
  .brand-link:hover .brand-logo {
    transform: scale(1.05);
  }
}
@media (max-width: 991px) {
  .brands-slider {
    overflow: visible;
  }
}
@media (max-width: 520px) {
  .block-brand__circle {
    width: 145px;
    height: 145px;
  }
  .brand-logo {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 385px) {
  .block-brand__circle {
    width: 135px;
    height: 135px;
  }
  .brand-logo {
    width: 85px;
    height: 85px;
  }
}
@media (max-width: 340px) {
  .block-brand__circle {
    width: 125px;
    height: 125px;
  }
  .brand-logo {
    width: 75px;
    height: 75px;
  }
}
.slider-ambassador {
  max-width: 568px;
}

.slider-ambassador::before,
.slider-ambassador::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: transparent;
  box-shadow: 0 0 30px 34px rgb(255, 255, 255);
  z-index: 1;
}

.slider-ambassador::after {
  left: unset;
  right: 0;
}

.ambassador-flag {
  border: 1px solid var(--border-color);
  background: var(--primary);
  padding: 4px 8px;
  text-align: center;
  color: #fff;
  width: fit-content;
  transform: translateY(-16px);
  margin-bottom: -16px;
}

.ambassador-desc {
  max-width: 328px;
}

.home-about-desc {
  max-width: 480px;
}

.ambassador-content {
  transition: opacity 0.3s ease;
  opacity: 0;
}

.slider-ambassador .splide__slide.is-active .ambassador-content {
  opacity: 1;
}

.slider-ambassador .splide__arrows {
  position: absolute;
  top: 45%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  z-index: 2;
}

.slider-ambassador .splide__arrow,
.slider-ambassador .splide__arrow:hover {
  opacity: 1;
}

.slider-ambassador .splide__arrow--prev {
  left: 65px;
}

.slider-ambassador .splide__arrow--next {
  right: 65px;
}

@media (max-width: 575px) {
  .slider-ambassador .splide__arrows {
    top: 40%;
  }
  .slider-ambassador .splide__arrow--prev {
    left: 20px;
  }
  .slider-ambassador .splide__arrow--next {
    right: 20px;
  }
}
.newsletter-inp {
  max-width: 360px;
}

.newsletter-note {
  max-width: 497px;
}

.newsletter-img {
  flex: 1;
  min-width: 0;
}

.btn-newsletter {
  min-width: 128px;
}

@media (max-width: 575px) {
  .btn-newsletter {
    min-width: 132px;
  }
}
.featured-row {
  flex-direction: column-reverse;
}

@media (min-width: 1271px) {
  .featured-row {
    flex-direction: row;
  }
}
.col-featured-list {
  -ms-flex: 0 0 72%;
  flex: 0 0 72%;
  max-width: 72%;
}

.col-featured-prod:empty ~ .col-featured-list {
  max-width: 100%;
  flex: 0 0 100%;
}

.col-featured-prod:empty ~ .col-featured-list .col-featured-item {
  max-width: 20%;
  flex: 0 0 20%;
}

@media (min-width: 1537px) {
  .col-featured-prod:empty ~ .col-featured-list .col-featured-item {
    max-width: 16.666667%;
    flex: 0 0 16.666667%;
  }
}
@media (min-width: 1270px) {
  .col-featured-item .product-image {
    width: 185px;
  }
  .col-featured-list .prod-link {
    height: unset;
  }
  .col-featured-list .prod-link .min_prod-link {
    -webkit-line-clamp: 1;
  }
  .col-featured-row {
    gap: 11px 0;
  }
}
.col-featured-prod:empty ~ .col-featured-list .col-featured-row > :nth-last-child(-n+2) {
  display: none;
}

.block-flex {
  flex: 1;
}

.product-promo-img-cta {
  flex: 1;
}

.featured-products-btns {
  display: none;
}

@media (max-width: 1270px) {
  .col-featured-prod,
  .col-featured-list {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .block-promo {
    padding: 20px;
  }
  .block-promo-header {
    padding-bottom: 34px;
  }
}
@media (max-width: 991px) {
  .col-featured-list .block-container {
    padding-left: 0;
    padding-right: 0;
    overflow: visible;
  }
}
@media (min-width: 700px) and (max-width: 1270px) {
  .product-promo-wrapper {
    flex-direction: row;
    padding-bottom: 20px;
  }
  .product-promo-img-cta {
    flex: 0 0 35%;
  }
  .product-promo-details-wrapper {
    padding-left: 25px;
    width: 100%;
  }
}
@media (min-width: 992px) and (max-width: 1270px) {
  .product-featured-btns {
    display: flex;
  }
  .featured-products-btns {
    display: flex;
  }
  .col-featured-row {
    display: flex;
    flex-wrap: nowrap;
  }
}

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