/* carousel container */

.type-index #carousel {
  visibility: hidden;
}

.shpt-carousel-container {
  width: 100%;
  padding: 20px 20px;
  margin: 0px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.shpt-carousel-container .shpt-carousel-content {
}

.shpt-carousel-container .shpt-carousel {

}

.shpt-carousel-container .glider-track {
}

.shpt-carousel-container .shpt-carousel-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.shpt-carousel-container .shpt-carousel-item a {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: flex-end;
}

.shpt-carousel-container .shpt-carousel-item img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shpt-carousel-container .shpt-carousel-item-texts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
  padding: 30px;
  color: white;
  justify-content: flex-end;
  align-items: flex-start;
  text-align: left;
  aspect-ratio: 1/1.25;
}

.shpt-carousel-container .shpt-carousel-item-title {
  margin: 0;
  color: inherit;
  font-size: 22px;
  font-weight: bold;
}

.shpt-carousel-container .shpt-carousel-item-text {
  font-size: 16px;
  margin: 0;
  color: inherit;
}

.shpt-carousel-container .shpt-carousel-item-link {
  margin: 0;
  border-color: var(--color-secondary);
  background-color: var(--color-secondary);
  color: #292929;
}

.shpt-carousel-container .shpt-carousel-item-link:hover {
  border-color: var(--color-secondary-hover);
  background-color: var(--color-secondary-hover);
  color: #292929;
}

.shpt-carousel-container .splide__arrow {
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  position: absolute;
  aspect-ratio: 1/1;
  font-family: 'apollo' !important;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  margin: 0;
  padding: 0;
  cursor: pointer;
  border-width: 0;
  outline: none;
  box-shadow: none;
  border-radius: 50%;
  background-color: #ffffff;
  color: #0f0f0f;
  border: 1px solid var(--color-secondary);
  transition: 0.3s;
  font-size: 12px;
  transition: 0.3s;
}

.shpt-carousel-container .splide__arrow[disabled]{
  visibility: hidden;
  opacity: 0;
}


.shpt-carousel-container .splide__arrow:hover {
  background-color: var(--color-secondary);
  color: #fff;
}

.shpt-carousel-container .splide__arrow--prev {
  left: 1px;
}

.shpt-carousel-container .splide__arrow--prev:before {
  content: '\e908';
}

.shpt-carousel-container .splide__arrow--next {
  right: 1px;
}

.shpt-carousel-container .splide__arrow--next:before {
  content: '\e90e';
}

.shpt-carousel-container .splide__arrow svg {
  display: none;
}

@media (min-width: 640px) {
  
  .shpt-carousel-container{
  }
  
  .shpt-carousel-container .shpt-carousel-item {
  }
}

@media (min-width: 768px) {
  
  .shpt-carousel-container{
  }
  
  .shpt-carousel-container .splide__arrow {
    font-size: 18px;
  }
}

@media (min-width: 992px) {
  
  .shpt-carousel-container{
  }
  
  .shpt-carousel-container .shpt-carousel-item-texts {
    gap: 15px;
  }
  
  .shpt-carousel-container .shpt-carousel-item-title {
    font-size: 24px;
  }
  
  .shpt-carousel-container .shpt-carousel-item-text {
    font-size: 18px;
  }
}

@media (min-width: 1200px) {
  
  .shpt-carousel-container {
  }
  
  .shpt-carousel-container .shpt-carousel-item-texts {
    gap: 20px;
  }
}

@media (min-width: 1440px) {
  
  .shpt-carousel-container {
  }
  
  .shpt-carousel-container .shpt-carousel-item-title {
    font-size: 26px;
  }
  
  .shpt-carousel-container .shpt-carousel-item-text {
    font-size: 20px;
  }
}

/* carousel container end */