/*************
Primary Colors

#4A71B1

#B5CA6E

*************/

/*header{
	padding: 20px 0;
    background: #4A71B1;
    height: 135px;
}*/	

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

header {
    padding: 0;
    background: #B5CA6E;
    height: 110px;
}

header .logo {
    height: 110px;
    display: inline-block;
    background: #fff;
    position: absolute;
    top: 0;
    padding: 10px 25px;
}

header .logo img{
	height: 100%;
}

.sidenav{
	background: #4A71B1;
	width: 220px;
}

.sidenav .user-view{
	background: #eee;
}

.sidenav .user-view img {
    width: 130px;
}

.sidenav li > a{
	color: #fff;
    font-weight: 600;
    font-size: 19px;
    height: 60px;
    line-height: 60px;
    position: relative;
}

#sidenav-overlay {
	z-index: 1;
}

.topHeader{
	overflow: hidden;
}

.topHeader,
.bottomHeader{
	height: 55px;
    line-height: 55px;
}

.bottomHeader {
    background: #4A71B1;
}

.hamburger{
	float: right;
    line-height: inherit;
    color: #fff;
    cursor: pointer;
}

.hamburger i{
	font-size: 32px;
	line-height: inherit;
}

.menu,
.contact {
    display: none;
}

@keyframes underline {
	from {
		width: 0;
	}
	to {
		width: 20px;
	}
}

footer{
	overflow: hidden;
	width: 100%;
	background: #4A71B1;
}

.logos{
	width: 100%;
	text-align: center;
	overflow: hidden;
}

.logos ul{
	margin: 0;
}

.logos li{
	height: 200px;
}

.logos img{
	height: 100%;
	max-height: 45px;
	width: auto;
	position: relative;
	top: 50%;
	margin-top: -22.5px;
}

.mainFooter{
	padding: 60px 0;
}

.mainFooter a {
	display: block;
    color: #a9dafec4;
    font-weight: 400;
    font-size: 15px;
    margin-bottom: 7px;
}

.mainFooter ul{
	margin-bottom: 0;
}

.logoFooter{
	margin-bottom: 10px;
}

.logoFooter img{
	height: 75px;
}

.slogan{
	color: #fff;
	font-size: 15px;
}

.slogan strong{
	font-weight: 600;
	font-size: 19px;
}

.footerContact a{
	font-weight: 600;
    font-size: 18px;
}

.footerContact i{
	display: inline-block;
    font-size: 22px;
    vertical-align: sub;
    margin-right: 10px;
}

footer hr{
	border: none;
	height: 2px;
	background: #fff;
	width: 70px;
	margin: 20px 0;
}

.copyright{
	background: rgba(25,25,25,0.2);
	color: #fff;
	padding: 20px 0;
}

footer h3 {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    margin: 0 0 15px;
}

.row{
	margin-bottom: 0;
	margin-left: -0.75rem;
    margin-right: -0.75rem;
}

.menu a.active:after,
.sidenav a.active:after {
    content: '';
    position: absolute;
    display: block;
    margin: 0 auto;
    bottom: 15px;
    width: 25px;
    height: 3px;
    background: #B5CA6E;
    animation: underline 0.3s ease-in-out;
}

.sidenav a.active{
	color: #B5CA6E;
}

.sidenav a.active:after {
	bottom: 10px;
}

#google_translate_element{
	position: absolute;
	right: 0;
	z-index: 10;
}

.goog-te-gadget-simple{
	background-color: transparent !important;
    border: none !important;
}

@keyframes shadow-pulse
{
     0% {
          box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
     }
     100% {
          box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
     }
}

.whatsapp{
	display: flex;
    align-items: center;
    justify-content: center;
	position:fixed;
	width:50px;
	height:50px;
	bottom:20px;
	right:20px;
	background-color:#25d366;
	border-radius:50%;
	text-align:center;
	box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
  	z-index:100;
  	animation: shadow-pulse 1.5s infinite;
}

.whatsapp svg{
	width: 36px;
	height: 36px;
}

@media screen and (min-width: 993px){
	.hamburger{
		display: none;
	}
	.menu,
	.contact {
		display: block;
	    margin: 0;
	    float: right;
	}

	.menu li {
	    float: left;
	    margin-left: 40px;
	}

	.menu a{
		color: #fff;
		font-weight: 600;
		font-size: 16px;
		display: block;
		padding: 0;
		position: relative;
	}

	.logos li{
		float: left;
		width: 33.33%;
		height: 270px;
	}
	.contact{
		display: block;
	}
	.contact li{
		float: left;
	}

	.contact li:first-of-type {
	    margin-right: 25px;
	}

	.contact a{
		font-size: 18px;
		color: #4A71B1;
	}

	.contact a i{
	    display: inline-block;
	    line-height: inherit;
	    margin-right: 5px;
	    font-size: 20px;
	    vertical-align: bottom;
	}
	.whatsapp{
		width:60px;
		height:60px;
		bottom:40px;
		right:40px;
	}

	.whatsapp svg{
		width: 40px;
		height: 40px;
	}
}

@media screen and (min-width: 1201px){
	header{
		height: 160px;
	}
	header .logo {
    	height: 160px;
    	padding: 10px 40px;
	}
	.topHeader,
	.bottomHeader{
		height: 80px;
	    line-height: 80px;
	}
	.menu a{
		font-size: 18px;
	}
	.menu li {
	    margin-left: 60px;
	}
}