/*products */
.b-product {
  color: currentColor;
  text-decoration: none;
}

.b-product:hover {
  color: currentColor;
  text-decoration: none;
}
.b-product__slider img {
  width: 100%;
  height: auto;
  padding-bottom: 1rem;
  object-fit: contain;
  -webkit-filter: drop-shadow(3px 7px 7px rgba(0,0,0,0.5));
          filter: drop-shadow(3px 7px 7px rgba(0,0,0,0.5));
}

.b-product .swiper-pagination {
  font-size: 0;
  padding-top: 2vh;
}

.b-product .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #faf1e5;
  opacity: 1;
  -webkit-transition: 0.4s ease all;
  -o-transition: 0.4s ease all;
  transition: 0.4s ease all;
}

.b-product .swiper-pagination-bullet.swiper-pagination-bullet-active,
.b-product .swiper-pagination-bullet:hover,
.b-product .swiper-pagination-bullet:focus {
  background: #a3c4bf;
}

.b-product__title {
  line-height: 0.9;
  font-size: 180%;
}
.b-product__title img {
  height: 100%;
  object-fit: contain;
}
.b-product__text {
  font-weight: 400;
  line-height: 0.9;
}

@media screen and (min-width: 768px) {
  .b-product__title {
    font-size: 150%;
  }
  .no-rtl .b-product__title {font-size: 120%;}
}