:root {
    --verde-sollini: #689D37;
    --bianco-panna-sollini: #E9F3E2;
    --bianco-panna-hover-sollini: #b5bdb0;
    --bianco-sollini: #fff;
    --bianco-hover-sollini: #f2f2f2;
    --blu-scuro: #102023;
    --viola-sollini: #E6077C;
    --arancio-sollini-plus: #F59C00;
}

body * {
    font-family: "kanit", "verdana", "sans-serif";
}

.rounded-next {
    border-radius: 75px;
}


body *.madi {
    font-family: 'Ms Madi', cursive;
    font-size: 25px;
}

.text-viola {
    color: var(--viola-sollini);
}

.text-arancio {
    color: var(--arancio-sollini-plus);
}

.btn-viola {
    background-color: var(--viola-sollini);
    color: var(--bianco-sollini);
}

.btn-viola:hover {
    background-color: var(--viola-sollini);
    color: var(--bianco-sollini);
}

.carouselNext .slick-slide {
    text-align: center;
}

.carousel-arrows {
    text-align: center;
    margin-top: 20px;
    /* margin-left: -11%; */
}

.carousel-arrows button {
    background: none;
    border: none;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

.carousel-arrows button:hover {
    color: #fff;
}

.carousel-arrows button img {
    width: 60px;
    padding-left: 10px;
    padding-right: 10px;
}

.container-logo {
    padding-top: 100px;
}

.btn-round {
    border-radius: 75px;
    border: 1px solid #4C4C4C;
    padding: 15px 25px;
    justify-content: center;
    background: #fff;
    font-size: 16px;
    display: inline-block;
}

.btn-round.btn-dark {
    color: #fff;
    background-color: #1E1E1E;
    border: 1px solid #fff;
}

.imgp {
    width: 80%;
    height: 75vw;
    background-position: center;
    background-size: cover;
    display: inline-block;
}

.imgs {
    position: absolute;
    top: 10%;
    right: 15px;
    width: 40%;
    height: calc(75vw - 20%);
}

.imgs.sinistra {
    left: 15px;
}

.imgs .veraimg {
    border: 10px solid #fff;
    background-position: center;
    background-size: cover;
    height: 100%;
    position: sticky;
    top: 250px;
}

body .container {
    max-width: 1200px !important;
}

.nextimage {
    font-size: 30px;
    margin-bottom: 0;
    font-weight: 500;
}

.formnero .form-control {
    background: none;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 60px;
    margin-bottom: 30px;
    padding: 30px;
    font-size: 18px;
}

.radiusnext {
    border-radius: 60px;
}

.formnero textarea.form-control {
    resize: none;
}

.bottonifooter a {
    display: block;
    margin-top: 30px;
    width: auto;
    text-align: center;
}

.testofooter {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testofooter img {
    display: inline-block;
    margin-bottom: 25px;
}

.brsolodesktop {
    display: none;
}

.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


@media screen and (min-width: 992px) {

    .brsolodesktop {
        display: inline;
    }

    body *.madi {
        font-size: 40px;
        margin-top: 15px;
    }

    .imgp {
        height: 600px;
    }

    .imgs {
        top: 10%;
        height: 80%;
    }

    .rowflexmd {
        display: flex;
    }

    .rowimg {
        margin-bottom: 100px;
    }

    .testoprincipale {
        font-size: 23px;
        padding: 40px 0;
        line-height: 40px;
    }

    .centervertical {
        justify-content: center;
        display: flex;
        flex-direction: column;
        font-size: 23px;
        line-height: 40px;
        text-align: left;
        padding: 50px;
    }

    .container-logo {
        padding-top: 200px;
        padding-bottom: 50px;
    }

    .nextimage {
        font-size: 50px;
        margin-bottom: 10px;
        font-weight: 500;
    }

    .bottonifooter {
        text-align: right;
    }

    .bottonifooter a {
        display: inline-block;
        margin-top: 0;
        margin-left: 15px;
    }

    .testofooter {
        flex-direction: row;
    }

    .testofooter img {
        margin-bottom: 0;
        margin-right: 30px;
    }

}

@media screen and (min-width: 1400px) {

    .nextimage {
        font-size: 70px;
        margin-bottom: 15px;
    }

}

.arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform: rotate(90deg);
    cursor: pointer;
}

.arrow span {
    display: block;
    width: 1vw;
    height: 1vw;
    border-bottom: 4px solid black;
    border-right: 4px solid black;
    transform: rotate(45deg);
    margin: -10px;
    animation: frecciadown 2s infinite;
}

.arrow span:nth-child(2) {
    animation-delay: -0.2s;
}

.arrow span:nth-child(3) {
    animation-delay: -0.4s;
}

@keyframes frecciadown {
    0% {
        opacity: 0;
        transform: rotate(315deg) translate(-20px, -20px);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: rotate(315deg) translate(20px, 20px);
    }
}

body *::placeholder {
    color: #969696 !important;
    opacity: 1;
    /* Firefox */
}

body *::-ms-input-placeholder {
    /* Edge 12 -18 */
    color: #969696 !important;
}

.verde-sollini {
    color: var(--verde-sollini);
}

.bianco-panna {
    color: var(--bianco-panna-sollini);
}

.bg-blu-scuro {
    background-color: var(--blu-scuro);
}

.btn-bianco-panna,
.btn-bianco-panna:active,
.btn-bianco-panna:focus {
    --bs-btn-active-bg: var(--bianco-panna-sollini);
    --bs-btn-active-color: var(--blu-scuro);
    background-color: var(--bianco-panna-sollini);
    color: var(--blu-scuro);
}

.btn-bianco,
.btn-bianco:active,
.btn-bianco:focus {
    --bs-btn-active-bg: var(--bianco-sollini);
    --bs-btn-active-color: var(--blu-scuro);
    background-color: var(--bianco-sollini);
    color: var(--blu-scuro);
}


.btn-bianco-panna:hover {
    background-color: var(--bianco-panna-hover-sollini);
}

.btn-bianco:hover {
    background-color: var(--bianco-hover-sollini);
}

.logo {
    max-height: 60px;
}

.overflow-x-collezione {
    overflow-x: auto;
    white-space: nowrap;
}

.collezione-box {
    display: inline-block;
    width: 250px;
    padding: 15px;
    max-width: 900px;
}

.collezione-box h4 {
    display: block;
    font-weight: 500;
    white-space: normal;
}

.collezione-box .img-collezione {
    height: 300px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

@media screen and (min-width: 768px) {
    .overflow-x-collezione {
        overflow-x: hidden;
        white-space: normal;
    }

    .collezione-box {
        width: 49%;
    }

    .collezione-box .img-collezione {
        height: 400px;
    }
}

@media screen and (min-width: 992px) {
    .logo {
        max-height: 160px;
    }
}

@media screen and (min-width: 992px) {
    .px-lg-150 {
        padding: 0 150px;
    }

    .h1,
    h1 {
        font-size: 3.5rem;
    }

    .fs-lg-1-5rem {
        font-size: 1.5rem;
    }

    .fs-lg-2rem {
        font-size: 2rem;
    }
}

@media screen and (min-width: 1300px) {
    .collezione-box .img-collezione {
        height: 500px;
    }
}