@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

@keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

.image-tile {
  position: relative;
  overflow: hidden; }
  .image-tile .button:hover, .image-tile .button:focus, .image-tile .button:active {
    background-color: #000000; }
  .image-tile .image-tile__container {
    min-height: 400px;
    display: flex;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 25px 0;
    text-transform: uppercase; }
    @media (max-width: 1024px) {
      .image-tile .image-tile__container {
        padding: 0; } }
    .image-tile .image-tile__container.text-light .image-tile__text-contents {
      color: #ffffff;
      -webkit-filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.5));
      filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.5)); }
      .image-tile .image-tile__container.text-light .image-tile__text-contents h2,
      .image-tile .image-tile__container.text-light .image-tile__text-contents p {
        -webkit-filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.5));
        filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.5)); }
    .image-tile .image-tile__container.text-light .image-tile__cta .cta {
      -webkit-filter: drop-shadow(1px 1px 2px #000000);
      filter: drop-shadow(1px 1px 2px #000000); }
    .image-tile .image-tile__container.text-light .image-tile__cta.button.button--text {
      -webkit-filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.5));
      filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.5));
      color: #ffffff;
      box-shadow: none; }
      .image-tile .image-tile__container.text-light .image-tile__cta.button.button--text:hover, .image-tile .image-tile__container.text-light .image-tile__cta.button.button--text:focus, .image-tile .image-tile__container.text-light .image-tile__cta.button.button--text:active {
        color: #ff4c00; }
    .image-tile .image-tile__container.text-left {
      flex-direction: row;
      text-align: left; }
    .image-tile .image-tile__container.text-right {
      flex-direction: row-reverse; }
    .image-tile .image-tile__container.text-center .image-tile__text-contents {
      margin: 0 auto; }
  .image-tile .image-tile__text-contents {
    display: flex;
    flex-direction: column;
    width: 60%;
    align-self: center;
    text-align: center;
    color: #000000;
    -webkit-filter: none;
    filter: none; }
    @media (max-width: 1024px) {
      .image-tile .image-tile__text-contents {
        width: 100%;
        align-self: flex-end;
        color: #ffffff; } }
    .image-tile .image-tile__text-contents h2 {
      font-size: 2.25rem;
      line-height: 1.1; }
      @media (max-width: 768px) {
        .image-tile .image-tile__text-contents h2 {
          font-size: 2rem; } }
    .image-tile .image-tile__text-contents h3 {
      margin-bottom: 10px;
      font-size: 4rem; }
    .image-tile .image-tile__text-contents p {
      margin: 0 0 10px;
      font-size: 1.75rem;
      line-height: 1.1; }
      @media (max-width: 1024px) {
        .image-tile .image-tile__text-contents p {
          text-align: center; } }
  .image-tile .image-tile__text-description {
    font-weight: 500; }
  .image-tile .image-tile__cta {
    margin-top: 1em; }
