<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Questa pagina CSS Ã¨ per le pagine:
    Chi Siamo e Come funziona
*/

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    padding: calc(80px * 1.5) 30px 30px;
    /* background: #18181C url('/static/assets/about-bg.webp') no-repeat bottom; */
    background-size: 100%;
}

main &gt; h1 {
    text-align: center;
    font-size: 2.3em;
    font-weight: 700;
    margin: 0.5em 0;
    position: relative;
}
main &gt; h1::before {
    content: "";
    width: 50%;
    height: 15%;
    background-color: #187afc;
    filter: blur(20px);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
main &gt; h1::after {
    content: "";
    width: 80%;
    height: 4px;
    background-color: #187afc;
    margin-inline: auto;
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
}
main &gt; span {
    font-size: 1rem;
}
main &gt; div.buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}
main &gt; div.buttons &gt; a {
    padding: 10px 30px;
    font-size: 1.2rem;
    border-radius: 20px;
    background-color: #187afc45;
    text-decoration: none;
    color: white;
}
main &gt; div.buttons &gt; a.active {
    background-color: #187afc;
}

main &gt; div.grid {
    max-width: 900px;
    width: 100%;
    height: 100%;
    margin-block: 60px;
    display: none;
    /* display: grid; */
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas:
        "img1 primo ."
        ". secondo img2"
        "img3 terzo ."
        ". quarto img4";
    gap: 15px 0;
}
main &gt; div.grid.active {
    display: grid;
}

main &gt; div.grid &gt; div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    aspect-ratio: 1;
}

main &gt; div.grid &gt; div &gt; svg {
    position: absolute;
    left: calc(50% - 8.5px);
    bottom: -90px;
    z-index: 1;
}

main &gt; div.grid &gt; img {
    width: 100%;
    height: 100%;
}

main &gt; div.grid &gt; div:nth-of-type(odd) &gt; img {
    float: left;
}
main &gt; div.grid &gt; div &gt; b {
    font-size: 1.5rem;
    /*margin-bottom: 10px;*/
}

main &gt; div.grid &gt; div::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 20%;
    height: 20%;
    filter: blur(70px);
    z-index: 1;
    background-color: #187afc;
}

main &gt; div.grid &gt; div:nth-of-type(odd)::after {
    left: -50%;
    transform: translate(-50%, -50%);
}

main &gt; div.grid &gt; div:nth-of-type(even)::after {
    right: -50%;
    transform: translate(50%, -50%);
}

main &gt; div.grid &gt; div:nth-of-type(even) &gt; img {
    float: right;
}

main &gt; div.grid &gt; div:nth-of-type(1) {
    grid-area: primo;
}
main &gt; div.grid &gt; div:nth-of-type(2) {
    grid-area: secondo;
}
main &gt; div.grid &gt; div:nth-of-type(3) {
    grid-area: terzo;
}
main &gt; div.grid &gt; div:nth-of-type(3)::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;

    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #187afc;
    mix-blend-mode: hue;
}
main &gt; div.grid &gt; div:nth-of-type(4) {
    grid-area: quarto;
}

main &gt; div.grid &gt; img:nth-of-type(1) {
    grid-area: img1;
}
main &gt; div.grid &gt; img:nth-of-type(2) {
    grid-area: img2;
}
main &gt; div.grid &gt; img:nth-of-type(3) {
    grid-area: img3;
}
main &gt; div.grid &gt; img:nth-of-type(4) {
    grid-area: img4;
}

main &gt; div.show {
    display: flex;
    align-items: center;
    margin-top: 40px;

    padding: 30px;
    border-radius: 10px;
    background: url('/static/assets/reviews-bg.webp'), #18181C;
    box-shadow: 0 0 54px #00000047;
    background-size: cover;

    max-width: 100%;
}
main &gt; div.show &gt; h3 {
    font-size: 2rem;
    line-height: 3.3rem;
    font-weight: 700;
    max-width: 350px;
    margin-right: 50px;
}
main &gt; div.show &gt; h3 &gt; span {
    color: #187afc;
}
main &gt; div.show &gt; div {
    display: flex;
    gap: 10px;
    border-radius: 10px;
    background: #1D1D21;
}
main &gt; div.show &gt; div &gt; div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
    width: 100px;
    box-shadow: 4px 4px 26px 0 rgba(16, 17, 18, 0.82);
    position: relative;
}
main &gt; div.show &gt; div &gt; div &gt; span:first-of-type {
    font-size: .8rem;
}
main &gt; div.show &gt; div &gt; div &gt; span:last-of-type {
    margin-top: -2px;
    font-family: Alata, sans-serif;
    font-size: .9rem;
}

div.socials {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 10px;
    font-size: 2.1rem;
}
div.socials &gt; a {
    color: #fff;
    text-decoration: none;
}

footer{
    background-color: rgba(255, 255, 255, 0.02);
}


.column.width-100.align-center.justify-center{
    background: rgba(32, 32, 37, 0.31);
    color: white;
}

@media screen and (max-width: 800px) {
    main &gt; div.grid {
        grid-template-columns: .5fr .5fr .5fr;
        grid-template-areas:
            "img1 primo primo"
            "secondo secondo img2"
            "img3 terzo terzo"
            "quarto quarto img4";
        align-items: center;
        gap: 25px 0;
    }
    main &gt; div.grid &gt; img {
        height: unset;
    }
    main &gt; div.grid &gt; div {
        aspect-ratio: unset;
    }
    main &gt; div.grid &gt; div::after {
        content: none;
    }
    main &gt; div.grid svg {
        display: none;
    }
    main &gt; div.show {
        display: block;
        max-width: 95vw;
        box-sizing: border-box;
    }
    main &gt; div.show &gt; h3 {
        margin-right: 0;
    }
}</pre></body></html>