.footer__inner {
  display: flex;
}

.footer__col--info {
  flex: 2;
  background: #4a4a4a;
  color: #fff;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

/*

.footer__logo {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer__call {
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}
.footer__phone {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.footer__social a {
  margin-right: 0.5rem;
  font-size: 1.25rem;
  color: #fff;
  text-decoration: none;
}

.footer__text {
  font-size: 0.85rem;
  line-height: 1.4;
  margin-top: auto;
}


*/
.footer__title {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.footer__list a {
  color: #fff;
  text-decoration: none;
}
.footer__col--links {
  flex: 3;
  background: #dba75e;
  color: #fff;
  display: flex;
  padding: 2rem;
  gap: 2rem;
  flex-direction: column;
}

.footer__section {
  flex: 1;
}



.footer__list {
  list-style: none;
}

.footer__list li {
  margin-bottom: 0.5rem;
}


@keyframes bounceandwiggle {
  0%, 79%, 95%, 100% {
    transform: translateY(0);
  }
  81%, 83%, 85%, 87%, 89% {
    transform: translateY(-3px) rotate(-5deg);
  }
  80%, 82%, 84%, 86%, 88%, 90%, 92% {
    transform: translateY(-3px) rotate(5deg);
  }
  93% {
    transform: translateY(1px) rotate(0deg); /* Slightly less bounce */
  }
  94% {
    transform: translateY(-1px) rotate(0deg); /* Slightly less bounce */
  }
}

/* Apply the animation to the graphic */
.flag-icon {
  padding-left:8px;
 animation: bounceandwiggle;
  animation-duration: 10s; /* The animation lasts 4 seconds */
  /*animation-timing-function: ease-in-out; /* Smooths the start and end */
  animation-iteration-count: infinite; /* Repeats the animation forever */
 /* animation-delay: 0s; /* Waits 10 seconds before starting the animation */
}
