.text-green {
    color: #a1c037;
}

.text-gold {
    color: #ffc107;
}

sub {
    font-size: 16px;
}

.bullet-point li {
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 10px;
}

/* Form */
.form-control,
.form-select,
textarea.form-control {
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 18px;
    color: #252525;
}
textarea.form-control {
    min-height: 70px;
}

.custom-list li {
    margin-bottom: 20px;
    display: flex;
    gap:5px;
}

.custom-list li:last-child {
    margin-bottom: 0;
}

hr {
    margin: 0;
}

.section-intro {
    position: relative;
    background-image: url('/landing/assets/img/bg-head.webp');
    background-position: 65% 0;
    background-size: cover;
    padding: 5rem 0;
    height: 100vh;
}

.section-info {
    position: relative;
    background-image: url('/landing/assets/img/m8_2.jpg');
    background-position: 50% 0;
    background-size: cover;
    padding: 5rem 0;
}

.section-intro .container,
.section-info .container {
    position: relative;
    z-index: 2;
}

.btn {
    border-radius: 4px;
    font-size: 22px;
}

/* Bottone Gold */
.btn-gold {
    color: #252525;
    background-color: #d4af37; /* Oro */
    border-color: #d4af37;
}

.btn-gold:hover {
    background-color: #c19e2d; /* Oro più scuro */
    border-color: #c19e2d;
}

.btn-gold:focus,
.btn-gold.focus {
    color: #252525;
    background-color: #c19e2d;
    border-color: #c19e2d;
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.5);
}

.btn-gold:active,
.btn-gold.active,
.show > .btn-gold.dropdown-toggle {
    color: #252525;
    background-color: #b18d22;
    border-color: #b18d22;
}

.btn-gold:disabled,
.btn-gold.disabled {
    color: #252525;
    background-color: #d4af37;
    border-color: #d4af37;
    opacity: 0.65;
}

/* Bottone Green */
.btn-green {
    color: #252525;
    background-color: #a1c037; /* Verde */
    border-color: #a1c037;
}

.btn-green:hover {
    background-color: #859e31; /* Verde più scuro */
    border-color: #859e31;
}

.btn-green:focus {
    color: #252525;
    background-color: #859e31;
    border-color: #859e31;
    box-shadow: 0 0 0 0.25rem rgba(131, 212, 55, 0.5);
}

.btn-green:active {
    color: #252525;
    background-color: #a1c037;
    border-color: #a1c037;
}

.btn-gold:disabled {
    color: #252525;
    background-color: #a1c037;
    border-color: #a1c037;
    opacity: 0.65;
}



/* Card */
.card {
    min-width: 240px;
}

.card {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 15px;
    padding: 15px;
}

.card h5 {
    word-break: keep-all;
}

.card-review {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    border-radius: 15px;
    padding: 15px;
    background: #fff;

}

.card-review .review-text p {
    display: -webkit-box;
    -webkit-line-clamp: 5; /* Numero massimo di righe */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 10px;
    font-style: italic;
}


/* List */
.list-icons .item-icon {
    position: relative;
    padding: 0px 0px 20px 10px;
    margin-bottom: 0px;
    border-bottom: 0px solid #E4E7EC;
}

.list-icons .item-icon.none-bd {
    border-bottom: 0px;
    padding: 0px 0px 10px 20px;
    margin-bottom: 0px;
}

/* Accordion */


/* Cta */
.cta-fixed {
    display: none;
    position: fixed;
    width: 100%;
    bottom: 15px;
    left: 0;
    height: 50px;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-fixed a,
.cta-fixed a:hover,
.cta-fixed a:active {
    border: 2px solid #fff;
}

.cta-fixed.fadeInUp {
    display: block;
    animation: fadeInUp 0.9s ease forwards;
}

.cta-fixed.fadeOutDown {
    display: block;
    animation: fadeOutDown 0.9s ease forwards;
}




.before-after-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;

    cursor: ew-resize;
    height: 300px;
}

.before-after-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    user-select: none;
    pointer-events: none;
}

.after-img {
    position: relative;
    z-index: 0;
    height: 100%;
}

.before-img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 2;
    overflow: hidden;
}

.before-img img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    clip-path: inset(0 50% 0 0); /* mostra metà immagine a sinistra */
    transition: clip-path 0.1s linear;
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 5px;
    height: 100%;
    background: rgba(255, 255, 255, 0.37);
    z-index: 3;
    cursor: ew-resize;
}

.slider-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #252524;
    border: 2px solid #00000055;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #fff;
}

.slider-circle i {
    font-size: 20px;
}

.flex-split > div {
    flex: 1 1 50%;
}

@media (max-width: 575px) {

    .section-intro {
        background-position: 60% 0;
    }

    .section-intro::before,
    .section-info::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(38, 41, 41, 0.7); /* Colore nero con opacità del 50% */
        z-index: 1;
    }

}

@media (max-width: 992px) {
    .card {
        flex: 0 0 auto;
        width: 250px;
    }
}