/* FOOTER WAVE */
  .wave {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("../image/wave.png");
    background-size: 1000px 100px;
  }
  
  .wave#wave1 {
    z-index: 1000;
    opacity: 1;
    bottom: 0;
    animation: animateWaves 6s linear infinite;
  }
  
  .wave#wave2 {
    z-index: 999;
    opacity: 0.5;
    bottom: 10px;
    animation: animate 4s linear infinite !important;
  }
  
  .wave#wave3 {
    z-index: 1000;
    opacity: 0.2;
    bottom: 15px;
    animation: animateWaves 3s linear infinite;
  }
  
  .wave#wave4 {
    z-index: 999;
    opacity: 0.7;
    bottom: 20px;
    animation: animate 3s linear infinite;
  }
  
  @keyframes animateWaves {
    0% {
      background-position-x: 1000px;
    }
    100% {
      background-positon-x: 0px;
    }
  }
  
  @keyframes animate {
    0% {
      background-position-x: -1000px;
    }
    100% {
      background-positon-x: 0px;
    }
  }

  
/* FOOTER CONTENT */
  .footer {
    position: relative;
    width: 100%;
    /* background: linear-gradient(to top, hsl(82, 100%, 7%), hsl(82, 100%, 42%)); */
    background: linear-gradient(to top, #001016, #144770);
    min-height: 100px;
    padding: 20px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

.footer-subsection .footer-left,
.footer-subsection .footer-center,
.footer-subsection .footer-right{
  display: inline-block;
  vertical-align: top;
}

/* Footer left */

.footer-subsection .footer-left{
  width: 40%;
}

/* LOGO OF AOH */

.footer-subsection h3{
  color:  #ffffff;
  font: normal 36px 'Open Sans', cursive;
  margin: 0;
}

.footer-subsection h3 span{
  color: var(--button-color);
}

/* Footer links */

.footer-subsection .footer-links{
  color:  #e6ffe6;
  margin: 20px 0 12px;
  padding: 0;
}

.footer-subsection .footer-links a{
  display:inline-block;
  line-height: 1.8;
  font-weight:400;
  text-decoration: none;
  color:  var(--button-color);
  /* border: 2px solid var(--button-color); */
  padding: 5px;
  margin: 3px;
  border-radius: 3px;
}

.footer-subsection .footer-company-name{
  color:  #ffffff;
  font-size: 14px;
  font-weight: normal;
  margin: 0;
}

/* Footer Center */

.footer-subsection .footer-center{
  width: 35%;
}

.footer-subsection .footer-center i{
  background-color:  #33383b;
  color: #ffffff;
  font-size: 25px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  text-align: center;
  line-height: 42px;
  margin: 10px 15px;
  vertical-align: middle;
}

.footer-subsection .footer-center i.fa-envelope{
  font-size: 17px;
  line-height: 38px;
}

.footer-subsection .footer-center p{
  display: inline-block;
  color: #ffffff;
  font-weight:400;
  vertical-align: middle;
  margin:0;
}

.footer-subsection .footer-center p span{
  display:block;
  font-weight: normal;
  font-size:14px;
  line-height:2;
}

.footer-subsection .footer-center p a{
  color: var(--button-color);
  text-decoration: none;;
}

.footer-subsection .footer-links a:before {
  content: "";
  font-weight:300;
  font-size: 20px;
  left: 0;
  color: #fff;
  display: inline-block;
  padding-right: 5px;
}

.footer-subsection .footer-links .link-1:before {
  content: none;
}

/* Footer Right */

.footer-subsection .footer-right{
  width: 20%;
}

.footer-subsection .footer-company-about{
  line-height: 20px;
  color:  #ffffff;
  font-size: 13px;
  font-weight: normal;
  margin: 0;
}

.footer-subsection .footer-company-about span{
  display: block;
  color:  #ffffff;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer-subsection .footer-icons{
  margin-top: 25px;
}

.footer-subsection .footer-icons a{
  display: inline-block;
  width: 35px;
  height: 35px;
  cursor: pointer;
  background-color:  #33383b;
  border-radius: 2px;

  font-size: 20px;
  color: #ffffff;
  text-align: center;
  line-height: 35px;

  margin-right: 3px;
  margin-bottom: 5px;
}

/* If you don't want the footer to be responsive, remove these media queries */

@media (max-width: 880px) {

  .footer-subsection{
    font: bold 14px sans-serif;
  }

  .footer-subsection .footer-left,
  .footer-subsection .footer-center,
  .footer-subsection .footer-right{
    display: block;
    width: 100%;
    margin-bottom: 40px;
    text-align: center;
  }

  .footer-subsection .footer-center i{
    margin-left: 0;
  }

}