* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

canvas {
  z-index: -1;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    margin-top: 40%;
  }
  to {
    opacity: 1;
    margin-top: 0;
  }
}

@keyframes slideLeft {
  from {
    opacity: 0;
    margin-left: -40%;
  }
  to {
    opacity: 1;
    margin-left: 0;
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    margin-right: -40%;
  }
  to {
    opacity: 1;
    margin-right: 0;
  }
}


@keyframes animate { 
  0% { 
      left: 0; 
  } 

  50% { 
      left: 100%; 
  } 
}

.slide-up {
  animation: slideUp 1.5s;
}

.slide-left {
  animation: slideLeft 1.5s; 
}

.slide-right {
  animation: slideRight 1.5s;
}

.animate-qoute {
  animation: slideLeft 1.5s;
}

.material-icons {
  cursor: pointer;
}

li {
  list-style-type: none;
}

.landing-page {
  overflow-x: hidden;
}

.landing-page__photo-credit {
  font-style: italic;
  font-size: .9em;
  font-weight: bold;
}

.landing-page__virus {
  position: relative;
  display: none;
}

@media(min-width: 900px) {
  .landing-page__virus {
    display: block;
  }
}

.landing-page__virus--left {
  left: -80%;
  top:30%;
  height: 150px;
  width: 150px;
}

.landing-page__virus--right {
  height: 100px;
  width: 100px;
  right: 20%;
  top: 12%;
}

.landing-page__hero {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: center;
  height: 400px;
}

@media(min-width: 900px) {
  .landing-page__hero {
    height: 600px;
  }
}

.landing-page__hero__wrapper {
  height: 60vh;
  width: 100vw;
}

.landing-page__hero__image {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.landing-page__hero__content {
  height: auto;
  max-width: 500px;
  position: absolute;
  top: 40px;
  text-align: center;
  width: 90%;
  z-index: 5;
}

@media(min-width: 900px) {
  .landing-page__hero__content {
    top: 120px;
    width: 100%;
  }
}

.landing-page__hero__title {
  font-size: 60px;
  color: #1f7f9b;
  font-family: 'GT-Super-bold';
}

@media(min-width: 900px) {
  .landing-page__hero__title {
    font-size: 80px;
  }
}

.landing-page__hero__subtitle {
  font-size: 30px;
  font-style: italic;
  padding: 20px 0 30px;
  color: #c7531e;
  font-family: 'Calluna';
  word-wrap: none;
}

@media(min-width: 900px) {
  .landing-page__hero__subtitle {
    font-size: 40px;
  }
}

.landing-page__featured-stories {
  min-height: 750px;
  padding-top: 50px;
}

.landing-page__featured-stories__wrapper {
  max-width: 700px;
  width: 90%;
  height: auto;
  margin: 0 auto;
}

@media(min-width: 600px) {
  .landing-page__featured-stories__wrapper {
    height: 600px;
    width: 100%;
  }
}

.landing-page__featured-stories__grid {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}

@media(min-width: 600px) {
  .landing-page__featured-stories__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(10, 10%);
    grid-gap: 20px;
  }
}

@media(max-width: 899px) {
  .landing-page__featured-stories__grid-item {
    margin: 20px;
  }
} 

.landing-page__story--one:hover, .landing-page__story--one:hover .landing-page__story--one h3 {
  text-decoration-color: #c7531e;
  text-decoration: underline;
}

.landing-page__story--two:hover, .landing-page__story--two:hover .landing-page__story--two h3 {
  text-decoration-color: #c7531e;
  text-decoration: underline;
}

.landing-page__story--three:hover, .landing-page__story--three:hover .landing-page__story--three h3 {
  text-decoration-color: #c7531e;
  text-decoration: underline;
}

.landing-page__featured-stories__grid-item--one {
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 9;
}

.landing-page__featured-stories__grid-item--two {
  grid-column-start: 3;
  grid-column-end: 5;
  grid-row-start: 1;
  grid-row-end: 5;
}

.landing-page__featured-stories__grid-item--three {
  grid-column-start: 3;
  grid-column-end: 5;
  grid-row-start: 5;
  grid-row-end: 10;
}

