.post@import url(http://fonts.googleapis.com/css?family=Alice);
/*Layout*/
.site-title a {
	text-decoration:none;
}

.constrain-70 {
    display: block;
    width: 70%;
    margin: 0 auto;
}

.constrain-50 {
    display: block;
    width: 50%;
    margin: 0 auto;
}

.constrain-40 {
    display: block;
    width: 40%;
    margin: 0 auto;
}

.constrain-45 {
    display: block;
    width: 45%;
    margin: 0 auto;
}

.pull-right {
    float: right;
    margin: 20px;
    margin-right: -140px;
}

.pull-left {
    float: left;
    margin: 20px;
    margin-left: -140px;
}

.thumbnail {
    width: 380px;
}

.top-underlay {
    position: relative;
    background-color: #000;
    background-image: url(../images/about-1.jpg);
    background-size: cover;
    background-position: center top;
    height: 100%;
    min-height: 900px;
    width: 100%;
    height: auto;
}

.top-overlay {
    position: absolute;
    display: block;
    bottom: 0px;
    padding-bottom: 5%;
    padding-top: 20px;
    background: #000;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(100%, rgba(0, 0, 0, 1)));
    
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    
    background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000', GradientType=0);
}

.fixed-scroll-bg {
    position: relative;
    min-height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    height: 650px;
    z-index: 1;
    background-image: url("../images/about-2.jpg");
}

.sticky {
    display: block;
    border-bottom: 1px solid #eee;
    width: 100%;
    padding: 20px 0px;
    text-align: center;
    background-color: #fff;
}

.sticky a {
    padding: 5px 10px;
    margin: 0 5px;
}

.sticky a:hover {
    background-color: #25508d;
    text-decoration: none;
    border-radius: 4px;
    color: #fff;
}

.video-view {
    background-color: #000;
    background-image: url(../images/video-bg.png);
    padding: 40px;
    padding-top: 20px;
}

.video-view h1 {
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
}

.videoWrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    
    padding-top: 25px;
    height: 0;
}

.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/*Text*/

h1 {
    font-weight: 600;
    text-transform: uppercase;
}

em {
    font-size: 1.6rem;
    font-weight: 300;
    font-style: normal;
}

.top-overlay em {
    /*text-shadow: 1px 2px #000;  */
}

.center {
    text-align: center;
    margin: 10px;
}

.feature p {
    font-size: 1.2rem;
    line-height: 1.4em;
}

.feature img {
    max-width: 100%;
}

.light {
    color: #fff;
}

.button-large {
    background-color: #25508d;
    max-width: 160px;
    padding: 10px;
    color: #fff;
    display: block;
    margin: 10px auto;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
}

.button-large:hover {
    opacity: 0.8;
    text-decoration: none;
}
/*People*/

.person {
    text-align: center;
    margin: 10px 0;
}
.profile-img {
	margin: 15px auto;
	margin-bottom:15px;
    width: 200px;
    height: 200px;
    border-radius: 100px;
    background-size: cover;
    background-color: #eeeeee;
}
.person .F-img {
    border-radius: 300px;
    background: #eee;
    background-size: cover;
    height: 150px;
    width: 150px;
    margin: 0 auto;
}

.person .name {
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
    clear: both;
}
/*Content Block Styles*/

#history {
    font-family: 'Alice', serif;
    background-color: #f0eadf;
    padding: 20px;
}
/* Chat Bubble */

.chat-bubble {
    position: relative;
    padding: 15px;
    margin: 1em 0 2em;
    color: #000;
    background: #e6e6e6;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.chat-bubble::after {
    content: "";
    position: absolute;
    bottom: -20px;
    /* value = - border-top-width - border-bottom-width */
    
    right: 20px;
    /* controls horizontal position */
    
    border-width: 20px 15px 0;
    /* vary these values to change the angle of the vertex */
    
    border-style: solid;
    border-color: #e6e6e6 transparent;
    /* reduce the damage in FF3.0 */
    
    display: block;
    width: 0;
}
/*Form Styling */

