html {
    position: relative;
    min-height: 100%;
    font-size: 55%;
}

@media (min-width: 1440px) {
    html {
        font-size: 62.5%;
    }
}

body {
    font-family: "Poppins", sans-serif;
    background: var(--White);
    font-size: 1.7rem;
    font-weight: 300;
    color: var(--Black);
    font-optical-sizing: auto;
}

/* color */

:root {
    --Black: #000000;
    --Grey: #f2f3f4;
    --White: #ffffff;
    --EletricBLue: #00F2F5;
    --Red: #FF0006;
    --DarkRed: #DE0F0E;
}

/* Font */

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

p {
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 0;
}

p b,
p strong {
    font-weight: 700;
}

ul {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

ul li {
    font-size: 1.6rem;
    font-weight: 400;
}

hr {
    color: #dee2e6;
    opacity: 1;
}

/* Button */

.btn.white {
    color: var(--Black);
    font-size: 1.6rem;
    font-weight: 700;
    border-radius: 3rem;
    background-color: var(--White);
    padding: 0.7rem 1.7rem;
}

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

.btn.black {
    color: var(--White);
    font-size: 1.6rem;
    font-weight: 700;
    border-radius: 3rem;
    background-color: var(--Black);
    padding: 0.7rem 1.7rem;
    text-decoration: none;
}

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

.btn.blue {
    color: var(--Black);
    font-size: 1.6rem;
    font-weight: 700;
    border-radius: 3rem;
    background-color: var(--EletricBLue);
    padding: 0.7rem 1.7rem;
    text-decoration: none;
}

.btn.blue:hover {
    background-color: var(--Black);
    color: var(--EletricBLue);
}

.btn.red {
    color: var(--Black);
    font-size: 1.6rem;
    font-weight: 700;
    border-radius: 3rem;
    background-color: var(--EletricBLue);
    padding: 0.7rem 1.7rem;
    text-decoration: none;
    height: fit-content;
}

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

.btn.line {
    background-color: transparent;
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: underline;
    padding: 0;
}

.btn.line:hover {
    color: var(--Red);
}

.btn.line.mini {
    background-color: transparent;
    font-size: 1.6rem;
    font-weight: 400;
    text-decoration: underline;
    padding: 0;
}

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

/* Card */

.card.prod {
    border-radius: 1.5rem;
    border: 0.1rem solid #F2F3F4;
    background-color: var(--White);
    padding: 3rem 2.2rem 1.6rem 2.2rem;
    margin-top: 2rem;
    width: 100%;
    position: relative;
}

.card.prod .tag.red {
    border-radius: 3rem;
    background-color: var(--Red);
    padding: 0.3rem 1rem;
    color: var(--Black);
    font-size: 1.4rem;
    font-weight: 500;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.card.prod .tag.blue {
    border-radius: 3rem;
    background-color: var(--EletricBLue);
    padding: 0.3rem 1rem;
    color: var(--Black);
    font-size: 1.4rem;
    font-weight: 500;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.card.prod img {
    aspect-ratio: 163/143;
    height: 14rem;
    width: auto;
    object-fit: contain;
}

.card.prod .card-body {
    padding: 1rem 0;
}

.card.prod .code {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    -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;
}

.card.prod .title {
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 45px;
}

.card.prod .price {
    color: var(--Black);
    font-size: 2rem;
    font-weight: 600;
}

.card.prod .price-sold {
    color: rgba(0, 0, 0, 0.70);
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration: line-through;
}

.card.prod:hover {
    border: 0.1rem solid #00F2F5;
    box-shadow: 0 2.5rem 2.8rem 0.3rem rgba(0, 0, 0, 0.07);
}

.card.prod:hover .code {
    color: var(--Red);
}


.card.article {
    padding: 2.5rem 3rem;
    border-radius: 1.5rem;
    border: 1px solid var(--White);
}

.card.article:hover {
    border: 1px solid var(--EletricBLue);
    background: var(--White);
    box-shadow: 0 25px 28px 3px rgba(0, 0, 0, 0.07);
}

.card.article img {
    aspect-ratio: 392/238;
    height: 230px;
    border-radius: 1rem;
    margin-bottom: 3rem;
    object-fit: cover;
}

.card.article .date {
    color: #646464;
    font-size: 2rem;
    font-weight: 500;
    line-height: 3rem;
    margin-bottom: 1.5rem;
}

.card.article .title {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 3rem;
    margin-bottom: 1.5rem;
}

.card.article p {
    margin-bottom: 0;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 45px;
}


.card.article_mini {
    border-radius: 0;
    border: none;
    padding: 0;
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
    align-items: center;
    margin-top: 2rem;
}

.card.article_mini img {
    aspect-ratio: 95/58;
    width: 95px;
    height: auto;
    border-radius: 0.5rem;
    margin-bottom: 0;
}

.card.article_mini p {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 2rem;
    -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;
}

.card.article_mini:hover p {
    color: var(--Red);
}

/* Form */

.input-group.search .form-control {
    border-radius: 3rem;
    border-top-left-radius: 3rem !important;
    border-bottom-left-radius: 3rem !important;
    border: 0.1rem solid var(--Red);
    border-right: none;
    color: rgba(0, 0, 0, 0.50);
    font-size: 1.6rem;
    font-weight: 400;
    padding: 0.8rem 1.3rem;
    box-shadow: none;
    width: 250px;
}

.input-group.search button {
    border-radius: 3rem;
    border: 0.1rem solid var(--Red);
    border-left: none;
    padding: 0.6rem 1.3rem;
    background-color: var(--White);
}

.input-group.search span img {
    aspect-ratio: 1/1;
    width: 2rem;
    height: 2rem;
    object-fit: contain;
}

.input-group.track_order .form-control {
    border-radius: 1.5rem;
    border: 0.1rem solid #D5D5D5;
    border-right: none;
    color: rgba(0, 0, 0, 0.50);
    font-size: 1.6rem;
    font-weight: 400;
    padding: 2.5rem 3rem;
}

.input-group.track_order button {
    border-radius: 1.5rem;
    border: 0.1rem solid #D5D5D5;
    border-left: none;
    padding: 2.5rem 3rem;
}

.input-group.track_order span img {
    aspect-ratio: 1/1;
    width: 1.8rem;
    height: 1.8rem;
    object-fit: contain;
    margin: 0;
}

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

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

form .form-label {
    color: var(--Black);
    font-size: 1.6rem;
    font-weight: 700;
}

.form .form-control,
.form .form-select,
form .form-control,
form .form-select {
    font-size: 1.6rem;
    font-weight: 400;
    border-radius: 3rem;
    padding: 0.6rem 1.5rem;
    background-color: var(--White);
    border: 1px solid #646464;
    box-shadow: 0 0.2rem 0.8rem 0 rgba(0, 0, 0, 0.05);
    resize: none;
}

form .form-check-label {
    font-size: 1.4rem;
    font-weight: 400;
}

.form .form-control.quantity,
form .form-control.quantity {
    width: 100px;
}

.form-control:focus,
.form-check-input:focus,
.form-select:focus {
    border-color: var(--Red);
    box-shadow: 0 0 0 0.25rem rgba(255, 0, 6, 0.25);
}

/* pager */

.pager {
    margin-top: 5rem;
}

.pager ul {
    list-style: none;
    padding: 0;
    display: inline;
}

.pager ul li {
    border: 0.1rem solid transparent;
    aspect-ratio: 1/1;
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 0.6rem;
    background: transparent;
    color: var(--Black);
    font-size: 1.5rem;
    font-weight: 400;
    margin-right: 1rem;
    margin-top: 1rem;
    cursor: pointer;
    justify-content: center;
    display: inline-flex;
    align-items: center;
}

.pager ul li:last-child {
    margin-right: 0;
}

.pager ul li a {
    padding: 1.5rem;
}

.pager li.active {
    border: 0.1rem solid var(--Black);
    border-radius: 0.6rem;
    background: var(--Black);
    color: var(--White);
    font-size: 1.5rem;
    font-weight: 400;
    margin-right: 1rem;
    margin-top: 2rem;
}

/* breadcrumb */

nav.bred {
    margin-bottom: 2.5rem;
}

nav .breadcrumb-item {
    font-size: 1.6rem;
    font-weight: 400;
}

nav .breadcrumb-item.active {
    color: rgba(0, 0, 0, 0.60);
    font-size: 1.6rem;
    font-weight: 400;
}

/* carousel */

.carousel_icons_dett .slick-track {
    margin-left: 0;
    gap: 1rem;
    display: flex;
}

.carousel_icons_dett img,
.carousel_icons_dett_scroll img {
    aspect-ratio: 1/1;
    width: 5rem;
    height: 5rem;
    object-fit: contain;
    margin: 0 auto;
}

.carousel_icons_dett p,
.carousel_icons_dett_scroll p {
    font-size: 1.4rem;
    text-align: center;
}

.carousel_icons_dett_scroll {
    flex-wrap: nowrap;
    overflow-y: hidden;
    overflow-x: scroll;
    justify-content: left !important;
    display: flex;
}

.carousel_icons_dett_scroll > .content {
    -ms-flex: 0 0 28%;
    flex: 0 0 28%;
    max-width: 28%;
    margin-bottom: 1.5rem;
}

.carousel_icons_dett_scroll .content {
    text-align: center;
}

.carousel-preferred_4x .slick-arrow {
    display: none !important;
}

/* filter */

.filter {
    border-radius: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.10);
    padding: 2rem;
}

.filter .title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
}

.filter hr {
    opacity: 0.1;
    margin: 0 0 2.5rem 0;
}

.filter ul {
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 1.5rem;
    display: flex;
    flex-direction: column;
    margin-bottom: 2.5rem;
}

.filter ul li {
    font-size: 1.6rem;
    font-weight: 400;
}

.filter ul li:hover {
    text-decoration: underline;
}

.filter ul li.active {
    color: var(--Grey);
}

/* filter mobile */

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

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

.filter-mobile .category {
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: 0;
    cursor: pointer;
    margin-top: 1.5rem;
}

.filter-mobile .category.active {
    color: var(--Red);
}

.filter-mobile ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.filter-mobile ul li {
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    cursor: pointer;
}

.filter-mobile ul li:last-child {
    margin-bottom: 3.5rem;
}

.filter-mobile ul li a {
    padding: 1rem 1rem 1rem 0;
}

.filter-mobile ul li a.active {
    font-weight: 600;
}

.filter-mobile .responsive-filter {
    position: fixed;
    top: 0;
    right: 0;
    width: 70%;
    background-color: var(--White);
    padding: 9rem 3rem 3rem 3rem;
    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(--Red);
    font-size: 2rem;
    font-weight: 500;
    text-decoration: underline;
}

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


/* table */

.table {
    margin-bottom: 3rem;
}

.table tr td {
    font-size: 1.6rem;
    font-weight: 400;
}

.table a {
    text-decoration: underline;
}

/* Section */
section {
    padding: 9rem 0;
}

@media (max-width: 992px) {
    section {
        padding: 5rem 0;
    }
}

/* Header desktop */

header {
    position: relative;
}

.bar {
    font-style: normal;
    z-index: 10;
    padding: 0.7rem 0;
}

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

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

.bar.red ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 3.5rem;
    flex-direction: row;
}

