section {
    height: 450px;
    width: 100%;
    display: flex;
    justify-content: center;
}

section>div {
    height: 100%;
    width: 85%;
    display: flex;
    justify-content: center;
    align-items: center;
}

section>div>div,
section.reverse>div>div {
    width: 40%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

section .descrizione {
    width: 450px;
    display: flex;
    flex-direction: column;
}

section h2 {
    font-weight: 800;
    font-size: 25px;
}

section .line {
    background-color: var(--rosso);
    width: 50px;
    height: 3px;
    margin-top: 10px;
    margin-bottom: 10px;
}

section .learnMore {
    text-transform: uppercase;
    font-size: 16px;
    background-color: var(--rosso);
    color: white;
    font-weight: 700;
    border: none;
    height: 32px;
    width: 160px;
    margin-top: 25px;
    text-align: center;
}

section .learnMore a{
    color: white;
    line-height: 32px;
}

section .punto-rosso {
    height: 250px;
    width: 250px;
    background-color: var(--rosso);
    border-radius: 50%;
}

section img {
    max-height: 300px;
    position: absolute;
}

section.reverse {
    background-color: rgb(245, 245, 245);
}

section.reverse>div {
    flex-direction: row-reverse;
}

section.reverse .descrizione {
    align-items: flex-end;
    text-align: end;
}

@media only screen and (max-width: 1200px) {

    section,
    section.reverse {
        height: 1000px;
    }

    section>div,
    section.reverse>div {
        flex-direction: column;
    }

    section>div>div,
    section.reverse>div>div {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 30px;
    }

    section .descrizione,
    section.reverse .descrizione {
        align-items: center;
        text-align: center;
        width: 80%;
        margin-bottom:90px;
    }
}