/*!
 * FIle CSS per classi CUSTOM
 * Da utilizzare per aggiungere classi una volta online o per cose che non modificanno Bootstrap
 *
 */

/* EXTRA
--------------------------------------------------*/

html {
    scroll-timeline: --page-scroll block;
}

:root {
    --height-menu: 86px;
    --screen-h: calc(100vh - var(--height-menu));

    /* Brand IMG */
    --h-brand: 40px;
    --w-brand: auto;

    /* Button */
    --btn-radius: 100px;
    --btn-padding: 15px 20px;
    --btn-font-size: 16px;
    --btn-font-weight: 400;

    /* Footer Color */
    --bg-footer: var(--bs-gray-900);
    --text-footer: #ffffff;

    /* Colori header */
    --header-color: var(--bs-body-color);
    --bb-h1-color: var(--header-color) !important;
    --bb-h2-color: var(--header-color) !important;
    --bb-h3-color: var(--header-color) !important;

    /* Colori cookie banner */
    --cb-text: var(--bs-black);
    --cb-bg: var(--bs-gray-200);
    --cb-bg-border: var(--bs-gray-400);
    --cb-button-color: var(--bs-primary);

}

#scroll-top {
    display: none;

    align-items: center;
    justify-content: center;

    height: 40px;
    width: 41px;

    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 99;

    border-radius: 50%;
    border: var(--bs-primary) solid 2px;
    background-color: transparent;
    color: var(--bs-primary);
    font-size: 20px;

    transition: all 0.5s;
}

#scroll-top i {
    position: absolute;
}

.side-menu a {
    color: black !important;
    cursor: pointer;

    &:hover {
        color: var(--bs-primary) !important;
    }
}

@media (max-width: 564px) {
    .sticky-top {
        position: relative;
    }

    :root {
        --height-menu: 0;
    }
}

@keyframes grow-progress {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

[id] {
    scroll-margin-top: calc(var(--height-menu) + 20px);
}

#progress {
    position: fixed;
    left: 0;
    top: var(--height-menu);
    width: 100%;
    height: 0.5em;
    background: var(--bs-secondary);

    transform-origin: 0 50%;
    animation: grow-progress auto linear;
    animation-timeline: --page-scroll;
    z-index: 2;
}

.search-icon {
    color: var(--bs-navbar-color);
    font-size: 1.2rem;
    margin-left: 5px;
}

.bg-title {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 2px #ffffff;
    opacity: 20%;
    text-transform: uppercase;
    position: absolute;
    font-weight: 900;

    font-size: clamp(1rem, 1rem + 15vw, 15rem);
}

.divider-primary {
    height: 10px;
    width: 100%;
    background-color: var(--bs-primary);
}

.divider-secondary {
    height: 10px;
    width: 100%;
    background-color: var(--bs-secondary);
}

.social-circle {
    height: 50px;
    width: auto;
    aspect-ratio: 1 / 1;
    background-color: var(--bs-primary);
    color: var(--bs-white);
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;

    &:hover {
        background-color: var(--bs-secondary);

    }
}

.text-animate {
    font-size: 10vw;
    color: transparent;
    -webkit-text-stroke: 2px #000000;
}

.number-counterup {
    text-align: center;
    font-size: 5rem;
}

@media (max-width: 768px) {
    .number-counterup {
        font-size: 3rem;
    }
}

/* FONT
--------------------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: "Boldonse", sans-serif;
    font-weight: 400;
    line-height: 1.5em;
}

body {
    font-family: "Archivo", sans-serif;
    line-height: 1.4;
}

.alt-text {
    font-family: "Archivo", sans-serif;
}

/* HEADER
--------------------------------------------------*/

.glass-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 40px;

    padding: 10px 30px;
    margin-top: 20px;

    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1),
    inset 0 0 2px 1px rgba(255, 255, 255, 0.1);
    position: relative;
    /*overflow: hidden;*/
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.8),
        transparent
    );
}

/*.glass-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.8),
        transparent,
        rgba(255, 255, 255, 0.3)
    );
}*/

/* Style */

header.sticky-top {
    z-index: 99;
}

.dropdown-menu {
    border-radius: 20px;
    background: rgb(255 255 255 / 0.70);
    backdrop-filter: blur(10px);
    border: none;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    overflow: hidden;
}

.dropdown-item {
    padding: 10px 15px !important;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--bs-primary);
}

