<style>

/* ----------------- COMMON ---------------- */

/* = Universal selector== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: arial, sans-serif;
}
 
a {
  text-decoration: none;
}

 /* ----------------- THE HEADER ---------------- */
 
 .header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 80px;
	background-image: url(../images/blueheader.jpg);
	background-position: center;
	background-size: cover;
	z-index: 1000;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 1.8s cubic-bezier(0.25, 1, 0.5, 1); /* Slow easing */
}

.hide {
transform: translateY(-100%);
}

#headerbandcontent {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	align-content: center;
	width: 100%;
	margin: 14px  0 30px 0;
	padding: 0 50px 0 80px;
}

#headerlogodiv {
	padding: 25px 0 0 0;
}

#headerlogo {
	width: 50px;
	height: 50px;
}

#headernamediv {
	padding: 35px 0 0 15px;
}

#headername {
	width: 132px; height: 37px;
}

#wrapmenu {
	transition: top 1.3s;
}

#phoneicondiv {
	position: absolute;
	top: 33px;
	right:150px;
	padding: 0 0 0 0;
}

#phoneicon {
	width: 20px;
	height: 20px;
	padding: 0 0 0 0;
}

#phonediv {
	position: absolute;
	top: 35px;
	right:28px;
	font-family: arial, sans-serif;
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	padding: 0 0 0 0;
}

#phonediv > span {
	padding: 0px 0 0px 4px;
	color:yellow;
	font-size: 16px;
}

/* ----------------- END THE HEADER ---------------- */

/* ----------------- THE FOOTER ---------------- */

#footer_wrapper {
	background-color: #20304f;
	width: 100%;
}

#footer_container {
    display: flex;
	flex-wrap: wrap;         /* Allows wrapping */
	align-items: start;
    justify-content: center;  /* Centers divs horizontally */
    /*align-items: center;*/      /* Centers divs vertically */
    /*height: 100vh; */           /* Full screen height */
    gap: 20px;                /* Adds space between divs */
	margin: 0 auto;
	padding: 30px;
    width: 80%;             /* Optional: restricts max width */
}

.footer_box {
    flex: 1 1 calc(20% - 20px); /* Default: 3-per-row */
    min-width: 150px;   /* Prevents shrinking too much */
    text-align: center;
    padding: 20px;
    color: white;
    font-size: 12px;
}

#footer_logo {
	width: 38px;
	height: 38px;\
	margin: 0 15px 0 0;
}

#footer_name {
	width: 120px;
	height: 33px;
	margin: 0 0 0 5px;
}

#footer_text {
	font-size: 12px;
	color: #fff;
	max-width: 500px;
	margin: 0 auto;
	line-height: 20px;
}

#foot_row1_col2_title {
	font-size: 14px;
	font-weight: bold;
	color: #43f2e5;
	padding: 0 0 10px 0;
}

.foot_row1_col2_text {
	line-height: 20px;
}

#foot_row1_col3_title {
	font-size: 14px;
	font-weight: bold;
	color: #43f2e5;
	padding: 0 0 10px 0;
}

.foot_row1_col3_text {
	color: #fff;
	line-height: 20px;
}


#foot3 {
  display: flex;
  flex-direction: row;
  flex-wrap:wrap;
  justify-content: space-evenly;
  align-items: center;
  background-color: #20304f;
  width: 100%;
}

#iconsdiv {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: center;
   width: 100%;
   margin-bottom: 20px;
   text-align: center;
}

.thisicondiv {
   margin: 0 30px;
}

.socmedimg {
  margin: 0 auto;
  text-align: center;
  width: 35px;
  height: 35px;
}



#foot4 {
  display: flex;
  flex-direction: row;
  flex-wrap:wrap;
  justify-content: center;
  align-items: center;
  background-color: #162440;
  width: 100%;
  height: 50px;
  font-family: aria, sans-serif;
  font-size: 14px;
  font-weight: normal;
  color: #9daecd;
}


