﻿@import url('../icons/css/fontello.css');

.display h1 {
    font-weight: 800;
    font-size: 2.8em;
    line-height:1.4;
    text-transform: uppercase;
}
.display p {
    font-size: 1.5em;
    font-style: italic;
}

#contentarea hr {border:none;border-top: rgba(0, 0, 0, 0.18) 1px solid;margin-top: 2em;margin-bottom: 2em;}
#contentarea img {max-width:100%;}
#contentarea figure {margin:0}
#contentarea b {
	font-weight: 700;
}

#contentarea i {
	font-style: italic;
}

/* FIX: Preventing Chrome from wrapping text with span-style (when editing) */
#contentarea .display h1 span {font-size: 2.8em;line-height:1.4;}
#contentarea .display p span {font-size: 1.5em;line-height:1.7;}
#contentarea h1 span {font-size: 2.37em;line-height:1.7;}
#contentarea h2 span {font-size: 1.83em;line-height:1.7;}
#contentarea h3 span {font-size: 1.39em;line-height:1.7;}
#contentarea h4 span {font-size: 1.1em;line-height:1.7;}
#contentarea h5 span {font-size: 0.98em;line-height:1.7;}
#contentarea h6 span {font-size: 0.85em;line-height:1.7;}
#contentarea p span {font-size: 14px; line-height: 1.7;}
#contentarea li span {font-size: 14px; line-height: 1.7;}


/**********************************
    Grid
***********************************/

@media (min-width: 40rem) {
    #contentarea .column {
        float: left;
        padding-left: 1.3rem; /* 1rem */
        padding-right: 1.3rem;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
    #contentarea .column.full { width: 100%; }
    #contentarea .column.two-thirds { width: 66.7%; }
    #contentarea .column.two-fourth { width: 75%; }
    #contentarea .column.two-fifth { width: 80%; }
    #contentarea .column.two-sixth { width: 83.3%; }
    /*#contentarea .column.half { width: 50%; }*/
    #contentarea .column.third { width: 33.3%; }
    #contentarea .column.fourth { width: 25%; }
    #contentarea .column.fifth { width: 20%; }
    #contentarea .column.sixth { width: 16.6%; }
    #contentarea .column.flow-opposite { float: right; }
}
@media (min-width: 768px) {
	#contentarea .column.half { width: 50%; }
}
.clearfix:before, .clearfix:after {content: " ";display: table;}
.clearfix:after {clear: both;}
.clearfix {*zoom: 1;}


/**********************************
    Elements
***********************************/

#contentarea .center {text-align:center}
#contentarea .right {text-align:right}
#contentarea .left {text-align:left}

#contentarea img.circle {border-radius:500px !important;margin-top:0;}
#contentarea img.bordered {border: #ccc 1px solid;}

#contentarea .embed-responsive {position: relative;display:block;height:0;padding:0;overflow:hidden;}
#contentarea .embed-responsive.embed-responsive-16by9 {padding-bottom: 56.25%;}
#contentarea .embed-responsive.embed-responsive-4by3 {padding-bottom: 75%;}
#contentarea .embed-responsive iframe {position: absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0;}

#contentarea .column > img,
#contentarea .column > figure,
#contentarea .column > .embed-responsive {
    margin-top: 1em;margin-bottom: 1em;
}

#contentarea .list {position:relative;margin:1.5em 0;}
#contentarea .list > i {position:absolute;left:-3px;top:-3px;font-size:2em;}
#contentarea .list > h2, .list > h3 {margin: 0 0 0 50px}
#contentarea .list > p {margin: 0 0 0 50px}

#contentarea .quote {position:relative;margin:1.5em 0;}
#contentarea .quote > i {position: absolute;top: -10px; left: -7px;font-size: 2em;color:rgba(51,51,51,0.44);}
#contentarea .quote > small {margin-left:50px;opacity: 0.7;font-size: 1em;}
#contentarea .quote > p {margin-left:50px;font-size: 1.5em;}

#contentarea .btn {
    padding: 10px 30px;
    font-size: 1.3em;
    line-height: 2em;
    border-radius: 6px;

    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#contentarea .btn.btn-primary {color: #ffffff;background-color: #08c9b9;}