.dropdown-item a {
    color: #000000;
    font-weight: 400;

    border-radius: 0;
    padding: 10px 20px;
    width: 100%;
    display: block;

    &:hover {
        color: var(--bs-primary);
    }
}

/* LANGUAGE SWITCH */

span.it.nav-link.is-active {
    display: none !important;
}

span.en.nav-link.is-active {
    display: none !important;
}

span.it.nav-link a::before {
    content: 'IT';
}

span.en.nav-link a::before {
    content: 'EN';
}

span.it.nav-link a::before,
span.en.nav-link a::before {
    color: #ffffff;
    font-weight: 600;
    position: absolute;

    &:hover {
        color: var(--bs-secondary);
    }
}

span.it.nav-link a,
span.en.nav-link a {
    color: transparent;
    user-select: none;
    position: relative;
}

#not-found span.it.nav-link,
#not-found span.en.nav-link {
    display: none;
}

span.it.nav-link,
span.en.nav-link {
    padding: 9px 0 !important;
}

span.it.nav-link {
    margin-left: -2px;
}

span.en.nav-link {
    margin-left: -8px;
}

span.it.nav-link a,
span.en.nav-link a {
    display: flex;
    justify-content: center;
}

.links.nav.links-inline {
    width: 40px;
    background: var(--bs-primary) !important;
    border-radius: 100px;
}

/* animate */

header {
    transition: all 1s;
    position: static;
    z-index: 99;
}

.toolbar-tray-open header.animate-fade-in {
    top: 79px;
}

header.animate-fade-in {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 99;
    transform: translateY(-10px);
    animation: header-animation 1s ease forwards;
}

@keyframes header-animation {
    from {
        transform: translateY(-100px);
    }

    to {
        transform: translateY(0);
    }
}

/* transparent */

.transparent-header {
    position: fixed;
    width: 100%;
}

.transparent-header nav {
    background: transparent !important;
}

/* animate-transparent */

.animate-transparent-header {
    position: absolute;
    width: 100%;
}

.animate-transparent-header nav {
    background: transparent !important;
}

.animate-transparent-fade-in {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
    transform: translateY(-10px);
    animation: header-animation 1s ease forwards;
    background: var(--bs-primary);
}

/* Fade In elements
------------------------------------------------- */

.fade-in-right,
.fade-in-left,
.fade-in-top,
.fade-in-bottom {
    opacity: 0;
    transition: opacity 1s ease, transform 1s ease;
    will-change: opacity, transform;
}

.fade-in-right {
    transform: translateX(100%);
}

.fade-in-left {
    transform: translateX(-100%);
}

.fade-in-top {
    transform: translatey(-100%);
}

.fade-in-bottom {
    transform: translatey(100%);
}

.fade-in-zoom {
    transform: scale(0);
    opacity: 0;
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in-zoom.visible {
    transform: scale(100%);
    opacity: 1;
}

.fade-in-left.visible,
.fade-in-right.visible,
.fade-in-top.visibile,
.fade-in-bottom.visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* BLOG
--------------------------------------------------*/

.tag-field .field {
    margin: 0;
}

.tag-field .field__items li {
    padding: 0 5px !important;
    margin: 0 3px;
    background-color: var(--bs-secondary);
    border-radius: 5px;
}

/* HOME
--------------------------------------------------*/

#single-slider.azienda-clienti .carousel-child,
#single-slider.azienda-clienti .carousel-child div:first-child {
    min-height: 300px;
}

/* Carousel Ordini */

.single-slider.gestione-ordini {
    border-radius: 30px;
}

.single-slider.gestione-ordini img {
    border-radius: 20px;
    height: auto;
    width: 100%;
}

.single-slider.gestione-ordini .carousel-child {
    padding: 30px;
}

.single-slider.gestione-ordini .slick-dots:before {
    content: '';
    display: block;
    position: absolute;
    background: var(--bs-gray-300);
    height: 5px;
    width: 100%;
    top: 12px;
    z-index: -1;
    border-radius: 10px;
}

.single-slider.gestione-ordini .slick-dots li {
    margin: 0 30px;
}

.single-slider.gestione-ordini .slick-dots li button::before {
    font-size: 30px;
}

.single-slider.gestione-ordini .slick-dots li button:before {
    color: #779cdf;
    opacity: 1;
}

.single-slider.gestione-ordini .slick-dots li.slick-active button:before {
    color: var(--bs-primary);
    opacity: 1;
}

/* Carousel home */

.slick-track {
    text-align: inherit !important;
}

