.info-panel__earning,
.info-panel__tourism {
  display: none;
}

.info-panel__earning.active,
.info-panel__tourism.active {
  display: flex;
}

.custom-select-r {
  position: relative;
  width: 100%;
  user-select: none;
  color: rgba(45, 45, 45, 1);
  background-color: rgba(255, 255, 255, 1);
}

.custom-select-r.open .select-trigger::after {
  transform: rotate(-180deg);
}

.custom-select-r.open .options {
  max-height: 500px;
  opacity: 1;
}

.info-panel__section__earn {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.info-panel__section__earn h2 {
  font-family: Onest;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 64px;
  line-height: 100%;
  text-align: center;
  color: rgba(45, 45, 45, 1);
}

.info-panel__section__earn p {
  margin: 0;
  font-family: Roboto;
  font-weight: 500;
  font-style: Medium;
  font-size: 32px;
  line-height: 140%;
  letter-spacing: 4%;
  text-align: center;
  color: rgba(99, 105, 124, 1);
}

.info-panel__section__earn__content {
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: Roboto;
  font-weight: 400;
  font-style: Regular;
  font-size: 54px;
  line-height: 110%;
  letter-spacing: 4%;
  text-transform: uppercase;
  color: rgba(99, 105, 124, 1);
}

.info-panel__section__tourism {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.info-panel__section__tourism h2 {
  font-family: Onest;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 64px;
  line-height: 100%;
  text-align: center;
  color: rgba(45, 45, 45, 1);
}

.info-panel__section__tourism {
  padding: 10px;
  color: #333;
}

.tourism-slider {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 0 auto;
  width: 100%;
}

.tourism-slide {
  color: white;
  border-radius: 8px;
  text-align: center;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  justify-content: start;
  transition: transform 0.3s ease;
  box-sizing: border-box;
  gap: 15px;
}

.slide-image {
  max-width: 385px;
  width: 100%;
  background-size: cover;
  background-position: center;
  margin-bottom: 10px;
  aspect-ratio: 1/1;
  border-radius: 24px;
}

.tourism-slide h4 {
  font-family: Onest;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 24px;
  line-height: 100%;
  vertical-align: middle;
  margin: 0;
  color: rgba(45, 45, 45, 1);
}

.slide-description {
  list-style-type: none;
  padding: 0;
  text-align: left;
}

.tourism-slide ul {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  white-space: nowrap;
}

.slide-description li {
  display: flex;
  gap: 10px;
  font-family: Onest;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 4%;
  color: rgba(99, 105, 124, 1);
}

.accum__line {
  position: relative;
  width: 95vw;
  height: 1px;
  background-color: rgba(216, 216, 216, 1);
}

/* Media Queries */
@media (max-width: 1300px) {
  .tourism-slide h4 {
    font-size: 18px;
  }
}

@media (max-width: 1000px) {
  .info-panel__section__earn h2 {
    font-size: 48px;
  }

  .info-panel__section__earn p {
    font-size: 24px;
  }

  .info-panel__section__earn__content {
    font-size: 48px;
  }

  .info-panel__section__tourism h2 {
    font-size: 48px;
  }

  .tourism-slider {
    grid-template-columns: repeat(2, 1fr);
  }

  .slide-image {
    max-width: 100%;
    max-height: 200px;
  }
}

@media (max-width: 769px) {
  .info-panel__section__earn h2 {
    font-size: 36px;
  }

  .info-panel__section__earn p {
    font-size: 18px;
  }

  .info-panel__section__earn__content {
    font-size: 36px;
  }

  .info-panel__section__tourism h2 {
    font-size: 36px;
  }

  .info-panel {
    order: -1;
  }

  .tourism-slider {
    display: flex;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none;
  }

  .tourism-slider::-webkit-scrollbar {
    display: none;
  }

  .tourism-slide {
    flex: 0 0 80%;
    scroll-snap-align: start;
    margin-right: 10px;
  }

  .slide-image {
    max-width: 100%;
    max-height: 300px;
  }
}

@media (max-width: 550px) {

  .custom-select-r,
  .custom-select-r.open .options,
  .rent-form__group-input {
    background-color: rgba(241, 241, 241, 1);
  }

  .info-panel {
    padding: 20px;
    background: white;
    margin-top: 15px;
  }

  .accum__line {
    width: 80vw;
  }
}

@media (max-width: 480px) {
  .info-panel__section__earn h2 {
    font-size: 24px;
  }

  .info-panel__section__earn__content {
    font-size: 21px;
  }

  .info-panel__section__tourism h2 {
    font-size: 24px;
  }
}