
.footer {
  background-image: linear-gradient(#f70c0c, white);
  color: #fff;
  position: relative;
  z-index: 100;
}



.footer p {
  font-size: 15px;
}
.dis{
  font-size: 50px;
  font-weight: bold;
  color: black;
}

.footer .col {
  margin-bottom: 20px;
}

.footer .menu__link {
  color: #fff;
  text-decoration: none;

}

.footer .menu__item {
  list-style: none;
}

.footer .menu__item:not(:last-child) {
  margin-bottom: 10px;
}

.footer .social-icon {
  margin-top: 20px;
}

.footer .social-icon__item {
  display: inline-block;
  margin: 0 10px;
}

.footer .social-icon__link {
  color: #fff;
  font-size: 24px;
  text-decoration: none;
}

.footer .social-icon__link:hover {
  color: #fff;
}


.wave {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url(../img/wave5.png);
  background-size: 1000px 100px;
}



.wave#wave1 {
  z-index: 1000;
  opacity: 1;
  bottom: 0;
  animation: animateWaves 4s 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;
  }
}




.social-icon__item {
  transition: transform 0.3s ease;
}

.social-icon__item:hover {
  transform: scale(1.5);
}


.social-icon {
  margin: 20px 0;
}

.social-icon__link {
  font-size: 24px;
  color: #fff;
  margin: 0 10px;
  transition: color 0.3s;
}

.social-icon__link:hover {
  color: #1B75D0;
}

.menu__item {
  margin: 10px 0;
}

.menu__link {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.menu__link:hover {
  color: #1B75D0;
}

