
html, body {
  height: 100%;
  margin: 0;
}

/* Estilos generales */
body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fafafa;
  display: flex;
  flex-direction: column;
  min-height: 70vh; /* Asegura que el body tenga al menos la altura de la viewport */
}

.container {
  flex: 1; /* Permite que el contenido principal se expanda para ocupar todo el espacio disponible */
  min-height: 70vh;
}

footer {
  flex-shrink: 0;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
.content__info{
	width: 100vw;
	height: 80vh;
	display: flex;
	flex-direction: column;
}

.content__first__info{
	margin-top: 10vh;
	width: 100%;
	height: auto;
}

.content__first__info h2{
	text-align: center;
	color: #00436D; /* azul claro de la paleta */
	font-size: 2.5vw;
	font-family: montserrat;
}

.content__first__info h3{
	margin-left: 20%;
	font-family: montserrat;
	 color: #00436D; /* azul claro de la paleta */
	 font-size: 2vw;
}

.content__first__info p{
	margin-left: 20%;
	font-family: montserrat;
	 font-size: 1.2vw;
}

.content__second__info{
	margin-left: 20%;
	margin-right: 20%;
	display: flex;
	flex-direction: row;
	align-items: center;
	width: auto;
	height: 70%;
	justify-content: space-around;
}


.content__second__info__img img{
	width: 18vw;
	height: 18vw;
	border-radius: 25px;
}

.content__map iframe{
	width: 18vw;
	height: 18vw;
	border-radius: 25px;
	box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.content__second__info__data{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.content__second__info__data h2{
	 color: #00436D; /* azul claro de la paleta */
	 font-size: 1.8vw;
}

.button-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative; /* Para posicionar los botones en relación a este contenedor */
  top: -50vh; /* Ajusta el valor según sea necesario */
  left: 50%;
  transform: translateX(-50%);
  padding: 10px;
  width: 98%; /* Ajusta el ancho según tu diseño */
}



.button-container button {
  background-color: rgba(0, 121, 190, 0.7); /* azul claro concorde*/
  width: 46px;
  height: 46px;
  display: flex;
  text-align: center;
  border-radius: 50%;
  line-height: 46px;
  cursor: pointer;
  font-size: 1.2rem;
  color: white;
  justify-content: center;
  align-items: center;
  outline: none;
  border: none;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.button-container button:hover {
color: darkblue;
 }

.button-container button:nth-child(1) {
  margin-left: 1%;
}
.button-container button:nth-child(2) {
  margin-right: 1%;
}

@media only screen and (min-width: 851px) and (max-width: 1300px) {

.button-container button {

padding: 15px 20px;	
  font-size: 1.5vw;
}

}


@media screen and (max-width: 850px) {

	.container {
  flex: 1; /* Permite que el contenido principal se expanda para ocupar todo el espacio disponible */
  min-height: 110vh;
}
.content__all__location{
	width: 100%;
	min-height: 150vh;
	height: auto;
}

.content__first__info h2{
	text-align: center;
	color: #00436D; /* azul claro de la paleta */
	font-size: 5vw;
	font-family: montserrat;
}

.content__first__info h3{
	margin-left: 10%;
	font-family: montserrat;
	 color: #00436D; /* azul claro de la paleta */
	 font-size: 4vw;
}

.content__first__info p{
	margin-left: 10%;
	text-align: center;
	font-family: montserrat;
	 font-size: 2.5vw;
	margin-right: 10% ;
}

.content__second__info{
	margin-top: 3vh;
	display: flex;
	flex-direction: column-reverse;
	min-height: 80vh;
	height: auto;
}

.content__second__info__img img{
	width: 60vw;
	height: 30vw;
	border-radius: 25px;
}

.content__map iframe{
	width: 60vw;
	height: 30vw;
	border-radius: 25px;
	box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.content__second__info__data h2{
	 color: #00436D; /* azul claro de la paleta */
	 font-size: 5vw;
}


}