/* Establecemos el color de fondo de la página */
body {
    background-color: rgb(148, 185, 192);
}

/* Aplicamos estilos al encabezado */

h1 {
    color:rgb(212, 105, 5);
    text-align: center;
    font-size: 3.8vw;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

header {
    border: 1px solid rgb(212, 105, 5);
    padding: 0.7%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.2);
    border-radius: 25px;
    position:relative;
    width: 98.5%;
}

.opciones {
    width: 10%;
    background-color: #f4511e;
    border: none;
    color: white;
    padding: 1% 0%;
    text-align: center;
    font-size: 1.1vw;
    opacity: 1;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-right: 50px;
    margin-top: 0%;
}
.opciones:hover{opacity: 0.6}

.titulo {
    padding: 100%;
    margin-bottom: 0%;
}

.menu{
    color: rgb(172, 84, 2);
    padding: 10px;
    text-align: center;
    font-size: 1em;
}

#logo {
    float: left;
    padding-top: 20px;
    padding-bottom: 25px;
    padding-left: 25px;
}

/* Hasta aquí se tienen los estilos asociados al encabezado */

/* Aplicamos estilos al contenido de la página tales como la barra lateral y la sección principal */

.cuerpo {
    overflow:hidden;
	padding-top:10px;
    width: 100%;
}

.principal {
    border: 1px solid rgb(212, 105, 5);
	float: right;
	width: 73%;
	padding-bottom: 100%;
	margin-bottom: -100%;
    border-radius: 25px;
    height: 75%;
}

.lista_tours {
    width: 29%;
    height: 25%;
    background-color: rgba(255, 255, 255, 0.63);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    margin-bottom: 25px;
    margin-right: 1.5%;
    border-radius: 25px;
    padding: 1%;
    float: left;
    padding-left: 1%;
    margin: 1% 1%;
}

.foto {
    /* max-width: 200%;
    max-height: 200%; */
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    object-fit:cover;

}

#colaboradores{
    color:rgb(212, 105, 5);
    text-align: center;
    font-size: 2vw;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.lateral {
    border: 1px solid rgb(212, 105, 5);
    width: 25%;
    height: 75%;
    padding-bottom: 100%;
    margin-bottom: -100%;
    padding-left: 1%;
    border-radius: 25px;
    font-family:'Courier New', Courier, monospace;
}

h3 {
    text-align: center;
    padding: 5px 20px;
    font-size: 1.1vw;
    font-family: Arial, Helvetica, sans-serif;
    color:blue;
    margin-bottom: 0%;
}

/* Aplicamos estilos al pie de página */

.bottom {
    text-align: center;
    border: 1px solid rgb(212, 105, 5);
    color: rgb(212, 105, 5);
    background-color: rgba(255, 255, 255, 0.2);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.05vw;
}

h6 {
    font-size: 1vw;
    text-align: left;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    margin-left: 5%;
    color:rgb(38, 1, 139);
}