.products-section .title-carousel-container .title {
  text-align: center;
  font-size: 1.5rem;
  transition: 0.2s linear;
  cursor: pointer;
}
.products-section .title-carousel-container .slick-current .title {
  color: var(--theme-color-1);
  scale: 1.1;
}

.product-item-carousel {
  /* box-shadow: 0 0 10px gray; */
  border-radius: 40px;
}
.product-item-carousel .product-item {
  width: 100%;
  background-color: var(--theme-color-light);
  display: flex;
  justify-content: space-between;
  border-radius: 40px;
  overflow: hidden;
  min-height: 440px;
}

.product-item-carousel .product-item .content-container {
  padding: 30px 50px;
  width: 50%;
}

.product-item-carousel .product-item .image-container{
  width: 50%;
}

.product-item-carousel .product-item .content-container .title {
  font-size: 2.3rem;
}

.product-item-carousel .slick-dots {
  width: fit-content;
  bottom: -40px;
  right: 0;
  left: 0;
  margin: auto;
}

.product-item-carousel .slick-dots li button {
  width: 10px;
  height: 10px;
  content: "";
  background-color: var(--theme-color-1);
  border-radius: 50%;
  opacity: 0.75;
  transition: all 0.2s linear;
}
.product-item-carousel .slick-dots li.slick-active button {
  width: 50px;
  border-radius: 5px;
  opacity: 1;
}
.product-item-carousel .slick-dots li {
  width: auto;
  height: auto;
}
.product-item-carousel .slick-dots li button::before {
  content: "";
}

.quality-section {
  height: 50vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.quality-section .quality-title {
  font-size: 3.5rem;
  width: 80%;
  margin: auto;
  font-weight: 600;
  color: var(--theme-color-1);
  position: relative;
  z-index: 2;
  text-align: center;
}

.quality-section .bg-img {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  top: 0;
  left: 0;
  background-size: 60% auto;
}

/* *************************** */
/*         Media Queries      */
/* ************************* */

/* Large laptop */
@media screen and (max-width: 1400px) {
}
/* Small laptop */
@media screen and (max-width: 1200px) {
}
/* Tablet */
@media screen and (max-width: 992px) {
}
@media screen and (max-width: 768px) {
}
/* Large mobile */
@media screen and (max-width: 576px) {
  .product-item-carousel .product-item {
    flex-direction: column;
    border-radius: 20px;
  }
  .product-item-carousel .product-item .content-container {
    width: 100%;
    padding: 15px 20px;
  }
  .product-item-carousel .product-item .image-container{
    width: 100%;
    height: 200px;
  }
  .quality-section{
    height: 30vh;
  }
  .quality-section .quality-title{
    font-size: 1.5rem;
  }
  .product-item-carousel .product-item .content-container .title{
    font-size: 2rem;
  }
}
/* Small mobile */
@media screen and (max-width: 375px) {
}
@media screen and (max-width: 320px) {
}
