/*
_______________________________
Desktop version layout - place your custom code here */

@font-face {
  font-family: 'ModeratReg';
  src: url('/fonts/Moderat-Regular.eot'); /* IE9 Compat Modes */
  src: url('/fonts/Moderat-Regular.woff2') format('woff2'); /* Super Modern Browsers */
  src: url('/fonts/Moderat-Regular.woff') format('woff'); /* Pretty Modern Browsers */
}


body {
background-color: #efefef;

font-family: 'ModeratReg', Futura, sans-serif;
Font-size:20px;
color:#111111;
}

h1 {
font-family: 'ModeratReg', Futura, sans-serif;
Font-size:47.25px;
}

h2 {
font-family: 'ModeratReg', Futura, sans-serif;
Font-size:47.25px;
}

h3 {
font-family: 'ModeratReg', Futura, sans-serif;
Font-size:20px;
}

h4 {
font-family: 'ModeratReg', Futura, sans-serif;
Font-size:20px;
}


a {
color:#111111;
text-decoration: underline;
}

a:link {
color:#111111;
text-decoration: underline;
}

a:visited {
color:#111111;
text-decoration: underline;
}

a:hover {
color:#2172ff;
text-decoration: underline;
}

#navigation a {
color:#111111;
text-decoration: none;
}

#navigation a:link {
color:#111111;
text-decoration: none;
}

#navigation a:visited { 
text-decoration: none;
}

#navigation a:hover {
color:#2172ff;
text-decoration: none;
}

#hidden a {
color:#cccccc;
text-decoration: none;
}

#hidden a:link {
color:#cccccc;
text-decoration: none;
}

#hidden a:visited { 
text-decoration: none;
}

#hidden a:hover {
color:#2172ff;
text-decoration: none;
}

.sticky {
z-index: 0;
position: fixed !important;
}

.footer {
position: fixed !important;
bottom: 0px;
}

.hover-title {
    display: inline;
    pointer-events: auto;
    cursor: pointer;
}

.hover-image {
    visibility: hidden;
}

body:not(.mobile) .hover-title:hover + .hover-image {
    visibility: visible;
    pointer-events: none;
}

.hover-image {
    display: flex;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;

/* Change width and height to scale images */
    width: 90vw;
    height: 90vh;
}

.hover-image img {
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    margin-bottom: 0;
}


/*
_______________________________
Mobile version - preset code from cssgrid.net */

@media handheld, only screen and (max-width: 767px) {

	.examplecontainer {}

	body {}

	h1, h2, h3, p {
	Font-size:1em;
	}

	
	.sticky {
	z-index: auto;
	position: relative;
	}

	.footer {
	position: auto;
	bottom: auto;
	}
	
}


/*
_______________________________
Provide higher res assets for iPhone 4 - preset code from cssgrid.net */

@media only screen and (-webkit-min-device-pixel-ratio: 2) { 

	/* An example of how to override an image with one twice the size for iPhone 4. Specify the original pixel size with background-size.
	.download {
	background: url(../img/downarrow@2x.png) no-repeat;
	background-size: 27px 28px;
	}
	*/

}