.contatti {
    flex-direction: row;
}

.contatti > div:first-child {
    width: 60%;
}

.contatti > div:last-child {
    width: 40%;
    padding-left: 5vw;
}

.icons {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 50px;
}

.contatti .icons a p {
    font-weight: 375;
    margin-top: 5px;
}

.contatti .icons a svg {
    fill: var(--main-color);
}

.icons a:hover svg, .icons a:hover p {
    fill: var(--main-color-accent);
    color: var(--main-color-accent);
}

svg {
    transition: fill var(--transition-timing);
}

@media screen and (max-width: 700px) {
    .contatti {
        flex-direction: column;
    }
    .contatti > div:first-child {
        width: 100%;
    }
    
    .contatti > div:last-child {
        width: 100%;
        padding-left: 0;
    }
}