/* 2-per-row on tablets */
@media (max-width: 998px) {
    .footer_box {
        flex: 1 1 calc(50% - 20px); /* 2-per-row */
    }
}

/* 1-per-row on small screens */
@media (max-width: 779px) {
    .footer_box {
        flex: 1 1 100%; /* 1-per-row */
    }
}


/* ----------------- END THE FOOTER ---------------- */

/* ========================= THE INDEX PAGE ========================= */

	/* ---------- vegas slide texts has its own tryle sheet -------- */



/* --------------------------- BODYWRAP1 (Why us)---------------------------- */
#bodywrap1 {
  padding: 0;
  background-color: #fefefe;
}

#bodytitle1 {
  width: 100%;
  /*display: flex;*/
  /*flex-direction: row;*/
  /*justify-content: center;*/
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
  padding: 0 20px;
  font-family: arial, sans-serif;
  font-size: 26px;
  font-weight: bold;
  color: red;
}


/* ----------------------------Flex1 container----------------- */
.flex1 { /* parent container */
  flex-direction: column;
  flex: 100%;
  justify-content: center; /* center or space-between or space-around */
  margin: 0 20px 50px 20px;
}


.flex1 > section {
  align-items: center;
  display: flex;
  flex: 1 1 0; /* shorthand for flex-grow, flex-shrink and flex-basis combined */
			   /* flex-bais: 0 prevents the extra space around content */
  flex-direction: column; /* inside the section */
  text-align: center; /* centers all content inside each product */
  background: #fff;
  padding: 0; /* 1 em */
  margin: 0 auto 5px auto;
  flex: 100%;
  max-width: 775px;
  background-color: #f5f5f5;
}

.flex1 > section > p {
  flex-grow: 1; /* lets the items fill the width equally */
  padding: 5px 20px 20px 20px;
  color: #777;
  line-height: 27px;
}

.flex1 img {
  width: 100%;
  border-radius: 2px;
}

.flex1 section h2 {
  margin: 10px 20px;
  font-family: arial, sans-serif;
  font-size: 22px;
  font-weight: bold;
  color: #666;
}
/* ----------------------------END Flex1 container----------------- */

#bodytitle2 {
  width: 100%;
  /*display: flex;*/
  /*flex-direction: row;*/
  /*justify-content: center;*/
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
  padding: 0 20px;
  font-family: arial, sans-serif;
  font-size: 20px;
  font-weight: bold;
  color: red;
}


.spacer {
	margin:  0 0 20px 0;
	width: 100%;
	height: 5px;
	background-color: #405978;
}

/* ========================= END BODYWRAP1 ========================= */


/* ========================= BODYWRAP2 (Tours) ========================= */
#bodytitle3 {
  color:#000;
  background-color:#fff;
  text-align:center;
  padding:20px 30px 0 30px;
  text-align: justify;
}

#bodytitle3 > p {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}

#bodywrap2 {
	margin: 0 auto 20px auto;
}

/* ------------------Flex2 container---------- */
.flex2 { /* parent container */
  flex-direction: column;
  flex: 100%;
  justify-content: center; /* center or space-between or space-around */
  margin: 0 20px 50px 20px;
}


.flex2 > section {
  align-items: center;
  display: flex;
  flex: 1 1 0; /* shorthand for flex-grow, flex-shrink and flex-basis combined */
			   /* flex-bais: 0 prevents the extra space around content */
  flex-direction: column; /* inside the section */
  text-align: center; /* centers all content inside each product */
  background: #fff;
  padding: 0; /* 1 em */
  margin: 0 auto 5px auto;
  flex: 100%;
  max-width: 775px;
  background-color: #f5f5f5;
}

.flex2 > section > p {
  flex-grow: 1; /* lets the items fill the width equally */
  padding-botton: 20px;
  color: #777;
  line-height: 25px;
  margin-bottom: 20px;
}

