/**************************
Fonts
**************************/
/* Open Sans - Primary */
@font-face {
    font-family: "OpenSans";
    src: url("../fonts/OpenSans-Light.eot"); /* IE9 Compat Modes */
    src: url("../fonts/OpenSans-Light.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
        url("../fonts/OpenSans-Light.otf") format("opentype"), /* Open Type Font */
        url("../fonts/OpenSans-Light.svg") format("svg"), /* Legacy iOS */
        url("../fonts/OpenSans-Light.ttf") format("truetype"), /* Safari, Android, iOS */
        url("../fonts/OpenSans-Light.woff") format("woff"), /* Modern Browsers */
        url("../fonts/OpenSans-Light.woff2") format("woff2"); /* Modern Browsers */
    font-weight: 200;
    font-style: normal;
}
@font-face {
    font-family: "OpenSans";
    src: url("../fonts/OpenSans-Semibold0.eot"); /* IE9 Compat Modes */
    src: url("../fonts/OpenSans-Semibold0.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
        url("../fonts/OpenSans-Semibold0.otf") format("opentype"), /* Open Type Font */
        url("../fonts/OpenSans-Semibold0.svg") format("svg"), /* Legacy iOS */
        url("../fonts/OpenSans-Semibold0.ttf") format("truetype"), /* Safari, Android, iOS */
        url("../fonts/OpenSans-Semibold0.woff") format("woff"), /* Modern Browsers */
        url("../fonts/OpenSans-Semibold0.woff2") format("woff2"); /* Modern Browsers */
    font-weight: 600;
    font-style: normal;
}
/* Gothan - Secondary */
@font-face {
    font-family: "Gotham";
    src: url("../fonts/Gotham-Medium.eot"); /* IE9 Compat Modes */
    src: url("../fonts/Gotham-Medium.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
        url("../fonts/Gotham-Medium.otf") format("opentype"), /* Open Type Font */
        url("../fonts/Gotham-Medium.svg") format("svg"), /* Legacy iOS */
        url("../fonts/Gotham-Medium.ttf") format("truetype"), /* Safari, Android, iOS */
        url("../fonts/Gotham-Medium.woff") format("woff"), /* Modern Browsers */
        url("../fonts/Gotham-Medium.woff2") format("woff2"); /* Modern Browsers */
    font-weight: 500;
    font-style: normal;
}


/**************************
Variable
**************************/
:root {
	--primary-color: #f58426;
	/* --secondary-color: ;
	--tertiary-color: ;
	--quaternary-color: ;
	--quinary-color: ;
	--senary-color: ;
	--septenary-color: ;
	--octonary-color: ;
	--nonary-color: ; */
	--color-black: #000;
    --color-white: #fff;
    --primary-font: "OpenSans";
    --secondary-font: "Gotham";
	--transition-t2s-all: all 0.2s ease-in-out 0s;
	--transition-t3s-all: all 0.3s ease-in-out 0s;
}

/**************************
Scrollbar
**************************/
body::-webkit-scrollbar {
	width: 13px;
}
body::-webkit-scrollbar-track {
	background-color: #ebebeb;
}
body::-webkit-scrollbar-thumb {
	background-color: var(--secondary-color);
}

/**************************
Selection
**************************/
::-moz-selection {
	background-color: #bfdcea;
}
::selection {
	background-color: #bfdcea;
}

/**************************
Box Model
**************************/
*,
*:before,
*:after {
	box-sizing: border-box;
}

/**************************
Typography
**************************/
html {
	font-size: 19px;
}
body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-family: var(--primary-font);
	font-size: 1em;
	line-height: 1.3; /* 20.8px */
	font-weight: 600;
	color: var(--color-white);
}
h1 {
    font-weight: 200;
	font-size: 52px;
	line-height: 62px;
}
h2 {
	font-size: 28px;
	line-height: 32px;
}
h3 {
	font-size: 24px;
	line-height: 30px;
}
h4 {
	font-size: 22px;
	line-height: 27px;
}
h5 {
	font-size: 16px;
	line-height: 16px;
}
h6 {
    font-weight: 600;
	font-size: 19px;
    line-height: 23px;
    color: var(--primary-color);
}
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 0.75em;
}
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
	padding-top: 0;
	margin-top: 0;
}
p {
    font-size: 33px;
	line-height: 40px;
	margin-bottom: 22px;
}
span {
	color: inherit;
}
b,
strong {
	color: inherit;
	font-weight: 700;
}
dfn,
cite,
em,
i {
	font-style: italic;
	color: inherit;
}
sup,
sub {
	font-size: 12px;
	font-size: 1.1rem;
	height: 0;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	bottom: 9px;
}
sub {
	top: 3px;
}
small {
	font-size: 80%;
}
big {
	font-size: 125%;
}
blockquote {
	margin-left: 0;
	padding: 0 0 0 1rem;
}
blockquote > p,
blockquote > cite {
	margin: 0 0 0;
}
blockquote,
q {
	quotes: none;
}
blockquote:after,
blockquote:before,
q:after,
q:before {
	content: "";
	content: none;
}
abbr, /* abreviatura */
acronym /* abreviatura */ {
	border-bottom: 1px dotted;
	cursor: help;
}
hr {
	background-color: var(--primary-color);
	border: 0;
	height: 1px;
}

