body {
    font-family: "Helvetica Neue";
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 1.8rem;
}

body:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 999;
    visibility: hidden;
    -webkit-transition: all 0.4s ease-in-out !important;
    -moz-transition: all 0.4s ease-in-out !important;
    -o-transition: all 0.4s ease-in-out !important;
    transition: all 0.4s ease-in-out !important;
}

body[class*="backmenubar"]:after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    content: '';
    z-index: 999;
    visibility: visible;
    -webkit-transition: all 0.4s ease-in-out !important;
    -moz-transition: all 0.4s ease-in-out !important;
    -o-transition: all 0.4s ease-in-out !important;
    transition: all 0.4s ease-in-out !important;
}

header {
    width: 100%;
    z-index: 100;
}

/* color */

:root {
    --Black: #000000;
    --LightGrey: #F3F4F5;
    --DarkGrey: #6D6D6D;
    --Red: #DB3831;
    --White: #FFFFFF;
    --Blue: #0A76DA;
    --Green: #007D3E;
    --Purple: #9747FF;
}

/*
::-moz-selection {
  color: var(--Black);
  background: var(--LightBlue);
}

::selection {
  color: var(--Black);
  background: var(--LightBlue);
}
*/

/* recaptcha */

.recaptcha-container {
    height: 0;

}

.grecaptcha-badge {
    visibility: hidden !important;
}


/* section */

section {
    padding: 6rem 0;
}


/* font */

.sopra_titolo {
    font-family: "Montserrat", serif;
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.sopra_titolo.red {
    color: var(--Red);
}

.sopra_titolo.black {
    color: var(--Black);
}

.sopra_titolo.white {
    color: var(--White);
}

.sopra_titolo.green {
    color: var(--Green);
}

h2 {
    font-family: Montserrat;
    color: var(--Black);
    font-size: 5rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 1.8rem;
}

h2.red {
    color: var(--Red);
}

h2.white {
    color: var(--White);
}

h3 {
    color: var(--Black);
    font-family: Montserrat;
    font-size: 4rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 3rem;
}

h3 b {
    font-weight: 700;
}

h4 {
    color: var(--Black);
    font-family: Montserrat;
    font-size: 3rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 2rem;
}

h4 b {
    font-weight: 800;
}

h4.red {
    color: var(--Red);
}

h4.white {
    color: var(--White);
}

p {
    color: var(--Black);
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2.5rem;
    margin-bottom: 6rem;
}

p b {
    font-weight: 700;
}

li {
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 400;
}

hr {
    color: rgba(0, 0, 0, 0.20);
}

.hidden {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

/* form */

.form input.form-control,
.form textarea.form-control,
.form select.form-select {
    border-radius: 3rem;
    width: 100%;
    border: 0.1rem solid var(--DarkGrey);
    background-color: var(--White);
    padding: 1rem 2rem 0.8rem 2rem;
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 300;
    margin-bottom: 1.5rem;
    resize: none;
    line-height: normal;
}

.form textarea.form-control {
    border-radius: 2.5rem;
    line-height: 2rem;
}

.form-control:focus,
.form-select:focus,
.form-check-input:focus {
    border-color: var(--DarkGrey);
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
}

/*.form-control::placeholder {
    color: var(--Black);
    opacity: 1;
}

.form-control::-ms-input-placeholder {
    color: var(--Black);
}*/

input.form-control:disabled::placeholder {
    color: var(--DarkGrey);
}

.form label.form-label {
    color: var(--Black);
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 1rem;
}

.form-check .form-check-label {
    margin-bottom: 0;
    color: var(--Black);
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 300;
}

.input-group.newsletter:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu), .input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3) {
    border-top-right-radius: 3rem;
    border-bottom-right-radius: 3rem;
}

.input-group.newsletter > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-left: -1px;
    border-top-left-radius: 3rem;
    border-bottom-left-radius: 3rem;
    height: 100%;
}

.input-group.newsletter input {
    border-radius: 3rem;
    background-color: var(--White);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid var(--DarkGrey);
    color: var(--Black);
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    padding: 1.4rem 2.2rem;
}

.input-group.search > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.form-check-input[type=checkbox] {
    border-radius: 0;
    border-color: var(--Black);
}

.form-check-input:checked {
    background-color: var(--Red);
    border-color: var(--DarkGrey);
}

.input-group.search .input-group-text {
    border-radius: 3rem;
    background-color: rgba(58, 64, 90, 0.06);
    border: 1px solid var(--DarkGrey);
    padding: 0.8rem 1.6rem;
    border-right: none;
}

.input-group.search .input-group-text img {
    aspect-ratio: 1/1;
    width: 2rem;
    object-fit: cover;
}

.input-group.search .form-control {
    border-radius: 3rem;
    background-color: rgba(58, 64, 90, 0.06);
    border: 1px solid var(--DarkGrey);
    border-left: none;
    color: var(--Black);
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    padding: 0.9rem 1.6rem 0.8rem 0;
}

.input-group.search .form-control:focus {
    box-shadow: none;
}


.input-group.search .form-control::-webkit-input-placeholder {
    opacity: 1;
    color: var(--Black);
}

.form-check input {
    border: 0.1rem solid var(--Black);
}

.form button.btn {
    margin-top: 2rem;
}

.form input.form-control.quantity,
.form select.form-select.quantity {
    border-radius: 3rem;
    padding: 0.9rem 1.6rem;
    width: 11rem;
    border: 1px solid var(--DarkGrey);
    height: auto;
    color: var(--Black);
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 300;
    margin: 0;
}

.form select.form-select.quantity {
    width: 16rem;
}

.form-control:disabled {
    opacity: 1;
    color: var(--DarkGrey) !important;
}

.label.red {
    color: var(--Red);
    font-size: 2rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 2rem;
}

.form .validation-summary-errors ul {
    margin-bottom: 0;
}

.form.orari .form-control {
    margin-bottom: 0;
}

.form.orari .btn.link {
    font-size: 1.5rem;
    font-weight: 500;
}

/* buttons */

.btn.red {
    color: var(--White);
    font-family: Montserrat;
    background-color: var(--Red);
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    padding: 0.6rem 1.8rem;
    border-radius: 3rem;
    height: fit-content;
}

.btn.black {
    color: var(--White);
    font-family: Montserrat;
    background-color: var(--Black);
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    padding: 0.6rem 1.8rem;
    border-radius: 3rem;
    height: fit-content;
}

.btn.white {
    color: var(--Red);
    font-family: Montserrat;
    background-color: var(--White);
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    padding: 0.6rem 1.8rem;
    border-radius: 3rem;
    height: fit-content;
}

.btn.link {
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration-line: underline;
    display: block;
    padding: 0;
    border: none;
}

.btn.link.green {
    color: var(--Green);
}

.btn.red:hover {
    background-color: var(--Black);
    color: var(--White);
}

.btn.white:hover {
    background-color: var(--Red);
    color: var(--White);
}

.btn.black:hover {
    background-color: var(--White);
    color: var(--Red);
}

.btn:focus {
    outline: 0;
    box-shadow: none;
}

/* card */

.card.force-point {
    background-color: #F7F7F7;
    border-radius: 0;
    border: none;
    border-top: 1.6rem solid var(--Red);
    text-align: left;
    margin-top: 2rem;
    width: 100%;
}

.card .card-body {
    padding: 2.5rem 2rem;
}

.card.force-point .title {
    color: var(--Red);
    font-family: Montserrat;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 2rem;
}

.card.force-point p {
    margin-bottom: 0;
}

.card.force-point img {
    aspect-ratio: 332/207;
    width: 100%;
    height: 20rem;
    object-fit: cover;
}


.card.buttonBottom {
    border-radius: 1rem;
    background-color: var(--White);
    border: none;
    justify-content: center;
    display: flex;
    position: relative;
    margin-top: 2rem;
}

.card.buttonBottom.big {
    padding: 3.5rem 3rem 7rem 3rem;
    width: 100%;
}

.card.buttonBottom.mini {
    padding: 2rem 2.5rem 4.5rem 2.5rem;
    width: 100%;
}

.card.buttonBottom.mini.shop {
    padding: 2rem 2.5rem 4rem 2rem;
    width: 100%;
}

.card.buttonBottom.mini.shop.red {
    border: 0.1rem solid var(--Red);
}

.card.buttonBottom.mini.shop.green {
    border: 0.1rem solid var(--Green);
}

.card.buttonBottom.mini.shop.blue {
    border: 0.1rem solid var(--Blue);
}

.card.buttonBottom .card-body {
    padding: 0;
}

.card.buttonBottom.big img.star {
    position: absolute;
    top: 2rem;
    right: 1.5rem;
    aspect-ratio: 1/1;
    width: 3rem;
    height: 3rem;
    margin: 0;
}

.card.buttonBottom.mini img.star {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    aspect-ratio: 1/1;
    width: 3rem;
    height: 3rem;
    margin: 0;
}

.card.buttonBottom.mini img.copy {
    aspect-ratio: 1/1;
    width: 1.6rem;
    height: 1.6rem;
    margin: 0;
}

.card.buttonBottom img {
    aspect-ratio: 116/193;
    object-fit: contain;
    width: 100%;
}

.card.buttonBottom.big img {
    height: 19rem;
}

.card.buttonBottom.mini img {
    height: 13rem;
    margin-bottom: 2rem;
}

