.row-fot {
    display: flex;
    flex-wrap: wrap;
  }

  .column-foot {
    flex: 22%;
    padding: 20px;
  }

  @media screen and (max-width: 992px) {
    .column-foot {
      flex: 50%;
    }
  }
  
  /* On screens that are 600px wide or less, make the columns stack on top of each other instead of next to each other */
  @media screen and (max-width: 600px) {
    .row-foot {
      flex-direction: column;
    }
  }

  .footer-bottom>hr {
    margin: 0 -2em 2em -2em;
    content: "";
    display: block;
    position: inherit;
    background: transparent linear-gradient(270deg,#3eb449 0,#19e1a4 24%,#0b51f0 49%,#19e1a4 74%,#3eb449 100%) 0 0 no-repeat padding-box;
    height: 3px;
    background: linear-gradient(270deg,#0b51f0 0,#18a3e0 33%,#19e1a4 55%,#3eb449 100%);
    background-size: 200% 200%;
    animation: gradientMenu 3s ease infinite;
  }

  .footer-main {
    width: 100vw;
    min-width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #003323;
    border-top: 1px solid #e0e0e0;
    padding: 18px 0;
    font-size: 15px;
    color: #333;
    margin-top: 40px;
    box-sizing: border-box;
    overflow-x: hidden;
    z-index: 10;
}
.footer-main a{color:#fff;}
.footer-left span{color:#fff;}
.footer-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 24px;
    box-sizing: border-box;
}
.footer-left {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.footer-link {
    color: #0b51f0;
    text-decoration: none;
    margin: 0 4px;
    transition: color 0.2s;
}
.footer-link:hover {
    color: #19e1a4;
    text-decoration: underline;
}
.footer-right {
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-social-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    transition: transform 0.2s, box-shadow 0.2s;
    border-radius: 50%;
    background: #003323;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.footer-social-icon:hover {
    transform: scale(1.12);
    box-shadow: 0 2px 8px rgba(27, 161, 255, 0.15);
}
@media (max-width: 700px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 0 12px;
    }
    .footer-right {
        margin-top: 8px;
        width: 100%;
    }
}
body {
    overflow-x: hidden;
}