* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  --header1: calc(2rem + 1vw);
  --header2: calc(3.5rem + 1vw);
  --header3: calc(3rem + 1vw);
  --text: calc(1.5rem + 1vw);
  --white: #eeeeee;
}

body {
  font-family: "Open Sans", Arial, sans-serif;
  color: #212427;
}

a,
a:hover,
a:visited,
a:active,
a:link {
  color: inherit;
  text-decoration: none;
  transition: transform 0.3s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
a:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

h1 {
  /* font-size: var(--header1); */
}
h2 {
  /* font-size: var(--header2); */
  font-weight: 800;
  font-size: 4rem;
  margin-bottom: 2rem;
}
h3 {
  /* font-size: var(--header3); */
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
/* 
li,
button,
label,
input,
a,
p {
   font-size: var(--text); 

}*/

.content {
  margin: 0 auto;
}

a.button {
  text-decoration: none;
  background-color: #202926;
  color: var(--white);
  border: 1px solid transparent;
  padding: 0.5rem 1rem;
  border-radius: 12px;

  font-weight: 500;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: inline-block;
}

a.button--large {
  background-color: #202926;
  color: #eeeeee;
  border: 1px solid transparent;
  padding: 2rem;
  border-radius: 32px;

  font-weight: 500;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.teasers {
  grid-template-columns: repeat(1, 1fr);
  display: grid;
  margin: 0;
  /* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
}
.teaser {
  position: relative;
  display: block;
}

.teaser--logo {
  display: flex;
  flex-direction: column;
}

.teaser--green {
  background-color: #9bbab1;
}

.teaser--red {
  background-color: #ba9ba3;
}

.teaser__image {
  object-fit: contain;
  width: 100%;
  height: auto;
}

.teaser__image--narrow {
  object-fit: contain;
  width: 75%;
  margin: 2rem 1rem 1rem;
}

h3.teaser__header--spaced {
  display: block;
  letter-spacing: 0.2rem;
  font-weight: 800;
  font-size: 3rem;
  margin: 1rem 1rem 2rem;
}

.teaser__cta {
  padding: 1rem;
  min-height: 5rem;
  position: absolute;
  bottom: 0;
  width: 100%;
  opacity: 0.8;
}

.teaser__cta--position {
  position: relative;
}

.teaser--flex {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.teaser__cta--red {
  background-color: #cfbcc2;
}

.teaser__description {
  font-weight: 500;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.teaser__cta--green {
  background-color: #bccfc9;
}

.teaser__opinion {
  background-color: var(--white);
  padding: 2rem;
  margin: 2rem 1rem 2rem;
  text-align: justify;
  font-weight: 500;
  font-size: 2rem;
}

section.banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
}
.banner__title {
  text-align: center;
}

footer {
  background-color: black;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 10rem;
}
footer .footer__section {
  color: var(--white);
  font-weight: 500;
  font-size: 2rem;
  margin: 2rem;
}

@media screen and (min-width: 600px) {
  .teasers {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 900px) {
  .teasers {
    grid-template-columns: repeat(3, 1fr);
  }
}