.landing-page__featured-stories__grid-item__wrapper {
  height: 100%;
  text-align: center;
  transition: 1s all;
  cursor: pointer;
}

.landing-page__featured-stories__link {
  text-decoration: none;
  color: black;
}

.landing-page__featured-stories__grid-item__story-image__wrapper {
  transition: 0.5s ease;
  margin-bottom: 20px;
  overflow: hidden;
}

.landing-page__featured-stories__grid-item__story-image__wrapper:hover img {
  transform: scale(1.1);
}

.landing-page__featured-stories__grid-item__story-image {
  object-fit: cover;
  object-position: top;
  width: 100%;
  height: 250px;
  position: relative;
  z-index: -1;
  transition: 1s all;
}

@media(min-width: 600px) {
  .landing-page__featured-stories__grid-item__story-image {
    height: 100%;
  }
}

@media(min-width: 900px) {
  .landing-page__featured-stories__grid-item__story-image {
    height: 100%;
  }
}


.landing-page__featured-stories__grid-item--one__image-wrapper {
  height: 63%;
  width: 100%;
}

.landing-page__featured-stories__grid-item--two__image-wrapper {
  height: 60%;
}

.landing-page__featured-stories__grid-item--three__image-wrapper {
  height: 60%;
}

.landing-page__featured-stories__grid-item__category {
  color: #c7531e;
  font-size: 18px;
  font-family: 'Benton Sans Reg', sans-serif;
  text-transform: uppercase;
}

.landing-page__featured-stories__grid-item__title {
  font-size: 24px;
  transition: ease 5s;
  width: 80%;
  margin: 10px auto 0;
  font-family: 'GT-Super-bold';
}

.landing-page__featured-stories__grid-item__desription {
  font-size: 18px;
  margin-top: 10px;
  font-family: 'Benton Sans Reg', sans-serif;
}
.neuro h3 {
  padding: 0;
}
.neuro p {
  font-family: 'Benton Sans Reg', sans-serif;
  font-size: .9rem;
  line-height: 1.2rem;
  padding-top: 10px;
}
.neuro a {
  font-family: 'Benton Sans Med', sans-serif;
}
.landing-page__stretched-image {
  height: 500px;
  width: 100vw;
}

.landing-page__stretched-image__image-wrapper {
  background-color: gray;
  height: 100%;
}

.landing-page__stretched-image__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}

@media(min-width: 900px) {
  .landing-page__stretched-image__image {
    object-position: center;
  }
}

.landing-page__qoute__button {
  height: 30px;
  position: absolute;
  width: 100%;
  top: -7px;
  cursor: pointer;
}

.landing-page__stretched-image__qoute {
  background-color: rgba(255, 255, 255, 0.8);
  width: auto;
  height: 0px;
  position: relative;
  bottom: 100%;
  margin: 0 auto;
  transition: height 1s;
  border-bottom: 15px solid #c7531e;
}

@media(min-width: 900px) {
  .landing-page__stretched-image__qoute {
    width: 400px;
  }
}

.landing-page__stretched-image__qoute__copy {
  display: none;
  text-align: center;
  font-family: 'Benton Sans Reg', sans-serif;
  padding: 30px 15px 15px;
}

.landing-page__stretched-image__qoute__source {
  font-family: 'Benton Sans Reg', sans-serif;
  text-align: center;
  display: none;
  font-size: .9em;
}

.landing-page__subscribe__wrapper {
  display: flex;
  /* flex: 0 1 100%; */
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 700px;
  width: 90vw;
  height: auto;
  position: relative;
  top: -80px;
  z-index: 10;
  background-color: white;
  border: solid 1px rgba(128, 128, 128, 0.2);
  /* box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22); */
}

@media(min-width: 600px) {
  .landing-page__subscribe__wrapper {
    flex-wrap: nowrap;
  }
}

@media(min-width: 900px) {
  .landing-page__subscribe__wrapper {
    width: 100%;
  }
}

.landing-page__subscribe__column {
  width: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  margin: 0 auto;
}

.landing-page__subscribe__content {
  text-align: center;
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: 90%;
}

.landing-page__subscribe__poster-wrapper {
  width: 256px;
  margin: 0 auto;
}

