*{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
.header{
	display: flex;
	flex-wrap: wrap;
	background-color: #1a0b08;
	width: 100%;
	height: 100px;
	margin-bottom: 1px;
}
.header .logo{
	flex-grow: 0.9;
}
.logo img{
	width: 350px;
	height: 100px;
	margin-left: 50px;
}
.menu{
	display:flex;
	text-align: center;
	align-items: center;
	margin-right: 0;
}
.menu p{
	padding: 10px;
	font-weight: 900;
	font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}	
.menu p a{
		color: #FFFFFF;
		text-decoration: none;
		cursor: pointer;
}
.menu p a:hover{
	color: burlywood;
}
/* CODIGO CARRUSEL DE IMAGES */

.carrousel{
    width: 100%;
	height: 400px;
}
.conteCarrousel{
    width: 100%;
    height: 400px;
    overflow: hidden;
}
.itemCarrousel{
    position: relative;
    width: 100%;
    height: 100%;
}
.itemCarrouselTarjeta{
	display: flex;
	flex-wrap: wrap;
	background-color: #727577;
	width: 100%;
    height: 100%;
	justify-content: center;
	align-content: center;
	justify-items: center;
}
.itemCarrouselTarjeta img{
	display: flex;
	width: 90%;
	height: 100%;
}
.itemCarrouselArrows{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%; 
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px; 
}
#itemCarrousel-3 .fa-chevron-left{
	width: 30px;
	height: 40px;
}
#itemCarrousel-3 .fa-chevron-right{
	width: 30px;
	height: 40px;
}
#itemCarrousel-2 .fa-chevron-left{
	width: 30px;
	height: 40px;
}
#itemCarrousel-2 .fa-chevron-right{
	width: 30px;
	height: 40px;
}
#itemCarrousel-1 .fa-chevron-left{
	width: 30px;
	height: 40px;
}
#itemCarrousel-1 .fa-chevron-right{
	width: 30px;
	height: 40px;
}

/* FIN CODIGO CARRUSEL DE IMAGENES */
.domicilios{
	background: linear-gradient(90deg,#1c3643,#273b47 25%,#1e5372);
	text-align: center;
	padding: 10px;
	margin-top: 1px;
	margin-bottom: 1px;
	font-size: 2.5rem;
	color: bisque ;
}
.redes{
	display: flex;
	flex-wrap: wrap;
	position: relative;
	justify-items:center;
	justify-content: space-around;
	background-color: #a7aaac;
	padding: 10px;
	margin-top: 1px;
}
.redes .telefono{
	display: flex;
	align-items: center;
}
.redes .telefono img{
	width: 50px;
	height: 50px;
}
.redes .telefono p{
	font-size: 20px;
	font-weight: 900;
	font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
	color: #273b47;
}
.redes .whatsapp{
	display: flex;
	align-items: center;
}
.redes .whatsapp img{
	width: 50px;
	height: 50px;
}
.redes .whatsapp p a{
	text-decoration: none;
	font-size: 20px;
	color: #273b47;
	font-weight: 900;
	margin-left: 5px;
}
.redes .whatsapp p a:hover{
	color: rgb(100, 9, 9);
}
.redes .instagram{
	display: flex;
	align-items: center;
}
.redes .instagram img{
	width: 50px;
	height: 50px;
}
.redes .instagram p a{
	text-decoration: none;
	font-size: 20px;
	color: #273b47;
	font-weight: 900;
	margin-left: 5px;
}
.redes .instagram p a:hover{
	color: rgb(100, 9, 9);
}
.redes .facebook{
	display: flex;
	align-items: center;
}
.redes .facebook img{
	width: 50px;
	height: 50px;
}
.redes .facebook p a{
	text-decoration: none;
	font-size: 20px;
	color: #273b47;
	font-weight: 900;
	margin-left: 5px;
}
.redes .facebook p a:hover{
	color: rgb(100, 9, 9);
}
iframe{
	display: flex;
	margin-top: 20px;
	width: 100%;
	height: 150px;
}
@media screen and (max-width:425px){
	.header{
		background-color: #1a0b08;
		width: 100%;
		height: 100px;
		align-items: center;
		justify-content: center;
	}
	.header .logo{
		flex-grow: 0;
	}
	.logo img{
		display: flex;
		flex-wrap: wrap;
		width: 350px;
		height: 100px;
		margin-left: 0;
	}
}
@media screen and (max-width:375px){
	.header{
		background-color: #1a0b08;
		width: 100%;
		height: 100px;
		align-items: center;
		justify-content: center;
	}
	.header .logo{
		flex-grow: 0;
	}
	.logo img{
		display: flex;
		flex-wrap: wrap;
		width: 300px;
		height: 100px;
		margin-left: 0;
	}
}
@media screen and (max-width:320px){
	.header{
		background-color: #1a0b08;
		width: 100%;
		height: 100px;
		align-items: center;
		justify-content: center;
	}
	.header .logo{
		flex-grow: 0;
	}
	.logo img{
		display: flex;
		flex-wrap: wrap;
		width: 250px;
		height: 100px;
		margin-left: 0;
	}
}