.carousel-home {
    overflow: hidden;
}

.carousel-home .carousel-child {
    position: relative;
}

.carousel-home .text-carousel {
    text-align: center;
    height: 100%;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-home .slick-slide img {
    width: 100%;
    object-fit: cover;
    position: absolute;
    z-index: -1;
}

.carousel-home .slick-slide img,
.carousel-home .slick-slide,
.carousel-home .carousel-child {
    height: calc(100vh - var(--height-menu)) !important;
}

.carousel-home .slick > div {
    margin: 0 !important;
}

@media (max-width: 564px) {

    .carousel-home .slick-slide img,
    .carousel-home .slick-slide,
    .carousel-home .carousel-child {
        height: 50vh !important;
    }
}

/* Carousel single text */

.carousel-home-single-text {
    overflow: hidden;
}

.carousel-home-single-text .single-text {
    position: absolute;
    z-index: 2;
    right: 0;
    width: 50%;
    padding: 30px;
    background-color: rgba(240, 255, 255, 0.466);
}

.carousel-home-single-text .carousel-child {
    position: relative;
}

.carousel-home-single-text .slick-slide img {
    width: 100%;
    object-fit: cover;
    position: absolute;
    z-index: -1;
}

.carousel-home-single-text .slick-slide img,
.carousel-home-single-text .slick-slide,
.carousel-home-single-text .carousel-child,
.carousel-home-single-text .single-text {
    height: calc(100vh - var(--height-menu)) !important;
}

.carousel-home-single-text .slick > div {
    margin: 0 !important;
}

@media (max-width: 564px) {

    .carousel-home-single-text .slick-slide img,
    .carousel-home-single-text .slick-slide,
    .carousel-home-single-text .carousel-child,
    .carousel-home-single-text .single-text {
        height: 50vh !important;
    }
}

/* Parallax */

.parallax-container {
    background-image: url(/sites/default/files/images/sfondo-parallasse-test.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;

    padding: 30px 0;
}

/* .parallax-title {
    position: sticky;
    top: var(--height-menu);
    z-index: 2;
} */

.parallax-title h2 {
    padding: 10vh 0;
    font-size: 10vw;
    text-align: center;
    color: #ffffff;
    text-shadow: #0000006a 0 1px 30px;
}

.container-child {
    display: flex;
    flex-direction: column;
    row-gap: 30vh;
}

.parallax-child {
    position: sticky;
    top: 30vh;
    z-index: 0;
    padding: 10vh 0;
}

.parallax-child .row {
    padding: 50px 30px;
    background-color: #000000;
    color: #ffffff;

    border-radius: 30px;
}

.parallax-child h3 {
    text-align: center;
    font-size: 10rem;
}

@media (max-width: 768px) {
    .parallax-child .row {
        padding: 3vh 0;
    }

    .parallax-child {
        position: sticky;
        top: 10vh;
    }
}

/* ================================================================
   DIAGRAMMA APPLICAZIONE GEKOMMERCE
   ================================================================ */

/* ---- sezione ---- */
.diagramma-section {
    padding: 4rem 0;
    background: #0A1721;
}

.diagramma-title {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.diagramma-sub {
    text-align: center;
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
}

/* ---- contenitore ---- */
.diagramma {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    margin: 0 auto;
}

/* ---- img wrapper ---- */
.diagramma__img-wrap {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.diagramma__img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* ---- dots (mobile) ---- */
.diagramma .dot {
    position: absolute;
    z-index: 2;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #0A1721;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
    pointer-events: none;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.diagramma .dot__num {
    display: block;
    color: #0A1721;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1;
}

/* ---- SVG frecce (nascosto su mobile) ---- */
.diagramma__arrows {
    display: none;
}

/* ---- labels (mobile: lista sotto) ---- */
.diagramma__labels {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    width: 100%;
    max-width: 500px;
}

.diagramma__label {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1rem 1.15rem;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1),
    transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.diagramma__label.visible {
    opacity: 1;
    transform: translateY(0);
}

.diagramma__label .label__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    color: #0A1721;
    font-size: 0.75rem;
    font-weight: 700;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.diagramma__label strong {
    display: inline;
    font-size: 0.95rem;
}

.diagramma__label .label__desc {
    display: block;
    font-size: 0.85rem;
    line-height: 1.45;
    margin-top: 0.2rem;
    padding-left: calc(24px + 0.5rem);
}

/* ================================================================
   DESKTOP (≥1200px)
   ================================================================ */
@media (min-width: 1200px) {

    .diagramma {
        position: relative;
        aspect-ratio: 16 / 7;
        flex-direction: row;
        align-items: stretch;
    }

    .diagramma__img-wrap {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 52%;
        max-width: none;
        pointer-events: none;
    }

    .diagramma .dot {
        width: 18px;
        height: 18px;
        border-width: 2px;
        box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
    }

    .diagramma .dot__num {
        display: none;
    }

    .diagramma__arrows {
        display: block;
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        overflow: visible;
        z-index: 3;
    }

    .arrow-path {
        fill: none;
        stroke: #9ca3af;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .arrow-head {
        fill: #9ca3af;
        opacity: 0;
        transition: opacity 0.3s;
    }

    .diagramma__labels {
        position: absolute;
        inset: 0;
        display: block;
        max-width: none;
        pointer-events: none;
        z-index: 4;
    }

    .diagramma__label {
        position: absolute;
        max-width: 270px;
        pointer-events: auto;
        background: rgba(255, 255, 255, 0.07);
        backdrop-filter: blur(6px);
        border-color: rgba(255, 255, 255, 0.12);
        padding: 0.9rem 1.1rem;
    }

    .diagramma__label .label__desc {
        padding-left: 0;
        margin-top: 0.3rem;
    }

    .diagramma__label .label__num {
        display: inline-flex;
        margin-bottom: 0.35rem;
    }

    .diagramma__label strong {
        display: inline;
        font-size: 0.85rem;
    }

    .label--1 {
        top: 8%;
        left: 6%;
    }

    .label--2 {
        top: 38%;
        right: 5%;
    }

    .label--3 {
        bottom: 15%;
        left: 5%;
    }

}


/* SERVIZI
--------------------------------------------------*/


/* PORTFOLIO
--------------------------------------------------*/

.portfolio-carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 5/3;
}

.portfolio-carousel .swiper-button-next,
.portfolio-carousel .swiper-button-prev {
    background-color: var(--bs-primary);
    padding: 18px 23px;
    border-radius: 50%;
}

.portfolio-carousel .swiper-button-next::after,
.portfolio-carousel .swiper-button-prev::after {
    color: var(--bs-white);
    font-size: 25px;
}

@media (max-width: 767px) {

    .portfolio-carousel .swiper-button-next,
    .portfolio-carousel .swiper-button-prev {
        display: none !important;
    }
}


/* CAROUSEL
--------------------------------------------------*/

.slick-3-slide .slide {
    margin: 20px;
}

/* Arrow carousel */

.slick-prev.slick-arrow::before,
.swiper-button-prev::after {
    content: "\f104" !important;
    font-family: "FontAwesome" !important;
}

.slick-next.slick-arrow::before,
.swiper-button-next::after {
    content: "\f105" !important;
    font-family: "FontAwesome" !important;
}

.slick-arrow::before {
    color: var(--bs-secondary) !important;
}

.slick-prev {
    left: -30px !important;
}

.slick-next {
    right: -30px !important;
}

.slick-arrow {
    height: auto !important;
    width: auto !important;
    border-radius: 0 !important;
    padding: 30px 20px !important;
    background-color: transparent;
    color: var(--bs-primary);
    z-index: 10;

    &:hover {
        filter: brightness(0.8) !important;
    }
}

.slick-arrow::before {
    opacity: 1 !important;
}

/* IMAGES */

.slick-images-slide .slick-prev {
    left: 50px !important;
}

.slick-images-slide .slick-next {
    right: 50px !important;
}

.slick-images-slide .carousel-child {
    aspect-ratio: 5/3;
    overflow: hidden;
}

.slick-images-slide img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover;
}

.slick-images-slide .slick-dots {
    bottom: 30px !important;
}

/*  */

.slick-recensioni-slide {
    position: relative;
}

.slick-recensioni-slide:not(.view--blazy) {
    padding: 0 30px;
}

.slick-recensioni-slide .carousel-child span {
    display: block;
}

.slick-recensioni-slide .carousel-child span::before {
    content: '\f005';
    font-family: 'Fontawesome';
    display: block;
    color: rgb(255, 213, 0);
}

.slick-recensioni-slide .carousel-child .stelle {
    display: flex;
    gap: 5px;
    margin: 10px;
}

.slick-recensioni-slide .carousel-child img {
    height: 100px;
    margin-bottom: 10px;
}

.slick-recensioni-slide .carousel-child .box {
    margin: 20px;
    padding: 20px;
    background-color: var(--bs-white);
    height: 100%;
    display: flex !important;
    flex-direction: column;
    align-items: center;
}

.slick-recensioni-slide .slick-list {
    overflow: hidden;
}

/*  */

.cover-img::after {
    content: "";
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgb(0, 0, 0, 0.3);
    z-index: -1;
}


/* COOKIE BANNER
--------------------------------------------------*/

#sliding-popup {
    background-color: var(--bs-gray-200) !important;
    padding: 20px;
    border: none;
    width: 40% !important;
    transform: translate(0, 1px);
}

.popup-content {
    position: relative;
    display: flex;
    flex-direction: column;
}

.eu-cookie-compliance-message {
    max-width: 100%;
}

.eu-cookie-compliance-message h2 {
    font-size: 1.5rem;
}

.eu-cookie-compliance-more-button {
    display: inline-block;
    padding: 5px 10px;
    font-weight: bold;
    color: var(--bs-primary);
    transition: all 0.5s;
    border-radius: 0 !important;
    border: none;
    background-color: transparent;
    margin-bottom: 20px;
}

.eu-cookie-compliance-categories-buttons {
    width: fit-content;
}

.eu-cookie-compliance-save-preferences-button,
.eu-cookie-compliance-default-button,
.eu-cookie-compliance-default-button,
.eu-cookie-withdraw-button,
.eu-cookie-withdraw-tab,
.eu-cookie-withdraw-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: var(--btn-font-weight);
    color: var(--bs-black);
    transition: all 0.5s;
    border-radius: 0 !important;
    border: none;
}


.eu-cookie-compliance-category {
    background-color: var(--bs-gray-300);
    width: 70%;
}

.eu-cookie-compliance-category > div {
    padding: 10px;
    margin-bottom: 5px;

    border-radius: 10px;
}

.eu-cookie-withdraw-tab {
    display: flex;
    flex-direction: row;
    gap: 7px;
    font-size: 20px;
}

.eu-cookie-withdraw-tab::before {
    content: "\f564";
    display: block;
    font-family: "Fontawesome";
    color: var(--bs-primary);
}

.eu-cookie-compliance-buttons .agree-button {
    position: absolute;
    bottom: 0;
    right: 0;
}

.eu-cookie-compliance-save-preferences-button {
    margin-top: 10px;
    border: var(--bs-gray-600) 2px solid;
}


.agree-button.eu-cookie-compliance-default-button,
.eu-cookie-withdraw-button {
    border: var(--bs-primary) 2px solid;
}

@media (max-width: 1400px) {
    .eu-cookie-compliance-content {
        max-width: 100%;
    }
}

@media (max-width: 1000px) {
    #sliding-popup {
        width: 100% !important;
    }
}

