@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600&display=swap');

.site-footer {
  position: relative;
  z-index: 30;

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;

  margin: 0;
  padding: 50px 0 70px;

  background-color: #005598;
  color: #f2f2f2;

  font-family: 'Poppins', sans-serif;
  font-size: 0.9em;
}

.site-footer a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: #000000;
}

.site-footer h3 {
  margin: 0 0 10px;
  font-size: 1.8em;
  font-weight: 600;
}

.site-footer li {
  margin: 5px 0;
  font-size: 1.1em;
  font-weight: 300;
}

.site-footer img {
  width: 40px;
}

.contain_footer {
  position: relative;
  min-width: 200px;
  padding: 10px;
}

.contain_footer--contact {
  min-width: 300px;
  width: 500px;
}

.footer__headline {
  font-weight: 600;
}

.footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.TermsAndConditions {
  position: absolute;
  bottom: 15px;
  left: 0;

  width: 100%;
  padding-top: 10px;

  border: 0;
  background: transparent;
  color: #f2f2f2;

  font: inherit;
  font-size: 1em;
  font-weight: 400;
  text-align: center;

  cursor: pointer;
}

.TermsAndConditions:hover {
  color: #000000;
}

@media (max-width: 768px) {
  .site-footer {
    justify-content: flex-start;
    padding-inline: 24px;
  }

  .contain_footer,
  .contain_footer--contact {
    width: 100%;
    min-width: 0;
  }
}
