footer {
  background: transparent linear-gradient(180deg, #006CA8 0%, #004165 100%) 0% 0% no-repeat padding-box;
  color: #1D275F;
  padding-top: 45px;
  padding-bottom: 15px;
  border-radius: 24px 24px 0 0;
}
footer a {
  color: white;
  text-decoration: none;
}

.footer p, .footer b, .footer strong {
  color: white;
}
.footer-bottom {
  font-size: 13px;
  margin-top: 15px !important;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid white;
}
@media only screen and (max-width: 700px) {
  .footer-bottom {
    padding-top: 25px;
    justify-content: center;
  }
}
.footer-bottom a {
  margin-right: 30px;
}
@media only screen and (max-width: 700px) {
  .footer-bottom a {
    margin: 5px 10px;
  }
}
.footer-bottom a:hover {
  text-decoration: underline;
}
.footer-bottom .consent-btn {
  cursor: pointer;
}
.footer-bottom .consent-btn:hover p {
  text-decoration: underline;
}
.footer-column {
  padding: 0 10px;
}
@media only screen and (max-width: 700px) {
  .footer-column {
    margin: 25px 0;
  }
}
.footer-column img {
  max-width: 80%;
  height: auto;
}
.footer-column a {
  margin: 8px 0;
  display: block;
}
.footer-column-headline {
  font-size: 20px !important;
  font-weight: 600 !important;
  margin-top: 0 !important;
  margin-bottom: 15px !important;
  display: block;
}
@media only screen and (max-width: 700px) {
  .footer-column-headline {
    margin-bottom: 10px !important;
  }
}

.disclaimer {
  background-color: white;
  -webkit-box-shadow: 2px 2px 5px 0px #999;
  -moz-box-shadow: 2px 2px 5px 0px #999;
  box-shadow: 2px 2px 5px 0px #999;
  padding: 15px;
  margin-bottom: 30px;
}

.dot-pulse {
  position: relative;
  left: -9999px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #1D275F;
  color: #1D275F;
  box-shadow: 9999px 0 0 -5px;
  animation: dot-pulse 1.5s infinite linear;
  animation-delay: 0.25s;
}

.dot-pulse::before, .dot-pulse::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #1D275F;
  color: #1D275F;
}

.dot-pulse::before {
  box-shadow: 9984px 0 0 -5px;
  animation: dot-pulse-before 1.5s infinite linear;
  animation-delay: 0s;
}

.dot-pulse::after {
  box-shadow: 10014px 0 0 -5px;
  animation: dot-pulse-after 1.5s infinite linear;
  animation-delay: 0.5s;
}

@keyframes dot-pulse-before {
  0% {
    box-shadow: 9984px 0 0 -5px;
  }
  30% {
    box-shadow: 9984px 0 0 2px;
  }
  60%, 100% {
    box-shadow: 9984px 0 0 -5px;
  }
}
@keyframes dot-pulse {
  0% {
    box-shadow: 9999px 0 0 -5px;
  }
  30% {
    box-shadow: 9999px 0 0 2px;
  }
  60%, 100% {
    box-shadow: 9999px 0 0 -5px;
  }
}
@keyframes dot-pulse-after {
  0% {
    box-shadow: 10014px 0 0 -5px;
  }
  30% {
    box-shadow: 10014px 0 0 2px;
  }
  60%, 100% {
    box-shadow: 10014px 0 0 -5px;
  }
}