/* stylelint-disable order/properties-alphabetical-order */
/* stylelint-enable */
@font-face {
  font-family: "GT-America";
  src: url("../../../../assets/fonts/GT-America-Standard-Regular.eot");
  src: url("../../../../assets/fonts/GT-America-Standard-Regular.eot?#iefix") format("embedded-opentype"), url("../../../../assets/fonts/GT-America-Standard-Regular.woff2") format("woff2"), url("../../../../assets/fonts/GT-America-Standard-Regular.woff") format("woff"), url("../../../../assets/fonts/GT-America-Standard-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
.hero {
  width: calc(100%);
  float: left;
  margin-left: 0;
  align-items: center;
  display: flex;
  height: 66vh;
  justify-content: center;
  min-height: 400px;
}

.hero h1 {
  font-size: 30px;
}
@media only screen and (min-width: 768px) {
  .hero h1 {
    font-size: 36px;
  }
}

.hero a {
  color: inherit;
  border-bottom: 2px solid;
}

.hero br {
  display: none;
}
@media only screen and (min-width: 768px) {
  .hero br {
    display: block;
  }
}

.news {
  margin-bottom: 1em;
  padding-left: 1.25em;
  position: relative;
  color: inherit;
  display: flex;
  align-items: center;
}
.news:before {
  -webkit-animation: pulse 2s infinite alternate;
          animation: pulse 2s infinite alternate;
  background-color: #111;
  border-radius: 50%;
  content: "";
  height: 0.5em;
  margin-left: -1.25em;
  position: absolute;
  transition: 3s background-color ease;
  width: 0.5em;
}
.news span {
  color: #D3D4DA;
  margin-left: 0.75em;
}

.reel {
  width: calc(100%);
  float: left;
  margin-left: 0;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (min-width: 480px) {
  .reel {
    margin-left: -30px;
    margin-right: -30px;
    width: calc(100% + 60px);
  }
}

.reel-item {
  width: calc(100%);
  float: left;
  margin-left: 0;
  margin-bottom: 40px;
}
@media only screen and (min-width: 480px) {
  .reel-item {
    width: calc(50% - 45px);
    float: left;
    margin-left: 30px;
  }
}
@media only screen and (min-width: 768px) {
  .reel-item {
    width: calc(25% - 37.5px);
    float: left;
    margin-left: 30px;
    margin-bottom: 0;
  }
}
.reel-item img {
  max-width: 100%;
  width: 100%;
}

.reel-item:hover > .item-info {
  opacity: 1;
  visibility: visible;
}

.item-info {
  font-size: 16px;
  margin-top: 5px;
  transition: all 0.6s ease;
}
@media only screen and (min-width: 768px) {
  .item-info {
    opacity: 0;
    visibility: hidden;
  }
}

.item-info h3 {
  font-size: inherit;
  margin: 0;
}

.item-link {
  color: #D3D4DA;
}