.landing-page__subscribe__poster {
  object-fit: cover;
  height: 100%;
  width: 100%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.landing-page__subscribe__title {
  font-size: 42px;
  font-family: 'GT-Super-bold';
  text-align: left;
}

.landing-page__subscribe__description {
  padding-bottom: 20px;
  font-family: 'Benton Sans Reg', sans-serif;
  width: 90%;
  margin: 20px 0 0;
  text-align: left;
}

.landing-page__subscribe__pdf-download {
  color: #c7531e;
  text-decoration: none;
  padding-top: 20px;
  font-family: 'Benton Sans Reg', sans-serif;
  max-width: 150px;
  margin: 0 auto;
  transition: .3s all;
}

.landing-page__subscribe__pdf-download:hover {
  box-shadow: inset 0 -1px 0 #c7531e;
}

.landing-page__stories-carousel {
  background-color: rgba(128, 128, 128, 0.2);
  height: 500px;
  width: 100vw;
  position: relative;
  top: -140px;
}

.landing-page__stories-carousel__carousel {
  height: 60%;
  width: 100%;
  margin: 0 auto;
  position: relative;
  top: 30%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  overflow: hidden;
}

.landing-page__stories-carousel__carousel__wrapper {
  max-width: 500px;
  display: flex;
  flex-direction: row;
  overflow-x: scroll;
  scroll-behavior: smooth;
}

@media(min-width: 900px) {
  .landing-page__stories-carousel__carousel__wrapper {
    overflow: hidden;
  }
}

@media(min-width: 1100px) {
  .landing-page__stories-carousel__carousel__wrapper {
    max-width: 730px;
  }
}

.landing-page__stories-carousel__forward, .landing-page__stories-carousel__back {
  position: absolute;
  top: 30%;
  transform: scale(1.6);
  color: grey;
  cursor: pointer;
  display: none !important;
}

@media(min-width: 900px) {
  .landing-page__stories-carousel__forward, .landing-page__stories-carousel__back {
    display: block !important;
  }
}

.landing-page__stories-carousel__forward {
  right: 15%;
}

.landing-page__stories-carousel__back {
  left: 15%;
}

.landing-page__stories-carousel__carousel-item {
  height: 70%;
  width: 180px;
  text-align: center;
  margin: 0 10px;
}

@media(min-width: 600px) {
  .landing-page__stories-carousel__carousel-item {
    margin: 0 30px;
  }
}

.landing-page__stories-carousel__carousel-item:nth-child(7) {
  padding-right: 15px;
}

@media(min-width: 900px) {
  .landing-page__stories-carousel__carousel-item:nth-child(7) {
    padding-right: 50px;
  }
}

@media(min-width: 900px) {
  .landing-page__stories-carousel__carousel-item {
    margin: 0 45px;
  }
}

.landing-page__stories-carousel__link {
  text-decoration: none;
}

.landing-page__stories-carousel__link:hover figure, .landing-page__stories-carousel__link:hover p{
  transform: scale(1.1);
  transition: 1s all;
  text-decoration: underline;
}

.landing-page__stories-carousel__image-wrapper {
  height: 163px;
  width: max-content;
  margin: 0 auto;
}

.landing-page__stories-carousel__image {
  height: 100%;
  object-fit: cover;
}

.landing-page__stories-carousel__label {
  padding-top: 20px;
  font-size: 16px;
  color: #c7531e;
  font-family: 'Benton Sans Reg', sans-serif;
}

.landing-page__stories-carousel__title {
  padding-top: 10px;
  color: black;
  font-family: 'GT-Super-bold'
}

.landing-page__story-qoute {
  position: relative;
  top: -163px;
  margin-bottom: -177px;
}

.quote-expanded {
  height: auto;
}

.landing-page__story-qoute__wrapper {
  margin: 0 auto;
  width: 90%;
}

@media(min-width: 900px) {
  .landing-page__story-qoute__wrapper {
    width: 70%;

  }
}

.landing-page__story-qoute__qoutation-mark {
  height: 100px;
  width: 100px;
  margin: 0 auto;
}

.landing-page__story-qoute__qoutation-mark--top {
  border-bottom: 10px solid #c7531e;
  display: flex;
  flex-direction: column;
}

.landing-page__story-qoute__qoutation-mark--bottom {
  border-top: 10px solid #c7531e;
  display: flex;
  flex-direction: column;
}

.qoutation-mark--top {
  position: relative;
  top: 60%;
  transform: rotate(180deg);
}

.qoutation-mark--bottom {
  position: relative;
  top: 10%;
}

.qoutation-mark--top, .qoutation-mark--bottom {
  height: 30px;
}

.landing-page__story-qoute__qoutation-mark__horizontal-line--bottom {
  border-bottom: 1px solid gray;
  margin: 0 auto;
  max-width: 800px;
  position: relative;
  top: -5px;
  z-index: -1;
}

.landing-page__story-qoute__qoutation-mark__horizontal-line--top {
  border-top: 1px solid gray;
  margin: 0 auto;
  max-width: 800px;
  position: relative;
  top: 5px;
  z-index: -1;
}

.landing-page__story-qoute__content {
  height: auto;
  max-width: 700px;
  margin: 0 auto;
  /* padding: 15px; */
}

.landing-page__story-qoute__qoute {
  width: 100%;
  font-size: 24px;
  text-align: center;
  font-family: 'GT-Super-bold';
}

@media(min-width: 900px) {
  .landing-page__story-qoute__qoute {
    font-size: 40px;
    padding: 30px;
  }
}

.landing-page__story-qoute__copy-wrapper {
  max-width: 500px;
  margin: -30px auto;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  margin-bottom: 50px;
}

.landing-page__story-qoute__copy {
  text-align: center;
  font-family: 'Benton Sans Reg', sans-serif;
}

.landing-page__story-qoute__cta {
  color: #c7531e;
  margin: 0 auto;
  padding-top: 20px;
  text-decoration: none;
  font-family: 'Benton Sans Reg', sans-serif;
}

.landing-page__story-qoute__cta:hover {
  text-decoration: underline;
}

.landing-page__my-story {
  position: relative;
}

.landing-page__my-story__image-wrapper {
  height: 364px;
  width: 100vw;
}

@media(min-width: 900px) {
  .landing-page__my-story__image-wrapper {
    height: 500px;
  }
}

.landing-page__my-story__image {
  background-color: gray;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: right;
}

.landing-page__my-story__callout {
  height: max-content;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  position: absolute;
  bottom: 180px;
  margin-bottom: -180px;
}

@media(min-width: 600px) {
  .landing-page__my-story__callout {
    padding: 10px;
  }
}

@media(min-width: 900px) {
  .landing-page__my-story__callout {
    left: 100px;
    /* margin-bottom: -105px; */
    width: 400px;
    /* top: -167px; */
  }
}

.landing-page__my-story__callout__wrapper {
  padding: 8px;
}

@media(min-width: 900px) {
  .landing-page__my-story__callout__wrapper {
    padding: 24px;
  }
}
.landing-page__my-story__category {
  color: #c7531e;
  padding-bottom: 20px;
  font-size: 12px;
  font-family: 'Benton Sans Reg', sans-serif;
}

.landing-page__my-story__title {
  padding-bottom: 10px;
  font-size: 22px;
  font-family: 'GT-Super-bold';
}

@media(min-width: 900px) {
  .landing-page__my-story__title {
    font-size: 26px;
    padding-bottom: 20px;
  }
}

@media(max-width: 599px) {
  .my-story__cta {
    padding: 5px 10px !important;
  }
}

.landing-page__cta {
  background-color: #000000;
  padding: 10px 20px;
  max-width: 120px;
  margin: 0 auto;
  text-align: center;
  transition: 0.5s ease;
  color: white;
  text-decoration: none;
  font-family: 'Benton Sans Reg', sans-serif;
  transform: translateZ(0);
  position: relative;
  overflow: hidden;
  font-size: 18px;
}

.landing-page__cta:before { 
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 100%;
  bottom: 0;
  background: #c7531e;
  height: 6px;
  transition: .5s all;
}

.landing-page__cta:hover:before {
  right: 0;
}

.landing-page__more-stories {
  height: auto;
  padding: 40px 0;
}

.landing-page__more-stories__wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  max-width: 750px;
  margin: 0 auto;
}

