section.reserve-section {
  background-color: #fff;
}

section.reserve-section .reserve-header {}


section.reserve-section .carousel-btn {
  display: flex;
  width: 48px;
  padding: 16px;
  justify-content: center;
  color: #B57C00;
  align-items: center;
  border-radius: 8px;
  background: #D9D9D9;
  transition: 1s ease-in;
}

section.reserve-section .card-carousel-container {
  border-radius: 12px;
  padding: 40px;
  align-items: flex-start;
  gap: 40px;
  border: 1px solid var(--Gold-1, #AE8625);
  background: #FFF;
  backdrop-filter: blur(10px);
}

section.reserve-section .grid-container {
  justify-content: space-between;
  gap: 15px;
  display: flex;
  flex-wrap: wrap;
}

section.reserve-section .reserve-header {
    display: flex;
    margin: 0 auto;
    max-width: 936px;
    flex-direction: column;
    gap: 24px;
    text-align: center;
}

section.reserve-section .reserve-header h2 {
    margin: 0 auto;
    max-width: 616px;

}

section.reserve-section .grid-container p {
  color: var(--Text-Color, #141311);
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  /* 185.714% */
}

section.reserve-section .available-units p {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
  color: #432C07;
}

section.reserve-section .row-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.carousel-mask {
  -webkit-mask-image: url('../../assets/images/carousel-substract.png');
  -webkit-mask-size: 100% 100%;
  /* or contain / cover */
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url('../../assets/images/carousel-substract.png');
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  mask-position: center;
}