#contentarea .btn.btn-primary:hover {color: #ffffff;background-color: #07b0a2;border-color: #07b0a2;}
#contentarea .btn.btn-default {color: #333333;background-color: #d3d3d3;}
#contentarea .btn.btn-default:hover {color: #111;background-color: #ccc;border-color: #ccc;}

#contentarea .social a > i {text-decoration:none;color:#333;font-size:1.5em;margin:0 5px 0 0;-webkit-transition: all 0.1s ease-in-out;transition: all 0.1s ease-in-out;}
#contentarea .social a:hover > i {color:#08c9b9;}


/**********************************
    Header Image with Caption
***********************************/
#contentarea figure.hdr {
	position: relative;
	width: 100%;
	overflow:hidden;
    background-color: #000;
}
#contentarea figure.hdr img {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
	opacity: 0.8;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
	background-color: #3e4345;
}
#contentarea figure.hdr:hover img {
	opacity: 0.5;
	-webkit-transform: scale(1);
	transform: scale(1);
}
#contentarea figure.hdr figcaption {
   	position: absolute;
	top: auto;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 60%;
	padding: 0 2.5em;
	color: #fff;
	font-size: 1.55em;
	text-align: center;
	box-sizing: border-box;
	z-index:1;
}
/* Text */
#contentarea figure.hdr h2 {
	font-weight: 300;
	text-transform: uppercase;
}
#contentarea figure.hdr h2 span {
	font-weight: 800;
}
#contentarea figure.hdr p {
	letter-spacing: 1px;
	font-size: 68.5%;
	text-transform: uppercase;
}
#contentarea figure.hdr h2, figure.hdr p {
	margin: 0;
	z-index:10000;
}
/* Cosmetic */
#contentarea figure.hdr div {
	height: 100%;
	z-index:0;
}
#contentarea figure.hdr div::before,
#contentarea figure.hdr div::after {
	position: absolute;
	content: '';
}
/* One */
#contentarea figure.one div::before {
	top: 50px;
	right: 30px;
	bottom: 50px;
	left: 30px;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
}
#contentarea figure.one div::after {
	top: 30px;
	right: 50px;
	bottom: 30px;
	left: 50px;
	border-right: 1px solid #fff;
	border-left: 1px solid #fff;
}
/* Two */
#contentarea figure.two div::before {
	top: 30px;
	right: 30px;
	bottom: 30px;
	left: 30px;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
}
#contentarea figure.two div::after {
	top: 30px;
	right: 30px;
	bottom: 30px;
	left: 30px;
	border-right: 1px solid #fff;
	border-left: 1px solid #fff;
}
/* Three */
#contentarea figure.three figcaption {
	height: 70%;
}
#contentarea figure.three p {
	margin: 1em 0 0;
	padding: 2em;
	border: 1px solid #fff;
}
/* Four */
#contentarea figure.four figcaption {
	height: 60%;
	text-align: left;
}
#contentarea figure.four p {
	position: absolute;
	right: 50px;
	bottom: 50px;
	left: 50px;
	padding: 2em;
	border: 7px solid #fff;
}
/* Five */
#contentarea figure.five figcaption {
	height: 100%;
	text-align: right;
}
#contentarea figure.five h2 {
    position: absolute;
    left: 50px;
	right: 50px;
	top: 10%;
	border-bottom: 5px solid #fff;
}
#contentarea figure.five p {
	position: absolute;
	right: 50px;
	bottom: 10%;
}
/* Six */
#contentarea figure.six figcaption {
	height: 70%;
}
#contentarea figure.six h2 {
    padding-bottom: 3%;
	border-bottom: 1px solid #fff;
}
#contentarea figure.six p {
	padding-top: 6%;
}
/* Seven */
#contentarea figure.seven figcaption {
	height: 90%;
	text-align:left;
}
#contentarea figure.seven h2 {
	border-bottom: 3px solid #fff;
}
#contentarea figure.seven p {
    padding-top: 1em;
}
/* Eight */
#contentarea figure.eight figcaption {
	height: 100%;
	text-align: right;
}
#contentarea figure.eight h2 {
	position: absolute;
	left: 50%;
	right: 50px;
	bottom: 10%;
}
#contentarea figure.eight p {
    position: absolute;
    left: 50px;
	right: 50%;
	top: 10%;
	padding-right:0.5em;
	border-right: 1px solid #fff;
}