html,
body {
  font: 16px Open sans, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.section {
  height: 2vh;
}

.icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.header {
  display: flex;
  align-items: center;
  padding-top: 3.375em;
  background-color: currentColor;
  background: rgb(249, 250, 251);
  background: linear-gradient(
    90deg,
    rgba(249, 250, 251, 1) 0%,
    rgba(249, 250, 251, 1) 35%,
    rgba(249, 250, 251, 1) 100%
  );
}
@media (max-width: 43.75em) {
  .header {
    text-align: center;
  }
}
.header .container {
  max-width: 100%;
}
.header__top {
  display: flex;
  align-items: center;
  margin-top: -100px;
}
.header__top a {
  position: absolute;
  /* top: 85%; */
  left: 50%;
  margin-top: 14em;
  font-size: 2.2rem;
  transform: translate(-50%, -50%);
  text-transform: uppercase;
}
@media (max-width: 43.75em) {
  .header__top {
    flex-direction: column-reverse;
  }
  .header__top a {
    font-size: 1rem;
    margin-top: -1em;
  }
}
.header__top .icon {
  width: 1.25em;
  height: 1.25em;
  margin-right: 0.625em;
}
.header__logo {
  width: 100%;
}
@media (max-width: 43.75em) {
  .header__logo {
    margin: 5.25em 0 0;
  }
}
.header__title__small,
.header__link,
.header__blurb {
  color: rgba(255, 255, 255, 0.7);
}
.header__title {
  margin: 0 0 0.3611111111em;
  font-weight: normal;
  font-size: 2.25rem;
}
.header__title__big {
  display: block;
  font-size: 4.5rem;
}
@media (max-width: 43.75em) {
  .header__title__big {
    font-size: 2.2rem;
    font-weight: 600;
  }
  .header__title__strong {
    display: none;
  }
  .header__link {
    font-size: 1.5rem;
  }
}
.header__title__strong {
  font-size: 2.2rem;
  font-weight: bold;
  color: #343a40;
}
.header__link {
  display: inline-flex;
  align-items: center;
  transition: 0.25s;
  color: #343a40;
}
.header__link:hover,
.header__link:focus {
  color: white;
  text-decoration: none;
}
.header__link:active {
  color: rgba(255, 255, 255, 0.4);
  transition: 0s;
}
.header__blurb {
  margin: 2.5em 0;
  font-size: 1.5rem;
  line-height: 1.5;
}
.header__tiles {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  /* margin-bottom: -62px; */
  background: rgb(249, 250, 251);
  background: linear-gradient(
    90deg,
    rgba(249, 250, 251, 1) 0%,
    rgba(249, 250, 251, 1) 35%,
    rgba(249, 250, 251, 1) 100%
  );
  box-shadow: inset 0 0 0 1px rgb(168, 168, 158),
    0 10px 30px rgba(0, 0, 0, 0.15);
}
.header__tile {
  flex: 1;
  height: 100%;
  position: relative;
  padding: 2em 1em;
  font-size: 1.25em;
  white-space: nowrap;
  color: #555;
  border: 1px solid transparent;
}
@media (max-width: 62em) {
  .header__tile {
    flex-basis: 50%;
  }
}
@media (max-width: 30em) {
  .header__tile {
    flex-basis: 100%;
  }
}
.header__tile::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: 0.3s;
}
.header__tile > span {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  position: relative;
  font-size: 20px;
  font-weight: bold;
}
.header__tile:hover,
.header__tile:focus {
  color: inherit;
  text-decoration: none;
  outline: none;
}
.header__tile:hover > span,
.header__tile:focus > span {
  z-index: 1;
}
/* .header__tile:hover .icon,
.header__tile:focus .icon {
  color: currentColor;
} */
@media (min-width: 49.4375em) {
  .header__tile:hover::before,
  .header__tile:focus::before {
    z-index: 1;
    transform: scale(1.15);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
  }
  .header__tile:active::before {
    transition: 0.1s;
    transform: scale(1.2);
  }
}
.header__tile .icon {
  width: 42px;
  height: 42px;
  margin-right: 0.75em;
  color: #ccc;
  transition: 0.3s;
}

.tile-world {
  background-color: lightblue;
  color: whitesmoke;
}

.tile-world:hover::before,
.tile-world:focus::before {
  background-color: lightblue;
  color: whitesmoke;
  border-radius: 5px;
}

.tile-business {
  background-color: #4ca64c;
  color: whitesmoke;
}
.tile-business:hover::before,
.tile-business:focus::before {
  background-color: #4ca64c;
  color: whitesmoke;
  border-radius: 5px;
}

.tile-mall {
  background-color: orange;
  color: whitesmoke;
}
.tile-mall:hover::before,
.tile-mall:focus::before {
  background-color: orange;
  color: whitesmoke;
  border-radius: 5px;
}

.tile-talent {
  background-color: #ff4c4c;
  color: whitesmoke;
}
.tile-talent:hover::before,
.tile-talent:focus::before {
  background-color: #ff4c4c;
  color: whitesmoke;
  border-radius: 5px;
}
