@charset "UTF-8";
/* Colors */
.news {
  padding: 1.5rem 1.5rem;
}
@media (min-width: 48em) {
  .news {
    padding: 3rem 1rem;
  }
}
@media (min-width: 81.25em) {
  .news {
    padding: 3.5rem 0;
  }
}
@media (min-width: 100em) {
  .news {
    padding: 4rem 0;
  }
}
@media (min-width: 112.5em) {
  .news {
    padding: 5rem 0;
  }
}

/* SASS mixin start */
.hero-alert-text {
  font-family: "Fjalla One", sans-serif;
  line-height: 1.3;
}

.hero-alert-text {
  font-size: 1.333rem;
  font-size: calc(17.064px + (21.328 - 17.064) * (100vw - 768px) / (1600 - 768));
}
@media screen and (max-width: 768px) {
  .hero-alert-text {
    font-size: 1.0665rem;
  }
}
@media screen and (min-width: 1600px) {
  .hero-alert-text {
    font-size: 1.333rem;
  }
}

.news {
  background: #02225C;
  width: 100%;
  border-radius: 1rem;
  margin: 1rem auto;
}
@media (min-width: 48em) {
  .news-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-line-pack: stretch;
        align-content: stretch;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
    margin: 2rem auto;
  }
}
@media (min-width: 100em) {
  .news-grid {
    margin: 3rem auto;
  }
}
@media (min-width: 48em) {
  .news-item {
    width: calc(50% - 2rem) !important;
  }
}

.hero-alert {
  background: -webkit-gradient(linear, left top, right top, from(#A64A65), to(#E54B4B));
  background: linear-gradient(90deg, #A64A65, #E54B4B);
  padding: 0.55rem 1rem 0.5rem;
  margin: 0.5rem auto 0;
  width: calc(100% - 2rem);
  max-width: 81.25em;
  border-radius: 0.5rem;
}
@media (min-width: 81.25em) {
  .hero-alert {
    margin-top: 1rem;
  }
}
.hero-alert-wrap {
  width: 100%;
  position: absolute;
  left: 0;
  top: 120px;
  z-index: 500;
  text-align: center;
}
.hero-alert-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: stretch;
      align-content: stretch;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.hero-alert-grid:hover .hero-alert-cta {
  background: #fff;
  color: #E54B4B;
}
.hero-alert-text {
  font-family: "Fjalla One", sans-serif;
  color: #fff;
  padding: 0.25rem 0 0 0;
  line-height: 1.3;
  text-transform: uppercase;
}
.hero-alert-cta {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  padding: 0.55rem 0.75rem 0.5rem;
  text-transform: uppercase;
  font-family: "Fjalla One", sans-serif;
  color: #fff;
  margin-top: 0.5rem;
  -webkit-transition: 0.3s all cubic-bezier(0.57, 0.2, 0.21, 0.89);
  transition: 0.3s all cubic-bezier(0.57, 0.2, 0.21, 0.89);
}
@media (min-width: 48em) {
  .hero-alert-cta {
    margin-top: 0;
    margin-left: 1rem;
  }
}