/* contains infographic */
.journey-instructions {
  padding-left: .5%;
  padding-right: .5%;
  padding-bottom: 58px;
    
}

/* container holding journey images and their titles */
.journey-flex-container {
  color: white;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  display: flex;
  flex-wrap: wrap;
}

/* each journey tile within container */
.journey-flex-item {
  height: 40vh;
  width: 50%;
  position: relative;
}

/* featured journey */
.journey-flex-item:first-of-type {
  width: 100%;
}

.journey-flex-item a {
  color: white;
  text-decoration: none;
}

.journey-flex-item img {
  filter: brightness(50%);
  object-fit: cover;
  height: 40vh;
  width: 100%;
  padding: .5vw;
}

.journey-flex-item img:hover {
  filter: brightness(100%);
  transition: .5s ease;
}

/* centered title text block */
.title-block {
  background-color: #df1a82;
  font-size: 1em;
  line-height: 1.3;
  padding: 1%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}


/* Mobile responsive */
@media all and (max-width: 980px) {
  .journey-flex-item {
    width: 100%;
  }
}


@media all and (max-width: 645px) {

}

@media all and (max-width: 450px) {

}