.flex2 img {
  width: 100%;
  border-radius: 2px;
}

.flex2 section h2 {
  margin: 10px 20px;
  font-family: arial, sans-serif;
  font-size: 22px;
  font-weight: bold;
  color: #777;
}
/* ---------------END Flex2 container------------ */


/* ========================= END BODYWRAP2 (Tours) ========================= */


/* -------------------bottom parallax ---------------- */
.bgimg {
  position: relative;
  opacity: 1.0;
   background-image: url("../images/hi1e.jpg");
  min-height: 500px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.caption {
  position: absolute;
  left: 0;
  top: 35%;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  color: #000;
}

.caption span.border {
  background-color: #111;
  color: #fff;
  padding: 18px;
  font-size: 25px;
  letter-spacing: 7px;
}


/* Turn off parallax scrolling for tablets and phones */
@media only screen and (max-device-width: 1024px) {
  .bgimg {
    background-attachment: scroll;
  }
}

/* -------------------END bottom parallax ---------------- */



@media screen and (min-width: 776px) { /* ======================================================= */

.flex1 { /* parent container */
  display: flex; /* aligns the items of the parent in a row */
  flex-direction: row;
  flex-wrap: wrap; /* makes the elements flow on next row */
  justify-content: space-around; /* center or space-between or space-around */
  margin: 20px;
  /* background-color: green; */
}

.flex1 > section {
  align-items: center;
  display: flex;
  flex: 1 1 0; /* shorthand for flex-grow, flex-shrink and flex-basis combined */
			   /* flex-bais: 0 prevents the extra space around content */
  flex-direction: column; /* inside the section */
  text-align: center; /* centers all content inside each product */
  background: #fff;
  padding: 1em;
  border-radius: 4px;
  flex: 50%;
  max-width: 48%;
  background-color: #f5f5f5;
}

.flex1 img {
  width: 100%;
  border-radius: 2px;
}


.flex1 > section > p {
  padding: 5px 5px 0 5px;
}



.flex2 { /* parent container */
  display: flex; /* aligns the items of the parent in a row */
  flex-direction: row;
  flex-wrap: wrap; /* makes the elements flow on next row */
  justify-content: space-around; /* center or space-between or space-around */
  margin: 20px;
  /* background-color: green; */
}

.flex2 > section {
  align-items: center;
  display: flex;
  flex: 1 1 0; /* shorthand for flex-grow, flex-shrink and flex-basis combined */
			   /* flex-bais: 0 prevents the extra space around content */
  flex-direction: column; /* inside the section */
  text-align: center; /* centers all content inside each product */
  background: #fff;
  padding: 1em;
  border-radius: 4px;
  flex: 50%;
  max-width: 48%;
  background-color: #f5f5f5;
}

.flex2 img {
  width: 100%;
  border-radius: 2px;
}

aside {
  margin-top: auto; /* aligns the content if aside at the bottom !!!!!!! */
}


}






@media screen and (min-width: 998px) { /* =================================== */

.flex1 { /* parent container */
    /*background-color: blue;*/
}

.flex1 > section {
  flex: 33%;
  max-width: 32%;
  background-color: #f5f5f5;
}




.flex2 > section {
  flex: 33%;
  max-width: 32%;
  background-color: #f5f5f5;
}

img {
  width: 98%; /* REMOVING THIS => MAX THREE COLUMNS */
  /*
  max-width: 330px;
  border-radius: 2px;
  */
}



img {
  width: 98%; /* REMOVING THIS => MAX THREE COLUMNS */
  /*
  max-width: 330px;
  border-radius: 2px;
  */
}



}




@media screen and (min-width: 1200px) { /* =================================== */

.flex1 { /* parent container */
}


.flex1 > section {
  flex: 15%;
  max-width: 16%;
  background-color: #f5f5f5;
}


.flex1 section h2 {
  margin: 10px 20px;
  font-family: arial, sans-serif;
  font-size: 22px;
  font-weight: bold;
  color: #666;
}



.flex2 > section {
  flex: 25%;
  max-width: 24%;
  background-color: #f5f5f5;
}


}



a.image-popup-no-margins {
		overflow: hidden;
	}
	
a.image-popup-no-margins img {
			-moz-transition: -moz-transform 0.2s ease-out;
			-webkit-transition: -webkit-transform 0.2s ease-out;
			-ms-transition: -ms-transform 0.2s ease-out;
			transition: transform 0.2s ease-out;
		}	
a.image-popup-no-margins:hover img {
			-moz-transform: scale(1.05);
			-webkit-transform: scale(1.05);
			-ms-transform: scale(1.05);
			transform: scale(1.05);
		}

/* ========================= END THE INDEX PAGE ========================= */

/* ========================= THE TRANSPORTE PAGE ========================= */

#transppriv_topimgdiv {
	margin: 80px 0 0 0;
	width: 100%;
	max-width: 100%;
	height: auto;
	background-image: url(../images/transportepriv.jpg);
	background-position: center;
	background-size: cover;
}

