* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

body {
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #000;
}

.presentazione {
    position: relative;
    height: 60vh;
    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: 60vh;
    width: 100%;
    object-fit: cover;
    overflow: hidden;
}

.description-section {
    width: 100%;
    min-height: 40vh;
    display: flex;
    overflow: hidden;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    /*background-color: #eee;*/
    transition: all 0.4s ease 0s;
}

.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-right: 3vw;
    margin-left: 3vw;
}

.description-section img {
    width: 40vw;
    object-fit: contain;
}

.description-section .descrizione p {
    text-align: center;
}

.sector,
.sector-reverse{
    width: 100%;
    height: 70vh;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    transition: all 0.4s ease 0s;
}

.sector:hover,
.sector-reverse:hover {
    transform: scale(1.05);
}

.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-reverse;
    }

    .description-section img {
        width: 90%;
    }

    .description-section .descrizione {
        padding: 0 5vw;
        margin: 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%;
    }
}