html,body,h1,h2,h3,h4 
{
	font-family:"Lato", sans-serif;
}

html {
  overflow-x: hidden;
}

.contact-button a {
  font-size: 12px;
  background-color: #1245a8;
  color: #ffffff;
  border: 1px solid #1245a8;
}

.contact-button a:hover {
  font-size: 12px;
  background-color: #fff;
  color: #ff6700;
  border: 1px solid #ff6700;
}


/*FOOTER*/
footer {
	position: relative;
	width: 100%;
	background-color: #ffffff;
	/*min-width: 100px;*/
	/*padding: 20px;*/
	/*display: flex;*/
	justify-content: center;
	align-items: center;
	/*flex-direction: column;*/
}

footer div {
  text-align: center;
  align-items: center;
  justify-content: center;
}


footer form {
  margin: 7px;
}

footer .footer-description {
  font-size: 14px;
  color: darkgrey;
}

footer .social_icon {
	position: relative;
	/*display: flex;*/
	justify-content: center;
	align-items: center;
	margin: 10px 0;
	/*flex-wrap: wrap;*/
  flex-direction: column;
}

footer .social-icon a {
	font-size: 1.5em;
	/*color: #FF6700;*/
	margin: 0 10px;
	display: inline-block;
	transition: 0.5s;
}

footer .social-icon a:hover {
	transform: translateY(-10px);
  /*color: #1245a8;*/
}

footer ul .company-logo {
  width: 200px;
}

footer ul p {
  color: #1245a8;
  font-size: 14px;
}

footer ul .menu {
  position: relative;
  display: inline-block;
  justify-content: center;
  align-items: center;
  /*margin: 10px 0;*/
  flex-wrap: wrap;
  /*flex-direction: column;*/
}

footer .menu a {
  font-size: 14px;
  color: #0e0e0e;
  margin: 0 10px;
  display: block;
  transition: 0.5s;
}

footer .menu a:hover {
  color: #FF6700;
}

footer .waves .wave {
  position: absolute;
  top:-50px;
  left: 0;
  width: 100%;
  height: 50px;
  background: url(../images/designs/wavewhite.png);
  background-size: 500px 50px;
}

footer .waves .wave#wave1 {
  z-index: 1000;
  opacity: 1;
  bottom: 0;
  animation: animateWave1 7s linear infinite;
}

@keyframes animateWave1 {
  0% {
    background-position: 1000px;
  }
  100% {
    background-position: 0px;
  }
}

footer .waves .wave#wave2 {
  z-index: 999;
  opacity: 0.5;
  bottom: 10px;
  animation: animateWave2 6s linear infinite;
}

@keyframes animateWave2 {
  0% {
    background-position: 0px;
  }
  100% {
    background-position: 1000px;
  }
}

footer .waves .wave#wave3 {
  z-index: 1000;
  opacity: 0.2;
  bottom: 15px;
  animation: animateWave1 5s linear infinite;
}

footer .waves .wave#wave4 {
  z-index: 999;
  opacity: 0.7;
  bottom: 20px;
  animation: animateWave2 5s linear infinite;
}

/*BODY*/


/*HEADER*/

.navbar .navbar-nav .nav-item a {
  text-decoration: none;
  color: #555555;
  font-weight: 500;
}

.navbar .navbar-nav .nav-item a:hover {
  color: #ff6700;
}

ul {
  list-style-type: none;
}

.navbar {
  background: white;
  padding: 1rem 2rem;
  height: 0rem;
  min-height: 16vh;
}

.navbar-toggler{
  background: #fff;
  border: none;
  padding: 10px 6px;
  outline: none;
}

/*.navbar .container .collapse .navbar-collapse {
  background-color: #fff;
}*/

/*.navbar-toggler span {
  display: block;
  width: 22px;
  height: 2px;
  border: 1px;
  background: #ff6700; 
}
*/
/*.navbar-toggler span + span {
  margin-top: 4px;
  width: 18px;
  margin-left: 4px;
}

.navbar-toggler span + span + span {
  width: 10px;
  margin-left: 10px;
}*/

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  position: relative;
}

.navbar-expand-lg .navbar-nav .nav-link:hover {
  border-top: 3px solid #FF6700;
}

.navbar-expand-lg .navbar-nav .nav-link .active {
  border-top: 3px solid #1245a8;
  color: #ff6700;
}



/*.navbar-nav .btn {
  background-color: transparent;
  color: #ff6700;
  border-radius: 50px;
  padding: 5px 20px 5px 20px;
  font-size: 0.8rem;
}
*/


/*@media screen and (max-width: 600px) {
  .navbar {
    background: white;
    padding: 1rem 2rem;
    height: 0rem;
    min-height: 16vh;
  }
}*/