.bar.red li {
    display: inline-block;
    margin: 0;
    color: var(--Black);
    font-size: 1.6rem;
    font-weight: 400;
}

.bar.red li img {
    aspect-ratio: 1/1;
    width: 2rem;
    height: 2rem;
    object-fit: contain;
}

.bar.red ul.spedizione li {
    font-weight: 700;
}

.bar.black ul {
    margin: 0;
    padding: 0;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}

.bar.black li {
    display: inline-block;
    margin: 0;
    color: var(--White);
    font-size: 1.8rem;
    font-weight: 400;
    position: relative;
}

.bar.black li:hover,
.bar.black li.active {
    color: var(--Red);
}

.bar.black .dropdown {
    border-radius: 1rem;
    background-color: var(--Black);
    list-style: none;
    position: absolute;
    top: 4rem;
    text-align: left;
    padding: 2rem;
    visibility: hidden;
    opacity: 0;
    width: max-content;
    z-index: 9;
    -webkit-transition: all 0.2s ease-in-out !important;
    -moz-transition: all 0.2s ease-in-out !important;
    -o-transition: all 0.2s ease-in-out !important;
    transition: all 0.2s ease-in-out !important;
}

.bar.black ul li:hover .dropdown {
    visibility: visible;
    opacity: 1;
}

