/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video{
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

button {
	background: transparent;
	box-shadow: 0px 0px 0px transparent;
	border: 0px solid transparent;
	text-shadow: 0px 0px 0px transparent;
}





select::-ms-expand {
    display: none;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	width: 100%;
	height: 100%;
	-ms-overflow-style: none; /* for Internet Explorer, Edge */
  	scrollbar-width: none; /* for Firefox */
  	overflow-y: scroll;
	font-size: 15px;
    font-family: Montserrat;
}
body::-webkit-scrollbar {
	display: none; /* for Chrome, Safari, and Opera */
}
html{
	width: 100%;
	height: 100%;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a{
	text-decoration:none;
}
input:focus, textarea:focus {
    outline: none;
}
@font-face {
	font-family: Montserrat;
	src: url('/fonts/Montserrat-Regular.ttf');
}
@font-face {
	font-family: Montserrat-Bold;
	src: url('/fonts/Montserrat-Bold.ttf');
}
@font-face {
	font-family: Montserrat-ExtraBold;
	src: url('/fonts/Montserrat-ExtraBold.ttf');
}
@font-face {
	font-family: Montserrat-Light;
	src: url('/fonts/Montserrat-Light.ttf');
}


.container{
	width: 100%;
	margin: auto;
	position: relative;
}

.redes{
	position: fixed;
	right: 0px;
	top: 120px;
	width: 65px;
	height: 195px;
	z-index: 3;
	display: block;
}
.redes .red{
	width: 65px;
	height: 65px;
	background-color: #0091D9;
	display: block;
	opacity: 1;
	color: #FFFFFF;
	font-size: 24px;
	box-sizing: border-box;
	padding-left: 22px;
	padding-top: 22px;
}
.redes .wp{
	background-color: #3CAD4B !important;
}

.arrowDown{
	height: 13px;
	width: 13px;
	display: inline-block;
	float: right;
}
.arrowDown:after{
	position: relative;
	content: '\276F';
	transform: rotate(90deg);
	display: block;
}
.right-arrow:after {
	content:'\276F'
}
.left-arrow:after {
	content:'\276E'
}

.seccion{
	position: fixed;    
	width: 100%;
	height: calc(100vh - 70px);
	z-index: 1;
}
.seccionCompleta{
	width: 100%;
	height: 100vh;
	z-index:2;
	background-color: white;
	display: block;
	position: relative;
}

.scrollSlider{
	display: inline-block;
	position: relative;
	overflow: auto;
	overflow-y: hidden;
	overflow-x: scroll;
	white-space: nowrap;
}
.scrollSlider::-webkit-scrollbar {
	display: none; /* for Chrome, Safari, and Opera */
}

.imagenSlider{
	background-size: cover;
    background-position: top center;
	-webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
	position: relative;
}





/*= Dialog */

#dialog {
	width: 100%;
  	height: 100%;
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99999999;
	background: rgba( 192, 192, 192, 0.8 );
	transform: scale(0);
	font-family: Montserrat;
}

#dialog:target {
  transform: scale(1);
}

.dialog-content {
	width: 300px;
	position: absolute;
	top: 30%;
	left: 50%;
	margin-left: -150px;
	background: #fff;
	border: 1px solid #ccc;
}

.dialog-text {
	margin: 1.5em 0;
	text-align: center;
	text-transform: uppercase;
}

.dialog-actions {
	padding-bottom: 1.5em;
	text-align: center;
}

.aviso{
	position: fixed;
	width: 100%;
	height: 100vh;
	z-index: 100;
	background-color: #FFFFFF;
	opacity: 0.8;
	box-sizing: border-box;

	background: #bda3a372 0% 0% no-repeat padding-box;
	opacity: 1;
	backdrop-filter: blur(21px);
	-webkit-backdrop-filter: blur(21px);
	display: none;
}
.aviso .contenido{
	margin: 100px;
	overflow: scroll;
	overflow-y: auto;
	height: calc(100vh - 200px);
	background: #0091D9;
	box-sizing: border-box;
	opacity: 1;
	z-index: 101;
	color: #FFFFFF;
	font-family: Montserrat-Bold;
	position: relative;
	font-size: 16px;
}
.aviso .contenido .texto{
	padding: 30px;
	opacity: 1;
	position: relative;
}
.closeSlider{
	position: fixed;
	width: 50px;
	height: 50px;
	right: 75px;
	top: 75px;
	color: black;
	background-color: white;
	z-index: 102;
	border-radius: 25px;
}
.closeSlider:after{
	position: relative;
	content: '\2718';
	display: block;
	margin-left: auto;
	margin-right: auto;
	font-size: 30px;
	text-align: center;
	padding-top: 10px;
	box-sizing: border-box;
}

@media (max-width:900px){
	.redes{
		width: 40px;
	}
	.redes .red{
		width: 40px;
		height: 40px;
		font-size: 18px;
		padding-left: 12px;
		padding-top: 12px;
	}

	.aviso .contenido{
		margin: 30px;
		height: 100vh;
	}
	.closeSlider{
		right: 5px;
		top: 5px;
	}
}
