/*NAVBAR SECTION*/
/*Navbar title*/
.navbar-brand {
	font-family: Cabin, Sans-Serif;
}

/* Move down content because we have a fixed navbar that is 3.5rem tall */
/*body {
  padding-top: 3.5rem;
}*/
body {
	padding-top: 0.5rem;
	background-color: #343a40;
}



/*JUMBOTRON SECTION*/
/*Main image*/
.jumbotronimage {
    width: 100%;
    height: auto;
}
/*Main text*/
.display-3 {
	font-size: 50px !important;
	text-align: center;
}

.jumbotron {
	padding-bottom: 20px !important;
}

/*Force square images to be centered and not larger than they should be
https://stackoverflow.com/questions/10591422/bootstrap-carousel-image-doesnt-align-properly */
.carousel-inner img {
	max-height: 600px;
	margin: auto;
}




/*INFO ROWS SECTION*/
.col-md-4 {
	color: white;
}

.footer-area {
	color: white;
}



/*Contact Page*/
/*Container for Contact Form*/
.form-area
{
	margin-top: 20px;
	margin-bottom: 20px;
	background-color: #e9ecef;
	padding: 20px;
	border-radius: 10px;

}


/*About Page*/
.white-background {
	background-color: #e9ecef;
}

.about-image {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 50%;
}


/*Blog Page*/
.line-blog { /*The hr lines between each post*/
	margin-top: 4em;
	margin-bottom: 4em;
}

.blog-title { /*Title of blog entry*/
	margin-bottom: 1em;
}

/*Responsive videos*/
.video-responsive{
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    height:0;
    margin-bottom: 1em;
}
.video-responsive iframe{
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
}




/*Links Page*/
.large-links {
	font-size: 16px;
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 50%;
}