.bar.black .dropdown ul {
    flex-direction: column;
    gap: 1.5rem;
    align-items: normal;
}

.navbar {
    background-color: var(--White);
    font-style: normal;
    z-index: 10;
    padding: 1.9rem 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 0;
}

.navbar img {
    aspect-ratio: 234/37;
    height: 3.5rem;
    object-fit: contain;
}

.navbar ul.icons {
    gap: 1.8rem;
    margin-left: 2.8rem;
    display: flex;
    flex-direction: row;
}

.navbar li {
    display: inline-block;
    margin: 0;
}

.navbar ul.icons img {
    aspect-ratio: 1/1;
    width: 2rem;
    height: 2rem;
    object-fit: contain;
}


/* Header mobile */

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

header .nav-mobile ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

header .nav-mobile ul li {
    list-style: none;
}

header .nav-mobile ul li a img {
    aspect-ratio: 1/1;
    width: 3rem;
    height: auto;
    object-fit: contain;
}

header .nav-mobile a.logo img {
    aspect-ratio: 1/1;
    width: 5rem;
    object-fit: contain;
}

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

header .responsive-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    left: 100%;
    background-color: var(--White);
    padding: 5rem 4rem 5rem 4rem;
    z-index: 999999;
    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 0.3s ease-in;
}

header .responsive-mobile-menu.active {
    left: 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 0.3s ease-in-out;
}

header .responsive-mobile-menu ul {
    list-style: none;
    padding: 0;
    gap: 0.5rem;
}

header .responsive-mobile-menu ul li a {
    font-size: 2rem;
    padding: 1rem;
    font-style: normal;
    font-weight: 400;
    display: inline-block;
    text-decoration: none;
}