.landing-page__more-stories__story {
  min-height: 350px;
  min-width: 290px;
  max-width: 310px;
  text-decoration: none;
}

.landing-page__more-stories__story:hover label, .landing-page__more-stories__story:hover h3, .landing-page__additional-stories__story:hover label, .landing-page__additional-stories__story:hover h3 {
  text-decoration: underline;
}

@media(max-width: 899px) {
  .landing-page__more-stories__story, .landing-page__additional-stories__story {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .landing-page__more-stories__story figure, .landing-page__additional-stories__story figure {
    height: 300px;
    margin: 0 auto;
    width: 100%;
  }

  .landing-page__more-stories__story label, .landing-page__additional-stories__story label {
    margin: 0;
  }

  .landing-page__more-stories__content, .landing-page__additional-stories__content {
    display: flex;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    flex-direction: column;
  }

  .landing-page__more-stories__copy-wrapper, .landing-page__additional-stories__copy-wrapper {
    display: flex;
    flex-direction: column;
    align-self: flex-start;
    text-align: center;
    margin: 20px auto;
  }

  .landing-page__additional-stories__title, .landing-page__more-stories__description {
    padding-top: 10px;
    width: 90%;
    margin: 0 auto;
  }
}

.landing-page__more-stories__content {
  height: min-content;
  text-align: center;
  color: black;
}

.landing-page__more-stories__image-wrapper {
  height: 450px;
  margin-bottom: 15px;
  border: solid 1px lightgray;
  overflow: hidden;
}

.landing-page__more-stories__image-wrapper:hover img {
  transform: scale(1.1);
}


.landing-page__more-stories__image  {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1s all;
  position: relative;
  z-index: -1;
}

.landing-page__more-stories__category {
  font-size: 16px;
  color: #c7531e;
  margin-top: 20px;
  font-family: 'Benton Sans Reg', sans-serif;
}

.landing-page__more-stories__title {
  font-family: 'GT-Super-bold';
  font-size: 24px;
}

.landing-page__more-stories__description {
  font-family: 'Benton Sans Reg', sans-serif;
}

.landing-page__more-stories__title, .landing-page__more-stories__description {
  padding-top: 10px;
}

.landing-page__email-banner {
  background-color: rgba(128, 128, 128, 0.2);
  height: auto;
  text-align: center;
}

.landing-page__email-banner__wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  padding: 16px 0;
}

