.footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #1A428A 0%, #48BEA0 100%);
  color: #fff;
  padding: 40px 20px 20px;
  z-index: 1;

  &::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('../images/bg-footer.svg') no-repeat center/cover;
    z-index: -1;
    opacity: 0.2;
  }

  .main-container {
    display: flex;
    flex-direction: column;

    .footer-logo {
      height: auto;
      margin: 0 auto ;
      display: none;
    }

    .footer-logo img {

        width: 250px;
        height: auto;
    }

    .footer-content {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;

      .footer-left {
        .social-icons {
          display: flex;
          align-items: center;
          justify-content: flex-end;
          gap: 16px;

          a {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: var(--color-white);

            i {
              font-size: clamp(16px, 2vw, 24px);
              color: var(--color-Primary1);
              transition: transform 0.3s ease, color 0.3s ease;
            }

            &:hover i {
              transform: scale(1.2);
              color: var(--color-Primary2);
            }
          }
        }
      }

      .footer-right {
        a {
          color: #fff;
          margin: 0 5px;
          font-size: clamp(8px, 2vw, 14px);
          font-weight: 600;
          transition: all 0.5s ease-in-out;
        }

        a:hover  {
          text-decoration: underline !important;
        }
      }



              .footer-logo{
                display: flex;
              }
    }

    .end-page {
      display: flex;
      justify-content: space-between;
      margin-top: 20px;
      /* border-top: 1px solid var(--color-border); */
      /* padding-top: 20px; */
      font-size: clamp(8px, 2vw, 12px);

      p,
      a {
        color: var(--color-white);

        display: block;
        i {
          color: #FF3B30;
          animation: heartbeat 1.2s infinite;
          display: inline-block;
        }


      }
    }
  }
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}


.menu_responsive  .drop-menu{
  position: relative;
}
.drop-element-responsive {
  opacity: 0;
    height: 0;
    visibility: hidden;
    transition: all 0.05s ease;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-white);
    border-radius: 10px;
    padding: 10px;
    z-index: 1000;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}


.menu_responsive  .drop-menu:hover a{
  color: var(--color-Primary1) !important;

}



.drop-element-responsive.active {
  opacity: 1;
  visibility: visible;
  width: 90%;
  height: auto;
}

.drop-element-responsive ul li {
  padding-bottom: 5px;
}
.drop-element-responsive ul li:hover{
  color: var(--color-Primary2) !important;
}

.remove-mune {
  position: absolute;
  top: 30px;
  left: 10px;
  background-color: var(--color-Primary5);
  border-radius: 10px;
  padding: 5px;
}

.remove-mune span {
  width: 30px;
  height: 30px;
  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: 47%;
  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(0%);
}

.menu_responsive.active .remove-mune span {
  transform: rotate(45deg);
}

.element_menu_responsive > ul >  li > a  {
  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 > a  {
  transform: translateY(0%);
}

.menu_responsive.active .element_menu_responsive > ul > li:nth-of-type(1) > a  {
  transition-delay: 0.4s;
  opacity: 1;
}

.menu_responsive.active .element_menu_responsive > ul > li:nth-of-type(2) > a  {
  transition-delay: 0.6s;
  opacity: 1;
}

.menu_responsive.active .element_menu_responsive > ul > li:nth-of-type(3) > a  {
  transition-delay: 0.8s;
  opacity: 1;
}

.menu_responsive.active .element_menu_responsive > ul > li:nth-of-type(4) > a  {
  transition-delay: 1s;
  opacity: 1;
}

.menu_responsive.active .element_menu_responsive > ul > li:nth-of-type(5) > a  {
  transition-delay: 1.2s;
  opacity: 1;
}

.menu_responsive.active .element_menu_responsive > ul > li:nth-of-type(6) > a  {
  transition-delay: 1.4s;
  opacity: 1;
}

.menu_responsive.active .element_menu_responsive > ul > li:nth-of-type(7) > a  {
  transition-delay: 1.6s;
  opacity: 1;
}

.menu_responsive.active .element_menu_responsive > ul > li:nth-of-type(8) > a  {
  transition-delay: 1.8s;
  opacity: 1;
}

.menu_responsive.active .element_menu_responsive > ul > li:nth-of-type(9) > a  {
  transition-delay: 2s;
  opacity: 1;
}

.menu_responsive.active .element_menu_responsive > ul > li:nth-of-type(10) > a  {
  transition-delay: 2.2s;
  opacity: 1;
}

.menu_responsive.active .element_menu_responsive > ul > li:nth-of-type(11) > a  {
  transition-delay: 2.4s;
  opacity: 1;
}

.menu_responsive.active .element_menu_responsive > ul > li:nth-of-type(12) > a  {
  transition-delay: 2.6s;
  opacity: 1;
}

.menu_responsive.active .element_menu_responsive > ul > li:nth-of-type(13) > a  {
  transition-delay: 2.8s;
  opacity: 1;
}

.menu_responsive.active .element_menu_responsive > ul > li:nth-of-type(14) > a  {
  transition-delay: 3s;
  opacity: 1;
}