#transpcol_topimgdiv {
	margin: 80px 0 0 0;
	width: 100%;
	max-width: 100%;
	height: auto;
	background-image: url(../images/transportecol.jpg);
	background-position: center;
	background-size: cover;
}


#transp_diagimg {
	width: 100%;
	max-width: 100%;
	height: auto;
}

#transp_priv_text1 {
	margin: 20px auto 10px auto;
	text-align: center;
	font-size: 36px;
	font-weight: bold;
}

#transp_priv_text2 {
	margin: 10px auto 10px auto;
	text-align: center;
	font-size: 32px;
	font-weight: bold;
	color: red;
}

#transp_priv_text3 {
	margin: 0 50px 15px 50px;
	text-align: center;
	font-size: 20px;
	font-weight: bold;
}

#transp_priv_img1 {
	margin: 0 40px 20px 40px;
	text-align: center;
}


#transp_priv_text4 {
	margin: 15px 50px 10px 50px;
	text-align: center;
	font-size: 20px;
	font-weight: bold;
}

#transp_priv_text5 {
	margin: 0 50px 10px 50px;
	text-align: center;
	font-size: 16px;
	font-weight: bold;
}

.benefits {
    max-width: 700px;
    margin: auto;
    padding: 15px 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	font-size: 0.9em;
}
.benefits p {
    margin-bottom: 15px;
}
.benefits strong {
    font-size: 1.0em;
    color: #333;
}

#transp_priv_text6 {
	max-width: 700px;
	margin: auto;
	padding: 20px 30px 0 30px;
	text-align: center;
	font-size: 14px;
}

#transp_priv_text7 {
	margin: 30px 30px 10px 30px;
	text-align: center;
	font-size: 16px;
	font-weight: bold;
}

#transp_priv_text8 {
	margin: 10px 30px 20px 30px;
	text-align: center;
	font-size: 16px;
	font-weight: bold;
}

#reservar_priv_div {
	width: 100%;
	height: 60px;
	margin: 0 auto 20px auto;
	text-align: center;
}

.reservar_button {
	width: 300px;
	height: 40px;
	background-color: #c2f9fb;
	padding: 5px 10px;
	text-align: center;
	font-family: arial, sans-serif;
	font-size: 16px;
	font-weight: bold;
	color: #000;
	cursor: pointer;
	border-collapse: collapse;
	border-radius: 10px;
}

#transp_privx1 {
	margin: 40px auto 10px auto;
	padding: 0 30px;
	text-align: center;
	font-size: 24px;
	font-weight: bold;
}

#transp_privx2 {
	max-width: 800px;
	margin: 10px auto 30px auto;
	padding: 0 30px;
	text-align: center;
	font-size: 14px;
	font-weight: normal;
}