header .responsive-mobile-menu .close-menu {
    position: absolute;
    top: 3.5%;
    right: 7%;
    width: 6rem;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

header .responsive-mobile-menu .input-group.search {
    margin-bottom: 3rem;
}

/* Footer */
footer {
    padding: 15rem 0 1rem 0;
    background-image: url("/img/footer.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom right;
}

footer img.logo {
    aspect-ratio: 453/69;
    width: 45rem;
    object-fit: contain;
    margin-bottom: 0.7rem;
}

footer .title {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1.8rem;
}

footer p {
    margin-bottom: 4.2rem;
}

footer .mini-title {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 2.2rem;
}

footer .payment {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

footer .info {
    display: flex;
    margin-bottom: 1.5rem;
    justify-content: normal;
    gap: 1rem;
    align-items: baseline;
}

footer .info p {
    margin-bottom: 0;
}

footer img.secure {
    aspect-ratio: 187/35;
    width: 18rem;
    object-fit: contain;
    margin-top: 2rem;
}

footer ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

footer li {
    display: block;
    margin: 0;
    font-weight: 400;
}

footer .copy {
    margin-top: 6rem;
}

footer .copy p {
    margin-bottom: 0;
}

/* Section 1 */

.section-1 {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-size: cover;
    background-position: left bottom;
    background-repeat: no-repeat;
    aspect-ratio: 1920/730;
    height: 73rem;
    width: 100%;
}

.section-1 h1 {
    color: var(--White);
    font-size: 7rem;
    font-weight: 500;
    line-height: 8rem;
}

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

/* Section 2 */

.section-2 .box.mini {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--Black);
    padding: 2rem 2.5rem;
    width: 100%;
    margin-top: 2rem;
}

.section-2 .box.mini h2 {
    color: var(--White);
    font-size: 4rem;
    font-weight: 500;
    line-height: 4rem;
    margin-bottom: 7rem;
}

.section-2 .box.mini h3 {
    color: var(--White);
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.section-2 .box.mini p {
    color: var(--White);
    margin-bottom: 2.5rem;
}

.section-2 a.box.big {
    width: 100%;
    display: flex;
    margin-top: 2rem;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.section-2 .box.big {
    width: 100%;
    display: flex;
    margin-top: 2rem;
}

.section-2 .box.big img {
    aspect-ratio: 925/389;
    width: 100%;
    object-fit: cover;
    object-position: top right;
}

.section-2 .box.big:hover {
    margin-top: 1.2rem;
}

/* Section 3 */

.section-3 h1 {
    color: var(--Red);
    font-size: 2rem;
    font-weight: 400;
}

.section-3 h2 {
    font-size: 5rem;
    font-weight: 500;
    margin-bottom: 3rem;
}

.section-3 h3 {
    margin-top: 2rem;
}

/* Section 4 */

.section-4 .box {
    position: relative;
    z-index: 0;
    padding: 3.5rem;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    margin-top: 2rem;
    width: 100%;
}

.section-4 .box .img_effect {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.60);
    z-index: 1;
}

.section-4 .text {
    position: relative;
    z-index: 2;
}

.section-4 h2 {
    color: var(--White);
    font-size: 5rem;
    font-weight: 500;
    line-height: 5rem;
    margin-bottom: 10rem;
}

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

.section-4 h3 {
    color: var(--White);
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1.2rem;
}

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

/* Section 5 */

.section-5 {
    margin: 9rem 0;
    background-color: var(--Black);
    position: relative;
}

.section-5 .container {
    z-index: 2;
    position: relative;
}

.section-5 .video-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    aspect-ratio: 948 / 491;
    bottom: 0;
    z-index: 1;
}

.section-5 .video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-5 h2 {
    color: var(--White);
    text-align: center;
    font-size: 4rem;
    font-weight: 500;
    margin-bottom: 3rem;
}

.section-5 h2 span {
    color: var(--EletricBLue);
}

.section-5 p {
    color: var(--White);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 10rem;
}

.section-5 .valori {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.section-5 .icons {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
}

.section-5 .icons img {
    aspect-ratio: 1/1;
    height: 36px;
    width: auto;
    object-fit: contain;
}

.section-5 .icons .title {
    color: var(--EletricBLue);
    font-size: 2rem;
    font-weight: 400;
    text-transform: uppercase;
}

/* Section 6 */

.section-6 .box {
    padding: 3rem 3.5rem;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin-top: 2rem;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.section-6 .box .img_effect {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.60);
    z-index: 1;
}

.section-6 .text {
    position: relative;
    z-index: 2;
}

.section-6 .box.first h2 {
    color: var(--White);
    font-size: 5rem;
    font-weight: 500;
    line-height: 5rem;
    margin-bottom: 10rem;
}

.section-6 .box.second h2,
.section-6 .box.third h2 {
    color: var(--White);
    font-size: 4rem;
    font-weight: 500;
    line-height: 4rem;
    margin-bottom: 10rem;
}

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

.section-6 .box.first p {
    color: var(--White);
    margin-bottom: 2.5rem;
}

.section-6 .product {
    background-color: var(--Grey);
    display: flex;
    align-items: center;
    margin-right: 2.5rem;
    position: relative;
    z-index: 1;
    padding: 0 0.5rem 0 0;
}

.section-6 .product img.star {
    position: absolute;
    aspect-ratio: 1/1;
    width: 3.5rem;
    object-fit: contain;
    top: 0.5rem;
    right: 0.5rem;
    z-index: 2;
}

.section-6 .product .text {
    padding: 2rem 0 2rem 2.5rem;
}

.section-6 .code {
    color: var(--Red);
    font-size: 2rem;
    font-weight: 700;
}

.section-6 .title_prod {
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.section-6 .price {
    font-size: 2rem;
    font-weight: 600;
}

.section-6 .product img.image {
    aspect-ratio: 139/132;
    width: 13rem;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.section-6 a.box:hover {
    margin-top: 1.2rem;
}

/* Section 7 */

.section-7 {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 9rem 0 13rem 0;
    margin: 9rem 0
}

.section-7 h2 {
    color: var(--White);
    font-size: 5rem;
    font-weight: 500;
    line-height: 5.5rem;
    margin-bottom: 4.5rem;
}

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

/* Section 8 */

.section-8 .box {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin-top: 2rem;
}

.section-8 .box.big {
    padding: 3rem 3.5rem;
}

.section-8 .box.mini {
    padding: 3.5rem;
    width: 100%;
}

.section-8 .box .img_effect {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.60);
    z-index: 1;
}

.section-8 .text {
    position: relative;
    z-index: 2;
}

.section-8 .box.big h2 {
    color: var(--White);
    font-size: 5rem;
    font-weight: 500;
    line-height: 5.5rem;
    margin-bottom: 13rem;
}

.section-8 .box.big h2 span {
    color: var(--EletricBLue);
}

.section-8 .box.big h3 {
    color: var(--White);
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.section-8 .box.big p {
    color: var(--White);
}

.section-8 .box.mini h2 {
    font-size: 4rem;
    font-weight: 500;
    line-height: 4rem;
    margin-bottom: 3.5rem;
}

.section-8 .box.mini ol {
    gap: 2rem;
    display: flex;
    flex-direction: column;
    padding: 0 0 0 4rem;
    margin: 0 0 3rem 0;
}

.section-8 .box.mini ol li {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 3rem;
}

.section-8 .box.mini ol li::marker {
    color: var(--White);
    font-size: 4rem;
    font-weight: 600;
    line-height: 3rem;
}

/* Section 9 */

.section-9 {
    background-size: cover;
    background-position: top right;
    background-repeat: no-repeat;
    padding: 13rem 0 7.5rem 0;
    margin-bottom: 9rem;
    position: relative
}

.section-9 h2 {
    color: var(--White);
    font-size: 7rem;
    font-weight: 500;
    line-height: 5.5rem;
    margin-bottom: 5rem;
}

.section-9 h3 {
    color: var(--White);
    font-size: 4rem;
    font-weight: 500;
    line-height: 4.5rem;
    margin-bottom: 4.5rem;
}

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

.section-9 p {
    color: var(--White);
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 3.5rem;
}

/* Section 10 */

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

.section-10 h2 {
    font-size: 4rem;
    font-weight: 500;
    line-height: 4.5rem;
    margin-bottom: 2.5rem;
}

.section-10 p {
    margin-bottom: 4.5rem;
}

/* Section 11 */

.section-11 {
    background-color: var(--Black);
    margin-top: 9rem;
}

.section-11 h3 {
    color: var(--White);
    font-size: 2.5rem;
    font-weight: 500;
}

.section-11 img {
    aspect-ratio: 1/1;
    width: 6rem;
    object-fit: contain;
    margin-bottom: 1rem;
}

/* Section 12 */

.section-12 {
    position: relative;
    padding: 20rem 0;
}

.section-12 .img {
    background-position: top left;
    background-repeat: no-repeat;
    background-size: contain;
    left: 0;
    position: absolute;
    top: 0;
    width: 50%;
    z-index: 0;
    bottom: 0;
}

.section-12 h2 {
    font-size: 4rem;
    font-weight: 500;
    line-height: 4rem;
    margin-bottom: 6rem;
}

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

.section-12 h3 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
}

.section-12 img {
    aspect-ratio: 948/642;
    width: 100%;
    object-fit: contain;
    object-position: left;
}

/* Section 13 */

.section-13 .box {
    margin-top: 2rem;
    width: 100%;
    background-color: var(--Black);
    padding: 3.5rem;
}

.section-13 h2 {
    color: var(--White);
    font-size: 8rem;
    font-weight: 500;
    line-height: 5.5rem;
    margin-bottom: 2.5rem;
}

.section-13 h3 {
    color: var(--White);
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 3rem;
    margin-bottom: 5rem;
}

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

.section-13 .box.img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Section 14 */

.section-14 {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    aspect-ratio: 1920/778;
    height: 77rem;
    width: 100%;
    padding: 0;
    margin: 9rem 0;
}

/* Section 15 */

.section-15 h2 {
    font-size: 4rem;
    font-weight: 500;
    line-height: 4.5rem;
    margin-bottom: 5rem;
}

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

.section-15 h3 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

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

/* Section 16 */

.section-16 {
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
}

.section-16 h2 {
    font-size: 5rem;
    font-weight: 500;
    line-height: 5.5rem;
    margin-bottom: 4rem;
}

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

.section-16 .accordion-item {
    border: none;
    box-shadow: 0 2px 15px 2px rgba(8, 15, 52, 0.06);
    margin-top: 1.5rem;
}

.section-16 .accordion-button::after {
    content: "+";
    color: var(--Black);
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: var(--Grey);
    transition: transform 0.2s ease-in-out;
    background-image: unset;
    display: flex;
    justify-content: center;
    font-size: 3rem;
    font-weight: 400;
    line-height: normal;
    margin-left: auto;
    align-items: center;
}

.section-16 .accordion-button:not(.collapsed)::after {
    content: "-";
    color: var(--White);
    background-color: var(--Black);
}

.section-16 .accordion-button {
    font-size: 2rem;
    font-weight: 500;
    padding: 4rem 2rem 4rem 3.5rem;
}

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

.section-16 .accordion-body {
    padding: 0 2rem 4rem 3.5rem;
}

/* section-17 */

.section-17 {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    aspect-ratio: 1920/412;
    padding-bottom: 4rem;
    width: 100%;
    height: 35rem;
    position: relative;
}

.section-17 .color_hover {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: var(--Black);
    opacity: 0.5;
    z-index: 2;
    height: 100%;
    width: 100%;
}

.section-17 h1 {
    color: var(--White);
    font-size: 6rem;
    font-weight: 500;
    line-height: 6rem;
}

.section-17 h1 span {
    color: var(--Red);
}

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

/* section-18 */

.section-18 {
    padding-top: 5rem;
}

.section-18 h2 {
    font-size: 4rem;
    font-weight: 600;
    line-height: 4.5rem;
}

.section-18 h3 {
    font-size: 2.5rem;
    font-weight: 700;
}

/* section-19 */

.section-19 h2 {
    font-size: 4rem;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 1rem;
}

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

.section-19 h3 {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 2.5rem;
    margin-bottom: 2rem;
}

.section-19 ul,
.section-19 ol {
    gap: 0.5rem;
}

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

/* section-20 */

.section-20 {
    padding: 5rem 0 4rem 0;
}

.section-20 h1 {
    text-align: center;
    font-size: 7rem;
    font-weight: 500;
    line-height: 7rem;
    margin-bottom: 8rem;
    margin-top: 4rem;
}

.section-20 h2 {
    font-size: 4rem;
    font-weight: 500;
    line-height: 4rem;
    margin-bottom: 3rem;
}

.section-20 h3 {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

/* section-21 */

.section-21 {
    padding: 8rem 0 4rem 0;
}

.section-21 .gallery_dett_prod .slick-track {
    display: flex;
    gap: 1rem;
    margin-left: 0;
}

.section-21 .gallery_dett_prod .slick-prev {
    top: unset;
    bottom: -45px;
    left: 35%;
}

.section-21 .gallery_dett_prod .slick-next {
    right: 35%;
    bottom: -45px;
    top: unset;
}

.section-21 .gallery_dett_prod .slick-prev:before,
.section-21 .gallery_dett_prod .slick-next:before {
    color: var(--Red);
    opacity: 1;
    font-size: 25px;
}

.section-21 .gallery-mini {
    aspect-ratio: 1 / 1;
    border-radius: 1.5rem;
    border: 0.1rem solid var(--Grey);
    object-fit: contain;
    width: 110px;
    height: 110px;
    -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;
}

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

.section-21 .gallery-big {
    /*height: 100%;
    width: 100%;*/
    margin-bottom: 2rem;
}

.section-21 .gallery-big img {
    aspect-ratio: 569/479;
    border-radius: 1.5rem;
    object-fit: contain;
    border: 0.1rem solid var(--Grey);
    width: 100%;
}

.section-21 .heart {
    cursor: pointer;
    transition: fill 0.3s ease;
}

.section-21 .heart.filled {
    fill: var(--Red);
}

.section-21 h1 {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.section-21 h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.section-21 h3 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 2.5rem;
    margin-bottom: 2.5rem;
}

.section-21 .mt-h3.big {
    margin-top: 5rem;
}

.section-21 h4 {
    font-size: 1.6rem;
    font-weight: 700;
}

.section-21 .first p {
    margin-bottom: 2rem;
}

.section-21 .sold_price {
    font-size: 2rem;
    font-weight: 500;
    text-decoration-line: line-through;
}

.section-21 .price {
    font-size: 4rem;
    font-weight: 500;
}

.section-21 .support {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.section-21 .support img {
    aspect-ratio: 1/1;
    width: auto;
    height: 50px;
    object-fit: contain;
}

.section-21 .detail_prod {
    margin-bottom: 6rem;
}

.section-21 .btn.line.mini {
    display: block;
    width: fit-content;
    text-align: left;
    align-items: center;
}

.section-21 .btn.line.mini img {
    aspect-ratio: 1/1;
    width: 20px;
    height: 20px;
}

.section-21 .text_line {
    display: flex;
    gap: 1rem;
    align-items: baseline;
}

.section-21 .text_line h4 {
    width: fit-content;
    white-space: nowrap;
}

.section-21 .text_line p {
    flex: 1;
}

.section-21 .app {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.section-21 .app img {
    aspect-ratio: 1/1;
    width: 35px;
    height: 35px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.section-21 .app .text {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 400;
}

/* section-22 */

.section-22 .box {
    background: var(--Black);
    padding: 2.5rem;
}

.section-22 h2 {
    color: var(--White);
    font-size: 4rem;
    font-weight: 500;
    line-height: 4.5rem;
    margin-bottom: 2rem;
}

.section-22 h3 {
    color: var(--White);
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

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

/* section-23 */

.section-23 h2 {
    font-size: 5rem;
    font-weight: 500;
    margin-bottom: 3rem;
}

.section-23 .table {
    text-align: center;
}

.section-23 th,
.section-23 td {
    padding: 1.5rem 2rem;
    border-bottom: none;
}

.section-23 .table td.propriety {
    text-align: left;
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 700;
}

.section-23 img {
    aspect-ratio: 1/1;
    width: 100%;
    height: 14rem;
    object-fit: contain;
    object-position: center;
}

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

.section-23 .btn {
    margin-bottom: 1.5rem;
}

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

.section-23 h3 {
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: auto;
    margin-top: 3rem;
    margin-bottom: 2.5rem;
}

.section-23 h4 {
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.section-23 p {
    text-align: center;
}

.section-23 hr {
    margin: 2rem 0;
}

/* section-24 */

.section-24 .box {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin-top: 2rem;
    padding: 2.5rem 3.5rem;
}

.section-24 .box .img_effect {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.60);
    z-index: 1;
}

.section-24 .text {
    position: relative;
    z-index: 2;
}

.section-24 .box h2 {
    color: var(--White);
    font-size: 4rem;
    font-weight: 500;
    line-height: 4rem;
    margin-bottom: 15rem;
}

.section-24 .box.first h2 span {
    color: var(--EletricBLue);
}

.section-24 .box.second h2 span {
    color: var(--Red);
}

/* section-25 */

.section-25 h2 {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 3rem;
    margin-bottom: 2rem;
}

.section-25 h3 {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 2.3rem;
}

.section-25 .distance {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 2.3rem;
}

.section-25 p {
    font-weight: 300;
    color: #646464;
}

.section-25 hr {
    margin: 2rem 0;
}

.section-25 .maps {
    aspect-ratio: 926/504;
    width: 100%;
    height: 50rem;
    object-fit: cover;
}

/* section-26 */

.section-26 h2 {
    text-align: center;
    font-size: 4rem;
    font-weight: 500;
    line-height: 4.5rem;
    margin-bottom: 2.5rem;
}

.section-26 p {
    text-align: center;
    margin-bottom: 3rem;
}

/* section-27 */

.section-27 h1 {
    text-align: center;
    font-size: 7rem;
    font-weight: 500;
    line-height: 7rem;
    margin-bottom: 10rem;
}

.section-27 h1 span {
    color: var(--Red);
}

.section-27 p {
    text-align: center;
    font-size: 4rem;
    font-weight: 500;
    line-height: 5rem;
}

/* section-28 */

.section-28 h2 {
    font-size: 4.5rem;
    font-weight: 500;
    line-height: 5.5rem;
    margin-bottom: 2.5rem;
}


.section-28 .last {
    margin-top: 4rem;
}

.section-28 img {
    aspect-ratio: 569/429;
    width: 100%;
    object-fit: cover;
}

/* section-29 */

.section-29 h2 {
    text-align: center;
    font-size: 5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-29 h3 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 8rem;
}

.section-29 h4 {
    color: var(--Red);
    text-align: center;
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    position: relative;
}

.section-29 p {
    text-align: center;
}

.section-29 .col-big {
    flex: 0 0 auto;
    width: 22.5%;
}

.section-29 .col-small {
    flex: 0 0 auto;
    width: 3.3%;
}

.section-29 img {
    width: 30px;
    height: 30px;
}

.section-29 img.mobile {
    aspect-ratio: 569/429;
    width: 100%;
    object-fit: cover;
    height: auto;
    rotate: none;
    margin-bottom: 3rem;
}

/* section-30 */

.section-30 .box.img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 3.5rem;
    width: 100%;
}

.section-30 .box.form {
    background-color: var(--Grey);
    padding: 3.5rem;
    width: 100%;
}

.section-30 .box.img h2 {
    color: var(--White);
    font-size: 6rem;
    font-weight: 500;
    line-height: 6rem;
}

.section-30 .box.img p {
    color: var(--White);
}

.section-30 .box.img .contact {
    margin-top: 3.5rem;
    margin-bottom: 10rem;
}

.section-30 .box.form h2 {
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 5rem;
    margin-bottom: 3.5rem;
}

.section-30 .box.form h2 span {
    color: var(--Red);
    font-weight: 600;
}

/* section-31 */

.section-31 h2 {
    font-size: 4rem;
    font-weight: 500;
    line-height: normal;
}

.section-31 h3 {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 3rem;
}

.section-31 .carousel-container {
    position: relative;
    margin-top: 1rem;
}

.section-31 .slide {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14rem;
}

.section-31 .slide-header {
    display: flex;
    align-items: flex-start;
    gap: 7.5rem;
}

.section-31 .slide-number {
    font-size: 10rem;
    font-weight: 400;
    line-height: 10rem;
}

.section-31 .text-content {
    max-width: 100%;
}

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

.section-31 .slide-image img {
    aspect-ratio: 180/288;
    width: 180px;
    object-fit: cover;
}

.section-31 .carousel-arrows {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    gap: 1rem;
}

.section-31 .carousel-arrows button {
    background-color: transparent;
    border: none;
}

.section-31 .carousel-arrows button:focus-visible {
    border: none;
}

.section-31 .carousel-arrows img {
    aspect-ratio: 1/1;
    height: 3rem;
    object-fit: contain;
    width: auto;
}

.section-31 .carousel-arrows .prev img {
    rotate: 180deg;
}

/* section-32 */

.section-32 h2 {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 3.5rem;
}

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

/* section-33 */

.section-33 {
    background-image: url("../img/back_404.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.section-33 img {
    aspect-ratio: 1/1;
    width: 97px;
    height: 97px;
    object-fit: contain;
}

.section-33 h1 {
    font-size: 7rem;
    font-weight: 500;
    line-height: 7rem;
}

.section-33 h2 {
    color: var(--Red);
    font-size: 40rem;
    font-weight: 500;
    line-height: 40rem;
}

.section-33 h3 {
    font-size: 3.5rem;
    font-weight: 500;
}

/* section-34 */

.section-34 h1 {
    text-align: center;
    font-size: 7rem;
    font-weight: 500;
    line-height: normal;
}

.section-34 h2 {
    font-size: 4rem;
    font-weight: 500;
    line-height: 4.5rem;
    margin-bottom: 2rem;
}

.section-34 h3 {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 3rem;
    margin-bottom: 2rem;
}

.section-34 p {
    margin-bottom: 2.5rem;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 45px;
}

.section-34 img {
    aspect-ratio: 685/415;
    width: 100%;
    object-fit: cover;
}

/* section-35 */

.section-35 {
    padding-top: 0;
}

.section-35 img {
    aspect-ratio: 1920/567;
    height: 560px;
    width: 100%;
    object-fit: cover;
    margin-bottom: 7rem;
}

.section-35 h1 {
    font-size: 5rem;
    font-weight: 500;
    line-height: 6rem;
    margin-bottom: 3rem;
}

.section-35 h2 {
    font-size: 4rem;
    font-weight: 500;
    line-height: 4.5rem;
    margin-bottom: 3rem;
}

.section-35 h3 {
    font-size: 3rem;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 2.5rem;
}

.section-35 h4 {
    font-size: 2rem;
    font-weight: 500;
    line-height: 2rem;
    margin-bottom: 2rem;
}

.section-35 h4.other {
    color: var(--DarkRed);
    font-size: 2rem;
    font-weight: 500;
    line-height: 2rem;
    margin-bottom: 3rem;
}

.section-35 ul {
    gap: 0.5rem;
}

.section-35 .category {
    color: var(--DarkRed);
    font-size: 2rem;
    font-weight: 500;
    line-height: 2rem;
    margin-bottom: 1rem;
}

/* reserved */

.reserved .card_shadow {
    margin-top: 2rem;
    padding: 2.5rem 3rem;
    border-radius: 1.5rem;
    border: 0.5px solid var(--Black);
    background-color: var(--White);
    width: 100%;
}

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

.reserved .card_shadow h4.tot {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 2.5rem;
}

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

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

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

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

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

.reserved .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(--Grey);
    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;
}

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

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

.reserved .step .text:before {
    content: "";
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    margin: 0 auto;
    background-color: #D9D9D9;
    z-index: 2;
    position: relative;
    color: var(--Black);
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reserved .step .text.first:before {
    content: "1";
}

.reserved .step .text.second:before {
    content: "2";
}

.reserved .step .text.third:before {
    content: "3";
}

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

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

.reserved .step.completed .text:before {
    background-color: var(--DarkRed);
    color: var(--White);
}

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

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

.reserved .step img {
    aspect-ratio: 1/1;
    width: 88px;
    height: 88px;
    object-fit: contain;
    margin-bottom: 1rem;
}

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

.reserved .step p {
    margin-bottom: 0;
}

.reserved h1 {
    color: var(--DarkRed);
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.reserved h2 {
    font-size: 4rem;
    font-weight: 500;
}

.reserved h3 {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 2.5rem;
    margin-bottom: 1rem;
}

.reserved h3.under {
    text-decoration: underline;
    margin-bottom: 2.5rem;
}

.reserved h4 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 2.5rem;
    margin-bottom: 1rem;
}

.reserved .card_shadow.installatore h3 {
    color: var(--Red);
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 3.5rem;
}

.reserved .card_shadow.installatore h4 {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 3.5rem;
    margin-bottom: 1.5rem;
}

.reserved .card_shadow.installatore p {
    margin-bottom: 2rem;
}

.reserved .card_shadow a.edit:hover {
    cursor: pointer;
}

.reserved .card_shadow a.edit img {
    aspect-ratio: 1/1;
    width: 2rem;
    height: 2rem;
    object-fit: contain;
}

.reserved .form-check .form-check-label {
    color: var(--Black);
    font-size: 1.6rem;
    font-weight: 700;
}

/* 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;
}

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

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

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

.mobile-table .cart-mobile .description .remove {
    position: absolute;
    right: 0;
    top: 0;
    background-color: transparent;
    padding: 0.2rem;
    width: 21px;
    text-align: center;
    color: var(--Black);
    font-weight: 500;
}

.mobile-table .cart-mobile .description p.code-bold {
    font-weight: 600;
}

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

/* order pages */

.order-payment img {
    aspect-ratio: 1/1;
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 3rem;
}

.order-payment h1 {
    margin-bottom: 1.5rem;
    font-size: 5rem;
    font-weight: 500;
}

/* modal */

.modal .modal-content {
    padding: 2rem;
    border-radius: 1.5rem;
    border: 0.5px solid var(--Black);
}

.modal .modal-content .btn-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
}

.modal .modal-header {
    border: none;
}

.modal h2.modal-title {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 3rem;
    margin-bottom: 0 !important;
}

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

.modal.cart .modal-content {
    background-image: url("../img/back_modale.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    box-shadow: 0px 0px 10px 6px rgba(58, 64, 90, 0.05);
    border-radius: 0;
    border: none;
}

.modal.cart .modal-footer {
    justify-content: center;
}

.modal.cart .modal-content img {
    aspect-ratio: 1/1;
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin: 0 auto;
}

.modal.cart .modal-content p {
    text-align: center;
    font-size: 2rem;
    font-weight: 300;
    line-height: normal;
}

.modal.cart .modal-content p span {
    color: var(--Red);
    font-weight: 500;
}

.modal.cart .modal-content p strong {
    font-weight: 500;
}

/* Recaptcha */

.recaptcha-container {
    height: 0;

}

.grecaptcha-badge {
    visibility: hidden !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;
}

/* --- Contenitore principale --- */
.product-gallery .bigCarousel .item .bigImg {
    aspect-ratio: 1/1;
    height: auto;
    object-fit: contain;  
}

/* 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;
}


