@-webkit-keyframes dot-keyframes {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  25% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  75% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
}
@keyframes dot-keyframes {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  25% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  75% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
}
@-webkit-keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* --- Logo list styles --- */
.module-logo-list ul {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
  /* Mobile column */
  /* Tablet column */
  /* Desktop column */
}
@media screen and (min-width: 576px) {
  .module-logo-list ul {
    gap: 1.125rem;
  }
}
@media screen and (min-width: 1024px) {
  .module-logo-list ul {
    gap: 1.5rem;
  }
}
.module-logo-list ul li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  text-align: center;
}
.module-logo-list ul li img {
  width: auto;
  max-height: 4.25rem;
}
.module-logo-list ul.mobile-column-2 li {
  width: calc(50% - 0.75rem + 0.75rem / 2);
}
.module-logo-list ul.mobile-column-3 li {
  width: calc(33.3333333333% - 0.75rem + 0.75rem / 3);
}
.module-logo-list ul.mobile-column-4 li {
  width: calc(25% - 0.75rem + 0.75rem / 4);
}
@media screen and (min-width: 576px) {
  .module-logo-list ul.tablet-column-4 li {
    width: calc(25% - 1.125rem + 1.125rem / 4);
  }
}
@media screen and (min-width: 576px) {
  .module-logo-list ul.tablet-column-5 li {
    width: calc(20% - 1.125rem + 1.125rem / 5);
  }
}
@media screen and (min-width: 576px) {
  .module-logo-list ul.tablet-column-6 li {
    width: calc(16.6666666667% - 1.125rem + 1.125rem / 6);
  }
}
@media screen and (min-width: 576px) {
  .module-logo-list ul.tablet-column-7 li {
    width: calc(14.2857142857% - 1.125rem + 1.125rem / 7);
  }
}
@media screen and (min-width: 576px) {
  .module-logo-list ul.tablet-column-8 li {
    width: calc(12.5% - 1.125rem + 1.125rem / 8);
  }
}
@media screen and (min-width: 1024px) {
  .module-logo-list ul.desktop-column-4 li {
    width: calc(25% - 1.5rem + 1.5rem / 4);
  }
}
@media screen and (min-width: 1024px) {
  .module-logo-list ul.desktop-column-5 li {
    width: calc(20% - 1.5rem + 1.5rem / 5);
  }
}
@media screen and (min-width: 1024px) {
  .module-logo-list ul.desktop-column-6 li {
    width: calc(16.6666666667% - 1.5rem + 1.5rem / 6);
  }
}
@media screen and (min-width: 1024px) {
  .module-logo-list ul.desktop-column-7 li {
    width: calc(14.2857142857% - 1.5rem + 1.5rem / 7);
  }
}
@media screen and (min-width: 1024px) {
  .module-logo-list ul.desktop-column-8 li {
    width: calc(12.5% - 1.5rem + 1.5rem / 8);
  }
}