#transp_priv_img2 {
	margin: 10px 40px;
	text-align: center;
}

#transp_privx3 {
	max-width: 800px;
	margin: 10px auto 10px auto;
	padding: 0 30px;
	text-align: center;
	font-size: 14px;
	font-weight: normal;
}


#transp_col_text1 {
	margin: 20px auto 10px auto;
	text-align: center;
	font-size: 36px;
	font-weight: bold;
}

#transp_col_text2 {
	max-width: 800px;
	margin: 20px auto 20px auto;
	text-align: center;
	font-size: 16px;
}

#transp_col_text3 {
	margin: 30px 50px 0 50px;
	text-align: center;
	font-size: 20px;
	font-weight: bold;
}

#transp_col_text4 {
	margin: 0 50px 0 50px;
	text-align: center;
	font-size: 14px;
}

#transp_col_text5 {
	margin: 0 30px 10px 30px;
	text-align: center;
	font-size: 16px;
	font-weight: bold;
}

.cancel_rescol {
	width: 100px;
	height: 30px;
	background-color: yellow;
	padding: 5px 10px;
	text-align: center;
	font-family: arial, sans-serif;
	font-size: 16px;
	color: #000;
	cursor: pointer;
	border-collapse: collapse;
	border-radius: 10px;
}


/* ----------------------------------- Fancy Table ------------------------ */

#customers {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  border-collapse: collapse;
  width: 100%;
  text-align: center;
}

#customers td, #customers th {
  border: 1px solid #ddd;
  padding: 8px;
}

/*#customers tr:nth-child(even){background-color: #f2f2f2;}*/

/*#customers tr:hover {background-color: #ddd;}*/

#customers th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #405978;
  color: white;
  text-align: center;
}

#customers tr:nth-child(6) {background-color: #eee;}
#customers tr:nth-child(7) {background-color: #eee;}
#customers tr:nth-child(8) {background-color: #eee;}
#customers tr:nth-child(9) {background-color: #eee;}
#customers tr:nth-child(13) {background-color: #eee;}
#customers tr:nth-child(15) {background-color: #eee;}
#customers tr:nth-child(16) {background-color: #eee;}
#customers tr:nth-child(17) {background-color: #eee;}
#customers tr:nth-child(19) {background-color: #eee;}
#customers tr:nth-child(22) {background-color: #eee;}
#customers tr:nth-child(23) {background-color: #eee;}
#customers tr:nth-child(24) {background-color: #eee;}
#customers tr:nth-child(27) {background-color: #eee;}
#customers tr:nth-child(28) {background-color: #eee;}
#customers tr:nth-child(30) {background-color: #eee;}

.tel {
	margin: 10px 0 40px 0;
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	color: red;
}

@media screen and (min-width: 776px) {
	
	#customers {
		font-size: 14px;
	}
	
	#transp_text1 {
		margin: 30px 80px 10px 80px;
	}
	
	
	#transp_priv3 {
		margin: 10px 80px 10px 80px;
	}
	
		
}


@media screen and (min-width: 998px) {
	
	#customers {
		width: 90%;
		margin: 0 auto;
	}
	
	#transp_text1 {
		margin: 30px 120px 10px 120px;
	}
	
	
	#transp_priv3 {
		margin: 10px 120px 10px 120px;
	}
	

}

@media screen and (min-width: 1200px) {
	
	#transp_text1 {
		margin: 30px 200px 10px 200px;
	}
	
	#transp_priv3 {
		margin: 10px 200px 10px 200px;
	}
	

}



/* ----------------------------------- END Fancy Table ------------------------ */


/* ========================= END THE TRANSPORTE PAGE ========================= */


/* ========================= THE ARTESANIA PAGE ========================= */