.landing-page__email-banner__title {
  font-size: 20px;
  font-family: 'GT-Super-bold';
  font-style: italic;
}

@media(min-width: 900px) {
  .landing-page__email-banner__title {
    font-size: 32px;
  }
}

.landing-page__email-banner__cta {
  color: #c7531e;
  text-decoration: none;
  max-width: 150px;
  margin: 10px auto;
  transition: .3s all;
  font-family: 'Benton Sans Reg', sans-serif;
}

.landing-page__email-banner__cta:hover {
  box-shadow: inset 0 -1px 0 #c7531e;
}

.landing-page__infograph {
  padding: 0 0 60px;
}

@media(min-width: 900px) {
  .landing-page__infograph {
    padding: 60px 0 30px;
  }
}
.landing-page__infograph__wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media(min-width: 900px) {
  .landing-page__infograph__wrapper {
    flex-direction: row;
  }
}

.landing-page__infograph__video {
  max-height: 300px;
  border: 0;
}

.landing-page__infograph__content-wrapper {
  display: flex;
  flex-direction: column;
}

@media(min-width: 900px) {
  .landing-page__infograph__content-wrapper {
    padding-left: 30px;
  }
}

.landing-page__infograph__asset-wrapper {
  max-height: 300px;
  max-width: 300px;
  width: 100%;
  margin: 0 auto 20px;
}

