
.carousel {
  width: 100%;
}


.wrapper {
  max-width: 944px;
  width: 100%;
  position: relative;
} 

#utext{
text-align: left;
}

.wrapper i {
  top: 50%;
  height: 0px;
  width: 0px;
  cursor: pointer;
  font-size: 1.25rem;
  position: absolute;
  text-align: center;
  line-height: 50px;
  background: #ffffff00;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.57);
  transform: translateY(-50%);
  transition: transform 0.1s linear;
}
.wrapper i:active{
  transform: translateY(-50%) scale(0.85);
}
.wrapper i:first-child{
  left: -22px;
}
.wrapper i:last-child{
  right: -22px;
}
.wrapper .carousel{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% / 3) - 12px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 16px;
  border-radius: 8px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.carousel::-webkit-scrollbar {
  display: none;
}
.carousel.no-transition {
  scroll-behavior: auto;
}
.carousel.dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
}
.carousel.dragging .card {
  cursor: grab;
  user-select: none;
}

.carousel :where(.card, .img) {
  display: flex;
  justify-content: center;
  align-items: center;
}
.carousel .card {
  scroll-snap-align: start;
  height: 542px;
  list-style: none;
  background: #fff;
  cursor: pointer;
  padding-bottom: 15px;
  flex-direction: column;
  border-radius: 8px;
}
.carousel .card .img {
  background: #720000;
  height: 238px;
  width: 278px;
  border-radius: 0%;
}
.card .img img {
  width: 270px;
  height: 230px;
  border-radius: 0%;
  object-fit: cover;
  border: 4px solid #fff;
}
.carousel .card h2 {
  font-weight: 550;
  font-size: 1.86rem;
  padding-bottom: 8px;
  margin: 30px 0 5px;
}
.carousel .card h3 {
  font-size: 1.36rem;
}
.carousel .card span {
  color: #6A6D78;
  font-size: 1.31rem;
}


@media screen and (max-width: 900px) {
  .wrapper .carousel {
    grid-auto-columns: calc((100% / 2) - 9px);
  }
}

@media screen and (max-width: 600px) {
  .wrapper .carousel {
    grid-auto-columns: 100%;
  }
}





#carouselBoard * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
#wrapper {
  display: flex;
  padding: 0 35px;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: linear-gradient(to left top, #031A9A, #8B53FF);
  width: 100%;
}


.card h2{
  color: #720000;
}
#above{
  color: #000000;
  text-shadow:0 0 10px #0000008a;
  margin-top: 40px;
  font-size: 265%;
}