#arte_topimgdiv {
	margin: 80px 0 0 0;
	width: 100%;
	max-width: 100%;
	height: auto;
	background-image: url(../images/artesania.jpg);
	background-position: center;
	background-size: cover;
}

#arte_diagimg {
	width: 100%;
	max-width: 100%;
	height: auto;
}


#arte_text1 {
	color:#fff6e2;
	background-color:#fff6e2;
	text-align:center;
	padding:20px 30px 0 30px;
	text-align: justify;
}

#arte_text1 > p {
	text-align: center;
	font-size: 32px;
	font-weight: bold;
	color: #000;
}

#arte_text2 {
	color:#000;
	background-color:#fff6e2;
	text-align:center;
	padding:5px 30px 0 30px;
	text-align: justify;
}

#arte_text2 > p {
	text-align:center;
	font-size: 18px;
	font-weight: bold;
	color: #000;
}

#arte_text3 {
	color:#000;
	background-color:#fff6e2;
	text-align:center;
	padding:5px 30px 0 30px;
	text-align: justify;
}

#arte_text3 > p {
	text-align: center;
	font-size: 18px;
	font-weight: bold;
}

#arte_text4 {
	margin: 30px 50px 10px 50px;
	text-align: center;
	font-size: 14px;
}

#arte_text5 {
	margin: 20px 20px 10px 20px;
	text-align: center;
	font-size: 16px;
	font-weight: bold;
}



/* ----------------------------Flex3 container = Flex3 container on the index page----------------- */
.flex3 { /* parent container */
  display: flex; /* aligns the items of the parent in a row */
  flex-direction: row;
  flex-wrap: wrap; /* makes the elements flow on next row */
  justify-content: space-around; /* center or space-between or space-around */
  margin: 20px 20px 0 20px;
}

.flex3 > section {
  align-items: center;
  display: flex;
  flex: 1 1 0; /* shorthand for flex-grow, flex-shrink and flex-basis combined */
			   /* flex-bais: 0 prevents the extra space around content */
  flex-direction: column; /* inside the section */
  text-align: center; /* centers all content inside each product */
  background: #fff;
  padding: 1em;
  border-radius: 4px;
  flex: 50%;
  max-width: 48%;
  background-color: #fff6e2;
}

.flex3 > section > p {
  flex-grow: 1; /* lets the items fill the width equally */
  padding-botton: 20px;
  color: #777;
  line-height: 25px;
  margin-bottom: 20px;
  font-size: 14px;
}

.flex3 img {
  width: 100%;
  border-radius: 2px;
}

.flex3 section h2 {
  margin: 10px 20px;
  font-family: arial, sans-serif;
  font-size: 20px;
  font-weight: bold;
  color: #777;
}

.tel {
	margin: 10px 0 40px 0;
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	color: red;
}




@media screen and (min-width: 776px) { /* ======================================================= */


.flex3 > section {
  flex: 33%;
  max-width: 32%;
  background-color: #fff6e2;
}
/*
.flex3 img {
  width: 100%;
  border-radius: 2px;
}
*/

}




@media screen and (min-width: 998px) { /* =================================== */



.flex3 > section {
  flex: 25%;
  max-width: 24%;
  background-color: #fff6e2;
}



img {
  width: 98%; /* REMOVING THIS => MAX THREE COLUMNS */
  /*
  max-width: 330px;
  border-radius: 2px;
  */
}




}




@media screen and (min-width: 1200px) { /* =================================== */



.flex3 > section {
  flex: 15%;
  max-width: 24%;
  background-color: #fff6e2;
}



}


/* ----------------------------Flex3 container = Flex3 container on the index page----------------- */





/* ========================= END THE ARTESANIA PAGE ========================= */


/* ========================= THE NOSOTROS PAGE ========================= */

#us_topimgdiv {
	margin: 80px 0 0 0;
	width: 100%;
	max-width: 100%;
	height: auto;
	background-image: url(../images/nosotros14.jpg);
	background-position: center;
	background-size: cover;
}

