html, body {
    width: 100%;
    height: 100%;
    padding:0;
    margin:0;
    font-family: 'Playfair Display', serif;
    color: #464545;
}
* {
    box-sizing: border-box;
}
a, b {
    color: #000 !important;
    text-decoration: none !important;
    font-weight: 400;
}
h2 {
    color: #899296;
    font-size: 20px;
    line-height: 24px;
    font-weight: 300;
    margin: 0px;
}
p {
    color:#FFF;
    line-height: 24px;
}
.split {
    height: 100%;
    position: fixed;
    z-index: 1;
    top: 0;
    overflow-x: hidden;
    padding-top: 20px;
}

.left {
    width: 53.7%;
    left: 0;
    background-image: url(./image.jpg);
    background-size: cover;
    background-position: center;
}

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

.right p {
    color: #899296;
    font-size: 20px;
    line-height: 24px;
    font-weight: 300;
    margin: 0px;
}

.logo {
    width: 432px;
    max-width: 100%;
    margin-bottom: 20px;
}
.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('imagescustomer/logo.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;
}

.icona {
    font-size: 42px;
}
.bottone {
    color: #000000 !important;
    padding: 7px 11px;
    border-radius: 5px;
    font-weight: bold;
    border: 1px solid #000000;
}

@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 {
        height: 100%;
        position: relative;
        width: 100%;
        background-image: url(./image.jpg);
        background-size: cover;
        background-position: center;
    }
    .centered {
        padding: 20px;
        text-align: center;
    }
    .right p {
        font-size: 19px;
        color: #000;
    }
    h2 {
        font-size: 25px;
        text-align: center;
    }
    .centered {
        position: relative;
        background-color: rgba(255, 255, 255, 0.8);
    }
    .left {
        display: none;
    }
}