.footer {
	position:absolute;
	bottom:3%;
	width:100%;
}
.footer p {
	text-align:center;
	text-transform:none;
}
.footer a {
	color: #FFF;
	padding:0px 30px;
}
#estate a, #wine a {
	color:#FFF;
}
#estate a:hover, #wine a:hover {
	color:#cab57d;
}

.lang {
	position:absolute;
	bottom:3%;
	right:4%;
}
.lang a {
	color: #FFF;
	font-size:16px;
	line-height:16px;
}
.active {
	color:#cab57d !important;
}
.villa {
	font-family:'ProximaNovaRg';
	color:#808122 !important;
}
#cantina {
	animation: zoominoutsinglefeatured 20s infinite ;
}
#azienda {
	animation: zoominoutsinglefeatured 20s infinite ;
}
#logo {
	animation: dissolvenza 3s;
}
#logo-white {
	animation: dissolvenza 3s;
}
#main-box {
	animation: border-create 10s;
}
@keyframes zoominoutsinglefeatured {
    0% {
        transform: scale(1,1);
    }
    50% {
        transform: scale(1.5,1.5);
    }
    100% {
        transform: scale(1,1);
    }
}
@keyframes dissolvenza {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes border-create {
    0% {
        border-color:transparent;
    }
 
    100% {
        border-color:#cab57d;
    }
}