@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700');


*, :after, :before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: Open Sans, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-smoothing: antialiased;
    line-height: 24px;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    padding: 0;
    margin: 0;
}

a, a:link, a:visited, a:active, a:focus, a:hover {
	border-bottom: 3px solid #0072bc;
    color: #0072bc;
    padding-bottom: 2px;
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    color: #333;
    font-family: Open Sans, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    margin: 0px;
}

h1 {
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 42px;
}

.header.wrapper {
    padding-top: 44px;
    padding-bottom: 20px;
}

header {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	max-width: 1170px;
	width: 100%;
	margin:  0 auto;
}

.container {
	max-width: 1170px;
	width: 100%;
	margin: 0 auto;
	padding: 0 15px;
}

.logo img {
	max-height: 75px;
    max-width: 210px;
    opacity: 1;
    top: -6px;
    padding-right: 20px;
    padding-bottom: 10px;
}

.logo a {
	border: none;
}
/*==========================================
=            Navigation Section            =
==========================================*/

.clientNavigation ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
}

.clientNavigation ul li {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	display: inline-block;
	margin-right: 32px;
	position: relative;
	top:  4px;
}

.clientNavigation ul li a {
    -moz-transition: all .3s ease-out;
    transition: all .3s ease-out;
    -webkit-transition: all .3s ease-out;
    border-bottom: 2px solid rgba(0,0,0,0);
    color: #333;
    display: inline-block;
    padding-bottom: 24px;
    font-weight: 600;
}

.clientNavigation ul li ul {
	display: none;
    background: rgba(255,255,255,0.9);
    min-width: 230px;
    overflow: visible;
    margin-top: -2px;
    position: absolute;
    z-index: -1;
}

.clientNavigation ul li:hover > ul {
    display: block;
    max-height: 300px;
    z-index: 10;
}

.clientNavigation ul li a:hover {
    color: #0061a0;
}
/*=====  End of Navigation Section  ======*/


/*======================================
=            Footer Section            =
======================================*/

.footer.wrapper {
	background-color: #333;
	color: #fff;
	padding: 72px 0;
	border-top: 15px solid #eee;
}

.footerFlex {
    display: flex;
    justify-content: space-between;
}

.col {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
ul.footerLinks {
	padding: 0;
	margin: 0;
	list-style-type: none;
}

ul.footerLinks li {
	display: inline-block;
	font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding-left: 20px;
}

ul.footerLinks li a, ul.footerLinks li a:link, ul.footerLinks li a:focus, ul.footerLinks li a:active, ul.footerLinks li a:hover {
	color: #fff;
	border: none;
}

span.fa-stack {
    margin-left: 5px;
}

/*=====  End of Footer Section  ======*/



@media (max-width: 740px) {
    .clientNavigation {
        display: none;
    }
}