form#request ul {
    padding: 0;
}

form#request ul li {
    line-height: 30px;
    list-style: none;
    padding: 5px 10px;
    margin-bottom: 2px;
    overflow: auto;
}

form#request label {
    float: left;
    font-size: 13px;
    width: 50%;
    padding: 0 5px;
}

form#request fieldset fieldset label {
    background: none no-repeat left 50%;
    line-height: 20px;
    padding: 0 0 0 30px;
    width: auto;
}

form#request fieldset fieldset label:hover {
    cursor: pointer;
}

form#request input:not([type=radio]),
form#request textarea {
    background: #ffffff;
    border: none;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    border-radius: 3px;
    font: italic 13px Georgia, "Times New Roman", Times, serif;
    outline: none;
    padding: 5px;
    width: 50%;
}

form#request input:not([type=submit]):focus,
form#request textarea:focus {
    background: #eaeaea;
}

form#request input[type=radio] {
    float: left;
    margin-right: 5px;
}

form#request fieldset {
    border: none;
    margin-bottom: 10px;
    margin: 0;
    padding: 0;
}

form#request legend {
    text-transform: uppercase;
    font-size: 120%;
    font-weight: 600;
    letter-spacing: 1px;
}

form#request button {
    background: #124b8e;
    border: none;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    -khtml-border-radius: 20px;
    border-radius: 20px;
    color: #ffffff;
    display: block;
    letter-spacing: 1px;
    margin: auto;
    padding: 7px 25px;
    text-transform: uppercase;
    float: right;
}

form#request button:hover {
    background: #1e2506;
    cursor: pointer;
}
/*Front Page Layout*/

.jumbotron-left{
	z-index: 2;
    height: auto;
    width: 25%;
	position:absolute;
	
}
.jumbotron-right {
    float: right;
    width: 100%;
    height: 100%;
    padding: 0 0px;
	z-index:1;
	position:relative;
   /* background: rgba(0, 0, 0, 0);
    background: -moz-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.23) 10%, rgba(0, 0, 0, 0.62) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(10%, rgba(0, 0, 0, 0.23)), color-stop(100%, rgba(0, 0, 0, 0.62)));
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.23) 10%, rgba(0, 0, 0, 0.62) 100%);
    background: -o-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.23) 10%, rgba(0, 0, 0, 0.62) 100%);
    background: -ms-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.23) 10%, rgba(0, 0, 0, 0.62) 100%);
    background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.23) 10%, rgba(0, 0, 0, 0.62) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000', GradientType=1);*/
}

.jumbotron-right img{
	width:100%;
	height:auto;
}
.jumbotron-left-img{
	width:100%;
	height:auto;
	margin-left: 10%;
    margin-top: 25%;
}
.parent_jumbotron{
	width:100%;
	position:relative;
	}
.jumbotron-inner-wrapper {
    width: 85%;
    margin: 0 auto;
    position: relative;
    height: 100%;
}

.jumbotron-logo {
    margin: initial;
    position: absolute;
    top: 98px;
    left: 0;
    bottom: 0;
    right: 0;
    max-height: 400px;
    max-width: 400px;
}

.jumbotron-logo img {
    max-width: 100%;
}

.social {
   margin-left:10%;
   text-align: center;
	width:100%;
}

.social img {
    width: 20%;
}

.front-button {
    display: block;
    border: 3px solid #fff;
    padding: 10px;
    text-align: center;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
   	margin-left: 10%;
	margin-top:5%;
    width: 100%;
    border-radius: 30px;
}

.front-button:hover {
    text-decoration: none;
    background-color: #fff;
    color: #000;
}

@media screen and (max-width: 740px) {
    
	.front-button {
    display: block;
    border: 3px solid #fff;
    padding: 5px;
    text-align: center;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 15%;
    margin-top: 5%;
    width: 130px;
    border-radius: 14px;
}
}



