/* * {
  outline: 1px solid red;
} */

.slides,
.slides p,
.slides h1,
.slides h2,
.slides h3,
.slides h4,
.slides h5,
.slides h6,
.slides .button,
.slides .slides-form {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
}

/* Too narrow to show Preview buttons etc */
@media only screen and (max-width: 1080px) {
  
  .heroImage {
      width: 80%;
      margin-bottom: 20px;
    }

  .resCards {
    display: grid;
    grid-template-columns: 50% 50%;
    column-gap: 10px;
    row-gap: 15px;
    justify-items: center;
    align-items: center;
  }

}

/* BACKGROUND COLS */

.col-0 {
  background: #3498db;
}

.col-1 {
  background: #2980b9;
}

.leftCopy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 40%;
}

.sliderHolder {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 50%;
  margin-left: auto;
}

.contentHolder {
  margin-left: auto;
  margin-right: auto;
}

.controller {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sliderHolder .controller {
  margin-top: 10px;
}

.link {
  text-decoration: underline;
  cursor: pointer;
}

a.button1 {
  opacity: 1;
  padding: 2.25em;
  align-items: center;
  appearance: none;
  background-color: #1abc9c;
  border-radius: 4px;
  border-width: 0;
  box-shadow: rgba(45, 35, 66, 0.4) 0 2px 4px,
    rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #16a085 0 -3px 0 inset;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-size: 20px;
  font-family: 'Open Sans';
  font-weight: 600;
  height: 48px;
  justify-content: center;
  line-height: 1;
  list-style: none;
  overflow: hidden;
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
  text-align: left;
  text-decoration: none;
  transition: box-shadow 0.15s, transform 0.15s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  will-change: box-shadow, transform;
}

a.button1:focus {
  box-shadow: #d6d6e7 0 0 0 1.5px inset, rgba(45, 35, 66, 0.4) 0 2px 4px,
    rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #16a085 0 -3px 0 inset;
}

a.button1:hover {
  box-shadow: rgba(45, 35, 66, 0.4) 0 4px 8px,
    rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #16a085 0 -3px 0 inset;
  transform: translateY(-2px);
  background-color: #48c9b0;
}

a.button1:active {
  box-shadow: #16a085 0 3px 7px inset;
  transform: translateY(2px);
}

.res_card {
  display: inline-flex;
  justify-content: center;
  height: 120px;
  width: 180px;
  background-color: #eee;
  margin-top: 1px;
  box-shadow: 0 -1px 0px rgba(255, 255, 255, 0.2), 0 3px 0px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.res_card_content {
  display: grid;
  grid-template-rows: 82% 18%;
  border: 1px solid #2980b9;
}

.res_card_content img {
  grid-row: 1 / 2;
  object-fit: cover;
  justify-content: center;
  align-content: center;
}

.res_card_content p {
  grid-row: 2;
  justify-content: center;
  align-content: center;
  text-align: center;
  color: #333;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
}