@charset "utf-8";
#header {
	width: 80%;
	padding-left: 10%;
	padding-right: 10%;
	background-color: #fff;
	border-bottom: 1px solid #d5542d;
	vertical-align:bottom;
	height:125px;
}


#container {
	background-color: #FFF;
	clear: both;
	width: 80%;
	margin-right: 10%;
	margin-left: 10%;
	border-bottom:1px #000;
	
}

#content {
	width: 100%;
	background-color:#e6e6e6;
}

#content-left {
	width: 50%;
	float: left;
	
}

#content-right {
	width: 50%;
	float: right;
}


#footer {
	clear: both;
	width: 80%;
	padding-left: 10%;
	padding-right: 10%;
	background-color: #fff;
	border-top-width: thin;
	border-top-style: solid;
	border-top-color: #d5542d;
	
}

#nav {
	text-align: right;
	width: 100%;
}

a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */

a:link {
	color: #d5542d;
	text-decoration: none; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}

a:visited {
	color: #d5542d;
	text-decoration: underline;
}

a:hover   { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
	color: #d5542d;
}

ul.bullet {
	list-style-image:url(../images/bullet.png);
	font-family: Verdana, Geneva, sans-serif;
	list-style-position:inside;
	alignment-baseline:middle;
	vertical-align: middle;
	font-size:12px;
	margin-right: auto;
	padding-bottom: 10px;
	color: #242337;
	text-align: left;
	line-height: 1.3;
}
	

.h1 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 20px;
    font-variant: small-caps;
	font-weight: bold;
	text-align: left;
	color:#000;
}

.h3 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #d5542d;
	text-align: right;
	font-weight: bold;
}

.h2 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 18px;
	font-weight: 400;
	text-align: center;
	color: #000;
}

.text {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 13px;
	margin-right: auto;
	padding-bottom: 10px;
	color: #000;
	text-align: left;
}

.copyright {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 8px;
	margin-right: auto;
	padding-left:20px;
	padding-bottom: 10px;
	color: #000;
	text-align: right;
}

.img{
	border: 3px solid #000;
	margin-right: 0px;
	margin-left: 0px;

}

.btn {
    background-color: #d5542d;
    color: white;
    font-size: 16px;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    text-align: center;
}

.responsive {
    height: auto;
	width: 100%;
}

.btn:hover {
    background-color: black;
}

/* Container holding the image and the text */

.container-image {
	width: 100%;
    height: auto;
    position: relative;
    text-align: center;
    color: white;
}

.container-image:hover {
  opacity: .5;
}

/* Centered text */
.centered {
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	background: rgba(0, 0, 0, 0.5); /* Black see-through */
	font-family: Verdana, Geneva, sans-serif;
	text-transform: uppercase;
	font-size: 18px;
	font-weight: 800;
	color: #fff;
	text-shadow: 3px 2px #000;
}

.column {
  float: left;
  width: 32.3%;
  padding: 5px;
  align-content:center;
  margin:auto;
}

/* Clear floats after image containers */
.row::after {
  content: "";
  clear: both;
  display: table;
}

