footer a{
  text-decoration: none;
}

footer a p {
  margin: 5px 0; /* Adjust space between contact lines */
}

footer a:hover {
  color: #DF3C14!important;
}

footer p:hover {
  color: #DF3C14!important;
}

footer{
  margin-top: -3%;
}

footer .waves {
  position:relative;
  width: 100%;
  height:5vh;
  margin-bottom:-7px; /*Fix for safari gap*/
  min-height:50px;
  max-height:150px;
}

footer .content {
  padding-top: 30px;
  padding-bottom: 300px;
  background-color: #191919;
  width: 100%;
  height: auto;
}

footer .left{
  width: 50%;
  height: auto;
  float: left;
}

footer .left p{
  font-weight: 400;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  text-align: left;
  max-width: 260px;
  margin-top: 2em;
}

footer .left img{
  width: 100%;
  height: auto;
  max-width: 108px;
}

footer .right{
  width: 50%;
  height: auto;
  float: right;
  margin-top: 2.5em;
}

footer .right p{
  text-align: right;
  font-weight: 400;
  font-size: 20px;
  color: #fff;
  margin-top:10px;
  margin-bottom: 0px!important;
}

footer .right img{
  width: 100%;
  height: auto;
  max-width: 35px;
  text-align: right;
  float: right;
  margin-left: 20px;
  margin-top: 20px;
}

/* Animation */

footer .parallax > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5)     infinite;
}
footer .parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
footer .parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
footer .parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
footer .parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}
@keyframes move-forever {
  0% {
   transform: translate3d(-90px,0,0);
  }
  100% { 
    transform: translate3d(85px,0,0);
  }
}
/*Shrinking for mobile*/
@media (max-width: 768px) {
  footer .waves {
    height:40px;
    min-height:40px;
  }
  footer .content {
    height:450px;
  }
  footer h1 {
    font-size:24px;
  }
}

/* mobile  */

@media screen and (max-width: 768px) {
  footer{
    margin-top: -10%;
  }
  footer .left {
    width: 100%;
    height: auto;
    float: left;
  }
  footer .right {
    width: 100%;
    height: auto;
    float: left;
    margin-top: 0em;
  }
  footer .left img {
    width: 100%;
    height: auto;
    max-width: 70px;
  }
  footer .right img {
    width: 100%;
    height: auto;
    text-align: left;
    float: left;
    margin-left: unset;
    margin-right: 15px;
    max-width: 25px; /* Smaller icons for mobile */
    margin-top: 15px; /* Adjust according to the new line height */
  }
  footer .left p {
    font-weight: 400;
    font-size: 16px;
    text-align: left;
    margin-top: 2em;
  }
  footer .right p {
    text-align: left;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 0px !important;
  }
  footer .right p {
    font-size: 14px; /* Smaller font size for mobile */
  }
}

