@font-face{
    font-family: Overpass;
    src: url('Overpass-Light.ttf');
}
@font-face{
    font-family: Overpass-Bold;
    src: url('Overpass-Bold.ttf');
}
@import url(https://fonts.googleapis.com/css?family=Roboto);

/* CSS RESET FOR BROWSER COMPATIBILITY */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 20px;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
    color: #222;
	line-height: 1;
}
ol, ul {
	list-style: none;
    list-style-type: none;
    
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* END CSS RESET */

* {
    box-sizing: border-box;
}
.container{
    margin-left: auto;
    margin-right: auto;
    max-width: 1500px;
}

.container:after, .row:after, .page:after{
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

.grid-2{width:49%;}
.grid-3{width: 33%;}
.grid-4{width: 24%;}

[class*="grid-"]{
    display: inline-block;
    vertical-align: top;
    padding: 30px;
}
.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}

.col-4-single{width: 33.33%;}

[class*="col-"] {
    float: left;
    padding: 30px;
}
[class*="col-"] img{
    width: 100%;
}
.fullpage{
    height: 100vh;
}
[id*="page-"]{
    padding: 5em 0em;
}
.row{
    clear: both;   
}
.vertical-center{
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
.center-text{text-align: center;}
.left-text{text-align: left;}
.right-text{text-align: right;}
.justify-text{text-align: justify;}
.white{color: white;}
.center{
    margin-right: auto;
    margin-left: auto;
}
.hidden{display: none;}
.circle-images img{
    border-radius: 50%;
    padding: 0%;
    margin-bottom: 2em;
    border: 2px solid #555;
    transition: padding .25s;
}
.circle-images img:hover{
    padding: 10%;
}
body{
	background: #eee;
    font-family: 'Overpass', 'Helvetica', 'Arial', sans-serif;
}

h1{
    font-family: 'Overpass-Bold', sans-serif;
    font-size: 5em;
    text-align: center;
}
h2{
    font-size: 2em;
    text-align: center;
}
h3{
    font-family: 'Overpass-Bold', sans-serif;
    font-size: 3em;
}
p, blockquote{
    font-size: 1.2em;
    line-height: 150%;
    padding-bottom: 1.2em;
}
.button {
    background: #7398cf;
    color: #eee;
    padding: 1em;
    text-decoration: none;
    transition: background .25s;
    cursor: pointer;
}

.button:hover {
    background: #6483b3;
}

#logo {
	width: 100%;
	text-align: center;
}

#logo img {
	width: 50%;
}
#logowrapper{
    padding: 3em 0em;
    background:rgba(238,238,238,0.75);
}

.yellow-tint {
    background: rgba(237,188,100,0.7);
    height: 100vh;
}

.more{
    font-family: 'Roboto', sans-serif;
    font-size: 2em;
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 1em;
    max-width: 50%;
}
.more a{
    text-decoration: none;
    color: #eee;
}

.page{
    padding: 5em 0em 3em;
}
.textured-background{
    background-color: #222;
    background-image: url("../img/bread%20texture.png");
    color: #eee;
    margin-left: auto;
    margin-right: auto;
    padding-top: 2em;
    padding-bottom: 5em;
}
.form-container{
    margin-left: auto;
    margin-right: auto;
}
.form-container input, .form-container textarea{
    width: 100%;
    border: none;
    padding: 0.5em;
    font-size: 1.2em;
    font-family: "Overpass", sans-serif;
    resize: none;
}

input[type="submit"]{
    font-family: 'Roboto', sans-serif;
    font-size: 2em;
    padding: 0.5em;
    cursor: pointer;
}

blockquote{
  display:block;
  padding: 15px 20px 15px 45px;
  margin: 0 0 20px;
  position: relative;
}

blockquote::before{
  content: "\201C"; /*Unicode for Left Double Quote*/
    font-size: 5em;
  position: absolute;
  left: 10px;
  top:5px;
}
.vertical-center-parent {
    position: relative;
}

.vertical-center-child {
    position: absolute;
    width: 66.66%;
    padding: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.major-quote-credit{
    font-style: italic;
    text-align: right;
}
#downarrow, #rightarrow{
    cursor: pointer;
    color: #222;
    transition: opacity .25s;
}
#downarrow{
    background-color: #edbc64;
}
#rightarrow{
    background-color: #7398cf;
}

#downarrow:hover, #rightarrow:hover{
    opacity: 0.75;
}
#downarrow img, #rightarrow img{
    max-width: 25%;
}
#rightarrow img{
    transform: rotate(-90deg);
}
.hide-on-desktop{
    display: none;
}
.hide-on-mobile{
    display: block;
}

a{
    color: #7398cf;
    transition: color .25s;
    text-decoration: none;
}

a:hover{
    color: #6483b3;
}

.menu{
    font-family: 'Roboto', sans-serif;
    font-size: 2em;
    text-align: center;
    padding: 1em;
    text-decoration: none;
}
.black-overlay{
    background: rgba(0, 0, 0, .33);
    height: 100%;
    width: 100%;
    position: relative;
}
.description-container{
    height: 500px;
    margin-bottom: 2em;
}
.description-container .black-overlay{
    padding: 0em 15em;
}
.description-container p{
    font-size: 2em;
    padding-bottom: 0em;
}
.description-container p img{
    height: 1em;
}
@media only screen and (max-width: 1280px){
    .vertical-center-parent{
        position: static;
    }
    .vertical-center-child{
        position: static;
        padding: 0px;
        width: 100%;
        top: 0%;
        transform: translateY(0%);
    }
    .description-container .black-overlay{
        padding: 0em 7em;
    }
}
@media only screen and (max-width: 768px) {
    [class*="col-"]{
        width: 100%;
    }
    [class*="grid-"]{
        width: 100%;   
    }
    .col-1, .col-2, .col-3, .col-4 {
        width: 50%;
        text-align: center;
    }
    .col-4-single{
        width: 50%;
        float: none;
        margin-left: auto;
        margin-right: auto;
    }
    .responsive-row{
        clear: both;
    }
    .hide-on-mobile{
        display: none; 
    }
    .hide-on-desktop{
        display: block;   
    }
    #logo img{
        width: 75%;
    }
    #breadicon{
        width: 50%;
    }
    .description-container p{
        line-height: 1.2em;
    }
    .description-container .black-overlay{
        padding: 0em 3em;
    }
}
@media only screen and (max-width: 492px) {
    .more{
        max-width: none;
        width: 80%;
    }
    .col-1, .col-2, .col-3, .col-4 {width: 100%;}
    .col-4-single{
        width: 100%;
    }
    h1{
        font-size: 3em;
    }
    h2{
        font-size: 1.5em;
    }
    .form-container input, .form-container textarea{
        width: 100%;
        border-radius: 0px;
    }
    .description-container p{
        font-size: 1.5em;
    }
}

