/* Base modules */
/* Basic styles */
/* Primary colors */
/* Neutral colors */
/* Typgraphy */
/* Additional tools */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  background-color: rgba(0, 0, 0, 0.05);
  font-family: Poppins;
  font-size: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.header__title {
  font-size: 23px;
  font-weight: 200;
  margin: 20px 5px;
}

.header__title--highlight {
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header__content {
  color: #a3a5ae;
  margin: 15px 10px 30px 10px;
}

.card {
  background-color: #ffffff;
  border-radius: 5px;
  -webkit-box-shadow: 0 10px 6px -6px #777;
          box-shadow: 0 10px 6px -6px #777;
  height: 250px;
  margin: 20px;
  padding: 20px;
  text-align: left;
}

.card__title {
  font-weight: 700;
  color: #4c4e61;
}

.card__paragraph {
  color: #a3a5ae;
  font-weight: 400;
}

.card--cyan {
  background: content-box bottom right no-repeat url("../images/icon-supervisor.svg"), #ffffff;
  border-top: 4px solid #45d3d3;
}

.card--red {
  background: content-box bottom right no-repeat url("../images/icon-team-builder.svg"), #ffffff;
  border-top: 4px solid #ea5353;
}

.card--orange {
  background: content-box bottom right no-repeat url("../images/icon-karma.svg"), #ffffff;
  border-top: 4px solid #fcaf4a;
}

.card--blue {
  background: content-box bottom right no-repeat url("../images/icon-calculator.svg"), #ffffff;
  border-top: 4px solid #549ef2;
}

.footer {
  font-size: 12px;
  margin: 10px;
}

.footer__paragraph {
  color: #a3a5ae;
}

.footer__link {
  color: #4c4e61;
  text-decoration: none;
}

@media only screen and (min-width: 1300px) {
  body {
    margin: 10px 50px;
  }
  .main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .single-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 33.333%;
  }
  .double-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 33.333%;
  }
}
/*# sourceMappingURL=style.css.map */