* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

body {
    overflow-x: hidden;
}

.presentazione {
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.presentazione .presentazione-background {
    height: 100vh;
    width: 100%;
    object-fit: cover;
}

.presentazione .chevron{
    position: relative;
    transform: translate(0, 0vh);
    bottom: 7vh;
    width: 100%;
    height: 2.5vh;
    object-fit: contain;
    animation: frecciaAnimation 1s ease 0s infinite alternate;
}

.description-section {
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease 0s;
    /*background-color: #eee;*/
}

.description-section:hover {
    transform: scale(1.05);
}

.description-section .descrizione {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
    margin-left: 5vw;
}

.description-section img {
    width: 40vw;
    object-fit: contain;
}

.description-section .descrizione p {
    text-align: center;
}

@keyframes frecciaAnimation{
    from {

    }
    to {
        transform: translate(0, -4vh);
    }
}

.sector,
.sector-reverse{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}

.sector img,
.sector-reverse img {
    box-shadow: 0px 0px 20px #444;
    border: 0.7vw solid #fff;
}

@media screen and (max-width: 1200px) {
    .sector img,
    .sector-reverse img {
        height: auto;
        width: 45vw;
    }
}

@media screen and (max-width: 800px) {

    .description-section {
        flex-direction: column;
    }

    .description-section img {
        width: 90%;
    }

    .description-section .descrizione {
        padding: 0 5vw 0 5vw;
        margin-left: 0;
    }

    .description-section .descrizione .titolo {
        font-size: 80px;
    }

    .sector {
        flex-direction: column;
        height: auto;
        margin: 10vw 0;
    }

    .sector-reverse {
        flex-direction: column-reverse;
        height: auto;
        margin: 10vw 0;
    }

    .sector img,
    .sector-reverse img {
        width: 80%;
    }
}