

/* ************************************** */
/* Banner                                 */
/* ************************************** */

.banner {
  color: white;

  min-width: 100%;
  height: 40vh;
  padding: 2rem;
  box-sizing: border-box;

  background-image: url('../images/rainbow-vortex.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: center;
  position: relative;
}

.banner button {
  background-color: #f7a542;
  font-weight: bold;
  border: none;
  border-radius: 0.2rem;
  outline: none;
  cursor: pointer;

  padding: 0.1rem;
  width: 8rem;
  height: 2rem;
}


/* ************************************** */
/* Section main                           */
/* ************************************** */

.main-section {
  width: 90%;
  padding: 1rem 0;

  display: flex;
  flex-direction: column;
}


/* ************************************** */
/* Article - What we do                   */
/* ************************************** */

.article-what-we-do {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: 50% 50%;
  grid-template-areas:
    ". ."
    ". ."
  ;
}

@media (min-width: 768px) {
  .article-what-we-do {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    grid-template-areas:
      ". . . ."
    ;
  }
}

.card {
  border-radius: 10px;
  height: 9rem;
  max-width: 20rem;
  padding: 0.5rem;
}

.card-upper {
  border: 0.1rem #234477 solid;
  background-color: #133364;
  color: white;
  border-radius: 10px 10px 0 0;

  height: 4rem;

  display: flex;
  align-items: center;
  justify-content: center;
}

.card-bottom {
  border: 0.1rem #234577 solid;
  background-color: white;

  height: 5rem;
  padding: 0 1rem;

  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 10px 10px;
}

figure {
  max-width: 400px;
  /* margin: 1.5rem auto; */
  /* text-align: center; */
}

figcaption {
  font-size: 0.9rem;
  color: #555;
  margin-top: 0.5rem;
}

.img-float img {
  width: 100%;
  max-width: 768px;
}

.img-float {
  width: auto;
  padding: 2rem;
}

@media (min-width: 1024px) {
  .img-float {
    float: left;
  }
}

.article-mission-statement {
  display: flex;
  justify-content: left;
}