/* Link */
a {
	text-decoration: none;
	color: inherit;
	transition: var(--transition-t3s-all);
}
a:link,
a:visited,
a:hover,
a:active {
	outline: none;
}

/* Lists */
ul,
ol {
	list-style-type: none;
	padding: 0;
	margin: 0;
}
ul:first-child,
ol:first-child {
	margin-top: 18px;
}
li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}
li {
    font-family: var(--secondary-font);
    line-height: 1;
    font-weight: 500;
	margin-bottom: 4px;
	padding-left: 0;
}
dl {
	margin: 0 0 26px;
}
dt {
	font-weight: 700;
}
dd {
	margin: 0 0 0 26px;
}

/**************************
Images
**************************/
img {
	max-width: 100%;
	height: auto;
}
figure {
	margin: 0;
}
video {
	max-width: 100%;
}

/**************************
Tabla
**************************/
table {
	border-collapse: collapse;
	border-spacing: 0;
	max-width: 100%;
	width: 100%;
}

/**************************
Forms
**************************/
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	background-color: #fff;
	border: 1px solid #e0dfdf;
	color: #555;
	display: block;
	font-size: 1em;
	font-weight: normal;
	line-height: 1.2em;
	padding: 0.5em 0.5em;
	width: 100%;
	border-radius: 3px;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	outline: none;
}
textarea {
	box-sizing: border-box;
	display: block;
	width: 100%;
	max-width: 100%;
	resize: none;
}
select {
	max-width: 100%;
}
input[type="radio"],
input[type="checkbox"] {
	margin-right: 0.5em;
}
button[type="button"],
button[type="submit"],
input[type="button"],
input[type="submit"] {
	cursor: pointer;
	display: inline-block;
	font-size: 1em;
	font-weight: normal;
	line-height: 1;
	padding: 1em 2em;
	text-shadow: none;
	border-radius: 3px;
	transition: all 0.2s ease-in-out;
}

button:hover,
button:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
	background: color;
}

/**************************
Style Global
**************************/
.container {
    max-width: 1200px;
    width: 100%;
    padding: 0 10px;
    margin: 0 auto;
}

/**************************
Style
**************************/
main {
    background-image: url('../img/hero.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.sorry {
    height: 100vh;
    display: flex;
    align-items: center;
}
h1 {
    padding-top: 10px;
    padding-bottom: 28px;
    position: relative;
}
h1:after {
    content: '';
    display: inline-block;
    background-color: var(--color-white);
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
}
p {
    max-width: 792px;
}
.sorry h6 {
    margin-bottom: 4px;
}
.info ul {
    margin-top: 4px;
}
.characteristics {
    max-width: 426px;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    margin-top: 22px;
}
.characteristics li {
    max-width: 84px;
    width: 19.7183098592%;
}
.characteristics li:not(:last-child) {
    margin-right: 7.0422535211%;
}
.characteristics figure {
    text-align: center;
}
.characteristics figcaption {
    font-size: 9px;
    line-height: 11px;
}

/**************************
Media Queries
**************************/
@media screen and (max-width: 768px) {
    html {
        font-size: 16px;
    }
    h1 {
        font-size: 38px;
        line-height: 45px;
    }
    p {
        font-size: 24px;
        line-height: 29px;
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 30px;
        line-height: 30px;
        padding-bottom: 18px;
        margin-bottom: 10px;
    }
    p {
        font-size: 18px;
        line-height: 20px;
        margin-bottom: 12px;
    }
    .characteristics li {
        width: 72px;
    }
    .characteristics li:not(:last-child) {
        margin-right: 4px;
    }
    .characteristics figcaption {
        font-size: 7px;
        line-height: 9px;
    }
    .info li span {
        display: block;
    }
}