.guide-hero {
  display: table;
  position: relative;
  background-position: center center;

  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  width: 100%;
  height: 100vh;
}
.guide-hero .guide-hero-title {
  width: 80%;
  display: table-cell;
  vertical-align: middle;
}
.guide-hero .guide-hero-title h1, .guide-hero .guide-hero-title p {
  width: 80%;
  margin: 0 auto 10px auto;
  text-align: center;
  text-shadow: 0px 3px 8px #000;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .guide-hero .guide-hero-title h1 {
  	font-size: 2em;
  }
}
@media only screen and (min-width: 768px) {
  .guide-hero .guide-hero-title h1 {
  	font-size: 3.8rem;
  }
  .guide-hero .guide-hero-title p {
  	font-size: 1.3rem;
  }
}
.guide-content-figure {
  position: relative;
  display: block;
  backface-visibility: hidden;
  overflow: hidden;
  width: 100%;
  height: 145px;
}
.guide-content-figure img, .guide-content-figureTitle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  -webkit-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}
.guide-content-figureTitle {
  font-family: Futura, Trebuchet MS, Arial, sans-serif;
  text-shadow: 1px 2px 3px #000;
  text-align: center;
  font-size: 160%;
  color: #fff;
}
.guide-image-Subtitle {
  font-size: 90%;
  font-style: italic;
  color: #7e8890;
}

// table
.guide-table-list {
  width: 100%;
}
.guide-table-list th,
.guide-table-list td {
	padding: 10px 0;
}
.guide-table-list th {
  width: 20%;
  max-width: 100px;
}

@media screen and (max-width: 768px) {
  .guide-table-list th, .guide-table-list td {
	  padding: 10px 0;
  }
  .guide-table-list td {
    display: block;
    text-align: left;
  }
  .guide-table-list th {
	  width: 100%;
    display: block;
    border-top: none;
    border-bottom: none;
  }
}