/* ----------------------------------------------- */
/* BASIC SETUP */
/* ----------------------------------------------- */

html,
body {
    background-color: #ffffff;
    color: #444444;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 1.12rem;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

.section {
	clear: both;
	padding: 0px;
	margin: 0px;
}

p { line-height: 1.4; margin: 20px 0px; }

h1 {
    font-size: 125%;
    font-weight: 700;
    color: #333333;
    font-stretch: condensed;
}

.bld {
    font-weight: 700; 
    color: #333333;
}

a:link, a:visited {
    color: #000000;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}

a:hover, a:active { color: #e47911; }

/* ----------------------------------------------- */
/* GRID COMPONENTS */
/* ----------------------------------------------- */

.section-main { padding: 50px 20px 50px 20px; }

.row {
    zoom: 1; /* For IE 6/7 (trigger hasLayout) */
    max-width: 1152px;
    margin: 2.5% auto 0px auto;
    padding-left: 20px;
    padding-right: 20px;
}

.row:before,
.row:after {
    content: "";
    display: table;
}

.row:after { clear: both; }

.col {
	display: block;
	float:left;
	margin: 0px 0px 0px 5%;
}

.col:first-child { margin-left: 0px; }

.span-1-of-2 { width: 47.5%; }

.centered { text-align: center; }

/* ----------------------------------------------- */
/* BUTTON */
/* ----------------------------------------------- */

.btn:link,
.btn:visited {
    text-align: center;
    border-radius: 10px;
    transition: background-color 0.5s;
    display: inline-block;
    text-decoration: none;
    padding: 10px 25px 10px 25px;
    color: #ffffff;
    background-color: #e47911;
    border: 1px solid #e47911;
    margin-top: 3%;
}

.btn:hover,
.btn:active {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #000000;
}

/* ----------------------------------------------- */
/* MEDIA QUERIES */
/* ----------------------------------------------- */

@media only screen and (max-width: 799px) {
    body { font-size: 1.06rem; }
    .col { margin: 0px 0px 2.5% 0px; }
    .span-1-of-2 { width: 100%; }
    p {text-align: left; }
}

@media only screen and (max-width: 479px) {
    .row {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media only screen and (max-width: 399px) {
    body { font-size: 1rem; }
}