html, body {
    background: url('../img/background-decouvin.jpg') center center no-repeat;
    background-size: cover;
    height: 100%;
    margin: 0;
}

.container {
    position: absolute;
    right: 0;
    top: 50%;
    width: 65%;
    text-align: center;
    transform: translateY(-50%);
}

.logo {
    width: 450px;
}

.logo-black {
	display: none;
}

.icons {
    padding-top: 70px;
}

.icons a{
    color: transparent;
    text-decoration: none;
}

.icon {
    width: 80px;
    height: 80px;
    margin: 0 20px;
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
}

.icon-mail {
    background-image: url('../img/mail.svg');
}
.icon-mail:hover {
    background-image: url('../img/mail_hover.svg');
}
.icon-phone {
    background-image: url('../img/phone.svg');
}
.icon-phone:hover {
    background-image: url('../img/phone_hover.svg');
}

@media only screen and (max-width: 1000px){
	.logo-black {
		display: inline-block;
	}

	.logo-white {
		display: none;
	}

    .container {
        width: 100%;
        position: static;
        transform: none;
    }

    .logo {
        width: 75%;
        max-width: 450px;
        position: absolute;
        top: 7%;
        left: 50%;
        transform: translateX(-50%);
    }

    .icons {
        padding: 0;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 7%;
        width: 100%;
    }

    .icon {
        margin: 0 10px;
    }
}