html, body {
    width: 100%;
    height: 100%;
    padding:0;
    margin:0;
    font-family: 'Montserrat', sans-serif;
    color: #464545;
}
* {
    box-sizing: border-box;
}

a {
    color: #FFF !important;
    text-decoration: none !important;
    border-bottom: 1px solid #FFF;
}
h2 {
    color: #f1821c;
    margin-bottom: 10px;
    font-weight: 600;
    text-align: center;
    font-size: 30px;
    margin-top: 10px;
}
ul {
    padding-left: 20px;
}
p {
    color:#FFF;
    line-height: 24px;
}
.split {
    height: 100%;
    position: fixed;
    z-index: 1;
    top: 0;
    overflow-x: hidden;
    padding-top: 20px;
}

.left {
    width: 75%;
    left: 0;
    background-image: url('../image/isoladelsud.jpg');
    background-size: cover;
}

.right {
    width: 25%;
    right: 0;
    background-color: #FFF;
}

.right p {
    color: #444;
    line-height: 24px;
    font-weight: 500;
    text-align: center;
}
.right p a  {
    color: #444 !important;
}
.logo {
    width: 360px;
    max-width: 100%;
    margin: 0px auto;
    display: block;
}
.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: left;
    width: 480px;
    max-width: 100%;
}
.backgroundfull {
    background-size: cover;
    height: 100%;
}
.benvenuti-title {
    opacity: 0;
    z-index: 999999;
    position: relative;
    width: 300px;
    height: 300px;
    /* background-image: url('https://www.boschettiverande.it/css/imagescustomer/logo-1.jpg?v=1'); */
    background-size: 80%;
    display: block;
    background-repeat: no-repeat;
    background-position: center;
}
.fade-in {
    animation-name: fadeInOpacity;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: 2s;
}
.fade-in2 {
    animation-fill-mode: forwards;
    animation-delay: 1s;
    animation-name: fadeInOpacity;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: 2s;
}

@keyframes fadeInOpacity {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@media only screen and (max-width: 1080px) {
    .centered {
        padding-left: 70px;
        padding-right: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .benvenuti-title {
        top: 110px;
        width: 200px;
    }
    .split {
        position: initial;
        width: 100%;
    }
    .centered {
        padding: 0px;
        position: initial;
        text-align: center;
        left: 0px;
        top: 0px;
        transform: none;
    }
    h2 {
        font-size: 25px;
        text-align: center;
    }   
    .logo {
        margin-top: 60px;

    }
    .backimg {
        height: 300px;
    }
    
}