.home-hero {
  width: 1200px;
  display: block;
  margin:  100px auto 50px;
  height: auto;
}

.home-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.home-tile {
  width: 48%;
  text-align: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 50px;
  border-radius: 15px;
  position: relative;
}
.home-tile::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.5);
}
.home-tile.active::after {
  display: none;
}
.home-tile h4 {
  text-transform: uppercase;
  text-align: center;
  color: #F68631;
  font-size: 22px;
  letter-spacing: 1px;
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
.home-tile h2 {
  text-align: center;
  font-size: 100px;
  line-height: 100%;
  color: white;
  font-family: "kensington", sans-serif;
  
  font-weight: 600;
  font-style: normal;
  margin: 50px 0;
}

.home-tile p {
  text-align: center;
  color: white;
  font-size: 18px;
  letter-spacing: 1px;
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.home-tile .button-pill {
  background-color: #F68631;
  border: 1px solid black;
  padding: 10px 0;
  text-align: center;
  color: black;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 30px;
  box-shadow: 2px 2px 0 0 black;
  transition: 0.3s;
  display: block;
  width: 200px;
  margin: 20px auto 0;
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.home-tile .button-pill:hover {
  box-shadow: none;
  transition: 0.3s;
}
@media screen and (max-width: 1250px) {
  .home-hero {
    width: 92%;
  }
  .home-tile h2 {
    font-size: 80px;
    margin: 25px 0;
  }
  .home-tile p {
    font-size: 16px;
  }
}
@media screen and (max-width: 900px) {
  .home-flex {
    justify-content: center;
  }
  .home-tile {
    width: 75%;
  }
  .home-tile:first-of-type {
    margin-bottom: 50px;
  }

}

@media screen and (max-width: 600px) {
.home-hero {
  margin: 50px auto 0;
}
  .home-tile {
    width: 100%;
  }
}
.col-footer img {
  display: block;
  width: 175px;
  margin: 0 auto;
}