/* .eu-cookie-compliance-default-button {
    position: absolute;
} */

/* SWIPER
--------------------------------------------------*/

.swiper-slide {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.swiper-home {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.swiper-home .bg-img {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100%;
    background-attachment: fixed;
    position: relative;
}

.number .swiper-home .swiper-pagination {
    font-size: 16px;
    width: auto;
    right: 30px;
    left: auto;
    color: var(--bs-white);
}

.number .swiper-home .swiper-pagination-current {
    font-size: 50px;
}

.number .swiper-home .swiper-pagination-total {
    font-size: 30px;
}

.swiper-home .swiper-button-next,
.swiper-home .swiper-button-prev {
    color: var(--bs-white);
    padding: 30px;
}

.swiper-home .swiper-button-prev::after {
    content: '\f104';
    font-family: 'Fontawesome';
}

.swiper-home .swiper-button-next::after {
    content: '\f105';
    font-family: 'Fontawesome';
}


/* COLORI
--------------------------------------------------*/

.text-orange {
    color: #F79045;
}

.text-green {
    color: #42A64D;
}

.img-border-blue {
    border-bottom: solid 5px var(--bs-primary);
}

.img-border-orange {
    border-bottom: solid 5px #F79045;
}

.img-border-green {
    border-bottom: solid 5px #42A64D;
}

/* CHECKLIST
--------------------------------------------------*/


.check-list li {
    list-style: none;
    position: relative;
    padding-left: 0px;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: -25px;
    top: 4px;
    width: 12px;
    height: 12px;
    background-image: url('/sites/default/files/images/checklist-yes-gekommerce.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

