html, body {
    height: 100%;
    width: 100%;
        background:#c3d6e5;
}

h2 {
    color: #1c3b72;
    text-align: center;
    margin: 5px 0px;
    text-transform: uppercase;
    font-size: 27px;
}

.centered {
    text-align: center;
    border-radius: 50%;
    background-color: white;

    width: 350px;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #707070;
}

.fade-in {
    animation-name: fadeInOpacity;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: 2s;
}

.scopripiu {
    margin-top: 20px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 22px;
    color: #707070;
}

.logohome {
    max-width: 190px;
    display: block;
    margin: 0px auto;
    margin-bottom: 10px;
}

.box_logo {
    height: 110px;
    display: flex;
    align-items: center;
}

.split_colonne {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    max-width: 1400px;
    margin: 0px auto;
}

.split_colonne > .colonna {
    width: 33.33%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.colonna.colonna_safety {
}


@keyframes fadeInOpacity {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@media only screen and (max-width: 1280px) {
    .centered {
        width: 300px;
        height: 300px;
    }
}

@media only screen and (max-width: 768px) {
    
    h2 {
        margin-bottom: 0px;
        font-size: 22px;
    }

    .scopripiu {
        font-size: 13px;
        margin-top: 10px;
    }
    .centered {
        width: 200px;
        height: 200px;
    }

    .logohome {
        max-width: 130px;
        margin-bottom: 10px;
    }
    .box_logo {
        height: auto;
    }

    .colonna.colonna_safety {
        background: none;
    }
    
    .split_colonne {
        flex-direction: column;
    }
    .split_colonne > .colonna {
        width: 50%;
        height: auto;
    }
}