header {

}

.pbb-header {
  display: flex;
  flex-direction: column;
}

.pbb-header--top {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}

.pbb-header--top-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  padding: 1rem;
}

.pbb-header--top-text-box {
  margin: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.pbb-header--top-text-box h1 {
  font-size: 4rem;
  margin-bottom: 2rem;
}

.pbb-header--top-text-box p {
  margin-top: 0.5rem;
}

.pbb-header--top-text-box a {
  margin-top: 1rem;
}

.pbb-header--top-image {
  display: flex;
  justify-content: center;
  align-content: center;
  width: 100%;
}

.pbb-header--top-image img {
  width: 90%;
  height: auto;
  align-self: center;
}

.pbb-header--bottom {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.pbb-header--bottom-links {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  width: 100%;
}

.pbb-header--bottom-links a {
  margin-top: 1rem;
  margin-bottom: 1rem;
  color: var(--dark);
  font-size: 1.5rem;
}

.pbb-testimonial {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  background: #555555;
}

.pbb-testimonial--title {
  display: flex;
  flex-direction: row;
  justify-content: center;
  color: var(--odd);
  margin-top: 3rem;
  text-align: center;
}

.pbb-testimonial--content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
}

.pbb-testimonial--content-box {
  background: var(--odd);
  width: 100%;
  height: auto;
  padding: 1rem;
  text-align: center;
  margin: 1rem 0;
}

.pbb-comment {
  margin-top: 1.5rem;
}

.pbb-author {
  margin-top: 1rem;
  font-size: 1.2rem;
}

.pbb-source {
  font-size: 0.8rem;
}

.pbb-description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
}

.pbb-description--title {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 3rem;
  text-align: center;
  padding-left: 1rem;
  padding-right: 1rem;
}

.pbb-description--text {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: center;
  margin: 1rem auto;
  width: 100%;
  padding: 1rem;
}

.pbb-description--box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
}

.pbb-description--box-image {
  padding: 1rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.pbb-description--box-image img {
  width: 100%;
  height: auto;
}

.pbb-description--box-text {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-content: center;
}

.pbb-description--box-text-sub {
  display: flex;
  flex-direction: column;
}

.pbb-description--box-text-sub-image {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 1rem;

}

.pbb-description--box-text-sub-image img {
  height: 50%;
  width: auto;
}

.pbb-description--box-text-sub-textbox {
  padding: 1rem;
}

.pbb-advantages {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  background: var(--dark);
  color: white;
}

.pbb-advantages--title {
  color: white;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: center;
  margin-top: 3rem;
}

.pbb-advantages--content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
}

.pbb-advantages--content-left,
.pbb-advantages--content-right {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-content: center;
  width: 100%;
}

.pbb-advantages--box-text-sub {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.pbb-advantages--box-text-sub-image,
.pbb-advantages--box-text-sub-textbox {
  margin: 1rem;
}

.pbb-advantages--box-text-sub-image {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.pbb-advantages--box-text-sub-image img {
  width: 80px;
  height: auto;
}

.pbb-corona-offer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: center;
}

.pbb-corona-offer--box {
  margin: 1rem;
  background: var(--dark);
  width: 400px;
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-content: center;
  text-align: center;
  color: white;
  padding: 1rem;
}

.pbb-corona-offer--box h3 {
  font-size: 2rem;
}

.pbb-corona-offer--box p {
  font-size: 1.4rem;
}


.pbb-button {
  border: 2px solid #CDDB02;
  border-radius: 5px;
  padding: 0.5rem;
  font-size: 1rem;
  background: #CDDB02;
  color: var(--dark);
}

.pbb-button:hover,
.pbb-button:active {
  border: 2px solid var(--dark);
}

.pbb-icon {
  color: #CDDB02;
  font-size: 5rem;
}

@media (min-width: 640px) {
  .pbb-header {
    display: flex;
    flex-direction: column;
  }

  .pbb-header--top {
    display: flex;
    flex-direction: row;
  }

  .pbb-header--top-text {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    padding: 4rem;
  }

  .pbb-header--top-text-box {
    margin: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .pbb-header--top-image {
    display: flex;
    justify-content: center;
    align-content: center;
    width: 50%;
    min-height: 80vh;
  }

  .pbb-header--bottom {
    display: flex;
    flex-direction: row;
    justify-content: center;
    height: 15%;
  }

  .pbb-header--bottom-links {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 80%;
    height: 10vh;
  }

  .pbb-header--bottom-links a {
    margin-top: 1rem;
    margin-bottom: 0;
    color: var(--dark);
    font-size: 1.5rem;
  }

  .pbb-testimonial--content {
    flex-direction: row;
  }

  .pbb-description--text {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    margin: 1rem auto;
    width: 70%;
    padding: 0;
  }

  .pbb-description--box {
    flex-direction: row;
  }

  .pbb-description--box-text-sub {
    flex-direction: row;
  }

  .pbb-advantages--content {
    flex-direction: row;
  }

  .pbb-advantages--content-left,
  .pbb-advantages--content-right {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-content: center;
    width: 50%;
    margin: 2rem;
  }

  .pbb-advantages--box-text-sub {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 1rem;
  }

  .pbb-corona-offer--box {
    margin: 3rem 0 0;
  }

  .pbb-testimonial--content-box {
    background: var(--odd);
    width: 300px;
    height: auto;
    margin: 2rem;
    padding: 1rem;
    text-align: center;
  }

  .pbb-description--box-image {
    padding: 1rem;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .pbb-description--box-image img {
    width: 75%;
    height: auto;
  }
}
