* {
  scrollbar-width: none;
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
  font-family: "Nuckle", Sans-serif;
  font-family: "Zalando Sans", sans-serif;
  font-weight: 500;
}

body {
  background-color: #FCE6E6;
  height: 100vh;
  width: 100vw;
  font-size: 1rem;
  user-select: none;
}
/* 
img {
  display: block;
  max-width: 100%;
  height: auto;
} */

/*=============== REUSABLE CSS CLASSES ===============*/
/* .container {
  max-width: 1120px;
  margin-inline: 1.5rem;
} */

/*=============== TESTIMONIAL CARD ===============*/
.testimonial {
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: #310F11;
  position: relative;
}

.testimonial__swiper {
  padding-bottom: 7rem;
  /* background-color: #EE0100; */
  /* height: 600px; */
}

#testimonialHead {
  color: #FCE6E6;
  /* background-color: #EE0100; */
  /* padding-top: 7rem; */
  /* position: absolute;
  top: 1rem; */
}

.testimonial__card {
  width: 280px;
  height: 400px;
  background-color: #FCE6E6;
  box-shadow: 0 8px 16px hsla(265, 75%, 4%, .1);
  /* padding: 2rem 1.5rem 3rem; */
  margin-top: 2rem; 
  border-radius: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* background-color: yellow; */
}

.testimonial__img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  /* margin: 0 auto .5rem; */
  overflow: hidden;
  object-fit: cover;
  /* background-color: orange; */
}

.testimonial__name {
  font-size: var(--h3-font-size);
  margin-bottom: 2rem;
  /* background-color: deepskyblue; */
  margin-top: 1rem;
  font-weight: 600;
}

.testimonial__rating {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 1rem;
  margin-bottom: .75rem;
  margin-top: -1rem;
  /* background-color: lawngreen; */
}

.testimonial__stars {
  display: flex;
  align-items: center;
  column-gap: .25rem;
  /* background-color: lightcoral; */
}

.testimonial__stars i {
  font-size: 1rem;
  color: #EE0100;
}

.testimonial__number {
  font-size: var(--h3-font-size);
  /* background-color: tomato; */
}

.testimonial__description {
  padding: 0rem 1.5rem;
  /* background-color: violet; */
  /* font-size: var(--small-font-size); */
  color: #310F11;
  /* margin-top: 1.5rem; */
  /* line-height: 1.5; */
}

/* Swiper class */
.testimonial .swiper-pagination-bullets {
  bottom: 4rem;
  margin-bottom: 1rem;
}

.testimonial .swiper-pagination-bullet {
  background-color: #EE0100;
  transition: opacity .4s;
}

.testimonial .swiper-button-prev {
  left: calc(50% - 3rem);
}

.testimonial .swiper-button-next {
  right: calc(50% - 3rem);
  /* margin: -0.5rem 0rem; */

}

.testimonial .swiper-button-prev::after,
.testimonial .swiper-button-next::after {
  content: "";
}

.testimonial :is(.swiper-button-prev, .swiper-button-next) {
  top: initial;
  bottom: 0;
  width: 2.5rem;
  height: 2.5rem;
  color: #EE0100;
  border-radius: 50%;
  font-size: 1.5rem;
  background-color: #FCE6E6;
  transition: all 0.1s ease-in-out;
margin-bottom: 1rem;
}

.testimonial :is(.swiper-button-prev, .swiper-button-next):hover {
  box-shadow: 0.5px 0.5px 5px #EE0100;
  background-color: #EE0100;
  color: #FCE6E6;
  transform: scale(1.03);
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 300px) {
  .testimonial__title {
    font-size: 1.25rem;
  }

  .testimonial__card {
    width: 240px;
    /* padding-inline: 1rem; */
  }
}

/* For medium devices */
@media screen and (min-width: 640px) {
  .testimonial__swiper {
    max-width: 640px;
  }
}

@media screen and (max-width : 700px) {
  .testimonial__swiper {
    max-width: 370px;
  }

  .testimonial :is(.swiper-button-prev, .swiper-button-next) {
    display: none;
  }
}

/* For large devices */
@media screen and (min-width: 1150px) {
  .testimonial__swiper {
    max-width: 760px;
  }

  .testimonial__title {
    margin-bottom: 4rem;
  }

  .testimonial__card {
    width: 330px;
    /* padding: 3rem 2rem 4rem; */
    border-radius: 2rem;
  }

  .testimonial__number {
    font-size: var(--normal-font-size);
  }
}