* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: "Montserrat", sans-serif;
}
.avatar-group {
  display: flex;
  overflow: hidden;
}

.avatar {
  position: relative;
  display: inline-flex;
}

.animate-spin-slow {
  animation: spin 4s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

.circleBtn::before {
  position: absolute;
  bottom: 0.25rem;
  left: -1.25rem;
  height: 1.25rem;
  width: 1.25rem;
  border-bottom-right-radius: 1rem;
  background-color: transparent;
  --tw-shadow: 0.313rem 0.313rem 0 0.313rem #fff;
  --tw-shadow-colored: 0.313rem 0.313rem 0 0.313rem var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  --tw-content: '';
  content: var(--tw-content);
}
.circleBtn::after {
  position: absolute;
  top: -1.25rem;
  right: 0.25rem;
  height: 1.25rem;
  width: 1.25rem;
  border-bottom-right-radius: 1rem;
  background-color: transparent;
  --tw-shadow: 0.313rem 0.313rem 0 0.313rem #fff;
  --tw-shadow-colored: 0.313rem 0.313rem 0 0.313rem var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  --tw-content: '';
  content: var(--tw-content);
}

.swiper {
  width: 90%;
  height: 850px;
}

.swiper-slide {
  width: 100px;
  height: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  /* background-color: black; */
}
.swiper-slide img {
  width: 90%;
  height: 800px;
  border-radius: 24px;
}