
.contenedor-contacto {
    display: block;
    width: 100%;
    min-height: 85vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.cont-contacto {
    display: block;
    width: 490px;
    height: 490px;
    border-radius: 50%;
    position: relative;
    border: 5px solid;
    margin: 0 auto;
    overflow: hidden;
    background-color: #e5e1db;
    padding: 180px 100px 100px;
    box-sizing: border-box;
}

.row-contacto {
    display: block;
    width: 100%;
    padding: 200px 0px;
}

a.correo-contacto, 
a.instagram-contacto, 
span.direccion-contacto {
    display: block;
    width: 70%;
    font-size: 16px;
    margin: 0 auto 40px;
    position: relative;
}

a.correo-contacto:before,
a.instagram-contacto:before,
span.direccion-contacto:before {
	display: block;
	content: '';
	width:  25px;
	height: 25px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	left: -34px;
    top: -5px;
}

a.correo-contacto:before { background-image: url(../img/icono-correo.png); } 
a.instagram-contacto:before { background-image: url(../img/icono-instagram.png); }
span.direccion-contacto:before { background-image: url(../img/icono-location.png); }


@media screen and (max-width: 950px) {
	.row-contacto { padding: 100px 0px; }
	.cont-contacto {
		width: 430px;
		padding: 150px 80px 100px;
	    height: 430px;
	}
}

@media screen and (max-width: 800px) {
	.cont-contacto {
		width: 80%;
		height: auto;
		padding: 50px 20px;
		border-radius: 40px;
	}
	
	span.direccion-contacto { margin-bottom: 0px; }
}