/* GALERÍA DE VILLAS */

#custom-gallery {
  padding-top: var(--space-between-sections);
  padding-bottom: var(--space-between-sections);
  margin-bottom: var(--space-between-sections);
  background-color: #f8f5f0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
}

#custom-gallery .custom-gallery__title {
  text-align: center;
}

#custom-gallery .custom-gallery__subtitle {
  text-align: center;
  margin-bottom: 55px;
  width: 50%;
}

#custom-gallery .custom-gallery__carosuel {
  width: 100%;
  margin: 0 auto;
}
#custom-gallery .custom-gallery__image {
  width: 100%;
  height: 600px;
  overflow: hidden;
  position: relative;
}

#custom-gallery .custom-gallery__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#custom-gallery .custom-gallery__image img:hover {
  transform: translate(-50%, -50%) scale(1.1);
}


#custom-gallery .owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 20px;
}

@media (max-width: 992px) {
  #custom-gallery .custom-gallery__subtitle {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    font-size: var(--font-size-text);
  }
  
  #custom-gallery .custom-gallery__title {
    font-size: var(--font-size-title);
    width: 100%;
  }

  #custom-gallery .custom-gallery__image {
    height: 355px ;
  }

  #custom-gallery .custom-gallery__carosuel {
    padding: 0 15px;
  }
}

/* END GALERÍA DE VILLAS */