.awards-section__wrapper {
  position: relative;
  

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  padding-inline: 20px;
  width: 100%;
  box-sizing: border-box;
  /* padding-bottom: 100px; */

  overflow: hidden;
}
.awards-section__wrapper .owl-nav .owl-prev {
    transform: translate(0, 0) rotate(-180deg) !important;
  }
.owl-carousel__wrapper {
  width: 100%;
  /* max-width: 800px; */
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
}

.owl-stage-outer {
  overflow: visible !important;
}

.owl-item {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.owl-dots {
  display: none !important;
}

.item {
  width: 100%;
  transform: scale(0.8);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.owl-item.active .item {
  transform: scale(1);
}

.image-wrapper {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.text {
  padding: 16px 8px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  color: rgba(0, 1, 21, 1);
  text-align: left;
  width: 100%;
}

.owl-nav {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 800px;
  pointer-events: none;
}

.owl-prev,
.owl-next {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #fff5e7 !important;
  pointer-events: all;
}

.owl-prev > svg,
.owl-next > svg {
  width: 40px;
  height: 40px;
}

.owl-prev > svg {
  transform: rotate(-180deg);
}

.awards-section__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 60px;
  text-align: center;
}

.awards-section__top > h2 {
  font-weight: 600;
  font-size: 42px;
  line-height: 1.4;
  text-transform: uppercase;
  color: #eaad57;
  padding-bottom: 10px;
}

.awards-section__top > p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  max-width: 864px;
  text-align: center;
  color: #000015;
}

.awards-section__bottom {
  width: 100%;
  padding-block: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 245, 231, 1);
  position: fixed;
  bottom: 0;
  left: 0;
}

.awards-section__bottom > p {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  text-transform: capitalize;
  margin-bottom: 0 !important;
}

.owl-item .item .text {
  display: none;
}

.owl-item.active .image-wrapper {
  border: 4px solid;
  border-image-source: linear-gradient(
    108.31deg,
    #ffcc27 1.52%,
    #bf7901 101.2%
  );
  border-image-slice: 1;
}

.owl-item.active .item .text {
  display: inline-block;
}

/* === Desktop View (Default) === */
@media (min-width: 1200px) {
  .owl-carousel__wrapper {
    max-width: 1200px;
  }
  
  .text {
    font-size: 18px;
  }
}

/* === Large Desktop / 4K === */
@media (min-width: 1600px) {
  .owl-carousel__wrapper {
    max-width: 1400px;
  }
  .image-wrapper {
    height: 450px;
  }
}

/* === Tablet View === */
@media (max-width: 1000px) {
  .owl-carousel__wrapper {
    max-width: 700px;
  }
  .image-wrapper {
    height: 450px;
  }

  .owl-carousel__wrapper {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
  }
}

/* === Mobile View === */
@media (max-width: 768px) {
  .awards-section__wrapper {
    padding-inline: 10px;
    min-height: 70vh;
  }

  .owl-carousel__wrapper {
    max-width: 100%;
    padding: 0;
  }

  .owl-stage-outer {
    overflow: hidden !important;
  }

  .item {
    width: 100% !important;
    transform: scale(1) !important;
    margin: 0 auto !important;
  }

  .image-wrapper {
    height: 280px;
  }

  .text {
    font-size: 14px;
    padding: 10px;
  }

  .owl-nav {
    max-width: 90%;
    top: 35%;
  }

  

  .owl-prev,
  .owl-next {
    width: 45px;
    height: 45px;
  }

  .owl-prev > svg,
  .owl-next > svg {
    width: 28px;
    height: 28px;
  }
}

/* === Small Mobile === */
@media (max-width: 480px) {
  .awards-section__top {
    padding-top: 80px;
  }

  .awards-section__top > h2 {
    font-size: 28px;
  }

  .image-wrapper {
    height: 240px;
  }

  .text {
    font-size: 13px;
  }
}
