* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

body {
    overflow-x: hidden;
}

.presentazione {
    position: relative;
    height: 20vh;
    width: 100%;
    overflow: hidden;
    padding: 0;
}

.presentazione::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: auto;
    width: 100%;
    height: 6vh;
    background: linear-gradient(to bottom, transparent, #fffcf9);
}

.presentazione .presentazione-background {
    height: 20vh;
    width: 100%;
    object-fit: cover;
    overflow: hidden;
}

.parallax {
    position: relative;
    height: 50vh;
    width: 100%;
    overflow: hidden;
    padding: 0;
}

.parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: auto;
    width: 100%;
    height: 6vh;
    background: linear-gradient(to bottom, #fff, transparent);
}

.parallax::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: auto;
    width: 100%;
    height: 6vh;
    background: linear-gradient(to top, #fff, transparent);
}

.parallax .parallax-background {
    height: 50vh;
    width: 100%;
    object-fit: cover;
    overflow: hidden;
}

.sector,
.sector-reverse{
    width: 100%;
    height: 80vh;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}

.sector .immagine,
.sector-reverse .immagine {
    box-shadow: 0px 0px 20px #444;
    border: 0.7vw solid #fff;
}

.scopri {
    width: 40vw;
    box-shadow: none;
    border: none;
    transition: all 0.4s ease 0s;
}

.scopri:hover {
    transform: scale(1.05);
}

@media screen and (max-width: 1200px) {
    .sector .immagine,
    .sector-reverse .immagine {
        height: auto;
        width: 45vw;
    }
}

@media screen and (max-width: 800px) {

    .sector {
        flex-direction: column;
        height: auto;
        margin: 10vw 0;
    }

    .sector-reverse {
        flex-direction: column-reverse;
        height: auto;
        margin: 10vw 0;
    }

    .sector .immagine,
    .sector-reverse .immagine {
        width: 80%;
    }

    .scopri {
        margin: 10vw 20%;
        width: 60%;
    }
}

img {
    block-size: auto;
    max-inline-size: 100%;
    vertical-align: middle;
}

/* Embed */

.embed {
    overflow: hidden;
    padding-block-start: 100%;
    position: relative;
}

.embed--1-2 {
    padding-top: calc(100% / (1 / 2));
}

.embed--2-1 {
    padding-top: calc(100% / (2 / 1));
}

.embed--2-3 {
    padding-top: calc(100% / (2 / 3));
}

.embed > * {
    height: 100%;
    left: 0;
    object-fit: cover;
    padding: 0.25em;
    position: absolute;
    top: 0;
    width: 100%;
}

/* Gallery  */

.gallery {
display: grid;
grid-template-columns: repeat(8, 1fr);
grid-template-rows: repeat(5, 1fr);
}

.gallery__item--h-2 {
grid-column-end: span 2;
}

.gallery__item--h-3 {
grid-column-end: span 3;
}

.gallery__item--v-2 {
grid-row-end: span 2;
}

.gallery__item--v-3 {
grid-row-end: span 3;
}
