.content-carousel-section-wrapper {
  padding: 2rem 0.5rem;
  background-color: white;
  border-radius: 2rem;
}

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

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

.content-carousel-upper-wrapper {
  margin-left: 2.5rem;
}

.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;
  color: #7bc97a;
  font-weight: 700;
  font-size: 30px;
  padding: 0.5rem;
  border-radius: 1rem;
  transition: 300ms;
}

#contentCarouselLeft.content-carousel-control {
  color: #7bc97a00;
  background-image: url(../img/svg/icon-slider-left.svg);
  background-position: 44% 50%;
  background-repeat: no-repeat;
  background-size: 50%;
  transition: 300ms;
  cursor: pointer;
}

#contentCarouselRight.content-carousel-control {
  color: #7bc97a00;
  background-image: url(../img/svg/icon-slider-right.svg);
  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 0.3s linear;
  margin: 13px 0;
}

.content-carousel-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #669f02;
  color: white;
  border-radius: 0.5rem;
  padding: 0.6rem 1.2rem;
  font-weight: bold;
  font-size: 15px;
  gap: 1rem;
  transition: 300ms;
  width: fit-content;
}

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

@media screen and (min-width: 1024px) {
  .content-carousel-section-wrapper {
    margin: 4rem 4rem;
  }

  .content-carousel-upper-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .content-carousel-button {
    display: flex !important;
  }

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

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

  .content-carousel-upper-wrapper {
    margin-left: 3.45rem;
    margin-bottom: 2rem;
    margin-right: 3.45rem;
  }

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

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

  .content-carousel-title-line {
    width: 40px;
    height: 4px;
    background: #6eaa6e;
  }
}

@media screen and (min-width: 1700px) {
  .content-carousel-section-wrapper {
    margin: 4rem 12rem;
  }
}
