/* ----------------------------------------- *\
   -------- COLORS, VARIABLES, MQ ----------
\* ----------------------------------------- */
/* ----------------------------------------- *\
	------------ MEDIA QUERIES -------------
\* ----------------------------------------- */
/* ----------------------------------------- *\
	--------------- MIXINS -----------------
\* ----------------------------------------- */
body {
  padding: 0;
  margin: 0;
  background: #f1f2f2;
  font-family: 'Roboto';
}
/* ----------------------------------------- *\
	--------------- HELPERS ----------------
\* ----------------------------------------- */
.blue {
  color: #5288be;
}
.text-uppercase {
  text-transform: uppercase;
}
/* ----------------------------------------- *\
	------------- BASE STYLES --------------
\* ----------------------------------------- */
h1 {
  font-weight: 300;
  font-size: 24px;
}
.wrapper {
  max-width: 880px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 880px) {
  .wrapper {
    box-sizing: border-box;
    padding: 0 15px;
  }
}
.button {
  display: inline-block;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  padding: 20px 40px;
}
.button.button--orange {
  background-color: #ff6400;
  color: #ffffff;
}
/* ----------------------------------------- *\
	------------- PAGE STYLING -------------
\* ----------------------------------------- */
.header .header__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 880px;
  width: 100%;
  margin: 0 auto;
  padding: 20px 0;
}
@media screen and (max-width: 470px) {
  .header .header__row {
    flex-flow: row wrap;
  }
  .header .header__row h1 {
    width: 100%;
    order: 2;
    text-align: center;
  }
  .header .header__row img {
    max-width: 180px;
    width: 100%;
    margin: 0 auto 20px;
    order: 1;
  }
}
.header-strip {
  padding: 20px 0;
  background-color: #3055ff;
}
.header-strip p {
  color: #ffffff;
  font-size: 18px;
  line-height: 26px;
}
.tiles {
  margin-top: 60px;
}
.tiles .tiles__row {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 600px) {
  .tiles .tiles__row {
    flex-flow: row wrap;
  }
}
.tiles .tile {
  padding: 40px 0;
  box-sizing: border-box;
  flex-basis: 48%;
  text-align: center;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 600px) {
  .tiles .tile {
    flex-basis: 100%;
  }
}
.tiles .tile .tile__info {
  padding: 0 40px;
  color: #5288be;
}
.tiles .tile .tile__info p {
  margin-bottom: 50px;
}
.tiles .tile .tile__info .text-uppercase {
  display: block;
  margin-top: 7px;
  font-size: 20px;
  font-weight: bold;
}
.tiles .tile .tile__image {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  height: 60px;
}
.tiles .tile .tile__image img {
  display: block;
  max-width: 60px;
  width: 100%;
  margin: 0 auto;
}
.tiles .tile .tile__name {
  margin-bottom: 40px;
  font-size: 16px;
  color: #5288be;
}
.tiles .tile .tile__name strong {
  display: inline-block;
  margin-top: 5px;
  text-transform: uppercase;
  font-size: 20px;
}
.tiles .tile .tile__desc {
  font-size: 14px;
}
.tiles .tile .tile__desc .orange {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #f4792a;
}
.tiles .tile .tile__note {
  color: #999999;
  margin-bottom: 45px;
}
.availability {
  margin-top: 90px;
}
.availability .availability__row {
  display: flex;
}
@media screen and (max-width: 620px) {
  .availability .availability__row {
    flex-flow: row wrap;
  }
}
.availability .availability__col {
  margin-right: 50px;
}
@media screen and (max-width: 620px) {
  .availability .availability__col {
    margin-right: 0;
    flex-basis: 100%;
  }
}
.availability .availability__col ul {
  list-style: none;
  padding-left: 0;
}
.availability .availability__col ul li {
  color: #5288be;
  padding-bottom: 10px;
}
.coverage {
  margin: 70px 0 30px;
}
.coverage p {
  line-height: 24px;
  color: #999999;
}
.coverage a {
  color: #5288be;
}
.phone-number {
  margin-bottom: 80px;
}
.phone-number p {
  font-size: 24px;
  font-weight: 300;
}
