@charset "UTF-8";
/* SCSS Framework boilerplate from Ristretto: https://github.com/kylelarkin/ristretto */
* {
  box-sizing: border-box;
}

body, select, input, textarea {
  color: #333;
}

::-moz-selection {
  background: #ccc;
  color: #000;
  text-shadow: none;
}

::selection {
  background: #ccc;
  color: #000;
  text-shadow: none;
}

a:link {
  -webkit-tap-highlight-color: transparent;
}

ins {
  background-color: #ccc;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ccc;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

.home-page-card {
  overflow: hidden;
  min-height: 400px;
  position: relative;
}
@media (min-width: 768px) {
  .home-page-card {
    min-height: 450px;
  }
}
.home-page-card:hover .hpc-bg {
  transform: scale(1.05);
}
.home-page-card:before {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 50%);
  content: " ";
  height: 45%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
.home-page-card .hpc-inner {
  display: block;
  height: 100%;
  padding: 3rem;
  position: relative;
  text-decoration: none;
  width: 100%;
  z-index: 10;
}
.home-page-card .hpc-rule-wrapper {
  border-left: 4px solid #fff;
  padding-left: 1rem;
}
.home-page-card .hpc-rule-wrapper.blue {
  border-color: #2AABE2;
}
.home-page-card .hpc-rule-wrapper.orange {
  border-color: #F06421;
}
.home-page-card .hpc-rule-wrapper.red {
  border-color: #E43200;
}
.home-page-card .hpc-rule-wrapper.green {
  border-color: #009245;
}
.home-page-card .hpc-rule-wrapper.yellow {
  border-color: #FBB040;
}
.home-page-card .supertitle {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 0;
  text-transform: uppercase;
}
@media (min-width: 320px) {
  .home-page-card .supertitle {
    font-size: calc(14px + 2 * (100vw - 320px) / 960);
  }
}
@media (min-width: 1280px) {
  .home-page-card .supertitle {
    font-size: 16px;
  }
}
.home-page-card h2 {
  font-size: 32px;
  letter-spacing: 3px;
  position: relative;
  top: 6px;
  text-transform: uppercase;
}
@media (min-width: 320px) {
  .home-page-card h2 {
    font-size: calc(32px + 16 * (100vw - 320px) / 960);
  }
}
@media (min-width: 1280px) {
  .home-page-card h2 {
    font-size: 48px;
  }
}
@media (min-width: 768px) {
  .home-page-card h2 {
    top: 10px;
  }
}
.home-page-card .hpc-bg {
  background-size: cover;
  background-position: center center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 1.25s ease-in-out;
  z-index: 0;
}
