/* BASE COLOURS */
/* Project Colours - primary */
/* THEME COLOURS */
/* pt to px */
/* FONTS STACKS */
.tile-presenter {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  background: #FBFBFB;
  border: solid 1px #EBEBEB;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}
.tile-presenter .content {
  display: flex;
  flex-direction: column;
}
.tile-presenter .image {
  width: 100%;
}
.tile-presenter .image picture {
  width: 100%;
  display: block;
  padding-bottom: 100%;
  height: 0;
  position: relative;
  overflow: hidden;
  -webkit-border-radius: 8px 8px 0 0;
  -moz-border-radius: 8px 8px 0 0;
  border-radius: 8px 8px 0 0;
}
.tile-presenter .image img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-position: top center;
  object-fit: cover;
  -webkit-border-radius: 8px 8px 0 0;
  -moz-border-radius: 8px 8px 0 0;
  border-radius: 8px 8px 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.tile-presenter .text {
  padding: 16px;
}
.tile-presenter .text p:last-of-type {
  margin: 0;
}
.tile-presenter .cta {
  padding: 0 20px 20px 20px;
}

@media (max-width: 767.98px) {
  .tile-presenter .cta .btn,
  .tile-presenter .cta .button,
  .tile-presenter .cta input[type=submit],
  .tile-presenter .cta input[type=button],
  .tile-presenter .cta button {
    width: auto;
  }
  .tile-presenter .cta .btn-wrapper {
    text-align: left;
  }
}
@media (min-width: 768px) {
  .tile-presenter .text {
    padding: 24px;
  }
  .tile-presenter .cta {
    padding: 0 24px 24px 24px;
  }
}

/*# sourceMappingURL=tile-presenter.css.map */
