@import url('https://fonts.google.com/css?family=Lato:400,700');

body{
	overflow-x:hidden;
	font-family: 'Lato', sans-serif;
	color:#505962;
	font-size:1.5rem;
}

.navbar {
	background: rgba(0,0,0,0.6);
}

.navbar-brand img {
	/*height: 5rem;*/
	width:100%;
}

.video-background {
	position: relative;
	width: 100%;
	min-height: 100vh;
	background-color: rgb(0,0,0,0.2);
}

.caption {
	position:absolute;
	bottom:0%;
	width:100%;
	color:#FFF;
}

.caption h1 {
	font-size: 3rem;
	font-weight: 700;
	letter-spacing: .2rem;
	text-shadow: .1rem .1rem .8rem black;
	padding-bottom: 1rem;
}

.caption h3 {
	font-size: 2rem;
	text-shadow: .1rem .1rem .5rem black;
	padding-bottom: 1.6rem;
}

.btn-lg {
	border-width:medium;
	border-radius:0;
	font-size:1.1rem;
	padding: .6rem 1.3rem;
}

.dropdown-menu {
	background: rgba(0,0,0,0.6);
}

.dropdown-item {
	color:#FFF;
}

/* general */

.page-title {
	text-align:center;
	padding-top:150px;
	padding-bottom:50px;
}

/* homepage */

.intro-heading {
	padding-bottom:35px;
}

.parcel-heading {
	text-decoration:underline;
	padding-bottom:25px;
}

.parcel-list {
	margin-left:50px;
}

/* contact form */

.contact-list {
	list-style-type: none;
	font-size:22px;
}

#contact-list li {
	list-style-type:none;
	color:#000000;
}

#contact-list li a {
	color:blue;
}

#contact-list li a:hover, #contact-list li a:focus   {
	color:blue;
	text-decoration:underline;
}



/*============= COURSE SECTION =============*/

.col-md-8 {
  margin: 2rem auto 8rem;
  padding-top: 2rem;
}
.col-md-8 h1 {
    font-size: 2.4rem;
  }
.btn-secondary {
  border-width: medium;
  border-radius: 0;
  padding: .6rem 1.2rem;
  font-size: 1.2rem;
  text-transform: uppercase;
  margin: 1rem;
  border-color: #1EBBA3;
  background-color: #1EBBA3;
  color: white;
}
.btn-secondary:hover,
.btn-secondary:focus {
  border-color: #189582;
  background-color: #189582;
  color: white;
}

@media (max-width: 768px) {


	.caption h1 {
		font-size: 1.4rem;
		letter-spacing: .15rem;
		padding-bottom: .5rem;
	}

	.caption h3 {
		font-size: 1.1rem;
		padding-bottom: 1.2rem;
	}

	.btn-lg {
		font-size:1rem;
		padding: .5rem 1rem;
	}
	
	.page-title {
		text-align:left;
		font-size:1.5rem;
}


}



/*============ BOOTSTRAP BREAK POINTS:

Extra small (xs) devices (portrait phones, less than 576px)
No media query since this is the default in Bootstrap

Small (sm) devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }

Medium (md) devices (tablets, 768px and up)
@media (min-width: 768px) { ... }

Large (lg) devices (desktops, 992px and up)
@media (min-width: 992px) { ... }

Extra (xl) large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }

=============*/