.content-carousel-section-wrapper {
  width: 100%;
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.content-carousel-upper-wrapper a {
  display: none;
}

.content-carousel-title h2 {
  text-transform: uppercase;
  font-size: 22px;
}

.content-carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  height: 100%;
}

.content-carousel-control {
  height: fit-content;
  border: none;
  background: transparent;
  display: block;
  font-weight: 700;
  font-size: 30px;
  padding: 0.5rem;
  border-radius: 1rem;
  transition: 300ms;
  height: 4rem;
  width: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content-carousel-control img {
  height: 50%;
}

#contentCarouselLeft.content-carousel-control {
  background-color: white;
  background-position: 44% 50%;
  background-repeat: no-repeat;
  background-size: 50%;
  transition: 300ms;
  cursor: pointer;
}

#contentCarouselRight.content-carousel-control {
  background-color: white;
  background-position: 53% 50%;
  background-repeat: no-repeat;
  background-size: 50%;
  transition: 300ms;
  cursor: pointer;
}

.content-carousel-control:hover {
  background-color: rgba(123, 201, 122, 0.6);
}

.content-carousel-track-wrapper {
  overflow: hidden;
  width: 100%;
  border-radius: 1rem;
  height: 100%;
}

.content-carousel-track {
  width: 100%;
  white-space: nowrap;
  transition: transform 1.2s cubic-bezier(0.45, 0, 0.55, 1);
  margin: 13px 0;
  font-size: 0;
}

.content-carousel-track.squared .content-carousel-image img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.content-carousel-image {
  display: inline-block;
  vertical-align: middle;
}
.content-carousel-image img {
  max-width: 100%;
  max-height: 100%;
}

@media screen and (min-width: 1024px) {
  .content-carousel-upper-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin: auto;
  }

  .content-carousel-upper-wrapper a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #3c7893;
    color: white;
    border-radius: 0.5rem;
    padding: 0.6rem 1.2rem;
    font-weight: bold;
    font-size: 15px;
    gap: 1rem;
    transition: 300ms;
  }

  .content-carousel-upper-wrapper a:hover {
    background-color: #7bc97a;
    transition: 300ms;
  }

  .content-carousel-upper-wrapper img {
    height: 1rem;
  }

  .content-carousel-title {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .content-carousel-title h2 {
    font-size: 40px;
  }
}

@media screen and (min-width: 1700px) {
  .content-carousel-section-wrapper {
  }
}