#us_diagimg {
	width: 100%;
	max-width: 100%;
	height: auto;
}

.stp {
	margin: 20px auto 0 auto;
	text-align: center;
}

.us_textparr {
	margin-bottom: 15px;
	text-align: justify;
}



.us_wrapper {
    margin: 30px 25px 30px 25px;
    padding: 0;
}
		
		
.content {
    max-width: 1000px; /* Optional: Limits content width for better readability */
    margin: 20px auto; /* Centers the content */
	padding: 0 12px;
}

.content img {
    width: 50%; /* Makes the image take 50% of the container width */
    height: auto; /* Maintains aspect ratio */
    float: left; /* Makes the text wrap around the image */
    margin-right: 30px; /* Adds spacing between the image and text */
	margin-bottom: 5px; /* Adds spacing between the image and text */
}

/* Clearfix to ensure the container wraps properly */
	.content::after {
    content: "";
    display: block;
    clear: both;
}

		
		
@media screen and (max-width: 776px) { /* ======================================================= */

.content {
    margin: 30px;
}



.content img {
    width: 100%;
    height: auto; /* Maintains aspect ratio */
    margin: 0 auto 20px auto;
}


}





/* ========================= END THE NOSOTROS PAGE ========================= */


/* ========================= THE CONTACTO PAGE ========================= */

#contact_topimgdiv {
	margin: 80px 0 0 0;
	width: 100%;
	max-width: 100%;
	height: auto;
	background-image: url(../images/contactenosNew.jpg);
	background-position: center;
	background-size: cover;
}

#contact_diagimg {
	width: 100%;
	max-width: 100%;
	height: auto;
}

#formdiv {
	width: 90%;
	margin: 10px auto 0 auto;
	text-align: center;
}

#formheader {
	width: 100%;
	height: 100px;
	background: url(../images/formheader.jpg);
}

.backdiv {
	margin: 0;
	padding: 0;
}

#contact_wrapper {
    margin: 0 20px 30px 20px;
    padding: 30px 0 0 0;
			
}
					
#contact_container {
    display: flex;
	margin: 0 auto;
    width: 100%;
	gap: 10px; /* Optional spacing between columns */
}

.left-column {
    flex: 1; /* 1 part */
    padding: 10px 20px 0 20px;
    box-sizing: border-box;
	margin: 0 auto 30px auto;
}

.right-column {
    flex: 2; /* 2 parts */
    padding: 0 20px;
    box-sizing: border-box;
	margin: 0 auto 30px auto;
}
				
.left-column > h1{
	font-size: 20px;
}

.left-column > p{
	margin-bottom: 20px;
}	
		
#maptitle {
	margin: 20px auto;
	text-align: center;
}
		
#maptitle > p {
	font-size: 24px;
	font-weight: bold;
}

#mapdiv {
	margin: 0 auto;
	text-align: center;
}

#themap {
	margin: 0 auto 5px auto;
	text-align: center;
	width: 80%;
	max-width: 900px;
}

#belowmap1 {
	margin: 10px auto 0 auto;
	text-align: center;
}
		
#belowmap1 > p {
	font-size: 20px;
	font-weight: bold;
}

#belowmap2 {
	margin: 0 auto 5px auto;
	text-align: center;
}
		
#belowmap2 > p {
	font-size: 16px;
	font-weight: bold;
}

.tel2 {
	margin: 0 auto 40px auto;
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	color: red;
}


	
@media screen and (max-width: 776px) { /* ======================================================= */

#contact_container {
       flex-direction: column; /* Stacks columns vertically */
}

.left-column {
    width: 84%;
    box-sizing: border-box;
	margin: 0 auto 30px auto;
	text-align: center;
	border: 1px solid black;
}

.right-column {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
	margin: 0 auto 30px auto;
}

}




/* ========================= END THE CONTACTO PAGE ========================= */
