/* ==========================================================================
 Author's custom styles
   ========================================================================== */
*{
	outline: none;
	box-sizing: border-box;
}
body{
	font-family: "Poppins", sans-serif;
	padding: 0;
	margin: 0;
	background: #ffffff;
}
body.static{
	overflow: hidden;
}
a{ color: #ffff; }
a:hover, a:link, a:visited, a:active{ text-decoration: none; }
input:-internal-autofill-selected{
	background: #fff !important;
}
input, textarea, select, button{
	font-family: "Poppins", sans-serif;
}
main{
	display: flex;
	min-width: 100vw;
	min-height: 100vh;
}
.contenedor{
	display: flex;
	flex-direction: column;
	clear: both;
	width: 100%;
/*	max-width: 1280px;*/
	margin: 0 auto;
	padding: 0;
	position: relative;
	overflow: hidden;
}	
.contenedor.row{
	flex-direction: row;
}

.image{
	display: flex;
	width: 100%;
	height: 100%;
	max-height: 100vh;
}
.image img{
	object-fit: contain;
}