.footer {
  background-color: var(--color-white);
  padding-top: 90px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding-bottom: 20px;
}
.footer::after {
  content: "";
  width: 138px;
  height: 148px;
  background-position: bottom center;
  position: absolute;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: contain;
  right: 2%;
  bottom: -6px;
  background-image: url(../images/bgf.png);
}
.bg-waves {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.waves {
  position: absolute;
  width: 100%;
  height: 120px;
  min-height: 100px;
  max-height: 150px;
  bottom: 0;
  left: 0;
}

.parallax > use {
  animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}

.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}

.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}

.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) {
  .waves {
    height: 40px;
    min-height: 40px;
  }
}

/* Waves Animation end*/

.sub-footer p {
  margin: 30px 0;
}

.sco-media ul {
  display: flex;
  align-items: center;
  gap: 20px;
}
.sco-media ul li a {
  color: var(--color-Primary2);
  width: 45px;
  height: 45px;
  border: 1px solid var(--color-Primary2);
  display: flex;
  font-size: 18px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: all 0.3s linear;
}
.sco-media ul li a:hover {
  background-color: var(--color-Primary2);
  color: var(--color-white);
}
.sco-media ul li a i {
  transition: all 0.3s linear;
}

.element-footer h2,
.contect-footer h2 {
  padding-bottom: 15px;
  position: relative;
  margin-bottom: 30px;
  font-size: 28px;
  font-family: "font_medium";
}
.element-footer h2::after,
.contect-footer h2::after {
  content: "";
  width: 40px;
  height: 2px;
  position: absolute;
  right: 0;
  background: #19a7ce;
  margin: auto;
  background-position: center;
  background-repeat: no-repeat;
  bottom: -1px;
}
.element-footer ul li a {
  transition: all 0.3s linear;
  position: relative;
  font-size: 25px;
  display: flex;
  text-shadow: 0 3px 5px transparent;

  gap: 10px;
}

.element-footer ul li a:hover {
  color: var(--color-Primary2);
  text-shadow: 0 6px 3px #84d5f8;
}

.element-footer ul li {
  margin: 10px 0;
}
.logo-footer {
  max-width: 200px;
}
.contect-footer ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 25px;
  margin: 10px 0;
}
.contect-footer ul li a i {
  color: var(--color-Primary2);
}

.contect-footer ul li a:hover {
  color: var(--color-Primary2);
  text-shadow: 0 6px 3px #84d5f8;
}
.end-page {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
}
.end-page {
  margin-top: 70px;
}
.end-page a {
  color: var(--color-black);
  display: flex;
  gap: 10px;
  align-items: center;
}
.end-page a i {
  color: red;
}

.remove-mune {
  position: absolute;
  top: 30px;
  right: 30px;
}

.remove-mune span {
  width: 40px;
  height: 40px;
  display: block;
  transition: all 0.2s linear;
  position: relative;
  cursor: pointer;
  transform: rotate(0deg);

  transition-delay: 0.8s;
}

.remove-mune span::after {
  content: "";
  height: 2px;
  background-color: #54595f;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  transition: all 0.6s linear;
}

.remove-mune span::before {
  content: "";
  height: 2px;
  background-color: #54595f;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  transition: all 0.2s linear;

  transition-delay: 0.6s;
}

.menu_responsive.active .remove-mune span::before {
  transform: rotate(90deg) translateY(-50%);
}

.menu_responsive.active .remove-mune span {
  transform: rotate(45deg);
}

.element_menu_responsive ul li {
  transform: translateY(100%);
  transition: all 0.2s linear;
  transition-delay: 0.4s;
  display: block;
  opacity: 0;
}
.menu_responsive {
  transition-delay: 1s;
}
.menu_responsive.active {
  transition-delay: 0.3s;
}

.menu_responsive.active .element_menu_responsive ul li {
  transform: translateY(0%);
}

.menu_responsive.active .element_menu_responsive ul li:nth-of-type(1) {
  transition-delay: 0.4s;
  opacity: 1;
}

.menu_responsive.active .element_menu_responsive ul li:nth-of-type(2) {
  transition-delay: 0.6s;
  opacity: 1;
}

.menu_responsive.active .element_menu_responsive ul li:nth-of-type(3) {
  transition-delay: 0.8s;
  opacity: 1;
}

.menu_responsive.active .element_menu_responsive ul li:nth-of-type(4) {
  transition-delay: 1s;
  opacity: 1;
}

.menu_responsive.active .element_menu_responsive ul li:nth-of-type(5) {
  transition-delay: 1.2s;
  opacity: 1;
}

.menu_responsive.active .element_menu_responsive ul li:nth-of-type(6) {
  transition-delay: 1.4s;
  opacity: 1;
}

.menu_responsive.active .element_menu_responsive ul li:nth-of-type(7) {
  transition-delay: 1.6s;
  opacity: 1;
}
.menu_responsive.active .element_menu_responsive ul li:nth-of-type(8) {
  transition-delay: 1.8s;
  opacity: 1;
}
.menu_responsive.active .element_menu_responsive ul li:nth-of-type(9) {
  transition-delay: 2s;
  opacity: 1;
}
