#rd-carousel {
  width: 100%;
  max-width: min(1488px, 100vw - 60px);
  margin: 0 auto;
  position: relative;
  height: 0;
  padding-top: clamp(10px, 47.11%, 700px);
  overflow: hidden;
}
#rd-carousel #rd-carousel-indicator { 
	position: absolute;
	top: 0; 
	left: 0;
	width: 0%;
	height: 5px;
	background-color: #b3302a;
	z-index: 100;
}
#rd-carousel .carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
#rd-carousel .carousel-item:first-of-type {
  opacity: 1;
}
#rd-carousel .carousel-item .img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
#rd-carousel .carousel-item .img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}
#rd-carousel .carousel-item .img-wrapper .carousel-inner {
  width: 100%;
  height: 100%;
  background-color: rgba(1, 17, 36, 0.5);
  z-index: 2;
  position: relative;
  padding: 10% 15%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
#rd-carousel .carousel-item .img-wrapper .carousel-inner * {
  max-width: 420px;
  color: #fff;
}
#rd-carousel .carousel-item .img-wrapper .carousel-inner .cats-wrapper a {
  line-height: 1;
  min-height: unset;
  padding: 2px 16px;
}
#rd-carousel .carousel-item.active {
  transform: translateX(0%);
}
#rd-carousel #carousel-nav {
  position: absolute;
  top: 50%;
  right: 15%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
#rd-carousel #carousel-nav .item-index {
  display: flex;
  align-items: center;
  margin-right: 0px;
  padding: 0px;
  min-height: unset;
  line-height: 1;
}
#rd-carousel #carousel-nav .item-index span {
  margin-right: 12px;
  color: #fff;
  font-size: clamp(12.18px, 12.18px + (100vw - 320px) * 0.0225, 21px) !important;
  line-height: clamp(0.754, 0.754 * 1.3, 1.3) !important;
  font-weight: 300;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.15s ease-in-out;
}
#rd-carousel #carousel-nav .item-index .indicator {
  height: 40px;
  width: 2px;
  background-color: #fff;
  transition: all 0.1s ease-in-out;
}
#rd-carousel #carousel-nav .item-index.active span {
  opacity: 1;
  transform: translateX(0px);
}
#rd-carousel #carousel-nav .item-index.active .indicator {
  width: 6px;
}

@media (max-width: 849.98px) {
  #rd-carousel {
    padding-top: clamp(10px, 70%, 700px);
  }
  #rd-carousel .carousel-item .img-wrapper .carousel-inner * {
    max-width: unset;
  }
  #rd-carousel #carousel-nav {
    right: 50%;
    bottom: 10px;
    top: unset;
    transform: translateX(50%) translateY(-50%);
    flex-direction: row;
  }
  #rd-carousel #carousel-nav .item-index {
    flex-direction: column;
    margin: 0 5px;
  }
  #rd-carousel #carousel-nav .item-index span {
    transform: translateY(10px);
    margin-right: 0;
    margin-bottom: 6px;
  }
  #rd-carousel #carousel-nav .item-index .indicator {
    height: 2px;
    width: 30px;
  }
  #rd-carousel #carousel-nav .item-index.active span {
    transform: translateY(0px);
  }
  #rd-carousel #carousel-nav .item-index.active .indicator {
    height: 4px;
    width: 30px;
  }
}
@media (max-width: 549.98px) {
  #rd-carousel {
    padding-top: 100vw;
  }
}