@import url(https://fonts.googleapis.com/css?family=Rambla:400,700);
@import url(https://fonts.googleapis.com/css?family=Raleway:400,700);

body {
	font-family: 'Rambla', sans-serif;
	font-size: 14px;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Raleway', sans-serif;
}

a, a:link, a:visited, a:active, a:focus {
    color: #0098db;
    text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

.header.wrapper {
	background-color: #D1EB8A;
	padding: 15px 0;
}

.header.wrapper header {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-direction: normal;
	-webkit-box-orient: horizontal;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: nowrap;
	-moz-flex-wrap: nowrap;
	-ms-flex-wrap: none;
	flex-wrap: nowrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	justify-content: space-between;
	max-width: 1020px;
	width: 100%;
	margin: 0 auto; 
}
.header.wrapper header .logo img {
	  max-height: 150px;
	  width: auto; 
}


.container {
	max-width: 1020px;
	width: 100%;
	margin: 0 auto;
}

nav.clientNavigation {
	margin-top: 25px;
}

.clientNavigation ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.clientNavigation ul li {
	display: inline-block;
}

.clientNavigation ul ul {
	display: block;
	visibility: hidden;
	width: 210px;
	position: absolute;
	background-color: #fff;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(238,238,238,1);
	-moz-box-shadow: 0px 0px 5px 0px rgba(238,238,238,1);
	box-shadow: 0px 0px 5px 0px rgba(238,238,238,1);
}

.clientNavigation ul li:hover ul {
	visibility: visible;
}

.clientNavigation ul li a {
    color: #000000;
    padding: 6px 20px;
    margin: 0;
    line-height: normal;
    height: auto;
    font-size: 12px;
    font-weight: 600;
    width: 81px;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    display: inline-block;
}

.clientNavigation ul li a:hover {
	color: white;
	text-shadow: 2px 0px 2px rgba(150, 150, 150, 1);
}

.clientNavigation ul ul li {
    min-width: 210px;
    width: auto;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #ccc;
}

.clientNavigation ul ul li a {
	min-width: 185px;
	width: auto;
	text-align: left;
	padding: 0 12px;
	font-size: 11px;
	font-weight: 300;
	height: 36px;
	line-height: 36px;
	color: #000;
	background: transparent;
	text-transform: uppercase;
	border-bottom: none !important;
	font-family: 'Roboto Condensed', sans-serif;
}

.clientNavigation ul ul li a:hover {
	color: #0098db;
	text-shadow: none;
}


/*==============================
=            Footer            =
==============================*/
.footer.wrapper .container {
	background-color: #b1b3b6;
	box-sizing: border-box;
	padding: 15px;
}
.footer.wrapper a {
	color: #404040;
	 transition: all 0.5s ease 0s;
	 text-transform: uppercase;
}
.footer.wrapper  a:hover {
	color: #FFF;
}
.footer.wrapper a.privacy {
	font-size: 11px;
}
.footer.wrapper .social {
	
	text-align: right;
}

.footer.wrapper .social ul {
	list-style-type: none;
	padding: 15px 0 0 0;
	margin: 0;
}

.footer.wrapper .social ul li {
	display: inline-block;
}

.footer.wrapper .social ul li a {
	color: #818285;
	padding: 0 3px;
    transition: all 0.5s ease 0s;
}

.footer.wrapper .social ul li a:hover {
	opacity: 0.5;
}

/*=====  End of Footer  ======*/


@media (max-width: 640px ) {
	.clientNavigation {
		display: none;
	}
}