/* MORE VILLAS */
#moreSec {
  margin-bottom: var(--space-between-sections);
  padding-top: var(--space-between-sections);
  padding-bottom: var(--space-between-sections);
  background-color: var(--secondary-color);
}

#moreSec .more__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  gap: 34px;
}

#moreSec .more__content-info {
  width: calc(30% - 34px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

#moreSec .more__content__title h1 {
  color: white;
}

#moreSec .section-description p {
  color: #adadad;
}

#moreSec .more__content__subtitle {
  margin-top: 0;
  color: var(--primary-color);
  text-align: center;
}

#moreSec .more__content-info .section-subtitle {
  margin-top: 0;
}

#moreSec .more__content-arrows button {
  background: none;
  border: none;
  padding: 0;
  outline: none;
}

#moreSec .more__content-arrows {
  filter: var(--icons-filter);
  display: flex;
  width: 50%;
  align-items: center;
  justify-content: flex-start;
  gap: 34px;
}

#moreSec .more__content-arrows img {
  cursor: pointer;
}

#moreSec .more__villas {
  width: calc(70% - 34px);
}

#moreSec .more__villa {
  position: relative;
  cursor: pointer;
}

#moreSec .more__villa__card {
  background-color: #f8f5f0;
  margin-bottom: 34px;
}

#moreSec .more__villa__card a {
  width: 100%;
}

#moreSec .more__villa__card .desc {
  padding: 40px;
}

#moreSec .more__villa__card h3 {
  line-height: 1;
  margin: 0;
  font-family: "Gilda Display", serif;
  font-size: 24px;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

#moreSec .more__villa__card .amount {
  margin: 0;
  line-height: 1;
  font-family: "Gilda Display", serif;
  font-size: 40px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

#moreSec .more__villa__card .amount span {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: var(--black-color);
}

#moreSec .more__villa__card__image {
  width: 100%;
  height: 210px;
  overflow: hidden;
  position: relative;
}

#moreSec .more__villa__card__image img {
  width: 120%;
  height: 120%;
  object-fit: cover;
  margin-top: 0;
  margin-bottom: auto;
  transition: transform 0.3s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
}

#moreSec .more__villa__card__image:hover img {
  transform: translate(-50%, -50%) scale(1.1);
}

#moreSec .more__villa__card img {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

@media (max-width: 992px) {
  #moreSec .more__content {
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 0;
  }

  #moreSec .more__content-info {
    width: 100%;
  }

  #moreSec .more__villas {
    width: 100%;
  }

  #moreSec .more__content-arrows {
    display: none;
  }
}
