/*
-webkit-transition: #{$target} #{$duration} #{$effect};
-moz-transition: #{$target} #{$duration} #{$effect};
-ms-transition: #{$target} #{$duration} #{$effect};
-o-transition: #{$target} #{$duration} #{$effect};
transition: #{$target} #{$duration} #{$effect};
*/

body,
html{height: 100%;}
body{
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    background-color: black;
    color: white;
}

.mainBox{
    overflow: hidden;
    position: relative;
    height: 100%;
}

.effect-img{
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    max-width: 600px;
}

.logo-white{
    opacity: 0;
    z-index: 20;
}

.logo-back{
    z-index: 10;
    opacity: 0;
}

.giacosa{
    opacity: 0;
    transform: translateX(230px);
    max-width: 900px;
    z-index: 5;
}

.address{
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
    z-index: 200;
}
.address a{
    color: white;
}
.address a:hover,
.address a:active,
.address a:focus{
   text-decoration: underline;
}
.address p:first-child{
    margin-bottom: 0;
}
.address p:nth-child(2){
    margin-bottom: 0;
}
.address-mobile{display: none;}

@media screen and (max-width: 768px) {
    .effect-img{
        max-width: 100%;
    }
    .logo-white{
        padding-left: 30px;
        padding-right: 30px;
    }
    .logo-back{
        padding-left: 30px;
        padding-right: 30px;
    }
    .giacosa{
        display: none;
    }
}

@media screen and (max-width: 576px) {
    .address-desktop{display: none;}
    .address-mobile{display: block;}
    .address{
        padding-left: 7.5px;
        padding-right: 7.5px;
        font-size: 14px;
    }
}