.landing-page__infograph__asset {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.landing-page__infograph__label {
  color: #c7531e;
  font-size: 16px;
  font-family: 'Benton Sans Reg', sans-serif;
}

.landing-page__infograph__title {
  font-size: 20px;
  margin-top: 10px;
  font-family: 'GT-Super-bold';
}

@media(min-width: 900px) {
  .landing-page__infograph__title {
    font-size: 45px;
  }
}

.landing-page__infograph__description {
  margin: 10px auto 30px;
  font-family: 'Benton Sans Reg', sans-serif;
  width: 300px;
}

.landing-page__hairline {
  border-bottom: solid 1px rgba(128, 128, 128, 0.2);
}

.landing-page__archived-articles__wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap-reverse;
  justify-content: center;
  align-content: center;
  max-width: 700px;
  margin: 0 auto;
  min-height: 300px;
}

.landing-page__archived-articles__callout {
  display: flex;
  width: 100%;
  justify-content: center;
}

@media(min-width: 900px) {
  .landing-page__archived-articles__callout {
    width: 40%;
  }
}

.landing-page__archived-articles__callout__wrapper {
  flex-direction: column;
  height: auto;
  align-self: center;
}

.landing-page__archived-articles__callout__title {
  font-size: 24px;
}

.landing-page__archived-articles__callout__cta {
  color: #c7531e;
  text-decoration: none;
  font-family: 'Benton Sans Reg', sans-serif;
}

.landing-page__archived-articles__asset-wrapper {
  max-width: 350px;
  width: 90%;
  padding: 20px 0 0;
  margin: 0 auto;
  height: auto;
}

@media(min-width: 900px) {
  .landing-page__archived-articles__asset-wrapper {
    padding: 0;
    width: 100%;
  }
}

.landing-page__archived-articles__asset {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.landing-page__additional-stories {
  min-height: 500px;
  padding: 60px 0;
}

.landing-page__additional-stories__wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  max-width: 750px;
  margin: 0 auto;
  flex-wrap: wrap;
}

@media(min-width: 900px) {
  .landing-page__additional-stories__wrapper {
    flex-wrap: nowrap;
  }
}

.landing-page__additional-stories__story {
  height: auto;
  text-decoration: none;
}

@media(min-width: 900px) {
 .landing-page__additional-stories__story {
   max-width: 320px;
   margin: 0;
 }
}

.landing-page__additional-stories__content {
  height: min-content;
  text-align: center;
  color: black;
}

.landing-page__additional-stories__image-wrapper {
  height: 450px;
  width: auto;
  margin-bottom: 15px;
  border: solid 1px lightgray;
  overflow: hidden;
}

.landing-page__additional-stories__image-wrapper:hover img {
  transform: scale(1.1);
  
}

.landing-page__additional-stories__image  {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1s all;
  position: relative;
  z-index: -1;
}

.landing-page__additional-stories__category {
  font-size: 16px;
  color: #c7531e;
  margin-top: 20px;
  font-family: 'Benton Sans Reg', sans-serif;
}

.landing-page__additional-stories__title {
  font-family: 'GT-Super-bold';
  font-size: 24px;
}

.landing-page__additional-stories__description {
  font-family: 'Benton Sans Reg', sans-serif;
}

.landing-page__additional-stories__title, .landing-page__more-stories__description {
  padding-top: 10px;
}

.landing-page__footer {
  height: 100px;
  width: 100vw;
}

.landing-page__footer__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  height: max-content;
  width: 90%;
  margin: 30px auto;
}

@media(min-width: 900px) {
  .landing-page__footer__wrapper {
    flex-direction: row;
    justify-content: space-evenly;
  }
}

.landing-page__logo {
  width: 150px;
  height: auto;
  margin: 0 auto;
}

@media(min-width: 900px) {
  .landing-page__logo {
    margin: 0;
  }
}

.landing-page__info {
  height: max-content;
  width: 300px;
  text-align: center;
  font-style: 14px;
  font-family: 'Benton Sans Reg', sans-serif;
  color: rgba(200, 200, 200, 0.7);
  white-space: nowrap;
  margin: 20px auto;
}

@media(min-width : 900px) {
  .landing-page__info {
    width: auto;
  }
}

.landing-page__info a, .landing-page__info p{
  font-size: 14px;
  color: rgba(180, 180, 180);
}

.landing-page__info__line-two {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
  padding-top: 16px;
}


.landing-page__social-icons {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-content: center;
}

.landing-page__social-icon {
  height: 30px;
  margin: 5px;
  align-self: flex-end;
}

.pulse {
  transform: scale(2);
}
