/* Stile opzionale per il wrapper del carosello */
.owl-carousel-wrapper {
    max-width: 100%; /* Imposta il carosello su tutta la larghezza disponibile */
    margin: 0 auto;
}

/* Stile opzionale per le immagini nel carosello */
.owl-carousel-item img {
    max-width: 100%; /* Fai in modo che le immagini occupino l'intera larghezza del carosello */
    height: auto;
    object-fit: contain;
}

/* Stile per i puntini */
.owl-dots {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.owl-dots span {
    width: 20px !important;
    height: 20px !important;
}

.owl-dot {
    font-size: 30px; /* Imposta la dimensione dei puntini */
    line-height: 1;
    text-indent: -999px;
    cursor: pointer;
    color: transparent;
    transition: opacity 0.3s ease;
}

.owl-dot.active {
    background-color: #333;
}

.container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.row {
    margin-left: 0;
    margin-right: 0;
}

.argo-text {
    color: #000;
    text-align: center;
    font-family: Poppins, serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 30px */

}

.argo-text-nav {
    color: #000;
    text-align: center;
    font-family: Poppins, serif;
    font-size: 20px;
    font-style: bold;
    font-weight: 400;
    line-height: 150%; /* 30px */
}

.owl-carousel .owl-stage {
    display: flex;
}

.owl-carousel .owl-item img {
    width: auto;
    max-height: 100% !important;
}


.argo-title {
    color: #000;
    text-align: center;
    font-family: Outfit, serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 119.2%; 
}


.argo-big-title {
    color: #000;
    text-align: center;
    font-family: Outfit, serif;
    font-size: 80px;
    font-style: normal;
    font-weight: 700;
    line-height: 119.2%; /* 57.216px */
}

/* Stile per schermi piccoli (mobile) */
@media (max-width: 767px) {
    .argo-big-title {
        font-size: 40px; /* Adatta questa dimensione in base alle tue esigenze */
    }
}

.argo-p {
    color: #000;
    text-align: center;
    font-family: Poppins, serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 30px */
}

/* Stile per schermi piccoli (mobile) */
@media (max-width: 767px) {
    .argo-p {
        font-size: 25px; /* Adatta questa dimensione in base alle tue esigenze */
    }
}

.argo-under-title {
    font-weight: 400;
    font-size: 20px;
    color: black
}

#emailForm2Email::placeholder {
    font-weight: bold;
}

.owl-carousel .owl-item img {
    display: block;
    width: auto;
    max-height: 900px !important;
    margin: 0 auto;
}

.social-icons a {
    margin: 0 10px;
    font-size: 24px;
    color: black;
}
.footer {
    background-color: black;
    color: white;
    /* padding: 20px 0; */
    /* position: absolute; */
    /* bottom: 0; */
    width: 100%;
}
.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer .social-icons a {
    margin: 0 10px;
    font-size: 24px;
    color: white;
}

  
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px; /* Spazio tra i pallini */
    bottom: -100px;
    }
    
    .carousel-indicators .indicator {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #aaa;
    }
    
    .carousel-indicators .active {
    background-color: #000000;
    }
    
    /* Nascondi i pallini solo su schermi più grandi di 991.98px (desktop) */
    /* @media (min-width: 992px) {
    .carousel-indicators .indicator {
        display: none;
    }
    } */



    /* Stili per il modale per assomigliare alla pagina DISCOVER */
    .custom-modal .modal-dialog {
        max-width: 100%; /* Dimensione del modale rispetto alla larghezza della viewport */
        width: 100%; /* Assicura che il modale si estenda completamente */
    }
    
    .custom-modal .modal-content {
        border-radius: 10px; /* Bordo arrotondato per il modale */
    }
    
    .custom-modal .modal-body {
        display: flex;
        flex-direction: column;
        align-items: center; /* Centra il contenuto */
        text-align: center; /* Allinea il testo al centro */
    }
    
    .custom-modal .modal-body img {
        max-width: 100%;
        height: auto; /* Mantiene le proporzioni dell'immagine */
        /* margin-bottom: 15px; Margine inferiore per le immagini */
    }
    


    /* Impostazione per rappresentazione grafica del frame di youtube */
    .embed-responsive-9by16 {
      position: relative;
      padding-bottom: 177.78%; /* 9:16 ratio */
      height: 0;
      overflow: hidden;
      max-width: 100%;
      background: #000;
      /* margin: auto; */
    }
  
    .embed-responsive-9by16 iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  
    @media (max-width: 768px) {
      .embed-responsive-9by16 {
        padding-bottom: 200%; /* Adjust if needed for smaller screens */
      }
    }
    
  