.carousel-wrap {
  /* overflow: visible; */
}

.carousel-wrap :is(p, span, a, h1, h2, h3, h4, h5) {
  margin: 0 0 0 0; 
}

.carousel-header {
  display: flex;
  justify-content: space-between; 
  margin-bottom: 35px;
}

.carousel-nav {
  display: flex;
  justify-content: space-between; 
  align-items: center;
  gap: 20px;
}

.carousel-nav i {
  padding: 10px;
  font-size: 25px;
  cursor: pointer; 
  color:#fbb400;
}

.carousel {
  display: flex;
  transform: translate(0px, 0px);
  transition: transform .5s ease 0s;
}

.item-wrap {
  /* flex: 1 0 33.33%; */
  /* height: 400px; */
}

.item-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #eaeaea;
  border-radius: 10px;
  /* margin: 0 7px; */
}

.item-image {
  width: 100%;
  height: 100%;
  background-color: #047cb7;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px; 
}

.item-image > a > img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  border-top-left-radius: 9px;
  border-top-right-radius: 9px;
} 

.item-description {
  padding: 0 15px; 
}

.item-description-row-1 {
  display: flex;
  justify-content: space-between; 
  align-items: baseline;
}

.item-description-row-1 > p {
  color: #047CB7;
}

.item-description-row-1 > i {
  padding: 2px;
  font-size: 32px;
  color: #fbb400 !important;
}

.item-description-row-2 {

}

.item-description-row-3{
  display: flex;
  justify-content: flex-end;
}

.item-description-row-3 > a, .item-description-row-3 > a:hover {
  color: #047cb7; 
}

@media (max-width: 767px){
  .item-wrap {
    /* flex: 1 0 50% !important; */
    /* height: 400px; */
  }
}
