/* Show Page */
.show {
  padding-left: 15px;
  padding-right: 15px;
}

.show-title {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.show-title h1 {
  color: #3f5367;
  text-align: center;
}

.show-title h2 {
  color: #3f5367;
  text-align: center;
}

.show-title__extra {
  font-style: italic;
}

.show-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.show-col {
  flex: 0 0 100%;
}

.show-image {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.show-image img {
  max-width: 600px;
}

.grve-container p{
  margin-bottom: 0px;
}

.show-subtitle {
  font-style: italic;
}

.show-subtitle__extra {
  font-weight: bold;
}

.show-cta {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.show-cta__button {
  display: inline-block;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  margin-top: 3px;
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 0px;
  padding: 12px 16px;
  background-color: #FBAA19;
  border: 1px solid transparent;
  border-radius: 3px;
  transition-property: color, background-color, border-color;
  transition-duration: 0.5s, 0.5s, 0.5s;
  transition-timing-function: ease, ease, ease;
  transition-delay: 0s, 0s, 0s;
  position: relative;
  cursor: pointer;
}

.show-cta__button:hover {
  background-color: #E29100;
}

.show-cta__button a {
  color: #ffffff;
}

.show-cta__button a:hover {
  color: #ffffff;
}

.show-cta__price span {
  position: relative;
  font-size: 22px;
  top: -9px;
}

.show-cta__price {
  display: block;
  vertical-align: middle;
  line-height: 63px;
  color: #4a4a4a;
  font-size: 40px;
  font-weight: 600;
  padding-right: 10px;
}

.show-additional-info {
  margin-top: 10px;
}

/* Show Features View */
.show-features {
  padding-top: 50px;
  border-top: 1px solid #DADADA;
}

.show-features__title h2{
  color: #3f5367;
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.show-features__items {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
}

.show-feature__item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: stretch;
  flex: 0 0 100%;
  width: 100%;
  margin-bottom: 60px;
  padding-left: 5%;
  padding-right: 5%;
}

.show-feature__item::after {
  border-bottom: 1px #DADADA dashed;
  content:"";
  display:block;
  height:1px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom:50px;
  width:255px;
}

.show-feature__container {
  flex: 0 0 100%;
  height: 100%;
}

.show-feature__image {
  margin-bottom: 20px;
  text-align: center;
}

#features .show-feature__image img {
  opacity: 1;
  max-width: 50%;
  width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.show-feature__content {
  text-align: center;
  padding-bottom: 30px;
}

.show-feature__heading {
  font-size: 16px;
  font-weight: bold;
  color: #4A4A4A;
  line-height: 24px;
  margin-bottom: 0;
}

/* Show Questions View */
.show-questions {
  padding-top: 50px;
  border-top: 1px solid #DADADA;
}

.show-questions__title h2{
  color: #3f5367;
  text-align: center;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.show-questions__image {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  margin-bottom: 30px;
}

#questions .show-questions__image img {
  opacity: 1;
  width: 300px;
}

.show-questions__text p {
  font-size: 20px;
  text-align: center;
}

.show-questions__text a {
  color: #FBAA19;
}

.show-questions__text a:hover {
  color: #E29100;
}

@media only screen and (max-width: 1024px) {
  .show-feature__item {
    flex: 0 0 50%;
  }
}

@media only screen and (min-width: 1025px) {
  .show {
    padding-left: 50px;
    padding-right: 50px;
  }

  .show-col {
    flex: 0 0 50%;
    padding-left: 25px;
    padding-right: 25px;
  }

  .show-image {
    flex: 0 0 40%;
  }

  .show-text {
    flex: 0 0 60%;
  }

  .show-cta {
    padding-left: 15px;
    text-align: left;
    margin: 0;
  }

  .show-cta__price {
    display: inline-block;
    vertical-align: middle;
    line-height: 63px;
    color: #4a4a4a;
    font-size: 40px;
    font-weight: 600;
    padding-right: 10px;
  }

  .show-cta__button {
    font-size: 20px;
    padding: 15px 20px;
  }

  .show-additional-info {
    padding-left: 15px;
  }

  .show-feature__item {
    flex: 0 0 33%;
    width: 33%;
    margin-bottom: 60px;
    padding-left: 5%;
    padding-right: 5%;
  }
}