@charset "utf-8";
/* CSS Document */

@font-face {
    font-family: 'Century';
    src: url('/assets/css/fonts/Century.woff2') format('woff2'),
         url('/assets/css/fonts/Century.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


body {
    background-color: #231f20;
    background-image: linear-gradient(rgba(35, 31, 32, .5), rgba(35, 31, 32, .5)), url(/assets/images/bg.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: #231f20;
    text-align: left;
    font-family: 'Century';
}

h1, h2, h3, h4 {
    text-shadow: 1px 1px 2px rgba(223, 157, 9, .5);
}

p {
    text-align: left;
}

.header {
    position: relative;
    margin: 2rem auto 1rem auto;
    text-align: center;
}

.header-stripe {
    position: absolute;
    margin: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(246, 178, 24);
    height: 60%;
    width: 100%;
    z-index: -1;
}

.content {
	background-color: rgba(255, 255, 255, .9);
	padding: 1rem;
    margin: 1rem auto;
    box-shadow: 2px 2px 4px rgba(33, 37, 41, .5);
    margin-bottom: 2rem;
    width: 90%;
}

img.img-icon:hover {
    filter:drop-shadow(0px 0px 1px #f6b218);
}

img.img-filler {
    float: none;
	margin: 0 auto 1rem auto; 
    box-shadow: 2px 2px 4px rgba(33, 37, 41, .5);
	border: thin solid black;
}

@media (min-width: 768px) {
    img.img-filler {
        max-width: 45%;
        float: right;
        margin-left: 1rem;
        margin-bottom: 0;
	}
}

.btn {
    box-shadow: 2px 2px 4px rgba(33, 37, 41, .5);
    font-family: Calibri, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.15rem;
}

.contact {
    background-color: #f6b218;
}

.bg-container {
    margin-top: 1rem;
    padding: 3rem 0;
    background-color: rgba(246, 178, 24, .75);
}

.inner-border {
	border: .25rem solid rgba(255, 255, 255, .9);
	box-shadow: inset 0 0 0 .25rem rgba(223, 157, 9, .9);
	box-shadow: border-box;
	border-radius: .5rem !important;
}

.bg-container .bg-container-inner {
    position: relative;
    padding: 2rem;
    margin: .5rem auto;
    background-color: rgba(255, 255, 255, .9);
    
}

.doc-icon {
    text-align: center;
    margin: 0 auto;
    font-size: 5rem;
    line-height: 5rem;
}

.doc-icon-pdf {
    color: #e03e1a;
}

.doc-icon-pdf:hover {
    color: #fa0f00;
    text-decoration: none;
}

address {
	margin: 0 auto;

}

.footer-fix {
	height: 5rem;
}

@media (max-width: 576px) {
    .footer-fix {
			height: 6rem;
	}
}

.footer {
    margin-top: 5rem;
	position: fixed;
	left: 0;
	right: 0;
    bottom: 0;
	width: 100%;
	padding: 1rem;
    color: #231f20;
	background-color: #df9d09;
	text-align: center;
	font-size: .75rem;
}

.error-message {
    font-family: 'Courier New', Courier, monospace;
    text-align: left;
}



