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,
font,
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 {
	background: transparent;
	border: 0;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}

ol,
ul {
	list-style: none;
}

blockquote {
	quotes: none;
}

blockquote:before,
blockquote:after {
	content: '';
	content: none;
}

a {
	cursor: default;
	color: inherit;
}

.clear {
	display: block;
	clear: both;
	width: 100%;
	height: 0;
	zoom: 1;
}

img {
	display: block;
	pointer-events: none;
	max-width: 100%;
}

.cols {
	width: calc(100% + var(--air));
	margin-left: calc(var(--air) * -.5);
	display: flex;
	justify-content: center;
	align-items: stretch;
	flex-wrap: wrap;
}

.cols .col {
	float: left;
	padding-left: calc(var(--air) * .5);
	padding-right: calc(var(--air) * .5);
	box-sizing: border-box;
	display: flex;
	align-items: stretch;
	justify-content: center;
}

.cols3 .col {
	width: 33.3333%;
}

svg {
	display: block;
	width: 100%;
}

* {
	outline: none;
	box-sizing: border-box;
}

:root {
	--air: 4rem;
	--blanco: #fff;
	--blancorgb: 255, 255, 255;
	--negro: #000;
	--negrorgb: 0, 0, 0;
	--gris: #aaa;
	--grisrgb: 170, 170, 170;
	--gris2: #ddd;
}

::selection {
	background: rgba(var(--negrorgb), .99);
	color: var(--blanco);
	text-shadow: none;
	opacity: 1 !important;
}

::selection a {
	text-decoration: none;
}

html {
	font-size: 62.5%;
}

body {
	font-family: frank-new, sans-serif;
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1.9;
	text-rendering: geometricPrecision;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	transition: var(--duration) ease-out;
	transition-property: background, color, opacity;
	will-change: auto;
	background-color: var(--blanco);
	color: var(--negro);
}

.maxwidth {
	margin-left: auto;
	margin-right: auto;
	max-width: 120rem;
}

.carril--1-2 {
	max-width: 50rem;
}

#wrapper {
	padding: var(--air);
	transition: opacity .5s ease-out;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 100vh;
}

body.loading #wrapper {
	opacity: 0;
}

main {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

main > * {
	width: 100%;
}

a[href] {
	cursor: pointer;
	transition: transform 1s cubic-bezier(.19,1,.22,1);
}

#divisiones {
	margin-top: calc(var(--air) * 2.5);
}

#divisiones a[href]:hover {
	transform: scale(1.07);
}

footer {
	margin-top: calc(var(--air) * 1.5);
}

#divisiones .col > * {
	max-width: 12rem;
	margin: 0 auto;
}

#divisiones .texto {
	transition: opacity .5s ease-out;
}

body.desktop #divisiones .texto {
	opacity: 0;
}

body.desktop #divisiones .col > *:hover .texto {
	opacity: 1;
}

footer {
	text-align: center;
}

@media all and (orientation: portrait) {

	#divisiones {
		margin-top: calc(var(--air) * 1.5);
	}

	.cols3 .col {
		width: 100%;
		padding: 0;
	}

	.cols3 .col + .col {
		padding-top: var(--air);
	}

}
