/*! HTML5 Boilerplate v5.3.0 | MIT License | https://html5boilerplate.com/ */

/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
    color: #fff;
    font-size: 1em;
    line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

body { background:#000 url("../img/background-image-01.jpg") no-repeat center; background-size:cover; color:#fff; font-family:'Gordita', sans-serif; font-size: 18px; font-weight:400; height: 100vh; min-height: 100vh; text-align:center; }
body * { box-sizing:border-box; }

article { display: block; padding: 0 10px; }
article h1 { background:url("../img/benchmarc-logo.svg") no-repeat center; display:block; height:15px; margin:0 auto; width:160px; }

h2 {
	font-size: 24px;
	font-weight: 400;
	line-height: 1.4;
}

a {
	color: #fff;
}
.btn {
	border: 1px solid #fff;
	color: #fff;
	display: inline-block;
	margin: 0 15px;
	line-height: 1;
	padding: 1em;
	max-width: 230px;
	text-decoration: none;
	width: 100%;
	transition: background-color 0.3s ease-out, color 0.3s ease-out;
}
.btn:hover {
	background-color: #fff;
	color: #333;
}

.content-area {
	padding-bottom: 80px;
	padding-top: 80px;
}

.height_100 {
	height: 100%;
}

@font-face {
    font-family: 'Gordita';
    src: url('../fonts/gorditamedium-webfont.eot');
    src: url('../fonts/gorditamedium-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/gorditamedium-webfont.woff2') format('woff2'),
         url('../fonts/gorditamedium-webfont.woff') format('woff'),
         url('../fonts/gorditamedium-webfont.ttf') format('truetype'),
         url('../fonts/gorditamedium-webfont.svg#gorditamedium') format('svg');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Gordita';
    src: url('../fonts/gorditaregular-webfont.eot');
    src: url('../fonts/gorditaregular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/gorditaregular-webfont.woff2') format('woff2'),
         url('../fonts/gorditaregular-webfont.woff') format('woff'),
         url('../fonts/gorditaregular-webfont.ttf') format('truetype'),
         url('../fonts/gorditaregular-webfont.svg#gorditaregular') format('svg');
    font-weight: 400;
    font-style: normal;

}

@media only screen { } /* Define mobile styles */

@media only screen and (max-width: 39.99em) {
	
	.btn:last-child {
		margin-top: 15px;
	}
	
} /* max-width 640px, mobile-only styles, use when QAing mobile issues */

/* Medium screens - min-width 640px */
@media only screen and (min-width: 40em) {
	
	body { height: 100vh; }
	article { display: flex; height: 100vh; padding: 0 40px; }
	
	h2 {
		font-size: 32px;
	}

} @media only screen and (min-width: 40em) and (max-width: 64em) { } /* min-width 641px and max-width 1024px, use when QAing tablet-only issues */

/* Large screens - min-width 1024px */
@media only screen and (min-width: 64em) {

} @media only screen and (min-width: 64em) and (max-width: 90em) { } /* min-width 1025px and max-width 1440px, use when QAing large screen-only issues */

/* XLarge screens - min-width 1440px */
@media only screen and (min-width: 90em) {
	
} @media only screen and (min-width: 90em) and (max-width: 120em) { } /* min-width 1441px and max-width 1920px, use when QAing xlarge screen-only issues */

/* XXLarge screens - min-width 1920px */
@media screen and (min-width: 120em) { }


/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Image replacement
 */

.ir {
    background-color: transparent;
    border: 0;
    overflow: hidden;
    /* IE 6/7 fallback */
    *text-indent: -9999px;
}

.ir:before {
    content: "";
    display: block;
    width: 0;
    height: 150%;
}

/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */

.hidden {
    display: none !important;
    visibility: hidden;
}

/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

/*
 * Hide visually and from screenreaders, but maintain layout
 */

.invisible {
    visibility: hidden;
}