.banner_eu {
  overflow: hidden;
  width: 100%;
  padding: 3rem 0;
  position: relative;
  font-family: "Alexandria", sans-serif;
  background-color: white;
  position: relative;
  z-index: 2;
}
.banner_eu_container {
  max-width: 1024px;
  margin: auto;
  padding: 1rem;
}
.banner_eu_content {
  position: relative;
  z-index: 2;
  display: grid;
  text-align: left;
  width: 100%;
}
.banner_eu_content > span {
  color: var(--text-color-50);
  font-family: "Alexandria", sans-serif;
}
.banner_eu_content h2 {
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.15;
  font-weight: 600;
  margin: 0 0 1rem 0;
  color: var(--text-color);
  font-family: "Alexandria", sans-serif;
}
.banner_eu_content p {
  font-family: "Alexandria", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  margin: 0 0 1rem 0;
}
.banner_eu_content a {
  color: var(--text-color);
  text-decoration: underline;
  margin: 0 0 3rem 0;
}
.banner_eu_grid {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.banner_eu_grid span {
  display: grid;
  gap: 0.5rem;
  max-width: 320px;
  font-size: 0.875rem;
  justify-content: center;
  text-align: center;
  color: var(--text-color-50);
}
.banner_eu_grid span img {
  margin: auto;
}
@media screen and (max-width: 525px) {
  .banner_eu_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .banner_eu_grid img {
    max-width: 100%;
  }
}
@media screen and (max-width: 425px) {
  .banner_eu_grid {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
  }
  .banner_eu_grid span, .banner_eu_grid img {
    margin: auto;
  }
}
