/* SERVICIOS VILLA */

#services-villa {
    margin-bottom: var(--space-between-sections);
  }
  
  .services-villa__title h2 {
    font-size: 2em;
    font-weight: bold;
    margin: 0;
  }
  
  .services-villa__items {
    display: flex;
    flex-wrap: wrap;
  }
  
  .services-villa__item {
    width: calc(33% - 24px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 28px 28px 0;
    border-bottom: 1px solid #ccc;
  }
  
  /* Estilo para el icono */
  .services-villa__item .icon {

  }
  
  .services-villa__item .icon img {
    width: 35px;
    height: 35px;
    filter: var(--icons-filter);
  }
  
  /* Reinicia el margen derecho en cada tercer elemento */
  .services-villa__item:nth-child(3n) {
    margin-right: 0;
  }

  @media (max-width:992px) {
    .services-villa__items {
      flex-direction: row-reverse;
      text-align: center;
      align-items: stretch;
      justify-content: center;
    }

    .services-villa__item {
      width: 50%;
      flex-direction: column;
      padding-left: 28px;
      
    }

    .services-villa__item .icon {
      bottom: 2px;
      right: 53px;
    }

      /* Reinicia el margen derecho en cada tercer elemento */
  .services-villa__item:last-child {
    display: none;
  }
    
  }
  
  /* END SERVICIOS VILLA */