/* ==========================================================================
   DOCUMENT INFORMATION
   - Document: FTI_Theme
   - Version:  1.0.0
   - Client:   Ferrara Transportation, Inc.
   - Author:   Robert Cowick
   ========================================================================== */





/* ==========================================================================
   GLOBAL STYLES
   ========================================================================== */

html,
body {
	width: 100%;
	height: 100%;
	max-width: 100vw;
}

body {
	font-family: 'Open Sans', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Roboto', sans-serif;
}

h2 {
    letter-spacing: 2px;
}

h4 {
	text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

a,
a:visited {
	color: inherit !important;
	text-decoration: none !important;
	transition: all 0.5s;
}

a:hover,
a:active {
	color: red !important;
	text-decoration: none;
}

a.active a {
	color: white !important;
	text-decoration: none;
}

hr.divider {
	border: 0;
	background: #ff0000;
	color: #ff0000;
	height: 6px;
	width: 100%;
	max-width: 80px;
	margin: 30px 0;
}

section {
	padding: 30px 0;
}

.bg-white {
	background-color: #ffffff;
	color: #000000;
}

.bg-black {
	background-color: #000000;
	color: #ffffff;
}

.fa.text-primary {
	color: #000000;
}

.fa.fa-inverse {
	color: #ff0000;
}





/* ==========================================================================
   FORMS
   ========================================================================== */

.form-control {
	padding: 6px 12px;
	display: block;
	width: 100%;
	font-size: 1em;
	line-height: 1.42857143;
	color: #555555;
	background-color: #ffffff;
	background-image: none;
	border: 2px solid #000000;
	border-radius: 0px;
	-webkit-box-shadow: none;
	box-shadow: none;
	-webkit-transition: none;
	-o-transition: none;
	transition: none;
	resize: none;
	transition: all 0.5s;
	min-height: 40px;
	height: auto;
}

.form-control:focus {
	border-color: #ff0000;
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

p.message {
    background: #ffeca4;
    border: 1px solid #f16702;
    padding: 1em;
    width: 444px;
	margin: 0 auto;
}





/* ==========================================================================
   BUTTONS
   ========================================================================== */

/* .BTN */
.btn {
	border: 5px solid;
	border-radius: 0px;
	font-size: 0.8em;
	letter-spacing: 2px;
	text-transform: uppercase;
	transition: all 0.5s;
}

/* .BTN-DEFAULT */
.btn-default {
	border: 5px solid #ff0000;
	background-color: transparent;
	color: #ffffff;
	padding: 15px 40px;
}

.btn-default:hover,
.btn-default:focus {
	border: 5px solid #ffffff;
	background-color: transparent;
	color: white;
}

/* .BTN-PRIMARY */
.btn-primary {
	border: 5px solid #000000;
	background-color: transparent;
	color: #ff0000;
	padding: 14px 40px;
}

.btn-primary:hover,
.btn-primary:focus {
	border: 5px solid #ff0000;
	background-color: transparent;
	color: #000000;
}

/* .BTN-LG */
.btn-lg {
	font-size: 1em;
	padding: 14px 20px;
}

.btn-nav-down {
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    border: 4px solid;
    border-color: #ffffff;
    border-radius: 0;
    padding: 8px 8px;
    letter-spacing: normal;
    color: white;
    margin: 0;
    z-index: 100;
}
.btn-nav-down:hover {
    color: red;
    border-color: red;
}
.btn-nav-down .fa {
    font-weight: bold;
}





/* ==========================================================================
   HEADER
   ========================================================================== */

header {
    display: table;
    width: 100%;
    height: 100%;
    background: #000 url('../img/bg-header.jpg') center bottom no-repeat;
	color: #ffffff;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}

.overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background-color: rgba(0,0,0,0.7);
}
.head-intro {
    width: 740px;
    max-width: 100%;
    /*margin: 30px 0 0;
    padding: 0 30px 0;*/
}

.head-content {
    margin: 30px 0;
}

.head-bottom {
    display: block;
    position: absolute;
    max-width: 100%;
    bottom: 0;
    text-align: left;
    box-sizing: border-box;
    margin: 0 0 30px;
    /*padding: 0 30px 0;*/
}





/* ==========================================================================
   CAREERS SECTION
   ========================================================================== */

.career-col {
	margin: 30px 0;
}
.positions li {
	color: red;
	font-weight: 700;
	letter-spacing: 1px;
}
.positions li .fa {
	margin-right: 10px;
}





/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */

.contact-col:hover {
	color: red;
}

#contact form {
	margin-top: 30px;
}





/* ==========================================================================
   FOOTER
   ========================================================================== */

footer {
	padding: 30px 0;
	text-align: center;
}

.copyright {
	color: red;
}

footer img {
	margin: 20px auto 0;
}




/* ==========================================================================
   MEDIA QUERIES
   ========================================================================== */

@media (min-width:992px) {

	/* === CAREERS SECTION === */
	.career-col {
		height: 200px;
		position: relative;
		display: block;
		text-align: center;
	}
	.center {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	.vertical-center {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
	}
	#careers hr.divider {
		margin-bottom: 0;
	}

	/* === FOOTER === */
    footer {
        text-align: left;
    }
    footer img {
        margin: 0;
        float: right;
    }

}