.card.buttonBottom.mini.shop .category {
    font-family: Montserrat;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

.card.buttonBottom.mini.shop.red .category {
    color: var(--Red);
}

.card.buttonBottom.mini.shop.green .category {
    color: var(--Green);
}

.card.buttonBottom.mini.shop.blue .category {
    color: var(--Blue);
}

.card.buttonBottom.mini.shop .category {
    display: -webkit-box;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 17px;
}

.card.buttonBottom .title {
    color: var(--Black);
    font-family: Montserrat;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.card.buttonBottom.big .title {
    font-size: 2.5rem;
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
    height: 59px;
}

.card.buttonBottom.mini .title {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    height: 67px;
}

.card.buttonBottom.mini.shop .title {
    font-size: 1.4rem;
    margin-top: 0.6rem;
    margin-bottom: 1.5rem;
}

.card.buttonBottom .title {
    display: -webkit-box;
    line-clamp: 4;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card.buttonBottom .brand {
    color: var(--Black);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 2rem;
}

.card.buttonBottom.big .brand {
    font-size: 1.7rem;
}

.card.buttonBottom.mini .brand {
    font-size: 1.4rem;
    height: 30px;
}

.card.buttonBottom .price {
    color: var(--Black);
    font-family: Montserrat;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.card.buttonBottom.big .price {
    font-size: 3rem;
}

.card.buttonBottom.mini .price {
    font-size: 1.7rem;
}

.card.buttonBottom .price.red {
    color: var(--Red);
}

.card.buttonBottom .discount_price {
    color: var(--DarkGrey);
    font-family: Montserrat;
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration-line: line-through;
}

.card.buttonBottom .listino {
    color: var(--DarkGrey);
    font-family: Montserrat;
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 400;
    line-height: normal;
    margin-top: 1rem;
}

.card.buttonBottom .a {
    border-radius: 0 0 1rem 1rem;
    background-color: var(--Blue);
    color: var(--White);
    font-family: Montserrat;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    position: absolute;
    padding: 0.7rem;
    width: 100%;
    text-align: center;
    right: 0;
    bottom: 0;
}

.card.buttonBottom.big .a {
    font-size: 1.7rem;
}

.card.buttonBottom.mini .a {
    font-size: 1.4rem;
}

.card.buttonBottom:hover {
    box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.10);
}

.card.buttonBottom:hover .a {
    background-color: var(--Black);
}


.card.egg {
    background-color: var(--White);
    border: none;
    justify-content: center;
    display: flex;
    padding: 8rem 1rem;
    border-radius: 16rem;
}

.card.egg .card-body {
    padding: 0;
}

.card.egg img {
    aspect-ratio: 116/193;
    height: 19rem;
    object-fit: contain;
    width: auto;
}

.card.egg .title {
    color: var(--Black);
    text-align: center;
    font-family: Montserrat, serif;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.card.egg .a {
    color: var(--Black);
    text-align: center;
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.card.egg.v1:hover {
    background-image: url("/image/background_cardegg.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transition: all 0.7s ease-in-out;
}

.card.egg.v1:hover .title,
.card.egg.v1:hover .a {
    color: var(--Red);
    transition: all 0.3s ease-in-out;
}

.card.egg.v2:hover {
    background-color: var(--Red);
    transition: all 0.3s ease-in-out;
}

.card.egg.v2:hover .title,
.card.egg.v2:hover .a {
    color: var(--White);
}


.owner {
    position: relative;
    overflow: hidden;
    margin: 2rem 0;
}

.owner .shadow {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.50) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 3rem;
    justify-content: flex-end;
    display: flex;
    flex-direction: column;
}

.owner .image-container img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: all 0.3s ease;
}

.owner .image-container .text .title {
    color: var(--White);
    font-family: Montserrat;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

.owner .image-container .text p {
    color: var(--White);
    margin: 0;
}


.team-member {
    position: relative;
    overflow: hidden;
    margin: 2rem 0;
}

.team-member .image-container img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: all 0.3s ease;
}

.team-member .image-container .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 3rem;
}

.team-member .image-container .overlay .text .title {
    color: var(--White);
    font-family: Montserrat;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

.team-member .image-container .overlay .text p {
    color: var(--White);
    margin: 0;
}

.team-member .image-container:hover img {
    filter: blur(4px);
    transform: scale(1.1);
}

.team-member .image-container:hover .overlay {
    opacity: 1;
}


/* Posizionamento del popup in basso a sinistra */
.card.pop-up {
    position: fixed;
    bottom: -100%; /* Inizialmente fuori dallo schermo */
    left: 2rem;
    width: 22rem;
    height: auto;
    padding: 0;
    border-radius: 1rem;
    background-color: var(--Blue);
    border: 0;
    z-index: 1000;
    transition: bottom 0.5s ease-in-out;
}

/* Quando il popup è visibile */
.card.pop-up.show {
    bottom: 1.5rem;
}

/* Titolo "SuperOfferta" */
.card.pop-up .big-title {
    color: var(--White);
    text-align: center;
    font-family: Montserrat;
    font-size: 2.5rem;
    font-weight: 700;
    background-color: var(--Red);
    border-radius: 1rem 1rem 0 0;
    padding: 1rem 2rem;
    width: 100%;
    cursor: default;
}

/* Pulsante di chiusura "X" */
.card.pop-up .close-popup {
    position: absolute;
    top: 0.2rem;
    right: 0.2rem;
    background: none;
    border: none;
    font-size: 2rem;
    font-weight: bold;
    color: var(--White);
    cursor: pointer;
    transition: bottom 0.5s ease-in-out;
}

/* Modalità minimizzata: solo "SuperOfferta" visibile */
.card.pop-up.hidden {
    bottom: -336px;
    padding: 0;
    overflow: hidden;
}

/* Quando il popup è nascosto, il titolo diventa cliccabile */
.card.pop-up.hidden .big-title:hover {
    cursor: pointer !important;
}

.card.pop-up.hidden .close-popup {
    display: none;
}

.card.pop-up .card-body {
    padding: 0 2.5rem 5.5rem 2.5rem;
}

.card.pop-up .circle {
    background-color: var(--White);
    border-radius: 50%;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    padding: 2rem;
    width: 15rem;
    margin: auto;
    margin-top: 1rem;
}

.card.pop-up img {
    aspect-ratio: 1/1;
    width: auto;
    object-fit: contain;
}

.card.pop-up .title {
    color: var(--White);
    font-family: Montserrat;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: normal;
    margin-top: 1rem;
}

.card.pop-up .brand {
    color: var(--White);
    font-size: 1.4rem;
    font-weight: 400;
    line-height: normal;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.card.pop-up .discount_price {
    color: rgba(255, 255, 255, 0.63);
    font-family: Montserrat;
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration-line: line-through;
}

.card.pop-up .price {
    color: var(--Black);
    font-family: Montserrat;
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.card.pop-up a {
    border-radius: 0 0 1rem 1rem;
    background-color: var(--Black);
    border: 0.1rem solid var(--Black);
    color: var(--White);
    font-family: Montserrat;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    position: absolute;
    padding: 0.9rem;
    width: 100%;
    text-align: center;
    right: 0;
    bottom: 0;
}

.card.pop-up a:hover {
    color: var(--Black);
    background-color: var(--White);
    border: 0.1rem solid var(--White);
    cursor: pointer;
}


.card.blog {
    border: none;
    border-bottom: 1rem solid var(--LightGrey);
    padding: 0;
    border-radius: 0;
    margin-top: 2rem;
    width: 100%;
}

.card.blog img {
    aspect-ratio: 452/231;
    width: 100%;
    height: 23rem;
    object-fit: cover;
}

.card.blog .card-body {
    padding: 3rem 3.5rem 4rem 3.5rem;
}

.card.blog .date {
    color: var(--Red);
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    justify-content: end;
    display: flex;
    margin-bottom: 1rem;
}

.card.blog h4 {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.card.blog .subtitle {
    font-family: Montserrat;
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 1rem;
}

.card.blog p {
    margin: 0;
}

.card.blog:hover {
    box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.10);
}

/* carousel */
.carousel-highlight {
    visibility: hidden;
}

.carousel-highlight.slick-initialized {
    visibility: visible;
}

.img-gallery-big {
    visibility: hidden;
}

.img-gallery-big.slick-initialized {
    visibility: visible;
}

.carousel-categories {
    visibility: hidden;
}

.carousel-categories.slick-initialized {
    visibility: visible;
}

.carousel-logo {
    margin-top: 10rem;
    visibility: hidden;
}

.carousel-logo .slick-track {
    margin-left: 0;
    gap: 1.5rem;
    display: flex;
}

.carousel-logo.slick-initialized {
    visibility: visible;
}

.carousel-logo .slick-slide {
    margin: 0 1.5rem;
}

.carousel-logo img {
    aspect-ratio: 106/67;
    width: auto;
    height: 90px;
    object-fit: contain;
}

.carousel-preferred_2x .slick-slide,
.carousel-preferred_3x .slick-slide {
    margin: 0 1rem;
}

.carousel-preferred_4x .slick-track {
    margin-left: 0;
    gap: 1.5rem;
    display: flex;
}

.carousel-categories .slick-track {
    margin-left: 0;
    gap: 1.5rem;
    display: flex;
}

.slick-prev, .slick-next {
    display: none !important;
}

/* breadcrumb */

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--Red);
}

.breadcrumb-item {
    color: var(--Red);
    font-family: Montserrat;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}

/* filter */

.mini-filter {
    display: flex;
    gap: 0;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.mini-filter a {
    color: var(--DarkGrey);
    font-family: Montserrat;
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding: 0.6rem 2rem;
    background-color: var(--White);
    border: none;
    border-radius: 3rem;
}

.mini-filter a:hover,
.mini-filter a.active {
    background-color: var(--LightGrey);
    color: var(--Black);
}

.mini-filter button {
    color: var(--DarkGrey);
    font-family: Montserrat;
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding: 0.6rem 2rem;
    background-color: var(--White);
    border: none;
    border-radius: 3rem;
}

.mini-filter button:hover,
.mini-filter button.active {
    background-color: var(--LightGrey);
    color: var(--Black);
}

.product-filter .big-title {
    color: var(--Red);
    font-family: Montserrat;
    font-size: 1.9rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.product-filter .title {
    color: var(--Black);
    font-family: Montserrat;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 2rem;
    margin-top: 8rem;
}

.product-filter a.square {
    border-radius: 0.5rem;
    border: 0.1rem solid var(--Black);
    color: var(--Black);
    font-family: Montserrat;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 0.9rem 1.9rem;
    margin-right: 1rem;
    margin-top: 1rem;
    display: inline-block;
}

.product-filter .form-check {
    color: var(--Black);
    font-family: Montserrat;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    margin-top: 1rem;
}


.responsive-filter .navbar-nav .category,
.product-filter .category {
    margin-bottom: 1rem;
    display: block;
}

.responsive-filter .navbar-nav .category .btn,
.product-filter .category .btn {
    align-items: center;
    width: fit-content;
    text-align: left;
    font-family: Montserrat;
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: 0.5rem 0;
    cursor: pointer;
    white-space: normal;
}

.responsive-filter .navbar-nav .category ul.subcategory,
.product-filter .category ul.subcategory {
    display: none;
    padding: 0 0 0 2rem;
    margin-bottom: 1.5rem;
    border: none;
    position: static !important;
    float: none;
    transform: none !important;
    top: auto !important;
    left: auto !important;
    will-change: auto !important;
    box-shadow: none;
}

.responsive-filter .navbar-nav .category ul.subcategory.show,
.product-filter .category ul.subcategory.show {
    display: block;
    margin-top: 0;
    padding-left: 0;
}

.responsive-filter .navbar-nav .category .btn::after,
.product-filter .category .btn::after {
    display: none;
}

.responsive-filter .navbar-nav .category .btn.show::after,
.product-filter .category .btn.show::after {
    rotate: 0deg;
}

.responsive-filter .navbar-nav .category ul.subcategory li,
.product-filter .category ul.subcategory li {
    font-size: 1.4rem;
    font-weight: 500;
    margin: 0;
    padding: 0.5rem 0;
    text-align: left;
    font-family: Montserrat, serif;
    width: fit-content;
}

.responsive-filter .navbar-nav .category ul.subcategory li.active,
.product-filter .category ul.subcategory li.active,
.product-filter .category ul.subcategory li:hover {
    font-weight: 700;
}

.responsive-filter .navbar-nav .category ul.subcategory-third,
.product-filter .category ul.subcategory-third {
    padding: 0.5rem 0 0 1.5rem;
    list-style: none;
    margin-bottom: 1rem;
}

.responsive-filter .navbar-nav .category ul.subcategory-third li,
.product-filter .category ul.subcategory-third li {
    font-size: 1.3rem;
    font-weight: 500;
    margin: 0;
    padding: 0.3rem 0;
    text-align: left;
    font-family: Montserrat, serif;
}

.responsive-filter .navbar-nav .category ul.subcategory li.active ul.subcategory-third li.active,
.product-filter .category ul.subcategory li.active ul.subcategory-third li.active,
.product-filter .category ul.subcategory ul.subcategory-third li:hover {
    color: var(--Red);
    font-weight: 500;
}

.responsive-filter .navbar-nav .category .btn:focus,
.product-filter .category .btn:hover,
.product-filter .category .btn:focus {
    color: var(--Black);
    box-shadow: none;
    text-decoration: underline;
}

.total-product {
    color: var(--Black);
    text-align: right;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}


/* filter mobile */

.filter-mobile .title-filter {
    color: var(--Black);
    font-family: Montserrat;
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.filter-mobile .responsive-filter {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    background-color: var(--White);
    padding: 65px 40px;
    z-index: 999999;
    height: 100%;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    transition: all .3s ease-in;
}

.filter-mobile .responsive-filter.active {
    right: 0;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    transition: all .3s ease-in-out;
}

.filter-mobile .close-filter {
    position: absolute;
    top: 5%;
    right: 7%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center
}

.filter-mobile .close-filter img {
    width: 20px;
    object-fit: contain;
}

.filter-mobile .open-filter {
    display: block;
    padding: 0;
    color: var(--Blue);
    font-size: 2rem;
    font-weight: 500;
    text-decoration: underline;
}

@media (min-width: 992px) {
    .open-filter {
        display: none;
    }
}


/* pagination */

.pagination {
    margin-top: 5rem;
}

.pagination .page-link {
    color: var(--Black);
    border: none;
    font-size: 1.8rem;
    border-radius: 0.7rem;
    padding: 0.4rem 1rem;
    margin: 0 0.8rem;
}

.pagination .page-item.active .page-link {
    background-color: var(--Black);
    border: none;
}

.pagination .page-link:last-child {
    border-top-right-radius: 0.7rem;
    border-bottom-right-radius: 0.7rem;
}

.pagination .page-link:first-child {
    border-top-left-radius: 0.7rem;
    border-bottom-left-radius: 0.7rem;
}

/* widget */

.message-widget {
    display: flex;
    bottom: 20px;
    right: 20px;
    border: 0 none;
    padding: 1rem;
    border-radius: 50%;
    text-align: center;
    z-index: 90;
    position: fixed;
    cursor: pointer;
    background-color: var(--Red);
    align-items: center;
    justify-content: center;
}

.message-widget img {
    aspect-ratio: 1 / 1;
    width: 30px;
    object-fit: contain;
}

.reserved-area-widget {
    display: flex;
    bottom: 140px;
    right: 0;
    border: 0 none;
    padding: 2.5rem 1.5rem 2.5rem 4rem;
    border-radius: 100px 0px 0px 100px;
    text-align: center;
    z-index: 90;
    position: fixed;
    cursor: pointer;
    background-color: var(--Red);
    align-items: center;
    justify-content: center;
}

.reserved-area-widget img {
    aspect-ratio: 125 / 111;
    width: 125px;
    object-fit: contain;
}

.qr-widget {
    display: flex;
    bottom: 65px;
    left: 0;
    border: 0 none;
    padding: 2.5rem 4rem 2.5rem 1.5rem;
    border-radius: 0 100px 100px 0;
    text-align: center;
    z-index: 90;
    position: fixed;
    cursor: pointer;
    background-color: var(--White);
    align-items: center;
    justify-content: center;
    -webkit-box-shadow: 0 4px 5px -1px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 4px 5px -1px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 5px -1px rgba(0, 0, 0, 0.3);
}

.qr-widget img {
    aspect-ratio: 125 / 111;
    width: 125px;
    object-fit: contain;
}

/* loading */

.loading_product {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

.loading_product img {
    aspect-ratio: 1/1;
    width: 35px;
    height: 35px;
    object-fit: contain;
}

/* header */

.carousel-bar {
    visibility: hidden;
}

.carousel-bar.slick-initialized {
    visibility: visible;
}

.bar {
    color: var(--White);
    font-family: Montserrat;
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: 1.2rem 0;
}

.bar.blue {
    background-color: var(--Blue);
}

.bar.green {
    background-color: var(--Green);
}

.bar.red {
    background-color: var(--Red);
}

.bar.purple {
    background-color: var(--Purple);
}

.bar.black {
    background-color: var(--Black);
}

.bar img {
    aspect-ratio: 1/1;
    width: 2rem;
    object-fit: contain;
    margin-right: 0.5rem;
}

header nav.search {
    align-items: center;
    padding: 2.5rem 0;
}

header nav.search img.logo {
    aspect-ratio: 124/87;
    width: 12rem;
    object-fit: cover;
}

header nav.search .input-group.search {
    max-width: 33rem;
    /*width: 331px;*/
}
header nav.search .input-group.search.mw-55 {
    max-width: 55rem;
    /*width: 331px;*/
}

header nav.search ul {
    list-style: none;
    display: flex;
    gap: 4.5rem;
    margin-bottom: 0;
    padding: 0;
}

header nav.search ul li {
    display: flex;
    color: var(--Red);
    font-family: Montserrat;
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    align-items: center;
    gap: 1rem;
}

header nav.search ul li.black {
    color: var(--Black);
}

.switch-container {
    display: flex;
    border-radius: 3rem;
    padding: 0.5rem 0.8rem;
    width: fit-content;
    background: rgba(58, 64, 90, 0.06);
}

.switch-container .switch-option {
    text-align: center;
    padding: 0.5rem 1.9rem;
    border-radius: 3rem;
    font-family: Montserrat;
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: var(--Black);
    cursor: pointer;
    transition: all 0.3s ease;
}

.switch-container .switch-option.active {
    background-color: var(--Blue);
    color: var(--White);
} 

header nav.menu {
    background-color: #F3F4F5;
    padding: 1rem;
    position: relative;
}

header nav.menu.red {
    background-color: var(--Red);
}

header nav.menu ul {
    list-style: none;
    display: flex;
    gap: 8rem;
    margin-bottom: 0;
    padding: 0;
}

header nav.menu ul li {
    color: var(--Black);
    font-family: Montserrat;
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: 2rem 0;
    text-align: center;
}

header nav.menu ul li.menu-shop {
    text-align: unset;
}

header nav.menu ul li.active {
    color: #CD2323;
}

header nav.menu ul li:last-child {
    font-weight: 900;
}

header nav.menu.red ul li {
    color: var(--White);
}

header nav.menu.red ul li:last-child {
    font-weight: 700;
}

/* tendina shop */

header .menu-shop .responsive-shop {
    position: fixed;
    top: 0;
    left: -2000px;
    width: 30%;
    background-color: var(--White);
    padding: 70px 50px 95px 40px;
    z-index: 9999;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    transition: all .3s ease-in;
}

header .menu-shop .responsive-shop.active {
    left: 0;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    transition: all .3s ease-in-out;
}

header .menu-shop .close-shop {
    cursor: pointer;
}

header .menu-shop .close-shop img {
    width: 20px;
    object-fit: contain;
}

header nav .menu-shop .open-shop {
    display: block;
    padding: 0;
    color: var(--Black);
    font-family: Montserrat, serif;
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: center;
    cursor: pointer;
}

header .menu-shop img.logo {
    aspect-ratio: 109/34;
    width: 200px;
    object-position: left;
    margin-bottom: 4rem;
    object-fit: contain;
}

header .menu-shop .title-shop {
    color: var(--Red);
    font-family: Montserrat, serif;
    font-size: 2rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 2.5rem;
    text-align: left;
}

header .menu-shop .shop-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
}

header .menu-shop .category {
    margin-bottom: 1rem;
    display: block;
}

header .menu-shop .category .btn {
    font-size: 1.4rem;
    display: flex;
    gap: 1.5rem;
    font-weight: 700;
    align-items: center;
    padding: 0.5rem 0;
    width: 100%;
    text-align: left;
    justify-content: space-between;
}

header .menu-shop .category .btn img {
    aspect-ratio: 1/1;
    width: 2rem;
    height: 2rem;
    object-fit: contain;
}

header .menu-shop ul.subcategory {
    display: none;
    padding: 0 0 0 2rem;
    margin-bottom: 1.5rem;
    border: none;
    position: static !important;
    float: none;
    transform: none !important;
    top: auto !important;
    left: auto !important;
    will-change: auto !important;
    box-shadow: none;
}

header .menu-shop ul.subcategory.show {
    display: block;
    margin-top: 0;
    padding-left: 2rem;
}

header .menu-shop .category .btn::after {
    border: none;
    background-image: url("../image/simple_arrow.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    aspect-ratio: 1/1;
    width: 1rem;
    rotate: -90deg;
    margin: 0;
    display: block;
    transition: transform 0.3s ease-in-out;
}

header .menu-shop .category .btn.show::after {
    rotate: 0deg;
}

header .menu-shop ul.subcategory li {
    font-size: 1.4rem;
    font-weight: 500;
    margin: 0;
    padding: 1rem 0;
    text-align: left;
}

header .menu-shop ul.subcategory li:last-child {
    font-weight: 500;
}

header .menu-shop .category .btn:hover,
header .menu-shop .category .btn:focus,
header .menu-shop ul.subcategory li:hover {
    color: var(--Red);
}

/* tendina cantieri */

header .menu-cantieri .responsive-cantieri {
    position: absolute;
    top: -2000px;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--LightGrey);
    z-index: 100;
    padding: 5.5rem 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
    transition: all .3s ease-in;
}

header .menu-cantieri .responsive-cantieri.active {
    top: 215px;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    transition: all .3s ease-in-out;
}

header .menu-cantieri .close-cantieri,
header .menu-shop .close-cantieri {
    cursor: pointer;
}

header .menu-cantieri .close-cantieri img,
header .menu-shop .close-cantieri img {
    width: 20px;
    object-fit: contain;
}

header nav .menu-cantieri .open-cantieri,
header nav .menu-shop .open-cantieri {
    display: block;
    padding: 0;
    color: var(--Black);
    font-family: Montserrat, serif;
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: center;
    cursor: pointer;
}

header .menu-cantieri .title-cantieri,
header .menu-shop .title-cantieri {
    font-family: Montserrat, serif;
    font-size: 1.7rem;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 1rem;
}

header .menu-cantieri .box-cantieri,
header .menu-shop .box-cantieri {
    padding: 2rem 2.5rem;
    border-radius: 1rem;
    width: 100%;
    display: block;
    background-color: var(--White);
    margin-top: 2.5rem;
    border: solid 0.1rem var(--White);
}

header .menu-cantieri .box-cantieri:hover,
header .menu-cantieri .box-cantieri.active,
header .menu-shop .box-cantieri:hover,
header .menu-shop .box-cantieri.active {
    border: solid 0.1rem var(--Red);
}

header .menu-cantieri .box-cantieri h3,
header .menu-shop .box-cantieri h3 {
    font-size: 2rem;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 1rem;
}

header .menu-cantieri .box-cantieri p,
header .menu-shop .box-cantieri p {
    font-size: 1.7rem;
    margin-bottom: 0;
}

header .menu-cantieri .btn.link,
header .menu-shop .btn.link {
    font-size: 1.7rem;
    font-weight: 400;
    margin-top: 4rem;
}

/*header nav.menu .dropdown {
    position: absolute;
    top: 6rem;
    left: 10%;
    width: 100%;
    max-width: 1400px;
    background-color: var(--White);
    padding: 3rem;
    display: none;
    box-shadow: 0 0.4rem 0.6rem rgba(0, 0, 0, 0.1);
    z-index: 10;
    border-radius: 0.8rem;
}

header nav.menu li:hover .dropdown {
    display: flex;
    justify-content: space-between;
}

header nav.menu .dropdown h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--Red);
    margin-bottom: 2rem;
}

header nav.menu .dropdown h4.black {
    color: var(--Black);
}

header nav.menu .dropdown .root-category {
    padding: 0;
    margin: 0;
    gap: 2rem;
}

header nav.menu .dropdown .category {
    padding: 0;
    font-size: 1.4rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    font-weight: 700;
}

header nav.menu .dropdown .subcategory-item {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 1rem 0;
    text-align: left;
}

header nav.menu .dropdown .root-category:last-child {
    font-weight: 700;
}

header nav.menu .dropdown .subcategory-item,
header nav.menu .dropdown .subcategory-item:last-child {
    font-weight: 400;
}

header nav.menu .dropdown .category img {
    width: 2.5rem;
    height: 2.5rem;
}

header nav.menu .dropdown a {
    text-decoration: none;
    text-align: left;
}

header nav.menu .dropdown .category a:not(.active) {
    color: var(--Black);
}

header nav.menu .dropdown .category a:hover,
header nav.menu .dropdown .category a.active {
    color: var(--Red);
}

header nav.menu .dropdown .subcategory-item a:not(.active) {
    color: var(--Black);

}

header nav.menu .dropdown .subcategory-item a:hover,
header nav.menu .dropdown .subcategory-item a.active {
    color: var(--Black);
    font-weight: 700;
}*/

/* navbar mobile */

.responsive-mobile-menu img.logo {
    aspect-ratio: 109/34;
    width: 100px;
    object-fit: contain;
}

.responsive-mobile-menu form {
    margin-top: 4rem;
}

.responsive-mobile-menu ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 6rem 0 0 0;
}

.responsive-mobile-menu ul li {
    font-family: Montserrat, serif;
    font-size: 1.7rem;
    font-weight: 500;
    line-height: normal;
}

header .responsive-mobile-menu .menu-shop .open-shop {
    display: block;
    padding: 0;
    color: var(--Black);
    font-family: Montserrat, serif;
    font-size: 1.7rem;
    font-weight: 500;
    line-height: normal;
    cursor: pointer;
}

.responsive-mobile-menu ul li a {
    padding: 0.5rem 0;
    text-decoration: none;
}

.responsive-mobile-menu {
    position: absolute;
    top: 0;
    right: 0;
    left: 100%;
    background-color: var(--White);
    z-index: 89;
    height: 100vh;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    transition: all .3s ease-in;
}

.responsive-mobile-menu.active {
    left: 0;
    opacity: 1;
    visibility: visible;
    padding: 2rem 2rem 4rem 2rem;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    transition: all .3s ease-in-out;
}

.close-menu {
    top: 1%;
    right: 1%;
    width: 6rem;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-menu img {
    width: 2rem;
}

.open-menu {
    display: block;
    width: 2.8rem;
    height: 2.8rem;
    background-image: url('/image/black_hamburger.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

.nav-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background-color: var(--White);
    /*position: fixed;*/
    z-index: 10;
    width: 100%;
}

.nav-mobile .logo-nav img {
    aspect-ratio: 124/87;
    width: 10rem;
    object-fit: contain;
}

.nav-mobile ul.icons {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 3rem;
}

.nav-mobile ul.icons li a {
    display: block;
}

/* footer */

footer {
    padding-top: 9rem;
}

footer img.logo {
    aspect-ratio: 149/104;
    width: 14rem;
    object-fit: contain;
    object-position: left;
    margin-bottom: 2.6rem;
}

footer .social {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 2.7rem;
}

footer .social a img {
    aspect-ratio: 1/1;
    height: 2.5rem;
    width: auto;
}

footer .title {
    color: #000;
    font-family: Montserrat;
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;;
}

footer a.title {
    margin-top: 5rem;
    display: block;
    margin-bottom: 1.5rem;
}

footer a.title:hover {
    text-decoration: underline;
}

footer img.certificato {
    aspect-ratio: 4107/915;
    width: 100%;
    object-fit: contain;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-top: 1.5rem;
    font-size: 1.5rem;
}

footer .input-group {
    margin: 1.5rem 0;
}

footer .input-group .btn.red {
    height: -webkit-fill-available;
    position: absolute;
    z-index: 20;
    right: 0;
    margin: 0;
}

footer .payment_group {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

footer img.payment {
    aspect-ratio: 42/30;
    width: 50px;
    margin-top: 1rem;
}

footer .privacy {
    color: var(--Black);
    text-align: center;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2rem;
    margin-top: 13rem;
    margin-bottom: 2rem;
}

/* prenotazione accademy */

.prenotazione-accademy {
    border-radius: 2rem;
    background-color: var(--White);
    aspect-ratio: 688/380;
    width: 69rem;
    height: auto;
    padding: 4.5rem 11rem 5rem 11rem;
    text-align: center;
    margin: auto;
}

.prenotazione-accademy .btn-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
}

.prenotazione-accademy h3 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.prenotazione-accademy select.form-select {
    border-radius: 3rem;
    border: 0.1rem solid var(--Black);
    color: var(--Black);
}

.prenotazione-accademy .btn {
    margin-bottom: 0;
    margin-top: 5rem;
}

/* comparare prodotti */

.compare-block {
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.10);
    aspect-ratio: 569/345;
    width: 56rem;
    height: auto;
    padding: 3.5rem 5rem;
    text-align: center;
    position: fixed;
    bottom: 12rem;
    right: 1.5rem;
    z-index: 90;
}

.compare-block .btn-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
}

.compare-block h3 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.compare-block p {
    margin-bottom: 3rem;
}

.compare-block .image {
    border-radius: 0.5rem;
    border: 0.1rem solid var(--DarkGrey);
    padding: 0.9rem;
    position: relative;
}

.compare-block .image a {
    display: flex;
    position: absolute;
    top: -1rem;
    right: -1rem;
}

.compare-block .image a img {
    aspect-ratio: 1/1;
    width: 2.3rem;
    height: 2.3rem;
    object-fit: contain;
    background-color: var(--DarkGrey);
    padding: 0.3rem;
    border-radius: 50%;
}

.compare-block .image img {
    aspect-ratio: 1/1;
    width: 10rem;
    object-fit: contain;
}


/* black_banner */

section.black_banner {
    background-color: var(--LightGrey);
    margin: 7rem 0;
    padding: 3rem 0;
}

section.black_banner img {
    aspect-ratio: 455/366;
    width: 100%;
    object-fit: contain;
}

section.black_banner h2 {
    color: var(--Red);
}

/* accordion */

section.accordion h2 {
    margin-bottom: 4rem;
}

section.accordion img {
    aspect-ratio: 450/365;
    width: 100%;
    object-fit: cover;
}

section.accordion .accordion-item {
    border: none;
    border-bottom: 0.1rem solid var(--Black);
}

section.accordion .accordion-button::after {
    content: "+";
    color: var(--Black);
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 50%;
    background-color: var(--White);
    filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.15));
    transition: transform 0.2s ease-in-out;
    background-image: unset;
    display: flex;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 500;
    line-height: normal;
    margin-left: 5rem;
    align-items: center;
}

section.accordion .accordion-button:not(.collapsed)::after {
    content: "-";
    margin-left: 5rem;
}

section.accordion .accordion-button {
    color: #000;
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 700;
    line-height: 2rem;
    justify-content: space-between;
    padding: 2rem 0;
}

section.accordion .accordion-button span {
    color: var(--Red);
    display: block;
}

section.accordion .accordion-button:not(.collapsed) {
    color: var(--Black);
    background-color: var(--White);
    box-shadow: none;
}

section.accordion .accordion-body {
    padding: 1rem 1rem 2rem 0;
}

section.accordion .accordion-body p {
    margin-bottom: 2rem;
}

/* section carousel-home */

.carousel-home {
    padding: 0;
    visibility: hidden;
}

.carousel-home.slick-initialized {
    visibility: visible;
}

.carousel-home .slide {
    position: relative;
    width: 100%;
    height: 53rem;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.carousel-home .slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 100%;
    clip-path: polygon(0 0, 80% 0, 60% 100%, 0% 100%);
    z-index: 1;
}

.carousel-home .slide.red::before {
    background: rgba(219, 56, 49, 0.80);
}

.carousel-home .slide.black::before {
    background: rgba(0, 0, 0, 0.80);
}

.carousel-home .slide.white::before {
    background: rgba(255, 255, 255, 0.80);
}

.carousel-home .slide.green::before {
    background: rgba(161, 208, 9, 0.80);
}

.carousel-home .slide.purple::before {
    background: rgba(151, 71, 255, 0.80);
}

.carousel-home .slide.blue::before {
    background: rgba(35, 181, 211, 0.80);
}

.carousel-home .content {
    max-width: 685px;
    position: relative;
    z-index: 2;
}

.carousel-home .slide.red .sopra_titolo,
.carousel-home .slide.black .sopra_titolo,
.carousel-home .slide.blue .sopra_titolo,
.carousel-home .slide.purple .sopra_titolo,
.carousel-home .slide.green .sopra_titolo {
    color: var(--White);
}

.carousel-home .slide.white .sopra_titolo {
    color: var(--Black);
}

.carousel-home h2 {
    margin-bottom: 4rem;
}

.carousel-home .slide.red h2,
.carousel-home .slide.black h2,
.carousel-home .slide.blue h2,
.carousel-home .slide.purple h2,
.carousel-home .slide.green h2 {
    color: var(--White);
}

.carousel-home .slide.white h2 {
    color: var(--Black);
}

.carousel-home .btn {
    color: var(--White);
    font-family: Montserrat;
    background-color: var(--Red);
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    padding: 0.6rem 1.8rem;
    border-radius: 3rem;
    height: fit-content;
    display: inline-block;
}

.carousel-home .slide.red .btn,
.carousel-home .slide.blue .btn,
.carousel-home .slide.purple .btn,
.carousel-home .slide.green .btn {
    color: var(--White);
    background-color: var(--Black);
}

.carousel-home .slide.white .btn,
.carousel-home .slide.black .btn {
    color: var(--White);
    background-color: var(--Red);
}


.carousel-home .slider {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.carousel-home .slider .slide {
    width: 100%;
    flex-shrink: 0;
    position: relative;
    display: block;
}

/* dett-prod */

.dett-prod {
    padding-top: 0;
}

.dett-prod .scroll {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    direction: rtl;
    padding-left: 6px; /* Distanza tra scrollbar e immagini */
    box-sizing: content-box;
    width: 100%;
    display: flex;
    flex-direction: column;

}

.dett-prod .scroll > * {
    direction: ltr; /* Reimposta la direzione corretta per il contenuto */
}

.dett-prod .scroll::-webkit-scrollbar {
    width: 4px;
}

.dett-prod .scroll::-webkit-scrollbar-thumb {
    background-color: #aaa; /* Colore della maniglia */
    border-radius: 10px; /* Bordo arrotondato */
}

.dett-prod .scroll::-webkit-scrollbar-track {
    background: transparent; /* Sfondo della traccia */
}

.dett-prod img.gallery-mini {
    aspect-ratio: 1 / 1;
    border-radius: 0.5rem;
    border: 0.1rem solid var(--LightGrey);
    margin-bottom: 1.5rem;
    object-fit: contain;
    width: 100%;
    -webkit-transition: all 0.3s ease-in-out !important;
    -moz-transition: all 0.3s ease-in-out !important;
    -o-transition: all 0.3s ease-in-out !important;
    transition: all 0.3s ease-in-out !important;
}

.dett-prod img.gallery-mini:hover {
    border-color: var(--Red);
}

.dett-prod .gallery-big {
    height: 100%;
    width: 100%;
}

.dett-prod .gallery-big img {
    aspect-ratio: 1/1;
    border-radius: 0.5rem;
    object-fit: contain;
    border: 0.1rem solid var(--LightGrey);
    width: 100%;
    height: auto;
}

.dett-prod .heart {
    cursor: pointer;
    transition: fill 0.3s ease;
}

.dett-prod .heart.filled {
    fill: var(--Red);
}

.dett-prod .btn.marca {
    color: var(--Red);
    font-family: Montserrat;
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration-line: underline;
    padding: 0;
}

.dett-prod .btn.marca:hover {
    color: var(--Green);
}

.dett-prod .title {
    color: var(--Black);
    font-family: Montserrat;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.dett-prod .bold {
    color: var(--Black);
    font-family: Montserrat;
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 2rem;
}

.dett-prod .bold span {
    color: var(--Red);
}

.dett-prod p {
    margin-bottom: 2rem;
}

.dett-prod .discount_price {
    color: var(--DarkGrey);
    font-family: Montserrat;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration-line: line-through;
}

.dett-prod .price {
    color: var(--Black);
    font-family: Montserrat;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.dett-prod .price.red {
    color: var(--Red);
}

.dett-prod .listino {
    color: var(--DarkGrey);
    font-family: Montserrat;
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 400;
    line-height: normal;
    margin-top: 1rem;
}

.dett-prod .availability {
    color: var(--Green);
    font-family: Montserrat;
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-top: 1.5rem;
}

.dett-prod .document .document_title {
    color: var(--Black);
    font-family: Montserrat;
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.dett-prod .document img {
    aspect-ratio: 1 / 1;
    width: 1.5rem;
    object-fit: contain;
}

.dett-prod .document a {
    color: var(--Black);
    font-family: Montserrat;
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration-line: underline;
}

.dett-prod .document a:hover {
    color: var(--Red);
}

.dett-prod select.form-select {
    padding: 0.9rem 1.6rem;
    width: 26rem;
    margin: 0;
}

.dett-prod .grey_box {
    background-color: var(--LightGrey);
    border-radius: 1rem;
    padding: 1.5rem 1.5rem 1.5rem 2rem;
    width: 330px;
}

.dett-prod .grey_box img {
    aspect-ratio: 1 / 1;
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.dett-prod .grey_box p.blue {
    color: var(--Blue);
    font-family: Montserrat;
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 1px;
}

.dett-prod .grey_box p.black {
    margin-bottom: 5px;
    font-size: 1.3rem;
    font-weight: 400;
}

.dett-prod .grey_box .payment_group {
    margin-top: 5px;
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.dett-prod .grey_box img.payment {
    aspect-ratio: 42/30;
    width: 30px;
    height: auto;
    object-fit: contain;
    margin-top: 1rem;
}

.dett-prod .delivery {
    color: var(--Black);
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 2.5rem;
}

.dett-prod .information {
    margin-top: 8rem;
}

.dett-prod .information p {
    font-size: 1.4rem;
    margin-bottom: 6rem;
}

.dett-prod .information .title-detail {
    color: var(--Black);
    font-family: Montserrat;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}


/* section-1 */

.section-1 .back {
    background-image: url('/image/prodotti_preferiti_home.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 3.8rem 10rem 3.8rem 3.8rem;
    position: relative;
}

/*.section-1 .back img {
    position: absolute;
    bottom: 0;
    aspect-ratio: 343/576;
    width: 35.7rem;
    object-fit: contain;
    right: -15rem;
}*/

.section-1 .back .text {
    color: var(--White);
    font-family: Montserrat;
    font-size: 3rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 20rem;
}

.section-1 .back .text b {
    font-weight: 900;
}

.section-1 .back .text span {
    color: var(--Red);
}

/* section-2 */

.section-2 {
    background-image: url('/image/background_red_blocks.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 7rem 0;
}

.section-2 .block {
    padding: 3.5rem;
    background-color: var(--White);
    width: 100%;
}

.section-2 .block {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.section-2 .block h3 {
    color: var(--Black);
    font-size: 3rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 2rem;
}

.section-2 .block p {
    margin-bottom: 3rem;
}

.section-2 .block img {
    aspect-ratio: 291/229;
    width: 100%;
    object-fit: contain;
}

/* section-3 */

.section-3 {
    margin: 7rem 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    background-image: url('/image/interactive_section.jpg');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: background-image 0.3s ease-in-out;
}

.section-3 .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.section-3 h2,
.section-3 p {
    color: var(--White);
}

.section-3 .grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0;
    z-index: 2;
}

.section-3 .grid-item {
    position: relative;
    background-color: rgba(0, 0, 0, 0.25);
    aspect-ratio: 1/1;
    width: auto;
    padding: 3rem;
    border: 0.05rem solid var(--White);
    flex-direction: column;
    justify-content: flex-end;
    margin-top: auto;
    display: flex;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-3 .grid-item.no-hover {
    pointer-events: none;
    justify-content: start;
}

.section-3 .grid-item.no-hover p {
    margin-bottom: 0;
}

.section-3 .grid-item h2 {
    font-size: 4rem;
}

.section-3 .grid-item h3 {
    z-index: 3;
    color: var(--White);
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.45);
    font-size: 2rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}

.section-3 .grid-item h3.grid-title {
    margin-top: auto;
    text-align: right;
    text-transform: unset;
}

.section-3 .grid-item .hover-content {
    color: var(--White);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: end;
    text-align: right;
    margin-top: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 3rem;
}

.section-3 .grid-item:hover .hover-content {
    opacity: 1;
}

.section-3 .grid-item:hover h3.grid-title {
    opacity: 0;
    display: none;
}

.section-3 .grid-item:hover {
    background-color: rgba(219, 56, 49, 0.90);
}

/* section-4 */

.section-4 h2 {
    margin-bottom: 4rem;
}

.section-4 .carousel-highlight .slide-content {
    display: flex;
    justify-content: space-between;
    gap: 14rem;
}

.section-4 .carousel-highlight .image img {
    aspect-ratio: 450/325;
    height: 32rem;
    object-fit: cover;
}

.section-4 .carousel-highlight .btn {
    margin-top: auto;
    display: inline-block;
}

/* section-5 */

.section-5 img {
    aspect-ratio: 1920/532;
    object-fit: cover;
    width: 100%;
    height: 53rem;
}

/* section-6 */

.section-6 img {
    aspect-ratio: 450/325;
    object-fit: cover;
    width: 100%;
}

/* section-7 */

.section-7 img {
    aspect-ratio: 687/610;
    width: 100%;
    object-fit: cover;
}

.section-7 p {
    margin: 0;
}

/* section-8 */

.section-8 .number {
    margin-bottom: 4.5rem;
}

.section-8 h2.red {
    margin-bottom: 1.5rem;
}

.section-8 p.subtitle {
    margin-bottom: 1rem;
    font-weight: 700;
}

/* section-9 */

.section-9 {
    background-color: var(--LightGrey);
    margin: 7rem 0;
}

.section-9 .sopra_titolo.red {
    color: #CD2323;
}

.section-9 p {
    margin-bottom: 0;
}

/* section-10 */

.section-10 .back {
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: contain;
    aspect-ratio: 679 / 490;
    width: 100%;
    padding: 3.8rem 21rem 3.8rem 3.8rem;
}

/*.section-10 .back img {
    position: absolute;
    bottom: -0.65rem;
    aspect-ratio: 429/437;
    width: 42rem;
    object-fit: contain;
    right: -21rem;
}*/

.section-10 .back .text {
    color: var(--White);
    font-family: Montserrat, serif;
    font-size: 3rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 2rem;
}

.section-10 p {
    color: var(--White);
}

.section-10 .title-carousel {
    color: var(--Red);
    font-family: Montserrat;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 1.7rem;
}

.section-10 .brand img {
    aspect-ratio: 97/77;
    height: 120px;
    width: auto;
    object-fit: contain;
}

.section-10 .brand .title {
    font-family: Montserrat;
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-top: 1rem;
    margin-bottom: 2.5rem;
}

.section-10 .brand p {
    font-size: 1.4rem;
    color: var(--Black);
}

/* section-11 */

.section-11 img {
    aspect-ratio: 568/450;
    width: 100%;
    object-fit: cover;
}

.section-11 h2 {
    font-size: 4rem;
}

.section-11 p {
    margin-bottom: 3.5rem;
}

/* section-12 */

.section-12 {
    padding: 0;
    margin-bottom: 7rem;
}

.section-12 .banner {
    position: relative;
    width: 100%;
    height: 53rem;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.section-12 .banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 100%;
    background: rgba(219, 56, 49, 0.80);
    clip-path: polygon(0 0, 80% 0, 60% 100%, 0% 100%);
    z-index: 1;
}

.section-12 .content {
    max-width: 685px;
    position: relative;
    z-index: 2;
}

.section-12 .banner {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 10rem 0;
}

.section-12 .content {
    max-width: 685px;
    z-index: 2;
}

.section-12 h2 {
    margin-bottom: 2.5rem;
}

.section-12 p {
    color: var(--White);
    margin-bottom: 4rem;
}

.section-12 .btn {
    display: inline-block;
    margin: 0;
}

/* section-13 */

.section-13 img {
    aspect-ratio: 688/504;
    width: 100%;
    object-fit: cover;
}

/* section-14 */

.section-14 h2 {
    margin-bottom: 4rem;
}

.section-14 img {
    aspect-ratio: 1/1;
    object-fit: cover;
    width: 100%;
    margin-top: 1.5rem;
}

/* section-15 */

.section-15.blue {
    padding-top: 0;
}

.section-15.blue h4,
.section-15.blue .sopra_titolo {
    color: var(--Blue);
    font-size: 3rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 2rem;
}

.section-15.red h4,
.section-15.red h3.title,
.section-15.red .sopra_titolo,
.section-15.red .subtitle span {
    color: #CD2323;
    font-size: 3rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 2rem;
}

.section-15.green h4,
.section-15.green .sopra_titolo,
.section-15.green .subtitle span {
    color: var(--Green);
    font-size: 3rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 2rem;
}

.section-15 img.banner {
    object-fit: contain;
    object-position: bottom left;
    aspect-ratio: 944/354;
    height: 250px;
    width: auto;
    margin-bottom: 1.5rem;
}

.section-15 h3 {
    font-weight: 700;
}

.section-15 .subtitle {
    font-family: Montserrat, serif;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 1.5rem;
    margin-top: 3.5rem;
}

.section-15 .grey p,
.section-15 .white p {
    margin-bottom: 0;
}

.section-15 .btn {
    margin-top: 6rem;
}

.section-15 .grey {
    background-color: var(--LightGrey);
}

.section-15 .grey .container,
.section-15 .white .container {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.section-15 img {
    aspect-ratio: 711/545;
    width: 70rem;
    object-fit: cover;
}

.section-15 .gap-5 {
    gap: 16rem !important;
}

/* section-16 */

.section-16 img {
    aspect-ratio: 960/680;
    height: 68rem;
    width: 50%;
    object-fit: cover;
}

/* section-17 */

.section-17 {
    background-image: url('/image/back-red.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 7rem 0;
}

.section-17 .block {
    padding: 4rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: var(--White);
    width: 100%;
}

.section-17 h1,
.section-17 h2 {
    color: var(--Black);
    font-family: Montserrat, serif;
    font-size: 3rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 0;
}

.section-17 h2 {
    font-weight: 700;
    margin-bottom: 0;
}

.section-17 h2 span {
    color: var(--Green);
}

.section-17 p {
    margin-bottom: 2rem;
    margin-top: 2rem;
}

/* section-18 */

.section-18 .block {
    background-color: var(--LightGrey);
    padding: 4rem;
}

.section-18 h4 {
    margin-bottom: 0;
}

.section-18 .title {
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-top: 2rem;
}

.section-18 p {
    margin-bottom: 0;
}

.section-18 .btn {
    margin-top: 4rem;
}

/* section-19 */

.section-19 img {
    aspect-ratio: 688/550;
    object-fit: cover;
    width: 100%;
    height: 55rem;
}

/* section-20 */

.section-20 .title {
    margin-bottom: 2.5rem;
    font-family: Montserrat;
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.section-20 .video-container iframe {
    border-radius: 2rem;
}

/* section-21 */

.section-21 .table {
    border-color: var(--White);
    text-align: center;
}

.section-21 th,
.section-21 td {
    padding: 1.5rem 2rem;
    border-left: 0.1rem solid var(--LightGrey);
    border-bottom: none;
}

.section-21 tr th:first-child,
.section-21 tr td:first-child {
    border-left: none;
}

.section-21 .table th.propriety {
    text-align: left;
    font-family: Montserrat;
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 700;
}

.section-21 .table th img {
    aspect-ratio: 1/1;
    width: 100%;
    height: 14rem;
    object-fit: contain;
}

.section-21 .table th .name {
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    width: 200px;
    font-family: Montserrat;
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: auto;
    margin-top: 3rem;
    margin-bottom: 2.5rem;
}

.section-21 .table th .btn {
    margin-bottom: 1.5rem;
}

.section-21 td {
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 400;
}

/* section-22 */

.section-22 .block {
    padding: 3.5rem 4rem 3rem 4rem;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-top: 2rem;
}

.section-22 .block .sopra_titolo {
    margin-bottom: 0.8rem;
}

.section-22 .block h2 {
    margin-bottom: 0.8rem;
    font-size: 3rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.section-22 .block p {
    margin: 0;
}

.section-22 .block .btn {
    margin-top: 2rem;
}

/* section-23 */

.section-23 h1 {
    font-family: Montserrat;
    color: var(--Black);
    font-size: 5rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 1rem;
}

.section-23 h2.blog {
    font-size: 4rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 3rem;
}

.section-23 h3.h4 {
    color: var(--Red);
    font-size: 3rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 2rem;
}

.section-23 p {
    margin-bottom: 0;
}

/* section-24 */

.section-24 img {
    aspect-ratio: 658/456;
    width: 65rem;
    object-fit: contain;
    margin-bottom: 4rem;
}

/* section-25 */

.section-25 h2 {
    font-weight: 700;
    color: var(--Black);
    font-size: 4rem;
    font-style: normal;
    line-height: normal;
    margin-bottom: 3rem;
}

.section-25 h3 span {
    color: var(--Red);
}

/* section-26 */


.section-26 {
    padding-top: 6rem;
}

.section-26 img.banner {
    object-fit: cover;
    aspect-ratio: 1440/400;
    width: 100%;
    height: 40rem;
    margin-bottom: 2rem;
}

.section-26 .date {
    font-family: "Montserrat", serif;
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    color: var(--Red);
    text-align: end;
}

.section-26 h1 {
    font-family: Montserrat, serif;
    color: var(--Black);
    font-size: 4rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 1.8rem;
}

.section-26 h2 {
    color: var(--Black);
    font-family: Montserrat, serif;
    font-size: 3rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 3rem;
}

.section-26 h3 {
    color: var(--Black);
    font-family: Montserrat, serif;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 2rem;
}

.section-26 h4 {
    font-family: "Montserrat", serif;
    font-size: 2rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.section-26 p,
.section-26 ul {
    color: var(--Black);
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2.5rem;
    margin-bottom: 1.5rem;
}

.section-26 ul li {
    margin-bottom: 1rem;
}

.section-26 img {
    object-fit: cover;
    aspect-ratio: 900/600;
    width: 100%;
    margin-bottom: 2rem;
}

/* section-27 */

.section-27 h2 {
    font-size: 4rem;
    margin-bottom: 8rem;
}

.section-27 h3 {
    font-size: 3rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 2rem;
}

/* section-28 */

.section-28 {
    padding-top: 2.5rem;
}

.section-28 h3 {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.section-28 h2 {
    margin-bottom: 5rem;
}

/* section-29 */

.section-29 img {
    width: 100%;
}

/* section-30 */

.section-30 {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    aspect-ratio: 1440/400;
    width: 100%;
    height: 400px;
}

/* section-31 */

.section-31 h1 {
    font-family: Montserrat;
    color: var(--Black);
    font-size: 5rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 1rem;
}

.section-31.academy h1 {
    font-family: Montserrat;
    color: var(--Black);
    font-size: 4rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 1rem;
}

.section-31 h2 {
    font-family: Montserrat;
    color: var(--Black);
    font-size: 4rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 1.8rem;
}

.section-31 h3 {
    color: var(--Black);
    font-family: Montserrat;
    font-size: 3rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 3rem;
}

.section-31 h4 {
    color: var(--Black);
    font-family: Montserrat;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 2rem;
}

/* section-32 */

.section-32 .box {
    padding: 2rem 2.5rem;
    border-radius: 1rem;
    width: 100%;
    display: block;
    background-color: var(--White);
    margin-top: 2.5rem;
    border: solid 0.1rem var(--LightGrey);
}

.section-32 .box:hover {
    border: solid 0.1rem var(--Red);
}

.section-32 h4 {
    font-size: 2rem;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 1rem;
}

.section-32 p {
    font-size: 1.7rem;
    margin-bottom: 0;
    font-family: Montserrat, serif;
}

/* reserved area */

section.access .image {
    background-image: url("/image/back-access.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 2.5rem;
    padding: 2.5rem;
}

section.access .image .block {
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.90);
    padding: 6rem 3.5rem;
}

section.access .image .block p {
    margin-bottom: 5rem;
}

section.access .image .block hr {
    margin-top: 5rem;
    margin-bottom: 3rem;
}

.block-allert {
    padding: 1.2rem 1.8rem;
    border-radius: 1.3rem;
    background: var(--LightGrey);
    display: flex;
    gap: 1.2rem;
    align-items: center;
    margin-top: 2rem;
}

.block-allert .title {
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 0.5rem;
}

.block-allert .description {
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.card_shadow {
    margin-top: 2rem;
    padding: 2.5rem 3rem;
    border-radius: 1rem;
    background-color: var(--White);
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.05);
    width: 100%;
}

.card_shadow a.edit {
    display: contents;
    cursor: pointer;
}

.card_shadow .edit img {
    aspect-ratio: 1/1;
    width: 1.6rem;
    height: 1.6rem;
    object-fit: contain;
    margin: 0;
}

.card_shadow .subtitle {
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 2.5rem;
    margin-bottom: 1.5rem;
}

.card_shadow p {
    margin: 0;
    line-height: 2.5rem;
}

.card_shadow a.btn.link {
    display: inline-block;
}

.card_shadow hr {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.card_shadow .point {
    color: var(--Blue);
    font-family: Montserrat;
    font-size: 4rem;
    font-style: normal;
    font-weight: 700;
    line-height: 2.5rem;
    margin-top: 5rem;
}

.card_shadow.gift {
    display: flex;
    gap: 5rem;
}

.card_shadow.gift img {
    aspect-ratio: 1/1;
    width: 95px;
    height: auto;
    object-fit: contain;
}

.card_shadow h3.h4 {
    font-size: 3rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 2rem;
}

.card_shadow.gift h4 {
    margin-bottom: 0.9rem;
}

.card_shadow .metod_payment {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.card_shadow .metod_payment img {
    aspect-ratio: 42/30;
    width: 40px;
    margin-top: 1rem;
}

.card_shadow .btn.update {
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration-line: underline;
    display: block;
    padding: 0;
    border: none;
}

.table > :not(:last-child) > :last-child > * {
    border-bottom-color: #dee2e6;
}

table.reserved-area thead th.subtitle {
    border-bottom: none;
}

table.reserved-area h4 {
    margin: 0;
}

table.reserved-area tbody tr td img {
    aspect-ratio: 1/1;
    height: 6.7rem;
    width: auto;
    object-fit: contain;
}

table.reserved-area tbody tr th,
table.reserved-area tbody tr td {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 400;
    vertical-align: middle;
}

table.reserved-area td span.sold {
    text-decoration-line: line-through;
}

table.reserved-area tfoot tr th,
table.reserved-area tfoot tr td {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 400;
    vertical-align: middle;
}

table.reserved-area tbody a.bin {
    display: contents;
}

table.reserved-area tbody a.bin img {
    aspect-ratio: 1/1;
    width: 2rem;
    height: 2rem;
    object-fit: contain;
    margin: 0;
}

table.reserved-area tr:last-child {
    border-bottom-color: var(--White);
}

table.reserved-area tbody tr:hover {
    background-color: var(--LightGrey);
    cursor: pointer;
    color: inherit;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out !important;
    -moz-transition: all 0.3s ease-in-out !important;
    -o-transition: all 0.3s ease-in-out !important;
    transition: all 0.3s ease-in-out !important;
}

table.reserved-area.no-hover tbody tr:hover {
    background-color: var(--White);
    cursor: unset;
    color: unset;
    text-decoration: none;
    -webkit-transition: unset;
    -moz-transition: unset;
    -o-transition: unset;
    transition: unset;
}

.state.green {
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 700;
    color: var(--Green);
}

.state.red {
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 700;
    color: var(--Red);
}

.state.blue {
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 700;
    color: var(--Blue);
}


.step {
    text-align: center;
    flex: 1;
}

.step .text {
    position: relative;
    padding: 0 2.5rem;
}

.step .text:before {
    content: "";
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: inline-block;
    margin: 1rem auto 0 auto;
    background-color: #D9D9D9;
    z-index: 2;
    position: relative;
}

.step .text:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0.4rem;
    background-color: #D9D9D9;
    top: 1.8rem;
    left: -50%;
    z-index: 0;
}

.step .text.none:after {
    display: none;
}

.step.completed .text:before {
    background-color: var(--Red);
}

.step.completed .text:after {
    background-color: var(--Red);
}

.step .text:after {
    transition: background-color 0.3s ease;
}

.step .icon img {
    aspect-ratio: 1/1;
    object-fit: contain;
    height: 72px;
    width: auto;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.step .title {
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 700;
    line-height: 2.5rem;
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
}

.step p {
    margin-bottom: 0;
}

.empty-cart img {
    aspect-ratio: 1/1;
    width: 15rem;
    object-fit: contain;
    object-position: center;
    margin-bottom: 2rem;
}

.empty-cart h1 {
    font-family: Montserrat;
    color: var(--Black);
    font-size: 5rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 1.8rem;
}

.notices-wrapper .message {
    color: var(--Red);
    font-weight: 500;
    font-size: 1.6rem;
}

/* modal */

.modal-dialog-scrollable .modal-body {
    overflow-y: unset;
}

.modal.addtocart .btn-close {
    position: absolute;
    top: 20px;
    right: 20px;
}

.modal.addtocart .modal-content {
    width: max-content;
    border: 0;
    border-radius: 0;
    display: flex;
    flex-direction: row;
    padding: 6rem;
    gap: 7rem;
    align-items: center;
    box-shadow: 0 0 1rem 0.6rem rgba(58, 64, 90, 0.05);
}

.modal.addtocart .modal-content img {
    aspect-ratio: 1/1;
    height: 10rem;
    object-fit: contain;
    margin: 0 2rem;
}

.modal.addtocart .modal-content h2,
.modal.reserved .modal-dialog h2 {
    color: var(--Black);
    font-family: Montserrat;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 2rem;
}

.modal.addtocart .modal-content p,
.modal.reserved .modal-dialog p {
    color: var(--Black);
    font-size: 2rem;
    font-style: normal;
    font-weight: 300;
    line-height: 3.5rem;
    margin-bottom: 3.5rem;
}

.modal.addtocart .modal-content span,
.modal.reserved .modal-dialog span {

    color: var(--Blue);
    font-weight: 700;
}

.modal.addtocart .modal-content .modal-header {
    border-bottom: unset;
    padding: 0;
    padding-left: 1rem;
}

.modal.addtocart .modal-body {
    padding: 0;
    padding-left: 1rem;
}

.modal.addtocart .modal-content .modal-footer {
    justify-content: left;
    border-top: unset;
    padding: 0;
    padding-left: 1rem;
    gap: 1rem;
}

.modal.reserved .modal-content {
    border-radius: 0;
    border: 0;
    background: var(--White);
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.10);
    padding: 3rem;
    width: max-content;
}

.modal.reserved .modal-header {
    border-bottom: none;
    gap: 2.5rem;
}

.modal.reserved .modal-header h2 {
    font-size: 3rem;
    margin-bottom: 0;
}

.modal.reserved .modal-footer {
    border-top: none;
}

.modal.show .modal-dialog {
    justify-content: center;
    max-width: unset !important;
}

.modal.hour .modal-content {
    max-width: 750px;
    overflow-y: scroll;
}

.modal.hour .btn.link {
    margin: 0 ;
}

.modal.hour .btn.link:focus {
    color: var(--Black);
}

.iti {
    width: 100%;
}

/* tabella mobile */
.mobile-table {
    margin-top: 2rem;
}

.mobile-table .card_shadow .subtitle,
.mobile-table .subtitle {
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 2.5rem;
    margin-bottom: 0;
}

.mobile-table .subtitle.price {
    color: var(--Red);
}

.mobile-table h4 {
    margin-bottom: 0;
}

.cart-mobile {
    display: flex;
    align-items: start;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.cart-mobile img {
    border: 2px solid #c1c1c1;
    aspect-ratio: 1/1;
    width: 110px;
    height: 110px;
    object-fit: contain;
}

.cart-mobile .description {
    font-size: 1.7rem;
    position: relative;
    width: 100%;
}

.cart-mobile .description .remove {
    background-color: transparent;
    padding: 0.2rem;
    color: var(--Red);
    font-weight: 700;
    margin-left: auto;
    display: block;
    width: fit-content;
    font-size: 1.4rem;
    text-decoration: underline;
}

.cart-mobile .description span.name-product {
    font-weight: 600;
}

.cart-mobile .price input {
    width: 60px;
    padding: 5px;
}

/* swal */

div:where(.swal2-container) h2:where(.swal2-title) {
    font-family: Montserrat, serif !important;
    color: var(--Black) !important;
    font-size: 2.5rem !important;
    font-weight: 700 !important;
}

div:where(.swal2-container) div:where(.swal2-html-container) {
    font-size: 1.5rem !important;
    line-height: 1.7rem !important;
}

.bigCarousel .item {
    margin: 5px;
    color: #FFF;
    border-radius: 3px;
    text-align: center;
}

.smallCarousel .item {
    padding: 10px 0;
    margin: 5px;
    color: #FFF;
    border-radius: 3px;
    text-align: center;
    cursor: pointer;
}

.smallCarousel .item h1 {
    font-size: 30px;
}

/* opzionale: se ti serve uno stile per la riga corrente */
.smallCarousel .current .item {
}

.owl-theme .owl-nav [class*='owl-'] {
    transition: all .3s ease;
}

.owl-theme .owl-nav [class*='owl-'].disabled:hover {
    background-color: #D6D6D6;
}

.owl-carousel {
    z-index: unset !important;
}

/* Assicura che i link cliccabili nella big siano solo quelli attivi */
.product-gallery .bigCarousel .owl-item a {
    pointer-events: none;
}

.product-gallery .bigCarousel .owl-item.active a {
    pointer-events: auto;
}

/* --- Miniature --- */
.product-gallery .smallCarousel .owl-item.current img.gallery-mini {
    border-color: var(--Red, #d00);
}

/* --- Contenitori nav generati via JS --- */
.product-gallery [id^="pg-nav-big-"],
.product-gallery [id^="pg-nav-small-"] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-gallery [id^="pg-nav-big-"] {
    justify-content: space-between;
    margin-top: 8px;
}

.product-gallery [id^="pg-nav-small-"] {
    justify-content: center;
    margin-top: 6px;
}

/* Bottoni nav */
.product-gallery [id^="pg-nav-big-"] .pg-prev,
.product-gallery [id^="pg-nav-big-"] .pg-next,
.product-gallery [id^="pg-nav-small-"] .pg-prev,
.product-gallery [id^="pg-nav-small-"] .pg-next {
    border: 1px solid var(--Red, #d00);
    border-radius: 9999px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: inherit;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.product-gallery [id^="pg-nav-small-"] .pg-prev,
.product-gallery [id^="pg-nav-small-"] .pg-next {
    width: 30px;
    height: 30px;
}

/* Dimensioni icone SVG */
.product-gallery [id^="pg-nav-big-"] .pg-prev svg,
.product-gallery [id^="pg-nav-big-"] .pg-next svg {
    width: 24px;
    height: 24px;
}

.product-gallery [id^="pg-nav-small-"] .pg-prev svg,
.product-gallery [id^="pg-nav-small-"] .pg-next svg {
    width: 20px;
    height: 20px;
}

/* Disabled */
.product-gallery [id^="pg-nav-big-"] .pg-prev.disabled,
.product-gallery [id^="pg-nav-big-"] .pg-next.disabled,
.product-gallery [id^="pg-nav-small-"] .pg-prev.disabled,
.product-gallery [id^="pg-nav-small-"] .pg-next.disabled {
    opacity: .4;
    cursor: default;
}