/*
 * HELPERS
 */

.flex{
	display: flex;
	justify-content: space-between;
}
.flex-wrap{
	display: flex;
	flex-wrap: wrap;
}
.flex-around{
	display: flex;
	justify-content: space-around;
}
.flex-center{
	display: flex;
	justify-content: center;
}
.flex-start{
	display: flex;
	justify-content: flex-start;
}
.flex-end{
	display: flex;
	justify-content: flex-end;
}
.flex-col{
	display: flex;
	flex-direction: column;
}
.align-center{
   align-items: center;
}
.align-end{
	align-items: flex-end;
}
.align-start{
	align-items: flex-start;
}

.col , .bottom , .top , .middle{
	width: 100%;
	flex-shrink: 1;
}

.container{
	width: 100%;
	max-width: 890px;
	display: block;
	padding: 0 10px;
	margin: 0 auto;
	box-sizing: border-box;
}

/*
 * [X] HELPERS
 */


/*
 * LOGO & HEADER
 */

header{
  height: 95px;
  width: 100%;
  background: #fff;
}

header h1{
	display: block;
	width: 200px;
  height: 55px;
  text-indent: -99999px;
	background: url(../images/logo.jpg) left center no-repeat;
	background-size: 200px;
}

/*
 * [X] LOGO & HEADER
 */


/*
 * CONTENT
 */

section.about-transition{
  padding: 25px 0;
}

h2{
  font-size: 23px;
  font-weight: normal;
  color: #005495;
	margin-bottom: 10px;
	line-height: 30px;
}

p{
  font-size: 14px;
  font-weight: normal;
	line-height: 17px;
  color: #005495;
	margin-bottom: 10px;
}

strong{
  font-size: 13px;
	font-weight: bold;
	text-transform: uppercase;
}

.col:first-child{
	width: 425px;
	max-width: 100%;
}

.col:last-child{
	width: 210px;
	max-width: 100%;
	background-color: #eaeaea;
}

.col.btn{
	width: 115px;
	max-width: 100%;
	background-color: transparent;
}

.btn-def{
	font-family: 'Open Sans', sans-serif;
	font-size: 13px;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 115px;
	height: 45px;
	cursor: pointer;
	transition-duration: .3s;
	transform: translateZ(0);
	text-transform: uppercase;
	color: #fff;
	border: none;
	border-radius: 3px;
	background-color: #005495;
	text-decoration: none;
}

.btn-def:hover{
	transition-timing-function: ease-out;
	transition-duration: .3s;
	color: #005495;
	background: #ffde17;
}

section.image-bg{
	width: 100%;
	height: 215px;
	background: url(../images/f-bg.jpg) center center no-repeat;
	background-size: cover;
}

/*
 * [X] CONTENT
 */



/*
 * FOOTER
 */

footer{
	height: 75px;
	padding: 0;
    width: 100%;
}

footer p{
	margin-left: 5px;
	color: #656565;
	margin-bottom: 0;
}

footer .col:first-child{
	width: 100%;
	position: relative;
	height: 75px;
	padding-left: 15px;
	background: #eaeaea;
}

footer .col:first-child:after {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 0;
    content: '';
}

footer .col:last-child{
	padding-right: 15px;
	width: 190px;
	height: 75px;
}

footer .col:last-child img{
	width: 150px;
	height: auto;
}

/*
 * [X] FOOTER
 */
