/*
 * This is a manifest file that'll automatically include all the stylesheets available in this directory
 * and any sub-directories. You're free to add application-wide styles to this file and they'll appear at
 * the top of the compiled file, but it's generally better to create a new file per style scope.
 

 */
/**** jQuery Appear ANIMATIONS ****/
/***************/
/**** FADE ****/
/***************/
/*** Fade In ***/
/* line 8, /app/app/assets/stylesheets/jquery-appear.scss */
[data-appear="fade-in"],
[data-appear-stagger="fade-in"] > * {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
/* line 13, /app/app/assets/stylesheets/jquery-appear.scss */
[data-appear="fade-in"].has-appeared,
[data-appear-stagger="fade-in"] > *.has-appeared {
  opacity: 1;
}

/* Fade Right */
/* line 19, /app/app/assets/stylesheets/jquery-appear.scss */
[data-appear="fade-right"],
[data-appear-stagger="fade-right"] > * {
  transform: translateX(-40px);
  opacity: 0;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}
/* line 26, /app/app/assets/stylesheets/jquery-appear.scss */
[data-appear="fade-right"].has-appeared,
[data-appear-stagger="fade-right"] > *.has-appeared {
  transform: translateX(0);
  opacity: 1;
}

/* Fade Left */
/* line 33, /app/app/assets/stylesheets/jquery-appear.scss */
[data-appear="fade-left"],
[data-appear-stagger="fade-left"] > * {
  transform: translateX(40px);
  opacity: 0;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}
/* line 40, /app/app/assets/stylesheets/jquery-appear.scss */
[data-appear="fade-left"].has-appeared,
[data-appear-stagger="fade-left"] > *.has-appeared {
  transform: translateX(0);
  opacity: 1;
}

/*** Fade Up ***/
/* line 47, /app/app/assets/stylesheets/jquery-appear.scss */
[data-appear="fade-up"],
[data-appear-stagger="fade-up"] > * {
  transform: translateY(40px);
  opacity: 0;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}
/* line 54, /app/app/assets/stylesheets/jquery-appear.scss */
[data-appear="fade-up"].has-appeared,
[data-appear-stagger="fade-up"] > *.has-appeared {
  transform: translateY(0);
  opacity: 1;
}

/*** Fade Down ***/
/* line 61, /app/app/assets/stylesheets/jquery-appear.scss */
[data-appear="fade-down"],
[data-appear-stagger="fade-down"] > * {
  transform: translateY(-40px);
  opacity: 0;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}
/* line 68, /app/app/assets/stylesheets/jquery-appear.scss */
[data-appear="fade-down"].has-appeared,
[data-appear-stagger="fade-down"] > *.has-appeared {
  transform: translateY(0);
  opacity: 1;
}

/***************/
/**** SCALE ****/
/***************/
/*** Scale Up ***/
/* line 80, /app/app/assets/stylesheets/jquery-appear.scss */
[data-appear="scale-up"],
[data-appear-stagger="scale-up"] > * {
  transform: scale(0.75);
  opacity: 0;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}
/* line 87, /app/app/assets/stylesheets/jquery-appear.scss */
[data-appear="scale-up"].has-appeared,
[data-appear-stagger="scale-up"] > *.has-appeared {
  transform: scale(1);
  opacity: 1;
}

/*** Scale Down ***/
/* line 94, /app/app/assets/stylesheets/jquery-appear.scss */
[data-appear="scale-down"],
[data-appear-stagger="scale-down"] > * {
  transform: scale(1.1);
  opacity: 0;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}
/* line 101, /app/app/assets/stylesheets/jquery-appear.scss */
[data-appear="scale-down"].has-appeared,
[data-appear-stagger="scale-down"] > *.has-appeared {
  transform: scale(1);
  opacity: 1;
}

/***************/
/**** SLIDE ****/
/***************/
/* Slide Right */
/* line 113, /app/app/assets/stylesheets/jquery-appear.scss */
[data-appear="slide-right"],
[data-appear-stagger="slide-right"] > * {
  transform: translateX(-40px);
  transition: transform 0.5s ease-in-out;
}
/* line 118, /app/app/assets/stylesheets/jquery-appear.scss */
[data-appear="slide-right"].has-appeared,
[data-appear-stagger="slide-right"] > *.has-appeared {
  transform: translateX(0);
}

/* line 2, /app/app/assets/stylesheets/shared/reset.scss */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
/* line 23, /app/app/assets/stylesheets/shared/reset.scss */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* line 27, /app/app/assets/stylesheets/shared/reset.scss */
body {
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

/* line 31, /app/app/assets/stylesheets/shared/reset.scss */
ol, ul {
  list-style: none;
}

/* line 34, /app/app/assets/stylesheets/shared/reset.scss */
blockquote, q {
  quotes: none;
}

/* line 37, /app/app/assets/stylesheets/shared/reset.scss */
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

/* line 42, /app/app/assets/stylesheets/shared/reset.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 46, /app/app/assets/stylesheets/shared/reset.scss */
input {
  -webkit-font-smoothing: antialiased;
}

/* line 1, /app/app/assets/stylesheets/shared/global.scss */
body {
  font-family: "Lato", Helvetica, arial, sans-serif;
  font-size: 12px;
  line-height: 16px;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  color: #262626;
  background-color: #f8f3ea;
}

/* line 12, /app/app/assets/stylesheets/shared/global.scss */
.fluid-width-video-wrapper {
  padding-top: 56.26% !important;
}

/* line 1, /app/app/assets/stylesheets/shared/header.scss */
.header {
  width: 100%;
  padding-top: 50px;
  position: relative;
  margin-bottom: 25px;
}
/* line 7, /app/app/assets/stylesheets/shared/header.scss */
.header .nav-btn {
  display: none;
  position: relative;
  box-sizing: content-box;
  width: 36px;
  height: 26px;
  cursor: pointer;
  z-index: 2001;
  padding: 3px;
  float: right;
  margin-right: 8px;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  /* line 7, /app/app/assets/stylesheets/shared/header.scss */
  .header .nav-btn {
    display: block;
    margin-top: -40px;
  }
}
@media screen and (max-width: 820px) {
  /* line 7, /app/app/assets/stylesheets/shared/header.scss */
  .header .nav-btn {
    margin-top: -40px;
  }
}
@media screen and (max-width: 500px) {
  /* line 7, /app/app/assets/stylesheets/shared/header.scss */
  .header .nav-btn {
    margin-top: -40px;
  }
}
@media screen and (max-width: 400px) {
  /* line 7, /app/app/assets/stylesheets/shared/header.scss */
  .header .nav-btn {
    margin-top: -40px;
  }
}
/* line 37, /app/app/assets/stylesheets/shared/header.scss */
.header .nav-btn span {
  display: block;
  float: right;
  clear: both;
  background-color: #99752f;
  width: 100%;
  height: 3px;
  margin-bottom: calc(36px / 5);
  transition: all 0.5s ease;
}
/* line 47, /app/app/assets/stylesheets/shared/header.scss */
.header .nav-btn span:nth-child(2) {
  width: 50%;
}
/* line 51, /app/app/assets/stylesheets/shared/header.scss */
.header .nav-btn span:last-child {
  margin-bottom: 0;
  width: 66.666%;
}
/* line 60, /app/app/assets/stylesheets/shared/header.scss */
.header .nav-btn.nav-is-shown span:first-child {
  width: 36px;
  transform: rotate(-45deg) translate(-9px, 12px);
}
/* line 64, /app/app/assets/stylesheets/shared/header.scss */
.header .nav-btn.nav-is-shown span:nth-child(2) {
  transform: translateX(36px);
  opacity: 0;
}
/* line 68, /app/app/assets/stylesheets/shared/header.scss */
.header .nav-btn.nav-is-shown span:last-child {
  width: 36px;
  transform: rotate(45deg) translate(-2px, -5px);
}
@media screen and (max-width: 820px) {
  /* line 77, /app/app/assets/stylesheets/shared/header.scss */
  .header.wrapper {
    padding: 0;
    margin-bottom: 0;
  }
  /* line 81, /app/app/assets/stylesheets/shared/header.scss */
  .header.wrapper h1 {
    padding: 24px 24px 8px;
  }
}
/* line 87, /app/app/assets/stylesheets/shared/header.scss */
.header.header-alter {
  background-color: #d2c5ad;
  margin-bottom: 0;
  padding: 12px 20px;
}
/* line 92, /app/app/assets/stylesheets/shared/header.scss */
.header.header-alter::after {
  content: '';
  clear: both;
  display: block;
  width: 100%;
  height: 0px;
}
/* line 100, /app/app/assets/stylesheets/shared/header.scss */
.header.header-alter #site-logo {
  max-width: 300px;
  float: left;
  margin: 15px 0;
}
/* line 105, /app/app/assets/stylesheets/shared/header.scss */
.header.header-alter #site-logo h1 {
  margin: 0;
}
/* line 110, /app/app/assets/stylesheets/shared/header.scss */
.header.header-alter .header-nav-wrapper {
  margin: 0;
  float: right;
  clear: none;
  border: none;
  width: auto;
}

/* line 121, /app/app/assets/stylesheets/shared/header.scss */
#site-logo {
  display: block;
  overflow: hidden;
  position: relative;
  z-index: 2001;
  display: block;
  width: 280px;
  max-width: 280px;
}
/* line 130, /app/app/assets/stylesheets/shared/header.scss */
#site-logo h2 {
  display: none;
}
@media screen and (min-width: 500px) {
  /* line 121, /app/app/assets/stylesheets/shared/header.scss */
  #site-logo {
    width: 340px;
  }
}
@media screen and (min-width: 768px) {
  /* line 121, /app/app/assets/stylesheets/shared/header.scss */
  #site-logo {
    width: calc(100% - 52px);
    max-width: 480px;
  }
}
@media screen and (min-width: 960px) {
  /* line 121, /app/app/assets/stylesheets/shared/header.scss */
  #site-logo {
    width: 100%;
    max-width: 660px;
  }
  /* line 144, /app/app/assets/stylesheets/shared/header.scss */
  #site-logo h2 {
    display: block;
  }
}

/* line 150, /app/app/assets/stylesheets/shared/header.scss */
.header h1 {
  position: relative;
  z-index: 90;
  overflow: hidden;
  width: 100%;
  max-width: 664px;
  margin: 0 0 5px;
}
/* line 158, /app/app/assets/stylesheets/shared/header.scss */
.header h1 img {
  width: 100%;
  display: block;
}
@media screen and (max-width: 960px) {
  /* line 150, /app/app/assets/stylesheets/shared/header.scss */
  .header h1 {
    max-width: none;
    z-index: 2001;
  }
}

/* line 169, /app/app/assets/stylesheets/shared/header.scss */
.header h2 {
  position: relative;
  z-index: 90;
  font-weight: 300;
  font-size: 20px;
  letter-spacing: 2px;
  color: #262626;
  margin-left: 0.9%;
  text-transform: uppercase;
  font-family: "Lato", Helvetica, arial, sans-serif;
}
@media screen and (max-width: 960px) {
  /* line 169, /app/app/assets/stylesheets/shared/header.scss */
  .header h2 {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 1px;
  }
}
@media screen and (max-width: 500px) {
  /* line 169, /app/app/assets/stylesheets/shared/header.scss */
  .header h2 {
    font-size: 11px;
  }
}

/* line 191, /app/app/assets/stylesheets/shared/header.scss */
.header-nav-wrapper {
  border-top: 1px solid #d4c0a1;
  border-bottom: 1px solid #d4c0a1;
  margin-top: 20px;
  margin-bottom: 20px;
  display: block;
  width: 100%;
  clear: both;
  overflow: visible;
}
/* line 201, /app/app/assets/stylesheets/shared/header.scss */
.header-nav-wrapper:after {
  content: '';
  display: block;
  width: 100%;
  clear: both;
  float: none;
}
/* line 209, /app/app/assets/stylesheets/shared/header.scss */
.header-nav-wrapper ul li {
  letter-spacing: 1px;
}
@media screen and (max-width: 960px) {
  /* line 191, /app/app/assets/stylesheets/shared/header.scss */
  .header-nav-wrapper {
    margin-top: 0;
    margin-bottom: 0;
    border-top: none;
    border-bottom: none;
  }
  /* line 219, /app/app/assets/stylesheets/shared/header.scss */
  .header-nav-wrapper ul.soclinks {
    margin-bottom: 32px;
  }
  /* line 223, /app/app/assets/stylesheets/shared/header.scss */
  .header-nav-wrapper ul.soclinks .login a {
    background-color: #e4dcce;
    color: #262626;
  }
  /* line 230, /app/app/assets/stylesheets/shared/header.scss */
  .header-nav-wrapper.user-logged-in {
    float: left;
    clear: none;
    width: auto;
    border: none;
    overflow: visible;
    margin-top: 0;
  }
  /* line 238, /app/app/assets/stylesheets/shared/header.scss */
  .header-nav-wrapper.user-logged-in ul.soclinks {
    bottom: 0;
  }
  /* line 242, /app/app/assets/stylesheets/shared/header.scss */
  .header-nav-wrapper.user-logged-in ul.soclinks li.logout a.userMenuToggle {
    padding: 0 32px 0 8px;
    min-width: 0;
    height: auto;
    line-height: 42px;
  }
  /* line 248, /app/app/assets/stylesheets/shared/header.scss */
  .header-nav-wrapper.user-logged-in ul.soclinks li.logout a.userMenuToggle:hover {
    background-color: transparent;
  }
  /* line 253, /app/app/assets/stylesheets/shared/header.scss */
  .header-nav-wrapper.user-logged-in ul.soclinks li.logout .avatar {
    display: none;
  }
  /* line 257, /app/app/assets/stylesheets/shared/header.scss */
  .header-nav-wrapper.user-logged-in ul.soclinks li.logout .user-menu {
    display: flex;
    position: relative;
    width: 100vw;
    right: 0;
    left: 0;
    top: auto;
    border: none;
  }
  /* line 266, /app/app/assets/stylesheets/shared/header.scss */
  .header-nav-wrapper.user-logged-in ul.soclinks li.logout .user-menu a {
    width: 50%;
    padding: 0 16px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-bottom: none;
    background-color: #e4dcce;
    color: #262626;
  }
  /* line 276, /app/app/assets/stylesheets/shared/header.scss */
  .header-nav-wrapper.user-logged-in ul.soclinks li.logout .user-menu a:first-child {
    background-color: #d6c9b4;
  }
}

@media screen and (max-width: 960px) {
  /* line 1, /app/app/assets/stylesheets/shared/header_landing.scss */
  #site-header.landing-header {
    padding: 32px 32px 0;
    margin-bottom: 80px;
  }
}

/* line 8, /app/app/assets/stylesheets/shared/header_landing.scss */
.landing-header {
  display: flex;
  justify-content: space-between;
}
/* line 13, /app/app/assets/stylesheets/shared/header_landing.scss */
.landing-header.wrapper {
  max-width: 1240px;
}
/* line 17, /app/app/assets/stylesheets/shared/header_landing.scss */
.landing-header .header-left {
  width: calc(100% - 200px);
  max-width: 500px;
}
/* line 21, /app/app/assets/stylesheets/shared/header_landing.scss */
.landing-header .header-left h2 {
  font-size: 14px;
}
/* line 25, /app/app/assets/stylesheets/shared/header_landing.scss */
.landing-header .header-left #site-logo {
  max-width: 500px;
}
/* line 28, /app/app/assets/stylesheets/shared/header_landing.scss */
.landing-header .header-left #site-logo h1 {
  padding: 0;
  margin-bottom: 0;
}
@media screen and (max-width: 820px) {
  /* line 17, /app/app/assets/stylesheets/shared/header_landing.scss */
  .landing-header .header-left {
    max-width: none;
  }
}
/* line 39, /app/app/assets/stylesheets/shared/header_landing.scss */
.landing-header .header-right {
  text-align: right;
  width: 200px;
}
/* line 43, /app/app/assets/stylesheets/shared/header_landing.scss */
.landing-header .header-right .button {
  font-size: 14px;
  padding: 0 20px;
}
/* line 49, /app/app/assets/stylesheets/shared/header_landing.scss */
.landing-header h1 {
  background-repeat: no-repeat;
}
@media screen and (max-width: 680px) {
  /* line 8, /app/app/assets/stylesheets/shared/header_landing.scss */
  .landing-header {
    flex-wrap: wrap;
  }
  /* line 56, /app/app/assets/stylesheets/shared/header_landing.scss */
  .landing-header .header-left,
  .landing-header .header-right {
    width: 100%;
  }
  /* line 61, /app/app/assets/stylesheets/shared/header_landing.scss */
  .landing-header .header-right {
    text-align: left;
    padding-top: 20px;
  }
  /* line 65, /app/app/assets/stylesheets/shared/header_landing.scss */
  .landing-header .header-right .button {
    font-size: 12px;
    padding: 0 17px;
    line-height: 32px;
  }
}

/* line 1, /app/app/assets/stylesheets/shared/2_pack_videos.scss */
.two-pack {
  flex-direction: column;
}
/* line 4, /app/app/assets/stylesheets/shared/2_pack_videos.scss */
.two-pack .relative {
  height: 100%;
}
/* line 7, /app/app/assets/stylesheets/shared/2_pack_videos.scss */
.two-pack .relative img {
  height: 100%;
}
@media screen and (min-width: 600px) {
  /* line 1, /app/app/assets/stylesheets/shared/2_pack_videos.scss */
  .two-pack {
    flex-direction: row;
  }
}
/* line 16, /app/app/assets/stylesheets/shared/2_pack_videos.scss */
.two-pack .two-pack__video {
  width: 100%;
}
/* line 18, /app/app/assets/stylesheets/shared/2_pack_videos.scss */
.two-pack .two-pack__video:first-of-type {
  margin-right: 0px;
}
@media screen and (min-width: 600px) {
  /* line 16, /app/app/assets/stylesheets/shared/2_pack_videos.scss */
  .two-pack .two-pack__video {
    width: 50%;
  }
  /* line 25, /app/app/assets/stylesheets/shared/2_pack_videos.scss */
  .two-pack .two-pack__video:first-of-type {
    margin-right: 22px;
  }
}
@media screen and (min-width: 1024px) {
  /* line 32, /app/app/assets/stylesheets/shared/2_pack_videos.scss */
  .two-pack .two-pack__video:first-of-type {
    margin-right: 32px;
  }
}

/* line 3, /app/app/assets/stylesheets/shared/404.scss */
.page-not-found .page-heading h1 {
  font-size: 180px;
  line-height: 144px;
}
@media screen and (max-width: 540px) {
  /* line 3, /app/app/assets/stylesheets/shared/404.scss */
  .page-not-found .page-heading h1 {
    font-size: 100px;
    line-height: 80px;
  }
}
/* line 14, /app/app/assets/stylesheets/shared/404.scss */
.page-not-found h2 {
  font-size: 32px;
  font-weight: 600;
  max-width: 300px;
  margin-bottom: 50px;
}
/* line 23, /app/app/assets/stylesheets/shared/404.scss */
.page-not-found .error-page-inner {
  display: flex;
}
/* line 27, /app/app/assets/stylesheets/shared/404.scss */
.page-not-found .error-page-inner > div img {
  width: 100%;
  display: block;
}
@media screen and (max-width: 767px) {
  /* line 33, /app/app/assets/stylesheets/shared/404.scss */
  .page-not-found .error-page-inner > div:first-child {
    width: 100%;
  }
  /* line 37, /app/app/assets/stylesheets/shared/404.scss */
  .page-not-found .error-page-inner > div:last-child {
    display: none;
  }
}

/* line 2, /app/app/assets/stylesheets/shared/9_pack_with_text.scss */
.nine-pack-wrapper {
  background-color: #f8f3ea;
}
@media screen and (max-width: 500px) {
  /* line 6, /app/app/assets/stylesheets/shared/9_pack_with_text.scss */
  .nine-pack-wrapper .wrapper.nine-pack-with-text {
    padding-left: 0;
    padding-right: 0;
  }
}
/* line 12, /app/app/assets/stylesheets/shared/9_pack_with_text.scss */
.nine-pack-wrapper .nine-pack-with-text {
  padding-top: 20px;
  padding-bottom: 75px;
  flex-wrap: wrap-reverse;
}
/* line 19, /app/app/assets/stylesheets/shared/9_pack_with_text.scss */
.nine-pack-wrapper .nine-pack-with-text .left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  background-image: url("/assets/black-texture-14306fd2825dd2a0bfb115b174f224315b725a717a0e853fa3ace8da57afcef4.jpg");
  background-color: #262626;
  color: #ffffff;
}
@media screen and (min-width: 1000px) {
  /* line 19, /app/app/assets/stylesheets/shared/9_pack_with_text.scss */
  .nine-pack-wrapper .nine-pack-with-text .left {
    width: 25%;
  }
}
/* line 32, /app/app/assets/stylesheets/shared/9_pack_with_text.scss */
.nine-pack-wrapper .nine-pack-with-text .left .left-text {
  padding: 32px 48px;
}
/* line 36, /app/app/assets/stylesheets/shared/9_pack_with_text.scss */
.nine-pack-wrapper .nine-pack-with-text .left h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
}
/* line 42, /app/app/assets/stylesheets/shared/9_pack_with_text.scss */
.nine-pack-wrapper .nine-pack-with-text .left p {
  line-height: 1.5;
}
/* line 46, /app/app/assets/stylesheets/shared/9_pack_with_text.scss */
.nine-pack-wrapper .nine-pack-with-text .left .promo-button {
  background-color: #f8f3ea;
  color: #262626;
  line-height: 54px;
}
/* line 51, /app/app/assets/stylesheets/shared/9_pack_with_text.scss */
.nine-pack-wrapper .nine-pack-with-text .left .promo-button:after {
  background-color: #057D7F;
  transition: all .2s ease;
}
/* line 58, /app/app/assets/stylesheets/shared/9_pack_with_text.scss */
.nine-pack-wrapper .nine-pack-with-text .left .promo-button:hover:after {
  background-color: #99762a;
}
/* line 65, /app/app/assets/stylesheets/shared/9_pack_with_text.scss */
.nine-pack-wrapper .nine-pack-with-text .right {
  width: 75%;
  flex-wrap: wrap;
  background-color: #f8f3ea;
}
@media screen and (max-width: 1000px) {
  /* line 65, /app/app/assets/stylesheets/shared/9_pack_with_text.scss */
  .nine-pack-wrapper .nine-pack-with-text .right {
    width: 100%;
  }
}
/* line 77, /app/app/assets/stylesheets/shared/9_pack_with_text.scss */
.nine-pack-wrapper .vid-block-sm {
  width: calc(33.33% - 2px);
  margin: 0 1px 2px 1px;
}
@media screen and (min-width: 500px) {
  /* line 77, /app/app/assets/stylesheets/shared/9_pack_with_text.scss */
  .nine-pack-wrapper .vid-block-sm {
    width: calc(33.33% - 2px);
    margin: 0 0 2px 2px;
  }
}
@media screen and (min-width: 767px) {
  /* line 77, /app/app/assets/stylesheets/shared/9_pack_with_text.scss */
  .nine-pack-wrapper .vid-block-sm {
    width: calc(33.33% - 4px);
    margin: 0 0 4px 4px;
  }
}
/* line 91, /app/app/assets/stylesheets/shared/9_pack_with_text.scss */
.nine-pack-wrapper .vid-block-sm .vid-block-sm__info h2 {
  font-size: 14px;
}
@media screen and (min-width: 500px) {
  /* line 91, /app/app/assets/stylesheets/shared/9_pack_with_text.scss */
  .nine-pack-wrapper .vid-block-sm .vid-block-sm__info h2 {
    font-size: 16px;
  }
}
@media screen and (min-width: 767px) {
  /* line 91, /app/app/assets/stylesheets/shared/9_pack_with_text.scss */
  .nine-pack-wrapper .vid-block-sm .vid-block-sm__info h2 {
    font-size: 18px;
  }
}

/* line 2, /app/app/assets/stylesheets/shared/about.scss */
#about-page .page-heading {
  max-width: 670px;
  margin-right: auto;
  margin-left: auto;
}
/* line 7, /app/app/assets/stylesheets/shared/about.scss */
#about-page .page-heading h1 {
  max-width: 480px;
}
@media screen and (max-width: 767px) {
  /* line 1, /app/app/assets/stylesheets/shared/about.scss */
  #about-page {
    padding-top: 50px;
  }
}

/* line 18, /app/app/assets/stylesheets/shared/about.scss */
.about-page.space-below,
.about-page .space-below {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  /* line 18, /app/app/assets/stylesheets/shared/about.scss */
  .about-page.space-below,
  .about-page .space-below {
    margin-bottom: 50px;
  }
}
/* line 28, /app/app/assets/stylesheets/shared/about.scss */
.about-page.image-grid-wrapper {
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  /* line 33, /app/app/assets/stylesheets/shared/about.scss */
  .about-page.image-grid-wrapper {
    margin-bottom: 50px;
  }
  /* line 37, /app/app/assets/stylesheets/shared/about.scss */
  .about-page .more-cta-bar {
    margin-bottom: 0;
  }
}
/* line 42, /app/app/assets/stylesheets/shared/about.scss */
.about-page p {
  max-width: 670px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 1rem;
}
/* line 49, /app/app/assets/stylesheets/shared/about.scss */
.about-page .arrow-dark.arrow-expand {
  position: absolute;
  left: 0;
  bottom: -50px;
  line-height: 50px;
  width: 244px;
  justify-content: center;
}
@media screen and (min-width: 601px) {
  /* line 49, /app/app/assets/stylesheets/shared/about.scss */
  .about-page .arrow-dark.arrow-expand {
    letter-spacing: 2px;
  }
}
/* line 61, /app/app/assets/stylesheets/shared/about.scss */
.about-page .arrow-dark.arrow-expand .arrow svg {
  transform: translateX(0);
  transition: transform 0.3s ease;
}
/* line 66, /app/app/assets/stylesheets/shared/about.scss */
.about-page .arrow-dark.arrow-expand:hover, .about-page .arrow-dark.arrow-expand:focus {
  color: #057D7F;
}
/* line 69, /app/app/assets/stylesheets/shared/about.scss */
.about-page .arrow-dark.arrow-expand:hover .arrow svg, .about-page .arrow-dark.arrow-expand:focus .arrow svg {
  transform: translateX(6px);
}
/* line 75, /app/app/assets/stylesheets/shared/about.scss */
.about-page .about-section {
  overflow: hidden;
  max-width: 1024px;
  margin-right: auto;
  margin-left: auto;
}
/* line 81, /app/app/assets/stylesheets/shared/about.scss */
.about-page .about-section .float-right {
  float: right;
  margin: 40px;
}
/* line 85, /app/app/assets/stylesheets/shared/about.scss */
.about-page .about-section .float-right.image-tall {
  margin: 60px 0 60px 40px;
  width: 100%;
  max-width: 350px;
}
@media screen and (max-width: 767px) {
  /* line 85, /app/app/assets/stylesheets/shared/about.scss */
  .about-page .about-section .float-right.image-tall {
    max-width: 300px;
  }
}
@media screen and (max-width: 680px) {
  /* line 85, /app/app/assets/stylesheets/shared/about.scss */
  .about-page .about-section .float-right.image-tall {
    max-width: 400px;
  }
}
/* line 99, /app/app/assets/stylesheets/shared/about.scss */
.about-page .about-section .float-right.offset-right {
  margin-right: -16%;
}
@media screen and (max-width: 1024px) {
  /* line 99, /app/app/assets/stylesheets/shared/about.scss */
  .about-page .about-section .float-right.offset-right {
    margin-right: -10%;
  }
}
@media screen and (max-width: 910px) {
  /* line 99, /app/app/assets/stylesheets/shared/about.scss */
  .about-page .about-section .float-right.offset-right {
    margin-right: -4%;
  }
}
@media screen and (max-width: 800px) {
  /* line 99, /app/app/assets/stylesheets/shared/about.scss */
  .about-page .about-section .float-right.offset-right {
    margin-right: 0;
  }
}
@media screen and (max-width: 680px) {
  /* line 118, /app/app/assets/stylesheets/shared/about.scss */
  .about-page .about-section .float-right,
  .about-page .about-section .float-right.offset-right {
    float: none;
    display: block;
    margin: 50px auto;
  }
}
/* line 127, /app/app/assets/stylesheets/shared/about.scss */
.about-page .about-section p:last-of-type {
  margin-bottom: 0;
}
/* line 132, /app/app/assets/stylesheets/shared/about.scss */
.about-page .about-section.about-intro {
  margin-bottom: 0;
}
/* line 135, /app/app/assets/stylesheets/shared/about.scss */
.about-page .about-section.about-intro img {
  width: 75%;
  max-width: 467px;
  max-height: 467px;
}
@media screen and (max-width: 910px) {
  /* line 143, /app/app/assets/stylesheets/shared/about.scss */
  .about-page .about-section.about-intro img {
    width: 100%;
    max-height: 350px;
    max-width: 350px;
  }
}
@media screen and (max-width: 767px) {
  /* line 151, /app/app/assets/stylesheets/shared/about.scss */
  .about-page .about-section.about-intro img {
    width: 100%;
    max-height: 300px;
    max-width: 300px;
  }
}
@media screen and (max-width: 680px) {
  /* line 159, /app/app/assets/stylesheets/shared/about.scss */
  .about-page .about-section.about-intro img {
    width: 100%;
    max-height: none;
    max-width: none;
  }
}
/* line 167, /app/app/assets/stylesheets/shared/about.scss */
.about-page .about-section.image-grid-right {
  max-width: none;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: space-between;
  overflow: visible;
}
/* line 175, /app/app/assets/stylesheets/shared/about.scss */
.about-page .about-section.image-grid-right > div:first-child {
  width: calc(100% - 420px);
}
/* line 178, /app/app/assets/stylesheets/shared/about.scss */
.about-page .about-section.image-grid-right > div:first-child p {
  max-width: 400px;
  margin-right: auto;
  margin-left: auto;
}
/* line 185, /app/app/assets/stylesheets/shared/about.scss */
.about-page .about-section.image-grid-right .double-image-grid {
  display: flex;
  width: 100%;
  max-width: 420px;
  margin: 0 0 0 50px;
}
/* line 191, /app/app/assets/stylesheets/shared/about.scss */
.about-page .about-section.image-grid-right .double-image-grid img {
  width: 50%;
  max-width: 200px;
  max-height: 200px;
  display: block;
}
/* line 197, /app/app/assets/stylesheets/shared/about.scss */
.about-page .about-section.image-grid-right .double-image-grid img:first-child {
  margin-right: 10px;
}
/* line 200, /app/app/assets/stylesheets/shared/about.scss */
.about-page .about-section.image-grid-right .double-image-grid img:last-child {
  margin-left: 10px;
}
@media screen and (max-width: 920px) {
  /* line 207, /app/app/assets/stylesheets/shared/about.scss */
  .about-page .about-section.image-grid-right > div:first-child {
    width: calc(100% - 200px);
  }
  /* line 211, /app/app/assets/stylesheets/shared/about.scss */
  .about-page .about-section.image-grid-right .double-image-grid {
    max-width: 200px;
    flex-wrap: wrap;
  }
  /* line 215, /app/app/assets/stylesheets/shared/about.scss */
  .about-page .about-section.image-grid-right .double-image-grid img {
    width: 100%;
  }
  /* line 218, /app/app/assets/stylesheets/shared/about.scss */
  .about-page .about-section.image-grid-right .double-image-grid img:first-child {
    margin-right: 0;
    margin-bottom: 16px;
  }
  /* line 223, /app/app/assets/stylesheets/shared/about.scss */
  .about-page .about-section.image-grid-right .double-image-grid img:last-child {
    margin-left: 0;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 550px) {
  /* line 167, /app/app/assets/stylesheets/shared/about.scss */
  .about-page .about-section.image-grid-right {
    flex-wrap: wrap;
    width: calc(100% + 64px);
    margin-left: -32px;
    margin-bottom: 0;
    justify-content: center;
  }
  /* line 238, /app/app/assets/stylesheets/shared/about.scss */
  .about-page .about-section.image-grid-right > div:first-child {
    width: 100%;
    padding: 0 32px;
    margin-bottom: 50px;
  }
  /* line 244, /app/app/assets/stylesheets/shared/about.scss */
  .about-page .about-section.image-grid-right .double-image-grid {
    width: 100%;
    margin: 0;
    max-width: none;
    align-items: center;
  }
  /* line 250, /app/app/assets/stylesheets/shared/about.scss */
  .about-page .about-section.image-grid-right .double-image-grid img {
    width: 50%;
    max-width: none;
    max-height: none;
  }
  /* line 255, /app/app/assets/stylesheets/shared/about.scss */
  .about-page .about-section.image-grid-right .double-image-grid img:first-child {
    margin-right: 0;
    margin-bottom: 0;
  }
  /* line 260, /app/app/assets/stylesheets/shared/about.scss */
  .about-page .about-section.image-grid-right .double-image-grid img:last-child {
    margin-left: 0;
    margin-bottom: 0;
  }
}
/* line 271, /app/app/assets/stylesheets/shared/about.scss */
.about-page .full-width-image img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 767px) {
  /* line 270, /app/app/assets/stylesheets/shared/about.scss */
  .about-page .full-width-image {
    width: calc(100% + 64px);
    margin-left: -32px;
  }
}
/* line 282, /app/app/assets/stylesheets/shared/about.scss */
.about-page .bottom-buttons {
  line-height: 56px;
  display: flex;
  justify-content: center;
  align-content: center;
}
/* line 288, /app/app/assets/stylesheets/shared/about.scss */
.about-page .bottom-buttons a {
  display: inline-block;
  min-width: 230px;
  text-align: center;
}
/* line 293, /app/app/assets/stylesheets/shared/about.scss */
.about-page .bottom-buttons a.button {
  line-height: 56px;
  height: 56px;
  margin-right: 40px;
  text-align: center;
}
/* line 300, /app/app/assets/stylesheets/shared/about.scss */
.about-page .bottom-buttons a:last-child {
  line-height: 56px;
  text-transform: uppercase;
  font-weight: bold;
  font-style: italic;
  color: #99752f;
  text-align: left;
}
/* line 308, /app/app/assets/stylesheets/shared/about.scss */
.about-page .bottom-buttons a:last-child:hover, .about-page .bottom-buttons a:last-child:focus {
  color: #262626;
}
@media screen and (max-width: 767px) {
  /* line 282, /app/app/assets/stylesheets/shared/about.scss */
  .about-page .bottom-buttons {
    flex-wrap: wrap;
  }
  /* line 319, /app/app/assets/stylesheets/shared/about.scss */
  .about-page .bottom-buttons a.button {
    margin-right: 0;
    margin-bottom: 16px;
  }
  /* line 324, /app/app/assets/stylesheets/shared/about.scss */
  .about-page .bottom-buttons a:last-child {
    text-align: center;
  }
}

/* line 1, /app/app/assets/stylesheets/shared/ajax-loading.scss */
.ajax-loading-container {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #262626;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease 0.3s;
}
/* line 16, /app/app/assets/stylesheets/shared/ajax-loading.scss */
.ajax-loading-container svg circle {
  stroke: #f8f3ea;
}
/* line 20, /app/app/assets/stylesheets/shared/ajax-loading.scss */
.ajax-loading-container.is-loading {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* line 2, /app/app/assets/stylesheets/shared/alter.scss */
.alter-wrapper .wrapper {
  max-width: 900px;
}
/* line 5, /app/app/assets/stylesheets/shared/alter.scss */
.alter-wrapper .wrapper-wide {
  padding-left: 0;
  padding-right: 0;
}
/* line 10, /app/app/assets/stylesheets/shared/alter.scss */
.alter-wrapper .alter-logo {
  position: relative;
  display: flex;
  margin-bottom: 50px;
  align-items: flex-end;
}
@media screen and (max-width: 600px) {
  /* line 10, /app/app/assets/stylesheets/shared/alter.scss */
  .alter-wrapper .alter-logo {
    flex-wrap: wrap;
    margin-bottom: 32px;
  }
}
/* line 22, /app/app/assets/stylesheets/shared/alter.scss */
.alter-wrapper .alter-logo svg {
  fill: #262626;
  width: 360px;
  height: 111px;
  position: relative;
  margin-right: 32px;
}
@media screen and (max-width: 600px) {
  /* line 22, /app/app/assets/stylesheets/shared/alter.scss */
  .alter-wrapper .alter-logo svg {
    width: 280px;
    height: 118px;
    margin-right: 0;
    margin-bottom: 8px;
  }
}
/* line 37, /app/app/assets/stylesheets/shared/alter.scss */
.alter-wrapper .alter-logo h2 {
  display: inline-block;
  font-size: 18px;
  position: relative;
  width: calc(100% - 100px);
}
@media screen and (max-width: 600px) {
  /* line 37, /app/app/assets/stylesheets/shared/alter.scss */
  .alter-wrapper .alter-logo h2 {
    font-size: 16px;
  }
}
/* line 51, /app/app/assets/stylesheets/shared/alter.scss */
.alter-wrapper .main-img {
  position: relative;
}
/* line 55, /app/app/assets/stylesheets/shared/alter.scss */
.alter-wrapper .alter-video {
  width: 100%;
  padding-top: 50px;
  margin-bottom: 50px;
  position: relative;
}
/* line 61, /app/app/assets/stylesheets/shared/alter.scss */
.alter-wrapper .alter-video::before {
  content: '';
  width: 100%;
  height: 105px;
  background-color: #e4dcce;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 0;
}
@media screen and (max-width: 600px) {
  /* line 55, /app/app/assets/stylesheets/shared/alter.scss */
  .alter-wrapper .alter-video {
    padding-top: 32px;
  }
}
/* line 78, /app/app/assets/stylesheets/shared/alter.scss */
.alter-wrapper .previewimage,
.alter-wrapper .previewvideo {
  width: 100%;
  max-width: 1024px;
  position: relative;
  z-index: 1;
  background-color: #262626;
}
@media screen and (max-width: 600px) {
  /* line 78, /app/app/assets/stylesheets/shared/alter.scss */
  .alter-wrapper .previewimage,
  .alter-wrapper .previewvideo {
    width: calc(100% + 64px);
    margin-right: -32px;
    margin-left: -32px;
  }
}
/* line 92, /app/app/assets/stylesheets/shared/alter.scss */
.alter-wrapper .previewimage img,
.alter-wrapper .previewvideo img {
  display: block;
  width: 100%;
  opacity: 0.9;
}
/* line 98, /app/app/assets/stylesheets/shared/alter.scss */
.alter-wrapper .previewimage .playoverlay,
.alter-wrapper .previewvideo .playoverlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}
/* line 109, /app/app/assets/stylesheets/shared/alter.scss */
.alter-wrapper .previewimage .playoverlay svg.icon-play,
.alter-wrapper .previewvideo .playoverlay svg.icon-play {
  top: 50%;
  left: 50%;
  height: 60px;
  width: 60px;
  margin-left: -30px;
  margin-top: -30px;
  transform: scale(1);
  transition: all 0.3s ease;
}
/* line 122, /app/app/assets/stylesheets/shared/alter.scss */
.alter-wrapper .previewimage .playoverlay:hover svg.icon-play,
.alter-wrapper .previewvideo .playoverlay:hover svg.icon-play {
  transform: scale(1.15);
}
/* line 128, /app/app/assets/stylesheets/shared/alter.scss */
.alter-wrapper .text-block {
  max-width: 660px;
}
/* line 131, /app/app/assets/stylesheets/shared/alter.scss */
.alter-wrapper .text-block h5 {
  color: #99752f;
  margin-bottom: -40px;
  font-size: 16px;
}
/* line 137, /app/app/assets/stylesheets/shared/alter.scss */
.alter-wrapper .alter-content {
  margin-bottom: 50px;
}
/* line 140, /app/app/assets/stylesheets/shared/alter.scss */
.alter-wrapper .alter-content h3 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 25px;
}
/* line 147, /app/app/assets/stylesheets/shared/alter.scss */
.alter-wrapper .alter-content h4 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 25px;
  margin-top: 50px;
}
/* line 154, /app/app/assets/stylesheets/shared/alter.scss */
.alter-wrapper .alter-content h4:first-of-type {
  margin-top: 0;
}
/* line 159, /app/app/assets/stylesheets/shared/alter.scss */
.alter-wrapper .alter-content ul,
.alter-wrapper .alter-content ol {
  margin-top: 50px;
  margin-bottom: 50px;
  margin-left: 32px;
  max-width: 700px;
}
/* line 166, /app/app/assets/stylesheets/shared/alter.scss */
.alter-wrapper .alter-content ul li,
.alter-wrapper .alter-content ol li {
  font-size: 16px;
  margin-bottom: 20px;
  font-family: 'Lora';
  line-height: 1.6;
}
/* line 174, /app/app/assets/stylesheets/shared/alter.scss */
.alter-wrapper .alter-content ul {
  list-style-type: disc;
}
/* line 177, /app/app/assets/stylesheets/shared/alter.scss */
.alter-wrapper .alter-content ol {
  list-style-type: decimal;
}
/* line 183, /app/app/assets/stylesheets/shared/alter.scss */
.alter-wrapper .alter-bottom {
  margin-bottom: 50px;
  float: none;
  clear: both;
  margin-top: 50px;
}

/* -- Going Deeper Section -- */
/* line 192, /app/app/assets/stylesheets/shared/alter.scss */
h4.altar-deeper-heading {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 30px;
}
@media screen and (min-width: 600px) {
  /* line 192, /app/app/assets/stylesheets/shared/alter.scss */
  h4.altar-deeper-heading {
    margin-bottom: 40px;
  }
}

/* line 201, /app/app/assets/stylesheets/shared/alter.scss */
.altar-deeper {
  clear: both;
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  /* line 201, /app/app/assets/stylesheets/shared/alter.scss */
  .altar-deeper {
    flex-direction: row;
  }
}
/* line 212, /app/app/assets/stylesheets/shared/alter.scss */
.altar-deeper__block {
  width: 100%;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  /* line 212, /app/app/assets/stylesheets/shared/alter.scss */
  .altar-deeper__block {
    width: 33.33%;
    padding-right: 20px;
  }
}
/* line 221, /app/app/assets/stylesheets/shared/alter.scss */
.altar-deeper__title {
  display: flex;
  margin-bottom: 0px;
}
@media screen and (min-width: 768px) {
  /* line 221, /app/app/assets/stylesheets/shared/alter.scss */
  .altar-deeper__title {
    margin-bottom: 12px;
  }
}
/* line 229, /app/app/assets/stylesheets/shared/alter.scss */
.altar-deeper__title h4 {
  border-top: 1px solid #99752f;
  font-size: 16px;
  font-weight: bold;
  line-height: 24px;
  padding: 8px 20px 0 20px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  /* line 229, /app/app/assets/stylesheets/shared/alter.scss */
  .altar-deeper__title h4 {
    width: 125px;
  }
}
/* line 243, /app/app/assets/stylesheets/shared/alter.scss */
.altar-deeper__icon {
  width: 40px;
  height: 40px;
  padding: 6px;
  background-color: #262626;
}
/* line 249, /app/app/assets/stylesheets/shared/alter.scss */
.altar-deeper__icon svg {
  width: 100%;
  height: auto;
  fill: #fff;
}
/* line 256, /app/app/assets/stylesheets/shared/alter.scss */
.altar-deeper .icon--respond {
  padding: 8px;
}
/* line 259, /app/app/assets/stylesheets/shared/alter.scss */
.altar-deeper .icon--respond svg {
  fill: none;
}
/* line 261, /app/app/assets/stylesheets/shared/alter.scss */
.altar-deeper .icon--read {
  padding: 9px 6px 0px 6px;
}
/* line 264, /app/app/assets/stylesheets/shared/alter.scss */
.altar-deeper .icon--watch {
  padding: 10px 6px 0 6px;
}
/* line 267, /app/app/assets/stylesheets/shared/alter.scss */
.altar-deeper .icon--listen {
  padding: 8px 12px 0 12px;
}
/* line 270, /app/app/assets/stylesheets/shared/alter.scss */
.altar-deeper .icon--learn {
  padding: 7px 11px 0 11px;
}
/* line 273, /app/app/assets/stylesheets/shared/alter.scss */
.altar-deeper .icon--play {
  padding: 8px 8px 0 8px;
}
/* line 276, /app/app/assets/stylesheets/shared/alter.scss */
.altar-deeper .icon--pray {
  padding: 6px 10px 0 10px;
}
/* line 279, /app/app/assets/stylesheets/shared/alter.scss */
.altar-deeper .icon--practice {
  padding: 8px 8px 0 8px;
}
/* line 282, /app/app/assets/stylesheets/shared/alter.scss */
.altar-deeper .icon--visit {
  padding: 8px 8px 0 8px;
}
/* line 285, /app/app/assets/stylesheets/shared/alter.scss */
.altar-deeper .icon--explore {
  padding: 8px 8px 0 8px;
}
/* line 289, /app/app/assets/stylesheets/shared/alter.scss */
.altar-deeper p {
  font-size: 16px;
  padding-left: 60px;
  max-width: 550px;
}
@media screen and (min-width: 768px) {
  /* line 289, /app/app/assets/stylesheets/shared/alter.scss */
  .altar-deeper p {
    padding-left: 0;
  }
}
/* line 298, /app/app/assets/stylesheets/shared/alter.scss */
.altar-deeper a {
  display: inline-block;
  position: relative;
  color: #99752f;
  font-family: "Lato", Helvetica, arial, sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1.5px;
  padding: 10px 20px 10px 60px;
  transition: all .5s ease;
}
@media screen and (min-width: 768px) {
  /* line 298, /app/app/assets/stylesheets/shared/alter.scss */
  .altar-deeper a {
    padding-left: 0;
  }
}
/* line 313, /app/app/assets/stylesheets/shared/alter.scss */
.altar-deeper a:after {
  content: '';
  display: inline-block;
  position: absolute;
  right: 0;
  top: 18px;
  width: 6px;
  height: 6px;
  border-right: 1px solid #99752f;
  border-top: 1px solid #99752f;
  transform: rotate(45deg);
}
/* line 326, /app/app/assets/stylesheets/shared/alter.scss */
.altar-deeper a:hover {
  color: #057D7F;
}
/* line 329, /app/app/assets/stylesheets/shared/alter.scss */
.altar-deeper a:hover:after {
  border-right: 1px solid #057D7F;
  border-top: 1px solid #057D7F;
}

/* -- Post Navigation Section -- */
/* line 340, /app/app/assets/stylesheets/shared/alter.scss */
#postnav {
  display: flex;
  width: 100%;
  magin-top: 20px;
}
@media screen and (min-width: 600px) {
  /* line 340, /app/app/assets/stylesheets/shared/alter.scss */
  #postnav {
    padding-left: 0px;
    padding-right: 0px;
  }
}
/* line 350, /app/app/assets/stylesheets/shared/alter.scss */
#postnav .altar-postnav {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media screen and (min-width: 768px) {
  /* line 350, /app/app/assets/stylesheets/shared/alter.scss */
  #postnav .altar-postnav {
    flex-direction: row;
  }
}
/* line 359, /app/app/assets/stylesheets/shared/alter.scss */
#postnav .altar-postnav__block {
  display: flex;
  max-width: 420px;
  height: 168px;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  /* line 365, /app/app/assets/stylesheets/shared/alter.scss */
  #postnav .altar-postnav__block:nth-child(2) {
    margin-left: 15px;
  }
}
/* line 375, /app/app/assets/stylesheets/shared/alter.scss */
#postnav .altar-postnav__vidblock--inner {
  width: 100%;
  min-width: 175px;
  position: relative;
  height: 100%;
  background-color: #e4dcce;
  background-repeat: no-repeat;
  background-position: left;
  background-size: auto 168px;
  transition: all 2s ease;
}
/* line 387, /app/app/assets/stylesheets/shared/alter.scss */
#postnav .altar-postnav__txtblock {
  position: relative;
  background-color: #fff;
  padding: 26px;
}
/* line 392, /app/app/assets/stylesheets/shared/alter.scss */
#postnav .altar-postnav__txtblock h3 {
  font-size: 20px;
  font-weight: bold;
  color: #262626;
}
/* line 400, /app/app/assets/stylesheets/shared/alter.scss */
#postnav .altar-postnav__block:hover .altar-postnav__vidblock--inner {
  background-size: auto 178px;
}
/* line 406, /app/app/assets/stylesheets/shared/alter.scss */
#postnav .arrow-link-altar {
  display: inline-block;
  position: absolute;
  bottom: 8px;
  left: 26px;
  color: #99752f;
  font-family: "Lato", Helvetica, arial, sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1.5px;
  padding: 10px 20px 10px 0px;
  transition: all .5s ease;
}
@media screen and (min-width: 768px) {
  /* line 406, /app/app/assets/stylesheets/shared/alter.scss */
  #postnav .arrow-link-altar {
    padding-left: 0;
  }
}
/* line 423, /app/app/assets/stylesheets/shared/alter.scss */
#postnav .arrow-link-altar:after {
  content: '';
  display: inline-block;
  position: absolute;
  right: 0;
  top: 18px;
  width: 6px;
  height: 6px;
  border-right: 1px solid #99752f;
  border-top: 1px solid #99752f;
  transform: rotate(45deg);
}
/* line 436, /app/app/assets/stylesheets/shared/alter.scss */
#postnav .arrow-link-altar:hover {
  color: #057D7F;
}
/* line 439, /app/app/assets/stylesheets/shared/alter.scss */
#postnav .arrow-link-altar:hover:after {
  border-right: 1px solid #057D7F;
  border-top: 1px solid #057D7F;
}

/* line 2, /app/app/assets/stylesheets/shared/alter_conversation_links.scss */
.alter-conversation-links h4 {
  border-bottom: 1px solid #99752f;
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 1px;
  max-width: 640px;
  padding-bottom: 16px;
  margin-bottom: 16px;
}
/* line 13, /app/app/assets/stylesheets/shared/alter_conversation_links.scss */
.alter-conversation-links ul {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  max-width: 640px;
  position: relative;
  padding-bottom: 60px;
}
/* line 21, /app/app/assets/stylesheets/shared/alter_conversation_links.scss */
.alter-conversation-links ul li {
  margin: 0 20px 20px 0;
  font-size: 18px;
}
/* line 25, /app/app/assets/stylesheets/shared/alter_conversation_links.scss */
.alter-conversation-links ul li:nth-child(3), .alter-conversation-links ul li:last-child {
  margin-right: 0;
}
/* line 30, /app/app/assets/stylesheets/shared/alter_conversation_links.scss */
.alter-conversation-links ul li a {
  color: #262626;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Lato", Helvetica, arial, sans-serif;
  border-bottom: 2px solid transparent;
  height: 60px;
  display: flex;
  align-content: center;
  align-items: center;
}
/* line 43, /app/app/assets/stylesheets/shared/alter_conversation_links.scss */
.alter-conversation-links ul li a span {
  background-color: #ffffff;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  height: 60px;
  width: 140px;
  transition: all 0.5s ease;
}
/* line 54, /app/app/assets/stylesheets/shared/alter_conversation_links.scss */
.alter-conversation-links ul li a span.icon {
  background-color: #e4dcce;
  width: 60px;
  padding: 0;
  transition: all 0.5s ease;
}
/* line 61, /app/app/assets/stylesheets/shared/alter_conversation_links.scss */
.alter-conversation-links ul li a span.icon svg {
  transition: all 0.5s ease;
  fill: #262626;
  width: 32px;
  height: 32px;
}
/* line 70, /app/app/assets/stylesheets/shared/alter_conversation_links.scss */
.alter-conversation-links ul li a .description {
  background-color: #ffffff;
  font-family: "Lora", Times, serif;
  font-weight: normal;
  font-size: 14px;
  text-transform: none;
  letter-spacing: normal;
  padding: 16px 20px;
  position: absolute;
  top: 59px;
  right: 0;
  left: 0;
  min-height: 60px;
  max-height: 125px;
  overflow-y: scroll;
  visibility: hidden;
  z-index: 4;
  opacity: 0;
  transition: opacity 0.5s ease, visibility 0.1s ease 0.5s;
}
/* line 91, /app/app/assets/stylesheets/shared/alter_conversation_links.scss */
.alter-conversation-links ul li a .description p {
  margin-bottom: 6px;
}
/* line 94, /app/app/assets/stylesheets/shared/alter_conversation_links.scss */
.alter-conversation-links ul li a .description p:last-of-type {
  margin-bottom: 0;
}
/* line 102, /app/app/assets/stylesheets/shared/alter_conversation_links.scss */
.alter-conversation-links ul li a:hover span, .alter-conversation-links ul li a:focus span {
  background-color: #ffffff;
}
/* line 104, /app/app/assets/stylesheets/shared/alter_conversation_links.scss */
.alter-conversation-links ul li a:hover span.icon, .alter-conversation-links ul li a:focus span.icon {
  background-color: #262626;
}
/* line 107, /app/app/assets/stylesheets/shared/alter_conversation_links.scss */
.alter-conversation-links ul li a:hover span.icon svg, .alter-conversation-links ul li a:focus span.icon svg {
  fill: #ffffff;
}
/* line 113, /app/app/assets/stylesheets/shared/alter_conversation_links.scss */
.alter-conversation-links ul li a:hover .description, .alter-conversation-links ul li a:focus .description {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease;
}
@media screen and (max-width: 767px) {
  /* line 123, /app/app/assets/stylesheets/shared/alter_conversation_links.scss */
  .alter-conversation-links ul li a:hover span, .alter-conversation-links ul li a:focus span {
    background-color: #ffffff;
  }
  /* line 125, /app/app/assets/stylesheets/shared/alter_conversation_links.scss */
  .alter-conversation-links ul li a:hover span.icon, .alter-conversation-links ul li a:focus span.icon {
    background-color: #e4dcce;
  }
  /* line 128, /app/app/assets/stylesheets/shared/alter_conversation_links.scss */
  .alter-conversation-links ul li a:hover span.icon svg, .alter-conversation-links ul li a:focus span.icon svg {
    fill: #262626;
  }
  /* line 135, /app/app/assets/stylesheets/shared/alter_conversation_links.scss */
  .alter-conversation-links ul li a .description {
    display: none;
  }
}
@media screen and (max-width: 440px) {
  /* line 30, /app/app/assets/stylesheets/shared/alter_conversation_links.scss */
  .alter-conversation-links ul li a {
    font-size: 16px;
  }
}

/* line 1, /app/app/assets/stylesheets/shared/buttons.scss */
.button,
.btn {
  display: inline-block;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  letter-spacing: 1px;
  color: #262626;
  border: 1px solid;
  font-family: "Lato", Helvetica, arial, sans-serif;
  font-size: 16px;
  line-height: 40px;
  padding: 0 32px;
  cursor: pointer;
  outline: none;
  transition: all 0.25s ease;
}
/* line 18, /app/app/assets/stylesheets/shared/buttons.scss */
.button:hover, .button:focus, .button:active,
.btn:hover,
.btn:focus,
.btn:active {
  background-color: #262626;
  color: #f8f3ea;
  border: 1px solid #262626;
}
/* line 25, /app/app/assets/stylesheets/shared/buttons.scss */
.button.rounded,
.btn.rounded {
  border-radius: 4px;
}
/* line 28, /app/app/assets/stylesheets/shared/buttons.scss */
.button.small,
.btn.small {
  line-height: 24px;
  padding: 0 20px;
  font-size: 14px;
}
/* line 33, /app/app/assets/stylesheets/shared/buttons.scss */
.button.solid-button, .button.button-solid, .button[type="submit"],
.btn.solid-button,
.btn.button-solid,
.btn[type="submit"] {
  background-color: #262626;
  color: #f8f3ea;
  border-color: #262626;
  font-size: 18px;
  -webkit-appearance: none;
}
/* line 42, /app/app/assets/stylesheets/shared/buttons.scss */
.button.solid-button:hover, .button.solid-button:focus, .button.solid-button:active, .button.button-solid:hover, .button.button-solid:focus, .button.button-solid:active, .button[type="submit"]:hover, .button[type="submit"]:focus, .button[type="submit"]:active,
.btn.solid-button:hover,
.btn.solid-button:focus,
.btn.solid-button:active,
.btn.button-solid:hover,
.btn.button-solid:focus,
.btn.button-solid:active,
.btn[type="submit"]:hover,
.btn[type="submit"]:focus,
.btn[type="submit"]:active {
  background-color: #f8f3ea;
  color: #262626;
}
/* line 49, /app/app/assets/stylesheets/shared/buttons.scss */
.button.solid-button.button-watch, .button.button-solid.button-watch, .button[type="submit"].button-watch,
.btn.solid-button.button-watch,
.btn.button-solid.button-watch,
.btn[type="submit"].button-watch {
  padding-left: 40px !important;
}
/* line 52, /app/app/assets/stylesheets/shared/buttons.scss */
.button.solid-button.button-watch .icon-play, .button.button-solid.button-watch .icon-play, .button[type="submit"].button-watch .icon-play,
.btn.solid-button.button-watch .icon-play,
.btn.button-solid.button-watch .icon-play,
.btn[type="submit"].button-watch .icon-play {
  height: 20px !important;
  width: 20px !important;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  transition: all 0.3s ease !important;
}
/* line 60, /app/app/assets/stylesheets/shared/buttons.scss */
.button.solid-button.button-watch .icon-play .st0,
.button.solid-button.button-watch .icon-play .st1, .button.button-solid.button-watch .icon-play .st0,
.button.button-solid.button-watch .icon-play .st1, .button[type="submit"].button-watch .icon-play .st0,
.button[type="submit"].button-watch .icon-play .st1,
.btn.solid-button.button-watch .icon-play .st0,
.btn.solid-button.button-watch .icon-play .st1,
.btn.button-solid.button-watch .icon-play .st0,
.btn.button-solid.button-watch .icon-play .st1,
.btn[type="submit"].button-watch .icon-play .st0,
.btn[type="submit"].button-watch .icon-play .st1 {
  transition: all 0.3s ease !important;
}
/* line 68, /app/app/assets/stylesheets/shared/buttons.scss */
.button.solid-button.button-watch:hover .icon-play .st0, .button.solid-button.button-watch:focus .icon-play .st0, .button.button-solid.button-watch:hover .icon-play .st0, .button.button-solid.button-watch:focus .icon-play .st0, .button[type="submit"].button-watch:hover .icon-play .st0, .button[type="submit"].button-watch:focus .icon-play .st0,
.btn.solid-button.button-watch:hover .icon-play .st0,
.btn.solid-button.button-watch:focus .icon-play .st0,
.btn.button-solid.button-watch:hover .icon-play .st0,
.btn.button-solid.button-watch:focus .icon-play .st0,
.btn[type="submit"].button-watch:hover .icon-play .st0,
.btn[type="submit"].button-watch:focus .icon-play .st0 {
  fill: #262626 !important;
}
/* line 69, /app/app/assets/stylesheets/shared/buttons.scss */
.button.solid-button.button-watch:hover .icon-play .st1, .button.solid-button.button-watch:focus .icon-play .st1, .button.button-solid.button-watch:hover .icon-play .st1, .button.button-solid.button-watch:focus .icon-play .st1, .button[type="submit"].button-watch:hover .icon-play .st1, .button[type="submit"].button-watch:focus .icon-play .st1,
.btn.solid-button.button-watch:hover .icon-play .st1,
.btn.solid-button.button-watch:focus .icon-play .st1,
.btn.button-solid.button-watch:hover .icon-play .st1,
.btn.button-solid.button-watch:focus .icon-play .st1,
.btn[type="submit"].button-watch:hover .icon-play .st1,
.btn[type="submit"].button-watch:focus .icon-play .st1 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #262626 !important;
}

/* line 75, /app/app/assets/stylesheets/shared/buttons.scss */
.load-more-button {
  display: block;
  margin: auto;
}

/* line 82, /app/app/assets/stylesheets/shared/buttons.scss */
.promo-button {
  position: relative;
  display: block;
  flex-shrink: 0;
  min-width: 160px;
  border: none;
  background-color: #99762a;
  padding: 0 30px 0 50px;
  line-height: 66px;
  font-family: "Lato", Helvetica, arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  letter-spacing: 2px;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 300ms ease-in-out, color 300ms ease-in-out;
  user-select: none;
}
/* line 106, /app/app/assets/stylesheets/shared/buttons.scss */
.promo-button::before, .promo-button::after {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
}
/* line 115, /app/app/assets/stylesheets/shared/buttons.scss */
.promo-button::before {
  width: 66px;
  height: 66px;
  left: -66px;
  background-color: #ffffff;
  transition: width 0.3s ease;
  transform-origin: left;
  z-index: -1;
}
/* line 124, /app/app/assets/stylesheets/shared/buttons.scss */
.promo-button::after {
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 4px;
  background-color: #057D7F;
}
/* line 132, /app/app/assets/stylesheets/shared/buttons.scss */
.promo-button:hover, .promo-button:focus {
  outline: none;
  color: #262626;
}
/* line 138, /app/app/assets/stylesheets/shared/buttons.scss */
.promo-button:hover::before, .promo-button:focus::before {
  width: calc(100% + 66px);
  transition: width 0.3s ease;
}
/* line 145, /app/app/assets/stylesheets/shared/buttons.scss */
.promo-button.pb-dark {
  background-color: #262626;
  font-weight: 400;
}
/* line 149, /app/app/assets/stylesheets/shared/buttons.scss */
.promo-button.pb-dark:hover, .promo-button.pb-dark:focus {
  background-color: #333333;
  color: #057D7F;
}
/* line 157, /app/app/assets/stylesheets/shared/buttons.scss */
.promo-button.pb-reverse {
  padding: 0 50px 0 30px;
  height: 54px;
  position: relative;
}
/* line 162, /app/app/assets/stylesheets/shared/buttons.scss */
.promo-button.pb-reverse span {
  position: relative;
  z-index: 1;
}
/* line 167, /app/app/assets/stylesheets/shared/buttons.scss */
.promo-button.pb-reverse::before, .promo-button.pb-reverse::after {
  content: '';
  left: unset;
  right: 0;
}
/* line 173, /app/app/assets/stylesheets/shared/buttons.scss */
.promo-button.pb-reverse::before {
  position: absolute;
  width: 54px;
  height: 54px;
  right: -54px;
  top: 0;
  bottom: 0;
  left: auto;
  z-index: unset;
  transition: width 0.3s ease;
}
/* line 184, /app/app/assets/stylesheets/shared/buttons.scss */
.promo-button.pb-reverse::after {
  transform: translate(50%, -50%);
}
/* line 186, /app/app/assets/stylesheets/shared/buttons.scss */
.promo-button.pb-reverse:hover, .promo-button.pb-reverse:focus {
  color: #262626;
}
/* line 190, /app/app/assets/stylesheets/shared/buttons.scss */
.promo-button.pb-reverse:hover::before, .promo-button.pb-reverse:focus::before {
  transform-origin: right;
  width: calc(100% + 54px);
  transition: width 0.3s ease;
}

/* line 200, /app/app/assets/stylesheets/shared/buttons.scss */
.arrow-dark {
  display: flex;
  position: relative;
  background-color: #262626;
  color: #99762a;
  height: 75px;
  padding: 0 32px 0 100px;
  border: none;
  font-family: "Times New Roman", Times, serif;
  font-size: 26px;
  font-style: italic;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.25s ease;
  outline: none;
  cursor: pointer;
}
/* line 218, /app/app/assets/stylesheets/shared/buttons.scss */
.arrow-dark .arrow {
  background-color: #ffffff;
  width: 75px;
  height: 75px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
}
/* line 231, /app/app/assets/stylesheets/shared/buttons.scss */
.arrow-dark .arrow svg {
  fill: #99762a;
  width: 24px;
  transition: all 0.25s ease;
}
/* line 238, /app/app/assets/stylesheets/shared/buttons.scss */
.arrow-dark:hover {
  border: none;
}
/* line 241, /app/app/assets/stylesheets/shared/buttons.scss */
.arrow-dark:hover .arrow svg {
  transform: translateX(8px);
}
/* line 246, /app/app/assets/stylesheets/shared/buttons.scss */
.arrow-dark.arrow-expand {
  padding: 0 70px 0 20px;
  font-size: 16px;
  height: 50px;
}
@media screen and (max-width: 600px) {
  /* line 246, /app/app/assets/stylesheets/shared/buttons.scss */
  .arrow-dark.arrow-expand {
    font-size: 14px;
    letter-spacing: 1px;
  }
}
/* line 256, /app/app/assets/stylesheets/shared/buttons.scss */
.arrow-dark.arrow-expand .arrow {
  width: 50px;
  height: 50px;
  right: 0;
  left: auto;
}
/* line 262, /app/app/assets/stylesheets/shared/buttons.scss */
.arrow-dark.arrow-expand .arrow svg {
  width: 12px;
  transform: rotate(90deg);
  transition: none;
}

/* line 272, /app/app/assets/stylesheets/shared/buttons.scss */
a.back-link {
  font-family: "Lato", Helvetica, arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  position: relative;
  font-size: 20px;
  line-height: 20px;
  padding-left: 30px;
  color: #057D7F;
}
/* line 283, /app/app/assets/stylesheets/shared/buttons.scss */
a.back-link::before {
  content: '';
  border-right: 10px solid #99762a;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  position: absolute;
  top: 6px;
  left: 0;
  transition: transform 0.4s ease-in-out;
}
/* line 294, /app/app/assets/stylesheets/shared/buttons.scss */
a.back-link:hover {
  color: #057D7F;
}
/* line 297, /app/app/assets/stylesheets/shared/buttons.scss */
a.back-link:hover::before {
  transform: translateX(-9px);
}

/* line 303, /app/app/assets/stylesheets/shared/buttons.scss */
.big-see-all {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 400px;
  background-color: #ffffff;
}
@media screen and (max-width: 1024px) {
  /* line 303, /app/app/assets/stylesheets/shared/buttons.scss */
  .big-see-all {
    justify-content: flex-start;
  }
}
/* line 315, /app/app/assets/stylesheets/shared/buttons.scss */
.big-see-all h3 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
/* line 322, /app/app/assets/stylesheets/shared/buttons.scss */
.big-see-all a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 8% 4%;
}
/* line 335, /app/app/assets/stylesheets/shared/buttons.scss */
.big-see-all a div {
  margin-top: -32px;
  font-weight: 600;
  display: block;
  width: 100%;
  max-width: 290px;
  font-size: 40px;
  padding-left: 32px;
  border-left: 6px solid #057D7F;
  position: relative;
  transition: color 0.25s ease;
}
/* line 347, /app/app/assets/stylesheets/shared/buttons.scss */
.big-see-all a div span {
  display: block;
  font-family: "Times New Roman", Times, serif;
  font-style: italic;
  font-size: 18px;
  color: #99752f;
  letter-spacing: 1px;
  text-transform: lowercase;
  padding-right: 32px;
  padding-left: 38px;
  position: absolute;
  bottom: -32px;
  left: 0;
}
/* line 361, /app/app/assets/stylesheets/shared/buttons.scss */
.big-see-all a div span::after {
  content: '';
  border-left: 10px solid #99762a;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  position: absolute;
  top: calc(50% - 6px);
  right: 0;
  transition: transform 0.3s ease;
}
/* line 375, /app/app/assets/stylesheets/shared/buttons.scss */
.big-see-all a:hover div {
  color: #262626;
}
/* line 378, /app/app/assets/stylesheets/shared/buttons.scss */
.big-see-all a:hover div span {
  color: #262626;
}
/* line 381, /app/app/assets/stylesheets/shared/buttons.scss */
.big-see-all a:hover div span::after {
  transform: translateX(10px);
}

/* line 390, /app/app/assets/stylesheets/shared/buttons.scss */
.plus-button {
  height: 60px;
  position: relative;
  display: inline-block;
  margin-bottom: 32px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  outline: none;
  padding: 0 16px 0 76px;
  font-size: 18px;
  font-weight: 600;
  color: #5d5f63;
  transition: color 0.3s ease;
}
/* line 406, /app/app/assets/stylesheets/shared/buttons.scss */
.plus-button .plus-symbol {
  width: 60px;
  height: 60px;
  background-color: #a7bd3e;
  border-radius: 5px;
  position: absolute;
  top: 0;
  left: 0;
  transition: background-color 0.3s ease;
}
/* line 416, /app/app/assets/stylesheets/shared/buttons.scss */
.plus-button .plus-symbol > span {
  background-color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* line 423, /app/app/assets/stylesheets/shared/buttons.scss */
.plus-button .plus-symbol > span:first-child {
  width: 3px;
  height: 20px;
}
/* line 427, /app/app/assets/stylesheets/shared/buttons.scss */
.plus-button .plus-symbol > span:last-child {
  width: 20px;
  height: 3px;
}
/* line 434, /app/app/assets/stylesheets/shared/buttons.scss */
.plus-button:hover, .plus-button:focus {
  color: #7e8f2f;
}
/* line 438, /app/app/assets/stylesheets/shared/buttons.scss */
.plus-button:hover .plus-symbol, .plus-button:focus .plus-symbol {
  background-color: #8c9e34;
}

/* line 444, /app/app/assets/stylesheets/shared/buttons.scss */
.download-arrow-button {
  position: relative;
  border-radius: 4px;
  height: 32px;
  width: 50px;
}
/* line 450, /app/app/assets/stylesheets/shared/buttons.scss */
.download-arrow-button span {
  position: absolute;
  display: inline-block;
  height: 12px;
  width: 16px;
  top: 50%;
  left: 50%;
  margin-top: -6px;
  margin-left: -8px;
}
/* line 460, /app/app/assets/stylesheets/shared/buttons.scss */
.download-arrow-button span::before, .download-arrow-button span::after {
  content: '';
  position: absolute;
  transition: all 0.3s ease;
}
/* line 467, /app/app/assets/stylesheets/shared/buttons.scss */
.download-arrow-button span::before {
  border-top: 8px solid #ffffff;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  bottom: 4px;
  left: 0;
}
/* line 475, /app/app/assets/stylesheets/shared/buttons.scss */
.download-arrow-button span::after {
  height: 3px;
  width: 16px;
  background-color: #ffffff;
  bottom: 0;
  left: 0;
  right: 0;
}
/* line 488, /app/app/assets/stylesheets/shared/buttons.scss */
.download-arrow-button:hover span::before, .download-arrow-button:focus span::before {
  border-top-color: #262626;
}
/* line 491, /app/app/assets/stylesheets/shared/buttons.scss */
.download-arrow-button:hover span::after, .download-arrow-button:focus span::after {
  background-color: #262626;
}
/* line 498, /app/app/assets/stylesheets/shared/buttons.scss */
.download-arrow-button.invert-download-arrow-button {
  background-color: transparent;
}
/* line 502, /app/app/assets/stylesheets/shared/buttons.scss */
.download-arrow-button.invert-download-arrow-button span::before {
  border-top-color: #262626;
}
/* line 505, /app/app/assets/stylesheets/shared/buttons.scss */
.download-arrow-button.invert-download-arrow-button span::after {
  background-color: #262626;
}
/* line 511, /app/app/assets/stylesheets/shared/buttons.scss */
.download-arrow-button.invert-download-arrow-button:hover, .download-arrow-button.invert-download-arrow-button:focus {
  background-color: #262626;
}
/* line 516, /app/app/assets/stylesheets/shared/buttons.scss */
.download-arrow-button.invert-download-arrow-button:hover span::before, .download-arrow-button.invert-download-arrow-button:focus span::before {
  border-top-color: #ffffff;
}
/* line 519, /app/app/assets/stylesheets/shared/buttons.scss */
.download-arrow-button.invert-download-arrow-button:hover span::after, .download-arrow-button.invert-download-arrow-button:focus span::after {
  background-color: #ffffff;
}

/* line 528, /app/app/assets/stylesheets/shared/buttons.scss */
.back-button-wrapper {
  width: 150px;
}
/* line 531, /app/app/assets/stylesheets/shared/buttons.scss */
.back-button-wrapper a {
  padding: 0 12px;
  font-size: 12px;
  line-height: 24px;
  border-radius: 4px;
  font-weight: 600;
}

/* line 540, /app/app/assets/stylesheets/shared/buttons.scss */
.arrow-link {
  display: inline-block;
  color: #262626;
  position: relative;
  padding-right: 24px;
  font-size: 16px;
  font-family: "Lato", Helvetica, arial, sans-serif;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
}
/* line 551, /app/app/assets/stylesheets/shared/buttons.scss */
.arrow-link::after {
  content: '';
  display: inline-block;
  border-top: 6px solid transparent;
  border-left: 10px solid #262626;
  border-bottom: 6px solid transparent;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
/* line 564, /app/app/assets/stylesheets/shared/buttons.scss */
.arrow-link:hover, .arrow-link:focus {
  color: #99752f;
}
/* line 568, /app/app/assets/stylesheets/shared/buttons.scss */
.arrow-link:hover:after, .arrow-link:focus:after {
  border-left-color: #99752f;
  transform: translate(8px, -50%);
}

/* line 577, /app/app/assets/stylesheets/shared/buttons.scss */
.featured-link-title a::after {
  content: '';
  border-left: 10px solid #99752f;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  display: inline-block;
  margin-left: 12px;
  transition: all 0.3s ease;
}
/* line 589, /app/app/assets/stylesheets/shared/buttons.scss */
.featured-link-title a:hover::after, .featured-link-title a:focus::after {
  transform: translateX(12px);
}

/* line 1, /app/app/assets/stylesheets/shared/category_selection.scss */
.category-selection {
  position: relative;
  margin-bottom: 50px;
}
/* line 5, /app/app/assets/stylesheets/shared/category_selection.scss */
.category-selection h2 {
  font-size: 36px;
  font-weight: 600;
  position: relative;
  z-index: 2;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 32px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #057D7F;
}
/* line 17, /app/app/assets/stylesheets/shared/category_selection.scss */
.category-selection h2 a {
  font-size: 14px;
  font-weight: 400;
  color: #262626;
}
/* line 22, /app/app/assets/stylesheets/shared/category_selection.scss */
.category-selection h2 a svg {
  width: 10px;
  height: 10px;
  transform: rotate(90deg);
}
@media screen and (max-width: 540px) {
  /* line 5, /app/app/assets/stylesheets/shared/category_selection.scss */
  .category-selection h2 {
    font-size: 26px;
  }
}
@media screen and (max-width: 440px) {
  /* line 34, /app/app/assets/stylesheets/shared/category_selection.scss */
  .category-selection h2 a {
    display: block;
  }
}
/* line 40, /app/app/assets/stylesheets/shared/category_selection.scss */
.category-selection #categories-menu {
  margin-top: 8px;
  margin-bottom: 50px;
}
/* line 44, /app/app/assets/stylesheets/shared/category_selection.scss */
.category-selection #categories-menu ul {
  display: flex;
  flex-wrap: wrap;
  max-width: 800px;
}

/* line 2, /app/app/assets/stylesheets/shared/contact.scss */
.form-page p {
  line-height: 1.5;
}
/* line 7, /app/app/assets/stylesheets/shared/contact.scss */
.form-page .form-top p {
  max-width: 500px;
  margin-bottom: 40px;
  margin-top: -20px;
}
/* line 14, /app/app/assets/stylesheets/shared/contact.scss */
.form-page .form-body {
  display: flex;
  max-width: 800px;
}
/* line 19, /app/app/assets/stylesheets/shared/contact.scss */
.form-page .contact-form {
  width: 100%;
  max-width: 500px;
}
/* line 23, /app/app/assets/stylesheets/shared/contact.scss */
.form-page .contact-form label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}
/* line 30, /app/app/assets/stylesheets/shared/contact.scss */
.form-page .contact-form textarea {
  padding: 8px;
}
/* line 34, /app/app/assets/stylesheets/shared/contact.scss */
.form-page .contact-form .g-recaptcha {
  margin-bottom: 16px;
}
/* line 38, /app/app/assets/stylesheets/shared/contact.scss */
.form-page .contact-form .btn.solid-button {
  width: 100%;
  max-width: 200px;
  height: 50px;
  line-height: 50px;
}
/* line 46, /app/app/assets/stylesheets/shared/contact.scss */
.form-page .contact-info {
  padding-left: 80px;
  width: 100%;
  max-width: 320px;
}
/* line 51, /app/app/assets/stylesheets/shared/contact.scss */
.form-page .contact-info p {
  font-family: "Lato", Helvetica, arial, sans-serif;
  margin-bottom: 25px;
}
/* line 55, /app/app/assets/stylesheets/shared/contact.scss */
.form-page .contact-info p:first-child {
  text-transform: uppercase;
}
/* line 59, /app/app/assets/stylesheets/shared/contact.scss */
.form-page .contact-info p strong {
  font-weight: 600;
  display: block;
}
@media screen and (max-width: 767px) {
  /* line 67, /app/app/assets/stylesheets/shared/contact.scss */
  .form-page .form-body {
    flex-wrap: wrap;
  }
  /* line 70, /app/app/assets/stylesheets/shared/contact.scss */
  .form-page .contact-form,
  .form-page .contact-info {
    width: 100%;
  }
  /* line 75, /app/app/assets/stylesheets/shared/contact.scss */
  .form-page .contact-form {
    margin-bottom: 80px;
  }
  /* line 79, /app/app/assets/stylesheets/shared/contact.scss */
  .form-page .contact-info {
    padding-left: 0;
  }
}

/* line 1, /app/app/assets/stylesheets/shared/cookie-notice.scss */
.cookie-notice {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: visible;
  background-color: #262626;
  color: #262626;
  z-index: 250;
  padding: 8px 20px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s ease 0.5s;
}
/* line 18, /app/app/assets/stylesheets/shared/cookie-notice.scss */
.cookie-notice:before {
  content: "";
  display: block;
  width: 100vw;
  height: 10px;
  position: absolute;
  top: -10px;
  left: 0px;
  background: linear-gradient(to bottom, transparent, #4b3820);
  opacity: .2;
}
/* line 30, /app/app/assets/stylesheets/shared/cookie-notice.scss */
.cookie-notice.is-shown {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
/* line 38, /app/app/assets/stylesheets/shared/cookie-notice.scss */
.cookie-notice .cookie-notice-inner {
  width: 100%;
  display: flex;
  align-content: center;
  align-items: center;
  padding-right: 100px;
  color: #ffffff;
}
/* line 46, /app/app/assets/stylesheets/shared/cookie-notice.scss */
.cookie-notice .cookie-notice-inner p {
  position: relative;
  font-size: 14px;
  margin-bottom: 0;
  font-family: "Lato", Helvetica, arial, sans-serif;
  color: inherit;
  padding-right: 20px;
}
/* line 54, /app/app/assets/stylesheets/shared/cookie-notice.scss */
.cookie-notice .cookie-notice-inner p a {
  color: #262626;
  text-decoration: underline;
  padding: 0 2px;
  display: inline-block;
}
/* line 60, /app/app/assets/stylesheets/shared/cookie-notice.scss */
.cookie-notice .cookie-notice-inner p a:hover {
  color: #f8f3ea;
}
/* line 66, /app/app/assets/stylesheets/shared/cookie-notice.scss */
.cookie-notice .cookie-notice-inner button {
  font-size: 14px;
  height: auto;
  line-height: 32px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #99752f;
  border-color: #99752f;
}
/* line 77, /app/app/assets/stylesheets/shared/cookie-notice.scss */
.cookie-notice .cookie-notice-inner button:hover, .cookie-notice .cookie-notice-inner button:focus {
  border: 1px solid #ffffff;
  background-color: #ffffff;
}
@media screen and (max-width: 580px) {
  /* line 38, /app/app/assets/stylesheets/shared/cookie-notice.scss */
  .cookie-notice .cookie-notice-inner {
    flex-wrap: wrap;
    padding-right: 0;
  }
  /* line 88, /app/app/assets/stylesheets/shared/cookie-notice.scss */
  .cookie-notice .cookie-notice-inner p {
    margin-bottom: 16px;
  }
  /* line 92, /app/app/assets/stylesheets/shared/cookie-notice.scss */
  .cookie-notice .cookie-notice-inner button {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    height: 32px;
  }
}

/* line 3, /app/app/assets/stylesheets/shared/discussion.scss */
.discussions-list {
  margin-bottom: 32px;
}

/* line 7, /app/app/assets/stylesheets/shared/discussion.scss */
.discussion-list-item {
  padding: 16px 0;
  border-bottom: 1px solid #99752f;
  text-transform: uppercase;
}
/* line 14, /app/app/assets/stylesheets/shared/discussion.scss */
.discussion-list-item a {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 500px) {
  /* line 20, /app/app/assets/stylesheets/shared/discussion.scss */
  .discussion-list-item .discussion-item-left {
    flex-direction: column;
    text-align: center;
    align-items: center;
    width: 100%;
  }
  /* line 28, /app/app/assets/stylesheets/shared/discussion.scss */
  .discussion-list-item .discussion-item-left .discussion-item-thumbnail {
    max-width: 400px;
    width: 80%;
  }
}
/* line 35, /app/app/assets/stylesheets/shared/discussion.scss */
.discussion-list-item .discussion-item-thumbnail {
  width: 200px;
  min-width: 200px;
  margin-right: 16px;
}
/* line 41, /app/app/assets/stylesheets/shared/discussion.scss */
.discussion-list-item .discussion-item-title {
  font-size: 20px;
  color: #262626;
  font-family: "Lato", Helvetica, arial, sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  padding-right: 8px;
}
/* line 50, /app/app/assets/stylesheets/shared/discussion.scss */
.discussion-list-item .discussion-item-sub {
  font-size: 14px;
  font-family: "Lato", Helvetica, arial, sans-serif;
  letter-spacing: 2px;
}
@media screen and (max-width: 600px) {
  /* line 56, /app/app/assets/stylesheets/shared/discussion.scss */
  .discussion-list-item .discussion-visit-button {
    display: none;
  }
}

/* line 67, /app/app/assets/stylesheets/shared/discussion.scss */
.discussion-film {
  width: 100%;
  margin-bottom: 50px;
  background-color: #262626;
  overflow: hidden;
}

/* line 74, /app/app/assets/stylesheets/shared/discussion.scss */
.discussion-video-row {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}
/* line 80, /app/app/assets/stylesheets/shared/discussion.scss */
.discussion-video-row .previewimage {
  position: relative;
  cursor: pointer;
  background-color: #262626;
}
/* line 85, /app/app/assets/stylesheets/shared/discussion.scss */
.discussion-video-row .previewimage img {
  opacity: 0.9;
}
/* line 90, /app/app/assets/stylesheets/shared/discussion.scss */
.discussion-video-row img {
  width: 100%;
  display: block;
}

/* line 96, /app/app/assets/stylesheets/shared/discussion.scss */
.discusson.wrapper {
  padding-bottom: 100px;
}

/* line 100, /app/app/assets/stylesheets/shared/discussion.scss */
.discussion.wrapper, .series-title.wrapper {
  max-width: 960px;
  padding: 0 50px;
}
@media all and (max-width: 599px) {
  /* line 100, /app/app/assets/stylesheets/shared/discussion.scss */
  .discussion.wrapper, .series-title.wrapper {
    padding: 0 20px;
  }
}

/* line 109, /app/app/assets/stylesheets/shared/discussion.scss */
.discussion.wrapper {
  padding-bottom: 100px;
}

/* line 115, /app/app/assets/stylesheets/shared/discussion.scss */
.discussion .series-text {
  max-width: 700px;
}

/* line 120, /app/app/assets/stylesheets/shared/discussion.scss */
.display-content {
  margin-bottom: 40px;
}
/* line 124, /app/app/assets/stylesheets/shared/discussion.scss */
.display-content .session-num {
  color: #99752f;
  margin-bottom: 4px;
}
/* line 129, /app/app/assets/stylesheets/shared/discussion.scss */
.display-content .series-film-title {
  margin-top: 0;
}

/* line 134, /app/app/assets/stylesheets/shared/discussion.scss */
.comment-main {
  padding-bottom: 20px;
}
/* line 137, /app/app/assets/stylesheets/shared/discussion.scss */
.comment-main h4 {
  letter-spacing: 2px;
  margin-bottom: 30px;
}

/*---------------------------
===== COMMENT FORM =========
----------------------------*/
/* line 147, /app/app/assets/stylesheets/shared/discussion.scss */
.comment_form {
  display: flex;
}
/* line 150, /app/app/assets/stylesheets/shared/discussion.scss */
.comment_form form {
  display: flex;
  padding-left: 10px;
  width: 100%;
}
/* line 156, /app/app/assets/stylesheets/shared/discussion.scss */
.comment_form .avatar {
  float: left;
  max-height: 56px;
  max-width: 56px;
  position: relative;
}
/* line 162, /app/app/assets/stylesheets/shared/discussion.scss */
.comment_form .avatar img {
  width: 100%;
  border-radius: 8px;
}
/* line 168, /app/app/assets/stylesheets/shared/discussion.scss */
.comment_form textarea, .comment_form input[type="text"] {
  max-width: 540px;
  height: 40px;
  min-height: 40px;
}
/* line 175, /app/app/assets/stylesheets/shared/discussion.scss */
.comment_form input[type="submit"] {
  display: flex;
  position: relative;
  background-color: #262626;
  color: #eee;
  height: 40px;
  padding: 0 20px 0 20px;
  margin: 0 0 0 10px;
  border: none;
  font-family: "Lato", Helvetica, arial, sans-serif;
  letter-spacing: 2px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.25s ease;
  outline: none;
  cursor: pointer;
}
/* line 193, /app/app/assets/stylesheets/shared/discussion.scss */
.comment_form input[type="submit"]:hover {
  background-color: #99752f;
}
/* line 198, /app/app/assets/stylesheets/shared/discussion.scss */
.comment_form textarea:focus {
  height: 80px;
}

/* line 203, /app/app/assets/stylesheets/shared/discussion.scss */
.discussion-comments, #discussion-comments {
  padding-top: 20px;
}

/* line 207, /app/app/assets/stylesheets/shared/discussion.scss */
.comment {
  position: relative;
}
/* line 210, /app/app/assets/stylesheets/shared/discussion.scss */
.comment .avatar {
  position: absolute;
  top: 0;
  left: 0;
  max-height: 48px;
  max-width: 48px;
  border-radius: 8px;
  overflow: hidden;
}
/* line 219, /app/app/assets/stylesheets/shared/discussion.scss */
.comment .avatar img {
  width: 100%;
  height: 48px;
}
/* line 224, /app/app/assets/stylesheets/shared/discussion.scss */
.comment .avatar .avatar-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  background-color: #5a7786;
  font-family: "Lato", Helvetica, arial, sans-serif;
  width: 100%;
  border-radius: 2px;
  font-size: 11px;
}
/* line 242, /app/app/assets/stylesheets/shared/discussion.scss */
.comment .comment-content {
  display: inline-block;
  margin: 0 10px 0 54px;
  font-family: "Lato", Helvetica, arial, sans-serif;
  background-color: #eeeae2;
  border-radius: 8px;
  font-size: 15px;
  padding: 10px;
  max-width: 600px;
  line-height: 20px;
}
/* line 254, /app/app/assets/stylesheets/shared/discussion.scss */
.comment .comment-commenter {
  font-weight: bold;
  display: inline;
  padding-right: 5px;
}
/* line 260, /app/app/assets/stylesheets/shared/discussion.scss */
.comment .reply {
  width: 60px;
  cursor: pointer;
}
/* line 269, /app/app/assets/stylesheets/shared/discussion.scss */
.comment .reply-form form {
  min-width: 300px;
}
/* line 275, /app/app/assets/stylesheets/shared/discussion.scss */
.comment .reply-button {
  font-family: "Lato", Helvetica, arial, sans-serif;
  color: #99762a;
  font-size: 12px;
  text-align: center;
  height: 27px;
  line-height: 27px;
  width: 60px;
}
/* line 285, /app/app/assets/stylesheets/shared/discussion.scss */
.comment .comment-small-actions {
  display: flex;
  max-width: 500px;
  /* height: 40px; */
  margin-left: 60px;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  /* line 285, /app/app/assets/stylesheets/shared/discussion.scss */
  .comment .comment-small-actions {
    margin-left: 5px;
    margin-top: 5px;
  }
}
/* line 297, /app/app/assets/stylesheets/shared/discussion.scss */
.comment .comment-small-actions .button_to {
  color: #262626;
  font-size: 12px;
  font-family: "Lato", Helvetica, arial, sans-serif;
  line-height: 27px;
  height: 27px;
}
/* line 304, /app/app/assets/stylesheets/shared/discussion.scss */
.comment .comment-small-actions .button_to input[type="submit"] {
  border: 0;
  background-color: transparent;
  color: #99762a;
  font-size: 12px;
  font-family: "Lato", Helvetica, arial, sans-serif;
  width: 60px;
  height: 27px;
  line-height: 27px;
}
/* line 316, /app/app/assets/stylesheets/shared/discussion.scss */
.comment .comment-small-actions .comment-time, .comment .comment-small-actions .comment-reported {
  color: #262626;
  font-size: 12px;
  font-family: "Lato", Helvetica, arial, sans-serif;
  height: 27px;
  line-height: 27px;
  white-space: nowrap;
}
/* line 325, /app/app/assets/stylesheets/shared/discussion.scss */
.comment .comment-small-actions .comment-time {
  margin-right: 5px;
}
/* line 329, /app/app/assets/stylesheets/shared/discussion.scss */
.comment .comment-small-actions .icon-dots {
  display: inline-block;
  width: 20px;
  height: auto;
  margin: 0 8px;
  color: #99762a;
}
/* line 336, /app/app/assets/stylesheets/shared/discussion.scss */
.comment .comment-small-actions .icon-dots svg {
  fill: #99762a;
  padding-bottom: 3px;
}
/* line 342, /app/app/assets/stylesheets/shared/discussion.scss */
.comment .comment-small-actions .icon-dots:hover {
  color: #262626;
}
/* line 347, /app/app/assets/stylesheets/shared/discussion.scss */
.comment.margin0 {
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  /* line 347, /app/app/assets/stylesheets/shared/discussion.scss */
  .comment.margin0 {
    margin-left: 0;
  }
}
/* line 355, /app/app/assets/stylesheets/shared/discussion.scss */
.comment.margin1 {
  margin-left: 80px;
}
@media screen and (max-width: 767px) {
  /* line 355, /app/app/assets/stylesheets/shared/discussion.scss */
  .comment.margin1 {
    margin-left: 10px;
  }
}
/* line 362, /app/app/assets/stylesheets/shared/discussion.scss */
.comment.margin2 {
  margin-left: 100px;
}
@media screen and (max-width: 767px) {
  /* line 362, /app/app/assets/stylesheets/shared/discussion.scss */
  .comment.margin2 {
    margin-left: 20px;
  }
}
/* line 369, /app/app/assets/stylesheets/shared/discussion.scss */
.comment.margin3 {
  margin-left: 120px;
}
@media screen and (max-width: 767px) {
  /* line 369, /app/app/assets/stylesheets/shared/discussion.scss */
  .comment.margin3 {
    margin-left: 10px;
  }
}

/* ------- SIGN IN PROMPT ---------- */
/* line 380, /app/app/assets/stylesheets/shared/discussion.scss */
.sign-in-prompt {
  padding-top: 30px;
}
/* line 383, /app/app/assets/stylesheets/shared/discussion.scss */
.sign-in-prompt .sub-link {
  float: left;
}
/* line 388, /app/app/assets/stylesheets/shared/discussion.scss */
.sign-in-prompt .button {
  float: left;
  margin-right: 20px;
}
@media screen and (max-width: 599px) {
  /* line 394, /app/app/assets/stylesheets/shared/discussion.scss */
  .sign-in-prompt .sub-link {
    float: none;
    clear: both;
    padding-top: 20px;
  }
  /* line 399, /app/app/assets/stylesheets/shared/discussion.scss */
  .sign-in-prompt .button {
    margin-right: 0;
  }
}
/* line 404, /app/app/assets/stylesheets/shared/discussion.scss */
.sign-in-prompt p {
  color: #99762a;
  font-family: "Times New Roman", Times, serif;
  font-style: italic;
  font-weight: bold;
  font-size: 18px;
  line-height: 20px;
}
/* line 414, /app/app/assets/stylesheets/shared/discussion.scss */
.sign-in-prompt .text-button {
  color: #262626;
  font-family: "Lato", Helvetica, arial, sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
/* line 421, /app/app/assets/stylesheets/shared/discussion.scss */
.sign-in-prompt .text-button:hover {
  color: #057D7F;
}
/* line 426, /app/app/assets/stylesheets/shared/discussion.scss */
.sign-in-prompt .comment-demo {
  clear: both;
  max-width: 500px;
  padding-top: 20px;
  opacity: 0.5;
}
/* line 432, /app/app/assets/stylesheets/shared/discussion.scss */
.sign-in-prompt .comment-demo .avatar-demo {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  float: left;
}
/* line 441, /app/app/assets/stylesheets/shared/discussion.scss */
.sign-in-prompt .comment-demo .double-bar {
  float: left;
  width: 100%;
}
/* line 447, /app/app/assets/stylesheets/shared/discussion.scss */
.sign-in-prompt .comment-demo span {
  display: block;
  background-color: #d2cec8;
  height: 20px;
  width: 100%;
  border-radius: 10px;
}
/* line 456, /app/app/assets/stylesheets/shared/discussion.scss */
.sign-in-prompt .comment-demo span.one {
  margin-bottom: 10px;
}
@media screen and (max-width: 599px) {
  /* line 462, /app/app/assets/stylesheets/shared/discussion.scss */
  .sign-in-prompt .comment-demo {
    display: none;
  }
}
/* line 468, /app/app/assets/stylesheets/shared/discussion.scss */
.sign-in-prompt .comment-demo-row {
  position: relative;
  padding-left: 60px;
  overflow: hidden;
  margin-top: 20px;
  height: 50px;
}
/* line 475, /app/app/assets/stylesheets/shared/discussion.scss */
.sign-in-prompt .comment-demo-row .f-input {
  float: left;
  border-radius: 4px;
  border: 1px solid #99762a;
  background-color: transparent;
  height: 40px;
  width: 70%;
}
/* line 484, /app/app/assets/stylesheets/shared/discussion.scss */
.sign-in-prompt .comment-demo-row .button {
  float: left;
  margin-right: 20px;
  width: 90px;
  text-align: center;
  padding: 0;
  margin-left: 10px;
  font-size: 16px;
}

/* ------- ROTATOR ---------- */
/* line 501, /app/app/assets/stylesheets/shared/discussion.scss */
.video-selection .discussion-video-rotator {
  position: relative;
  max-width: 860px;
  margin: 0 auto 60px;
  z-index: 2;
}
/* line 508, /app/app/assets/stylesheets/shared/discussion.scss */
.video-selection .slick-track {
  display: flex;
}
/* line 513, /app/app/assets/stylesheets/shared/discussion.scss */
.video-selection .slick-list {
  overflow: hidden;
}
/* line 517, /app/app/assets/stylesheets/shared/discussion.scss */
.video-selection .slick-prev,
.video-selection .slick-next {
  cursor: pointer;
  display: flex;
  align-content: center;
  justify-content: center;
  width: 37px;
  height: 100px;
  background-color: transparent;
  position: absolute;
  top: calc(50% - (100px / 2));
  z-index: 5;
  border: none;
  outline: none;
  transition: all 0.3s ease;
}
/* line 533, /app/app/assets/stylesheets/shared/discussion.scss */
.video-selection .slick-prev svg,
.video-selection .slick-next svg {
  width: 16px;
  height: 28px;
  fill: #99762a;
}
/* line 540, /app/app/assets/stylesheets/shared/discussion.scss */
.video-selection .slick-prev:hover svg,
.video-selection .slick-next:hover svg {
  fill: #262626;
}
@media screen and (max-width: 600px) {
  /* line 517, /app/app/assets/stylesheets/shared/discussion.scss */
  .video-selection .slick-prev,
  .video-selection .slick-next {
    display: none !important;
  }
}
/* line 550, /app/app/assets/stylesheets/shared/discussion.scss */
.video-selection .slick-prev {
  left: -50px;
  justify-content: flex-start;
  align-items: center;
}
/* line 555, /app/app/assets/stylesheets/shared/discussion.scss */
.video-selection .slick-prev svg {
  transform: rotate(-180deg);
}
/* line 560, /app/app/assets/stylesheets/shared/discussion.scss */
.video-selection .slick-next {
  right: -50px;
  justify-content: flex-end;
  align-items: center;
}
/* line 566, /app/app/assets/stylesheets/shared/discussion.scss */
.video-selection .vid-block {
  width: auto;
  width: calc(20% - 3px);
  margin: 0;
  margin-right: 3px;
}
/* line 572, /app/app/assets/stylesheets/shared/discussion.scss */
.video-selection .vid-block::after {
  display: none;
}
/* line 577, /app/app/assets/stylesheets/shared/discussion.scss */
.video-selection .discussion-video-thumb {
  margin: 0 5px;
  position: relative;
  height: 100%;
}
/* line 582, /app/app/assets/stylesheets/shared/discussion.scss */
.video-selection .discussion-video-thumb img {
  width: 100%;
  transition: all 0.3s ease;
}
/* line 586, /app/app/assets/stylesheets/shared/discussion.scss */
.video-selection .discussion-video-thumb img:hover {
  opacity: 0.8;
}
/* line 591, /app/app/assets/stylesheets/shared/discussion.scss */
.video-selection .discussion-video-thumb:focus {
  outline: none;
  border-color: inherit;
  -webkit-box-shadow: none;
  box-shadow: none;
}
/* line 598, /app/app/assets/stylesheets/shared/discussion.scss */
.video-selection .discussion-video-thumb .discussion-video-num {
  display: flex;
  width: 32px;
  height: 32px;
  color: #99752f;
  background-color: #f8f3ea;
  font-family: "Lato", Helvetica, arial, sans-serif;
  justify-content: center;
  align-items: center;
  line-height: 1px;
  position: absolute;
  bottom: 15px;
  left: 8px;
}
/* line 615, /app/app/assets/stylesheets/shared/discussion.scss */
.video-selection .discussion-video-thumb.selected .discussion-video-num {
  color: #f8f3ea;
  background-color: #99752f;
}

/* line 623, /app/app/assets/stylesheets/shared/discussion.scss */
#next-session-button {
  display: flex;
  align-items: center;
  color: #99752f;
  border: transparent;
  background-color: transparent;
  padding: 0;
}
/* line 631, /app/app/assets/stylesheets/shared/discussion.scss */
#next-session-button .icon-arrow {
  fill: currentColor;
  margin-left: 4px;
  margin-top: 4px;
}

@media screen and (max-width: 767px) {
  /* line 3, /app/app/assets/stylesheets/shared/ecourses.scss */
  .ecourses-wrapper .search {
    margin-bottom: 50px;
  }
}
/* line 9, /app/app/assets/stylesheets/shared/ecourses.scss */
.ecourses-wrapper p {
  max-width: 640px;
}
/* line 15, /app/app/assets/stylesheets/shared/ecourses.scss */
.ecourses-wrapper .featured-film-bar .bar-content .left .preserve-aspect {
  min-height: 380px;
}
/* line 20, /app/app/assets/stylesheets/shared/ecourses.scss */
.ecourses-wrapper .featured-film-bar .bar-content .right .big-see-all {
  width: 100%;
}
/* line 23, /app/app/assets/stylesheets/shared/ecourses.scss */
.ecourses-wrapper .featured-film-bar .bar-content .right .big-see-all a {
  color: #262626;
}
/* line 26, /app/app/assets/stylesheets/shared/ecourses.scss */
.ecourses-wrapper .featured-film-bar .bar-content .right .big-see-all a div {
  width: 90%;
  max-width: none;
}
/* line 30, /app/app/assets/stylesheets/shared/ecourses.scss */
.ecourses-wrapper .featured-film-bar .bar-content .right .big-see-all a div h2 {
  font-size: 34px;
  margin-bottom: 16px;
}
/* line 35, /app/app/assets/stylesheets/shared/ecourses.scss */
.ecourses-wrapper .featured-film-bar .bar-content .right .big-see-all a div p {
  font-size: 16px;
  text-transform: none;
  font-weight: normal;
  letter-spacing: normal;
  margin-bottom: 16px;
}
@media screen and (max-width: 1024px) {
  /* line 48, /app/app/assets/stylesheets/shared/ecourses.scss */
  .ecourses-wrapper .featured-film-bar .bar-content .left,
  .ecourses-wrapper .featured-film-bar .bar-content .right {
    width: 50%;
    max-width: none;
  }
  /* line 58, /app/app/assets/stylesheets/shared/ecourses.scss */
  .ecourses-wrapper .featured-film-bar .bar-content .right .big-see-all a div h2 {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  /* line 13, /app/app/assets/stylesheets/shared/ecourses.scss */
  .ecourses-wrapper .featured-film-bar .bar-content {
    flex-wrap: wrap;
  }
  /* line 70, /app/app/assets/stylesheets/shared/ecourses.scss */
  .ecourses-wrapper .featured-film-bar .bar-content .left,
  .ecourses-wrapper .featured-film-bar .bar-content .right {
    width: 100%;
  }
  /* line 76, /app/app/assets/stylesheets/shared/ecourses.scss */
  .ecourses-wrapper .featured-film-bar .bar-content .left .preserve-aspect {
    min-height: 0;
    padding-top: 56.25%;
  }
  /* line 83, /app/app/assets/stylesheets/shared/ecourses.scss */
  .ecourses-wrapper .featured-film-bar .bar-content .right .big-see-all {
    justify-content: flex-start;
  }
  /* line 86, /app/app/assets/stylesheets/shared/ecourses.scss */
  .ecourses-wrapper .featured-film-bar .bar-content .right .big-see-all a {
    padding: 0;
  }
  /* line 89, /app/app/assets/stylesheets/shared/ecourses.scss */
  .ecourses-wrapper .featured-film-bar .bar-content .right .big-see-all a div {
    width: 100%;
    padding: 32px;
    margin-bottom: 0;
    border-left-width: 5px;
  }
  /* line 95, /app/app/assets/stylesheets/shared/ecourses.scss */
  .ecourses-wrapper .featured-film-bar .bar-content .right .big-see-all a div h2,
  .ecourses-wrapper .featured-film-bar .bar-content .right .big-see-all a div p {
    max-width: 500px;
  }
  /* line 100, /app/app/assets/stylesheets/shared/ecourses.scss */
  .ecourses-wrapper .featured-film-bar .bar-content .right .big-see-all a div span {
    position: relative;
    bottom: auto;
    padding-left: 0;
    display: inline-block;
  }
  /* line 106, /app/app/assets/stylesheets/shared/ecourses.scss */
  .ecourses-wrapper .featured-film-bar .bar-content .right .big-see-all a div span::after {
    top: 8px;
  }
}
/* line 118, /app/app/assets/stylesheets/shared/ecourses.scss */
.ecourses-wrapper .ecourses-list .ecourse {
  display: flex;
}
/* line 121, /app/app/assets/stylesheets/shared/ecourses.scss */
.ecourses-wrapper .ecourses-list .ecourse .left {
  width: 40%;
}
/* line 124, /app/app/assets/stylesheets/shared/ecourses.scss */
.ecourses-wrapper .ecourses-list .ecourse .left .button {
  float: right;
  position: relative;
  overflow: visible;
  display: inline-block;
  font-size: 14px;
  border: none;
  border-right: 4px solid transparent;
}
@media screen and (max-width: 767px) {
  /* line 124, /app/app/assets/stylesheets/shared/ecourses.scss */
  .ecourses-wrapper .ecourses-list .ecourse .left .button {
    display: none;
  }
}
/* line 137, /app/app/assets/stylesheets/shared/ecourses.scss */
.ecourses-wrapper .ecourses-list .ecourse .left .button::after {
  content: '';
  display: block;
  height: 4px;
  width: 40px;
  background-color: #057D7F;
  position: absolute;
  right: -20px;
  top: calc(50% - 2px);
  transition: all 0.3s ease;
}
/* line 149, /app/app/assets/stylesheets/shared/ecourses.scss */
.ecourses-wrapper .ecourses-list .ecourse .left .button:hover, .ecourses-wrapper .ecourses-list .ecourse .left .button:focus {
  background-color: #057D7F;
  border-right: 4px solid #262626;
}
/* line 154, /app/app/assets/stylesheets/shared/ecourses.scss */
.ecourses-wrapper .ecourses-list .ecourse .left .button:hover::after, .ecourses-wrapper .ecourses-list .ecourse .left .button:focus::after {
  background-color: #262626;
  transform: translateX(2px);
}
/* line 162, /app/app/assets/stylesheets/shared/ecourses.scss */
.ecourses-wrapper .ecourses-list .ecourse .right {
  width: 60%;
  padding: 20px 0 20px 32px;
}
/* line 166, /app/app/assets/stylesheets/shared/ecourses.scss */
.ecourses-wrapper .ecourses-list .ecourse .right h3 {
  font-family: "Lato", Helvetica, arial, sans-serif;
  font-size: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: bold;
  max-width: 500px;
  line-height: 1.4;
  margin-bottom: 16px;
}
/* line 176, /app/app/assets/stylesheets/shared/ecourses.scss */
.ecourses-wrapper .ecourses-list .ecourse .right h3 span {
  font-family: "Times New Roman", Times, serif;
  color: #99762a;
  font-style: italic;
  display: block;
  font-size: 18px;
}
/* line 184, /app/app/assets/stylesheets/shared/ecourses.scss */
.ecourses-wrapper .ecourses-list .ecourse .right h3 a {
  color: #262626;
}
/* line 187, /app/app/assets/stylesheets/shared/ecourses.scss */
.ecourses-wrapper .ecourses-list .ecourse .right h3 a:hover, .ecourses-wrapper .ecourses-list .ecourse .right h3 a:focus {
  color: #057D7F;
}
/* line 194, /app/app/assets/stylesheets/shared/ecourses.scss */
.ecourses-wrapper .ecourses-list .ecourse .right h4.notice-closed {
  color: #f14f3e;
  font-size: 16px;
  font-weight: bold;
}
/* line 199, /app/app/assets/stylesheets/shared/ecourses.scss */
.ecourses-wrapper .ecourses-list .ecourse .right h4.notice-closed span {
  display: block;
}
/* line 204, /app/app/assets/stylesheets/shared/ecourses.scss */
.ecourses-wrapper .ecourses-list .ecourse .right p {
  max-width: 580px;
  font-size: 16px;
  margin-bottom: 25px;
}
/* line 210, /app/app/assets/stylesheets/shared/ecourses.scss */
.ecourses-wrapper .ecourses-list .ecourse .right .button {
  display: none;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  /* line 210, /app/app/assets/stylesheets/shared/ecourses.scss */
  .ecourses-wrapper .ecourses-list .ecourse .right .button {
    display: inline-block;
  }
}
@media screen and (max-width: 1024px) {
  /* line 221, /app/app/assets/stylesheets/shared/ecourses.scss */
  .ecourses-wrapper .ecourses-list .ecourse .left,
  .ecourses-wrapper .ecourses-list .ecourse .right {
    width: 50%;
  }
  /* line 227, /app/app/assets/stylesheets/shared/ecourses.scss */
  .ecourses-wrapper .ecourses-list .ecourse .left .preserve-aspect {
    padding-top: 70%;
  }
}
@media screen and (max-width: 767px) {
  /* line 118, /app/app/assets/stylesheets/shared/ecourses.scss */
  .ecourses-wrapper .ecourses-list .ecourse {
    flex-wrap: wrap;
  }
  /* line 236, /app/app/assets/stylesheets/shared/ecourses.scss */
  .ecourses-wrapper .ecourses-list .ecourse .left,
  .ecourses-wrapper .ecourses-list .ecourse .right {
    width: 100%;
  }
  /* line 242, /app/app/assets/stylesheets/shared/ecourses.scss */
  .ecourses-wrapper .ecourses-list .ecourse .left .preserve-aspect {
    padding-top: 56.25%;
  }
  /* line 247, /app/app/assets/stylesheets/shared/ecourses.scss */
  .ecourses-wrapper .ecourses-list .ecourse .right {
    padding: 32px 0 0;
  }
}

/* line 2, /app/app/assets/stylesheets/shared/email-capture-modal.scss */
.email-capture-modal .modal-inner {
  max-width: 624px !important;
  min-height: 0 !important;
}
/* line 5, /app/app/assets/stylesheets/shared/email-capture-modal.scss */
.email-capture-modal .modal-inner h2 {
  max-width: 330px;
}
/* line 10, /app/app/assets/stylesheets/shared/email-capture-modal.scss */
.email-capture-modal .alt-modal-content {
  width: 100%;
  padding: 40px 60px 60px !important;
}

/* line 18, /app/app/assets/stylesheets/shared/email-capture-modal.scss */
.email-capture-modal-form {
  display: flex;
}
/* line 20, /app/app/assets/stylesheets/shared/email-capture-modal.scss */
.email-capture-modal-form input[type=text] {
  border: 1px solid white;
  border-left: 1px solid #d4c0a1;
  background: #fff;
  padding: 0 16px;
  margin: 0;
  height: 48px;
  line-height: 48px;
  letter-spacing: 1px;
  font-size: 18px;
  font-weight: 300;
  font-family: "Lato", Helvetica, arial, sans-serif;
  border-radius: 0;
  -webkit-font-smoothing: antialiased;
}
/* line 36, /app/app/assets/stylesheets/shared/email-capture-modal.scss */
.email-capture-modal-form .promo-button {
  border-radius: 0;
  height: 48px;
  background-color: #057D7F;
}

@media screen and (max-width: 767px) {
  /* line 2, /app/app/assets/stylesheets/shared/expandable-mobile.scss */
  .expandable-mobile {
    position: relative;
    padding-bottom: 40px;
    margin-bottom: 50px;
    overflow: hidden;
    height: 400px;
  }
  /* line 9, /app/app/assets/stylesheets/shared/expandable-mobile.scss */
  .expandable-mobile.no-expand {
    height: auto;
    padding-bottom: 0;
  }
  /* line 13, /app/app/assets/stylesheets/shared/expandable-mobile.scss */
  .expandable-mobile.no-expand::after {
    display: none;
  }
  /* line 18, /app/app/assets/stylesheets/shared/expandable-mobile.scss */
  .expandable-mobile br {
    display: none;
  }
  /* line 23, /app/app/assets/stylesheets/shared/expandable-mobile.scss */
  .expandable-mobile p:empty {
    display: none;
  }
  /* line 28, /app/app/assets/stylesheets/shared/expandable-mobile.scss */
  .expandable-mobile ul li {
    font-size: inherit;
    font-family: inherit;
  }
  /* line 33, /app/app/assets/stylesheets/shared/expandable-mobile.scss */
  .expandable-mobile::after {
    content: '';
    position: absolute;
    bottom: 75px;
    right: 0;
    left: 0;
    height: 32px;
    background: -moz-linear-gradient(top, rgba(248, 243, 234, 0) 0%, rgba(248, 243, 234, 0.75) 32%, rgba(248, 243, 234, 0.9) 95%);
    background: -webkit-linear-gradient(top, rgba(248, 243, 234, 0) 0%, rgba(248, 243, 234, 0.75) 32%, rgba(248, 243, 234, 0.9) 95%);
    background: linear-gradient(to bottom, rgba(248, 243, 234, 0) 0%, rgba(248, 243, 234, 0.75) 32%, rgba(248, 243, 234, 0.9) 95%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00f8f3ea', endColorstr='#f8f3ea',GradientType=0 );
    z-index: 1;
  }
  /* line 47, /app/app/assets/stylesheets/shared/expandable-mobile.scss */
  .expandable-mobile button.read-more {
    display: block;
    outline: none;
    border: none;
    background-color: #f8f3ea;
    position: absolute;
    height: 80px;
    bottom: 0px;
    left: 0;
    padding: 0;
    width: 100%;
    cursor: pointer;
    z-index: 3;
    padding-top: 32px;
  }
  /* line 62, /app/app/assets/stylesheets/shared/expandable-mobile.scss */
  .expandable-mobile button.read-more span {
    position: absolute;
    display: block;
    width: 100%;
    background-color: #f8f3ea;
    border-bottom: 1px solid #d4c0a1;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    line-height: 26px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: "Lato", Helvetica, arial, sans-serif;
    z-index: 1;
  }
  /* line 79, /app/app/assets/stylesheets/shared/expandable-mobile.scss */
  .expandable-mobile button.read-more::before {
    content: '';
    border-top: 45px solid #d4c0a1;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    position: absolute;
    top: 32px;
    left: 50%;
    margin-left: -50px;
  }
}
@media screen and (min-width: 768px) {
  /* line 94, /app/app/assets/stylesheets/shared/expandable-mobile.scss */
  .expandable-mobile {
    height: auto;
  }
  /* line 97, /app/app/assets/stylesheets/shared/expandable-mobile.scss */
  .expandable-mobile::after {
    display: none;
  }
  /* line 100, /app/app/assets/stylesheets/shared/expandable-mobile.scss */
  .expandable-mobile button.read-more {
    display: none;
  }
}
/* line 3, /app/app/assets/stylesheets/shared/facebook_row.scss */
.facebook-row .facebook-row-inner {
  border: 1px solid #5a7786;
  overflow: hidden;
  display: flex;
  align-content: center;
  width: 100%;
  max-width: 880px;
  margin: 0 auto 50px;
}
/* line 13, /app/app/assets/stylesheets/shared/facebook_row.scss */
.facebook-row .left {
  background-color: #f8f3ea;
  width: 62%;
  padding: 50px 80px 50px 32px;
  text-align: right;
}
/* line 19, /app/app/assets/stylesheets/shared/facebook_row.scss */
.facebook-row .left h3 {
  font-size: 24px;
  letter-spacing: 2px;
  font-weight: bold;
  margin-bottom: 12px;
}
/* line 26, /app/app/assets/stylesheets/shared/facebook_row.scss */
.facebook-row .left p {
  text-align: inherit;
  margin-bottom: 0;
}
/* line 30, /app/app/assets/stylesheets/shared/facebook_row.scss */
.facebook-row .left p span {
  padding-right: 12px;
  margin-right: 12px;
  font-size: 14px;
  font-family: "Lato", Helvetica, arial, sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
}
/* line 39, /app/app/assets/stylesheets/shared/facebook_row.scss */
.facebook-row .left p span::after {
  content: '/';
  position: absolute;
  right: -5px;
  top: -2px;
}
/* line 46, /app/app/assets/stylesheets/shared/facebook_row.scss */
.facebook-row .left p span:last-of-type {
  margin-right: 0;
  padding-right: 0;
}
/* line 50, /app/app/assets/stylesheets/shared/facebook_row.scss */
.facebook-row .left p span:last-of-type::after {
  display: none;
}
/* line 58, /app/app/assets/stylesheets/shared/facebook_row.scss */
.facebook-row .right {
  background-color: #5a7786;
  width: 40%;
  padding: 50px 32px 50px 0;
  display: flex;
  align-items: center;
}
/* line 65, /app/app/assets/stylesheets/shared/facebook_row.scss */
.facebook-row .right .fb-visit-button {
  display: inline-block;
  position: relative;
  background-color: transparent;
  height: 60px;
  padding: 0 50px 0 100px;
  line-height: 60px;
  color: #ffffff;
  font-family: "Lato", Helvetica, arial, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 18px;
  border: 1px solid #262626;
  transform: translateX(-30px);
}
/* line 81, /app/app/assets/stylesheets/shared/facebook_row.scss */
.facebook-row .right .fb-visit-button:hover, .facebook-row .right .fb-visit-button:focus {
  background-color: #f8f3ea;
  color: #5a7786;
}
/* line 87, /app/app/assets/stylesheets/shared/facebook_row.scss */
.facebook-row .right .fb-visit-button span {
  width: 58px;
  height: 58px;
  display: block;
  background-color: #262626;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}
/* line 97, /app/app/assets/stylesheets/shared/facebook_row.scss */
.facebook-row .right .fb-visit-button span svg {
  fill: #f8f3ea;
  width: 16px;
  height: 42px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 880px) {
  /* line 111, /app/app/assets/stylesheets/shared/facebook_row.scss */
  .facebook-row .left {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  /* line 117, /app/app/assets/stylesheets/shared/facebook_row.scss */
  .facebook-row .left h3 {
    font-size: 20px;
    margin-bottom: 8px;
  }
  /* line 123, /app/app/assets/stylesheets/shared/facebook_row.scss */
  .facebook-row .left p span {
    font-size: 12px;
  }
}
@media screen and (max-width: 716px) {
  /* line 131, /app/app/assets/stylesheets/shared/facebook_row.scss */
  .facebook-row .facebook-row-inner {
    flex-wrap: wrap;
  }
  /* line 135, /app/app/assets/stylesheets/shared/facebook_row.scss */
  .facebook-row .left,
  .facebook-row .right {
    width: 100%;
  }
  /* line 140, /app/app/assets/stylesheets/shared/facebook_row.scss */
  .facebook-row .left {
    text-align: center;
    padding: 32px 16px;
  }
  /* line 145, /app/app/assets/stylesheets/shared/facebook_row.scss */
  .facebook-row .right {
    justify-content: center;
    padding: 16px 32px;
  }
  /* line 149, /app/app/assets/stylesheets/shared/facebook_row.scss */
  .facebook-row .right .fb-visit-button {
    transform: none;
  }
}
@media screen and (max-width: 416px) {
  /* line 158, /app/app/assets/stylesheets/shared/facebook_row.scss */
  .facebook-row .left p span {
    margin-right: 6px;
    padding-right: 6px;
  }
}
@media screen and (max-width: 370px) {
  /* line 169, /app/app/assets/stylesheets/shared/facebook_row.scss */
  .facebook-row .left p span {
    font-size: 10px;
  }
}

/* line 4, /app/app/assets/stylesheets/shared/fancy-text-with-quote.scss */
.fancy-text .fancy-text_text {
  position: relative;
}
/* line 7, /app/app/assets/stylesheets/shared/fancy-text-with-quote.scss */
.fancy-text .fancy-text_text h3 {
  font-weight: 600;
  margin-bottom: 36px;
}
/* line 12, /app/app/assets/stylesheets/shared/fancy-text-with-quote.scss */
.fancy-text .fancy-text_text p:first-of-type {
  width: 60%;
}
/* line 16, /app/app/assets/stylesheets/shared/fancy-text-with-quote.scss */
.fancy-text .fancy-text_text p {
  width: 50%;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  /* line 22, /app/app/assets/stylesheets/shared/fancy-text-with-quote.scss */
  .fancy-text .fancy-text_text p:first-of-type, .fancy-text .fancy-text_text p {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  /* line 29, /app/app/assets/stylesheets/shared/fancy-text-with-quote.scss */
  .fancy-text .fancy-text_quote {
    max-width: 320px;
    position: absolute;
    top: 38%;
    left: 55%;
    border-top: 3px solid #e4dcce;
    border-bottom: 3px solid #e4dcce;
    padding: 16px 0 36px 0;
  }
}
/* line 43, /app/app/assets/stylesheets/shared/fancy-text-with-quote.scss */
.fancy-text .fancy-text_quote p {
  width: 100% !important;
  font-size: 28px;
  margin-bottom: 0;
  line-height: 1.4;
}
/* line 50, /app/app/assets/stylesheets/shared/fancy-text-with-quote.scss */
.fancy-text .fancy-text_quote cite {
  display: block;
  line-height: 1;
  letter-spacing: 1px;
  font-family: "Times New Roman", Times, serif;
  font-size: 14px;
  font-weight: 600;
  font-style: italic;
  margin-top: 12px;
  text-transform: uppercase;
  color: #99762a;
}
/* line 63, /app/app/assets/stylesheets/shared/fancy-text-with-quote.scss */
.fancy-text .fancy-text_quote .background-graphic {
  display: none;
  position: absolute;
  top: -142px;
  left: 100px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  /* line 63, /app/app/assets/stylesheets/shared/fancy-text-with-quote.scss */
  .fancy-text .fancy-text_quote .background-graphic {
    display: block;
  }
}
/* line 73, /app/app/assets/stylesheets/shared/fancy-text-with-quote.scss */
.fancy-text .fancy-text_quote .background-graphic svg {
  width: 275px;
  fill: #e4dcce;
}
/* line 81, /app/app/assets/stylesheets/shared/fancy-text-with-quote.scss */
.fancy-text .fancy-text-button {
  margin: 48px 0;
}
@media screen and (max-width: 768px) {
  /* line 81, /app/app/assets/stylesheets/shared/fancy-text-with-quote.scss */
  .fancy-text .fancy-text-button {
    text-align: center;
  }
}

/* line 2, /app/app/assets/stylesheets/shared/featured_film_bar.scss */
.featured-film-bar h3 {
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: 2px;
}
/* line 8, /app/app/assets/stylesheets/shared/featured_film_bar.scss */
.featured-film-bar .playoverlay {
  position: relative;
}
/* line 12, /app/app/assets/stylesheets/shared/featured_film_bar.scss */
.featured-film-bar .overlay-shade {
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.8) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.8) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.8) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#cc000000',GradientType=0 );
}
/* line 19, /app/app/assets/stylesheets/shared/featured_film_bar.scss */
.featured-film-bar .bar-content {
  width: 100%;
  background-color: #e4dcce;
}
/* line 23, /app/app/assets/stylesheets/shared/featured_film_bar.scss */
.featured-film-bar .bar-content .wrapper {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 1200px) {
  /* line 23, /app/app/assets/stylesheets/shared/featured_film_bar.scss */
  .featured-film-bar .bar-content .wrapper {
    padding: 0;
  }
}
/* line 32, /app/app/assets/stylesheets/shared/featured_film_bar.scss */
.featured-film-bar .bar-content .left {
  width: 60%;
}
/* line 35, /app/app/assets/stylesheets/shared/featured_film_bar.scss */
.featured-film-bar .bar-content .left .icon-play {
  top: 50%;
  left: 50%;
  margin-top: -30px;
  margin-left: -30px;
}
/* line 42, /app/app/assets/stylesheets/shared/featured_film_bar.scss */
.featured-film-bar .bar-content .left a {
  display: block;
}
/* line 46, /app/app/assets/stylesheets/shared/featured_film_bar.scss */
.featured-film-bar .bar-content .left img {
  width: 100%;
  display: block;
}
/* line 52, /app/app/assets/stylesheets/shared/featured_film_bar.scss */
.featured-film-bar .bar-content .right {
  width: 40%;
  background-color: #ffffff;
  display: flex;
}
/* line 59, /app/app/assets/stylesheets/shared/featured_film_bar.scss */
.featured-film-bar .bar-content .right .big-see-all a div {
  margin-top: 0;
  max-width: 260px;
}
@media screen and (max-width: 1024px) {
  /* line 68, /app/app/assets/stylesheets/shared/featured_film_bar.scss */
  .featured-film-bar .bar-content .right .big-see-all {
    justify-content: center;
  }
  /* line 71, /app/app/assets/stylesheets/shared/featured_film_bar.scss */
  .featured-film-bar .bar-content .right .big-see-all a div {
    font-size: 34px;
  }
}
@media screen and (max-width: 830px) {
  /* line 81, /app/app/assets/stylesheets/shared/featured_film_bar.scss */
  .featured-film-bar .bar-content .right .big-see-all a div {
    font-size: 24px;
  }
}
@media screen and (max-width: 820px) {
  /* line 90, /app/app/assets/stylesheets/shared/featured_film_bar.scss */
  .featured-film-bar .bar-content .left,
  .featured-film-bar .bar-content .right {
    width: 100%;
  }
  /* line 96, /app/app/assets/stylesheets/shared/featured_film_bar.scss */
  .featured-film-bar .bar-content .right .big-see-all {
    width: 100%;
    justify-content: flex-start;
  }
  /* line 100, /app/app/assets/stylesheets/shared/featured_film_bar.scss */
  .featured-film-bar .bar-content .right .big-see-all h3 {
    position: relative;
    margin-bottom: 0;
  }
  /* line 106, /app/app/assets/stylesheets/shared/featured_film_bar.scss */
  .featured-film-bar .bar-content .right .big-see-all a {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }
  /* line 113, /app/app/assets/stylesheets/shared/featured_film_bar.scss */
  .featured-film-bar .bar-content .right .big-see-all a div {
    max-width: none;
    margin-bottom: 32px;
  }
}

/* line 1, /app/app/assets/stylesheets/shared/featured_promos.scss */
.featured-promos {
  display: flex;
  margin-bottom: 50px;
}
/* line 5, /app/app/assets/stylesheets/shared/featured_promos.scss */
.featured-promos > a {
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  width: calc(50% - 10px);
  padding-top: 22%;
  background-position: center;
}
/* line 13, /app/app/assets/stylesheets/shared/featured_promos.scss */
.featured-promos > a:first-of-type {
  margin-right: 10px;
}
/* line 17, /app/app/assets/stylesheets/shared/featured_promos.scss */
.featured-promos > a:last-of-type {
  margin-left: 10px;
}
/* line 21, /app/app/assets/stylesheets/shared/featured_promos.scss */
.featured-promos > a:hover, .featured-promos > a:focus {
  transform: scale(1.05);
}
@media screen and (max-width: 640px) {
  /* line 1, /app/app/assets/stylesheets/shared/featured_promos.scss */
  .featured-promos {
    flex-wrap: wrap;
  }
  /* line 30, /app/app/assets/stylesheets/shared/featured_promos.scss */
  .featured-promos > a {
    width: 100%;
    padding-top: 33%;
    max-width: 400px;
  }
  /* line 35, /app/app/assets/stylesheets/shared/featured_promos.scss */
  .featured-promos > a:first-of-type, .featured-promos > a:last-of-type {
    margin-right: auto;
    margin-left: auto;
  }
  /* line 41, /app/app/assets/stylesheets/shared/featured_promos.scss */
  .featured-promos > a:first-of-type {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 520px) {
  /* line 48, /app/app/assets/stylesheets/shared/featured_promos.scss */
  .featured-promos > a {
    padding-top: 40%;
  }
}

/* line 54, /app/app/assets/stylesheets/shared/featured_promos.scss */
.series-videos .featured-promos {
  margin-top: 50px;
}

/* line 1, /app/app/assets/stylesheets/shared/featured_video.scss */
.featured-video {
  width: 100%;
  display: flex;
}
/* line 5, /app/app/assets/stylesheets/shared/featured_video.scss */
.featured-video .featured-video-text {
  max-width: 500px;
}
/* line 10, /app/app/assets/stylesheets/shared/featured_video.scss */
.featured-video.dark .left,
.featured-video.dark .right {
  background-color: #262626;
  color: #ffffff;
}
/* line 16, /app/app/assets/stylesheets/shared/featured_video.scss */
.featured-video.dark .right {
  background-image: url("/assets/black-texture-14306fd2825dd2a0bfb115b174f224315b725a717a0e853fa3ace8da57afcef4.jpg");
  background-repeat: repeat;
}
/* line 24, /app/app/assets/stylesheets/shared/featured_video.scss */
.featured-video.light .right {
  background-color: #e4dcce;
  color: #262626;
}
/* line 29, /app/app/assets/stylesheets/shared/featured_video.scss */
.featured-video.light .right h2 span {
  display: block;
  font-family: "Lato", Helvetica, arial, sans-serif;
  font-style: normal;
  font-size: 16px;
  font-weight: 600;
  color: #057D7F;
  margin-bottom: 5px;
}
/* line 39, /app/app/assets/stylesheets/shared/featured_video.scss */
.featured-video.light .right p {
  font-family: "Lora", Times, serif;
}
/* line 44, /app/app/assets/stylesheets/shared/featured_video.scss */
.featured-video.light .right .promo-button::after {
  background-color: #057D7F;
}
/* line 51, /app/app/assets/stylesheets/shared/featured_video.scss */
.featured-video .left {
  width: 768px;
  overflow: hidden;
}
/* line 56, /app/app/assets/stylesheets/shared/featured_video.scss */
.featured-video .right {
  width: calc(100% - 768px);
  padding: 50px;
  position: relative;
}
/* line 61, /app/app/assets/stylesheets/shared/featured_video.scss */
.featured-video .right h2 {
  font-size: 30px;
  color: inherit;
  margin-bottom: 16px;
  line-height: 1.2;
  word-break: break-word;
  hyphens: auto;
}
/* line 69, /app/app/assets/stylesheets/shared/featured_video.scss */
.featured-video .right h2 > span {
  display: block;
  font-family: "Times New Roman", Times, serif;
  font-style: italic;
  font-size: 14px;
  font-weight: 600;
  color: #99762a;
  margin-bottom: 5px;
}
/* line 80, /app/app/assets/stylesheets/shared/featured_video.scss */
.featured-video .right p {
  line-height: 1.5;
}
/* line 83, /app/app/assets/stylesheets/shared/featured_video.scss */
.featured-video .right p:last-of-type {
  margin-bottom: 0;
}
/* line 88, /app/app/assets/stylesheets/shared/featured_video.scss */
.featured-video .right .promo-button {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}
/* line 95, /app/app/assets/stylesheets/shared/featured_video.scss */
.featured-video .right .featured-video-text {
  padding-bottom: 20px;
}
/* line 98, /app/app/assets/stylesheets/shared/featured_video.scss */
.featured-video .right .featured-video-text p {
  margin-bottom: 20px;
}
/* line 102, /app/app/assets/stylesheets/shared/featured_video.scss */
.featured-video .right .featured-video-text a.arrow-link {
  color: #e4dcce;
}
/* line 105, /app/app/assets/stylesheets/shared/featured_video.scss */
.featured-video .right .featured-video-text a.arrow-link::after {
  border-left-color: #99762a;
}
/* line 109, /app/app/assets/stylesheets/shared/featured_video.scss */
.featured-video .right .featured-video-text a.arrow-link:focus, .featured-video .right .featured-video-text a.arrow-link:hover {
  color: #f8f3ea;
}
/* line 113, /app/app/assets/stylesheets/shared/featured_video.scss */
.featured-video .right .featured-video-text a.arrow-link:focus::after, .featured-video .right .featured-video-text a.arrow-link:hover::after {
  border-left-color: #99762a;
}
@media screen and (max-width: 1200px) {
  /* line 123, /app/app/assets/stylesheets/shared/featured_video.scss */
  .featured-video.wrapper {
    padding-right: 0;
    padding-left: 0;
  }
}
@media screen and (max-width: 1190px) {
  /* line 130, /app/app/assets/stylesheets/shared/featured_video.scss */
  .featured-video .right {
    padding: 32px 32px 60px;
  }
  /* line 133, /app/app/assets/stylesheets/shared/featured_video.scss */
  .featured-video .right h2 {
    font-size: 34px;
  }
  /* line 137, /app/app/assets/stylesheets/shared/featured_video.scss */
  .featured-video .right p {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 1100px) {
  /* line 144, /app/app/assets/stylesheets/shared/featured_video.scss */
  .featured-video .left {
    width: 716px;
  }
  /* line 148, /app/app/assets/stylesheets/shared/featured_video.scss */
  .featured-video .right {
    width: calc(100% - 716px);
  }
  /* line 151, /app/app/assets/stylesheets/shared/featured_video.scss */
  .featured-video .right h2 {
    font-size: 28px;
  }
  /* line 155, /app/app/assets/stylesheets/shared/featured_video.scss */
  .featured-video .right p {
    font-size: 16px;
  }
}
@media screen and (max-width: 1125px) {
  /* line 163, /app/app/assets/stylesheets/shared/featured_video.scss */
  .featured-video .right h2 {
    font-size: 28px;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1040px) {
  /* line 171, /app/app/assets/stylesheets/shared/featured_video.scss */
  .featured-video .right h2 {
    font-size: 26px;
  }
}
@media screen and (max-width: 1024px) {
  /* line 178, /app/app/assets/stylesheets/shared/featured_video.scss */
  .featured-video .left {
    width: 640px;
  }
  /* line 182, /app/app/assets/stylesheets/shared/featured_video.scss */
  .featured-video .right {
    width: calc(100% - 640px);
  }
}
@media screen and (max-width: 1000px) {
  /* line 1, /app/app/assets/stylesheets/shared/featured_video.scss */
  .featured-video {
    flex-wrap: wrap;
  }
  /* line 190, /app/app/assets/stylesheets/shared/featured_video.scss */
  .featured-video .left {
    width: 100%;
  }
  /* line 194, /app/app/assets/stylesheets/shared/featured_video.scss */
  .featured-video .right {
    width: 100%;
    padding: 40px 40px 100px;
  }
  /* line 198, /app/app/assets/stylesheets/shared/featured_video.scss */
  .featured-video .right .promo-button {
    position: absolute;
    bottom: 0;
    left: 65px;
    right: auto;
  }
}
@media screen and (max-width: 680px) {
  /* line 208, /app/app/assets/stylesheets/shared/featured_video.scss */
  .featured-video.wrapper {
    padding-right: 0;
    padding-left: 0;
  }
  /* line 213, /app/app/assets/stylesheets/shared/featured_video.scss */
  .featured-video .featured-video-text {
    text-align: center;
    margin: 0 auto;
  }
}

/* line 3, /app/app/assets/stylesheets/shared/featured_voice.scss */
.featured-voice {
  background-color: #e4dcce;
  overflow-x: hidden;
}
/* line 7, /app/app/assets/stylesheets/shared/featured_voice.scss */
.featured-voice .featured-voice__inner {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: flex-end;
  max-width: 1600px;
  padding: 0;
}
@media screen and (min-width: 768px) {
  /* line 7, /app/app/assets/stylesheets/shared/featured_voice.scss */
  .featured-voice .featured-voice__inner {
    flex-direction: row;
    padding: 0 0 0 80px;
  }
}
/* line 21, /app/app/assets/stylesheets/shared/featured_voice.scss */
.featured-voice .featured-voice__inner-left {
  display: flex;
}
@media screen and (min-width: 768px) {
  /* line 21, /app/app/assets/stylesheets/shared/featured_voice.scss */
  .featured-voice .featured-voice__inner-left {
    width: 700px;
  }
}
/* line 28, /app/app/assets/stylesheets/shared/featured_voice.scss */
.featured-voice .featured-voice__inner-left .author-img-wrap {
  display: none;
  position: relative;
  width: 180px;
  min-width: 180px;
  height: 220px;
  min-height: 150px;
}
@media screen and (min-width: 1024px) {
  /* line 28, /app/app/assets/stylesheets/shared/featured_voice.scss */
  .featured-voice .featured-voice__inner-left .author-img-wrap {
    display: flex;
  }
}
/* line 40, /app/app/assets/stylesheets/shared/featured_voice.scss */
.featured-voice .featured-voice__inner-left .author-img-wrap .author-border,
.featured-voice .featured-voice__inner-left .author-img-wrap .author-img {
  width: inherit;
  min-width: inherit;
  height: inherit;
  min-height: inherit;
}
/* line 47, /app/app/assets/stylesheets/shared/featured_voice.scss */
.featured-voice .featured-voice__inner-left .author-img-wrap .author-border {
  position: relative;
  z-index: 20;
  border: solid 4px #057D7F;
}
/* line 52, /app/app/assets/stylesheets/shared/featured_voice.scss */
.featured-voice .featured-voice__inner-left .author-img-wrap .author-img {
  position: absolute;
  z-index: 1;
  padding: 0 3px 3px 0;
  opacity: 0.75;
  transform: translate(18px, 18px);
}
/* line 60, /app/app/assets/stylesheets/shared/featured_voice.scss */
.featured-voice .featured-voice__inner-left .promo-content {
  position: relative;
  flex: 1;
  width: 100%;
  max-width: 500px;
  padding: 50px 30px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  /* line 60, /app/app/assets/stylesheets/shared/featured_voice.scss */
  .featured-voice .featured-voice__inner-left .promo-content {
    max-width: 430px;
    padding-left: 0px;
    padding-right: 20px;
    margin: 0 30px 0 0;
  }
}
@media screen and (min-width: 1024px) {
  /* line 60, /app/app/assets/stylesheets/shared/featured_voice.scss */
  .featured-voice .featured-voice__inner-left .promo-content {
    padding-left: 40px;
  }
}
/* line 80, /app/app/assets/stylesheets/shared/featured_voice.scss */
.featured-voice .featured-voice__inner-left .promo-content .promo-content-inner {
  position: relative;
  text-align: center;
}
@media screen and (min-width: 768px) {
  /* line 80, /app/app/assets/stylesheets/shared/featured_voice.scss */
  .featured-voice .featured-voice__inner-left .promo-content .promo-content-inner {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
  }
}
/* line 91, /app/app/assets/stylesheets/shared/featured_voice.scss */
.featured-voice .featured-voice__inner-left .promo-content h3 {
  color: #262626;
}
/* line 94, /app/app/assets/stylesheets/shared/featured_voice.scss */
.featured-voice .featured-voice__inner-left .promo-content h3 {
  text-transform: uppercase;
  font-size: 32px;
  font-family: "Lato", Helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 400;
}
/* line 101, /app/app/assets/stylesheets/shared/featured_voice.scss */
.featured-voice .featured-voice__inner-left .promo-content h3 > span {
  font-family: "Times New Roman", Times, serif;
  font-style: italic;
  font-size: 14px;
  color: #99762a;
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  text-transform: uppercase;
}
/* line 112, /app/app/assets/stylesheets/shared/featured_voice.scss */
.featured-voice .featured-voice__inner-left .promo-content p {
  color: #262626;
}
@media screen and (max-width: 1200px) {
  /* line 60, /app/app/assets/stylesheets/shared/featured_voice.scss */
  .featured-voice .featured-voice__inner-left .promo-content {
    flex-shrink: unset;
  }
}
/* line 122, /app/app/assets/stylesheets/shared/featured_voice.scss */
.featured-voice .promo-button {
  display: none;
  position: relative;
  z-index: 99;
  width: 200px;
}
@media screen and (min-width: 768px) {
  /* line 122, /app/app/assets/stylesheets/shared/featured_voice.scss */
  .featured-voice .promo-button {
    display: block;
  }
}
/* line 132, /app/app/assets/stylesheets/shared/featured_voice.scss */
.featured-voice .featured-voice__image {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  /* line 132, /app/app/assets/stylesheets/shared/featured_voice.scss */
  .featured-voice .featured-voice__image {
    width: 80%;
    background-color: #f8f3ea;
  }
}
@media screen and (min-width: 1024px) {
  /* line 132, /app/app/assets/stylesheets/shared/featured_voice.scss */
  .featured-voice .featured-voice__image {
    width: 40%;
  }
}
/* line 145, /app/app/assets/stylesheets/shared/featured_voice.scss */
.featured-voice .featured-voice__image-box {
  position: relative;
  z-index: 91;
  margin: 0 auto;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 Aspect Ratio */
  background-opacity: 0;
  animation: build cubic-bezier(0.19, 1, 0.22, 1) 2.3s;
  animation-fill-mode: forwards;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 768px) {
  /* line 145, /app/app/assets/stylesheets/shared/featured_voice.scss */
  .featured-voice .featured-voice__image-box {
    background-color: #e4dcce;
  }
}
@keyframes build {
  0% {
    transform: translateY(-40px);
    height: 0px;
    opacity: 0;
  }
  60% {
    height: 300px;
  }
  100% {
    opacity: 1;
  }
}
@keyframes build-inner {
  0% {
    transform: scale(1.4);
  }
  0%,20% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* line 2, /app/app/assets/stylesheets/shared/film_series_detail.scss */
.video-detail .series-trailer-row, .film-series-detail .series-trailer-row {
  width: 100%;
  margin-bottom: 50px;
  background-color: #262626;
  overflow: hidden;
}
/* line 8, /app/app/assets/stylesheets/shared/film_series_detail.scss */
.video-detail .series-trailer-row .series-trailer, .film-series-detail .series-trailer-row .series-trailer {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}
/* line 14, /app/app/assets/stylesheets/shared/film_series_detail.scss */
.video-detail .series-trailer-row .series-trailer img, .film-series-detail .series-trailer-row .series-trailer img {
  width: 100%;
  display: block;
}
/* line 19, /app/app/assets/stylesheets/shared/film_series_detail.scss */
.video-detail .series-trailer-row .series-trailer .thumb-title-wrapper, .film-series-detail .series-trailer-row .series-trailer .thumb-title-wrapper {
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.8) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.8) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.8) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#cc000000',GradientType=0 );
}
@media screen and (max-width: 860px) {
  /* line 8, /app/app/assets/stylesheets/shared/film_series_detail.scss */
  .video-detail .series-trailer-row .series-trailer, .film-series-detail .series-trailer-row .series-trailer {
    padding: 0;
  }
}
/* line 32, /app/app/assets/stylesheets/shared/film_series_detail.scss */
.video-detail .series-content, .film-series-detail .series-content {
  max-width: 960px;
}
/* line 36, /app/app/assets/stylesheets/shared/film_series_detail.scss */
.video-detail .series-meta, .film-series-detail .series-meta {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
/* line 41, /app/app/assets/stylesheets/shared/film_series_detail.scss */
.video-detail .series-meta .series-buttons, .film-series-detail .series-meta .series-buttons {
  width: 100%;
  text-align: right;
  margin-bottom: 20px;
}
/* line 46, /app/app/assets/stylesheets/shared/film_series_detail.scss */
.video-detail .series-meta .series-buttons .duration-display, .film-series-detail .series-meta .series-buttons .duration-display {
  font-family: "Lato", Helvetica, arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 42px;
  display: inline-block;
  vertical-align: top;
  padding: 0 16px 0 0;
}
@media screen and (max-width: 420px) {
  /* line 46, /app/app/assets/stylesheets/shared/film_series_detail.scss */
  .video-detail .series-meta .series-buttons .duration-display, .film-series-detail .series-meta .series-buttons .duration-display {
    display: block;
    width: 100%;
    text-align: left;
  }
}
/* line 63, /app/app/assets/stylesheets/shared/film_series_detail.scss */
.video-detail .series-meta .series-buttons .button, .film-series-detail .series-meta .series-buttons .button {
  border-radius: 4px;
  padding: 0 16px;
  font-size: 14px;
  letter-spacing: 2px;
  position: relative;
}
@media screen and (max-width: 420px) {
  /* line 63, /app/app/assets/stylesheets/shared/film_series_detail.scss */
  .video-detail .series-meta .series-buttons .button, .film-series-detail .series-meta .series-buttons .button {
    padding: 0 14px;
  }
}
/* line 76, /app/app/assets/stylesheets/shared/film_series_detail.scss */
.video-detail .series-meta .series-title,
.video-detail .series-meta .series-options, .film-series-detail .series-meta .series-title,
.film-series-detail .series-meta .series-options {
  width: 50%;
}
/* line 81, /app/app/assets/stylesheets/shared/film_series_detail.scss */
.video-detail .series-meta .share-options, .film-series-detail .series-meta .share-options {
  position: relative;
}
@media screen and (max-width: 380px) {
  /* line 81, /app/app/assets/stylesheets/shared/film_series_detail.scss */
  .video-detail .series-meta .share-options, .film-series-detail .series-meta .share-options {
    width: 100%;
  }
}
/* line 89, /app/app/assets/stylesheets/shared/film_series_detail.scss */
.video-detail .series-meta .series-options, .film-series-detail .series-meta .series-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
}
/* line 96, /app/app/assets/stylesheets/shared/film_series_detail.scss */
.video-detail .series-meta .series-options .option-buttons, .film-series-detail .series-meta .series-options .option-buttons {
  display: flex;
  align-content: center;
  align-items: center;
  margin-bottom: 12px;
}
/* line 103, /app/app/assets/stylesheets/shared/film_series_detail.scss */
.video-detail .series-meta .series-options .guide-link,
.video-detail .series-meta .series-options .like-button,
.video-detail .series-meta .series-options .share-button, .film-series-detail .series-meta .series-options .guide-link,
.film-series-detail .series-meta .series-options .like-button,
.film-series-detail .series-meta .series-options .share-button {
  text-transform: uppercase;
  color: #262626;
  font-family: "Lato", Helvetica, arial, sans-serif;
  line-height: 22px;
  font-size: 12px;
  letter-spacing: 2px;
  vertical-align: middle;
  position: relative;
  display: flex;
  margin-right: 32px;
}
/* line 117, /app/app/assets/stylesheets/shared/film_series_detail.scss */
.video-detail .series-meta .series-options .guide-link:last-child,
.video-detail .series-meta .series-options .like-button:last-child,
.video-detail .series-meta .series-options .share-button:last-child, .film-series-detail .series-meta .series-options .guide-link:last-child,
.film-series-detail .series-meta .series-options .like-button:last-child,
.film-series-detail .series-meta .series-options .share-button:last-child {
  margin-right: 0;
}
/* line 121, /app/app/assets/stylesheets/shared/film_series_detail.scss */
.video-detail .series-meta .series-options .guide-link svg,
.video-detail .series-meta .series-options .like-button svg,
.video-detail .series-meta .series-options .share-button svg, .film-series-detail .series-meta .series-options .guide-link svg,
.film-series-detail .series-meta .series-options .like-button svg,
.film-series-detail .series-meta .series-options .share-button svg {
  margin-left: 12px;
  height: 22px;
  width: 22px;
  transition: all 0.3s ease;
}
/* line 128, /app/app/assets/stylesheets/shared/film_series_detail.scss */
.video-detail .series-meta .series-options .guide-link:hover,
.video-detail .series-meta .series-options .like-button:hover,
.video-detail .series-meta .series-options .share-button:hover, .film-series-detail .series-meta .series-options .guide-link:hover,
.film-series-detail .series-meta .series-options .like-button:hover,
.film-series-detail .series-meta .series-options .share-button:hover {
  color: #99752f;
}
/* line 131, /app/app/assets/stylesheets/shared/film_series_detail.scss */
.video-detail .series-meta .series-options .guide-link:hover svg,
.video-detail .series-meta .series-options .like-button:hover svg,
.video-detail .series-meta .series-options .share-button:hover svg, .film-series-detail .series-meta .series-options .guide-link:hover svg,
.film-series-detail .series-meta .series-options .like-button:hover svg,
.film-series-detail .series-meta .series-options .share-button:hover svg {
  fill: #99752f;
}
@media screen and (max-width: 780px) {
  /* line 103, /app/app/assets/stylesheets/shared/film_series_detail.scss */
  .video-detail .series-meta .series-options .guide-link,
  .video-detail .series-meta .series-options .like-button,
  .video-detail .series-meta .series-options .share-button, .film-series-detail .series-meta .series-options .guide-link,
  .film-series-detail .series-meta .series-options .like-button,
  .film-series-detail .series-meta .series-options .share-button {
    margin-right: 20px;
    letter-spacing: 1px;
  }
}
/* line 143, /app/app/assets/stylesheets/shared/film_series_detail.scss */
.video-detail .series-meta .series-options .guide-link .lines, .film-series-detail .series-meta .series-options .guide-link .lines {
  display: inline-block;
  margin-left: 12px;
  height: 20px;
  width: 20px;
  border: 2px solid #262626;
  padding: 3px 2px;
}
/* line 151, /app/app/assets/stylesheets/shared/film_series_detail.scss */
.video-detail .series-meta .series-options .guide-link .lines span, .film-series-detail .series-meta .series-options .guide-link .lines span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #262626;
  margin-bottom: 2px;
  transition: all 0.3s ease;
}
/* line 159, /app/app/assets/stylesheets/shared/film_series_detail.scss */
.video-detail .series-meta .series-options .guide-link .lines span:last-child, .film-series-detail .series-meta .series-options .guide-link .lines span:last-child {
  margin-bottom: 0;
}
/* line 165, /app/app/assets/stylesheets/shared/film_series_detail.scss */
.video-detail .series-meta .series-options .guide-link:hover, .film-series-detail .series-meta .series-options .guide-link:hover {
  color: #99752f;
}
/* line 168, /app/app/assets/stylesheets/shared/film_series_detail.scss */
.video-detail .series-meta .series-options .guide-link:hover .lines, .film-series-detail .series-meta .series-options .guide-link:hover .lines {
  border-color: #99752f;
}
/* line 171, /app/app/assets/stylesheets/shared/film_series_detail.scss */
.video-detail .series-meta .series-options .guide-link:hover .lines span, .film-series-detail .series-meta .series-options .guide-link:hover .lines span {
  background-color: #99752f;
}
/* line 178, /app/app/assets/stylesheets/shared/film_series_detail.scss */
.video-detail .series-meta .series-options .like-button, .film-series-detail .series-meta .series-options .like-button {
  padding-right: 34px;
}
/* line 181, /app/app/assets/stylesheets/shared/film_series_detail.scss */
.video-detail .series-meta .series-options .like-button svg, .film-series-detail .series-meta .series-options .like-button svg {
  fill: #262626;
  position: absolute;
  right: 0;
}
/* line 190, /app/app/assets/stylesheets/shared/film_series_detail.scss */
.video-detail .series-meta .series-options .like-button svg.icon-heart-solid, .film-series-detail .series-meta .series-options .like-button svg.icon-heart-solid {
  fill: #f14f3e;
}
/* line 196, /app/app/assets/stylesheets/shared/film_series_detail.scss */
.video-detail .series-meta .series-options .like-button:hover svg, .film-series-detail .series-meta .series-options .like-button:hover svg {
  fill: #ee2c18;
}
/* line 203, /app/app/assets/stylesheets/shared/film_series_detail.scss */
.video-detail .series-meta .series-options .share-button svg, .film-series-detail .series-meta .series-options .share-button svg {
  fill: #262626;
  height: 24px;
  margin-top: -3px;
}
/* line 210, /app/app/assets/stylesheets/shared/film_series_detail.scss */
.video-detail .series-meta .series-options .share-button:hover svg, .film-series-detail .series-meta .series-options .share-button:hover svg {
  fill: #99752f;
}
/* line 217, /app/app/assets/stylesheets/shared/film_series_detail.scss */
.video-detail .series-meta h2, .video-detail .series-meta h3, .video-detail .series-meta h4, .video-detail .series-meta h5, .film-series-detail .series-meta h2, .film-series-detail .series-meta h3, .film-series-detail .series-meta h4, .film-series-detail .series-meta h5 {
  text-transform: uppercase;
}
/* line 221, /app/app/assets/stylesheets/shared/film_series_detail.scss */
.video-detail .series-meta h2, .video-detail .series-meta h3, .video-detail .series-meta h4, .film-series-detail .series-meta h2, .film-series-detail .series-meta h3, .film-series-detail .series-meta h4 {
  margin-bottom: 8px;
}
/* line 225, /app/app/assets/stylesheets/shared/film_series_detail.scss */
.video-detail .series-meta h2, .video-detail .series-meta h3, .film-series-detail .series-meta h2, .film-series-detail .series-meta h3 {
  font-size: 30px;
}
/* line 229, /app/app/assets/stylesheets/shared/film_series_detail.scss */
.video-detail .series-meta h4, .film-series-detail .series-meta h4 {
  color: #057D7F;
  font-size: 20px;
  font-weight: 400;
}
/* line 235, /app/app/assets/stylesheets/shared/film_series_detail.scss */
.video-detail .series-meta h5, .film-series-detail .series-meta h5 {
  font-weight: 500;
}
/* line 238, /app/app/assets/stylesheets/shared/film_series_detail.scss */
.video-detail .series-meta h5 span:first-child, .film-series-detail .series-meta h5 span:first-child {
  font-family: "Times New Roman", Times, serif;
  font-style: italic;
  text-transform: lowercase;
}
@media screen and (max-width: 700px) {
  /* line 248, /app/app/assets/stylesheets/shared/film_series_detail.scss */
  .video-detail .series-meta .series-title,
  .video-detail .series-meta .series-options, .film-series-detail .series-meta .series-title,
  .film-series-detail .series-meta .series-options {
    width: 100%;
  }
  /* line 253, /app/app/assets/stylesheets/shared/film_series_detail.scss */
  .video-detail .series-meta .series-title, .film-series-detail .series-meta .series-title {
    margin-bottom: 40px;
  }
  /* line 257, /app/app/assets/stylesheets/shared/film_series_detail.scss */
  .video-detail .series-meta .series-options, .film-series-detail .series-meta .series-options {
    justify-content: flex-start;
  }
  /* line 261, /app/app/assets/stylesheets/shared/film_series_detail.scss */
  .video-detail .series-meta .series-buttons, .film-series-detail .series-meta .series-buttons {
    text-align: left;
    margin-bottom: 40px;
  }
  /* line 267, /app/app/assets/stylesheets/shared/film_series_detail.scss */
  .video-detail .series-meta h5 span:last-child, .film-series-detail .series-meta h5 span:last-child {
    font-size: 14px;
  }
}
/* line 274, /app/app/assets/stylesheets/shared/film_series_detail.scss */
.video-detail #previewimage, .video-detail .video-preview, .film-series-detail #previewimage, .film-series-detail .video-preview {
  position: relative;
  cursor: pointer;
  background-color: #262626;
}
/* line 279, /app/app/assets/stylesheets/shared/film_series_detail.scss */
.video-detail #previewimage img, .video-detail .video-preview img, .film-series-detail #previewimage img, .film-series-detail .video-preview img {
  opacity: 0.9;
}
/* line 283, /app/app/assets/stylesheets/shared/film_series_detail.scss */
.video-detail #previewimage svg, .video-detail .video-preview svg, .film-series-detail #previewimage svg, .film-series-detail .video-preview svg {
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  margin: -40px auto auto -40px;
  transform: scale(1);
  transition: transform 0.3s ease;
}
/* line 294, /app/app/assets/stylesheets/shared/film_series_detail.scss */
.video-detail #previewimage:hover svg, .video-detail .video-preview:hover svg, .film-series-detail #previewimage:hover svg, .film-series-detail .video-preview:hover svg {
  transform: scale(1.15);
}
/* line 300, /app/app/assets/stylesheets/shared/film_series_detail.scss */
.video-detail .series-videos, .film-series-detail .series-videos {
  max-width: 960px;
  margin-bottom: 50px;
}
/* line 304, /app/app/assets/stylesheets/shared/film_series_detail.scss */
.video-detail .series-videos h3, .film-series-detail .series-videos h3 {
  margin-bottom: 32px;
}
/* line 309, /app/app/assets/stylesheets/shared/film_series_detail.scss */
.video-detail .related, .film-series-detail .related {
  margin-bottom: 30px;
}

/* line 315, /app/app/assets/stylesheets/shared/film_series_detail.scss */
.expandable-description {
  position: relative;
  padding-bottom: 40px;
  margin-bottom: 50px;
  overflow: hidden;
  height: 220px;
}
/* line 322, /app/app/assets/stylesheets/shared/film_series_detail.scss */
.expandable-description.no-expand {
  height: auto;
  padding-bottom: 0;
}
/* line 326, /app/app/assets/stylesheets/shared/film_series_detail.scss */
.expandable-description.no-expand::after {
  display: none;
}
/* line 331, /app/app/assets/stylesheets/shared/film_series_detail.scss */
.expandable-description .series-description {
  padding-bottom: 100px;
  font-family: "Lora", Times, serif;
  font-size: 16px;
}
/* line 337, /app/app/assets/stylesheets/shared/film_series_detail.scss */
.expandable-description p {
  max-width: 650px;
  line-height: 1.6;
  font-family: inherit;
  font-size: 17px;
  margin-bottom: 16px;
}
/* line 345, /app/app/assets/stylesheets/shared/film_series_detail.scss */
.expandable-description ul li {
  font-size: inherit;
  font-family: inherit;
  max-width: 450px;
}
/* line 351, /app/app/assets/stylesheets/shared/film_series_detail.scss */
.expandable-description::after {
  content: '';
  position: absolute;
  bottom: 75px;
  right: 0;
  left: 0;
  height: 32px;
  background: -moz-linear-gradient(top, rgba(248, 243, 234, 0) 0%, rgba(248, 243, 234, 0.75) 32%, rgba(248, 243, 234, 0.9) 95%);
  background: -webkit-linear-gradient(top, rgba(248, 243, 234, 0) 0%, rgba(248, 243, 234, 0.75) 32%, rgba(248, 243, 234, 0.9) 95%);
  background: linear-gradient(to bottom, rgba(248, 243, 234, 0) 0%, rgba(248, 243, 234, 0.75) 32%, rgba(248, 243, 234, 0.9) 95%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00f8f3ea', endColorstr='#f8f3ea',GradientType=0 );
  z-index: 1;
}

/* line 367, /app/app/assets/stylesheets/shared/film_series_detail.scss */
button.read-more {
  outline: none;
  border: none;
  background-color: #f8f3ea;
  position: absolute;
  height: 80px;
  bottom: 0px;
  left: 0;
  padding: 0;
  width: 100%;
  cursor: pointer;
  z-index: 3;
  padding-top: 32px;
}
/* line 381, /app/app/assets/stylesheets/shared/film_series_detail.scss */
button.read-more span {
  position: absolute;
  display: block;
  width: 100%;
  background-color: #f8f3ea;
  border-bottom: 1px solid #d4c0a1;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  line-height: 26px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Lato", Helvetica, arial, sans-serif;
  z-index: 1;
}
/* line 398, /app/app/assets/stylesheets/shared/film_series_detail.scss */
button.read-more::before {
  content: '';
  border-top: 45px solid #d4c0a1;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  position: absolute;
  top: 32px;
  left: 50%;
  margin-left: -50px;
}

/* line 3, /app/app/assets/stylesheets/shared/flash_notice.scss */
.notyf .notyf__message {
  font-family: "Lato", Helvetica, arial, sans-serif;
}

/*++++++++++++++++++++++++++++++++++++++++++++++
--------- @Footer --------------------------
+++++++++++++++++++++++++++++++++++++++++++++++*/
/* line 5, /app/app/assets/stylesheets/shared/footer.scss */
.foot {
  clear: both;
  overflow: hidden;
  padding: 0 0 20px 0;
  font-family: "Lato", Helvetica, arial, sans-serif;
  z-index: 0;
}
@media screen and (max-width: 1000px) {
  /* line 5, /app/app/assets/stylesheets/shared/footer.scss */
  .foot {
    overflow: visible;
    margin-top: 160px;
  }
}

/* line 18, /app/app/assets/stylesheets/shared/footer.scss */
.foot .footnav-bar {
  border-top: 1px solid #d4c0a1;
  border-bottom: 1px solid #d4c0a1;
  padding: 12px 8px;
  overflow: hidden;
  float: none;
  clear: both;
  margin-bottom: 32px;
  letter-spacing: 1px;
}
@media screen and (max-width: 1000px) {
  /* line 18, /app/app/assets/stylesheets/shared/footer.scss */
  .foot .footnav-bar {
    padding: 4px 8px;
    overflow: visible;
  }
}
/* line 33, /app/app/assets/stylesheets/shared/footer.scss */
.foot .footnav-bar h4 {
  position: relative;
  z-index: 90;
  float: left;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  width: 132px;
  height: 44px;
  margin: 0 32px 0 0;
  background: url("/assets/logo-short-bd7f80f08b2cbae96ccbbdaa148091b2289221fbf0434690044939008f864c8d.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}
/* line 48, /app/app/assets/stylesheets/shared/footer.scss */
.foot .footnav-bar h4 a {
  display: block;
  height: 44px;
}
@media screen and (max-width: 1170px) {
  /* line 33, /app/app/assets/stylesheets/shared/footer.scss */
  .foot .footnav-bar h4 {
    display: none;
  }
}

/* line 59, /app/app/assets/stylesheets/shared/footer.scss */
.footer-social {
  display: flex;
  float: right;
  align-items: center;
  align-content: center;
  padding-top: 8px;
}
/* line 66, /app/app/assets/stylesheets/shared/footer.scss */
.footer-social li {
  width: 28px;
  box-sizing: content-box;
  padding-left: 24px;
}
/* line 71, /app/app/assets/stylesheets/shared/footer.scss */
.footer-social li:first-child {
  padding-left: 0;
}
/* line 75, /app/app/assets/stylesheets/shared/footer.scss */
.footer-social li a {
  display: flex;
  align-content: center;
}
/* line 79, /app/app/assets/stylesheets/shared/footer.scss */
.footer-social li a svg {
  width: 100%;
  max-width: 28px;
  height: 28px;
  fill: #8c8c85;
  opacity: 0.4;
  transition: opacity 0.3s ease;
}
/* line 90, /app/app/assets/stylesheets/shared/footer.scss */
.footer-social li a:hover svg, .footer-social li a:focus svg {
  fill: #262626;
  opacity: 1;
}
@media screen and (max-width: 1000px) {
  /* line 59, /app/app/assets/stylesheets/shared/footer.scss */
  .footer-social {
    margin: auto;
    float: none;
    justify-content: center;
    position: absolute;
    top: -102px;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* line 109, /app/app/assets/stylesheets/shared/footer.scss */
.foot .disclaim {
  margin: 40px 0 0 0;
}

/* line 112, /app/app/assets/stylesheets/shared/footer.scss */
.foot .disclaim a {
  text-decoration: none;
  color: #5d5f63;
}

/* line 116, /app/app/assets/stylesheets/shared/footer.scss */
.guts {
  float: left;
}

/* line 119, /app/app/assets/stylesheets/shared/footer.scss */
ul.mainnav {
  float: left;
  min-height: 44px;
  padding: 3px 0 2px 0;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
/* line 129, /app/app/assets/stylesheets/shared/footer.scss */
ul.mainnav li {
  float: left;
  text-transform: uppercase;
  font-size: 18px;
  font-family: "Lato", Helvetica, arial, sans-serif;
  padding: 0 20px 0 0;
}
@media screen and (max-width: 900px) {
  /* line 138, /app/app/assets/stylesheets/shared/footer.scss */
  ul.mainnav li {
    font-size: 16px;
  }
}
@media screen and (max-width: 1000px) {
  /* line 119, /app/app/assets/stylesheets/shared/footer.scss */
  ul.mainnav {
    margin: 0 auto;
    float: none;
    max-width: none;
  }
  /* line 148, /app/app/assets/stylesheets/shared/footer.scss */
  ul.mainnav li {
    float: none;
    padding: 0;
    margin: 4px 7px;
    text-align: center;
    display: inline-block;
  }
}
@media screen and (max-width: 740px) {
  /* line 119, /app/app/assets/stylesheets/shared/footer.scss */
  ul.mainnav {
    max-width: 316px;
    text-align: left;
  }
  /* line 161, /app/app/assets/stylesheets/shared/footer.scss */
  ul.mainnav li {
    width: 100%;
  }
}

/* line 167, /app/app/assets/stylesheets/shared/footer.scss */
ul.mainnav li a {
  display: block;
  padding: 0;
  text-decoration: none;
  color: #99752f;
}
/* line 173, /app/app/assets/stylesheets/shared/footer.scss */
ul.mainnav li a:hover, ul.mainnav li a:focus {
  color: #262626;
}

/* line 178, /app/app/assets/stylesheets/shared/footer.scss */
.foot p {
  clear: both;
  font-size: 11px;
  padding: 20px 0 20px 0;
}

/* line 183, /app/app/assets/stylesheets/shared/footer.scss */
.right {
  float: right;
}

/* line 186, /app/app/assets/stylesheets/shared/footer.scss */
.footcats {
  display: flex;
  width: 100%;
  justify-content: flex-start;
}
/* line 191, /app/app/assets/stylesheets/shared/footer.scss */
.footcats ul {
  margin: 5px 0 0 0;
  padding: 0;
  overflow: hidden;
  font-size: 16px;
  width: 100%;
  max-width: 120px;
}
/* line 199, /app/app/assets/stylesheets/shared/footer.scss */
.footcats ul.column-1 {
  margin-left: calc(132px + 32px + 8px);
}
/* line 203, /app/app/assets/stylesheets/shared/footer.scss */
.footcats ul.column-2, .footcats ul.column-3 {
  margin-left: 20px;
}
/* line 208, /app/app/assets/stylesheets/shared/footer.scss */
.footcats ul li {
  display: block;
}
/* line 211, /app/app/assets/stylesheets/shared/footer.scss */
.footcats ul li a {
  display: block;
  padding-top: 5px;
  color: #99752f;
}
/* line 216, /app/app/assets/stylesheets/shared/footer.scss */
.footcats ul li a:hover, .footcats ul li a:focus {
  color: #262626;
}
@media screen and (max-width: 1170px) {
  /* line 186, /app/app/assets/stylesheets/shared/footer.scss */
  .footcats {
    align-self: flex-start;
    flex-wrap: wrap;
  }
  /* line 228, /app/app/assets/stylesheets/shared/footer.scss */
  .footcats ul {
    max-width: none;
    display: flex;
    margin: 5px 12px;
  }
  /* line 233, /app/app/assets/stylesheets/shared/footer.scss */
  .footcats ul.column-1, .footcats ul.column-2, .footcats ul.column-3 {
    margin-left: 12px;
  }
  /* line 239, /app/app/assets/stylesheets/shared/footer.scss */
  .footcats ul li {
    margin-right: 20px;
  }
}
@media screen and (max-width: 900px) {
  /* line 186, /app/app/assets/stylesheets/shared/footer.scss */
  .footcats {
    align-self: flex-start;
    flex-wrap: nowrap;
  }
  /* line 249, /app/app/assets/stylesheets/shared/footer.scss */
  .footcats ul {
    max-width: 150px;
    display: block;
  }
}
@media screen and (max-width: 840px) {
  /* line 186, /app/app/assets/stylesheets/shared/footer.scss */
  .footcats {
    margin-bottom: 50px;
    justify-content: center;
  }
  /* line 259, /app/app/assets/stylesheets/shared/footer.scss */
  .footcats ul {
    margin-bottom: 0;
    max-width: 120px;
  }
}
@media screen and (max-width: 580px) {
  /* line 186, /app/app/assets/stylesheets/shared/footer.scss */
  .footcats {
    display: block;
  }
  /* line 269, /app/app/assets/stylesheets/shared/footer.scss */
  .footcats ul,
  .footcats ul.column-1,
  .footcats ul.column-2,
  .footcats ul.column-3 {
    max-width: 150px;
    float: none;
    clear: both;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
    text-align: center;
  }
}

/* line 284, /app/app/assets/stylesheets/shared/footer.scss */
.footer-bottom-wrapper {
  display: flex;
  justify-content: space-between;
}

/* line 289, /app/app/assets/stylesheets/shared/footer.scss */
.newsletter-signup-wrapper {
  width: 100%;
  max-width: 360px;
  padding-top: 10px;
  padding-left: 40px;
}
/* line 295, /app/app/assets/stylesheets/shared/footer.scss */
.newsletter-signup-wrapper h3 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: 2px;
}
/* line 302, /app/app/assets/stylesheets/shared/footer.scss */
.newsletter-signup-wrapper p {
  font-size: 14px;
  margin-bottom: 12px;
  padding: 0;
  max-width: 270px;
}
/* line 310, /app/app/assets/stylesheets/shared/footer.scss */
.newsletter-signup-wrapper .newsletter-form form {
  display: flex;
}
/* line 313, /app/app/assets/stylesheets/shared/footer.scss */
.newsletter-signup-wrapper .newsletter-form form input[type="email"] {
  font-size: 14px;
  background-color: #e4dcce;
  border: none;
  border-radius: 5px 0 0 5px;
}
/* line 320, /app/app/assets/stylesheets/shared/footer.scss */
.newsletter-signup-wrapper .newsletter-form form .button {
  height: 40px;
  margin-left: 0;
  margin-bottom: 16px;
  padding: 0 12px;
  width: 80px;
  border: none;
  border-radius: 0 5px 5px 0;
}
/* line 329, /app/app/assets/stylesheets/shared/footer.scss */
.newsletter-signup-wrapper .newsletter-form form .button:hover, .newsletter-signup-wrapper .newsletter-form form .button:focus {
  background-color: #ffffff;
  color: #262626;
}

@media screen and (max-width: 840px) {
  /* line 340, /app/app/assets/stylesheets/shared/footer.scss */
  .footer-bottom-wrapper {
    flex-wrap: wrap;
  }

  /* line 344, /app/app/assets/stylesheets/shared/footer.scss */
  ul.footcats {
    margin-bottom: 50px;
  }

  /* line 348, /app/app/assets/stylesheets/shared/footer.scss */
  .newsletter-signup-wrapper {
    margin: auto;
    padding-left: 0;
    max-width: 320px;
    text-align: center;
  }
  /* line 354, /app/app/assets/stylesheets/shared/footer.scss */
  .newsletter-signup-wrapper p {
    margin: 0 auto 12px;
  }
}
/* line 361, /app/app/assets/stylesheets/shared/footer.scss */
.footlowbar {
  clear: both;
  margin-top: 30px;
  margin-bottom: 30px;
  overflow: hidden;
}

/* line 367, /app/app/assets/stylesheets/shared/footer.scss */
.footlowbar p {
  color: #262626;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  line-height: 1.4;
  font-family: "Lato", Helvetica, arial, sans-serif;
}

/* line 375, /app/app/assets/stylesheets/shared/footer.scss */
.footlowbar p a {
  color: inherit;
}

/* line 378, /app/app/assets/stylesheets/shared/footer.scss */
.footlowbar p a:hover {
  color: #99752f;
}

@media screen and (max-width: 1000px) {
  /* line 383, /app/app/assets/stylesheets/shared/footer.scss */
  .footlowbar {
    text-align: center;
  }
  /* line 386, /app/app/assets/stylesheets/shared/footer.scss */
  .footlowbar p a::before {
    content: '';
    display: block;
    width: 100%;
    height: 0;
    float: none;
    clear: both;
  }
}
/* line 1, /app/app/assets/stylesheets/shared/forms.scss */
p.inline_notice {
  max-width: 500px;
  margin-bottom: 20px;
  color: #262626;
  font-size: 18px;
  font-family: "Lora", Times, serif;
  padding: 10px 20px;
  background-color: #d4c1a0;
  border-radius: 4px;
}

/* line 12, /app/app/assets/stylesheets/shared/forms.scss */
#error_explanation {
  max-width: 500px;
  margin-bottom: 20px;
  color: #262626;
  padding: 10px 20px;
  background-color: #d4c1a0;
  border-radius: 4px;
}
/* line 19, /app/app/assets/stylesheets/shared/forms.scss */
#error_explanation h2 {
  font-size: 16px;
}
/* line 22, /app/app/assets/stylesheets/shared/forms.scss */
#error_explanation ul {
  margin: 10px 0px;
}
/* line 24, /app/app/assets/stylesheets/shared/forms.scss */
#error_explanation ul li {
  padding: 5px;
  border-bottom: 1px solid #99762a;
}

/* line 33, /app/app/assets/stylesheets/shared/forms.scss */
form label,
.form-field-group label {
  display: block;
  font-family: "Lato", Helvetica, arial, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
/* line 40, /app/app/assets/stylesheets/shared/forms.scss */
form label.normal-text,
.form-field-group label.normal-text {
  text-transform: none;
  letter-spacing: 0;
}

/* line 47, /app/app/assets/stylesheets/shared/forms.scss */
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
input[type="number"],
textarea {
  -webkit-transition: all 0.30s ease-in-out;
  -moz-transition: all 0.30s ease-in-out;
  -ms-transition: all 0.30s ease-in-out;
  -o-transition: all 0.30s ease-in-out;
  outline: none;
  border: 1px solid #99762a;
  padding: 0 8px;
  border-radius: 4px;
  height: 40px;
  line-height: 40px;
  width: 100%;
  float: none;
  clear: both;
  margin-bottom: 16px;
  background-color: #f8f3ea;
  font-size: 18px;
  box-shadow: none;
  outline: none;
}
/* line 72, /app/app/assets/stylesheets/shared/forms.scss */
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
textarea:focus {
  background-color: #ffffff;
}

/* line 76, /app/app/assets/stylesheets/shared/forms.scss */
textarea {
  min-height: 200px;
  width: 100%;
  line-height: 1.5;
}

/* line 82, /app/app/assets/stylesheets/shared/forms.scss */
select {
  -webkit-transition: all 0.30s ease-in-out;
  -moz-transition: all 0.30s ease-in-out;
  -ms-transition: all 0.30s ease-in-out;
  -o-transition: all 0.30s ease-in-out;
}

/* line 89, /app/app/assets/stylesheets/shared/forms.scss */
.checkbox {
  display: flex;
}
/* line 92, /app/app/assets/stylesheets/shared/forms.scss */
.checkbox label {
  padding-left: 0;
}
/* line 96, /app/app/assets/stylesheets/shared/forms.scss */
.checkbox input[type="checkbox"] {
  margin-right: 8px;
}

/* line 101, /app/app/assets/stylesheets/shared/forms.scss */
input[type="submit"] {
  line-height: 40px;
  border-radius: 4px;
}

/* line 106, /app/app/assets/stylesheets/shared/forms.scss */
.g-recaptcha {
  margin-bottom: 32px;
}

/* line 1, /app/app/assets/stylesheets/shared/founder_bio.scss */
.founder-bio {
  padding: 80px 0;
  background-color: #f8f3ea;
  width: 100%;
  margin-top: -176px;
  margin-bottom: 50px;
  max-width: 800px;
  clear: both;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 910px) {
  /* line 1, /app/app/assets/stylesheets/shared/founder_bio.scss */
  .founder-bio {
    margin-top: 0;
  }
}
/* line 16, /app/app/assets/stylesheets/shared/founder_bio.scss */
.founder-bio p {
  font-size: 16px;
  line-height: 1.5;
}
/* line 21, /app/app/assets/stylesheets/shared/founder_bio.scss */
.founder-bio .founder-bio-top {
  display: flex;
}
/* line 25, /app/app/assets/stylesheets/shared/founder_bio.scss */
.founder-bio .founder-bio-left {
  background-color: #e4dcce;
  position: relative;
  width: 50%;
  max-width: 360px;
  min-height: 360px;
}
/* line 32, /app/app/assets/stylesheets/shared/founder_bio.scss */
.founder-bio .founder-bio-left > div.bio-img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  max-width: 360px;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
/* line 47, /app/app/assets/stylesheets/shared/founder_bio.scss */
.founder-bio .founder-bio-right {
  position: relative;
  padding: 40px;
}
/* line 51, /app/app/assets/stylesheets/shared/founder_bio.scss */
.founder-bio .founder-bio-right .accent-bg {
  background-color: #e4dcce;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 194px;
  z-index: -1;
}
/* line 61, /app/app/assets/stylesheets/shared/founder_bio.scss */
.founder-bio .founder-bio-right p {
  max-width: 430px;
}
/* line 64, /app/app/assets/stylesheets/shared/founder_bio.scss */
.founder-bio .founder-bio-right p:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  /* line 1, /app/app/assets/stylesheets/shared/founder_bio.scss */
  .founder-bio {
    padding: 50px 0;
    width: calc(100% + 64px);
    margin-left: -32px;
  }
  /* line 75, /app/app/assets/stylesheets/shared/founder_bio.scss */
  .founder-bio .founder-bio-top {
    flex-wrap: wrap;
  }
  /* line 79, /app/app/assets/stylesheets/shared/founder_bio.scss */
  .founder-bio .founder-bio-left {
    width: 150px;
    min-width: 0;
    max-width: 150px;
    min-height: 0;
    max-height: none;
  }
  /* line 86, /app/app/assets/stylesheets/shared/founder_bio.scss */
  .founder-bio .founder-bio-left > div.bio-img {
    max-width: 150px;
    background-position: 64% center;
  }
  /* line 91, /app/app/assets/stylesheets/shared/founder_bio.scss */
  .founder-bio .founder-bio-right {
    width: calc(100% - 150px);
  }
  /* line 94, /app/app/assets/stylesheets/shared/founder_bio.scss */
  .founder-bio .founder-bio-right .accent-bg {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  /* line 101, /app/app/assets/stylesheets/shared/founder_bio.scss */
  .founder-bio .founder-bio-left {
    display: none;
  }
  /* line 105, /app/app/assets/stylesheets/shared/founder_bio.scss */
  .founder-bio .founder-bio-right {
    width: 100%;
  }
  /* line 108, /app/app/assets/stylesheets/shared/founder_bio.scss */
  .founder-bio .founder-bio-right p,
  .founder-bio .founder-bio-right p:last-of-type {
    margin-bottom: 32px;
  }
  /* line 113, /app/app/assets/stylesheets/shared/founder_bio.scss */
  .founder-bio .founder-bio-right .arrow-dark.arrow-expand {
    position: relative;
    bottom: auto;
    left: auto;
    margin: auto;
  }
}

/* line 1, /app/app/assets/stylesheets/shared/global.scss */
body {
  font-family: "Lato", Helvetica, arial, sans-serif;
  font-size: 12px;
  line-height: 16px;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  color: #262626;
  background-color: #f8f3ea;
}

/* line 12, /app/app/assets/stylesheets/shared/global.scss */
.fluid-width-video-wrapper {
  padding-top: 56.26% !important;
}

/* line 1, /app/app/assets/stylesheets/shared/header.scss */
.header {
  width: 100%;
  padding-top: 50px;
  position: relative;
  margin-bottom: 25px;
}
/* line 7, /app/app/assets/stylesheets/shared/header.scss */
.header .nav-btn {
  display: none;
  position: relative;
  box-sizing: content-box;
  width: 36px;
  height: 26px;
  cursor: pointer;
  z-index: 2001;
  padding: 3px;
  float: right;
  margin-right: 8px;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  /* line 7, /app/app/assets/stylesheets/shared/header.scss */
  .header .nav-btn {
    display: block;
    margin-top: -40px;
  }
}
@media screen and (max-width: 820px) {
  /* line 7, /app/app/assets/stylesheets/shared/header.scss */
  .header .nav-btn {
    margin-top: -40px;
  }
}
@media screen and (max-width: 500px) {
  /* line 7, /app/app/assets/stylesheets/shared/header.scss */
  .header .nav-btn {
    margin-top: -40px;
  }
}
@media screen and (max-width: 400px) {
  /* line 7, /app/app/assets/stylesheets/shared/header.scss */
  .header .nav-btn {
    margin-top: -40px;
  }
}
/* line 37, /app/app/assets/stylesheets/shared/header.scss */
.header .nav-btn span {
  display: block;
  float: right;
  clear: both;
  background-color: #99752f;
  width: 100%;
  height: 3px;
  margin-bottom: calc(36px / 5);
  transition: all 0.5s ease;
}
/* line 47, /app/app/assets/stylesheets/shared/header.scss */
.header .nav-btn span:nth-child(2) {
  width: 50%;
}
/* line 51, /app/app/assets/stylesheets/shared/header.scss */
.header .nav-btn span:last-child {
  margin-bottom: 0;
  width: 66.666%;
}
/* line 60, /app/app/assets/stylesheets/shared/header.scss */
.header .nav-btn.nav-is-shown span:first-child {
  width: 36px;
  transform: rotate(-45deg) translate(-9px, 12px);
}
/* line 64, /app/app/assets/stylesheets/shared/header.scss */
.header .nav-btn.nav-is-shown span:nth-child(2) {
  transform: translateX(36px);
  opacity: 0;
}
/* line 68, /app/app/assets/stylesheets/shared/header.scss */
.header .nav-btn.nav-is-shown span:last-child {
  width: 36px;
  transform: rotate(45deg) translate(-2px, -5px);
}
@media screen and (max-width: 820px) {
  /* line 77, /app/app/assets/stylesheets/shared/header.scss */
  .header.wrapper {
    padding: 0;
    margin-bottom: 0;
  }
  /* line 81, /app/app/assets/stylesheets/shared/header.scss */
  .header.wrapper h1 {
    padding: 24px 24px 8px;
  }
}
/* line 87, /app/app/assets/stylesheets/shared/header.scss */
.header.header-alter {
  background-color: #d2c5ad;
  margin-bottom: 0;
  padding: 12px 20px;
}
/* line 92, /app/app/assets/stylesheets/shared/header.scss */
.header.header-alter::after {
  content: '';
  clear: both;
  display: block;
  width: 100%;
  height: 0px;
}
/* line 100, /app/app/assets/stylesheets/shared/header.scss */
.header.header-alter #site-logo {
  max-width: 300px;
  float: left;
  margin: 15px 0;
}
/* line 105, /app/app/assets/stylesheets/shared/header.scss */
.header.header-alter #site-logo h1 {
  margin: 0;
}
/* line 110, /app/app/assets/stylesheets/shared/header.scss */
.header.header-alter .header-nav-wrapper {
  margin: 0;
  float: right;
  clear: none;
  border: none;
  width: auto;
}

/* line 121, /app/app/assets/stylesheets/shared/header.scss */
#site-logo {
  display: block;
  overflow: hidden;
  position: relative;
  z-index: 2001;
  display: block;
  width: 280px;
  max-width: 280px;
}
/* line 130, /app/app/assets/stylesheets/shared/header.scss */
#site-logo h2 {
  display: none;
}
@media screen and (min-width: 500px) {
  /* line 121, /app/app/assets/stylesheets/shared/header.scss */
  #site-logo {
    width: 340px;
  }
}
@media screen and (min-width: 768px) {
  /* line 121, /app/app/assets/stylesheets/shared/header.scss */
  #site-logo {
    width: calc(100% - 52px);
    max-width: 480px;
  }
}
@media screen and (min-width: 960px) {
  /* line 121, /app/app/assets/stylesheets/shared/header.scss */
  #site-logo {
    width: 100%;
    max-width: 660px;
  }
  /* line 144, /app/app/assets/stylesheets/shared/header.scss */
  #site-logo h2 {
    display: block;
  }
}

/* line 150, /app/app/assets/stylesheets/shared/header.scss */
.header h1 {
  position: relative;
  z-index: 90;
  overflow: hidden;
  width: 100%;
  max-width: 664px;
  margin: 0 0 5px;
}
/* line 158, /app/app/assets/stylesheets/shared/header.scss */
.header h1 img {
  width: 100%;
  display: block;
}
@media screen and (max-width: 960px) {
  /* line 150, /app/app/assets/stylesheets/shared/header.scss */
  .header h1 {
    max-width: none;
    z-index: 2001;
  }
}

/* line 169, /app/app/assets/stylesheets/shared/header.scss */
.header h2 {
  position: relative;
  z-index: 90;
  font-weight: 300;
  font-size: 20px;
  letter-spacing: 2px;
  color: #262626;
  margin-left: 0.9%;
  text-transform: uppercase;
  font-family: "Lato", Helvetica, arial, sans-serif;
}
@media screen and (max-width: 960px) {
  /* line 169, /app/app/assets/stylesheets/shared/header.scss */
  .header h2 {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 1px;
  }
}
@media screen and (max-width: 500px) {
  /* line 169, /app/app/assets/stylesheets/shared/header.scss */
  .header h2 {
    font-size: 11px;
  }
}

/* line 191, /app/app/assets/stylesheets/shared/header.scss */
.header-nav-wrapper {
  border-top: 1px solid #d4c0a1;
  border-bottom: 1px solid #d4c0a1;
  margin-top: 20px;
  margin-bottom: 20px;
  display: block;
  width: 100%;
  clear: both;
  overflow: visible;
}
/* line 201, /app/app/assets/stylesheets/shared/header.scss */
.header-nav-wrapper:after {
  content: '';
  display: block;
  width: 100%;
  clear: both;
  float: none;
}
/* line 209, /app/app/assets/stylesheets/shared/header.scss */
.header-nav-wrapper ul li {
  letter-spacing: 1px;
}
@media screen and (max-width: 960px) {
  /* line 191, /app/app/assets/stylesheets/shared/header.scss */
  .header-nav-wrapper {
    margin-top: 0;
    margin-bottom: 0;
    border-top: none;
    border-bottom: none;
  }
  /* line 219, /app/app/assets/stylesheets/shared/header.scss */
  .header-nav-wrapper ul.soclinks {
    margin-bottom: 32px;
  }
  /* line 223, /app/app/assets/stylesheets/shared/header.scss */
  .header-nav-wrapper ul.soclinks .login a {
    background-color: #e4dcce;
    color: #262626;
  }
  /* line 230, /app/app/assets/stylesheets/shared/header.scss */
  .header-nav-wrapper.user-logged-in {
    float: left;
    clear: none;
    width: auto;
    border: none;
    overflow: visible;
    margin-top: 0;
  }
  /* line 238, /app/app/assets/stylesheets/shared/header.scss */
  .header-nav-wrapper.user-logged-in ul.soclinks {
    bottom: 0;
  }
  /* line 242, /app/app/assets/stylesheets/shared/header.scss */
  .header-nav-wrapper.user-logged-in ul.soclinks li.logout a.userMenuToggle {
    padding: 0 32px 0 8px;
    min-width: 0;
    height: auto;
    line-height: 42px;
  }
  /* line 248, /app/app/assets/stylesheets/shared/header.scss */
  .header-nav-wrapper.user-logged-in ul.soclinks li.logout a.userMenuToggle:hover {
    background-color: transparent;
  }
  /* line 253, /app/app/assets/stylesheets/shared/header.scss */
  .header-nav-wrapper.user-logged-in ul.soclinks li.logout .avatar {
    display: none;
  }
  /* line 257, /app/app/assets/stylesheets/shared/header.scss */
  .header-nav-wrapper.user-logged-in ul.soclinks li.logout .user-menu {
    display: flex;
    position: relative;
    width: 100vw;
    right: 0;
    left: 0;
    top: auto;
    border: none;
  }
  /* line 266, /app/app/assets/stylesheets/shared/header.scss */
  .header-nav-wrapper.user-logged-in ul.soclinks li.logout .user-menu a {
    width: 50%;
    padding: 0 16px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-bottom: none;
    background-color: #e4dcce;
    color: #262626;
  }
  /* line 276, /app/app/assets/stylesheets/shared/header.scss */
  .header-nav-wrapper.user-logged-in ul.soclinks li.logout .user-menu a:first-child {
    background-color: #d6c9b4;
  }
}

@media screen and (max-width: 960px) {
  /* line 1, /app/app/assets/stylesheets/shared/header_landing.scss */
  #site-header.landing-header {
    padding: 32px 32px 0;
    margin-bottom: 80px;
  }
}

/* line 8, /app/app/assets/stylesheets/shared/header_landing.scss */
.landing-header {
  display: flex;
  justify-content: space-between;
}
/* line 13, /app/app/assets/stylesheets/shared/header_landing.scss */
.landing-header.wrapper {
  max-width: 1240px;
}
/* line 17, /app/app/assets/stylesheets/shared/header_landing.scss */
.landing-header .header-left {
  width: calc(100% - 200px);
  max-width: 500px;
}
/* line 21, /app/app/assets/stylesheets/shared/header_landing.scss */
.landing-header .header-left h2 {
  font-size: 14px;
}
/* line 25, /app/app/assets/stylesheets/shared/header_landing.scss */
.landing-header .header-left #site-logo {
  max-width: 500px;
}
/* line 28, /app/app/assets/stylesheets/shared/header_landing.scss */
.landing-header .header-left #site-logo h1 {
  padding: 0;
  margin-bottom: 0;
}
@media screen and (max-width: 820px) {
  /* line 17, /app/app/assets/stylesheets/shared/header_landing.scss */
  .landing-header .header-left {
    max-width: none;
  }
}
/* line 39, /app/app/assets/stylesheets/shared/header_landing.scss */
.landing-header .header-right {
  text-align: right;
  width: 200px;
}
/* line 43, /app/app/assets/stylesheets/shared/header_landing.scss */
.landing-header .header-right .button {
  font-size: 14px;
  padding: 0 20px;
}
/* line 49, /app/app/assets/stylesheets/shared/header_landing.scss */
.landing-header h1 {
  background-repeat: no-repeat;
}
@media screen and (max-width: 680px) {
  /* line 8, /app/app/assets/stylesheets/shared/header_landing.scss */
  .landing-header {
    flex-wrap: wrap;
  }
  /* line 56, /app/app/assets/stylesheets/shared/header_landing.scss */
  .landing-header .header-left,
  .landing-header .header-right {
    width: 100%;
  }
  /* line 61, /app/app/assets/stylesheets/shared/header_landing.scss */
  .landing-header .header-right {
    text-align: left;
    padding-top: 20px;
  }
  /* line 65, /app/app/assets/stylesheets/shared/header_landing.scss */
  .landing-header .header-right .button {
    font-size: 12px;
    padding: 0 17px;
    line-height: 32px;
  }
}

/***** HELPER CLASSES *****/
/* line 2, /app/app/assets/stylesheets/shared/helpers.scss */
.wrapper {
  width: 100%;
  max-width: 1200px;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
/* line 10, /app/app/assets/stylesheets/shared/helpers.scss */
.wrapper.wrapper-full {
  max-width: none;
}
@media screen and (max-width: 500px) {
  /* line 13, /app/app/assets/stylesheets/shared/helpers.scss */
  .wrapper.pt-m-0 {
    padding-top: 0;
  }
}
@media screen and (min-width: 500px) {
  /* line 2, /app/app/assets/stylesheets/shared/helpers.scss */
  .wrapper {
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media screen and (min-width: 768px) {
  /* line 2, /app/app/assets/stylesheets/shared/helpers.scss */
  .wrapper {
    padding-right: 40px;
    padding-left: 40px;
  }
}
/* line 27, /app/app/assets/stylesheets/shared/helpers.scss */
.wrapper.no-search {
  margin-top: 50px;
}

/* line 32, /app/app/assets/stylesheets/shared/helpers.scss */
.two-column-copy .wrapper {
  padding: 0;
}

/* line 37, /app/app/assets/stylesheets/shared/helpers.scss */
.hidden {
  visibility: hidden;
  display: none;
}

/* line 42, /app/app/assets/stylesheets/shared/helpers.scss */
.flex-row {
  display: flex;
}

/* line 46, /app/app/assets/stylesheets/shared/helpers.scss */
.flex-col {
  display: flex;
  flex-direction: column;
}

/* line 50, /app/app/assets/stylesheets/shared/helpers.scss */
.justify-end {
  justify-content: end;
}

/* line 54, /app/app/assets/stylesheets/shared/helpers.scss */
.relative {
  position: relative;
}

/* line 58, /app/app/assets/stylesheets/shared/helpers.scss */
.preserve-aspect {
  padding-top: 56.25%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* line 65, /app/app/assets/stylesheets/shared/helpers.scss */
.space-between {
  justify-content: space-between;
}

/* line 69, /app/app/assets/stylesheets/shared/helpers.scss */
.justify-center {
  justify-content: center;
}

/* line 73, /app/app/assets/stylesheets/shared/helpers.scss */
.justify-end {
  justify-content: flex-end;
}

/* line 77, /app/app/assets/stylesheets/shared/helpers.scss */
.items-center {
  align-items: center;
}

/* line 81, /app/app/assets/stylesheets/shared/helpers.scss */
.pad-right-40 {
  padding-right: 40px;
}

/* line 85, /app/app/assets/stylesheets/shared/helpers.scss */
.pad-left-40 {
  padding-left: 40px;
}

/* line 89, /app/app/assets/stylesheets/shared/helpers.scss */
.pricing-page-wrapper {
  padding-top: 50px;
}

/* line 93, /app/app/assets/stylesheets/shared/helpers.scss */
.full-width-wrapper {
  width: 100%;
}

/* line 97, /app/app/assets/stylesheets/shared/helpers.scss */
.space-below {
  margin-bottom: 50px;
}
@media screen and (min-width: 620px) {
  /* line 97, /app/app/assets/stylesheets/shared/helpers.scss */
  .space-below {
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 768px) {
  /* line 97, /app/app/assets/stylesheets/shared/helpers.scss */
  .space-below {
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 1024px) {
  /* line 97, /app/app/assets/stylesheets/shared/helpers.scss */
  .space-below {
    margin-bottom: 100px;
  }
}
/* line 111, /app/app/assets/stylesheets/shared/helpers.scss */
.space-below.less-space-below {
  margin-bottom: 50px;
}

/* line 118, /app/app/assets/stylesheets/shared/helpers.scss */
* {
  box-sizing: border-box;
}

/* line 121, /app/app/assets/stylesheets/shared/helpers.scss */
.mb-10 {
  margin-bottom: 10px;
}

/* line 126, /app/app/assets/stylesheets/shared/helpers.scss */
.text-accent {
  color: #057D7F;
}

/* line 1, /app/app/assets/stylesheets/shared/image-grid.scss */
.image-grid {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  align-items: flex-start;
}
/* line 8, /app/app/assets/stylesheets/shared/image-grid.scss */
.image-grid img {
  display: block;
  height: auto;
  margin: 10px;
}
/* line 14, /app/app/assets/stylesheets/shared/image-grid.scss */
.image-grid .image-block {
  width: 50%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
/* line 21, /app/app/assets/stylesheets/shared/image-grid.scss */
.image-grid .image-block.single-image img {
  width: calc(100% - 20px);
}
/* line 28, /app/app/assets/stylesheets/shared/image-grid.scss */
.image-grid .image-block.quad-image img {
  width: calc(50% - 20px);
}
@media screen and (max-width: 920px) {
  /* line 35, /app/app/assets/stylesheets/shared/image-grid.scss */
  .image-grid img {
    margin: 8px;
  }
  /* line 41, /app/app/assets/stylesheets/shared/image-grid.scss */
  .image-grid .image-block.single-image img {
    width: calc(100% - 16px);
  }
  /* line 46, /app/app/assets/stylesheets/shared/image-grid.scss */
  .image-grid .image-block.quad-image img {
    width: calc(50% - 16px);
  }
}
@media screen and (max-width: 767px) {
  /* line 1, /app/app/assets/stylesheets/shared/image-grid.scss */
  .image-grid {
    width: calc(100% + 64px);
    margin-left: -32px;
  }
  /* line 57, /app/app/assets/stylesheets/shared/image-grid.scss */
  .image-grid img {
    margin: 0;
  }
  /* line 63, /app/app/assets/stylesheets/shared/image-grid.scss */
  .image-grid .image-block.single-image img {
    width: 100%;
  }
  /* line 68, /app/app/assets/stylesheets/shared/image-grid.scss */
  .image-grid .image-block.quad-image img {
    width: 50%;
  }
}
@media screen and (max-width: 420px) {
  /* line 1, /app/app/assets/stylesheets/shared/image-grid.scss */
  .image-grid {
    flex-wrap: wrap;
  }
  /* line 78, /app/app/assets/stylesheets/shared/image-grid.scss */
  .image-grid .image-block {
    width: 100%;
  }
  /* line 82, /app/app/assets/stylesheets/shared/image-grid.scss */
  .image-grid .image-block.single-image img {
    width: 100%;
  }
  /* line 87, /app/app/assets/stylesheets/shared/image-grid.scss */
  .image-grid .image-block.quad-image img {
    width: 50%;
  }
}

/* line 1, /app/app/assets/stylesheets/shared/included_films.scss */
.included-list {
  width: 100%;
  max-width: 768px;
  margin: 80px auto;
  text-align: center;
  padding: 0 4px;
}
/* line 8, /app/app/assets/stylesheets/shared/included_films.scss */
.included-list .included-thumbs {
  display: flex;
  flex-wrap: wrap;
}
/* line 15, /app/app/assets/stylesheets/shared/included_films.scss */
.included-list .vid-block-sm {
  width: calc(100% - 8px);
  margin: 4px;
}
@media screen and (min-width: 500px) {
  /* line 15, /app/app/assets/stylesheets/shared/included_films.scss */
  .included-list .vid-block-sm {
    width: calc(50% - 8px);
  }
}
@media screen and (min-width: 767px) {
  /* line 15, /app/app/assets/stylesheets/shared/included_films.scss */
  .included-list .vid-block-sm {
    width: calc(33.33% - 8px);
  }
}

/* line 1, /app/app/assets/stylesheets/shared/inner_page_video_wrapper.scss */
.inner-page-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin-bottom: 80px;
}
/* line 7, /app/app/assets/stylesheets/shared/inner_page_video_wrapper.scss */
.inner-page-video-wrapper .video-wrapper {
  padding-top: 56.25%;
}
/* line 10, /app/app/assets/stylesheets/shared/inner_page_video_wrapper.scss */
.inner-page-video-wrapper .video-wrapper iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
/* line 19, /app/app/assets/stylesheets/shared/inner_page_video_wrapper.scss */
.inner-page-video-wrapper img {
  width: 100%;
  display: block;
}

/* line 2, /app/app/assets/stylesheets/shared/journey_hero.scss */
.journey {
  background-color: #262626;
  background-position: top right;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 450px;
}
@media screen and (min-width: 769px) {
  /* line 2, /app/app/assets/stylesheets/shared/journey_hero.scss */
  .journey {
    background-size: contain;
  }
}
@media screen and (min-width: 1200px) {
  /* line 2, /app/app/assets/stylesheets/shared/journey_hero.scss */
  .journey {
    min-height: 550px;
  }
}
/* line 16, /app/app/assets/stylesheets/shared/journey_hero.scss */
.journey__wrapper {
  padding: 0 0 50px 0;
}
@media screen and (min-width: 769px) {
  /* line 16, /app/app/assets/stylesheets/shared/journey_hero.scss */
  .journey__wrapper {
    padding: 0 40px 50px 40px;
  }
}
/* line 24, /app/app/assets/stylesheets/shared/journey_hero.scss */
.journey__box {
  position: relative;
  background: transparent;
  width: 90%;
  padding: 0 0 50px 0;
}
@media screen and (min-width: 769px) {
  /* line 24, /app/app/assets/stylesheets/shared/journey_hero.scss */
  .journey__box {
    width: auto;
    max-width: 640px;
    border-bottom: 4px solid #057D7F;
  }
}
@media screen and (min-width: 826px) {
  /* line 24, /app/app/assets/stylesheets/shared/journey_hero.scss */
  .journey__box {
    max-width: 740px;
  }
}
@media screen and (min-width: 769px) {
  /* line 40, /app/app/assets/stylesheets/shared/journey_hero.scss */
  .journey__box:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 4px;
    height: 60px;
    background-color: #057D7F;
  }
}
/* line 54, /app/app/assets/stylesheets/shared/journey_hero.scss */
.journey__box:after {
  content: "";
  position: absolute;
  bottom: 100px;
  left: 40px;
  width: 80px;
  height: 4px;
  background-color: #057D7F;
}
@media screen and (min-width: 769px) {
  /* line 54, /app/app/assets/stylesheets/shared/journey_hero.scss */
  .journey__box:after {
    width: 4px;
    height: calc(100% - 105px);
    bottom: 0;
    left: unset;
    right: 0;
  }
}
/* line 73, /app/app/assets/stylesheets/shared/journey_hero.scss */
.journey__txt {
  background-color: #f8f3ea;
  padding: 55px 0 80px 40px;
}
@media screen and (min-width: 769px) {
  /* line 73, /app/app/assets/stylesheets/shared/journey_hero.scss */
  .journey__txt {
    width: 690px;
    background-color: #262626;
    padding: 55px 0 60px 0;
  }
}
/* line 87, /app/app/assets/stylesheets/shared/journey_hero.scss */
.journey__subtitle {
  font-size: 14px;
  font-weight: bold;
  font-style: italic;
  text-transform: uppercase;
  color: #99762a;
  font-family: "Times New Roman", Times, serif;
}
/* line 97, /app/app/assets/stylesheets/shared/journey_hero.scss */
.journey__title {
  position: relative;
  font-size: 36px;
  line-height: 42px;
  font-weight: bold;
  color: #262626;
  font-family: "Lato", Helvetica, arial, sans-serif;
  max-width: 500px;
  margin-bottom: 30px;
}
@media screen and (min-width: 769px) {
  /* line 97, /app/app/assets/stylesheets/shared/journey_hero.scss */
  .journey__title {
    color: #FFF;
  }
}
@media screen and (min-width: 769px) {
  /* line 111, /app/app/assets/stylesheets/shared/journey_hero.scss */
  .journey__title:after {
    content: "";
    position: absolute;
    right: -140px;
    top: 20px;
    width: 70px;
    height: 4px;
    background-color: #057D7F;
  }
}
@media screen and (min-width: 826px) {
  /* line 111, /app/app/assets/stylesheets/shared/journey_hero.scss */
  .journey__title:after {
    right: -240px;
    width: 170px;
  }
}
/* line 130, /app/app/assets/stylesheets/shared/journey_hero.scss */
.journey__intro {
  font-size: 18px;
  line-height: 30px;
  color: #262626;
  font-family: "Lora", Times, serif;
  padding: 0 40px 0 0;
  margin: 0;
}
@media screen and (min-width: 769px) {
  /* line 130, /app/app/assets/stylesheets/shared/journey_hero.scss */
  .journey__intro {
    color: #FFF;
    padding: 0;
    max-width: 575px;
  }
}

/* line 1, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
.journey-video-bar:nth-of-type(even) {
  position: relative;
  background-color: #EFEAE2;
}
/* line 5, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
.journey-video-bar:nth-of-type(even):before {
  content: "";
  position: absolute;
  top: 0px;
  left: calc(50% - 50px);
  width: 0;
  height: 0;
  border-top: 30px solid #f8f3ea;
  border-right: 50px solid transparent;
  border-left: 50px solid transparent;
}
/* line 16, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
.journey-video-bar:nth-of-type(even) .journey-video-bar__head {
  flex-direction: column;
  justify-content: flex-start;
}
@media screen and (min-width: 851px) {
  /* line 16, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
  .journey-video-bar:nth-of-type(even) .journey-video-bar__head {
    flex-direction: row;
  }
}
/* line 24, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
.journey-video-bar:nth-of-type(even) .journey-video-bar__intro {
  padding: 37px 0 0 0;
}
@media screen and (min-width: 851px) {
  /* line 24, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
  .journey-video-bar:nth-of-type(even) .journey-video-bar__intro {
    padding: 37px 0 0 70px;
  }
}
/* line 31, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
.journey-video-bar:nth-of-type(even) .journey-video-bar__vidblock {
  margin: 0 0 0 0;
}
@media screen and (min-width: 851px) {
  /* line 31, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
  .journey-video-bar:nth-of-type(even) .journey-video-bar__vidblock {
    margin: 0 0 0 -40px;
  }
}
@media screen and (min-width: 1419px) {
  /* line 31, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
  .journey-video-bar:nth-of-type(even) .journey-video-bar__vidblock {
    margin: 0 0 0 -90px;
  }
}

/* line 43, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
.journey-video-bar:nth-of-type(odd) {
  position: relative;
  background-color: #f8f3ea;
}
/* line 47, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
.journey-video-bar:nth-of-type(odd):before {
  content: "";
  position: absolute;
  top: 0px;
  left: calc(50% - 50px);
  width: 0;
  height: 0;
  border-top: 30px solid #EFEAE2;
  border-right: 50px solid transparent;
  border-left: 50px solid transparent;
}
/* line 59, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
.journey-video-bar:nth-of-type(odd) .journey-video-bar__head {
  flex-direction: column;
  justify-content: flex-start;
}
@media screen and (min-width: 851px) {
  /* line 59, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
  .journey-video-bar:nth-of-type(odd) .journey-video-bar__head {
    flex-direction: row-reverse;
  }
}
/* line 67, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
.journey-video-bar:nth-of-type(odd) .journey-video-bar__intro {
  padding: 37px 70px 0 0;
}
@media screen and (min-width: 851px) {
  /* line 67, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
  .journey-video-bar:nth-of-type(odd) .journey-video-bar__intro {
    margin: 37px 0 0 0;
  }
}
/* line 74, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
.journey-video-bar:nth-of-type(odd) .journey-video-bar__vidblock {
  margin: 0 0 0 0;
}
@media screen and (min-width: 851px) {
  /* line 74, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
  .journey-video-bar:nth-of-type(odd) .journey-video-bar__vidblock {
    margin: 0 -40px 0 0;
  }
}
@media screen and (min-width: 1419px) {
  /* line 74, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
  .journey-video-bar:nth-of-type(odd) .journey-video-bar__vidblock {
    margin: 0 -90px 0 0;
  }
}
/* line 84, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
.journey-video-bar:nth-of-type(odd) .journey-video-bar__buttons {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

/* line 90, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
.journey-video-bar:nth-of-type(2):before {
  display: none;
}

/* line 94, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
.journey-video-bar {
  margin: 0;
  max-width: unset;
}
/* line 98, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
.journey-video-bar__inner {
  padding: 40px 0px 60px 0px;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (min-width: 851px) {
  /* line 98, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
  .journey-video-bar__inner {
    padding: 100px 0px 100px 0px;
  }
}
/* line 107, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
.journey-video-bar__head {
  display: flex;
}
/* line 110, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
.journey-video-bar__vidblock {
  width: 100%;
  padding: 0 0 0 0;
}
@media screen and (min-width: 851px) {
  /* line 110, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
  .journey-video-bar__vidblock {
    width: 60%;
  }
}
@media screen and (min-width: 1280px) {
  /* line 110, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
  .journey-video-bar__vidblock {
    width: 50%;
  }
}
/* line 121, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
.journey-video-bar__video {
  width: 400px;
  height: 250px;
}
/* line 125, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
.journey-video-bar__intro {
  width: 100%;
  max-width: 610px;
  padding: 37px 0 0 0;
}
@media screen and (min-width: 851px) {
  /* line 125, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
  .journey-video-bar__intro {
    width: 60%;
    padding: 37px 0 0 70px;
  }
}
/* line 135, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
.journey-video-bar__intro h3 {
  position: relative;
  font-size: 24px;
  line-height: 30px;
  padding: 30px 0 20px 0;
}
/* line 141, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
.journey-video-bar__intro h3:before {
  content: "";
  position: absolute;
  width: 40px;
  height: 5px;
  background-color: #99762a;
  top: 0;
  left: 0;
}
/* line 150, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
.journey-video-bar__intro h3:after {
  content: "";
  position: absolute;
  width: 73px;
  height: 1px;
  background-color: #99762a;
  top: 2px;
  left: 0;
}
/* line 160, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
.journey-video-bar__intro p {
  padding: 0;
}
/* line 164, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
.journey-video-bar__buttons {
  display: flex;
  height: 57px;
  justify-content: flex-end;
}
/* line 169, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
.journey-video-bar__buttons a.triangle {
  display: block;
  height: 57px;
  background-color: #fff;
  color: #99762a;
  font-size: 18px;
  border: none;
  padding: 10px 103px 0 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 18px;
  transition: all .6s ease;
}
@media screen and (min-width: 1000px) {
  /* line 169, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
  .journey-video-bar__buttons a.triangle {
    padding: 10px 123px 0 60px;
  }
}
/* line 186, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
.journey-video-bar__buttons a.triangle:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 63px;
  height: 57px;
  background-color: #057D7F;
  transition: all .6s ease;
}
/* line 196, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
.journey-video-bar__buttons a.triangle:after {
  content: "";
  position: absolute;
  top: 19px;
  right: 19px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 18px solid #fff;
  transition: all .6s ease;
}
/* line 209, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
.journey-video-bar__buttons a.triangle:hover, .journey-video-bar__buttons a.triangle:focus {
  color: #262626;
}
/* line 212, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
.journey-video-bar__buttons a.triangle:hover:before, .journey-video-bar__buttons a.triangle:focus:before {
  background-color: #262626;
}
/* line 215, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
.journey-video-bar__buttons a.triangle:hover:after, .journey-video-bar__buttons a.triangle:focus:after {
  border-left: 18px solid #99762a;
}
/* line 220, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
.journey-video-bar__buttons a.button-link {
  display: none;
  font-family: "Lato", Helvetica, arial, sans-serif;
  text-transform: uppercase;
  font-size: 12px;
  color: #99762a;
  line-height: 57px;
  letter-spacing: 1px;
  padding: 0 40px;
}
@media screen and (min-width: 451px) {
  /* line 220, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
  .journey-video-bar__buttons a.button-link {
    display: inline-block;
  }
}
/* line 234, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
.journey-video-bar__buttons a.button-link:hover, .journey-video-bar__buttons a.button-link:focus {
  color: #262626;
}
/* line 239, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
.journey-video-bar__questions {
  margin: 60px 0 0 0px;
}
@media screen and (min-width: 851px) {
  /* line 239, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
  .journey-video-bar__questions {
    margin: 60px 0 0 40px;
  }
}
/* line 246, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
.journey-video-bar__questions h4 {
  position: relative;
  color: #057D7F;
  font-weight: normal;
  font-size: 18px;
  margin: 0 0 26px 0;
}
/* line 253, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
.journey-video-bar__questions h4:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 1px;
  top: 10px;
  left: -32px;
  background-color: #d4c0a1;
}
@media screen and (min-width: 851px) {
  /* line 253, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
  .journey-video-bar__questions h4:before {
    left: -68px;
  }
}
/* line 268, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
.journey-video-bar__question {
  position: relative;
  max-width: 700px;
  margin: 0 0 0px 0;
  padding: 26px 0 0px 30px;
  border-left: 6px solid #d4c0a1;
}
@media screen and (min-width: 851px) {
  /* line 268, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
  .journey-video-bar__question {
    padding: 26px 0 0 68px;
  }
}
/* line 279, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
.journey-video-bar__question:first-child {
  padding-top: 0;
}

/* line 287, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
.journey-video-bar .video-thumb__inner {
  position: relative;
}
/* line 290, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
.journey-video-bar .video-thumb__pic {
  display: flex;
  position: relative;
  overflow: hidden;
  z-index: 3;
  align-content: center;
  justify-content: center;
  padding-top: 56.25%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #e4dcce;
  transform: scale(1);
  transform-origin: bottom;
  transition: all 0.8s ease;
}

/*----- Toggle --------*/
/* line 311, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
.journey-video-bar__questions input {
  display: none;
}
/* line 314, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
.journey-video-bar__questions .journey-video-bar__question:not(:first-of-type) {
  overflow: hidden;
  opacity: 0;
  height: 0;
  padding-top: 0;
  transition: all 1.2s ease;
}
/* line 321, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
.journey-video-bar__questions .see-all {
  display: flex;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin: 50px 0 0 40px;
}
@media screen and (min-width: 851px) {
  /* line 321, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
  .journey-video-bar__questions .see-all {
    margin-left: 75px;
  }
}
/* line 335, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
.journey-video-bar__questions .see-all .icon-watch {
  fill: #057D7F;
  width: 30px;
  height: auto;
  margin-top: 3px;
  transition: all .6s ease;
}
/* line 342, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
.journey-video-bar__questions .see-all span {
  display: inline-block;
  color: #057D7F;
  font-family: "Lato", Helvetica, arial, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-left: 14px;
  border-bottom: 1px solid #057D7F;
  transition: all .6s ease;
}
/* line 354, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
.journey-video-bar__questions .see-all:hover .icon-watch, .journey-video-bar__questions .see-all:focus .icon-watch {
  fill: #262626;
}
/* line 357, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
.journey-video-bar__questions .see-all:hover span, .journey-video-bar__questions .see-all:focus span {
  color: #262626;
  border-color: #99762a;
}

/* line 364, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
input:checked + .journey-video-bar__expander .journey-video-bar__question {
  display: block;
  opacity: 1;
  height: auto;
  padding-top: 26px;
}
/* line 371, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
input:checked + .journey-video-bar__expander .journey-video-bar__question:first-child {
  padding-top: 0;
}

/* line 375, /app/app/assets/stylesheets/shared/journey_video_bar.scss */
input:checked + .journey-video-bar__expander .see-all {
  visibility: hidden;
  opacity: 0;
  height: 0;
  transition: visibility 0s linear 300ms, opacity 300ms;
}

/* line 1, /app/app/assets/stylesheets/shared/legal_content.scss */
.legal-content {
  margin-bottom: 200px;
}
@media screen and (max-width: 767px) {
  /* line 1, /app/app/assets/stylesheets/shared/legal_content.scss */
  .legal-content {
    margin-bottom: 100px;
  }
}
/* line 8, /app/app/assets/stylesheets/shared/legal_content.scss */
.legal-content h3 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
/* line 15, /app/app/assets/stylesheets/shared/legal_content.scss */
.legal-content h4 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 12px;
  margin-top: 50px;
}
/* line 22, /app/app/assets/stylesheets/shared/legal_content.scss */
.legal-content h4:first-of-type {
  margin-top: 0;
}
/* line 27, /app/app/assets/stylesheets/shared/legal_content.scss */
.legal-content p {
  font-size: 17px;
  margin-bottom: 32px;
  max-width: 800px;
}
/* line 33, /app/app/assets/stylesheets/shared/legal_content.scss */
.legal-content ul,
.legal-content ol {
  margin-left: 32px;
  max-width: 700px;
  margin-bottom: 50px;
}
/* line 39, /app/app/assets/stylesheets/shared/legal_content.scss */
.legal-content ul li,
.legal-content ol li {
  font-size: 16px;
  margin-bottom: 20px;
  font-family: 'Lora';
  line-height: 1.6;
}
/* line 47, /app/app/assets/stylesheets/shared/legal_content.scss */
.legal-content ul {
  list-style-type: disc;
}
/* line 50, /app/app/assets/stylesheets/shared/legal_content.scss */
.legal-content ol {
  list-style-type: decimal;
}

/* line 1, /app/app/assets/stylesheets/shared/login-page.scss */
.login-page {
  padding-top: 30px;
}
/* line 4, /app/app/assets/stylesheets/shared/login-page.scss */
.login-page .field {
  width: 100%;
  max-width: 400px;
}
/* line 8, /app/app/assets/stylesheets/shared/login-page.scss */
.login-page .field .small-tip {
  font-size: 14px;
  font-family: "Lato", Helvetica, arial, sans-serif;
}
/* line 16, /app/app/assets/stylesheets/shared/login-page.scss */
.login-page .checkbox input[type="checkbox"] {
  margin-right: 12px;
}
/* line 20, /app/app/assets/stylesheets/shared/login-page.scss */
.login-page .checkbox label {
  display: inline;
}
/* line 25, /app/app/assets/stylesheets/shared/login-page.scss */
.login-page .mar-top-15 {
  margin-top: 15px;
}

/* line 30, /app/app/assets/stylesheets/shared/login-page.scss */
.links {
  padding: 8px 0;
  letter-spacing: 1px;
}
/* line 34, /app/app/assets/stylesheets/shared/login-page.scss */
.links a {
  font-family: "Lato", Helvetica, arial, sans-serif;
  text-transform: uppercase;
  font-size: 12px;
  margin-right: 8px;
  padding-right: 8px;
  border-right: 1px solid #262626;
}
/* line 42, /app/app/assets/stylesheets/shared/login-page.scss */
.links a:last-of-type {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}
/* line 48, /app/app/assets/stylesheets/shared/login-page.scss */
.links br {
  display: none;
}

/****** MENTIONS ROW *****/
/* line 2, /app/app/assets/stylesheets/shared/mentions_row.scss */
.mentions-row {
  padding: 50px 0;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  /* line 6, /app/app/assets/stylesheets/shared/mentions_row.scss */
  .mentions-row h4 {
    text-align: center;
  }
}
/* line 12, /app/app/assets/stylesheets/shared/mentions_row.scss */
.mentions-row .mentions-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
/* line 18, /app/app/assets/stylesheets/shared/mentions_row.scss */
.mentions-row .mentions-inner > div {
  padding: 20px;
  width: calc(33.33% / 2);
  text-align: center;
}
@media screen and (max-width: 960px) {
  /* line 18, /app/app/assets/stylesheets/shared/mentions_row.scss */
  .mentions-row .mentions-inner > div {
    width: 33.33%;
  }
}
@media screen and (max-width: 600px) {
  /* line 18, /app/app/assets/stylesheets/shared/mentions_row.scss */
  .mentions-row .mentions-inner > div {
    width: 50%;
    padding: 16px 12px;
  }
}
/* line 32, /app/app/assets/stylesheets/shared/mentions_row.scss */
.mentions-row .mentions-inner > div img {
  width: 100%;
  max-width: 145px;
  display: inline-block;
  vertical-align: top;
}

/**** END MENTIONS ROW ***/
/* line 1, /app/app/assets/stylesheets/shared/modals.scss */
.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
}
/* line 14, /app/app/assets/stylesheets/shared/modals.scss */
.modal .overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(10, 10, 10, 0.8);
  z-index: 1;
}
/* line 24, /app/app/assets/stylesheets/shared/modals.scss */
.modal .modal-inner {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  min-height: 400px;
  z-index: 2;
}
/* line 32, /app/app/assets/stylesheets/shared/modals.scss */
.modal .modal-close {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 60px;
  color: #f8f3ea;
  background-color: #262626;
  width: 80px;
  height: 80px;
  line-height: 74px;
  display: flex;
  justify-content: center;
  transition: background-color 0.3s ease;
  z-index: 5;
}
/* line 47, /app/app/assets/stylesheets/shared/modals.scss */
.modal .modal-close:hover {
  background-color: #3a3a3a;
}
@media screen and (max-width: 680px) {
  /* line 32, /app/app/assets/stylesheets/shared/modals.scss */
  .modal .modal-close {
    font-size: 32px;
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}
/* line 59, /app/app/assets/stylesheets/shared/modals.scss */
.modal h2 {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 12px;
}
/* line 64, /app/app/assets/stylesheets/shared/modals.scss */
.modal h2 span {
  font-family: "Times New Roman", Times, serif;
  color: #99762a;
  font-size: 14px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 1px;
  display: block;
}
/* line 75, /app/app/assets/stylesheets/shared/modals.scss */
.modal p {
  line-height: 1.75;
  max-width: 350px;
}
/* line 81, /app/app/assets/stylesheets/shared/modals.scss */
.modal.login-modal .modal-inner {
  background-color: #f8f3ea;
  width: 100%;
  max-width: 760px;
}
/* line 86, /app/app/assets/stylesheets/shared/modals.scss */
.modal.login-modal .modal-inner .modal-left {
  width: 55%;
  text-align: left;
}
/* line 91, /app/app/assets/stylesheets/shared/modals.scss */
.modal.login-modal .modal-inner .modal-right {
  width: 45%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
}
/* line 98, /app/app/assets/stylesheets/shared/modals.scss */
.modal.login-modal .modal-inner .modal-login-form {
  padding: 40px 40px 60px;
}
/* line 101, /app/app/assets/stylesheets/shared/modals.scss */
.modal.login-modal .modal-inner .modal-login-form input[type="submit"] {
  margin-top: 8px;
}
/* line 104, /app/app/assets/stylesheets/shared/modals.scss */
.modal.login-modal .modal-inner .modal-login-form a.underline {
  color: #262626;
  border-bottom: 1px solid #262626;
  display: inline-block;
  font-family: "Lato", Helvetica, arial, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 12px;
}
/* line 114, /app/app/assets/stylesheets/shared/modals.scss */
.modal.login-modal .modal-inner .modal-login-form a.underline:hover, .modal.login-modal .modal-inner .modal-login-form a.underline:focus {
  color: #99762a;
  border-bottom: 1px solid transparent;
}
/* line 123, /app/app/assets/stylesheets/shared/modals.scss */
.modal.login-modal p:last-of-type {
  margin-bottom: 60px;
}
/* line 128, /app/app/assets/stylesheets/shared/modals.scss */
.modal.login-modal .modal-buttons .button {
  line-height: 50px;
}
/* line 131, /app/app/assets/stylesheets/shared/modals.scss */
.modal.login-modal .modal-buttons .button:first-child {
  margin-right: 12px;
}
/* line 139, /app/app/assets/stylesheets/shared/modals.scss */
.modal.login-modal.video-timeout-modal .modal-inner .modal-left {
  min-height: 460px;
}
/* line 142, /app/app/assets/stylesheets/shared/modals.scss */
.modal.login-modal.video-timeout-modal .modal-inner .modal-left > div {
  position: absolute;
}
/* line 147, /app/app/assets/stylesheets/shared/modals.scss */
.modal.login-modal.video-timeout-modal .modal-inner .modal-login-form {
  padding: 40px 40px 60px;
  visibility: hidden;
}
/* line 152, /app/app/assets/stylesheets/shared/modals.scss */
.modal.login-modal.video-timeout-modal .modal-inner .alt-modal-content {
  padding: 40px 40px 60px;
}
@media screen and (max-width: 740px) {
  /* line 160, /app/app/assets/stylesheets/shared/modals.scss */
  .modal.login-modal .modal-inner .modal-left {
    width: 60%;
  }
  /* line 163, /app/app/assets/stylesheets/shared/modals.scss */
  .modal.login-modal .modal-inner .modal-right {
    width: 40%;
  }
}
@media screen and (max-width: 670px) {
  /* line 170, /app/app/assets/stylesheets/shared/modals.scss */
  .modal.login-modal .modal-inner {
    max-width: none;
    width: 100%;
    height: 100%;
  }
  /* line 175, /app/app/assets/stylesheets/shared/modals.scss */
  .modal.login-modal .modal-inner .modal-left {
    width: 100%;
  }
  /* line 178, /app/app/assets/stylesheets/shared/modals.scss */
  .modal.login-modal .modal-inner .modal-right {
    display: none;
    width: 100%;
  }
  /* line 184, /app/app/assets/stylesheets/shared/modals.scss */
  .modal.login-modal p:last-of-type {
    margin-bottom: 40px;
  }
  /* line 189, /app/app/assets/stylesheets/shared/modals.scss */
  .modal.login-modal .modal-buttons .button {
    padding: 0 20px;
  }
  /* line 192, /app/app/assets/stylesheets/shared/modals.scss */
  .modal.login-modal .modal-buttons .button:last-of-type {
    margin-left: 5px;
  }
  /* line 200, /app/app/assets/stylesheets/shared/modals.scss */
  .modal.login-modal.video-timeout-modal .modal-inner .modal-login-form,
  .modal.login-modal.video-timeout-modal .modal-inner .alt-modal-content {
    padding: 40px 32px 60px;
  }
}
/* line 210, /app/app/assets/stylesheets/shared/modals.scss */
.modal.video-modal .modal-inner {
  background-color: #262626;
  padding: 16px 0 0;
  width: 100%;
  max-width: 960px;
  min-height: 0;
}
/* line 218, /app/app/assets/stylesheets/shared/modals.scss */
.modal.video-modal .modal-top {
  padding: 0 16px 16px;
}
/* line 222, /app/app/assets/stylesheets/shared/modals.scss */
.modal.video-modal .modal-top,
.modal.video-modal .video-player,
.modal.video-modal .modal-bottom {
  width: 100%;
}
/* line 228, /app/app/assets/stylesheets/shared/modals.scss */
.modal.video-modal .video-player {
  position: relative;
}
/* line 231, /app/app/assets/stylesheets/shared/modals.scss */
.modal.video-modal .video-player .icon-play {
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  margin: -40px auto auto -40px;
}
/* line 240, /app/app/assets/stylesheets/shared/modals.scss */
.modal.video-modal .modal-top {
  position: relative;
  min-height: 45px;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  align-items: baseline;
  padding-right: 68px;
}
/* line 249, /app/app/assets/stylesheets/shared/modals.scss */
.modal.video-modal .modal-top h2,
.modal.video-modal .modal-top h3 {
  margin-bottom: 0;
  display: inline-block;
  text-transform: uppercase;
}
/* line 256, /app/app/assets/stylesheets/shared/modals.scss */
.modal.video-modal .modal-top h2 {
  font-size: 20px;
  color: #ffffff;
  margin-right: 12px;
}
/* line 262, /app/app/assets/stylesheets/shared/modals.scss */
.modal.video-modal .modal-top h3 {
  color: #057D7F;
  font-size: 16px;
}
/* line 267, /app/app/assets/stylesheets/shared/modals.scss */
.modal.video-modal .modal-top .modal-close {
  height: 60px;
  width: 60px;
  font-size: 46px;
  line-height: 54px;
  color: #f14f3e;
  top: -16px;
  transition: all 0.3s ease;
}
/* line 276, /app/app/assets/stylesheets/shared/modals.scss */
.modal.video-modal .modal-top .modal-close:hover {
  background-color: inherit;
  color: #ee2c18;
}
/* line 284, /app/app/assets/stylesheets/shared/modals.scss */
.modal.video-modal .video-player img {
  width: 100%;
  display: block;
}
/* line 290, /app/app/assets/stylesheets/shared/modals.scss */
.modal.video-modal .modal-bottom {
  display: flex;
  justify-content: space-between;
}
/* line 294, /app/app/assets/stylesheets/shared/modals.scss */
.modal.video-modal .modal-bottom .next,
.modal.video-modal .modal-bottom .previous {
  background-color: transparent;
  border: none;
  outline: none;
  line-height: 60px;
  height: 60px;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #8c8c85;
  padding: 0;
  display: flex;
  align-items: center;
  align-content: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
/* line 312, /app/app/assets/stylesheets/shared/modals.scss */
.modal.video-modal .modal-bottom .next span,
.modal.video-modal .modal-bottom .previous span {
  background-color: #8c8c85;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
/* line 321, /app/app/assets/stylesheets/shared/modals.scss */
.modal.video-modal .modal-bottom .next span svg,
.modal.video-modal .modal-bottom .previous span svg {
  fill: #262626;
  width: 20px;
}
/* line 327, /app/app/assets/stylesheets/shared/modals.scss */
.modal.video-modal .modal-bottom .next:hover, .modal.video-modal .modal-bottom .next:focus,
.modal.video-modal .modal-bottom .previous:hover,
.modal.video-modal .modal-bottom .previous:focus {
  color: #057D7F;
}
/* line 329, /app/app/assets/stylesheets/shared/modals.scss */
.modal.video-modal .modal-bottom .next:hover span, .modal.video-modal .modal-bottom .next:focus span,
.modal.video-modal .modal-bottom .previous:hover span,
.modal.video-modal .modal-bottom .previous:focus span {
  background-color: #057D7F;
}
/* line 336, /app/app/assets/stylesheets/shared/modals.scss */
.modal.video-modal .modal-bottom .next span {
  margin-left: 28px;
}
/* line 342, /app/app/assets/stylesheets/shared/modals.scss */
.modal.video-modal .modal-bottom .previous span {
  margin-right: 28px;
}
/* line 344, /app/app/assets/stylesheets/shared/modals.scss */
.modal.video-modal .modal-bottom .previous span svg {
  transform: rotate(-180deg);
}
@media screen and (max-width: 500px) {
  /* line 351, /app/app/assets/stylesheets/shared/modals.scss */
  .modal.video-modal .modal-bottom .next,
  .modal.video-modal .modal-bottom .previous {
    line-height: 32px;
    height: 32px;
    font-size: 12px;
  }
  /* line 357, /app/app/assets/stylesheets/shared/modals.scss */
  .modal.video-modal .modal-bottom .next span,
  .modal.video-modal .modal-bottom .previous span {
    width: 32px;
    height: 32px;
  }
  /* line 361, /app/app/assets/stylesheets/shared/modals.scss */
  .modal.video-modal .modal-bottom .next span svg,
  .modal.video-modal .modal-bottom .previous span svg {
    width: 16px;
  }
  /* line 368, /app/app/assets/stylesheets/shared/modals.scss */
  .modal.video-modal .modal-bottom .next span {
    margin-left: 16px;
  }
  /* line 373, /app/app/assets/stylesheets/shared/modals.scss */
  .modal.video-modal .modal-bottom .previous span {
    margin-right: 16px;
  }
}

/* line 383, /app/app/assets/stylesheets/shared/modals.scss */
#download-modal .alt-modal-content {
  width: 100%;
}
/* line 387, /app/app/assets/stylesheets/shared/modals.scss */
#download-modal .download-modal-content {
  max-height: 95vh;
  overflow: auto;
}
/* line 391, /app/app/assets/stylesheets/shared/modals.scss */
#download-modal .modal-alert-header {
  padding: 15px 20px;
}
/* line 394, /app/app/assets/stylesheets/shared/modals.scss */
#download-modal .modal-alert-header h4 {
  margin: 0 auto 10px auto;
  font-size: 14px;
  text-align: center;
  font-weight: normal;
}
/* line 400, /app/app/assets/stylesheets/shared/modals.scss */
#download-modal .modal-alert-header p {
  padding: 0;
  text-align: center;
  margin: 0 auto;
  font-size: 16px;
}
/* line 407, /app/app/assets/stylesheets/shared/modals.scss */
#download-modal .download-modal-title {
  margin-bottom: 0;
}
/* line 411, /app/app/assets/stylesheets/shared/modals.scss */
#download-modal .modal-inner {
  background-color: #f8f3ea;
  width: 100%;
  max-width: 500px;
}
/* line 416, /app/app/assets/stylesheets/shared/modals.scss */
#download-modal .modal-inner .video-image {
  width: 100%;
}
/* line 419, /app/app/assets/stylesheets/shared/modals.scss */
#download-modal .modal-inner .video-image img {
  display: block;
  width: 100%;
}
/* line 425, /app/app/assets/stylesheets/shared/modals.scss */
#download-modal .modal-inner .modal-content-inner {
  padding: 40px;
}
/* line 428, /app/app/assets/stylesheets/shared/modals.scss */
#download-modal .modal-inner .modal-content-inner h3 {
  text-align: center;
  font-size: 20px;
  margin-bottom: 40px;
}
/* line 434, /app/app/assets/stylesheets/shared/modals.scss */
#download-modal .modal-inner .modal-content-inner .download {
  text-align: center;
}
/* line 438, /app/app/assets/stylesheets/shared/modals.scss */
#download-modal .modal-inner .modal-content-inner .download-guide {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  padding-top: 40px;
}
/* line 444, /app/app/assets/stylesheets/shared/modals.scss */
#download-modal .modal-inner .modal-content-inner .download-guide h3 {
  margin-right: 12px;
  margin-bottom: 0;
  line-height: 32px;
  font-size: 16px;
}
@media screen and (min-width: 681px) {
  /* line 454, /app/app/assets/stylesheets/shared/modals.scss */
  #download-modal .modal-inner .modal-content-inner.series-download-inner h3 {
    padding-right: 16px;
    text-align: left;
  }
}
/* line 463, /app/app/assets/stylesheets/shared/modals.scss */
#download-modal .series-li {
  width: calc(100% + 80px);
  margin-left: -40px;
  margin-right: -40px;
  padding: 16px;
  display: flex;
  border-bottom: 1px solid #e4dcce;
}
/* line 471, /app/app/assets/stylesheets/shared/modals.scss */
#download-modal .series-li .series-li-image {
  width: 25%;
}
/* line 473, /app/app/assets/stylesheets/shared/modals.scss */
#download-modal .series-li .series-li-image img {
  width: 100%;
  display: block;
}
/* line 479, /app/app/assets/stylesheets/shared/modals.scss */
#download-modal .series-li .series-li-details {
  padding-left: 16px;
  width: 75%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* line 486, /app/app/assets/stylesheets/shared/modals.scss */
#download-modal .series-li .series-li-details h3 {
  font-size: 16px;
  text-align: left;
  padding-right: 16px;
  margin-bottom: 0;
  width: 50%;
}
/* line 494, /app/app/assets/stylesheets/shared/modals.scss */
#download-modal .series-li .series-li-details .series-li-formats {
  width: 50%;
  justify-content: flex-end;
}
/* line 498, /app/app/assets/stylesheets/shared/modals.scss */
#download-modal .series-li .series-li-details .series-li-formats select {
  background-color: transparent;
  border: 1px solid #262626;
  font-size: 12px;
  font-family: "Lato", Helvetica, arial, sans-serif;
  text-transform: uppercase;
  width: 70%;
  height: 32px;
  line-height: 32px;
  transition: all 0.3s ease;
}
/* line 509, /app/app/assets/stylesheets/shared/modals.scss */
#download-modal .series-li .series-li-details .series-li-formats select:focus {
  background-color: #ffffff;
}
@media screen and (max-width: 480px) {
  /* line 479, /app/app/assets/stylesheets/shared/modals.scss */
  #download-modal .series-li .series-li-details {
    flex-wrap: wrap;
  }
  /* line 518, /app/app/assets/stylesheets/shared/modals.scss */
  #download-modal .series-li .series-li-details h3 {
    width: 100%;
    margin-bottom: 8px;
  }
  /* line 523, /app/app/assets/stylesheets/shared/modals.scss */
  #download-modal .series-li .series-li-details .series-li-formats {
    width: 100%;
  }
}
/* line 529, /app/app/assets/stylesheets/shared/modals.scss */
#download-modal .series-li.series-li-additional {
  padding: 16px;
  justify-content: flex-end;
}
/* line 533, /app/app/assets/stylesheets/shared/modals.scss */
#download-modal .series-li.series-li-additional .series-li-title {
  font-size: 14px;
  margin-bottom: 0;
}
/* line 540, /app/app/assets/stylesheets/shared/modals.scss */
#download-modal .series-li-formats,
#download-modal .series-li-additional {
  display: flex;
  align-items: center;
}
/* line 545, /app/app/assets/stylesheets/shared/modals.scss */
#download-modal .series-li-formats .download,
#download-modal .series-li-additional .download {
  padding-left: 12px;
  display: flex;
  align-items: center;
  position: relative;
}
/* line 551, /app/app/assets/stylesheets/shared/modals.scss */
#download-modal .series-li-formats .download .button,
#download-modal .series-li-additional .download .button {
  height: 32px;
  line-height: 32px;
  font-size: 12px;
  padding: 0 12px;
}

/* line 562, /app/app/assets/stylesheets/shared/modals.scss */
#subscription-modal .modal-content {
  padding: 50px 32px;
  background-color: #f8f3ea;
}
@media screen and (min-width: 680px) {
  /* line 562, /app/app/assets/stylesheets/shared/modals.scss */
  #subscription-modal .modal-content {
    padding: 80px;
  }
}
/* line 570, /app/app/assets/stylesheets/shared/modals.scss */
#subscription-modal .modal-content h1.page-heading {
  font-size: 32px;
  margin-bottom: 12px;
}
/* line 574, /app/app/assets/stylesheets/shared/modals.scss */
#subscription-modal .modal-content h1.page-heading span {
  font-size: 22px;
}
/* line 579, /app/app/assets/stylesheets/shared/modals.scss */
#subscription-modal .modal-content p {
  margin-bottom: 40px;
  max-width: 400px;
}
/* line 584, /app/app/assets/stylesheets/shared/modals.scss */
#subscription-modal .modal-content .button {
  margin-bottom: 12px;
}

/* line 1, /app/app/assets/stylesheets/shared/more-cta-bar.scss */
.more-cta-bar {
  width: 100%;
  background-color: #e4dcce;
  padding: 80px 0 130px;
}
/* line 6, /app/app/assets/stylesheets/shared/more-cta-bar.scss */
.more-cta-bar .wrapper {
  display: flex;
}
/* line 10, /app/app/assets/stylesheets/shared/more-cta-bar.scss */
.more-cta-bar .more-cta-image {
  width: 40%;
  position: relative;
}
/* line 14, /app/app/assets/stylesheets/shared/more-cta-bar.scss */
.more-cta-bar .more-cta-image .bg-image {
  display: block;
  width: 100%;
  padding-top: 56.25%;
  background-color: #dbd0be;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* line 25, /app/app/assets/stylesheets/shared/more-cta-bar.scss */
.more-cta-bar .more-cta-text {
  padding-left: 40px;
  position: relative;
}
/* line 29, /app/app/assets/stylesheets/shared/more-cta-bar.scss */
.more-cta-bar .more-cta-text h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 16px;
}
/* line 35, /app/app/assets/stylesheets/shared/more-cta-bar.scss */
.more-cta-bar .more-cta-text p {
  max-width: 470px;
}
@media screen and (max-width: 970px) {
  /* line 1, /app/app/assets/stylesheets/shared/more-cta-bar.scss */
  .more-cta-bar {
    padding: 80px 0;
  }
  /* line 44, /app/app/assets/stylesheets/shared/more-cta-bar.scss */
  .more-cta-bar .more-cta-text p {
    margin-bottom: 25px;
  }
  /* line 47, /app/app/assets/stylesheets/shared/more-cta-bar.scss */
  .more-cta-bar .more-cta-text .arrow-dark.arrow-expand {
    position: relative;
    bottom: auto;
    left: auto;
  }
}
@media screen and (max-width: 860px) {
  /* line 1, /app/app/assets/stylesheets/shared/more-cta-bar.scss */
  .more-cta-bar {
    padding: 50px 0;
  }
  /* line 58, /app/app/assets/stylesheets/shared/more-cta-bar.scss */
  .more-cta-bar .wrapper {
    flex-wrap: wrap;
  }
  /* line 62, /app/app/assets/stylesheets/shared/more-cta-bar.scss */
  .more-cta-bar .more-cta-image {
    width: 100%;
    margin-bottom: 40px;
  }
  /* line 67, /app/app/assets/stylesheets/shared/more-cta-bar.scss */
  .more-cta-bar .more-cta-text {
    width: 100%;
    text-align: center;
    padding: 0;
  }
  /* line 72, /app/app/assets/stylesheets/shared/more-cta-bar.scss */
  .more-cta-bar .more-cta-text p {
    margin: auto auto 32px;
  }
  /* line 76, /app/app/assets/stylesheets/shared/more-cta-bar.scss */
  .more-cta-bar .more-cta-text .arrow-dark.arrow-expand {
    margin: auto;
  }
}

/* line 1, /app/app/assets/stylesheets/shared/navigation.scss */
ul.nav {
  overflow: hidden;
  margin: 0;
  float: left;
  clear: none;
}

/* line 7, /app/app/assets/stylesheets/shared/navigation.scss */
ul.nav li {
  float: left;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  font-size: 18px;
  font-family: "Lato", Helvetica, arial, sans-serif;
}

/* line 15, /app/app/assets/stylesheets/shared/navigation.scss */
ul.nav li a {
  display: block;
  color: #99752f;
  text-decoration: none;
  padding: 0 8px;
  line-height: 56px;
}

/* line 22, /app/app/assets/stylesheets/shared/navigation.scss */
ul.nav li a:hover,
ul.nav li a:focus,
ul.nav li a:active {
  color: #262626;
}

@media screen and (max-width: 1125px) {
  /* line 29, /app/app/assets/stylesheets/shared/navigation.scss */
  ul.nav li {
    letter-spacing: 0;
    font-size: 16px;
  }
}
@media screen and (max-width: 960px) {
  /* line 46, /app/app/assets/stylesheets/shared/navigation.scss */
  .header-nav-wrapper {
    position: fixed;
    background-color: #f8f3ea;
    width: 100vw;
    height: 100vh;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding-top: 140px;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
  }
  /* line 63, /app/app/assets/stylesheets/shared/navigation.scss */
  .header-nav-wrapper ul.nav li {
    font-size: 28px;
    padding: 0;
    display: block;
    float: none;
  }
  /* line 69, /app/app/assets/stylesheets/shared/navigation.scss */
  .header-nav-wrapper ul.nav li a {
    padding: 0 16px 20px 60px;
    font-family: Times New Roman;
    font-weight: bold;
    letter-spacing: 2px;
    line-height: 1.5;
    font-style: italic;
    color: #262626;
  }
}
@media screen and (max-width: 820px) {
  /* line 84, /app/app/assets/stylesheets/shared/navigation.scss */
  .header-nav-wrapper {
    padding-top: 80px;
  }
}
/* line 89, /app/app/assets/stylesheets/shared/navigation.scss */
ul.soclinks {
  float: right;
  position: relative;
  margin: auto;
}
/* line 94, /app/app/assets/stylesheets/shared/navigation.scss */
ul.soclinks li {
  float: left;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  font-size: 15px;
  font-family: "Lato", Helvetica, arial, sans-serif;
  letter-spacing: 1px;
}
/* line 103, /app/app/assets/stylesheets/shared/navigation.scss */
ul.soclinks li:first-child {
  padding: 0 20px 0 0;
  line-height: 60px;
}
@media screen and (max-width: 1125px) {
  /* line 103, /app/app/assets/stylesheets/shared/navigation.scss */
  ul.soclinks li:first-child {
    font-size: 14px;
    padding: 0 20px 0 0;
    margin-right: 0;
    line-height: 56px;
  }
}
/* line 115, /app/app/assets/stylesheets/shared/navigation.scss */
ul.soclinks li a {
  color: #99752f;
  display: block;
  text-decoration: none;
}
/* line 120, /app/app/assets/stylesheets/shared/navigation.scss */
ul.soclinks li a:hover, ul.soclinks li a:focus {
  color: #262626;
}
/* line 127, /app/app/assets/stylesheets/shared/navigation.scss */
ul.soclinks li.subscribe a {
  display: inline-block;
  padding: 16px 32px;
  background-color: #262626;
  color: #f8f3ea;
  font-size: 18px;
}
/* line 134, /app/app/assets/stylesheets/shared/navigation.scss */
ul.soclinks li.subscribe a:hover, ul.soclinks li.subscribe a:focus {
  color: #99762a;
}
@media screen and (max-width: 1125px) {
  /* line 127, /app/app/assets/stylesheets/shared/navigation.scss */
  ul.soclinks li.subscribe a {
    font-size: 15px;
    padding: 16px 28px;
  }
}
/* line 146, /app/app/assets/stylesheets/shared/navigation.scss */
ul.soclinks li.logout {
  padding: 0;
  width: 100%;
  position: relative;
}
/* line 151, /app/app/assets/stylesheets/shared/navigation.scss */
ul.soclinks li.logout .header-user {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: flex-end;
}
/* line 157, /app/app/assets/stylesheets/shared/navigation.scss */
ul.soclinks li.logout .header-user > a {
  min-width: 200px;
  position: relative;
}
/* line 161, /app/app/assets/stylesheets/shared/navigation.scss */
ul.soclinks li.logout .header-user > a::before {
  content: '';
  border-top: 6px solid #99752f;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  margin-right: 12px;
  display: inline-block;
  transition: all 0.3s ease;
}
/* line 173, /app/app/assets/stylesheets/shared/navigation.scss */
ul.soclinks li.logout .header-user > a:hover::before, ul.soclinks li.logout .header-user > a:focus::before {
  border-top: 6px solid #262626;
}
@media screen and (max-width: 960px) {
  /* line 151, /app/app/assets/stylesheets/shared/navigation.scss */
  ul.soclinks li.logout .header-user {
    display: none;
  }
}
/* line 184, /app/app/assets/stylesheets/shared/navigation.scss */
ul.soclinks li.logout a {
  font-size: 12px;
  padding: 0;
  height: 56px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  align-content: center;
}
/* line 194, /app/app/assets/stylesheets/shared/navigation.scss */
ul.soclinks li.logout .avatar {
  height: 48px;
  width: 48px;
  margin-left: 8px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #e4dcce;
  border-radius: 0;
}
/* line 205, /app/app/assets/stylesheets/shared/navigation.scss */
ul.soclinks li.logout .user-menu {
  position: absolute;
  right: 0;
  min-width: 100%;
  z-index: 5;
  background-color: #f8f3ea;
  border: 1px solid #e4dcce;
  border-top: none;
  top: calc(100% + 5px);
}
@media screen and (max-width: 1125px) {
  /* line 205, /app/app/assets/stylesheets/shared/navigation.scss */
  ul.soclinks li.logout .user-menu {
    top: calc(100% + 1px);
  }
}
/* line 221, /app/app/assets/stylesheets/shared/navigation.scss */
ul.soclinks li.logout .user-menu a {
  display: block;
  padding: 8px 64px 8px 8px;
  line-height: 1.5;
  text-align: right;
  height: auto;
  border-bottom: 1px solid #e4dcce;
}
/* line 229, /app/app/assets/stylesheets/shared/navigation.scss */
ul.soclinks li.logout .user-menu a:last-child {
  border-bottom: none;
}
@media screen and (max-width: 960px) {
  /* line 89, /app/app/assets/stylesheets/shared/navigation.scss */
  ul.soclinks {
    font-size: 14px;
    letter-spacing: normal;
  }
  /* line 242, /app/app/assets/stylesheets/shared/navigation.scss */
  ul.soclinks:first-child.logout {
    padding-right: 0;
    margin-right: 0;
  }
}
@media screen and (max-width: 960px) {
  /* line 89, /app/app/assets/stylesheets/shared/navigation.scss */
  ul.soclinks {
    display: flex;
    width: 100%;
  }
  /* line 253, /app/app/assets/stylesheets/shared/navigation.scss */
  ul.soclinks li {
    display: inline-block;
    line-height: 1;
    width: 50%;
    padding: 0;
  }
  /* line 259, /app/app/assets/stylesheets/shared/navigation.scss */
  ul.soclinks li:first-child {
    padding: 0;
  }
  /* line 262, /app/app/assets/stylesheets/shared/navigation.scss */
  ul.soclinks li:first-child a:hover {
    background-color: #e4dcce;
  }
  /* line 267, /app/app/assets/stylesheets/shared/navigation.scss */
  ul.soclinks li a, ul.soclinks li:first-child a {
    width: 100%;
    display: block;
    text-align: center;
    font-size: 15px;
    padding: 16px 28px;
    line-height: initial;
  }
}

/* line 280, /app/app/assets/stylesheets/shared/navigation.scss */
ul.soclinks li.fblike {
  padding: 5px 10px 0 10px;
  height: 25px;
}

/* line 285, /app/app/assets/stylesheets/shared/navigation.scss */
ul.soclinks li.downloads {
  float: left;
  display: block;
  padding: 8px 10px 0 10px;
  text-transform: uppercase;
  font-family: "Lato", Helvetica, arial, sans-serif;
  text-decoration: none;
  font-size: 18px;
  color: #f8f3ea;
}

/* line 295, /app/app/assets/stylesheets/shared/navigation.scss */
ul.soclinks li.logout a.kill {
  display: block;
  width: 20px;
  height: 22px;
  padding: 0;
  text-indent: -99999px;
  background: url("/assets/sprite-e006fd7cf60a8c84a22c6360890e4b7688660d5b5d797b44995224267f04e3a3.png") 0px -365px no-repeat;
}

/* line 303, /app/app/assets/stylesheets/shared/navigation.scss */
ul.soclinks li.icon {
  padding: 0;
}

/* line 306, /app/app/assets/stylesheets/shared/navigation.scss */
ul.soclinks li.icon:hover,
ul.soclinks li.icon:focus,
li.icon:focus {
  background: #5a7786;
}

/* line 311, /app/app/assets/stylesheets/shared/navigation.scss */
ul.soclinks li.logout a.kill:hover,
ul.soclinks li.logout a.kill:focus,
li.logout a.kill:active {
  background-position: -20px -365px;
}

/* line 317, /app/app/assets/stylesheets/shared/navigation.scss */
.icon a.fb {
  display: block;
  width: 20px;
  height: 25px;
  padding: 3px 10px 2px;
  background: url("/assets/sprite-e006fd7cf60a8c84a22c6360890e4b7688660d5b5d797b44995224267f04e3a3.png") 12px -142px no-repeat;
}

/* line 324, /app/app/assets/stylesheets/shared/navigation.scss */
.icon a.tw {
  display: block;
  width: 20px;
  height: 25px;
  padding: 3px 10px 2px;
  background: url("/assets/sprite-e006fd7cf60a8c84a22c6360890e4b7688660d5b5d797b44995224267f04e3a3.png") 11px -170px no-repeat;
}

/* line 1, /app/app/assets/stylesheets/shared/pagination.scss */
.pagination, .ais-Pagination-list {
  display: flex;
  align-content: center;
  justify-content: space-around;
  max-width: 500px;
}
/* line 7, /app/app/assets/stylesheets/shared/pagination.scss */
.pagination span, .pagination .ais-Pagination-item, .ais-Pagination-list span, .ais-Pagination-list .ais-Pagination-item {
  font-family: "Lato", Helvetica, arial, sans-serif;
  text-transform: uppercase;
  font-size: 18px;
  display: flex;
  align-content: center;
}
/* line 14, /app/app/assets/stylesheets/shared/pagination.scss */
.pagination span.first, .pagination span.last, .pagination .ais-Pagination-item.first, .pagination .ais-Pagination-item.last, .ais-Pagination-list span.first, .ais-Pagination-list span.last, .ais-Pagination-list .ais-Pagination-item.first, .ais-Pagination-list .ais-Pagination-item.last {
  display: none;
}
/* line 19, /app/app/assets/stylesheets/shared/pagination.scss */
.pagination span a, .pagination .ais-Pagination-item a, .ais-Pagination-list span a, .ais-Pagination-list .ais-Pagination-item a {
  display: flex;
  justify-content: center;
  align-self: center;
  color: #262626;
  display: inline-block;
  position: relative;
  padding: 3px;
}
/* line 28, /app/app/assets/stylesheets/shared/pagination.scss */
.pagination span a:hover, .pagination span a:focus, .pagination .ais-Pagination-item a:hover, .pagination .ais-Pagination-item a:focus, .ais-Pagination-list span a:hover, .ais-Pagination-list span a:focus, .ais-Pagination-list .ais-Pagination-item a:hover, .ais-Pagination-list .ais-Pagination-item a:focus {
  color: #99752f;
}
/* line 34, /app/app/assets/stylesheets/shared/pagination.scss */
.pagination span.current, .pagination span.ais-Pagination-item--selected, .pagination .ais-Pagination-item.current, .pagination .ais-Pagination-item.ais-Pagination-item--selected, .ais-Pagination-list span.current, .ais-Pagination-list span.ais-Pagination-item--selected, .ais-Pagination-list .ais-Pagination-item.current, .ais-Pagination-list .ais-Pagination-item.ais-Pagination-item--selected {
  font-size: 24px;
  border-bottom: 3px solid #99752f;
  padding: 3px 6px;
}
/* line 40, /app/app/assets/stylesheets/shared/pagination.scss */
.pagination span.gap, .pagination .ais-Pagination-item.gap, .ais-Pagination-list span.gap, .ais-Pagination-list .ais-Pagination-item.gap {
  display: flex;
  align-self: center;
  padding: 3px;
}
/* line 46, /app/app/assets/stylesheets/shared/pagination.scss */
.pagination span.prev, .pagination span.next, .pagination span.ais-Pagination-item--nextPage, .pagination span.ais-Pagination-item--previousPage, .pagination .ais-Pagination-item.prev, .pagination .ais-Pagination-item.next, .pagination .ais-Pagination-item.ais-Pagination-item--nextPage, .pagination .ais-Pagination-item.ais-Pagination-item--previousPage, .ais-Pagination-list span.prev, .ais-Pagination-list span.next, .ais-Pagination-list span.ais-Pagination-item--nextPage, .ais-Pagination-list span.ais-Pagination-item--previousPage, .ais-Pagination-list .ais-Pagination-item.prev, .ais-Pagination-list .ais-Pagination-item.next, .ais-Pagination-list .ais-Pagination-item.ais-Pagination-item--nextPage, .ais-Pagination-list .ais-Pagination-item.ais-Pagination-item--previousPage {
  font-size: 14px;
  display: flex;
  align-items: center;
}
/* line 54, /app/app/assets/stylesheets/shared/pagination.scss */
.pagination span.prev .arrow-right,
.pagination span.prev .arrow-left, .pagination span.next .arrow-right,
.pagination span.next .arrow-left, .pagination span.ais-Pagination-item--nextPage .arrow-right,
.pagination span.ais-Pagination-item--nextPage .arrow-left, .pagination span.ais-Pagination-item--previousPage .arrow-right,
.pagination span.ais-Pagination-item--previousPage .arrow-left, .pagination .ais-Pagination-item.prev .arrow-right,
.pagination .ais-Pagination-item.prev .arrow-left, .pagination .ais-Pagination-item.next .arrow-right,
.pagination .ais-Pagination-item.next .arrow-left, .pagination .ais-Pagination-item.ais-Pagination-item--nextPage .arrow-right,
.pagination .ais-Pagination-item.ais-Pagination-item--nextPage .arrow-left, .pagination .ais-Pagination-item.ais-Pagination-item--previousPage .arrow-right,
.pagination .ais-Pagination-item.ais-Pagination-item--previousPage .arrow-left, .ais-Pagination-list span.prev .arrow-right,
.ais-Pagination-list span.prev .arrow-left, .ais-Pagination-list span.next .arrow-right,
.ais-Pagination-list span.next .arrow-left, .ais-Pagination-list span.ais-Pagination-item--nextPage .arrow-right,
.ais-Pagination-list span.ais-Pagination-item--nextPage .arrow-left, .ais-Pagination-list span.ais-Pagination-item--previousPage .arrow-right,
.ais-Pagination-list span.ais-Pagination-item--previousPage .arrow-left, .ais-Pagination-list .ais-Pagination-item.prev .arrow-right,
.ais-Pagination-list .ais-Pagination-item.prev .arrow-left, .ais-Pagination-list .ais-Pagination-item.next .arrow-right,
.ais-Pagination-list .ais-Pagination-item.next .arrow-left, .ais-Pagination-list .ais-Pagination-item.ais-Pagination-item--nextPage .arrow-right,
.ais-Pagination-list .ais-Pagination-item.ais-Pagination-item--nextPage .arrow-left, .ais-Pagination-list .ais-Pagination-item.ais-Pagination-item--previousPage .arrow-right,
.ais-Pagination-list .ais-Pagination-item.ais-Pagination-item--previousPage .arrow-left {
  position: absolute;
  height: 20px;
  top: 50%;
  margin-top: -10px;
}
/* line 61, /app/app/assets/stylesheets/shared/pagination.scss */
.pagination span.prev .arrow-right a,
.pagination span.prev .arrow-left a, .pagination span.next .arrow-right a,
.pagination span.next .arrow-left a, .pagination span.ais-Pagination-item--nextPage .arrow-right a,
.pagination span.ais-Pagination-item--nextPage .arrow-left a, .pagination span.ais-Pagination-item--previousPage .arrow-right a,
.pagination span.ais-Pagination-item--previousPage .arrow-left a, .pagination .ais-Pagination-item.prev .arrow-right a,
.pagination .ais-Pagination-item.prev .arrow-left a, .pagination .ais-Pagination-item.next .arrow-right a,
.pagination .ais-Pagination-item.next .arrow-left a, .pagination .ais-Pagination-item.ais-Pagination-item--nextPage .arrow-right a,
.pagination .ais-Pagination-item.ais-Pagination-item--nextPage .arrow-left a, .pagination .ais-Pagination-item.ais-Pagination-item--previousPage .arrow-right a,
.pagination .ais-Pagination-item.ais-Pagination-item--previousPage .arrow-left a, .ais-Pagination-list span.prev .arrow-right a,
.ais-Pagination-list span.prev .arrow-left a, .ais-Pagination-list span.next .arrow-right a,
.ais-Pagination-list span.next .arrow-left a, .ais-Pagination-list span.ais-Pagination-item--nextPage .arrow-right a,
.ais-Pagination-list span.ais-Pagination-item--nextPage .arrow-left a, .ais-Pagination-list span.ais-Pagination-item--previousPage .arrow-right a,
.ais-Pagination-list span.ais-Pagination-item--previousPage .arrow-left a, .ais-Pagination-list .ais-Pagination-item.prev .arrow-right a,
.ais-Pagination-list .ais-Pagination-item.prev .arrow-left a, .ais-Pagination-list .ais-Pagination-item.next .arrow-right a,
.ais-Pagination-list .ais-Pagination-item.next .arrow-left a, .ais-Pagination-list .ais-Pagination-item.ais-Pagination-item--nextPage .arrow-right a,
.ais-Pagination-list .ais-Pagination-item.ais-Pagination-item--nextPage .arrow-left a, .ais-Pagination-list .ais-Pagination-item.ais-Pagination-item--previousPage .arrow-right a,
.ais-Pagination-list .ais-Pagination-item.ais-Pagination-item--previousPage .arrow-left a {
  display: flex;
  align-items: center;
  align-content: center;
}
/* line 67, /app/app/assets/stylesheets/shared/pagination.scss */
.pagination span.prev .arrow-right svg,
.pagination span.prev .arrow-left svg, .pagination span.next .arrow-right svg,
.pagination span.next .arrow-left svg, .pagination span.ais-Pagination-item--nextPage .arrow-right svg,
.pagination span.ais-Pagination-item--nextPage .arrow-left svg, .pagination span.ais-Pagination-item--previousPage .arrow-right svg,
.pagination span.ais-Pagination-item--previousPage .arrow-left svg, .pagination .ais-Pagination-item.prev .arrow-right svg,
.pagination .ais-Pagination-item.prev .arrow-left svg, .pagination .ais-Pagination-item.next .arrow-right svg,
.pagination .ais-Pagination-item.next .arrow-left svg, .pagination .ais-Pagination-item.ais-Pagination-item--nextPage .arrow-right svg,
.pagination .ais-Pagination-item.ais-Pagination-item--nextPage .arrow-left svg, .pagination .ais-Pagination-item.ais-Pagination-item--previousPage .arrow-right svg,
.pagination .ais-Pagination-item.ais-Pagination-item--previousPage .arrow-left svg, .ais-Pagination-list span.prev .arrow-right svg,
.ais-Pagination-list span.prev .arrow-left svg, .ais-Pagination-list span.next .arrow-right svg,
.ais-Pagination-list span.next .arrow-left svg, .ais-Pagination-list span.ais-Pagination-item--nextPage .arrow-right svg,
.ais-Pagination-list span.ais-Pagination-item--nextPage .arrow-left svg, .ais-Pagination-list span.ais-Pagination-item--previousPage .arrow-right svg,
.ais-Pagination-list span.ais-Pagination-item--previousPage .arrow-left svg, .ais-Pagination-list .ais-Pagination-item.prev .arrow-right svg,
.ais-Pagination-list .ais-Pagination-item.prev .arrow-left svg, .ais-Pagination-list .ais-Pagination-item.next .arrow-right svg,
.ais-Pagination-list .ais-Pagination-item.next .arrow-left svg, .ais-Pagination-list .ais-Pagination-item.ais-Pagination-item--nextPage .arrow-right svg,
.ais-Pagination-list .ais-Pagination-item.ais-Pagination-item--nextPage .arrow-left svg, .ais-Pagination-list .ais-Pagination-item.ais-Pagination-item--previousPage .arrow-right svg,
.ais-Pagination-list .ais-Pagination-item.ais-Pagination-item--previousPage .arrow-left svg {
  fill: #99752f;
  width: 12px;
  height: 20px;
}
/* line 76, /app/app/assets/stylesheets/shared/pagination.scss */
.pagination span.prev a, .pagination span.ais-Pagination-item--previousPage a, .pagination .ais-Pagination-item.prev a, .pagination .ais-Pagination-item.ais-Pagination-item--previousPage a, .ais-Pagination-list span.prev a, .ais-Pagination-list span.ais-Pagination-item--previousPage a, .ais-Pagination-list .ais-Pagination-item.prev a, .ais-Pagination-list .ais-Pagination-item.ais-Pagination-item--previousPage a {
  padding-left: 24px;
}
/* line 80, /app/app/assets/stylesheets/shared/pagination.scss */
.pagination span.prev .arrow-left, .pagination span.ais-Pagination-item--previousPage .arrow-left, .pagination .ais-Pagination-item.prev .arrow-left, .pagination .ais-Pagination-item.ais-Pagination-item--previousPage .arrow-left, .ais-Pagination-list span.prev .arrow-left, .ais-Pagination-list span.ais-Pagination-item--previousPage .arrow-left, .ais-Pagination-list .ais-Pagination-item.prev .arrow-left, .ais-Pagination-list .ais-Pagination-item.ais-Pagination-item--previousPage .arrow-left {
  left: 0;
}
/* line 83, /app/app/assets/stylesheets/shared/pagination.scss */
.pagination span.prev .arrow-left svg, .pagination span.ais-Pagination-item--previousPage .arrow-left svg, .pagination .ais-Pagination-item.prev .arrow-left svg, .pagination .ais-Pagination-item.ais-Pagination-item--previousPage .arrow-left svg, .ais-Pagination-list span.prev .arrow-left svg, .ais-Pagination-list span.ais-Pagination-item--previousPage .arrow-left svg, .ais-Pagination-list .ais-Pagination-item.prev .arrow-left svg, .ais-Pagination-list .ais-Pagination-item.ais-Pagination-item--previousPage .arrow-left svg {
  transform: rotate(-180deg);
}
/* line 90, /app/app/assets/stylesheets/shared/pagination.scss */
.pagination span.next a, .pagination span.ais-Pagination-item--nextPage a, .pagination .ais-Pagination-item.next a, .pagination .ais-Pagination-item.ais-Pagination-item--nextPage a, .ais-Pagination-list span.next a, .ais-Pagination-list span.ais-Pagination-item--nextPage a, .ais-Pagination-list .ais-Pagination-item.next a, .ais-Pagination-list .ais-Pagination-item.ais-Pagination-item--nextPage a {
  padding-right: 24px;
}
/* line 94, /app/app/assets/stylesheets/shared/pagination.scss */
.pagination span.next .arrow-right, .pagination span.ais-Pagination-item--nextPage .arrow-right, .pagination .ais-Pagination-item.next .arrow-right, .pagination .ais-Pagination-item.ais-Pagination-item--nextPage .arrow-right, .ais-Pagination-list span.next .arrow-right, .ais-Pagination-list span.ais-Pagination-item--nextPage .arrow-right, .ais-Pagination-list .ais-Pagination-item.next .arrow-right, .ais-Pagination-list .ais-Pagination-item.ais-Pagination-item--nextPage .arrow-right {
  right: 0;
}
/* line 101, /app/app/assets/stylesheets/shared/pagination.scss */
.pagination .ais-Pagination-item--disabled, .ais-Pagination-list .ais-Pagination-item--disabled {
  display: none !important;
}

/* line 107, /app/app/assets/stylesheets/shared/pagination.scss */
.admin-paginate .pagination span {
  display: block;
}

/* line 3, /app/app/assets/stylesheets/shared/people.scss */
.people-wrapper .series-title h3 {
  font-size: 48px;
}
/* line 7, /app/app/assets/stylesheets/shared/people.scss */
.people-wrapper .series-title h4 {
  font-size: 30px;
}
/* line 14, /app/app/assets/stylesheets/shared/people.scss */
.people-wrapper .people-content h3 {
  display: none;
}
@media screen and (max-width: 680px) {
  /* line 12, /app/app/assets/stylesheets/shared/people.scss */
  .people-wrapper .people-content {
    column-count: 1;
    column-gap: unset;
  }
  /* line 22, /app/app/assets/stylesheets/shared/people.scss */
  .people-wrapper .people-content p {
    max-width: 500px;
  }
}

/* line 29, /app/app/assets/stylesheets/shared/people.scss */
.people-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
/* line 34, /app/app/assets/stylesheets/shared/people.scss */
.people-list .person {
  font-family: "Lato", Helvetica, arial, sans-serif;
  font-size: 16px;
  line-height: 1.3;
  width: 200px;
  padding: 0 10px 32px;
  background-color: #f8f3ea;
}
/* line 42, /app/app/assets/stylesheets/shared/people.scss */
.people-list .person img {
  display: block;
  width: 100%;
  transition: all 0.3s ease;
  opacity: 0.75;
}
/* line 49, /app/app/assets/stylesheets/shared/people.scss */
.people-list .person a.person-image {
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 12px;
}
/* line 55, /app/app/assets/stylesheets/shared/people.scss */
.people-list .person a.person-image img {
  transition: all 0.75s ease;
  transform: scale(1.001);
}
/* line 60, /app/app/assets/stylesheets/shared/people.scss */
.people-list .person a.person-image span {
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  visibility: hidden;
  padding: 6px 0px;
  transition: opacity 0.3s ease-in-out;
  transform: translate(-50%, -50%);
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0;
  color: #ffffff;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}
/* line 80, /app/app/assets/stylesheets/shared/people.scss */
.people-list .person a.person-image:hover {
  background-color: #262626;
}
/* line 83, /app/app/assets/stylesheets/shared/people.scss */
.people-list .person a.person-image:hover img {
  transform: scale(1.1);
  opacity: 0.8;
}
/* line 88, /app/app/assets/stylesheets/shared/people.scss */
.people-list .person a.person-image:hover span {
  visibility: visible;
  opacity: 1;
}
/* line 95, /app/app/assets/stylesheets/shared/people.scss */
.people-list .person .person-detail {
  font-family: "Lora", Times, serif;
  font-size: 15px;
}
/* line 100, /app/app/assets/stylesheets/shared/people.scss */
.people-list .person h3 {
  font-family: "Lato", Helvetica, arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  text-transform: uppercase;
}
/* line 108, /app/app/assets/stylesheets/shared/people.scss */
.people-list .person p {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* line 2, /app/app/assets/stylesheets/shared/person.scss */
.person-detail .person-heading {
  margin-bottom: 50px;
}
/* line 5, /app/app/assets/stylesheets/shared/person.scss */
.person-detail .person-heading h1 {
  font-size: 50px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  font-family: "Lato", Helvetica, arial, sans-serif;
}
@media screen and (max-width: 480px) {
  /* line 15, /app/app/assets/stylesheets/shared/person.scss */
  .person-detail .person-heading h1 {
    font-size: 40px;
  }
}
/* line 21, /app/app/assets/stylesheets/shared/person.scss */
.person-detail .person-detail-inner {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 960px;
}
/* line 27, /app/app/assets/stylesheets/shared/person.scss */
.person-detail .person-detail-inner .overview {
  box-sizing: border-box;
  width: 55%;
  padding-right: 50px;
}
/* line 33, /app/app/assets/stylesheets/shared/person.scss */
.person-detail .person-detail-inner .expandable-person {
  position: relative;
  padding-bottom: 40px;
  margin-bottom: 50px;
  overflow: hidden;
  height: 480px;
}
/* line 40, /app/app/assets/stylesheets/shared/person.scss */
.person-detail .person-detail-inner .expandable-person.no-expand {
  height: auto;
  padding-bottom: 0;
}
/* line 44, /app/app/assets/stylesheets/shared/person.scss */
.person-detail .person-detail-inner .expandable-person.no-expand::after {
  display: none;
}
/* line 49, /app/app/assets/stylesheets/shared/person.scss */
.person-detail .person-detail-inner .expandable-person .person-description {
  padding-bottom: 40px;
  font-family: "Lato", Helvetica, arial, sans-serif;
  font-size: 16px;
}
/* line 55, /app/app/assets/stylesheets/shared/person.scss */
.person-detail .person-detail-inner .expandable-person br {
  display: none;
}
/* line 59, /app/app/assets/stylesheets/shared/person.scss */
.person-detail .person-detail-inner .expandable-person p {
  max-width: 400px;
}
/* line 62, /app/app/assets/stylesheets/shared/person.scss */
.person-detail .person-detail-inner .expandable-person p:empty {
  display: none;
}
/* line 67, /app/app/assets/stylesheets/shared/person.scss */
.person-detail .person-detail-inner .expandable-person ul li {
  font-size: inherit;
  font-family: inherit;
  max-width: 450px;
}
/* line 73, /app/app/assets/stylesheets/shared/person.scss */
.person-detail .person-detail-inner .expandable-person::after {
  content: '';
  position: absolute;
  bottom: 75px;
  right: 0;
  left: 0;
  height: 32px;
  background: -moz-linear-gradient(top, rgba(248, 243, 234, 0) 0%, rgba(248, 243, 234, 0.75) 32%, rgba(248, 243, 234, 0.9) 95%);
  background: -webkit-linear-gradient(top, rgba(248, 243, 234, 0) 0%, rgba(248, 243, 234, 0.75) 32%, rgba(248, 243, 234, 0.9) 95%);
  background: linear-gradient(to bottom, rgba(248, 243, 234, 0) 0%, rgba(248, 243, 234, 0.75) 32%, rgba(248, 243, 234, 0.9) 95%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00f8f3ea', endColorstr='#f8f3ea',GradientType=0 );
  z-index: 1;
}
/* line 88, /app/app/assets/stylesheets/shared/person.scss */
.person-detail .person-detail-inner button.read-more {
  outline: none;
  border: none;
  background-color: #f8f3ea;
  position: absolute;
  height: 80px;
  bottom: 0px;
  left: 0;
  padding: 0;
  width: 100%;
  cursor: pointer;
  z-index: 3;
  padding-top: 32px;
}
/* line 102, /app/app/assets/stylesheets/shared/person.scss */
.person-detail .person-detail-inner button.read-more span {
  position: absolute;
  display: block;
  width: 100%;
  background-color: #f8f3ea;
  border-bottom: 1px solid #d4c0a1;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  line-height: 26px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Lato", Helvetica, arial, sans-serif;
  z-index: 1;
}
/* line 119, /app/app/assets/stylesheets/shared/person.scss */
.person-detail .person-detail-inner button.read-more::before {
  content: '';
  border-top: 45px solid #d4c0a1;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  position: absolute;
  top: 32px;
  left: 50%;
  margin-left: -50px;
}
/* line 131, /app/app/assets/stylesheets/shared/person.scss */
.person-detail .person-detail-inner .bigpic {
  width: 45%;
}
/* line 134, /app/app/assets/stylesheets/shared/person.scss */
.person-detail .person-detail-inner .bigpic img {
  display: block;
  width: 100%;
  margin-bottom: 32px;
}
/* line 140, /app/app/assets/stylesheets/shared/person.scss */
.person-detail .person-detail-inner .bigpic .links {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
}
/* line 146, /app/app/assets/stylesheets/shared/person.scss */
.person-detail .person-detail-inner .bigpic .links li {
  width: 32px;
  height: 32px;
  margin-right: 20px;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
}
/* line 155, /app/app/assets/stylesheets/shared/person.scss */
.person-detail .person-detail-inner .bigpic .links li:last-child {
  margin-right: 0;
}
/* line 159, /app/app/assets/stylesheets/shared/person.scss */
.person-detail .person-detail-inner .bigpic .links li a {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
}
/* line 166, /app/app/assets/stylesheets/shared/person.scss */
.person-detail .person-detail-inner .bigpic .links li a svg {
  fill: #8c8c85;
  width: 24px;
  height: 24px;
  transition: fill 0.3s ease;
}
/* line 172, /app/app/assets/stylesheets/shared/person.scss */
.person-detail .person-detail-inner .bigpic .links li a svg.icon-globe {
  width: 30px;
  height: 30px;
}
/* line 179, /app/app/assets/stylesheets/shared/person.scss */
.person-detail .person-detail-inner .bigpic .links li a:hover svg {
  fill: #262626;
}
@media screen and (max-width: 720px) {
  /* line 189, /app/app/assets/stylesheets/shared/person.scss */
  .person-detail .person-detail-inner .overview,
  .person-detail .person-detail-inner .bigpic {
    width: 100%;
  }
  /* line 194, /app/app/assets/stylesheets/shared/person.scss */
  .person-detail .person-detail-inner .overview {
    padding-right: 0;
    margin-bottom: 50px;
  }
  /* line 198, /app/app/assets/stylesheets/shared/person.scss */
  .person-detail .person-detail-inner .overview p {
    margin-right: auto;
    margin-left: auto;
  }
  /* line 205, /app/app/assets/stylesheets/shared/person.scss */
  .person-detail .person-detail-inner .bigpic img {
    margin-right: auto;
    margin-left: auto;
    width: auto;
    max-width: 100%;
  }
}

/* line 216, /app/app/assets/stylesheets/shared/person.scss */
.person-videos-row {
  display: flex;
  min-height: 360px;
  position: relative;
  z-index: 4;
}
/* line 222, /app/app/assets/stylesheets/shared/person.scss */
.person-videos-row .person-videos-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: calc(100% - 400px);
  padding: 60px;
  background-color: #e4dcce;
}
/* line 230, /app/app/assets/stylesheets/shared/person.scss */
.person-videos-row .person-videos-list .vid-block {
  width: calc(33.3333% - 12px);
  margin: 6px;
}
/* line 234, /app/app/assets/stylesheets/shared/person.scss */
.person-videos-row .person-videos-list .vid-block::after {
  display: none;
}
@media screen and (max-width: 1300px) {
  /* line 241, /app/app/assets/stylesheets/shared/person.scss */
  .person-videos-row .person-videos-list {
    padding: 40px;
  }
}
@media screen and (max-width: 1160px) {
  /* line 247, /app/app/assets/stylesheets/shared/person.scss */
  .person-videos-row .person-videos-list {
    padding: 40px;
  }
  /* line 250, /app/app/assets/stylesheets/shared/person.scss */
  .person-videos-row .person-videos-list .vid-block {
    width: calc(50% - 12px);
  }
}
@media screen and (max-width: 1024px) {
  /* line 216, /app/app/assets/stylesheets/shared/person.scss */
  .person-videos-row {
    flex-wrap: wrap;
  }
  /* line 259, /app/app/assets/stylesheets/shared/person.scss */
  .person-videos-row .big-see-all {
    width: 100%;
  }
  /* line 262, /app/app/assets/stylesheets/shared/person.scss */
  .person-videos-row .big-see-all h3, .person-videos-row .big-see-all a {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }
  /* line 271, /app/app/assets/stylesheets/shared/person.scss */
  .person-videos-row .big-see-all a div {
    width: 100%;
    max-width: none;
  }
  /* line 277, /app/app/assets/stylesheets/shared/person.scss */
  .person-videos-row .big-see-all h3 {
    padding: 40px;
  }
  /* line 282, /app/app/assets/stylesheets/shared/person.scss */
  .person-videos-row .person-videos-list {
    padding: 40px;
    width: 100%;
  }
  /* line 286, /app/app/assets/stylesheets/shared/person.scss */
  .person-videos-row .person-videos-list .vid-block {
    width: calc(33.3333% - 12px);
  }
}
@media screen and (max-width: 640px) {
  /* line 294, /app/app/assets/stylesheets/shared/person.scss */
  .person-videos-row .person-videos-list .vid-block {
    width: calc(50% - 12px);
  }
}
@media screen and (max-width: 420px) {
  /* line 301, /app/app/assets/stylesheets/shared/person.scss */
  .person-videos-row .person-videos-list {
    padding: 20px;
  }
  /* line 304, /app/app/assets/stylesheets/shared/person.scss */
  .person-videos-row .person-videos-list .vid-block {
    margin: 0 0 12px;
    width: 100%;
  }
  /* line 308, /app/app/assets/stylesheets/shared/person.scss */
  .person-videos-row .person-videos-list .vid-block:last-child {
    margin-bottom: 0;
  }
}

/* line 316, /app/app/assets/stylesheets/shared/person.scss */
.books {
  display: none;
  /* hides the books until fixed */
}
/* line 320, /app/app/assets/stylesheets/shared/person.scss */
.books h4 {
  background-color: transparent;
  text-transform: uppercase;
  font-family: "Lato", Helvetica, arial, sans-serif;
  letter-spacing: 2px;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 50px;
}
/* line 329, /app/app/assets/stylesheets/shared/person.scss */
.books h4 span {
  padding-top: 7px;
  letter-spacing: 1px;
  font-size: 16px;
  font-family: "Times New Roman", Times, serif;
  color: #99752f;
  font-style: italic;
  display: block;
}
/* line 340, /app/app/assets/stylesheets/shared/person.scss */
.books ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 768px;
}
/* line 346, /app/app/assets/stylesheets/shared/person.scss */
.books ul li {
  margin-right: 32px;
  margin-bottom: 50px;
}
/* line 350, /app/app/assets/stylesheets/shared/person.scss */
.books ul li a {
  display: block;
}
/* line 353, /app/app/assets/stylesheets/shared/person.scss */
.books ul li a img {
  display: block;
  height: 220px;
}
/* line 358, /app/app/assets/stylesheets/shared/person.scss */
.books ul li a:hover {
  transform: scale(1.1);
}
@media screen and (max-width: 800px) {
  /* line 365, /app/app/assets/stylesheets/shared/person.scss */
  .books ul li {
    margin-right: 20px;
    width: calc(25% - 20px);
  }
  /* line 370, /app/app/assets/stylesheets/shared/person.scss */
  .books ul li a img {
    height: auto;
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  /* line 379, /app/app/assets/stylesheets/shared/person.scss */
  .books ul li {
    width: calc(50% - 20px);
  }
}

/* line 1, /app/app/assets/stylesheets/shared/plan_columns.scss */
.plan-columns {
  font-family: "Lato", Helvetica, arial, sans-serif;
}
/* line 4, /app/app/assets/stylesheets/shared/plan_columns.scss */
.plan-columns .the-plans {
  display: flex;
  justify-content: space-evenly;
}
/* line 8, /app/app/assets/stylesheets/shared/plan_columns.scss */
.plan-columns .the-plans .plan-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px 60px;
}
/* line 15, /app/app/assets/stylesheets/shared/plan_columns.scss */
.plan-columns .the-plans .plan-wrap .content-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* line 22, /app/app/assets/stylesheets/shared/plan_columns.scss */
.plan-columns .the-plans .button {
  font-size: 16px;
}
/* line 27, /app/app/assets/stylesheets/shared/plan_columns.scss */
.plan-columns h3, .plan-columns p {
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
/* line 34, /app/app/assets/stylesheets/shared/plan_columns.scss */
.plan-columns h3 {
  font-weight: 600;
  margin-bottom: 16px;
  font-size: 30px;
  text-transform: uppercase;
}
/* line 41, /app/app/assets/stylesheets/shared/plan_columns.scss */
.plan-columns p {
  line-height: 1.4;
  font-size: 16px;
  font-family: "Lora", Times, serif;
  margin-bottom: 30px;
}
@media screen and (min-width: 600px) {
  /* line 41, /app/app/assets/stylesheets/shared/plan_columns.scss */
  .plan-columns p {
    margin-bottom: 40px;
  }
}
/* line 52, /app/app/assets/stylesheets/shared/plan_columns.scss */
.plan-columns h5 {
  margin-bottom: 20px;
  font-weight: 600;
  color: #99762a;
}
/* line 58, /app/app/assets/stylesheets/shared/plan_columns.scss */
.plan-columns h5,
.plan-columns .content-wrap > span span {
  letter-spacing: 1px;
  font-size: 14px;
  text-transform: uppercase;
}
/* line 65, /app/app/assets/stylesheets/shared/plan_columns.scss */
.plan-columns .content-wrap > span {
  display: inline-block;
  position: relative;
  margin-bottom: 24px;
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
}
/* line 73, /app/app/assets/stylesheets/shared/plan_columns.scss */
.plan-columns .content-wrap > span::before {
  position: absolute;
  top: 0em;
  left: -0.7em;
  font-size: 32px;
  content: '$';
}
/* line 82, /app/app/assets/stylesheets/shared/plan_columns.scss */
.plan-columns ul {
  margin: 0 0 32px 16px;
  width: 100%;
  max-width: 480px;
  padding: 0;
  list-style: none;
}
/* line 89, /app/app/assets/stylesheets/shared/plan_columns.scss */
.plan-columns ul li {
  position: relative;
  margin: 0 0 16px 0;
  padding: 0 0 0 16px;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
}
/* line 97, /app/app/assets/stylesheets/shared/plan_columns.scss */
.plan-columns ul li:last-child {
  margin-bottom: 0;
}
/* line 101, /app/app/assets/stylesheets/shared/plan_columns.scss */
.plan-columns ul li::before {
  position: absolute;
  top: 12px;
  left: 0;
  transform: translateY(-50%);
  width: 9px;
  height: 4px;
  background-color: #99762a;
  content: '';
}
@media screen and (max-width: 820px) {
  /* line 114, /app/app/assets/stylesheets/shared/plan_columns.scss */
  .plan-columns .the-plans {
    flex-direction: column;
  }
  /* line 118, /app/app/assets/stylesheets/shared/plan_columns.scss */
  .plan-columns h5 {
    margin-bottom: 12px;
  }
  /* line 123, /app/app/assets/stylesheets/shared/plan_columns.scss */
  .plan-columns ul li {
    padding-left: 0;
    text-align: center;
    margin-bottom: 8px;
  }
  /* line 128, /app/app/assets/stylesheets/shared/plan_columns.scss */
  .plan-columns ul li::before {
    display: none;
  }
}

/* line 1, /app/app/assets/stylesheets/shared/plan_columns_compact.scss */
.plan-columns-compact {
  max-width: 960px;
}
/* line 4, /app/app/assets/stylesheets/shared/plan_columns_compact.scss */
.plan-columns-compact p {
  font-size: 20px;
  margin-bottom: 40px;
}
/* line 10, /app/app/assets/stylesheets/shared/plan_columns_compact.scss */
.plan-columns-compact .the-plans .plan-wrap {
  border: 2px solid #99752f;
  max-width: 224px;
  position: relative;
  padding: 20px;
}
/* line 16, /app/app/assets/stylesheets/shared/plan_columns_compact.scss */
.plan-columns-compact .the-plans .plan-wrap .content-wrap > span {
  font-size: 60px;
}
/* line 20, /app/app/assets/stylesheets/shared/plan_columns_compact.scss */
.plan-columns-compact .the-plans .plan-wrap h5 {
  color: #262626;
  text-align: center;
  line-height: 1.7;
}
/* line 26, /app/app/assets/stylesheets/shared/plan_columns_compact.scss */
.plan-columns-compact .the-plans .plan-wrap a.button {
  position: absolute;
  bottom: -21px;
  text-align: center;
  width: 80%;
}
@media screen and (max-width: 820px) {
  /* line 10, /app/app/assets/stylesheets/shared/plan_columns_compact.scss */
  .plan-columns-compact .the-plans .plan-wrap {
    margin: 0 auto 60px;
  }
}

/* line 1, /app/app/assets/stylesheets/shared/plan_purchase_form.scss */
.plan-purchase-form {
  padding-top: 50px;
  margin-bottom: 200px;
  /* Not signed in */
  /* Has name and email */
  /* Has email but no name */
}
@media screen and (max-width: 767px) {
  /* line 1, /app/app/assets/stylesheets/shared/plan_purchase_form.scss */
  .plan-purchase-form {
    margin-bottom: 100px;
  }
}
/* line 9, /app/app/assets/stylesheets/shared/plan_purchase_form.scss */
.plan-purchase-form .plan-form-top {
  display: flex;
  max-width: 700px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}
/* line 16, /app/app/assets/stylesheets/shared/plan_purchase_form.scss */
.plan-purchase-form .plan-form-top .plan-form-title {
  width: calc(100% - 200px);
}
/* line 20, /app/app/assets/stylesheets/shared/plan_purchase_form.scss */
.plan-purchase-form .plan-form-top h3 {
  color: #057D7F;
  font-size: 18px;
  font-weight: 600;
}
/* line 26, /app/app/assets/stylesheets/shared/plan_purchase_form.scss */
.plan-purchase-form .plan-form-top h4 {
  font-weight: 600;
  font-size: 26px;
}
@media screen and (max-width: 680px) {
  /* line 9, /app/app/assets/stylesheets/shared/plan_purchase_form.scss */
  .plan-purchase-form .plan-form-top {
    flex-wrap: wrap;
  }
  /* line 34, /app/app/assets/stylesheets/shared/plan_purchase_form.scss */
  .plan-purchase-form .plan-form-top .plan-form-title {
    width: 100%;
    margin-bottom: 16px;
  }
}
/* line 41, /app/app/assets/stylesheets/shared/plan_purchase_form.scss */
.plan-purchase-form .form-field-group {
  margin-bottom: 32px;
}
/* line 44, /app/app/assets/stylesheets/shared/plan_purchase_form.scss */
.plan-purchase-form .form-field-group:last-of-type {
  margin-bottom: 16px;
}
/* line 48, /app/app/assets/stylesheets/shared/plan_purchase_form.scss */
.plan-purchase-form .form-field-group h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 14px;
}
/* line 55, /app/app/assets/stylesheets/shared/plan_purchase_form.scss */
.plan-purchase-form .form-field-group:first-of-type h3 {
  margin-bottom: 0;
}
/* line 60, /app/app/assets/stylesheets/shared/plan_purchase_form.scss */
.plan-purchase-form .form-field-group .field {
  max-width: 420px;
}
/* line 63, /app/app/assets/stylesheets/shared/plan_purchase_form.scss */
.plan-purchase-form .form-field-group .field input {
  border: 1px solid #99762a;
  max-width: 320px;
}
/* line 67, /app/app/assets/stylesheets/shared/plan_purchase_form.scss */
.plan-purchase-form .form-field-group .field input:focus {
  background-color: #ffffff;
}
/* line 71, /app/app/assets/stylesheets/shared/plan_purchase_form.scss */
.plan-purchase-form .form-field-group .field input:disabled {
  background-color: #ebe6de;
  border: 1px solid #ebe6de;
}
/* line 77, /app/app/assets/stylesheets/shared/plan_purchase_form.scss */
.plan-purchase-form .form-field-group .field.checkbox-field {
  margin-top: 16px;
  margin-bottom: 32px;
}
/* line 81, /app/app/assets/stylesheets/shared/plan_purchase_form.scss */
.plan-purchase-form .form-field-group .field.checkbox-field label {
  display: flex;
  padding-left: 0;
  margin-bottom: 16px;
}
/* line 86, /app/app/assets/stylesheets/shared/plan_purchase_form.scss */
.plan-purchase-form .form-field-group .field.checkbox-field label input {
  margin-right: 12px;
  width: 24px;
  height: 24px;
}
/* line 95, /app/app/assets/stylesheets/shared/plan_purchase_form.scss */
.plan-purchase-form .form-field-group .selectbox {
  width: 100%;
  max-width: 128px;
  padding-right: 16px;
}
/* line 100, /app/app/assets/stylesheets/shared/plan_purchase_form.scss */
.plan-purchase-form .form-field-group .selectbox select {
  background-color: #f8f3ea;
  height: 40px;
  width: 100%;
  line-height: 40px;
  outline: none;
  border: 1px solid #99762a;
  font-size: 18px;
}
/* line 109, /app/app/assets/stylesheets/shared/plan_purchase_form.scss */
.plan-purchase-form .form-field-group .selectbox select:focus {
  background-color: #ffffff;
}
/* line 113, /app/app/assets/stylesheets/shared/plan_purchase_form.scss */
.plan-purchase-form .form-field-group .selectbox select:disabled {
  background-color: #ebe6de;
  border: 1px solid #ebe6de;
}
/* line 119, /app/app/assets/stylesheets/shared/plan_purchase_form.scss */
.plan-purchase-form .form-field-group .selectbox input:disabled {
  background-color: #ebe6de;
  border: 1px solid #ebe6de;
}
/* line 125, /app/app/assets/stylesheets/shared/plan_purchase_form.scss */
.plan-purchase-form .form-field-group .double-field {
  display: flex;
  margin-bottom: 16px;
}
/* line 129, /app/app/assets/stylesheets/shared/plan_purchase_form.scss */
.plan-purchase-form .form-field-group .double-field .selectbox {
  width: 50%;
}
/* line 135, /app/app/assets/stylesheets/shared/plan_purchase_form.scss */
.plan-purchase-form .form-field-group .button.solid-button {
  height: 50px;
  line-height: 50px;
  width: 100%;
  max-width: 240px;
}
/* line 143, /app/app/assets/stylesheets/shared/plan_purchase_form.scss */
.plan-purchase-form .disclaim {
  font-size: 14px;
  font-family: "Lato", Helvetica, arial, sans-serif;
}
/* line 147, /app/app/assets/stylesheets/shared/plan_purchase_form.scss */
.plan-purchase-form .disclaim a {
  color: #5a7786;
  border-bottom: 1px solid #5a7786;
}
/* line 151, /app/app/assets/stylesheets/shared/plan_purchase_form.scss */
.plan-purchase-form .disclaim a:hover {
  border-bottom: 1px solid transparent;
}
/* line 158, /app/app/assets/stylesheets/shared/plan_purchase_form.scss */
.plan-purchase-form .not-signed-in {
  margin-bottom: 32px;
}
/* line 161, /app/app/assets/stylesheets/shared/plan_purchase_form.scss */
.plan-purchase-form .not-signed-in span {
  font-size: 12px;
  font-weight: 300;
  text-transform: uppercase;
  font-family: "Lato", Helvetica, arial, sans-serif;
}
/* line 167, /app/app/assets/stylesheets/shared/plan_purchase_form.scss */
.plan-purchase-form .not-signed-in span a {
  font-weight: 600;
  padding-left: 5px;
  display: inline-block;
}
/* line 176, /app/app/assets/stylesheets/shared/plan_purchase_form.scss */
.plan-purchase-form .has-name-email {
  margin-top: 20px;
  margin-bottom: 32px;
  max-width: 320px;
}
/* line 181, /app/app/assets/stylesheets/shared/plan_purchase_form.scss */
.plan-purchase-form .has-name-email .field {
  background-color: #ebe6de;
  border-radius: 5px;
  border: 1px solid #f8f3ea;
  padding: 16px;
}
/* line 187, /app/app/assets/stylesheets/shared/plan_purchase_form.scss */
.plan-purchase-form .has-name-email .field label {
  padding-left: 0 !important;
  font-size: 12px;
}
/* line 192, /app/app/assets/stylesheets/shared/plan_purchase_form.scss */
.plan-purchase-form .has-name-email .field span {
  font-family: "Lato", Helvetica, arial, sans-serif;
}
/* line 197, /app/app/assets/stylesheets/shared/plan_purchase_form.scss */
.plan-purchase-form .has-name-email .back-button-wrapper {
  text-align: right;
  padding-top: 6px;
  width: 100%;
  border: 1px solid transparent;
}
/* line 206, /app/app/assets/stylesheets/shared/plan_purchase_form.scss */
.plan-purchase-form .has-email-no-name {
  margin-top: 32px;
}
/* line 209, /app/app/assets/stylesheets/shared/plan_purchase_form.scss */
.plan-purchase-form .has-email-no-name .field {
  max-width: none !important;
}
/* line 212, /app/app/assets/stylesheets/shared/plan_purchase_form.scss */
.plan-purchase-form .has-email-no-name span {
  display: inline-block;
  height: 40px;
  background-color: #ebe6de;
  font-family: "Lato", Helvetica, arial, sans-serif;
  padding: 0 12px;
  line-height: 40px;
  width: 100%;
  max-width: 320px;
  border-radius: 5px;
  margin-bottom: 12px;
}
/* line 225, /app/app/assets/stylesheets/shared/plan_purchase_form.scss */
.plan-purchase-form .has-email-no-name .back-button-wrapper {
  display: inline-block;
  width: auto;
  margin-left: 8px;
  margin-bottom: 12px;
}
@media screen and (max-width: 488px) {
  /* line 233, /app/app/assets/stylesheets/shared/plan_purchase_form.scss */
  .plan-purchase-form .has-email-no-name .span,
  .plan-purchase-form .has-email-no-name .back-button-wrapper {
    display: block;
  }
  /* line 238, /app/app/assets/stylesheets/shared/plan_purchase_form.scss */
  .plan-purchase-form .has-email-no-name span {
    margin-bottom: 8px;
  }
  /* line 242, /app/app/assets/stylesheets/shared/plan_purchase_form.scss */
  .plan-purchase-form .has-email-no-name .back-button-wrapper {
    max-width: 320px;
    margin-left: 0;
    text-align: right;
  }
}

/* line 1, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promotional-row {
  background-color: #e4dcce;
  overflow-x: hidden;
}
/* line 4, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promotional-row .promo-row-inner {
  display: flex;
  align-items: center;
}
/* line 7, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promotional-row .promo-row-inner .promo-img-wrap {
  display: flex;
  position: relative;
  z-index: 90;
  width: 640px;
  min-height: 360px;
}
/* line 13, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promotional-row .promo-row-inner .promo-img-wrap .promo-img {
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center right;
  position: relative;
  top: 0;
  bottom: 0;
  width: 100%;
}
/* line 23, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promotional-row .promo-row-inner .promo-img-wrap .promo-sub-img {
  flex-grow: 0;
  position: absolute;
  right: 0;
  bottom: 0;
  min-height: 150px;
}
/* line 30, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promotional-row .promo-row-inner .promo-img-wrap .promo-sub-img:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(140, 140, 133, 0.35);
  content: '';
}
/* line 39, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promotional-row .promo-row-inner .promo-img-wrap .promo-sub-img img {
  display: block;
  height: auto;
}
/* line 45, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promotional-row .promo-row-inner .promo-content {
  position: relative;
  z-index: 92;
  width: 100%;
  max-width: 400px;
  padding-left: 80px;
}
/* line 51, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promotional-row .promo-row-inner .promo-content h3, .promotional-row .promo-row-inner .promo-content h3 > span, .promotional-row .promo-row-inner .promo-content p, .promotional-row .promo-row-inner .promo-content a {
  font-family: "Times New Roman", Times, serif;
}
/* line 54, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promotional-row .promo-row-inner .promo-content h3, .promotional-row .promo-row-inner .promo-content h3 > span, .promotional-row .promo-row-inner .promo-content a {
  font-style: italic;
}
/* line 55, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promotional-row .promo-row-inner .promo-content h3 > span, .promotional-row .promo-row-inner .promo-content a {
  font-size: 14px;
  color: #99762a;
}
/* line 59, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promotional-row .promo-row-inner .promo-content h3 {
  text-transform: unset;
  margin-bottom: 12px;
}
/* line 63, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promotional-row .promo-row-inner .promo-content h3, .promotional-row .promo-row-inner .promo-content p {
  color: #262626;
}
/* line 66, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promotional-row .promo-row-inner .promo-content h3 > span {
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
}
/* line 73, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promotional-row .promo-row-inner .promo-content h3 {
  font-size: 36px;
  font-weight: 600;
}
/* line 77, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promotional-row .promo-row-inner .promo-content p {
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 1.4;
}
/* line 82, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promotional-row .promo-row-inner .promo-content a {
  position: relative;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
  text-transform: lowercase;
}
/* line 88, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promotional-row .promo-row-inner .promo-content a:after {
  position: absolute;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid #262626;
  right: -1em;
  top: 50%;
  margin-top: -5px;
  content: '';
  transition: transform 200ms ease-in-out;
}
/* line 99, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promotional-row .promo-row-inner .promo-content a:hover:after {
  transform: translateX(4px);
}
@media screen and (max-width: 1200px) {
  /* line 45, /app/app/assets/stylesheets/shared/promo_rows.scss */
  .promotional-row .promo-row-inner .promo-content {
    padding-left: 60px;
  }
}
/* line 110, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promotional-row.promo-wide-image-left-sm-image .promo-row-inner {
  max-width: 1600px;
  padding: 0 20px 0 0;
}
/* line 115, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promotional-row.promo-wide-image-left-sm-image .promo-row-inner .promo-img-wrap .promo-sub-img {
  max-width: 150px;
}
/* line 118, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promotional-row.promo-wide-image-left-sm-image .promo-row-inner .promo-img-wrap .promo-sub-img img {
  width: 100%;
}
/* line 122, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promotional-row.promo-wide-image-left-sm-image .promo-row-inner .promo-content {
  max-width: 470px;
}
/* line 124, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promotional-row.promo-wide-image-left-sm-image .promo-row-inner .promo-content h3 {
  text-transform: uppercase;
}
/* line 132, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promotional-row.promo-image-left-sm-image-text .promo-row-inner {
  padding-left: 0;
}
/* line 134, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promotional-row.promo-image-left-sm-image-text .promo-row-inner .promo-img-wrap {
  width: 520px;
}
/* line 136, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promotional-row.promo-image-left-sm-image-text .promo-row-inner .promo-img-wrap .promo-sub-img {
  max-width: 150px;
}
/* line 139, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promotional-row.promo-image-left-sm-image-text .promo-row-inner .promo-img-wrap .promo-sub-img img {
  width: 100%;
}
/* line 143, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promotional-row.promo-image-left-sm-image-text .promo-row-inner .promo-img-wrap .promo-sub-img span {
  position: absolute;
  color: #ffffff;
}
/* line 146, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promotional-row.promo-image-left-sm-image-text .promo-row-inner .promo-img-wrap .promo-sub-img span:first-child, .promotional-row.promo-image-left-sm-image-text .promo-row-inner .promo-img-wrap .promo-sub-img span:last-child {
  top: -18px;
  left: -18px;
  background-color: #ffffff;
  content: '';
}
/* line 153, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promotional-row.promo-image-left-sm-image-text .promo-row-inner .promo-img-wrap .promo-sub-img span:first-child {
  width: 100%;
  height: 4px;
}
/* line 157, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promotional-row.promo-image-left-sm-image-text .promo-row-inner .promo-img-wrap .promo-sub-img span:last-child {
  width: 4px;
  height: 86%;
}
/* line 163, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promotional-row.promo-image-left-sm-image-text .promo-row-inner .promo-img-wrap .promo-sub-img span.title {
  z-index: 99;
  bottom: 14px;
  left: -72%;
  font-size: 14px;
  font-family: "Lato", Helvetica, arial, sans-serif;
  text-transform: uppercase;
}
/* line 177, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promotional-row.promo-text-over-image .promo-row-inner {
  padding-left: 0;
}
/* line 179, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promotional-row.promo-text-over-image .promo-row-inner .promo-img-wrap {
  padding-top: 60px;
  width: 470px;
  opacity: 0.75;
}
/* line 184, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promotional-row.promo-text-over-image .promo-row-inner .promo-content {
  margin-left: -60px;
  padding-top: 20px;
  padding-left: 0;
}
@media screen and (max-width: 1200px) {
  /* line 193, /app/app/assets/stylesheets/shared/promo_rows.scss */
  .promotional-row.promo-person .promo-row-inner {
    padding-right: 0;
  }
}
/* line 198, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promotional-row.promo-person .promo-row-inner .author-img-wrap {
  display: flex;
  position: relative;
  width: 180px;
  min-width: 180px;
  height: 220px;
  min-height: 150px;
}
/* line 205, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promotional-row.promo-person .promo-row-inner .author-img-wrap .author-border,
.promotional-row.promo-person .promo-row-inner .author-img-wrap .author-img {
  width: inherit;
  min-width: inherit;
  height: inherit;
  min-height: inherit;
}
/* line 212, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promotional-row.promo-person .promo-row-inner .author-img-wrap .author-border {
  position: relative;
  z-index: 20;
  border: solid 4px #057D7F;
}
/* line 217, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promotional-row.promo-person .promo-row-inner .author-img-wrap .author-img {
  position: absolute;
  z-index: 1;
  padding: 0 3px 3px 0;
  opacity: 0.75;
  transform: translate(18px, 18px);
}
/* line 225, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promotional-row.promo-person .promo-row-inner .promo-content {
  flex: 1;
  max-width: unset;
  padding-left: 40px;
  padding-right: 20px;
}
/* line 231, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promotional-row.promo-person .promo-row-inner .promo-content h3 {
  text-transform: uppercase;
  font-size: 32px;
  font-family: "Lato", Helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 400;
}
@media screen and (max-width: 1200px) {
  /* line 225, /app/app/assets/stylesheets/shared/promo_rows.scss */
  .promotional-row.promo-person .promo-row-inner .promo-content {
    flex-shrink: unset;
  }
}
/* line 242, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promotional-row.promo-person .promo-row-inner .promo-img-wrap {
  width: 33%;
  max-width: 370px;
  background-color: #c6b999;
}
/* line 247, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promotional-row.promo-person .promo-row-inner .promo-img-wrap::after {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  transform: translateX(100%);
  width: 50vw;
  background-color: #c6b999;
  content: '';
}
/* line 258, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promotional-row.promo-person .promo-row-inner .promo-img-wrap .promo-sub-img {
  left: 0;
  right: unset;
  width: 100%;
  max-width: 400px;
  min-height: unset;
}
/* line 265, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promotional-row.promo-person .promo-row-inner .promo-img-wrap .promo-sub-img img {
  width: 100%;
  opacity: 0.55;
}
/* line 270, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promotional-row.promo-person .promo-row-inner .promo-img-wrap .promo-sub-img::after {
  display: none;
}
@media screen and (max-width: 1200px) {
  /* line 242, /app/app/assets/stylesheets/shared/promo_rows.scss */
  .promotional-row.promo-person .promo-row-inner .promo-img-wrap {
    width: 100%;
    min-width: unset;
  }
}
/* line 279, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promotional-row.promo-person .promo-row-inner .promo-button {
  position: absolute;
  z-index: 99;
  bottom: 0;
  left: 0;
}
/* line 289, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promotional-row.promo-social .promo-row-inner {
  padding-left: 0;
}
/* line 294, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promotional-row.promo-social .svg-facebook-square .fb-f {
  fill: #ffffff;
}
/* line 295, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promotional-row.promo-social .svg-facebook-square .fb-square {
  fill: #5a7786;
}
/* line 298, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promotional-row.promo-social .promo-img-wrap {
  max-width: 50%;
}
/* line 301, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promotional-row.promo-social .promo-img-wrap .promo-img {
  background-position: center left;
}
/* line 306, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promotional-row.promo-social .svg-wrap {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  max-width: 120px;
}
/* line 313, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promotional-row.promo-social .svg-wrap svg {
  width: 100%;
}
/* line 318, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promotional-row.promo-social .promo-content {
  max-width: 500px;
}
/* line 321, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promotional-row.promo-social .promo-content h3 {
  text-transform: uppercase;
  font-size: 26px;
  font-family: "Lato", Helvetica, arial, sans-serif;
  font-style: normal;
  font-weight: 600;
  margin-bottom: 8px;
}
/* line 330, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promotional-row.promo-social .promo-content > span {
  font-family: "Lato", Helvetica, arial, sans-serif;
  display: inline-block;
  margin-bottom: 32px;
  line-height: 1;
  letter-spacing: 3px;
  font-size: 12px;
  text-transform: uppercase;
  white-space: nowrap;
  margin-bottom: 26px;
}
/* line 340, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promotional-row.promo-social .promo-content > span span {
  letter-spacing: 1px;
}
/* line 343, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promotional-row.promo-social .promo-content p {
  max-width: 320px;
  margin-bottom: 32px;
}
/* line 348, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promotional-row.promo-social .promo-content a {
  text-transform: none;
}
@media screen and (max-width: 860px) {
  /* line 360, /app/app/assets/stylesheets/shared/promo_rows.scss */
  .promotional-row .promo-row-inner, .promotional-row.promo-wide-image-left-sm-image .promo-row-inner, .promotional-row.promo-image-left-sm-image-text .promo-row-inner, .promotional-row.promo-text-over-image .promo-row-inner, .promotional-row.promo-person .promo-row-inner {
    flex-direction: column;
    padding: 0;
  }
  /* line 364, /app/app/assets/stylesheets/shared/promo_rows.scss */
  .promotional-row .promo-row-inner .promo-img-wrap, .promotional-row.promo-wide-image-left-sm-image .promo-row-inner .promo-img-wrap, .promotional-row.promo-image-left-sm-image-text .promo-row-inner .promo-img-wrap, .promotional-row.promo-text-over-image .promo-row-inner .promo-img-wrap, .promotional-row.promo-person .promo-row-inner .promo-img-wrap {
    width: 100%;
    max-width: unset;
    padding: 0;
  }
  /* line 368, /app/app/assets/stylesheets/shared/promo_rows.scss */
  .promotional-row .promo-row-inner .promo-img-wrap .promo-sub-img, .promotional-row.promo-wide-image-left-sm-image .promo-row-inner .promo-img-wrap .promo-sub-img, .promotional-row.promo-image-left-sm-image-text .promo-row-inner .promo-img-wrap .promo-sub-img, .promotional-row.promo-text-over-image .promo-row-inner .promo-img-wrap .promo-sub-img, .promotional-row.promo-person .promo-row-inner .promo-img-wrap .promo-sub-img {
    right: 40px;
    max-width: 480px;
  }
  /* line 374, /app/app/assets/stylesheets/shared/promo_rows.scss */
  .promotional-row .promo-row-inner .promo-content, .promotional-row.promo-wide-image-left-sm-image .promo-row-inner .promo-content, .promotional-row.promo-image-left-sm-image-text .promo-row-inner .promo-content, .promotional-row.promo-text-over-image .promo-row-inner .promo-content, .promotional-row.promo-person .promo-row-inner .promo-content {
    margin: 0;
    width: 100%;
    max-width: 470px;
    padding: 40px;
    text-align: center;
  }
  /* line 381, /app/app/assets/stylesheets/shared/promo_rows.scss */
  .promotional-row .promo-row-inner .promo-content p, .promotional-row.promo-wide-image-left-sm-image .promo-row-inner .promo-content p, .promotional-row.promo-image-left-sm-image-text .promo-row-inner .promo-content p, .promotional-row.promo-text-over-image .promo-row-inner .promo-content p, .promotional-row.promo-person .promo-row-inner .promo-content p {
    margin-left: auto;
    margin-right: auto;
  }
  /* line 386, /app/app/assets/stylesheets/shared/promo_rows.scss */
  .promotional-row .promo-row-inner .promo-button, .promotional-row.promo-wide-image-left-sm-image .promo-row-inner .promo-button, .promotional-row.promo-image-left-sm-image-text .promo-row-inner .promo-button, .promotional-row.promo-text-over-image .promo-row-inner .promo-button, .promotional-row.promo-person .promo-row-inner .promo-button {
    left: unset;
    right: 0;
  }
  /* line 394, /app/app/assets/stylesheets/shared/promo_rows.scss */
  .promotional-row.promo-text-over-image .promo-row-inner .promo-img-wrap {
    max-width: 480px;
  }
  /* line 401, /app/app/assets/stylesheets/shared/promo_rows.scss */
  .promotional-row.promo-person .promo-row-inner .author-img-wrap {
    margin: 40px 0 20px;
  }
  /* line 404, /app/app/assets/stylesheets/shared/promo_rows.scss */
  .promotional-row.promo-person .promo-row-inner .promo-img-wrap {
    min-height: unset;
  }
  /* line 406, /app/app/assets/stylesheets/shared/promo_rows.scss */
  .promotional-row.promo-person .promo-row-inner .promo-img-wrap .promo-sub-img {
    position: relative;
    margin: auto;
    max-width: 400px;
  }
}
@media screen and (max-width: 640px) {
  /* line 423, /app/app/assets/stylesheets/shared/promo_rows.scss */
  .promotional-row .promo-row-inner .promo-img-wrap .promo-sub-img, .promotional-row.promo-wide-image-left-sm-image .promo-row-inner .promo-img-wrap .promo-sub-img, .promotional-row.promo-image-left-sm-image-text .promo-row-inner .promo-img-wrap .promo-sub-img, .promotional-row.promo-text-over-image .promo-row-inner .promo-img-wrap .promo-sub-img, .promotional-row.promo-person .promo-row-inner .promo-img-wrap .promo-sub-img {
    right: 0;
    bottom: 0;
  }
  /* line 428, /app/app/assets/stylesheets/shared/promo_rows.scss */
  .promotional-row .promo-row-inner .promo-content, .promotional-row.promo-wide-image-left-sm-image .promo-row-inner .promo-content, .promotional-row.promo-image-left-sm-image-text .promo-row-inner .promo-content, .promotional-row.promo-text-over-image .promo-row-inner .promo-content, .promotional-row.promo-person .promo-row-inner .promo-content {
    padding: 20px;
  }
  /* line 431, /app/app/assets/stylesheets/shared/promo_rows.scss */
  .promotional-row .promo-row-inner .promo-button, .promotional-row.promo-wide-image-left-sm-image .promo-row-inner .promo-button, .promotional-row.promo-image-left-sm-image-text .promo-row-inner .promo-button, .promotional-row.promo-text-over-image .promo-row-inner .promo-button, .promotional-row.promo-person .promo-row-inner .promo-button {
    right: 0;
    transform: unset;
  }
}

/* line 440, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promo-person-book {
  background-color: transparent;
  overflow-x: visible;
}
/* line 444, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promo-person-book .promo-row-inner {
  background-color: #ffffff;
}
/* line 447, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promo-person-book .promo-row-inner .wrapper {
  display: flex;
  align-items: center;
  padding: 0;
}
/* line 453, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promo-person-book .promo-row-inner .promo-content {
  max-width: 500px;
  padding-left: 50px;
}
/* line 457, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promo-person-book .promo-row-inner .promo-content h3 {
  font-family: "Lato", Helvetica, arial, sans-serif;
  text-transform: uppercase;
  font-style: normal;
  letter-spacing: 2px;
}
/* line 463, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promo-person-book .promo-row-inner .promo-content h3 span {
  font-style: italic;
  letter-spacing: 1px;
}
/* line 469, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promo-person-book .promo-row-inner .promo-content p {
  font-size: 17px;
  line-height: 1.6;
  font-family: "Lora", Times, serif;
}
/* line 477, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promo-person-book .promo-book-inner,
.promo-person-book .promo-book-inner a {
  background-color: #e4dcce;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-left: 32px;
  color: #262626;
}
/* line 486, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promo-person-book .promo-book-inner .promo-book-content,
.promo-person-book .promo-book-inner a .promo-book-content {
  border-left: 3px solid #057D7F;
  padding: 0 32px 0 20px;
  max-width: 412px;
}
/* line 491, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promo-person-book .promo-book-inner .promo-book-content h3,
.promo-person-book .promo-book-inner a .promo-book-content h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
/* line 498, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promo-person-book .promo-book-inner .promo-book-content p,
.promo-person-book .promo-book-inner a .promo-book-content p {
  line-height: 1.4;
}
/* line 501, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promo-person-book .promo-book-inner .promo-book-content p:last-of-type,
.promo-person-book .promo-book-inner a .promo-book-content p:last-of-type {
  margin-bottom: 0;
}
/* line 507, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promo-person-book .promo-book-inner .promo-book-img,
.promo-person-book .promo-book-inner a .promo-book-img {
  transition: all 0.3s ease;
}
/* line 510, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promo-person-book .promo-book-inner .promo-book-img img,
.promo-person-book .promo-book-inner a .promo-book-img img {
  display: block;
  max-width: 168px;
  transition: all 0.3s ease;
}
/* line 520, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promo-person-book .promo-book-inner:hover .promo-book-img img,
.promo-person-book .promo-book-inner a:hover .promo-book-img img {
  transform: scale(1.1);
  box-shadow: 0 0 24px 0 rgba(38, 38, 38, 0.25);
}
/* line 528, /app/app/assets/stylesheets/shared/promo_rows.scss */
.promo-person-book .promo-book-inner {
  padding-left: 0;
}
@media screen and (max-width: 860px) {
  /* line 534, /app/app/assets/stylesheets/shared/promo_rows.scss */
  .promo-person-book .promo-row-inner .wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }
  /* line 539, /app/app/assets/stylesheets/shared/promo_rows.scss */
  .promo-person-book .promo-row-inner .promo-content {
    width: 100%;
    padding: 32px 20px;
  }
  /* line 545, /app/app/assets/stylesheets/shared/promo_rows.scss */
  .promo-person-book .promo-book-inner,
  .promo-person-book .promo-book-inner a {
    width: 100%;
    justify-content: space-between;
  }
}
@media screen and (max-width: 520px) {
  /* line 553, /app/app/assets/stylesheets/shared/promo_rows.scss */
  .promo-person-book .promo-book-inner a {
    padding: 20px 0 20px 20px;
  }
  /* line 556, /app/app/assets/stylesheets/shared/promo_rows.scss */
  .promo-person-book .promo-book-inner a h3 {
    font-size: 16px;
  }
  /* line 560, /app/app/assets/stylesheets/shared/promo_rows.scss */
  .promo-person-book .promo-book-inner a p {
    font-size: 14px;
  }
  /* line 565, /app/app/assets/stylesheets/shared/promo_rows.scss */
  .promo-person-book .promo-book-inner a .promo-book-img img {
    height: 140px;
  }
}

/* line 2, /app/app/assets/stylesheets/shared/related_films.scss */
.related .related-list {
  display: flex;
  flex-wrap: wrap;
}
/* line 6, /app/app/assets/stylesheets/shared/related_films.scss */
.related .related-list .vid-block {
  width: calc(33.3333% - 3px);
}
/* line 9, /app/app/assets/stylesheets/shared/related_films.scss */
.related .related-list .vid-block::after {
  display: none;
}
@media screen and (max-width: 640px) {
  /* line 16, /app/app/assets/stylesheets/shared/related_films.scss */
  .related h3 {
    margin-bottom: 20px;
  }
  /* line 21, /app/app/assets/stylesheets/shared/related_films.scss */
  .related .related-list .vid-block {
    width: calc(50% - 3px);
    margin: 1.5px;
  }
}
@media screen and (max-width: 420px) {
  /* line 30, /app/app/assets/stylesheets/shared/related_films.scss */
  .related .related-list .vid-block {
    width: 100%;
    margin: 1.5px auto;
  }
}

/* line 2, /app/app/assets/stylesheets/shared/reset.scss */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
/* line 23, /app/app/assets/stylesheets/shared/reset.scss */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* line 27, /app/app/assets/stylesheets/shared/reset.scss */
body {
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

/* line 31, /app/app/assets/stylesheets/shared/reset.scss */
ol, ul {
  list-style: none;
}

/* line 34, /app/app/assets/stylesheets/shared/reset.scss */
blockquote, q {
  quotes: none;
}

/* line 37, /app/app/assets/stylesheets/shared/reset.scss */
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

/* line 42, /app/app/assets/stylesheets/shared/reset.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 46, /app/app/assets/stylesheets/shared/reset.scss */
input {
  -webkit-font-smoothing: antialiased;
}

/* clears the 'X' from Internet Explorer */
/* line 2, /app/app/assets/stylesheets/shared/search.scss */
input[type=search]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

/* line 3, /app/app/assets/stylesheets/shared/search.scss */
input[type=search]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

/* clears the 'X' from Chrome */
/* line 6, /app/app/assets/stylesheets/shared/search.scss */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

/* line 12, /app/app/assets/stylesheets/shared/search.scss */
.wrapper.search {
  margin-bottom: 50px;
}

/* line 15, /app/app/assets/stylesheets/shared/search.scss */
.search, .ais-SearchBox {
  position: relative;
  width: 100%;
  padding-top: 0;
}

/* line 24, /app/app/assets/stylesheets/shared/search.scss */
.admin-search-inputs {
  display: flex;
}

/* line 27, /app/app/assets/stylesheets/shared/search.scss */
.search-box-wrapper {
  display: flex;
  width: 100%;
}

/* line 32, /app/app/assets/stylesheets/shared/search.scss */
.search-box-wrapper, .ais-SearchBox-form {
  display: flex;
  width: 100%;
  max-width: 800px;
}
/* line 37, /app/app/assets/stylesheets/shared/search.scss */
.search-box-wrapper.visual-liturgy-search-box-wrapper, .ais-SearchBox-form.visual-liturgy-search-box-wrapper {
  max-width: 900px;
}
/* line 40, /app/app/assets/stylesheets/shared/search.scss */
.search-box-wrapper.visual-liturgy-search-box-wrapper .ais-SearchBox-input, .ais-SearchBox-form.visual-liturgy-search-box-wrapper .ais-SearchBox-input {
  width: 100%;
}
/* line 44, /app/app/assets/stylesheets/shared/search.scss */
.search-box-wrapper.visual-liturgy-search-box-wrapper .search, .ais-SearchBox-form.visual-liturgy-search-box-wrapper .search {
  width: 100%;
  max-width: 300px;
}
/* line 49, /app/app/assets/stylesheets/shared/search.scss */
.search-box-wrapper.visual-liturgy-search-box-wrapper .ais-SearchBox-submit, .ais-SearchBox-form.visual-liturgy-search-box-wrapper .ais-SearchBox-submit {
  display: none;
}
/* line 53, /app/app/assets/stylesheets/shared/search.scss */
.search-box-wrapper.visual-liturgy-search-box-wrapper input[type="text"], .ais-SearchBox-form.visual-liturgy-search-box-wrapper input[type="text"] {
  width: 300px;
}
@media screen and (max-width: 960px) {
  /* line 37, /app/app/assets/stylesheets/shared/search.scss */
  .search-box-wrapper.visual-liturgy-search-box-wrapper, .ais-SearchBox-form.visual-liturgy-search-box-wrapper {
    max-width: 800px;
  }
  /* line 60, /app/app/assets/stylesheets/shared/search.scss */
  .search-box-wrapper.visual-liturgy-search-box-wrapper input[type="text"], .ais-SearchBox-form.visual-liturgy-search-box-wrapper input[type="text"] {
    width: 245px;
  }
}
@media screen and (max-width: 820px) {
  /* line 37, /app/app/assets/stylesheets/shared/search.scss */
  .search-box-wrapper.visual-liturgy-search-box-wrapper, .ais-SearchBox-form.visual-liturgy-search-box-wrapper {
    margin-top: 40px;
  }
  /* line 67, /app/app/assets/stylesheets/shared/search.scss */
  .search-box-wrapper.visual-liturgy-search-box-wrapper input[type="text"], .ais-SearchBox-form.visual-liturgy-search-box-wrapper input[type="text"] {
    width: 245px;
  }
}
@media screen and (max-width: 767px) {
  /* line 37, /app/app/assets/stylesheets/shared/search.scss */
  .search-box-wrapper.visual-liturgy-search-box-wrapper, .ais-SearchBox-form.visual-liturgy-search-box-wrapper {
    height: auto;
  }
}
@media screen and (max-width: 571px) {
  /* line 78, /app/app/assets/stylesheets/shared/search.scss */
  .search-box-wrapper.visual-liturgy-search-box-wrapper input[type="text"], .ais-SearchBox-form.visual-liturgy-search-box-wrapper input[type="text"] {
    width: 166px;
  }
}

/* line 88, /app/app/assets/stylesheets/shared/search.scss */
.search input[type="text"], .ais-SearchBox-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: "Lato", Helvetica, arial, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 58px;
  width: calc(100% - 146px);
  height: 58px;
  margin: 0;
  padding: 0 16px;
  letter-spacing: 1px;
  border: 1px solid white;
  border-left: 1px solid #d4c0a1;
  border-radius: 0;
  outline: none;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 767px) {
  /* line 88, /app/app/assets/stylesheets/shared/search.scss */
  .search input[type="text"], .ais-SearchBox-input {
    width: calc(100% - 62px);
  }
}

/* line 119, /app/app/assets/stylesheets/shared/search.scss */
.search [type="submit"], .ais-SearchBox-submit {
  font-family: "Lato", Helvetica, arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 58px;
  display: block;
  width: 146px;
  height: 58px;
  margin: 0;
  padding: 0 16px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #262626;
  border: none;
  border-radius: 0;
  outline: none;
  background-color: #d4c0a1;
  -webkit-font-smoothing: antialiased;
}
/* line 140, /app/app/assets/stylesheets/shared/search.scss */
.search [type="submit"]:hover, .search [type="submit"]:focus, .ais-SearchBox-submit:hover, .ais-SearchBox-submit:focus {
  background-color: #c7ad85;
}

/* line 148, /app/app/assets/stylesheets/shared/search.scss */
.search input[type="submit"] .search-submit-icon, .search button[type="submit"] .search-submit-icon {
  display: none;
}
@media screen and (max-width: 767px) {
  /* line 146, /app/app/assets/stylesheets/shared/search.scss */
  .search input[type="submit"], .search button[type="submit"] {
    padding: 0 4px;
  }
}
@media screen and (max-width: 600px) {
  /* line 146, /app/app/assets/stylesheets/shared/search.scss */
  .search input[type="submit"], .search button[type="submit"] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 58px;
  }
  /* line 163, /app/app/assets/stylesheets/shared/search.scss */
  .search input[type="submit"] .search-submit-text, .search button[type="submit"] .search-submit-text {
    display: none;
  }
  /* line 166, /app/app/assets/stylesheets/shared/search.scss */
  .search input[type="submit"] .search-submit-icon, .search button[type="submit"] .search-submit-icon {
    display: block;
    margin-top: 8px;
  }
}

/* line 174, /app/app/assets/stylesheets/shared/search.scss */
.active-tags, .ais-RefinementList-list {
  display: flex;
}
/* line 177, /app/app/assets/stylesheets/shared/search.scss */
.active-tags .tag-filter, .ais-RefinementList-list .tag-filter {
  font-family: "Lato", Helvetica, arial, sans-serif;
  font-size: 11px;
  line-height: 13px;
  position: relative;
  display: flex;
  align-items: center;
  height: 29px;
  margin: 6px 6px 0 0;
  padding: 0 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #262626;
  border: 2px solid #e4dcce;
  background-color: #f8f3ea;
}
/* line 204, /app/app/assets/stylesheets/shared/search.scss */
.active-tags .tag-filter svg, .ais-RefinementList-list .tag-filter svg {
  margin-left: 5px;
}
/* line 208, /app/app/assets/stylesheets/shared/search.scss */
.active-tags .tag-filter.selected, .ais-RefinementList-list .tag-filter.selected {
  background-color: #e4dcce;
}
/* line 212, /app/app/assets/stylesheets/shared/search.scss */
.active-tags .tag-filter:hover, .ais-RefinementList-list .tag-filter:hover {
  border-color: #fff;
  background-color: #fff;
}

/* line 1, /app/app/assets/stylesheets/shared/series_video_block.scss */
.series-video-block {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #d4c0a1;
  display: flex;
}
/* line 7, /app/app/assets/stylesheets/shared/series_video_block.scss */
.series-video-block .video-image {
  width: 100%;
  max-width: 220px;
  padding-right: 32px;
}
/* line 12, /app/app/assets/stylesheets/shared/series_video_block.scss */
.series-video-block .video-image img {
  display: block;
  width: 180px;
}
/* line 17, /app/app/assets/stylesheets/shared/series_video_block.scss */
.series-video-block .video-image a {
  display: block;
}
/* line 22, /app/app/assets/stylesheets/shared/series_video_block.scss */
.series-video-block .video-description {
  display: flex;
  justify-content: space-between;
  width: calc(100% - 220px);
}
/* line 27, /app/app/assets/stylesheets/shared/series_video_block.scss */
.series-video-block .video-description .video-meta {
  width: 100%;
  padding-right: 32px;
  font-family: "Lato", Helvetica, arial, sans-serif;
}
/* line 32, /app/app/assets/stylesheets/shared/series_video_block.scss */
.series-video-block .video-description .video-meta h3 {
  margin-bottom: 8px;
  font-weight: 600;
}
/* line 37, /app/app/assets/stylesheets/shared/series_video_block.scss */
.series-video-block .video-description .video-meta > div {
  font-size: 12px;
}
/* line 40, /app/app/assets/stylesheets/shared/series_video_block.scss */
.series-video-block .video-description .video-meta > div span, .series-video-block .video-description .video-meta > div a {
  display: inline-block;
  line-height: 12px;
  color: #262626;
  text-transform: uppercase;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-left: 2px solid #d4c0a1;
  padding-left: 8px;
  margin-left: 8px;
}
/* line 51, /app/app/assets/stylesheets/shared/series_video_block.scss */
.series-video-block .video-description .video-meta > div span:first-child, .series-video-block .video-description .video-meta > div a:first-child {
  border-left: none;
  padding-left: 0;
  margin-left: 0;
}
/* line 59, /app/app/assets/stylesheets/shared/series_video_block.scss */
.series-video-block .video-description .video-meta > div a .lines {
  display: inline-block;
  margin-right: 5px;
  padding-top: 3px;
  height: 12px;
}
/* line 65, /app/app/assets/stylesheets/shared/series_video_block.scss */
.series-video-block .video-description .video-meta > div a .lines span {
  display: block;
  width: 12px;
  height: 1px;
  background-color: #262626;
  margin-bottom: 3px;
  transition: all 0.3s ease;
}
/* line 73, /app/app/assets/stylesheets/shared/series_video_block.scss */
.series-video-block .video-description .video-meta > div a .lines span:last-child {
  margin-bottom: 0;
}
/* line 78, /app/app/assets/stylesheets/shared/series_video_block.scss */
.series-video-block .video-description .video-meta > div a:hover {
  color: #99752f;
}
/* line 82, /app/app/assets/stylesheets/shared/series_video_block.scss */
.series-video-block .video-description .video-meta > div a:hover .lines span {
  background-color: #99752f;
}
/* line 91, /app/app/assets/stylesheets/shared/series_video_block.scss */
.series-video-block .video-description .video-watch-button {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
/* line 96, /app/app/assets/stylesheets/shared/series_video_block.scss */
.series-video-block .video-description .video-watch-button .button {
  padding: 0 20px;
  font-size: 14px;
  border-radius: 4px;
  letter-spacing: 2px;
}
@media screen and (max-width: 660px) {
  /* line 106, /app/app/assets/stylesheets/shared/series_video_block.scss */
  .series-video-block .video-image {
    max-width: 180px;
    padding-right: 20px;
  }
  /* line 110, /app/app/assets/stylesheets/shared/series_video_block.scss */
  .series-video-block .video-image img {
    width: 100%;
  }
  /* line 114, /app/app/assets/stylesheets/shared/series_video_block.scss */
  .series-video-block .video-description {
    width: calc(100% - 180px);
  }
  /* line 117, /app/app/assets/stylesheets/shared/series_video_block.scss */
  .series-video-block .video-description .video-meta {
    padding-right: 20px;
  }
  /* line 120, /app/app/assets/stylesheets/shared/series_video_block.scss */
  .series-video-block .video-description .video-meta h3 {
    font-size: 16px;
  }
}
@media screen and (max-width: 520px) {
  /* line 128, /app/app/assets/stylesheets/shared/series_video_block.scss */
  .series-video-block .video-description {
    flex-wrap: wrap;
  }
  /* line 131, /app/app/assets/stylesheets/shared/series_video_block.scss */
  .series-video-block .video-description .video-meta {
    margin-bottom: 10px;
    padding-right: 0;
  }
  /* line 136, /app/app/assets/stylesheets/shared/series_video_block.scss */
  .series-video-block .video-description .video-watch-button {
    width: 100%;
    justify-content: unset;
  }
  /* line 140, /app/app/assets/stylesheets/shared/series_video_block.scss */
  .series-video-block .video-description .video-watch-button .button {
    line-height: 32px;
  }
}
@media screen and (max-width: 440px) {
  /* line 1, /app/app/assets/stylesheets/shared/series_video_block.scss */
  .series-video-block {
    flex-wrap: wrap;
  }
  /* line 150, /app/app/assets/stylesheets/shared/series_video_block.scss */
  .series-video-block .video-image {
    width: 100%;
    max-width: none;
    padding-right: 0;
    margin-bottom: 20px;
  }
  /* line 156, /app/app/assets/stylesheets/shared/series_video_block.scss */
  .series-video-block .video-description {
    width: 100%;
  }
  /* line 159, /app/app/assets/stylesheets/shared/series_video_block.scss */
  .series-video-block .video-description .video-watch-button {
    width: 100%;
    justify-content: unset;
  }
  /* line 163, /app/app/assets/stylesheets/shared/series_video_block.scss */
  .series-video-block .video-description .video-watch-button .button {
    line-height: 36px;
    padding: 0 20px;
  }
}

/* line 1, /app/app/assets/stylesheets/shared/six_pack.scss */
.grid-inner {
  position: relative;
  z-index: 2;
}

/* line 6, /app/app/assets/stylesheets/shared/six_pack.scss */
.vid-block-wrapper {
  width: 100%;
  clear: both;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  margin-top: -20px;
}
/* line 14, /app/app/assets/stylesheets/shared/six_pack.scss */
.vid-block-wrapper::before, .vid-block-wrapper::after {
  content: '';
  height: 5px;
  width: 100%;
  border-top: 1px solid #d4c0a1;
  border-bottom: 1px solid #d4c0a1;
  margin: 20px 0;
  position: absolute;
  top: calc(50% - 24px);
  right: 0;
  left: 0;
  display: block;
}
/* line 29, /app/app/assets/stylesheets/shared/six_pack.scss */
.vid-block-wrapper::after {
  display: none;
}
@media screen and (max-width: 768px) {
  /* line 35, /app/app/assets/stylesheets/shared/six_pack.scss */
  .vid-block-wrapper::before {
    display: block;
    top: calc(33.3333% - 24px);
  }
  /* line 39, /app/app/assets/stylesheets/shared/six_pack.scss */
  .vid-block-wrapper::after {
    display: block;
    top: calc(66.6666% - 24px);
  }
}
@media screen and (max-width: 500px) {
  /* line 6, /app/app/assets/stylesheets/shared/six_pack.scss */
  .vid-block-wrapper {
    width: 100%;
    margin-top: 0;
  }
  /* line 49, /app/app/assets/stylesheets/shared/six_pack.scss */
  .vid-block-wrapper::before, .vid-block-wrapper::after {
    display: none;
  }
}

/* line 1, /app/app/assets/stylesheets/shared/vid_block.scss */
.vid-block {
  width: calc(33.333% - 3px);
  margin: 20px 1.5px;
  transition: all 0.3s ease;
  color: #262626 !important;
  display: block;
}
/* line 8, /app/app/assets/stylesheets/shared/vid_block.scss */
.vid-block .icon-series {
  background-color: rgba(0, 0, 0, 0.5);
  fill: #f8f3ea;
  width: 46px;
  height: 44px;
  padding: 10px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
/* line 20, /app/app/assets/stylesheets/shared/vid_block.scss */
.vid-block .vid-block-inner {
  position: relative;
}
/* line 24, /app/app/assets/stylesheets/shared/vid_block.scss */
.vid-block .vid-thumb {
  display: flex;
  align-content: center;
  justify-content: center;
  padding-top: 56.25%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #e4dcce;
  position: relative;
  overflow: hidden;
  z-index: 3;
  transform: scale(1);
  transform-origin: bottom;
  transition: all 0.3s ease;
}
@media screen and (min-width: 1024px) {
  /* line 24, /app/app/assets/stylesheets/shared/vid_block.scss */
  .vid-block .vid-thumb {
    padding-top: 186px;
  }
}
@media screen and (min-width: 1100px) {
  /* line 24, /app/app/assets/stylesheets/shared/vid_block.scss */
  .vid-block .vid-thumb {
    padding-top: 200px;
  }
}
@media screen and (min-width: 1176px) {
  /* line 24, /app/app/assets/stylesheets/shared/vid_block.scss */
  .vid-block .vid-thumb {
    padding-top: 220px;
  }
}
/* line 52, /app/app/assets/stylesheets/shared/vid_block.scss */
.vid-block .vid-thumb svg.icon-play {
  width: 40px;
  height: 40px;
  left: 20px;
  bottom: 20px;
  opacity: 0;
  transition: all 0.3s ease;
}
/* line 62, /app/app/assets/stylesheets/shared/vid_block.scss */
.vid-block .vid-info {
  position: absolute;
  overflow: hidden;
  top: 100%;
  background-color: #f8f3ea;
  opacity: 0;
  transition: all 0.3s ease;
  max-height: 0;
  width: 100%;
  transform-origin: top center;
  padding: 0;
  z-index: 2;
  transform: scale(1);
}
/* line 76, /app/app/assets/stylesheets/shared/vid_block.scss */
.vid-block .vid-info .vid-info-text {
  width: 100%;
  padding: 14px;
  transform-origin: top left;
  transition: all 0.3s ease-in-out;
}
/* line 83, /app/app/assets/stylesheets/shared/vid_block.scss */
.vid-block .vid-info h2 {
  display: inline-block;
  font-size: 13px;
  color: #99752f;
  max-width: 70%;
  margin-bottom: 0px;
  line-height: 1.2;
  letter-spacing: 1px;
}
/* line 93, /app/app/assets/stylesheets/shared/vid_block.scss */
.vid-block .vid-info span.vid-length {
  position: absolute;
  font-family: "Lato", Helvetica, arial, sans-serif;
  color: #99752f;
  font-size: 11px;
  letter-spacing: 1px;
  right: 13px;
  top: 18px;
}
/* line 103, /app/app/assets/stylesheets/shared/vid_block.scss */
.vid-block .vid-info p {
  color: #262626;
  font-family: "Lora", Times, serif;
  font-size: 12px;
  margin: 0;
}
/* line 111, /app/app/assets/stylesheets/shared/vid_block.scss */
.vid-block:focus, .vid-block:hover {
  color: #262626 !important;
}
@media screen and (min-width: 1025px) {
  /* line 117, /app/app/assets/stylesheets/shared/vid_block.scss */
  .vid-block:hover {
    z-index: 5;
    color: #262626 !important;
  }
  /* line 121, /app/app/assets/stylesheets/shared/vid_block.scss */
  .vid-block:hover .vid-thumb {
    transform: scale(1.2);
  }
  /* line 124, /app/app/assets/stylesheets/shared/vid_block.scss */
  .vid-block:hover .vid-thumb svg.icon-play {
    opacity: 1;
  }
  /* line 128, /app/app/assets/stylesheets/shared/vid_block.scss */
  .vid-block:hover .vid-info {
    -webkit-box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.3);
    opacity: 1;
    max-height: 200px;
    transform: scale(1.2);
  }
}
@media screen and (max-width: 1024px) {
  /* line 140, /app/app/assets/stylesheets/shared/vid_block.scss */
  .vid-block:focus {
    z-index: 5;
    outline: none;
  }
  /* line 144, /app/app/assets/stylesheets/shared/vid_block.scss */
  .vid-block:focus .vid-thumb {
    transform: scale(1.2);
  }
  /* line 147, /app/app/assets/stylesheets/shared/vid_block.scss */
  .vid-block:focus .vid-thumb svg.icon-play {
    opacity: 1;
  }
  /* line 151, /app/app/assets/stylesheets/shared/vid_block.scss */
  .vid-block:focus .vid-info {
    -webkit-box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.3);
    opacity: 1;
    max-height: 200px;
    transform: scale(1.2);
  }
}
@media screen and (max-width: 768px) {
  /* line 1, /app/app/assets/stylesheets/shared/vid_block.scss */
  .vid-block {
    width: calc(50% - 3px);
    margin: 20px 1.5px;
  }
}
@media screen and (max-width: 680px) {
  /* line 169, /app/app/assets/stylesheets/shared/vid_block.scss */
  .vid-block:focus .vid-thumb,
  .vid-block:focus .vid-info {
    transform: scale(1.1);
  }
}
@media screen and (max-width: 500px) {
  /* line 1, /app/app/assets/stylesheets/shared/vid_block.scss */
  .vid-block {
    width: 100%;
    margin: 0 auto 20px;
  }
}

@media screen and (min-width: 1024px) {
  /* line 187, /app/app/assets/stylesheets/shared/vid_block.scss */
  .video-rotator .vid-block .vid-thumb,
  .video-grid-contents .vid-block .vid-thumb,
  .person-videos-list .vid-block .vid-thumb {
    padding-top: 56.25%;
  }
}
@media screen and (min-width: 1100px) {
  /* line 187, /app/app/assets/stylesheets/shared/vid_block.scss */
  .video-rotator .vid-block .vid-thumb,
  .video-grid-contents .vid-block .vid-thumb,
  .person-videos-list .vid-block .vid-thumb {
    padding-top: 56.25%;
  }
}
@media screen and (min-width: 1176px) {
  /* line 187, /app/app/assets/stylesheets/shared/vid_block.scss */
  .video-rotator .vid-block .vid-thumb,
  .video-grid-contents .vid-block .vid-thumb,
  .person-videos-list .vid-block .vid-thumb {
    padding-top: 56.25%;
  }
}

@media screen and (min-width: 1024px) {
  /* line 206, /app/app/assets/stylesheets/shared/vid_block.scss */
  .related-list .vid-block .vid-thumb {
    padding-top: 56.25%;
  }
}
@media screen and (min-width: 1100px) {
  /* line 206, /app/app/assets/stylesheets/shared/vid_block.scss */
  .related-list .vid-block .vid-thumb {
    padding-top: 56.25%;
  }
}
@media screen and (min-width: 1176px) {
  /* line 206, /app/app/assets/stylesheets/shared/vid_block.scss */
  .related-list .vid-block .vid-thumb {
    padding-top: 56.25%;
  }
}

/* ------
.grid-inner .grad-title {
	@media screen and (max-width: 600px) {
		width: calc(100% + 36px);
		margin-right: -18px;
		margin-left: -18px;
	}
} ---------*/
/* line 1, /app/app/assets/stylesheets/shared/slide_intro.scss */
.slide-intro {
  width: 33vw;
  height: 100vh;
  max-width: 500px;
  position: fixed;
  overflow: visible;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background-color: #e4dcce;
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  transition: transform 500ms ease, opacity 500ms ease;
}
/* line 18, /app/app/assets/stylesheets/shared/slide_intro.scss */
.slide-intro:before {
  content: "";
  display: block;
  width: 60px;
  height: 100vh;
  position: absolute;
  top: 0;
  left: -60px;
  background: linear-gradient(to right, transparent, #4b3820);
  opacity: .3;
}
/* line 30, /app/app/assets/stylesheets/shared/slide_intro.scss */
.slide-intro .slide-intro-inner {
  padding: 80px 40px 40px;
  position: relative;
}
/* line 34, /app/app/assets/stylesheets/shared/slide_intro.scss */
.slide-intro .slide-intro-inner .close {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #262626;
  color: #f8f3ea;
  font-size: 40px;
  padding: 6px 16px;
}
/* line 43, /app/app/assets/stylesheets/shared/slide_intro.scss */
.slide-intro .slide-intro-inner .close:hover, .slide-intro .slide-intro-inner .close:focus {
  color: #262626;
  border-color: #ffffff;
  background-color: #ffffff;
}
/* line 51, /app/app/assets/stylesheets/shared/slide_intro.scss */
.slide-intro .slide-intro-inner h1 {
  line-height: 1.1;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 32px;
}
/* line 61, /app/app/assets/stylesheets/shared/slide_intro.scss */
.slide-intro .slide-intro-buttons .arrow-link {
  margin-top: 20px;
}
/* line 66, /app/app/assets/stylesheets/shared/slide_intro.scss */
.slide-intro .slide-intro-buttons .subscribe-button:hover, .slide-intro .slide-intro-buttons .subscribe-button:focus {
  background-color: #f8f3ea;
}
/* line 72, /app/app/assets/stylesheets/shared/slide_intro.scss */
.slide-intro .slide-intro-buttons .dual-buttons {
  float: none;
  clear: both;
  padding-top: 32px;
}
/* line 79, /app/app/assets/stylesheets/shared/slide_intro.scss */
.slide-intro.is-hidden {
  transform: translateX(60px);
  opacity: 0;
  visibility: hidden;
  transition: transform 500ms ease, opacity 500ms ease, visibility 550ms ease;
}
@media screen and (max-width: 1000px) {
  /* line 1, /app/app/assets/stylesheets/shared/slide_intro.scss */
  .slide-intro {
    width: 50vw;
  }
}
@media screen and (max-width: 768px) {
  /* line 1, /app/app/assets/stylesheets/shared/slide_intro.scss */
  .slide-intro {
    width: 60vw;
  }
}
@media screen and (max-width: 600px) {
  /* line 1, /app/app/assets/stylesheets/shared/slide_intro.scss */
  .slide-intro {
    width: 100vw;
    height: auto;
    top: auto;
  }
  /* line 101, /app/app/assets/stylesheets/shared/slide_intro.scss */
  .slide-intro .slide-intro-inner {
    padding: 20px;
  }
  /* line 104, /app/app/assets/stylesheets/shared/slide_intro.scss */
  .slide-intro .slide-intro-inner .close {
    left: auto;
    right: 0;
  }
  /* line 109, /app/app/assets/stylesheets/shared/slide_intro.scss */
  .slide-intro .slide-intro-inner h1 {
    padding-right: 72px;
  }
}

/* line 1, /app/app/assets/stylesheets/shared/social_share_menu.scss */
.share-icons {
  display: flex;
  background-color: #ffffff;
  justify-content: center;
  position: absolute;
  right: 3px;
  bottom: -62px;
  visibility: hidden;
  z-index: 2;
}
/* line 11, /app/app/assets/stylesheets/shared/social_share_menu.scss */
.share-icons::before {
  content: '';
  border-top: 16px solid transparent;
  border-bottom: 4px solid #ffffff;
  border-left: 16px solid transparent;
  border-right: 16px solid #ffffff;
  position: absolute;
  right: 0;
  top: -16px;
}
/* line 22, /app/app/assets/stylesheets/shared/social_share_menu.scss */
.share-icons li {
  box-sizing: border-box;
  height: auto;
  overflow: hidden;
  padding: 12px 18px;
  border-right: 2px solid #f8f3ea;
  text-align: center;
}
/* line 30, /app/app/assets/stylesheets/shared/social_share_menu.scss */
.share-icons li:last-child {
  border-right: none;
}
/* line 34, /app/app/assets/stylesheets/shared/social_share_menu.scss */
.share-icons li a {
  display: block;
  margin: auto;
  width: 28px;
  height: 28px;
}
/* line 40, /app/app/assets/stylesheets/shared/social_share_menu.scss */
.share-icons li a svg {
  width: 28px;
  height: 28px;
  transition: fill 0.3s ease;
}
/* line 47, /app/app/assets/stylesheets/shared/social_share_menu.scss */
.share-icons li a {
  color: #262626;
}
/* line 55, /app/app/assets/stylesheets/shared/social_share_menu.scss */
.share-icons li.email a:hover svg {
  fill: #93989d;
}
/* line 65, /app/app/assets/stylesheets/shared/social_share_menu.scss */
.share-icons li.facebook a:hover svg {
  fill: #3b5998;
}
/* line 74, /app/app/assets/stylesheets/shared/social_share_menu.scss */
.share-icons li.twitter a svg {
  width: 24px;
}
/* line 79, /app/app/assets/stylesheets/shared/social_share_menu.scss */
.share-icons li.twitter a:hover svg {
  fill: #5c9eff;
}
/* line 88, /app/app/assets/stylesheets/shared/social_share_menu.scss */
.share-icons li.close a svg {
  width: 20px;
  height: 28px;
}
/* line 94, /app/app/assets/stylesheets/shared/social_share_menu.scss */
.share-icons li.close a:hover svg {
  fill: #f14f3e;
}
@media screen and (max-width: 700px) {
  /* line 1, /app/app/assets/stylesheets/shared/social_share_menu.scss */
  .share-icons {
    right: auto;
    bottom: -60px;
  }
  /* line 106, /app/app/assets/stylesheets/shared/social_share_menu.scss */
  .share-icons::before {
    left: 0;
    right: auto;
    border-right: 16px solid transparent;
    border-left: 16px solid #ffffff;
  }
}

/* line 1, /app/app/assets/stylesheets/shared/sp_header_landing.scss */
#site-header.sp-landing-header {
  width: 100%;
  max-width: none;
  background-color: #c6b999;
  border-bottom: 20px solid #e4dcce;
  padding: 24px 60px 20px;
}
/* line 8, /app/app/assets/stylesheets/shared/sp_header_landing.scss */
#site-header.sp-landing-header #site-logo {
  max-width: 300px;
}
/* line 11, /app/app/assets/stylesheets/shared/sp_header_landing.scss */
#site-header.sp-landing-header #site-logo img {
  vertical-align: top;
}
@media screen and (max-width: 820px) {
  /* line 8, /app/app/assets/stylesheets/shared/sp_header_landing.scss */
  #site-header.sp-landing-header #site-logo {
    margin: 0 auto;
  }
}

/* line 2, /app/app/assets/stylesheets/shared/sp_landing.scss */
.promo_landing .text-block {
  margin: 0 auto;
  text-align: center;
}
/* line 6, /app/app/assets/stylesheets/shared/sp_landing.scss */
.promo_landing .text-block p {
  font-size: 18px;
  padding-bottom: 20px;
}
/* line 11, /app/app/assets/stylesheets/shared/sp_landing.scss */
.promo_landing .text-block h3 {
  font-size: 20px;
}
/* line 15, /app/app/assets/stylesheets/shared/sp_landing.scss */
.promo_landing .text-block h5 a {
  font-size: 16px;
  color: #99752f;
}

/* line 22, /app/app/assets/stylesheets/shared/sp_landing.scss */
.sp-landing .promo-heading {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 32px;
  text-align: center;
  letter-spacing: 4px;
  text-transform: uppercase;
}
/* line 30, /app/app/assets/stylesheets/shared/sp_landing.scss */
.sp-landing .sp-title {
  font-size: 68px;
  font-weight: bold;
}
/* line 35, /app/app/assets/stylesheets/shared/sp_landing.scss */
.sp-landing .sp-subtitle {
  font-weight: normal;
  font-size: 24px;
  position: relative;
}
/* line 40, /app/app/assets/stylesheets/shared/sp_landing.scss */
.sp-landing .sp-subtitle span {
  background-image: linear-gradient(transparent 0%, transparent calc(50% - -2px), #c1d9dd calc(50% - -1px), #c1d9dd 100%);
}
@media screen and (max-width: 800px) {
  /* line 51, /app/app/assets/stylesheets/shared/sp_landing.scss */
  .sp-landing .sp-title {
    font-size: 50px;
  }
  /* line 55, /app/app/assets/stylesheets/shared/sp_landing.scss */
  .sp-landing .sp-subtitle {
    font-size: 18px;
  }
}
@media screen and (max-width: 620px) {
  /* line 61, /app/app/assets/stylesheets/shared/sp_landing.scss */
  .sp-landing .sp-title {
    font-size: 46px;
  }
  /* line 65, /app/app/assets/stylesheets/shared/sp_landing.scss */
  .sp-landing .sp-subtitle {
    font-size: 18px;
  }
}

/* line 70, /app/app/assets/stylesheets/shared/sp_landing.scss */
p.copy-block {
  max-width: 740px;
  margin: 60px auto;
  font-size: 20px;
  text-align: center;
  position: relative;
  padding: 0 40px;
}
/* line 78, /app/app/assets/stylesheets/shared/sp_landing.scss */
p.copy-block.sp-intro-text {
  padding: 40px;
}
/* line 81, /app/app/assets/stylesheets/shared/sp_landing.scss */
p.copy-block.sp-intro-text::before, p.copy-block.sp-intro-text::after {
  content: '';
  display: block;
  width: 70px;
  height: 100%;
  border: 3px solid #c6b999;
  position: absolute;
  top: 0;
  bottom: 0;
}
/* line 93, /app/app/assets/stylesheets/shared/sp_landing.scss */
p.copy-block.sp-intro-text::before {
  border-right: none;
  left: 0;
}
/* line 98, /app/app/assets/stylesheets/shared/sp_landing.scss */
p.copy-block.sp-intro-text::after {
  border-left: none;
  right: 0;
}
@media screen and (max-width: 830px) {
  /* line 78, /app/app/assets/stylesheets/shared/sp_landing.scss */
  p.copy-block.sp-intro-text {
    padding: 0 32px;
  }
  /* line 106, /app/app/assets/stylesheets/shared/sp_landing.scss */
  p.copy-block.sp-intro-text::before, p.copy-block.sp-intro-text::after {
    display: none;
  }
}
/* line 113, /app/app/assets/stylesheets/shared/sp_landing.scss */
p.copy-block a {
  font-style: italic;
  border-bottom: 1px solid currentColor;
  font-size: 16px;
}

/* line 119, /app/app/assets/stylesheets/shared/sp_landing.scss */
.sp-quote {
  width: 100%;
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 32px;
}
/* line 126, /app/app/assets/stylesheets/shared/sp_landing.scss */
.sp-quote .testimonial-image-bar .tib-quote {
  z-index: 1;
}
/* line 130, /app/app/assets/stylesheets/shared/sp_landing.scss */
.sp-quote .testimonial-image-bar .tib-image {
  margin-top: 60px;
  position: relative;
  background-color: transparent;
}
/* line 135, /app/app/assets/stylesheets/shared/sp_landing.scss */
.sp-quote .testimonial-image-bar .tib-image img {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 140%;
}
@media screen and (max-width: 560px) {
  /* line 130, /app/app/assets/stylesheets/shared/sp_landing.scss */
  .sp-quote .testimonial-image-bar .tib-image {
    margin-top: 0;
    padding-top: 0;
  }
  /* line 147, /app/app/assets/stylesheets/shared/sp_landing.scss */
  .sp-quote .testimonial-image-bar .tib-image img {
    position: relative;
    width: 100%;
  }
}

/* line 1, /app/app/assets/stylesheets/shared/sp_video_row.scss */
.sp-video-row {
  background-color: #87a3a7;
  overflow: hidden;
  margin: 60px auto;
}
/* line 6, /app/app/assets/stylesheets/shared/sp_video_row.scss */
.sp-video-row .sp-video-container {
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
}
/* line 11, /app/app/assets/stylesheets/shared/sp_video_row.scss */
.sp-video-row .sp-video-container .vid-wrap {
  position: relative;
}
/* line 14, /app/app/assets/stylesheets/shared/sp_video_row.scss */
.sp-video-row .sp-video-container .vid-wrap iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* line 26, /app/app/assets/stylesheets/shared/sp_video_row.scss */
.sp-video-row .gradient-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0) 100%);
}
/* line 35, /app/app/assets/stylesheets/shared/sp_video_row.scss */
.sp-video-row .sp-play-button {
  display: flex;
  flex: 1;
  width: 100%;
  max-width: 300px;
  background-color: transparent;
  align-items: center;
  outline: none;
  border: none;
  padding: 0;
  font-family: "Lato", Helvetica, arial, sans-serif;
  cursor: pointer;
  position: absolute;
  bottom: 0;
  right: 0;
}
/* line 51, /app/app/assets/stylesheets/shared/sp_video_row.scss */
.sp-video-row .sp-play-button .play-sq {
  background-color: #ffffff;
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* line 59, /app/app/assets/stylesheets/shared/sp_video_row.scss */
.sp-video-row .sp-play-button .play-sq::before {
  content: '';
  margin-left: 4px;
  border-left: 20px solid #262626;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}
/* line 68, /app/app/assets/stylesheets/shared/sp_video_row.scss */
.sp-video-row .sp-play-button span {
  width: calc(100% - 64px);
  text-align: right;
  padding-right: 25px;
  font-size: 14px;
  text-transform: uppercase;
  color: #e0b76c;
  letter-spacing: 1px;
  transition: color 250ms ease;
}
/* line 82, /app/app/assets/stylesheets/shared/sp_video_row.scss */
.sp-video-row .video-preview:hover .sp-play-button span {
  color: #ffffff;
}

/* line 1, /app/app/assets/stylesheets/shared/sub_signup_page.scss */
.sub-sign-up-page {
  padding-top: 50px;
}
/* line 4, /app/app/assets/stylesheets/shared/sub_signup_page.scss */
.sub-sign-up-page h1.page-heading {
  margin-bottom: 32px;
}
/* line 8, /app/app/assets/stylesheets/shared/sub_signup_page.scss */
.sub-sign-up-page br {
  display: none;
}
/* line 12, /app/app/assets/stylesheets/shared/sub_signup_page.scss */
.sub-sign-up-page p {
  max-width: 768px;
}
/* line 18, /app/app/assets/stylesheets/shared/sub_signup_page.scss */
.sub-sign-up-page .landing-links .button:first-child {
  margin-right: 12px;
}

/* line 1, /app/app/assets/stylesheets/shared/testimonial-image-bar.scss */
.testimonial-image-bar {
  background-color: #f8f3ea;
  display: flex;
}
/* line 5, /app/app/assets/stylesheets/shared/testimonial-image-bar.scss */
.testimonial-image-bar .tib-quote {
  margin-bottom: 80px;
  position: relative;
  background-color: #e4dcce;
  width: 52%;
  padding: 80px 80px 50px;
  overflow: hidden;
}
/* line 13, /app/app/assets/stylesheets/shared/testimonial-image-bar.scss */
.testimonial-image-bar .tib-quote::before {
  content: "\2018\2018";
  font-size: 250px;
  font-style: italic;
  font-family: "Times New Roman", Times, serif;
  color: #c0ad8c;
  position: absolute;
  top: -69px;
  left: -10px;
  letter-spacing: -10px;
  opacity: 0.6;
}
/* line 26, /app/app/assets/stylesheets/shared/testimonial-image-bar.scss */
.testimonial-image-bar .tib-quote blockquote {
  position: relative;
  z-index: 1;
}
/* line 30, /app/app/assets/stylesheets/shared/testimonial-image-bar.scss */
.testimonial-image-bar .tib-quote blockquote p {
  margin-bottom: 60px;
}
/* line 37, /app/app/assets/stylesheets/shared/testimonial-image-bar.scss */
.testimonial-image-bar .tib-image {
  margin-top: 80px;
  background-color: #d6c9b4;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 48%;
  padding-top: 45%;
}
@media screen and (max-width: 900px) {
  /* line 48, /app/app/assets/stylesheets/shared/testimonial-image-bar.scss */
  .testimonial-image-bar .tib-quote {
    padding: 50px;
    margin-bottom: 50px;
  }
  /* line 52, /app/app/assets/stylesheets/shared/testimonial-image-bar.scss */
  .testimonial-image-bar .tib-quote::before {
    font-size: 150px;
    top: -36px;
    left: -12px;
  }
  /* line 59, /app/app/assets/stylesheets/shared/testimonial-image-bar.scss */
  .testimonial-image-bar .tib-quote blockquote p {
    font-size: 24px;
    margin-bottom: 25px;
  }
  /* line 65, /app/app/assets/stylesheets/shared/testimonial-image-bar.scss */
  .testimonial-image-bar .tib-image {
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  /* line 1, /app/app/assets/stylesheets/shared/testimonial-image-bar.scss */
  .testimonial-image-bar {
    width: calc(100% + 64px);
    margin-left: -32px;
  }
}
@media screen and (max-width: 680px) {
  /* line 76, /app/app/assets/stylesheets/shared/testimonial-image-bar.scss */
  .testimonial-image-bar .tib-quote blockquote p {
    font-size: 22px;
  }
}
@media screen and (max-width: 560px) {
  /* line 1, /app/app/assets/stylesheets/shared/testimonial-image-bar.scss */
  .testimonial-image-bar {
    flex-wrap: wrap;
  }
  /* line 84, /app/app/assets/stylesheets/shared/testimonial-image-bar.scss */
  .testimonial-image-bar .tib-quote,
  .testimonial-image-bar .tib-image {
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
  }
  /* line 91, /app/app/assets/stylesheets/shared/testimonial-image-bar.scss */
  .testimonial-image-bar .tib-image {
    background-position: center 22%;
  }
}

/* line 1, /app/app/assets/stylesheets/shared/testimonial_quote.scss */
blockquote.testimonial-quote {
  max-width: 640px;
}
/* line 4, /app/app/assets/stylesheets/shared/testimonial_quote.scss */
blockquote.testimonial-quote p {
  font-family: "Lora", Times, serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  margin-top: 25px;
  margin-bottom: 12px;
}
@media screen and (max-width: 1100px) {
  /* line 4, /app/app/assets/stylesheets/shared/testimonial_quote.scss */
  blockquote.testimonial-quote p {
    font-size: 28px;
  }
}
@media screen and (max-width: 1024px) {
  /* line 4, /app/app/assets/stylesheets/shared/testimonial_quote.scss */
  blockquote.testimonial-quote p {
    font-size: 26px;
  }
}
/* line 21, /app/app/assets/stylesheets/shared/testimonial_quote.scss */
blockquote.testimonial-quote cite {
  display: block;
  line-height: 1;
  letter-spacing: 1px;
  font-family: "Times New Roman", Times, serif;
  font-size: 14px;
  font-weight: 600;
  font-style: italic;
  margin-top: 12px;
  text-transform: uppercase;
  color: #99762a;
}
/* line 33, /app/app/assets/stylesheets/shared/testimonial_quote.scss */
blockquote.testimonial-quote cite span {
  display: block;
  font-family: "Lato", Helvetica, arial, sans-serif;
  font-size: 11px;
  color: #5d5f63;
  padding-top: 5px;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0.5px;
}

/* line 1, /app/app/assets/stylesheets/shared/testimonial_rotator.scss */
.testimonial-rotator {
  position: relative;
  overflow: hidden;
}
/* line 5, /app/app/assets/stylesheets/shared/testimonial_rotator.scss */
.testimonial-rotator .rotator-inner {
  display: flex;
  justify-content: flex-end;
  background-color: #e4dcce;
}
/* line 11, /app/app/assets/stylesheets/shared/testimonial_rotator.scss */
.testimonial-rotator .testimonial-slide {
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-items: flex-end;
  width: 67%;
  padding: 50px 0 80px;
}
/* line 22, /app/app/assets/stylesheets/shared/testimonial_rotator.scss */
.testimonial-rotator .testimonials-right {
  width: 33%;
  max-width: 460px;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
/* line 29, /app/app/assets/stylesheets/shared/testimonial_rotator.scss */
.testimonial-rotator .testimonials-right button {
  left: -75px;
}
/* line 34, /app/app/assets/stylesheets/shared/testimonial_rotator.scss */
.testimonial-rotator .testimonial-content {
  display: flex;
  align-items: center;
  align-content: center;
  position: absolute;
  visibility: hidden;
  overflow: visible;
  opacity: 0;
  left: 0;
  justify-content: center;
  padding: 0 50px;
}
/* line 46, /app/app/assets/stylesheets/shared/testimonial_rotator.scss */
.testimonial-rotator .testimonial-content .testimonial-image {
  opacity: 0;
  padding-right: 40px;
}
/* line 50, /app/app/assets/stylesheets/shared/testimonial_rotator.scss */
.testimonial-rotator .testimonial-content .testimonial-image img {
  display: block;
  height: 100%;
  max-height: 220px;
  width: auto;
  opacity: 0.75;
}
/* line 59, /app/app/assets/stylesheets/shared/testimonial_rotator.scss */
.testimonial-rotator .testimonial-content .testimonial-text {
  opacity: 0;
}
/* line 63, /app/app/assets/stylesheets/shared/testimonial_rotator.scss */
.testimonial-rotator .testimonial-content .testimonial-text .testimonial-quote p {
  margin-top: 0;
}
/* line 69, /app/app/assets/stylesheets/shared/testimonial_rotator.scss */
.testimonial-rotator .testimonial-content.active-slide {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}
/* line 74, /app/app/assets/stylesheets/shared/testimonial_rotator.scss */
.testimonial-rotator .testimonial-content.active-slide .testimonial-text,
.testimonial-rotator .testimonial-content.active-slide .testimonial-image {
  opacity: 1;
}
/* line 82, /app/app/assets/stylesheets/shared/testimonial_rotator.scss */
.testimonial-rotator blockquote.testimonial-quote p {
  font-size: 34px;
}
@media screen and (max-width: 1100px) {
  /* line 82, /app/app/assets/stylesheets/shared/testimonial_rotator.scss */
  .testimonial-rotator blockquote.testimonial-quote p {
    font-size: 28px;
  }
}
@media screen and (max-width: 1024px) {
  /* line 82, /app/app/assets/stylesheets/shared/testimonial_rotator.scss */
  .testimonial-rotator blockquote.testimonial-quote p {
    font-size: 26px;
  }
}
/* line 95, /app/app/assets/stylesheets/shared/testimonial_rotator.scss */
.testimonial-rotator button {
  position: absolute;
  left: -75px;
  line-height: 75px;
  bottom: 0;
  padding: 0 0 0 80px;
}
/* line 102, /app/app/assets/stylesheets/shared/testimonial_rotator.scss */
.testimonial-rotator button span {
  padding: 0 60px;
  transition: color 0.3s ease;
}
/* line 108, /app/app/assets/stylesheets/shared/testimonial_rotator.scss */
.testimonial-rotator button:hover span {
  color: #057D7F;
}
/* line 114, /app/app/assets/stylesheets/shared/testimonial_rotator.scss */
.testimonial-rotator .more-button {
  padding: 20px 32px 0;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (min-width: 1960px) {
  /* line 114, /app/app/assets/stylesheets/shared/testimonial_rotator.scss */
  .testimonial-rotator .more-button {
    max-width: 1600px;
  }
}
/* line 123, /app/app/assets/stylesheets/shared/testimonial_rotator.scss */
.testimonial-rotator .more-button a {
  display: inline-block;
  font-family: "Lato", Helvetica, arial, sans-serif;
  text-transform: uppercase;
  color: #99752f;
  font-size: 16px;
  letter-spacing: 2px;
  position: relative;
  padding-right: 20px;
}
/* line 133, /app/app/assets/stylesheets/shared/testimonial_rotator.scss */
.testimonial-rotator .more-button a::after {
  content: '';
  border-left: 10px solid #99762a;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  margin-top: -5px;
  right: 0;
  transition: all 0.3s ease;
}
/* line 145, /app/app/assets/stylesheets/shared/testimonial_rotator.scss */
.testimonial-rotator .more-button a:hover {
  color: #7a5d25;
}
/* line 148, /app/app/assets/stylesheets/shared/testimonial_rotator.scss */
.testimonial-rotator .more-button a:hover::after {
  transform: translateX(12px);
}
@media screen and (max-width: 420px) {
  /* line 123, /app/app/assets/stylesheets/shared/testimonial_rotator.scss */
  .testimonial-rotator .more-button a {
    font-size: 14px;
    letter-spacing: 1px;
  }
}
@media screen and (max-width: 960px) {
  /* line 161, /app/app/assets/stylesheets/shared/testimonial_rotator.scss */
  .testimonial-rotator .testimonial-slide {
    padding-bottom: 112px;
  }
}
@media screen and (max-width: 880px) {
  /* line 167, /app/app/assets/stylesheets/shared/testimonial_rotator.scss */
  .testimonial-rotator .testimonial-slide {
    width: 100%;
  }
  /* line 170, /app/app/assets/stylesheets/shared/testimonial_rotator.scss */
  .testimonial-rotator .testimonials-right {
    width: 0;
  }
  /* line 173, /app/app/assets/stylesheets/shared/testimonial_rotator.scss */
  .testimonial-rotator .testimonials-right button {
    left: auto;
    right: 0;
  }
}
@media screen and (max-width: 580px) {
  /* line 181, /app/app/assets/stylesheets/shared/testimonial_rotator.scss */
  .testimonial-rotator .testimonial-image {
    height: 160px;
  }
  /* line 185, /app/app/assets/stylesheets/shared/testimonial_rotator.scss */
  .testimonial-rotator blockquote p {
    font-size: 26px;
  }
}
@media screen and (max-width: 480px) {
  /* line 191, /app/app/assets/stylesheets/shared/testimonial_rotator.scss */
  .testimonial-rotator .testimonial-content {
    flex-wrap: wrap;
  }
  /* line 194, /app/app/assets/stylesheets/shared/testimonial_rotator.scss */
  .testimonial-rotator .testimonial-content .testimonial-image {
    height: 180px;
    width: 100%;
    padding-right: 0;
    padding-bottom: 24px;
  }
  /* line 200, /app/app/assets/stylesheets/shared/testimonial_rotator.scss */
  .testimonial-rotator .testimonial-content .testimonial-image img {
    margin: auto;
  }
  /* line 204, /app/app/assets/stylesheets/shared/testimonial_rotator.scss */
  .testimonial-rotator .testimonial-content .testimonial-text {
    padding-left: 0;
    width: 100%;
    text-align: center;
  }
  /* line 211, /app/app/assets/stylesheets/shared/testimonial_rotator.scss */
  .testimonial-rotator blockquote p {
    font-size: 26px;
  }
}

@media screen and (min-width: 768px) {
  /* line 1, /app/app/assets/stylesheets/shared/testimonials_list.scss */
  .testimonials-list {
    margin-left: 12px;
  }
}
/* line 6, /app/app/assets/stylesheets/shared/testimonials_list.scss */
.testimonials-list li {
  position: relative;
  margin-bottom: 70px;
  padding-left: 32px;
  max-width: 800px;
}
/* line 12, /app/app/assets/stylesheets/shared/testimonials_list.scss */
.testimonials-list li::before {
  content: '';
  width: 4px;
  height: 32px;
  background-color: #262626;
  position: absolute;
  top: 6px;
  left: 0;
}
/* line 22, /app/app/assets/stylesheets/shared/testimonials_list.scss */
.testimonials-list li p {
  margin-bottom: 0;
  display: inline;
}
/* line 27, /app/app/assets/stylesheets/shared/testimonials_list.scss */
.testimonials-list li cite {
  margin-top: 10px;
  display: block;
  font-size: 14px;
  font-weight: 600;
  font-style: italic;
  color: #99762a;
  text-transform: uppercase;
  letter-spacing: 1px;
  max-width: 300px;
}

/* line 40, /app/app/assets/stylesheets/shared/testimonials_list.scss */
.testimonials__list {
  padding-top: 40px;
  padding-bottom: 200px;
}

/* line 44, /app/app/assets/stylesheets/shared/testimonials_list.scss */
.testimonial {
  position: relative;
  padding: 40px 0 0 0;
  margin: 0px 0 40px 0;
  max-width: 900px;
}
@media screen and (min-width: 420px) {
  /* line 44, /app/app/assets/stylesheets/shared/testimonials_list.scss */
  .testimonial {
    padding: 0 0 0 50px;
  }
}
/* line 54, /app/app/assets/stylesheets/shared/testimonials_list.scss */
.testimonial:before {
  content: "\201C";
  position: absolute;
  line-height: 72px;
  width: 40px;
  height: 40px;
  font-family: "Times New Roman", Times, serif;
  font-size: 72px;
  left: 0;
  top: 0;
  border-radius: 100%;
  color: #d4c0a1;
}
/* line 68, /app/app/assets/stylesheets/shared/testimonials_list.scss */
.testimonial__quote {
  padding: 0;
}
/* line 71, /app/app/assets/stylesheets/shared/testimonials_list.scss */
.testimonial__quote p {
  padding: 8px 0 0 0;
}
/* line 75, /app/app/assets/stylesheets/shared/testimonials_list.scss */
.testimonial__meta {
  display: flex;
  margin: 28px 0 0 0;
}
/* line 79, /app/app/assets/stylesheets/shared/testimonials_list.scss */
.testimonial__img {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background-color: #e4dcce;
  background-size: cover;
  opacity: .8;
}
/* line 88, /app/app/assets/stylesheets/shared/testimonials_list.scss */
.testimonial__author {
  margin: 4px 0 0 24px;
}
/* line 91, /app/app/assets/stylesheets/shared/testimonials_list.scss */
.testimonial__author h4 {
  font-weight: normal;
  font-size: 15px;
  margin: 0 0 5px 0;
}
@media screen and (min-width: 420px) {
  /* line 91, /app/app/assets/stylesheets/shared/testimonials_list.scss */
  .testimonial__author h4 {
    font-size: 15px;
  }
}
/* line 100, /app/app/assets/stylesheets/shared/testimonials_list.scss */
.testimonial__author span {
  display: block;
  font-family: "Lato", Helvetica, arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  color: #99762a;
  letter-spacing: 1px;
}
@media screen and (min-width: 420px) {
  /* line 100, /app/app/assets/stylesheets/shared/testimonials_list.scss */
  .testimonial__author span {
    font-size: 12px;
  }
}

/* line 2, /app/app/assets/stylesheets/shared/text_block.scss */
.text-block {
  max-width: 768px;
  margin-bottom: 48px;
}

/* line 1, /app/app/assets/stylesheets/shared/thumb-title-play-icon.scss */
.thumb-title-wrapper {
  position: absolute;
  width: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
/* line 9, /app/app/assets/stylesheets/shared/thumb-title-play-icon.scss */
.thumb-title-wrapper .thumb-title {
  position: absolute;
  display: flex;
  align-items: center;
  text-align: left;
  bottom: 40px !important;
  left: 40px !important;
  right: auto;
}
/* line 18, /app/app/assets/stylesheets/shared/thumb-title-play-icon.scss */
.thumb-title-wrapper .thumb-title .icon-play {
  transition: transform 0.3s ease;
  width: 60px !important;
  height: 60px !important;
  bottom: auto !important;
  left: auto !important;
  margin: 0 !important;
  position: relative;
}
/* line 28, /app/app/assets/stylesheets/shared/thumb-title-play-icon.scss */
.thumb-title-wrapper .thumb-title h3 {
  color: #ffffff;
  font-family: "Times New Roman", Times, serif;
  font-style: italic;
  font-weight: bold;
  font-size: 30px;
  margin-bottom: 0;
  margin-left: 20px;
  padding: 0 30px 0 0;
  text-align: left !important;
}
/* line 39, /app/app/assets/stylesheets/shared/thumb-title-play-icon.scss */
.thumb-title-wrapper .thumb-title h3 span {
  display: block;
  font-family: "Lato", Helvetica, arial, sans-serif;
  color: #e0b76c;
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
}
@media screen and (max-width: 1100px) {
  /* line 50, /app/app/assets/stylesheets/shared/thumb-title-play-icon.scss */
  .thumb-title-wrapper .thumb-title h3 {
    font-size: 26px;
  }
}
@media screen and (max-width: 600px) {
  /* line 9, /app/app/assets/stylesheets/shared/thumb-title-play-icon.scss */
  .thumb-title-wrapper .thumb-title {
    bottom: 20px !important;
    left: 20px !important;
    display: block;
  }
  /* line 60, /app/app/assets/stylesheets/shared/thumb-title-play-icon.scss */
  .thumb-title-wrapper .thumb-title .icon-play {
    margin-bottom: 8px !important;
    height: 50px !important;
    width: 50px !important;
  }
  /* line 66, /app/app/assets/stylesheets/shared/thumb-title-play-icon.scss */
  .thumb-title-wrapper .thumb-title h3 {
    margin-left: 0;
  }
}
/* line 74, /app/app/assets/stylesheets/shared/thumb-title-play-icon.scss */
.thumb-title-wrapper:hover .thumb-title .icon-play {
  transform: scale(1.1);
  transition: 0.3s ease;
}

/* line 1, /app/app/assets/stylesheets/shared/title_blocks.scss */
.title-blocks {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 40px;
}
/* line 7, /app/app/assets/stylesheets/shared/title_blocks.scss */
.title-blocks .t-block {
  width: 33%;
  max-width: 360px;
  padding: 20px;
}
/* line 12, /app/app/assets/stylesheets/shared/title_blocks.scss */
.title-blocks .t-block h3 {
  display: inline-block;
  position: relative;
  z-index: 1;
  margin-bottom: 19px;
  padding: 11px 8px 8px 12px;
  line-height: 1;
  letter-spacing: 0.1em;
  font-family: "Lato", Helvetica, arial, sans-serif;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
}
/* line 25, /app/app/assets/stylesheets/shared/title_blocks.scss */
.title-blocks .t-block h3::before {
  display: inline-block;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  border: solid 3px #057D7F;
  width: 1.4em;
  height: 1.4em;
  content: '';
}
/* line 37, /app/app/assets/stylesheets/shared/title_blocks.scss */
.title-blocks .t-block h6 {
  margin-bottom: 16px;
  line-height: 1;
  font-family: "Times New Roman", Times, serif;
  font-size: 16px;
  font-weight: 600;
  font-style: italic;
  text-transform: uppercase;
  color: #99762a;
}
/* line 47, /app/app/assets/stylesheets/shared/title_blocks.scss */
.title-blocks .t-block p {
  margin: 0;
  line-height: 1.5;
  font-family: "Lora", Times, serif;
  font-size: 15px;
}
@media screen and (max-width: 1060px) {
  /* line 57, /app/app/assets/stylesheets/shared/title_blocks.scss */
  .title-blocks .t-block h3 {
    font-size: 32px;
  }
  /* line 61, /app/app/assets/stylesheets/shared/title_blocks.scss */
  .title-blocks .t-block h6 {
    font-size: 15px;
  }
}
@media screen and (max-width: 1023px) {
  /* line 68, /app/app/assets/stylesheets/shared/title_blocks.scss */
  .title-blocks .t-block {
    width: 50%;
  }
  /* line 71, /app/app/assets/stylesheets/shared/title_blocks.scss */
  .title-blocks .t-block h3 {
    font-size: 30px;
  }
}
@media screen and (max-width: 860px) {
  /* line 78, /app/app/assets/stylesheets/shared/title_blocks.scss */
  .title-blocks .t-block h3 {
    font-size: 26px;
  }
}
@media screen and (max-width: 768px) {
  /* line 1, /app/app/assets/stylesheets/shared/title_blocks.scss */
  .title-blocks {
    justify-content: center;
  }
  /* line 87, /app/app/assets/stylesheets/shared/title_blocks.scss */
  .title-blocks .t-block p {
    font-size: 15px;
  }
}
@media screen and (max-width: 680px) {
  /* line 94, /app/app/assets/stylesheets/shared/title_blocks.scss */
  .title-blocks .t-block {
    width: 100%;
    text-align: center;
  }
}

/* line 1, /app/app/assets/stylesheets/shared/title_centered.scss */
.title-centered {
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (min-width: 768px) {
  /* line 1, /app/app/assets/stylesheets/shared/title_centered.scss */
  .title-centered {
    padding-left: 40px;
    padding-right: 40px;
    margin-bottom: 60px;
  }
}
/* line 13, /app/app/assets/stylesheets/shared/title_centered.scss */
.title-centered__header {
  position: relative;
  width: 100%;
  max-width: 1000px;
  text-align: center;
  margin: 0px auto -20px auto;
  padding: 40px 0px 0 0px;
}
@media screen and (min-width: 600px) {
  /* line 13, /app/app/assets/stylesheets/shared/title_centered.scss */
  .title-centered__header {
    margin: 0px auto -20px auto;
    padding: 40px 40px 0 40px;
  }
}
@media screen and (min-width: 768px) {
  /* line 13, /app/app/assets/stylesheets/shared/title_centered.scss */
  .title-centered__header {
    margin: 40px auto 0px auto;
  }
}
/* line 29, /app/app/assets/stylesheets/shared/title_centered.scss */
.title-centered__header p {
  position: relative;
  z-index: 44;
  max-width: 650px;
  margin: 30px auto 0 auto;
}
/* line 37, /app/app/assets/stylesheets/shared/title_centered.scss */
.title-centered__title {
  position: relative;
  z-index: 42;
  font-family: "Lato", Helvetica, arial, sans-serif;
  color: #262626;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 30px;
  line-height: 38px;
  letter-spacing: 2px;
  padding: 30px 0 0 0;
}
@media screen and (min-width: 600px) {
  /* line 37, /app/app/assets/stylesheets/shared/title_centered.scss */
  .title-centered__title {
    font-size: 36px;
    line-height: 48px;
  }
}
@media screen and (min-width: 1024px) {
  /* line 37, /app/app/assets/stylesheets/shared/title_centered.scss */
  .title-centered__title {
    font-size: 48px;
    line-height: 58px;
  }
}
/* line 60, /app/app/assets/stylesheets/shared/title_centered.scss */
.title-centered__subtitle {
  position: absolute;
  z-index: 43;
  left: 0;
  right: 0;
  margin: auto;
  bottom: calc(100% - 55px);
  max-width: 300px;
  font-family: "Lato", Helvetica, arial, sans-serif;
  color: #057D7F;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: normal;
  line-height: 20px;
  letter-spacing: 4px;
}
@media screen and (min-width: 600px) {
  /* line 60, /app/app/assets/stylesheets/shared/title_centered.scss */
  .title-centered__subtitle {
    max-width: 500px;
    font-size: 18px;
    line-height: 22px;
  }
}
@media screen and (min-width: 1024px) {
  /* line 60, /app/app/assets/stylesheets/shared/title_centered.scss */
  .title-centered__subtitle {
    max-width: 600px;
    font-size: 24px;
    line-height: 29px;
  }
}
/* line 89, /app/app/assets/stylesheets/shared/title_centered.scss */
.title-centered__bracket--left {
  display: none;
  position: absolute;
  left: 0;
  top: 40px;
  width: 90px;
  height: 60%;
  border: 3px solid #c4c4c4;
}
@media screen and (min-width: 768px) {
  /* line 89, /app/app/assets/stylesheets/shared/title_centered.scss */
  .title-centered__bracket--left {
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  /* line 89, /app/app/assets/stylesheets/shared/title_centered.scss */
  .title-centered__bracket--left {
    width: 124px;
    height: 118px;
    border: 4px solid #c4c4c4;
  }
}
/* line 108, /app/app/assets/stylesheets/shared/title_centered.scss */
.title-centered__bracket--left:after {
  content: "";
  position: absolute;
  right: -4px;
  top: 0px;
  width: 58px;
  height: 114px;
  background-color: #f8f3ea;
}
/* line 118, /app/app/assets/stylesheets/shared/title_centered.scss */
.title-centered__bracket--right {
  display: none;
  position: absolute;
  right: 0;
  top: 40px;
  width: 90px;
  height: 60%;
  border: 3px solid #c4c4c4;
}
@media screen and (min-width: 768px) {
  /* line 118, /app/app/assets/stylesheets/shared/title_centered.scss */
  .title-centered__bracket--right {
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  /* line 118, /app/app/assets/stylesheets/shared/title_centered.scss */
  .title-centered__bracket--right {
    width: 124px;
    height: 118px;
    border: 4px solid #c4c4c4;
  }
}
/* line 136, /app/app/assets/stylesheets/shared/title_centered.scss */
.title-centered__bracket--right:after {
  content: "";
  position: absolute;
  left: -4px;
  top: 0px;
  width: 58px;
  height: 114px;
  background-color: #f8f3ea;
}

/* line 2, /app/app/assets/stylesheets/shared/travis_story.scss */
.travis-story .story-heading {
  margin-bottom: 50px;
  max-width: 680px;
}
/* line 6, /app/app/assets/stylesheets/shared/travis_story.scss */
.travis-story .story-heading h1 {
  font-size: 48px;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 10px;
}
/* line 13, /app/app/assets/stylesheets/shared/travis_story.scss */
.travis-story .story-heading h2 {
  font-size: 18px;
  margin-bottom: 16px;
  max-width: 640px;
}
/* line 19, /app/app/assets/stylesheets/shared/travis_story.scss */
.travis-story .story-heading cite {
  font-size: 14px;
  font-weight: bold;
  font-style: italic;
  font-family: "Times New Roman", Times, serif;
}
/* line 25, /app/app/assets/stylesheets/shared/travis_story.scss */
.travis-story .story-heading cite span {
  font-weight: normal;
}
/* line 29, /app/app/assets/stylesheets/shared/travis_story.scss */
.travis-story .story-heading cite a {
  text-transform: uppercase;
}
@media screen and (max-width: 500px) {
  /* line 35, /app/app/assets/stylesheets/shared/travis_story.scss */
  .travis-story .story-heading h1 {
    font-size: 30px;
  }
  /* line 39, /app/app/assets/stylesheets/shared/travis_story.scss */
  .travis-story .story-heading h2 {
    font-size: 16px;
  }
}
/* line 45, /app/app/assets/stylesheets/shared/travis_story.scss */
.travis-story h3 {
  font-size: 18px;
  line-height: 1.5;
  max-width: 480px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 25px;
}
/* line 54, /app/app/assets/stylesheets/shared/travis_story.scss */
.travis-story .inner-page-video-wrapper {
  max-width: 640px;
}
@media screen and (max-width: 767px) {
  /* line 54, /app/app/assets/stylesheets/shared/travis_story.scss */
  .travis-story .inner-page-video-wrapper {
    width: calc(100% + 64px);
    max-width: none;
    margin-left: -32px;
    margin-bottom: 40px;
  }
}
/* line 67, /app/app/assets/stylesheets/shared/travis_story.scss */
.travis-story .vid-wrap .preserve-aspect > iframe,
.travis-story .vid-wrap .preserve-aspect > div {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* line 80, /app/app/assets/stylesheets/shared/travis_story.scss */
.travis-story blockquote {
  margin-left: 40px;
  position: relative;
}
/* line 84, /app/app/assets/stylesheets/shared/travis_story.scss */
.travis-story blockquote::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 40%;
  background-color: #99752f;
}
/* line 95, /app/app/assets/stylesheets/shared/travis_story.scss */
.travis-story blockquote p {
  font-size: 20px;
  padding-left: 40px;
  font-style: italic;
  max-width: 480px;
}
@media screen and (max-width: 500px) {
  /* line 80, /app/app/assets/stylesheets/shared/travis_story.scss */
  .travis-story blockquote {
    margin-left: 0;
  }
  /* line 105, /app/app/assets/stylesheets/shared/travis_story.scss */
  .travis-story blockquote::before {
    width: 3px;
  }
  /* line 109, /app/app/assets/stylesheets/shared/travis_story.scss */
  .travis-story blockquote p {
    font-size: 18px;
    padding-left: 32px;
  }
}
/* line 116, /app/app/assets/stylesheets/shared/travis_story.scss */
.travis-story ul {
  list-style: none;
  padding-left: 40px;
  margin-bottom: 0;
  font-family: "Lora", Times, serif;
}
/* line 122, /app/app/assets/stylesheets/shared/travis_story.scss */
.travis-story ul li {
  position: relative;
  margin-bottom: 20px;
  padding-left: 40px;
  max-width: 520px;
}
/* line 128, /app/app/assets/stylesheets/shared/travis_story.scss */
.travis-story ul li:last-child {
  margin-bottom: 25px;
}
/* line 132, /app/app/assets/stylesheets/shared/travis_story.scss */
.travis-story ul li::before {
  content: '';
  position: absolute;
  height: 6px;
  width: 6px;
  background-color: #99752f;
  border-radius: 50%;
  top: 10px;
  left: 0;
}
@media screen and (max-width: 500px) {
  /* line 116, /app/app/assets/stylesheets/shared/travis_story.scss */
  .travis-story ul {
    padding-left: 0;
  }
  /* line 147, /app/app/assets/stylesheets/shared/travis_story.scss */
  .travis-story ul li {
    padding-left: 32px;
  }
}

/* line 1, /app/app/assets/stylesheets/shared/tri_cta_cards.scss */
.tri-cta-cards {
  background-color: #e4dcce;
  padding-top: 50px;
}
/* line 5, /app/app/assets/stylesheets/shared/tri_cta_cards.scss */
.tri-cta-cards h2 {
  font-weight: 600;
  margin-bottom: 0;
  font-size: 24px;
  text-transform: uppercase;
}
/* line 12, /app/app/assets/stylesheets/shared/tri_cta_cards.scss */
.tri-cta-cards .tri-cta-cards-inner {
  display: flex;
  justify-content: center;
  padding-top: 50px;
  margin-bottom: 270px;
}
/* line 19, /app/app/assets/stylesheets/shared/tri_cta_cards.scss */
.tri-cta-cards .cta-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin: 0 10px;
  margin-bottom: -160px;
  max-width: 296px;
  min-height: 468px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 20px;
  text-align: center;
  color: #ffffff;
}
/* line 36, /app/app/assets/stylesheets/shared/tri_cta_cards.scss */
.tri-cta-cards .cta-card::after {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(38, 38, 38, 0.09) 0%, #262626 100%);
  content: '';
}
/* line 47, /app/app/assets/stylesheets/shared/tri_cta_cards.scss */
.tri-cta-cards .cta-card > div {
  display: inline-flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
/* line 54, /app/app/assets/stylesheets/shared/tri_cta_cards.scss */
.tri-cta-cards .cta-card .svg-wrap {
  margin-bottom: 24px;
}
/* line 58, /app/app/assets/stylesheets/shared/tri_cta_cards.scss */
.tri-cta-cards .cta-card svg {
  height: 36px;
  max-height: 36px;
  fill: #ffffff;
}
/* line 64, /app/app/assets/stylesheets/shared/tri_cta_cards.scss */
.tri-cta-cards .cta-card .title-wrap {
  margin-bottom: 32px;
}
/* line 68, /app/app/assets/stylesheets/shared/tri_cta_cards.scss */
.tri-cta-cards .cta-card h3 {
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: 2px;
  font-family: "Lato", Helvetica, arial, sans-serif;
  font-size: 26px;
  text-transform: uppercase;
}
/* line 76, /app/app/assets/stylesheets/shared/tri_cta_cards.scss */
.tri-cta-cards .cta-card h3 span {
  display: block;
  font-family: inherit;
  font-size: inherit;
}
/* line 83, /app/app/assets/stylesheets/shared/tri_cta_cards.scss */
.tri-cta-cards .cta-card span {
  font-family: "Lato", Helvetica, arial, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
}
/* line 89, /app/app/assets/stylesheets/shared/tri_cta_cards.scss */
.tri-cta-cards .cta-card p {
  margin: 0 auto;
  max-width: 240px;
  line-height: 1.6;
  font-family: "Lato", Helvetica, arial, sans-serif;
  font-size: 18px;
  color: #e4dcce;
}
@media screen and (max-width: 920px) {
  /* line 100, /app/app/assets/stylesheets/shared/tri_cta_cards.scss */
  .tri-cta-cards .tri-cta-cards-inner {
    flex-wrap: wrap;
  }
  /* line 104, /app/app/assets/stylesheets/shared/tri_cta_cards.scss */
  .tri-cta-cards .cta-card {
    flex: unset;
    flex-direction: row;
    width: 100%;
    max-width: 720px;
    min-height: unset;
    text-align: left;
  }
  /* line 113, /app/app/assets/stylesheets/shared/tri_cta_cards.scss */
  .tri-cta-cards .cta-card h3 span {
    display: inline-block;
  }
  /* line 118, /app/app/assets/stylesheets/shared/tri_cta_cards.scss */
  .tri-cta-cards .cta-card:not(:last-child) {
    margin-bottom: 20px;
  }
  /* line 122, /app/app/assets/stylesheets/shared/tri_cta_cards.scss */
  .tri-cta-cards .cta-card .svg-wrap {
    min-width: 80px;
    margin: 0 40px;
  }
  /* line 127, /app/app/assets/stylesheets/shared/tri_cta_cards.scss */
  .tri-cta-cards .cta-card p {
    margin: 0;
    max-width: 320px;
  }
}
@media screen and (max-width: 640px) {
  /* line 135, /app/app/assets/stylesheets/shared/tri_cta_cards.scss */
  .tri-cta-cards .cta-card {
    flex-direction: column;
    text-align: center;
  }
  /* line 139, /app/app/assets/stylesheets/shared/tri_cta_cards.scss */
  .tri-cta-cards .cta-card .svg-wrap {
    min-width: 80px;
    margin: 0 0 20px 0;
  }
  /* line 144, /app/app/assets/stylesheets/shared/tri_cta_cards.scss */
  .tri-cta-cards .cta-card p {
    margin: 0 auto;
    max-width: 240px;
  }
}

/* line 1, /app/app/assets/stylesheets/shared/typography.scss */
body {
  font-size: 17px;
  line-height: 1.6;
}

/* line 6, /app/app/assets/stylesheets/shared/typography.scss */
p, ol, ul {
  font-size: 17px;
  line-height: 1.6;
}

/* line 11, /app/app/assets/stylesheets/shared/typography.scss */
p {
  font-family: "Lora", Times, serif;
}

/* line 15, /app/app/assets/stylesheets/shared/typography.scss */
ol {
  margin-left: 40px;
  list-style: decimal;
}
/* line 19, /app/app/assets/stylesheets/shared/typography.scss */
ol li {
  font-family: inherit;
  font-size: inherit;
  padding-left: 16px;
  margin-bottom: 12px;
}

/* line 27, /app/app/assets/stylesheets/shared/typography.scss */
em {
  font-style: italic;
}

/* line 31, /app/app/assets/stylesheets/shared/typography.scss */
strong {
  font-weight: 600;
}

/* line 35, /app/app/assets/stylesheets/shared/typography.scss */
a {
  color: #99752f;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* line 40, /app/app/assets/stylesheets/shared/typography.scss */
a:focus {
  border: none;
  outline: none;
}

/* line 44, /app/app/assets/stylesheets/shared/typography.scss */
a:hover, a:active {
  color: #057D7F;
}

/* line 47, /app/app/assets/stylesheets/shared/typography.scss */
h1, h2, h3, h4, h5, h6 {
  color: inherit;
  font-family: "Lato", Helvetica, arial, sans-serif;
  line-height: 1.2;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* line 55, /app/app/assets/stylesheets/shared/typography.scss */
h1 {
  font-size: 46px;
}

/* line 58, /app/app/assets/stylesheets/shared/typography.scss */
h2 {
  font-size: 34px;
}

/* line 61, /app/app/assets/stylesheets/shared/typography.scss */
h3, h4, h5, h6 {
  margin: 0 0 12px;
}
/* line 64, /app/app/assets/stylesheets/shared/typography.scss */
h3 a, h4 a, h5 a, h6 a {
  border-bottom: none;
  color: #262626;
}

/* line 70, /app/app/assets/stylesheets/shared/typography.scss */
h2 a, h3 a, h4 a, h5 a {
  color: #262626;
  text-decoration: none;
}
/* line 74, /app/app/assets/stylesheets/shared/typography.scss */
h2 a:hover, h2 a:focus, h3 a:hover, h3 a:focus, h4 a:hover, h4 a:focus, h5 a:hover, h5 a:focus {
  color: #99752f;
}

/* line 79, /app/app/assets/stylesheets/shared/typography.scss */
.bold {
  font-weight: 600;
}

/* line 82, /app/app/assets/stylesheets/shared/typography.scss */
.text-center,
.center-text {
  text-align: center;
}

/* line 88, /app/app/assets/stylesheets/shared/typography.scss */
.subhead-heading h3 {
  font-size: 32px;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 16px;
}
/* line 94, /app/app/assets/stylesheets/shared/typography.scss */
.subhead-heading h3 span {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  font-family: "Times New Roman", Times, serif;
  font-size: 14px;
  color: #99752f;
  font-style: italic;
  letter-spacing: 1px;
}

/* line 108, /app/app/assets/stylesheets/shared/typography.scss */
.divider {
  display: block;
  max-width: 960px;
  margin: 0 auto 100px;
}
/* line 113, /app/app/assets/stylesheets/shared/typography.scss */
.divider::before {
  content: '';
  display: block;
  width: 30%;
  max-width: 300px;
  height: 3px;
  margin: auto;
  background-color: #d4c0a1;
}
@media screen and (max-width: 768px) {
  /* line 108, /app/app/assets/stylesheets/shared/typography.scss */
  .divider {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 620px) {
  /* line 108, /app/app/assets/stylesheets/shared/typography.scss */
  .divider {
    margin-bottom: 60px;
  }
}
/* line 131, /app/app/assets/stylesheets/shared/typography.scss */
.divider.less-space-below {
  margin-bottom: 50px;
}

/* line 136, /app/app/assets/stylesheets/shared/typography.scss */
.two-column-copy + .divider {
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  /* line 136, /app/app/assets/stylesheets/shared/typography.scss */
  .two-column-copy + .divider {
    display: none;
  }
}

/* line 144, /app/app/assets/stylesheets/shared/typography.scss */
.two-column-copy {
  max-width: 960px;
  column-count: 2;
  column-width: 280px;
  column-gap: 50px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  /* line 144, /app/app/assets/stylesheets/shared/typography.scss */
  .two-column-copy {
    column-count: 1;
    column-gap: 0;
  }
  /* line 155, /app/app/assets/stylesheets/shared/typography.scss */
  .two-column-copy p {
    max-width: 580px;
  }
  /* line 158, /app/app/assets/stylesheets/shared/typography.scss */
  .two-column-copy p:last-of-type {
    margin-bottom: 0;
  }
}

/* line 165, /app/app/assets/stylesheets/shared/typography.scss */
.one-column-copy {
  max-width: 680px;
}

/* line 169, /app/app/assets/stylesheets/shared/typography.scss */
.page-heading {
  margin-bottom: 50px;
  line-height: 1.2;
}
/* line 173, /app/app/assets/stylesheets/shared/typography.scss */
.page-heading h1, .page-heading h2, .page-heading h3, .page-heading span, .page-heading time {
  font-family: "Lato", Helvetica, arial, sans-serif;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.2;
  max-width: 768px;
}
/* line 181, /app/app/assets/stylesheets/shared/typography.scss */
.page-heading h2,
.page-heading span,
.page-heading time {
  font-size: 24px;
  font-weight: 400;
  color: #057D7F;
  display: block;
  margin-bottom: 0;
}
/* line 191, /app/app/assets/stylesheets/shared/typography.scss */
.page-heading time {
  font-size: 16px;
  margin-bottom: 10px;
}
/* line 196, /app/app/assets/stylesheets/shared/typography.scss */
.page-heading h1,
.page-heading h3 {
  font-size: 46px;
}
/* line 201, /app/app/assets/stylesheets/shared/typography.scss */
.page-heading.smaller-heading {
  font-size: 30px;
}
/* line 204, /app/app/assets/stylesheets/shared/typography.scss */
.page-heading.smaller-heading h1,
.page-heading.smaller-heading h3 {
  font-size: 30px;
}
/* line 209, /app/app/assets/stylesheets/shared/typography.scss */
.page-heading.smaller-heading span,
.page-heading.smaller-heading time {
  font-size: 20px;
}
@media screen and (max-width: 540px) {
  /* line 216, /app/app/assets/stylesheets/shared/typography.scss */
  .page-heading h2,
  .page-heading span {
    font-size: 20px;
  }
  /* line 220, /app/app/assets/stylesheets/shared/typography.scss */
  .page-heading h1,
  .page-heading h3 {
    font-size: 36px;
  }
  /* line 226, /app/app/assets/stylesheets/shared/typography.scss */
  .page-heading.smaller-heading span,
  .page-heading.smaller-heading time {
    letter-spacing: 1px;
    font-size: 16px;
  }
}
@media screen and (max-width: 430px) {
  /* line 235, /app/app/assets/stylesheets/shared/typography.scss */
  .page-heading h2,
  .page-heading span {
    font-size: 16px;
  }
  /* line 239, /app/app/assets/stylesheets/shared/typography.scss */
  .page-heading h1,
  .page-heading h3 {
    font-size: 26px;
  }
}

/* line 246, /app/app/assets/stylesheets/shared/typography.scss */
.series-title {
  margin-bottom: 32px;
}
/* line 249, /app/app/assets/stylesheets/shared/typography.scss */
.series-title h2, .series-title h3, .series-title h4, .series-title h5 {
  text-transform: uppercase;
}
/* line 253, /app/app/assets/stylesheets/shared/typography.scss */
.series-title h2, .series-title h3, .series-title h4 {
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
/* line 259, /app/app/assets/stylesheets/shared/typography.scss */
.series-title h2, .series-title h3 {
  font-size: 30px;
}
/* line 263, /app/app/assets/stylesheets/shared/typography.scss */
.series-title h4 {
  color: #057D7F;
  font-size: 20px;
  margin-bottom: 0;
}

/* line 270, /app/app/assets/stylesheets/shared/typography.scss */
.footnote {
  font-family: "Lato", Helvetica, arial, sans-serif;
  font-size: 16px;
  font-style: italic;
}

/* line 276, /app/app/assets/stylesheets/shared/typography.scss */
.grad-title {
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-size: 18px;
  position: relative;
  overflow: hidden;
}
/* line 284, /app/app/assets/stylesheets/shared/typography.scss */
.grad-title .gradient {
  position: relative;
  display: inline-block;
  padding: 0 10px 0 0;
}
/* line 289, /app/app/assets/stylesheets/shared/typography.scss */
.grad-title .gradient::after {
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -5px;
  left: 100%;
  width: 100%;
  height: 10px;
  background: -moz-linear-gradient(-45deg, #d4c0a1 0%, rgba(212, 192, 161, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
  background: -webkit-linear-gradient(-45deg, #d4c0a1 0%, rgba(212, 192, 161, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(135deg, #d4c0a1 0%, rgba(212, 192, 161, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d4c0a1', endColorstr='#00ffffff',GradientType=1 );
  transition: all 0.3s ease;
}
@media screen and (max-width: 640px) {
  /* line 305, /app/app/assets/stylesheets/shared/typography.scss */
  .grad-title .gradient::after {
    width: 50%;
  }
}
@media screen and (max-width: 440px) {
  /* line 311, /app/app/assets/stylesheets/shared/typography.scss */
  .grad-title .gradient::after {
    width: 25%;
  }
}
/* line 320, /app/app/assets/stylesheets/shared/typography.scss */
.grad-title a:hover .gradient::after,
.grad-title a:focus .gradient::after {
  width: 200%;
  background: -moz-linear-gradient(-45deg, #d4c0a1 0%, rgba(212, 192, 161, 0.5) 75%, rgba(255, 255, 255, 0) 100%);
  background: -webkit-linear-gradient(-45deg, #d4c0a1 0%, rgba(212, 192, 161, 0.5) 75%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(135deg, #d4c0a1 0%, rgba(212, 192, 161, 0.5) 75%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d4c0a1', endColorstr='#00ffffff',GradientType=1 );
  transition: all 1s cubic-bezier(0, 0.385, 0, 0.74);
}
@media screen and (max-width: 640px) {
  /* line 331, /app/app/assets/stylesheets/shared/typography.scss */
  .grad-title a:hover::after,
  .grad-title a:focus::after {
    width: 50%;
  }
}
@media screen and (max-width: 440px) {
  /* line 337, /app/app/assets/stylesheets/shared/typography.scss */
  .grad-title a:hover::after,
  .grad-title a:focus::after {
    width: 25%;
  }
}
/* line 343, /app/app/assets/stylesheets/shared/typography.scss */
.grad-title .more-label {
  font-size: 14px;
  line-height: 28px;
  display: inline-block;
  float: right;
  position: relative;
  z-index: 1;
}
/* line 351, /app/app/assets/stylesheets/shared/typography.scss */
.grad-title .more-label::before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  top: 50%;
  right: calc(100% + 12px);
  background-color: #262626;
  transition: all 1s cubic-bezier(0, 0.385, 0, 0.74);
}
/* line 362, /app/app/assets/stylesheets/shared/typography.scss */
.grad-title .more-label.hide-mobile {
  display: inline-block;
}
/* line 365, /app/app/assets/stylesheets/shared/typography.scss */
.grad-title .more-label.show-mobile {
  display: none;
}
/* line 370, /app/app/assets/stylesheets/shared/typography.scss */
.grad-title a {
  display: block;
}
/* line 373, /app/app/assets/stylesheets/shared/typography.scss */
.grad-title a:hover {
  color: #262626;
}
/* line 376, /app/app/assets/stylesheets/shared/typography.scss */
.grad-title a:hover .more-label::before {
  width: 20px;
}
@media screen and (max-width: 600px) {
  /* line 383, /app/app/assets/stylesheets/shared/typography.scss */
  .grad-title .gradient::after {
    display: none;
  }
  /* line 388, /app/app/assets/stylesheets/shared/typography.scss */
  .grad-title .more-label.hide-mobile {
    display: none;
  }
  /* line 391, /app/app/assets/stylesheets/shared/typography.scss */
  .grad-title .more-label.show-mobile {
    font-size: 32px;
    color: #99762a;
    display: inline-block;
  }
  /* line 396, /app/app/assets/stylesheets/shared/typography.scss */
  .grad-title .more-label.show-mobile::before {
    display: none !important;
  }
}

/* line 404, /app/app/assets/stylesheets/shared/typography.scss */
.small-link {
  padding-top: 16px;
}
/* line 407, /app/app/assets/stylesheets/shared/typography.scss */
.small-link a {
  color: #262626;
  font-family: "Lato", Helvetica, arial, sans-serif;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  border-bottom: 1px solid #262626;
}
/* line 415, /app/app/assets/stylesheets/shared/typography.scss */
.small-link a:hover, .small-link a:focus {
  color: #99752f;
  border-bottom: 1px solid transparent;
}

/* line 423, /app/app/assets/stylesheets/shared/typography.scss */
#credit_error_list {
  background-color: #f8eac2;
  padding: 20px 20px 20px 0;
  margin: 0 0 50px;
  border-radius: 5px;
  max-width: 520px;
}
/* line 430, /app/app/assets/stylesheets/shared/typography.scss */
#credit_error_list:empty {
  display: none;
}
/* line 434, /app/app/assets/stylesheets/shared/typography.scss */
#credit_error_list::before {
  content: 'Oops!';
  color: #f14f3e;
  font-size: 26px;
  font-weight: 900;
  font-family: "Lato", Helvetica, arial, sans-serif;
  letter-spacing: 1px;
  display: block;
  padding-left: 24px;
  margin-bottom: 16px;
}
/* line 446, /app/app/assets/stylesheets/shared/typography.scss */
#credit_error_list li {
  font-size: 18px;
  font-family: "Lato", Helvetica, arial, sans-serif;
  margin-bottom: 16px;
  display: block;
  position: relative;
  padding-left: 24px;
}
/* line 454, /app/app/assets/stylesheets/shared/typography.scss */
#credit_error_list li:last-child {
  margin-bottom: 0;
}
/* line 458, /app/app/assets/stylesheets/shared/typography.scss */
#credit_error_list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  border-left: 12px solid #f8f3ea;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}
/* line 468, /app/app/assets/stylesheets/shared/typography.scss */
#credit_error_list li a {
  font-weight: bold;
}

/* line 475, /app/app/assets/stylesheets/shared/typography.scss */
.one-column-copy,
.two-column-copy,
.display-content,
.alter-wrapper .alter-content .display-content,
.trumbowyg-box .trumbowyg-editor, .text-block {
  font-size: 16px;
}
/* line 482, /app/app/assets/stylesheets/shared/typography.scss */
.one-column-copy hr,
.two-column-copy hr,
.display-content hr,
.alter-wrapper .alter-content .display-content hr,
.trumbowyg-box .trumbowyg-editor hr, .text-block hr {
  margin: 32px 0;
  height: 2px;
  border: none;
  background-color: #99762a;
}
/* line 489, /app/app/assets/stylesheets/shared/typography.scss */
.one-column-copy h1, .one-column-copy h2, .one-column-copy h3, .one-column-copy h4, .one-column-copy h5, .one-column-copy h6,
.two-column-copy h1,
.two-column-copy h2,
.two-column-copy h3,
.two-column-copy h4,
.two-column-copy h5,
.two-column-copy h6,
.display-content h1,
.display-content h2,
.display-content h3,
.display-content h4,
.display-content h5,
.display-content h6,
.alter-wrapper .alter-content .display-content h1,
.alter-wrapper .alter-content .display-content h2,
.alter-wrapper .alter-content .display-content h3,
.alter-wrapper .alter-content .display-content h4,
.alter-wrapper .alter-content .display-content h5,
.alter-wrapper .alter-content .display-content h6,
.trumbowyg-box .trumbowyg-editor h1,
.trumbowyg-box .trumbowyg-editor h2,
.trumbowyg-box .trumbowyg-editor h3,
.trumbowyg-box .trumbowyg-editor h4,
.trumbowyg-box .trumbowyg-editor h5,
.trumbowyg-box .trumbowyg-editor h6, .text-block h1, .text-block h2, .text-block h3, .text-block h4, .text-block h5, .text-block h6 {
  font-weight: bold;
  font-family: "Lato", Helvetica, arial, sans-serif;
  margin: 40px 0 25px;
}
/* line 495, /app/app/assets/stylesheets/shared/typography.scss */
.one-column-copy h4,
.two-column-copy h4,
.display-content h4,
.alter-wrapper .alter-content .display-content h4,
.trumbowyg-box .trumbowyg-editor h4, .text-block h4 {
  margin: 40px 0 12px;
}
/* line 499, /app/app/assets/stylesheets/shared/typography.scss */
.one-column-copy h6,
.two-column-copy h6,
.display-content h6,
.alter-wrapper .alter-content .display-content h6,
.trumbowyg-box .trumbowyg-editor h6, .text-block h6 {
  font-weight: normal;
}
/* line 503, /app/app/assets/stylesheets/shared/typography.scss */
.one-column-copy h1, .one-column-copy h2,
.two-column-copy h1,
.two-column-copy h2,
.display-content h1,
.display-content h2,
.alter-wrapper .alter-content .display-content h1,
.alter-wrapper .alter-content .display-content h2,
.trumbowyg-box .trumbowyg-editor h1,
.trumbowyg-box .trumbowyg-editor h2, .text-block h1, .text-block h2 {
  margin-bottom: 25px;
  line-height: 1.4;
  font-size: 40px;
  font-family: "Lato", Helvetica, arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}
/* line 512, /app/app/assets/stylesheets/shared/typography.scss */
.one-column-copy h2,
.two-column-copy h2,
.display-content h2,
.alter-wrapper .alter-content .display-content h2,
.trumbowyg-box .trumbowyg-editor h2, .text-block h2 {
  font-size: 34px;
}
/* line 516, /app/app/assets/stylesheets/shared/typography.scss */
.one-column-copy h3, .one-column-copy h4,
.two-column-copy h3,
.two-column-copy h4,
.display-content h3,
.display-content h4,
.alter-wrapper .alter-content .display-content h3,
.alter-wrapper .alter-content .display-content h4,
.trumbowyg-box .trumbowyg-editor h3,
.trumbowyg-box .trumbowyg-editor h4, .text-block h3, .text-block h4 {
  font-size: 20px;
}
/* line 520, /app/app/assets/stylesheets/shared/typography.scss */
.one-column-copy a:not(.button),
.two-column-copy a:not(.button),
.display-content a:not(.button),
.alter-wrapper .alter-content .display-content a:not(.button),
.trumbowyg-box .trumbowyg-editor a:not(.button), .text-block a:not(.button) {
  color: #99752f;
  border-bottom: 1px solid transparent;
}
/* line 524, /app/app/assets/stylesheets/shared/typography.scss */
.one-column-copy a:not(.button):hover, .one-column-copy a:not(.button):focus,
.two-column-copy a:not(.button):hover,
.two-column-copy a:not(.button):focus,
.display-content a:not(.button):hover,
.display-content a:not(.button):focus,
.alter-wrapper .alter-content .display-content a:not(.button):hover,
.alter-wrapper .alter-content .display-content a:not(.button):focus,
.trumbowyg-box .trumbowyg-editor a:not(.button):hover,
.trumbowyg-box .trumbowyg-editor a:not(.button):focus, .text-block a:not(.button):hover, .text-block a:not(.button):focus {
  border-bottom: 1px solid #d4c0a1;
}
/* line 530, /app/app/assets/stylesheets/shared/typography.scss */
.one-column-copy p, .one-column-copy ul, .one-column-copy ol,
.one-column-copy .expandable-description p,
.one-column-copy .expandable-description ul,
.one-column-copy .expandable-description ol,
.two-column-copy p,
.two-column-copy ul,
.two-column-copy ol,
.two-column-copy .expandable-description p,
.two-column-copy .expandable-description ul,
.two-column-copy .expandable-description ol,
.display-content p,
.display-content ul,
.display-content ol,
.display-content .expandable-description p,
.display-content .expandable-description ul,
.display-content .expandable-description ol,
.alter-wrapper .alter-content .display-content p,
.alter-wrapper .alter-content .display-content ul,
.alter-wrapper .alter-content .display-content ol,
.alter-wrapper .alter-content .display-content .expandable-description p,
.alter-wrapper .alter-content .display-content .expandable-description ul,
.alter-wrapper .alter-content .display-content .expandable-description ol,
.trumbowyg-box .trumbowyg-editor p,
.trumbowyg-box .trumbowyg-editor ul,
.trumbowyg-box .trumbowyg-editor ol,
.trumbowyg-box .trumbowyg-editor .expandable-description p,
.trumbowyg-box .trumbowyg-editor .expandable-description ul,
.trumbowyg-box .trumbowyg-editor .expandable-description ol, .text-block p, .text-block ul, .text-block ol,
.text-block .expandable-description p,
.text-block .expandable-description ul,
.text-block .expandable-description ol {
  font-family: "Lora", Times, serif;
  margin-bottom: 25px;
}
/* line 537, /app/app/assets/stylesheets/shared/typography.scss */
.one-column-copy p img, .one-column-copy ul img, .one-column-copy ol img,
.one-column-copy .expandable-description p img,
.one-column-copy .expandable-description ul img,
.one-column-copy .expandable-description ol img,
.two-column-copy p img,
.two-column-copy ul img,
.two-column-copy ol img,
.two-column-copy .expandable-description p img,
.two-column-copy .expandable-description ul img,
.two-column-copy .expandable-description ol img,
.display-content p img,
.display-content ul img,
.display-content ol img,
.display-content .expandable-description p img,
.display-content .expandable-description ul img,
.display-content .expandable-description ol img,
.alter-wrapper .alter-content .display-content p img,
.alter-wrapper .alter-content .display-content ul img,
.alter-wrapper .alter-content .display-content ol img,
.alter-wrapper .alter-content .display-content .expandable-description p img,
.alter-wrapper .alter-content .display-content .expandable-description ul img,
.alter-wrapper .alter-content .display-content .expandable-description ol img,
.trumbowyg-box .trumbowyg-editor p img,
.trumbowyg-box .trumbowyg-editor ul img,
.trumbowyg-box .trumbowyg-editor ol img,
.trumbowyg-box .trumbowyg-editor .expandable-description p img,
.trumbowyg-box .trumbowyg-editor .expandable-description ul img,
.trumbowyg-box .trumbowyg-editor .expandable-description ol img, .text-block p img, .text-block ul img, .text-block ol img,
.text-block .expandable-description p img,
.text-block .expandable-description ul img,
.text-block .expandable-description ol img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}
/* line 544, /app/app/assets/stylesheets/shared/typography.scss */
.one-column-copy blockquote,
.two-column-copy blockquote,
.display-content blockquote,
.alter-wrapper .alter-content .display-content blockquote,
.trumbowyg-box .trumbowyg-editor blockquote, .text-block blockquote {
  margin: 20px 0px;
  font-size: 28px;
  line-height: 34px;
  font-family: "Lora", Times, serif;
  padding: 26px 0;
  border-top: 3px solid #e4dcce;
  border-bottom: 3px solid #e4dcce;
}
@media screen and (min-width: 800px) {
  /* line 544, /app/app/assets/stylesheets/shared/typography.scss */
  .one-column-copy blockquote,
  .two-column-copy blockquote,
  .display-content blockquote,
  .alter-wrapper .alter-content .display-content blockquote,
  .trumbowyg-box .trumbowyg-editor blockquote, .text-block blockquote {
    float: right;
    max-width: 350px;
    margin-right: -50px;
    margin-left: 40px;
  }
}
/* line 560, /app/app/assets/stylesheets/shared/typography.scss */
.one-column-copy blockquote p,
.two-column-copy blockquote p,
.display-content blockquote p,
.alter-wrapper .alter-content .display-content blockquote p,
.trumbowyg-box .trumbowyg-editor blockquote p, .text-block blockquote p {
  padding: 0;
  margin: 0;
  font-size: 28px;
  line-height: 34px;
}
/* line 567, /app/app/assets/stylesheets/shared/typography.scss */
.one-column-copy blockquote em,
.two-column-copy blockquote em,
.display-content blockquote em,
.alter-wrapper .alter-content .display-content blockquote em,
.trumbowyg-box .trumbowyg-editor blockquote em, .text-block blockquote em {
  display: block;
  font-weight: bold;
  font-style: italic;
  line-height: 18px;
  color: #99752f;
  font-size: 14px;
  text-transform: uppercase;
  font-family: "Times New Roman", Times, serif;
  padding-top: 20px;
}
/* line 581, /app/app/assets/stylesheets/shared/typography.scss */
.one-column-copy ul,
.two-column-copy ul,
.display-content ul,
.alter-wrapper .alter-content .display-content ul,
.trumbowyg-box .trumbowyg-editor ul, .text-block ul {
  margin: 25px 0;
  list-style-type: none;
}
/* line 585, /app/app/assets/stylesheets/shared/typography.scss */
.one-column-copy ul li,
.two-column-copy ul li,
.display-content ul li,
.alter-wrapper .alter-content .display-content ul li,
.trumbowyg-box .trumbowyg-editor ul li, .text-block ul li {
  position: relative;
  padding: 0 0 12px 32px;
  margin-bottom: 0;
}
/* line 590, /app/app/assets/stylesheets/shared/typography.scss */
.one-column-copy ul li::before,
.two-column-copy ul li::before,
.display-content ul li::before,
.alter-wrapper .alter-content .display-content ul li::before,
.trumbowyg-box .trumbowyg-editor ul li::before, .text-block ul li::before {
  content: '';
  height: 6px;
  width: 6px;
  display: block;
  background-color: #99752f;
  position: absolute;
  top: 10px;
  left: 13px;
}
/* line 603, /app/app/assets/stylesheets/shared/typography.scss */
.one-column-copy ol,
.two-column-copy ol,
.display-content ol,
.alter-wrapper .alter-content .display-content ol,
.trumbowyg-box .trumbowyg-editor ol, .text-block ol {
  margin-top: 25px;
}
/* line 606, /app/app/assets/stylesheets/shared/typography.scss */
.one-column-copy ol li,
.two-column-copy ol li,
.display-content ol li,
.alter-wrapper .alter-content .display-content ol li,
.trumbowyg-box .trumbowyg-editor ol li, .text-block ol li {
  position: relative;
  padding: 0 0 12px 16px;
  margin-bottom: 0;
}
/* line 611, /app/app/assets/stylesheets/shared/typography.scss */
.one-column-copy ol li::before,
.two-column-copy ol li::before,
.display-content ol li::before,
.alter-wrapper .alter-content .display-content ol li::before,
.trumbowyg-box .trumbowyg-editor ol li::before, .text-block ol li::before {
  display: none;
}

/* line 618, /app/app/assets/stylesheets/shared/typography.scss */
.alter-wrapper blockquote {
  float: none;
  font-size: 24px;
  max-width: unset;
  margin: 40px 10px;
}

/* line 626, /app/app/assets/stylesheets/shared/typography.scss */
.two-column-copy blockquote {
  margin: 60px 0 60px 0;
}

/* line 1, /app/app/assets/stylesheets/shared/vid_block.scss */
.vid-block {
  width: calc(33.333% - 3px);
  margin: 20px 1.5px;
  transition: all 0.3s ease;
  color: #262626 !important;
  display: block;
}
/* line 8, /app/app/assets/stylesheets/shared/vid_block.scss */
.vid-block .icon-series {
  background-color: rgba(0, 0, 0, 0.5);
  fill: #f8f3ea;
  width: 46px;
  height: 44px;
  padding: 10px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
/* line 20, /app/app/assets/stylesheets/shared/vid_block.scss */
.vid-block .vid-block-inner {
  position: relative;
}
/* line 24, /app/app/assets/stylesheets/shared/vid_block.scss */
.vid-block .vid-thumb {
  display: flex;
  align-content: center;
  justify-content: center;
  padding-top: 56.25%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #e4dcce;
  position: relative;
  overflow: hidden;
  z-index: 3;
  transform: scale(1);
  transform-origin: bottom;
  transition: all 0.3s ease;
}
@media screen and (min-width: 1024px) {
  /* line 24, /app/app/assets/stylesheets/shared/vid_block.scss */
  .vid-block .vid-thumb {
    padding-top: 186px;
  }
}
@media screen and (min-width: 1100px) {
  /* line 24, /app/app/assets/stylesheets/shared/vid_block.scss */
  .vid-block .vid-thumb {
    padding-top: 200px;
  }
}
@media screen and (min-width: 1176px) {
  /* line 24, /app/app/assets/stylesheets/shared/vid_block.scss */
  .vid-block .vid-thumb {
    padding-top: 220px;
  }
}
/* line 52, /app/app/assets/stylesheets/shared/vid_block.scss */
.vid-block .vid-thumb svg.icon-play {
  width: 40px;
  height: 40px;
  left: 20px;
  bottom: 20px;
  opacity: 0;
  transition: all 0.3s ease;
}
/* line 62, /app/app/assets/stylesheets/shared/vid_block.scss */
.vid-block .vid-info {
  position: absolute;
  overflow: hidden;
  top: 100%;
  background-color: #f8f3ea;
  opacity: 0;
  transition: all 0.3s ease;
  max-height: 0;
  width: 100%;
  transform-origin: top center;
  padding: 0;
  z-index: 2;
  transform: scale(1);
}
/* line 76, /app/app/assets/stylesheets/shared/vid_block.scss */
.vid-block .vid-info .vid-info-text {
  width: 100%;
  padding: 14px;
  transform-origin: top left;
  transition: all 0.3s ease-in-out;
}
/* line 83, /app/app/assets/stylesheets/shared/vid_block.scss */
.vid-block .vid-info h2 {
  display: inline-block;
  font-size: 13px;
  color: #99752f;
  max-width: 70%;
  margin-bottom: 0px;
  line-height: 1.2;
  letter-spacing: 1px;
}
/* line 93, /app/app/assets/stylesheets/shared/vid_block.scss */
.vid-block .vid-info span.vid-length {
  position: absolute;
  font-family: "Lato", Helvetica, arial, sans-serif;
  color: #99752f;
  font-size: 11px;
  letter-spacing: 1px;
  right: 13px;
  top: 18px;
}
/* line 103, /app/app/assets/stylesheets/shared/vid_block.scss */
.vid-block .vid-info p {
  color: #262626;
  font-family: "Lora", Times, serif;
  font-size: 12px;
  margin: 0;
}
/* line 111, /app/app/assets/stylesheets/shared/vid_block.scss */
.vid-block:focus, .vid-block:hover {
  color: #262626 !important;
}
@media screen and (min-width: 1025px) {
  /* line 117, /app/app/assets/stylesheets/shared/vid_block.scss */
  .vid-block:hover {
    z-index: 5;
    color: #262626 !important;
  }
  /* line 121, /app/app/assets/stylesheets/shared/vid_block.scss */
  .vid-block:hover .vid-thumb {
    transform: scale(1.2);
  }
  /* line 124, /app/app/assets/stylesheets/shared/vid_block.scss */
  .vid-block:hover .vid-thumb svg.icon-play {
    opacity: 1;
  }
  /* line 128, /app/app/assets/stylesheets/shared/vid_block.scss */
  .vid-block:hover .vid-info {
    -webkit-box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.3);
    opacity: 1;
    max-height: 200px;
    transform: scale(1.2);
  }
}
@media screen and (max-width: 1024px) {
  /* line 140, /app/app/assets/stylesheets/shared/vid_block.scss */
  .vid-block:focus {
    z-index: 5;
    outline: none;
  }
  /* line 144, /app/app/assets/stylesheets/shared/vid_block.scss */
  .vid-block:focus .vid-thumb {
    transform: scale(1.2);
  }
  /* line 147, /app/app/assets/stylesheets/shared/vid_block.scss */
  .vid-block:focus .vid-thumb svg.icon-play {
    opacity: 1;
  }
  /* line 151, /app/app/assets/stylesheets/shared/vid_block.scss */
  .vid-block:focus .vid-info {
    -webkit-box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.3);
    opacity: 1;
    max-height: 200px;
    transform: scale(1.2);
  }
}
@media screen and (max-width: 768px) {
  /* line 1, /app/app/assets/stylesheets/shared/vid_block.scss */
  .vid-block {
    width: calc(50% - 3px);
    margin: 20px 1.5px;
  }
}
@media screen and (max-width: 680px) {
  /* line 169, /app/app/assets/stylesheets/shared/vid_block.scss */
  .vid-block:focus .vid-thumb,
  .vid-block:focus .vid-info {
    transform: scale(1.1);
  }
}
@media screen and (max-width: 500px) {
  /* line 1, /app/app/assets/stylesheets/shared/vid_block.scss */
  .vid-block {
    width: 100%;
    margin: 0 auto 20px;
  }
}

@media screen and (min-width: 1024px) {
  /* line 187, /app/app/assets/stylesheets/shared/vid_block.scss */
  .video-rotator .vid-block .vid-thumb,
  .video-grid-contents .vid-block .vid-thumb,
  .person-videos-list .vid-block .vid-thumb {
    padding-top: 56.25%;
  }
}
@media screen and (min-width: 1100px) {
  /* line 187, /app/app/assets/stylesheets/shared/vid_block.scss */
  .video-rotator .vid-block .vid-thumb,
  .video-grid-contents .vid-block .vid-thumb,
  .person-videos-list .vid-block .vid-thumb {
    padding-top: 56.25%;
  }
}
@media screen and (min-width: 1176px) {
  /* line 187, /app/app/assets/stylesheets/shared/vid_block.scss */
  .video-rotator .vid-block .vid-thumb,
  .video-grid-contents .vid-block .vid-thumb,
  .person-videos-list .vid-block .vid-thumb {
    padding-top: 56.25%;
  }
}

@media screen and (min-width: 1024px) {
  /* line 206, /app/app/assets/stylesheets/shared/vid_block.scss */
  .related-list .vid-block .vid-thumb {
    padding-top: 56.25%;
  }
}
@media screen and (min-width: 1100px) {
  /* line 206, /app/app/assets/stylesheets/shared/vid_block.scss */
  .related-list .vid-block .vid-thumb {
    padding-top: 56.25%;
  }
}
@media screen and (min-width: 1176px) {
  /* line 206, /app/app/assets/stylesheets/shared/vid_block.scss */
  .related-list .vid-block .vid-thumb {
    padding-top: 56.25%;
  }
}

/* -- Smaller Video Block -- */
/* line 5, /app/app/assets/stylesheets/shared/video-block-sm.scss */
.vid-block-sm .vid-block-sm__inner {
  width: 100%;
  min-width: 100px;
  position: relative;
  padding: 0;
  background-color: #e4dcce;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
/* line 16, /app/app/assets/stylesheets/shared/video-block-sm.scss */
.vid-block-sm .vid-block-sm__inner:after {
  content: "";
  display: block;
  padding-bottom: 56.25%;
}
/* line 23, /app/app/assets/stylesheets/shared/video-block-sm.scss */
.vid-block-sm .vid-block-sm__info {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  opacity: 0;
  text-align: center;
  color: #ffffff;
  background-color: #262626;
  z-index: 10;
  top: 0;
  padding: 8px;
  width: 100%;
  height: 100%;
  transition: opacity 300ms;
}
/* line 38, /app/app/assets/stylesheets/shared/video-block-sm.scss */
.vid-block-sm .vid-block-sm__info:hover {
  opacity: 0.8;
}
/* line 44, /app/app/assets/stylesheets/shared/video-block-sm.scss */
.vid-block-sm .vid-block-sm__info h2 {
  font-size: 18px;
}

/* line 2, /app/app/assets/stylesheets/shared/video_cta_row.scss */
.video-cta {
  background-color: #b6d4d0;
}
/* line 5, /app/app/assets/stylesheets/shared/video_cta_row.scss */
.video-cta::before {
  position: absolute;
  height: 200px;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #9fcbca;
  content: '';
}
/* line 16, /app/app/assets/stylesheets/shared/video_cta_row.scss */
.video-cta .vid-cta-inner {
  display: flex;
  justify-content: flex-end;
  position: relative;
  padding: 0;
  max-width: 1600px;
}
/* line 23, /app/app/assets/stylesheets/shared/video_cta_row.scss */
.video-cta .vid-cta-inner .content-wrap {
  display: flex;
  flex: 1;
  flex-direction: column;
  position: relative;
  padding: 0 0 80px 60px;
  width: 100%;
  max-width: 600px;
  z-index: 1;
}
@media screen and (max-width: 1020px) {
  /* line 23, /app/app/assets/stylesheets/shared/video_cta_row.scss */
  .video-cta .vid-cta-inner .content-wrap {
    padding-left: 0;
  }
}
/* line 37, /app/app/assets/stylesheets/shared/video_cta_row.scss */
.video-cta .vid-cta-inner .content-wrap .title-box {
  position: relative;
}
/* line 40, /app/app/assets/stylesheets/shared/video_cta_row.scss */
.video-cta .vid-cta-inner .content-wrap .title-box h1 {
  padding-right: 20px;
  margin: -0.5em 0 32px 0;
  line-height: 1;
  font-family: "Lato", Helvetica, arial, sans-serif;
  font-size: 72px;
  font-weight: 700;
  text-transform: uppercase;
}
/* line 51, /app/app/assets/stylesheets/shared/video_cta_row.scss */
.video-cta .vid-cta-inner .content-wrap .title-box p {
  position: relative;
  bottom: 0;
  padding: 0 32px 0 0;
  line-height: 1.3;
  font-family: "Lora", Times, serif;
  font-size: 18px;
  margin-bottom: 0;
  max-width: 400px;
}
@media screen and (max-width: 1020px) {
  /* line 51, /app/app/assets/stylesheets/shared/video_cta_row.scss */
  .video-cta .vid-cta-inner .content-wrap .title-box p {
    max-width: 500px;
  }
}
/* line 67, /app/app/assets/stylesheets/shared/video_cta_row.scss */
.video-cta .vid-cta-inner .content-wrap .promo-button {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 10;
  line-height: 54px;
  font-size: 18px;
}
/* line 77, /app/app/assets/stylesheets/shared/video_cta_row.scss */
.video-cta .vid-cta-inner .video-preview {
  z-index: unset;
}
/* line 80, /app/app/assets/stylesheets/shared/video_cta_row.scss */
.video-cta .vid-cta-inner .video-preview .thumb-title {
  display: block;
  left: 10% !important;
}
/* line 84, /app/app/assets/stylesheets/shared/video_cta_row.scss */
.video-cta .vid-cta-inner .video-preview .thumb-title .icon-play {
  margin-bottom: 20px;
}
/* line 88, /app/app/assets/stylesheets/shared/video_cta_row.scss */
.video-cta .vid-cta-inner .video-preview .thumb-title h3 {
  margin-left: 0;
  text-transform: none;
  font-size: 22px;
}
/* line 93, /app/app/assets/stylesheets/shared/video_cta_row.scss */
.video-cta .vid-cta-inner .video-preview .thumb-title h3 span {
  font-family: "Lato", Helvetica, arial, sans-serif;
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 600;
  color: #ffffff;
}
@media screen and (max-width: 1020px) {
  /* line 80, /app/app/assets/stylesheets/shared/video_cta_row.scss */
  .video-cta .vid-cta-inner .video-preview .thumb-title {
    left: 40px !important;
  }
}
@media screen and (max-width: 600px) {
  /* line 80, /app/app/assets/stylesheets/shared/video_cta_row.scss */
  .video-cta .vid-cta-inner .video-preview .thumb-title {
    bottom: 20px;
    left: 20px !important;
  }
  /* line 110, /app/app/assets/stylesheets/shared/video_cta_row.scss */
  .video-cta .vid-cta-inner .video-preview .thumb-title .icon-play {
    margin-bottom: 8px;
    height: 50px;
    width: 50px;
  }
  /* line 116, /app/app/assets/stylesheets/shared/video_cta_row.scss */
  .video-cta .vid-cta-inner .video-preview .thumb-title h3 {
    font-size: 18px;
  }
  /* line 119, /app/app/assets/stylesheets/shared/video_cta_row.scss */
  .video-cta .vid-cta-inner .video-preview .thumb-title h3 span {
    font-size: 24px;
  }
}
/* line 127, /app/app/assets/stylesheets/shared/video_cta_row.scss */
.video-cta .vid-cta-inner .video-wrap {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 780px;
  background-color: #262626;
}
/* line 135, /app/app/assets/stylesheets/shared/video_cta_row.scss */
.video-cta .vid-cta-inner .video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* line 143, /app/app/assets/stylesheets/shared/video_cta_row.scss */
.video-cta .vid-cta-inner .video-wrap > div {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}
@media screen and (max-width: 1380px) {
  /* line 152, /app/app/assets/stylesheets/shared/video_cta_row.scss */
  .video-cta .vid-cta-inner .content-wrap .title-box h1 {
    font-size: 64px;
  }
}
@media screen and (max-width: 1280px) {
  /* line 160, /app/app/assets/stylesheets/shared/video_cta_row.scss */
  .video-cta .vid-cta-inner .content-wrap .title-box h1 {
    font-size: 52px;
  }
  /* line 163, /app/app/assets/stylesheets/shared/video_cta_row.scss */
  .video-cta .vid-cta-inner .content-wrap .info-box p {
    padding: 40px 60px 70px 0;
  }
}
@media screen and (max-width: 1080px) {
  /* line 171, /app/app/assets/stylesheets/shared/video_cta_row.scss */
  .video-cta .vid-cta-inner .content-wrap .title-box h1 {
    font-size: 48px;
  }
}
@media screen and (max-width: 1020px) {
  /* line 16, /app/app/assets/stylesheets/shared/video_cta_row.scss */
  .video-cta .vid-cta-inner {
    flex-direction: column;
    padding: 0 60px;
    margin-bottom: calc(20% + 60px);
  }
  /* line 182, /app/app/assets/stylesheets/shared/video_cta_row.scss */
  .video-cta .vid-cta-inner::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 114px;
    background-color: #9fcbca;
    content: '';
  }
  /* line 192, /app/app/assets/stylesheets/shared/video_cta_row.scss */
  .video-cta .vid-cta-inner .content-wrap {
    max-width: unset;
  }
  /* line 195, /app/app/assets/stylesheets/shared/video_cta_row.scss */
  .video-cta .vid-cta-inner .content-wrap .title-box h1 {
    margin: -0.5em 0 0.5em 0;
    font-size: 52px;
  }
  /* line 199, /app/app/assets/stylesheets/shared/video_cta_row.scss */
  .video-cta .vid-cta-inner .content-wrap .info-box {
    position: unset;
    background-color: unset;
  }
  /* line 203, /app/app/assets/stylesheets/shared/video_cta_row.scss */
  .video-cta .vid-cta-inner .content-wrap .info-box::before {
    display: none;
  }
  /* line 205, /app/app/assets/stylesheets/shared/video_cta_row.scss */
  .video-cta .vid-cta-inner .content-wrap .info-box p {
    padding-top: 0;
    padding-bottom: 80px;
    max-width: 500px;
  }
  /* line 211, /app/app/assets/stylesheets/shared/video_cta_row.scss */
  .video-cta .vid-cta-inner .content-wrap .promo-button {
    transform: translateX(-54px);
  }
  /* line 216, /app/app/assets/stylesheets/shared/video_cta_row.scss */
  .video-cta .vid-cta-inner .video-wrap {
    margin-bottom: -20%;
    max-width: unset;
  }
  /* line 220, /app/app/assets/stylesheets/shared/video_cta_row.scss */
  .video-cta .vid-cta-inner .video-wrap > div {
    position: relative;
    padding-top: 56.25%;
  }
}
@media screen and (max-width: 768px) {
  /* line 16, /app/app/assets/stylesheets/shared/video_cta_row.scss */
  .video-cta .vid-cta-inner {
    padding: 0 40px;
  }
  /* line 228, /app/app/assets/stylesheets/shared/video_cta_row.scss */
  .video-cta .vid-cta-inner::before {
    width: 94px;
  }
}
@media screen and (max-width: 480px) {
  /* line 16, /app/app/assets/stylesheets/shared/video_cta_row.scss */
  .video-cta .vid-cta-inner {
    padding: 0 20px;
  }
  /* line 232, /app/app/assets/stylesheets/shared/video_cta_row.scss */
  .video-cta .vid-cta-inner::before {
    width: 74px;
  }
  /* line 235, /app/app/assets/stylesheets/shared/video_cta_row.scss */
  .video-cta .vid-cta-inner .content-wrap .title-box h1 {
    font-size: 40px;
  }
}

/* line 1, /app/app/assets/stylesheets/shared/video_grid.scss */
.video-grid, .ais-Hits, #hits {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto 32px;
  padding: 0 30px;
}
@media screen and (min-width: 600px) {
  /* line 1, /app/app/assets/stylesheets/shared/video_grid.scss */
  .video-grid, .ais-Hits, #hits {
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 768px) {
  /* line 1, /app/app/assets/stylesheets/shared/video_grid.scss */
  .video-grid, .ais-Hits, #hits {
    margin: 0 auto 120px;
    padding: 0 40px;
  }
}
/* line 18, /app/app/assets/stylesheets/shared/video_grid.scss */
.video-grid .video-grid-contents, .video-grid .ais-Hits-list, .ais-Hits .video-grid-contents, .ais-Hits .ais-Hits-list, #hits .video-grid-contents, #hits .ais-Hits-list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 30px;
}
/* line 25, /app/app/assets/stylesheets/shared/video_grid.scss */
.video-grid .ais-Hits-list, .ais-Hits .ais-Hits-list, #hits .ais-Hits-list {
  list-style: none;
}
/* line 30, /app/app/assets/stylesheets/shared/video_grid.scss */
.video-grid .ais-Hits-item a, .ais-Hits .ais-Hits-item a, #hits .ais-Hits-item a {
  display: block;
  width: 100%;
}
/* line 34, /app/app/assets/stylesheets/shared/video_grid.scss */
.video-grid .ais-Hits-item a div, .ais-Hits .ais-Hits-item a div, #hits .ais-Hits-item a div {
  height: 100px;
}
/* line 40, /app/app/assets/stylesheets/shared/video_grid.scss */
.video-grid .vid-block, .video-grid .ais-Hits-item, .ais-Hits .vid-block, .ais-Hits .ais-Hits-item, #hits .vid-block, #hits .ais-Hits-item {
  width: calc(20% - 3px);
  margin: 0 1.5px 20px;
}
/* line 44, /app/app/assets/stylesheets/shared/video_grid.scss */
.video-grid .vid-block::after, .video-grid .ais-Hits-item::after, .ais-Hits .vid-block::after, .ais-Hits .ais-Hits-item::after, #hits .vid-block::after, #hits .ais-Hits-item::after {
  display: none;
}
@media screen and (max-width: 1260px) {
  /* line 40, /app/app/assets/stylesheets/shared/video_grid.scss */
  .video-grid .vid-block, .video-grid .ais-Hits-item, .ais-Hits .vid-block, .ais-Hits .ais-Hits-item, #hits .vid-block, #hits .ais-Hits-item {
    width: calc(25% - 3px);
  }
}
@media screen and (max-width: 960px) {
  /* line 40, /app/app/assets/stylesheets/shared/video_grid.scss */
  .video-grid .vid-block, .video-grid .ais-Hits-item, .ais-Hits .vid-block, .ais-Hits .ais-Hits-item, #hits .vid-block, #hits .ais-Hits-item {
    width: calc(33.3333% - 3px);
  }
}
@media screen and (max-width: 767px) {
  /* line 40, /app/app/assets/stylesheets/shared/video_grid.scss */
  .video-grid .vid-block, .video-grid .ais-Hits-item, .ais-Hits .vid-block, .ais-Hits .ais-Hits-item, #hits .vid-block, #hits .ais-Hits-item {
    width: calc(50% - 3px);
  }
}
@media screen and (max-width: 520px) {
  /* line 40, /app/app/assets/stylesheets/shared/video_grid.scss */
  .video-grid .vid-block, .video-grid .ais-Hits-item, .ais-Hits .vid-block, .ais-Hits .ais-Hits-item, #hits .vid-block, #hits .ais-Hits-item {
    width: 100%;
    margin: 0 auto 3px;
  }
}
/* line 68, /app/app/assets/stylesheets/shared/video_grid.scss */
.video-grid .pagination .loading-status, .ais-Hits .pagination .loading-status, #hits .pagination .loading-status {
  width: 100%;
  display: block;
  text-align: center;
  padding: 8px;
  text-transform: uppercase;
  font-family: "Lato", Helvetica, arial, sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
}
/* line 78, /app/app/assets/stylesheets/shared/video_grid.scss */
.video-grid .pagination .loading-status img, .ais-Hits .pagination .loading-status img, #hits .pagination .loading-status img {
  display: inline-block;
  vertical-align: middle;
  height: 40px;
  width: 40px;
}
/* line 85, /app/app/assets/stylesheets/shared/video_grid.scss */
.video-grid .pagination .loading-status span, .ais-Hits .pagination .loading-status span, #hits .pagination .loading-status span {
  height: 40px;
  line-height: 40px;
  display: inline-block;
  vertical-align: middle;
}

/* line 1, /app/app/assets/stylesheets/shared/video_left_right_rows.scss */
.video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  cursor: pointer;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}

/* line 13, /app/app/assets/stylesheets/shared/video_left_right_rows.scss */
.video-left-row {
  justify-content: flex-start;
  padding: 0 40px 0 0;
}

/* line 17, /app/app/assets/stylesheets/shared/video_left_right_rows.scss */
.video-right-row {
  justify-content: flex-end;
  padding: 0 0 0 40px;
}

/* line 22, /app/app/assets/stylesheets/shared/video_left_right_rows.scss */
.video-left-row,
.video-right-row {
  display: flex;
  align-items: center;
}
/* line 27, /app/app/assets/stylesheets/shared/video_left_right_rows.scss */
.video-left-row .button,
.video-right-row .button {
  font-size: 14px;
}
/* line 33, /app/app/assets/stylesheets/shared/video_left_right_rows.scss */
.video-left-row .vid-wrap:first-child,
.video-left-row .content-wrap:first-child,
.video-right-row .vid-wrap:first-child,
.video-right-row .content-wrap:first-child {
  margin-right: 30px;
}
/* line 36, /app/app/assets/stylesheets/shared/video_left_right_rows.scss */
.video-left-row .vid-wrap:last-child,
.video-left-row .content-wrap:last-child,
.video-right-row .vid-wrap:last-child,
.video-right-row .content-wrap:last-child {
  margin-left: 30px;
}
/* line 41, /app/app/assets/stylesheets/shared/video_left_right_rows.scss */
.video-left-row .vid-wrap,
.video-right-row .vid-wrap {
  flex: 1 0 60%;
  max-width: 640px;
}
/* line 45, /app/app/assets/stylesheets/shared/video_left_right_rows.scss */
.video-left-row .content-wrap,
.video-right-row .content-wrap {
  flex: 1 0 1;
}
/* line 49, /app/app/assets/stylesheets/shared/video_left_right_rows.scss */
.video-left-row .preserve-aspect,
.video-right-row .preserve-aspect {
  position: relative;
  width: 100%;
  height: 0;
}
/* line 55, /app/app/assets/stylesheets/shared/video_left_right_rows.scss */
.video-left-row iframe,
.video-right-row iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* line 63, /app/app/assets/stylesheets/shared/video_left_right_rows.scss */
.video-left-row h3, .video-left-row p,
.video-right-row h3,
.video-right-row p {
  color: #262626;
  font-family: "Lato", Helvetica, arial, sans-serif;
}
/* line 65, /app/app/assets/stylesheets/shared/video_left_right_rows.scss */
.video-left-row h3,
.video-right-row h3 {
  margin-bottom: 24px;
  max-width: 420px;
  line-height: 1.2;
  letter-spacing: 2px;
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
}
/* line 74, /app/app/assets/stylesheets/shared/video_left_right_rows.scss */
.video-left-row h3 > span,
.video-right-row h3 > span {
  display: block;
  margin-bottom: 8px;
  font-family: "Times New Roman", Times, serif;
  font-size: 15px;
  font-weight: 600;
  font-style: italic;
  color: #99762a;
}
/* line 85, /app/app/assets/stylesheets/shared/video_left_right_rows.scss */
.video-left-row p,
.video-right-row p {
  font-family: "Lora", Times, serif;
  margin-bottom: 40px;
  max-width: 360px;
  line-height: 1.6;
  font-size: 16px;
}
@media screen and (max-width: 1023px) {
  /* line 22, /app/app/assets/stylesheets/shared/video_left_right_rows.scss */
  .video-left-row,
  .video-right-row {
    flex-wrap: wrap;
    justify-content: center;
  }
  /* line 97, /app/app/assets/stylesheets/shared/video_left_right_rows.scss */
  .video-left-row .vid-wrap,
  .video-left-row .content-wrap,
  .video-right-row .vid-wrap,
  .video-right-row .content-wrap {
    flex: unset;
  }
  /* line 102, /app/app/assets/stylesheets/shared/video_left_right_rows.scss */
  .video-left-row .vid-wrap,
  .video-right-row .vid-wrap {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  /* line 22, /app/app/assets/stylesheets/shared/video_left_right_rows.scss */
  .video-left-row,
  .video-right-row {
    text-align: center;
  }
}

@media screen and (max-width: 1100px) {
  /* line 112, /app/app/assets/stylesheets/shared/video_left_right_rows.scss */
  .video-left-row h3,
  .video-right-row h3 {
    font-size: 26px;
  }
  /* line 115, /app/app/assets/stylesheets/shared/video_left_right_rows.scss */
  .video-left-row h3 span,
  .video-right-row h3 span {
    font-size: 13px;
  }
}
@media screen and (max-width: 1023px) {
  /* line 123, /app/app/assets/stylesheets/shared/video_left_right_rows.scss */
  .video-left-row,
  .video-right-row {
    padding: 0 20px;
  }
  /* line 127, /app/app/assets/stylesheets/shared/video_left_right_rows.scss */
  .video-left-row .content-wrap,
  .video-right-row .content-wrap {
    text-align: center;
  }
  /* line 131, /app/app/assets/stylesheets/shared/video_left_right_rows.scss */
  .video-left-row p,
  .video-right-row p {
    margin: 0 auto 32px;
  }

  /* line 136, /app/app/assets/stylesheets/shared/video_left_right_rows.scss */
  .video-left-row {
    flex-direction: column;
  }
  /* line 142, /app/app/assets/stylesheets/shared/video_left_right_rows.scss */
  .video-left-row .vid-wrap:first-child,
  .video-left-row .content-wrap:first-child {
    margin-right: 0;
    margin-bottom: 30px;
  }
  /* line 146, /app/app/assets/stylesheets/shared/video_left_right_rows.scss */
  .video-left-row .vid-wrap:last-child,
  .video-left-row .content-wrap:last-child {
    margin-top: 30px;
    margin-left: 0;
  }

  /* line 153, /app/app/assets/stylesheets/shared/video_left_right_rows.scss */
  .video-right-row {
    flex-direction: column-reverse;
  }
  /* line 159, /app/app/assets/stylesheets/shared/video_left_right_rows.scss */
  .video-right-row .vid-wrap:first-child,
  .video-right-row .content-wrap:first-child {
    margin-right: 0;
    margin-top: 30px;
  }
  /* line 163, /app/app/assets/stylesheets/shared/video_left_right_rows.scss */
  .video-right-row .vid-wrap:last-child,
  .video-right-row .content-wrap:last-child {
    margin-bottom: 30px;
    margin-left: 0;
  }
}
/* line 1, /app/app/assets/stylesheets/shared/video_rotator.scss */
.video-row {
  margin-bottom: 80px;
}
/* line 4, /app/app/assets/stylesheets/shared/video_rotator.scss */
.video-row:last-child {
  margin-bottom: 120px;
}
/* line 8, /app/app/assets/stylesheets/shared/video_rotator.scss */
.video-row .title-wrapper {
  position: relative;
  z-index: 1;
  margin: auto;
  padding: 0 20px;
}
/* line 15, /app/app/assets/stylesheets/shared/video_rotator.scss */
.video-row .video-rotator {
  position: relative;
  z-index: 2;
  width: calc(100% - 120px);
  margin: 0 auto 60px;
}
/* line 22, /app/app/assets/stylesheets/shared/video_rotator.scss */
.video-row .slick-track {
  display: flex;
}
/* line 26, /app/app/assets/stylesheets/shared/video_rotator.scss */
.video-row .slick-prev,
.video-row .slick-next {
  position: absolute;
  z-index: 5;
  top: calc(50% - (58px / 2));
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 58px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  outline: none;
  background-color: #262626;
}
/* line 43, /app/app/assets/stylesheets/shared/video_rotator.scss */
.video-row .slick-prev svg,
.video-row .slick-next svg {
  width: 16px;
  height: 28px;
  fill: #ffffff;
}
/* line 48, /app/app/assets/stylesheets/shared/video_rotator.scss */
.video-row .slick-prev svg:hover,
.video-row .slick-next svg:hover {
  fill: #99762a;
}
/* line 53, /app/app/assets/stylesheets/shared/video_rotator.scss */
.video-row .slick-prev:hover,
.video-row .slick-next:hover {
  background-color: #333333;
}
@media screen and (max-width: 600px) {
  /* line 26, /app/app/assets/stylesheets/shared/video_rotator.scss */
  .video-row .slick-prev,
  .video-row .slick-next {
    display: none !important;
  }
}
/* line 62, /app/app/assets/stylesheets/shared/video_rotator.scss */
.video-row .slick-prev {
  left: -60px;
  justify-content: flex-start;
}
/* line 66, /app/app/assets/stylesheets/shared/video_rotator.scss */
.video-row .slick-prev svg {
  transform: rotate(-180deg);
}
/* line 71, /app/app/assets/stylesheets/shared/video_rotator.scss */
.video-row .slick-next {
  right: -60px;
  justify-content: flex-end;
}
/* line 76, /app/app/assets/stylesheets/shared/video_rotator.scss */
.video-row .vid-block {
  width: auto;
  width: calc(20% - 3px);
  margin: 0;
  margin-right: 3px;
}
/* line 82, /app/app/assets/stylesheets/shared/video_rotator.scss */
.video-row .vid-block::after {
  display: none;
}

/* line 1, /app/app/assets/stylesheets/shared/video_wrapper.scss */
.video-wrapper {
  position: relative;
  overflow: hidden;
}
/* line 5, /app/app/assets/stylesheets/shared/video_wrapper.scss */
.video-wrapper > div {
  width: 100%;
}
/* line 9, /app/app/assets/stylesheets/shared/video_wrapper.scss */
.video-wrapper #previewimage {
  position: relative;
  cursor: pointer;
  z-index: 1;
}
/* line 15, /app/app/assets/stylesheets/shared/video_wrapper.scss */
.video-wrapper .playoverlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: all 0.3s ease;
}
/* line 23, /app/app/assets/stylesheets/shared/video_wrapper.scss */
.video-wrapper .playoverlay .icon-play {
  transition: all 0.3s ease;
  transform: scale(1);
}
/* line 30, /app/app/assets/stylesheets/shared/video_wrapper.scss */
.video-wrapper .playoverlay:hover .icon-play {
  transform: scale(1.15);
}
/* line 36, /app/app/assets/stylesheets/shared/video_wrapper.scss */
.video-wrapper img {
  width: 100%;
  display: block;
}

/* line 3, /app/app/assets/stylesheets/shared/visual_liturgy_search.scss */
.visual-liturgy-select {
  display: none;
}

/* line 7, /app/app/assets/stylesheets/shared/visual_liturgy_search.scss */
.lectionary-dates {
  width: 300px;
  height: 100%;
  margin: 0 2px;
  background-color: #ffffff;
}
@media screen and (max-width: 960px) {
  /* line 7, /app/app/assets/stylesheets/shared/visual_liturgy_search.scss */
  .lectionary-dates {
    width: 200px;
  }
}
@media screen and (max-width: 600px) {
  /* line 7, /app/app/assets/stylesheets/shared/visual_liturgy_search.scss */
  .lectionary-dates {
    width: 133px;
  }
}
/* line 21, /app/app/assets/stylesheets/shared/visual_liturgy_search.scss */
.lectionary-dates .select2-selection__rendered {
  padding: 14px 0;
  white-space: nowrap;
  overflow: hidden;
  letter-spacing: 1px;
}
@media screen and (max-width: 567px) {
  /* line 21, /app/app/assets/stylesheets/shared/visual_liturgy_search.scss */
  .lectionary-dates .select2-selection__rendered {
    width: 85px;
  }
}

/* line 33, /app/app/assets/stylesheets/shared/visual_liturgy_search.scss */
.select2-dropdown--below {
  width: 300px !important;
}

/* line 37, /app/app/assets/stylesheets/shared/visual_liturgy_search.scss */
.select2-search__field {
  outline: none;
}

/* line 41, /app/app/assets/stylesheets/shared/visual_liturgy_search.scss */
.lectionary-dates .select2-container {
  font-family: "Lato", Helvetica, arial, sans-serif;
}
/* line 44, /app/app/assets/stylesheets/shared/visual_liturgy_search.scss */
.lectionary-dates .select2-container .select2-selection {
  font-size: 14px;
  position: relative;
  display: flex;
  max-width: 300px;
  height: 58px;
  padding: 4px 12px;
  text-transform: uppercase;
  color: #666666;
  border: 2px solid #ffffff;
}
/* line 55, /app/app/assets/stylesheets/shared/visual_liturgy_search.scss */
.lectionary-dates .select2-container .select2-selection:after {
  position: absolute;
  top: 24px;
  right: 12px;
  width: 0;
  height: 0;
  content: "";
  border-width: 10px 7px 0 7px;
  border-style: solid;
  border-color: #057D7F transparent transparent transparent;
}

/* line 70, /app/app/assets/stylesheets/shared/visual_liturgy_search.scss */
.select2-dropdown {
  font-family: "Lato", Helvetica, arial, sans-serif;
  display: block;
  overflow: auto;
  max-height: 500px;
  background-color: #ffffff;
}

/* line 79, /app/app/assets/stylesheets/shared/visual_liturgy_search.scss */
.select2-search__field {
  width: 100%;
  padding: 8px;
  border: none;
  background: #ffffff;
  height: 53px;
}

/* line 87, /app/app/assets/stylesheets/shared/visual_liturgy_search.scss */
.select2-results__option {
  padding: 4px 10px;
  font-size: 15px;
}
/* line 91, /app/app/assets/stylesheets/shared/visual_liturgy_search.scss */
.select2-results__option:hover {
  background-color: #efefef;
}

/* line 96, /app/app/assets/stylesheets/shared/visual_liturgy_search.scss */
.cycle {
  display: flex;
  height: 58px;
}
@media screen and (max-width: 767px) {
  /* line 96, /app/app/assets/stylesheets/shared/visual_liturgy_search.scss */
  .cycle {
    display: none;
  }
}
/* line 104, /app/app/assets/stylesheets/shared/visual_liturgy_search.scss */
.cycle label {
  font-family: "Lato", Helvetica, arial, sans-serif;
  font-size: 18px;
  font-weight: bold;
  width: 53px;
  height: 100%;
  margin-right: 2px;
  color: #057D7F;
  background-color: #ffffff;
}
/* line 115, /app/app/assets/stylesheets/shared/visual_liturgy_search.scss */
.cycle input {
  display: none;
}
/* line 119, /app/app/assets/stylesheets/shared/visual_liturgy_search.scss */
.cycle span {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  transition: all .2s ease;
}
/* line 128, /app/app/assets/stylesheets/shared/visual_liturgy_search.scss */
.cycle span:hover {
  border-color: #057D7F;
}
/* line 133, /app/app/assets/stylesheets/shared/visual_liturgy_search.scss */
.cycle input:checked + span {
  background: #057D7F;
  color: #ffffff;
}

/* line 5, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper {
  display: flex;
}
@media screen and (max-width: 820px) {
  /* line 5, /app/app/assets/stylesheets/account/group.scss */
  .account-wrapper {
    flex-wrap: wrap;
  }
}
/* line 12, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper .page-heading {
  margin-bottom: 28px;
  padding-left: 0;
}
/* line 16, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper .page-heading h2 {
  font-size: 18px;
  margin-bottom: 5px;
}
/* line 21, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper .page-heading h3 {
  font-size: 26px;
}
/* line 26, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper .error-text {
  font-family: "Lato", Helvetica, arial, sans-serif;
  color: #f14f3e;
}
/* line 31, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper .edit-button-wrapper {
  margin-bottom: 32px;
}
/* line 34, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper .edit-button-wrapper .button {
  font-size: 12px;
  font-weight: 600;
  line-height: 26px;
  padding: 0 12px;
  border-radius: 4px;
}
/* line 43, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper .field {
  overflow: hidden;
  width: 100%;
  max-width: 320px;
}
/* line 48, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper .field label {
  font-family: "Lato", Helvetica, arial, sans-serif;
  font-size: 14px;
  margin: 0 0 2px 5px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
/* line 56, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper .field .avatar {
  float: right;
  width: 100%;
  max-width: 60px;
}
/* line 61, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper .field .avatar img {
  width: 100%;
}
/* line 66, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper .field input {
  border-color: #99762a;
}
/* line 69, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper .field input:focus {
  background-color: #ffffff;
}
/* line 75, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper .submit-button-wrapper {
  margin-top: 24px;
}
/* line 78, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper .submit-button-wrapper .button {
  line-height: 60px;
  width: 100%;
  max-width: 200px;
}
/* line 85, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper .account {
  width: calc(100% - 320px);
}
/* line 88, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper .account p {
  margin-bottom: 32px;
}
@media screen and (max-width: 820px) {
  /* line 85, /app/app/assets/stylesheets/account/group.scss */
  .account-wrapper .account {
    width: 100%;
  }
}
/* line 97, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper .account-menu {
  width: 100%;
  max-width: 280px;
  margin-right: 40px;
  padding: 0;
}
/* line 103, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper .account-menu .menu-heading {
  margin-bottom: 40px;
}
/* line 106, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper .account-menu .menu-heading h3 {
  font-size: 18px;
  margin-bottom: 4px;
}
/* line 111, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper .account-menu .menu-heading h5 {
  font-size: 14px;
  color: #f14f3e;
}
/* line 115, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper .account-menu .menu-heading h5 strong {
  font-weight: 600;
}
/* line 120, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper .account-menu .menu-heading p {
  font-family: "Lato", Helvetica, arial, sans-serif;
  font-size: 14px;
  margin-bottom: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #99752f;
}
/* line 130, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper .account-menu ul {
  min-height: 600px;
  border-left: 1px solid #99762a;
}
/* line 134, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper .account-menu ul li {
  transition: all 0.3s ease;
}
/* line 137, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper .account-menu ul li a {
  font-family: "Lato", Helvetica, arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  display: block;
  padding: 8px 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #262626;
}
/* line 147, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper .account-menu ul li a:hover {
  color: #99762a;
}
/* line 153, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper .account-menu ul li.current a {
  border-left: 3px solid #99762a;
  background-color: #ffffff;
}
@media screen and (max-width: 880px) {
  /* line 97, /app/app/assets/stylesheets/account/group.scss */
  .account-wrapper .account-menu {
    max-width: 220px;
  }
}
@media screen and (max-width: 820px) {
  /* line 97, /app/app/assets/stylesheets/account/group.scss */
  .account-wrapper .account-menu {
    position: relative;
    width: calc(100% + 80px);
    max-width: none;
    margin-right: -40px;
    margin-bottom: 50px;
    margin-left: -40px;
  }
  /* line 173, /app/app/assets/stylesheets/account/group.scss */
  .account-wrapper .account-menu::before, .account-wrapper .account-menu::after {
    position: absolute;
    z-index: 5;
    top: 0;
    bottom: 0;
    display: block;
    width: 32px;
    content: '';
  }
  /* line 184, /app/app/assets/stylesheets/account/group.scss */
  .account-wrapper .account-menu::before {
    left: 0;
    background: -moz-linear-gradient(left, #f8f3ea 0%, rgba(255, 255, 255, 0) 100%);
    background: -webkit-linear-gradient(left, #f8f3ea 0%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(to right, #f8f3ea 0%, rgba(255, 255, 255, 0) 100%);
  }
  /* line 191, /app/app/assets/stylesheets/account/group.scss */
  .account-wrapper .account-menu::after {
    right: 0;
    background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, #f8f3ea 100%);
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, #f8f3ea 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #f8f3ea 100%);
  }
  /* line 198, /app/app/assets/stylesheets/account/group.scss */
  .account-wrapper .account-menu .menu-heading {
    margin-bottom: 16px;
    padding: 0 40px;
  }
  /* line 203, /app/app/assets/stylesheets/account/group.scss */
  .account-wrapper .account-menu ul {
    position: relative;
    overflow: auto;
    min-height: 0;
    padding: 12px 32px;
    white-space: nowrap;
    border-left: none;
  }
  /* line 211, /app/app/assets/stylesheets/account/group.scss */
  .account-wrapper .account-menu ul li {
    display: inline-block;
    width: auto;
    border-left: none;
  }
  /* line 216, /app/app/assets/stylesheets/account/group.scss */
  .account-wrapper .account-menu ul li a {
    padding-right: 6px;
    padding-left: 6px;
  }
}
@media screen and (max-width: 767px) {
  /* line 97, /app/app/assets/stylesheets/account/group.scss */
  .account-wrapper .account-menu {
    width: calc(100% + 64px);
    margin-right: -32px;
    margin-left: -32px;
  }
  /* line 230, /app/app/assets/stylesheets/account/group.scss */
  .account-wrapper .account-menu .menu-heading {
    padding: 0 32px;
  }
}
/* line 237, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper .account-videos-list .list-block {
  display: flex;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #d4c0a1;
}
/* line 244, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper .account-videos-list .video-thumb {
  width: 100%;
  max-width: 220px;
  padding-right: 40px;
}
/* line 249, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper .account-videos-list .video-thumb a {
  display: block;
}
/* line 253, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper .account-videos-list .video-thumb img {
  width: 100%;
  vertical-align: middle;
}
/* line 259, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper .account-videos-list .video-details {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
/* line 264, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper .account-videos-list .video-details .video-text {
  padding-right: 32px;
}
/* line 268, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper .account-videos-list .video-details .video-text a:hover, .account-wrapper .account-videos-list .video-details .video-text a:focus {
  color: #5a7786;
}
/* line 274, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper .account-videos-list .video-details .video-text h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
/* line 281, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper .account-videos-list .video-details .video-text p {
  font-size: 16px;
  max-width: 400px;
}
/* line 285, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper .account-videos-list .video-details .video-text p:last-of-type {
  margin-bottom: 0;
}
/* line 291, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper .account-videos-list .video-details .button-wrapper {
  display: flex;
  align-items: center;
}
/* line 295, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper .account-videos-list .video-details .button-wrapper a {
  font-size: 16px;
  padding: 0 20px;
  border-radius: 4px;
}
@media screen and (max-width: 640px), screen and (min-width: 821px) and (max-width: 999px) {
  /* line 304, /app/app/assets/stylesheets/account/group.scss */
  .account-wrapper .account-videos-list .video-thumb {
    max-width: 180px;
    padding-right: 20px;
  }
  /* line 308, /app/app/assets/stylesheets/account/group.scss */
  .account-wrapper .account-videos-list .video-details {
    flex-wrap: wrap;
  }
  /* line 311, /app/app/assets/stylesheets/account/group.scss */
  .account-wrapper .account-videos-list .video-details .video-text {
    width: 100%;
    margin-bottom: 16px;
    padding-right: 0;
  }
  /* line 316, /app/app/assets/stylesheets/account/group.scss */
  .account-wrapper .account-videos-list .video-details .video-text h3 {
    font-size: 16px;
    letter-spacing: 1px;
  }
}
@media screen and (max-width: 420px) {
  /* line 325, /app/app/assets/stylesheets/account/group.scss */
  .account-wrapper .account-videos-list .list-block {
    flex-wrap: wrap;
  }
  /* line 329, /app/app/assets/stylesheets/account/group.scss */
  .account-wrapper .account-videos-list .video-thumb {
    width: 100%;
    max-width: none;
    margin-bottom: 16px;
    padding-right: 0;
    text-align: center;
  }
  /* line 336, /app/app/assets/stylesheets/account/group.scss */
  .account-wrapper .account-videos-list .video-thumb img {
    width: 100%;
  }
  /* line 341, /app/app/assets/stylesheets/account/group.scss */
  .account-wrapper .account-videos-list .video-details {
    width: 100%;
  }
}
/* line 347, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper .series-li {
  display: flex;
  width: 100%;
  margin-bottom: 16px;
  padding: 0 0 16px;
  border-bottom: 1px solid #d4c0a1;
}
/* line 354, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper .series-li .series-li-image {
  width: 25%;
}
/* line 357, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper .series-li .series-li-image img {
  display: block;
  width: 100%;
}
/* line 363, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper .series-li .series-li-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 75%;
  padding-left: 16px;
}
/* line 371, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper .series-li .series-li-details h3 {
  font-size: 16px;
  width: 50%;
  margin-bottom: 8px;
  padding-right: 16px;
  text-align: left;
}
/* line 379, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper .series-li .series-li-details .series-li-formats {
  justify-content: flex-end;
  width: 50%;
}
/* line 383, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper .series-li .series-li-details .series-li-formats select {
  font-family: "Lato", Helvetica, arial, sans-serif;
  font-size: 12px;
  line-height: 32px;
  width: 70%;
  height: 32px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  border: 1px solid #262626;
  background-color: transparent;
}
/* line 394, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper .series-li .series-li-details .series-li-formats select:focus {
  background-color: #ffffff;
}
@media screen and (max-width: 480px) {
  /* line 363, /app/app/assets/stylesheets/account/group.scss */
  .account-wrapper .series-li .series-li-details {
    flex-wrap: wrap;
  }
  /* line 403, /app/app/assets/stylesheets/account/group.scss */
  .account-wrapper .series-li .series-li-details h3 {
    width: 100%;
    margin-bottom: 8px;
  }
  /* line 408, /app/app/assets/stylesheets/account/group.scss */
  .account-wrapper .series-li .series-li-details .series-li-formats {
    width: 100%;
  }
}
/* line 414, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper .series-li.series-li-additional {
  justify-content: flex-end;
}
/* line 417, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper .series-li.series-li-additional .series-li-title {
  font-size: 14px;
  margin-bottom: 0;
}
/* line 424, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper .series-li-formats,
.account-wrapper .series-li-additional {
  display: flex;
  align-items: center;
}
/* line 429, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper .series-li-formats .download,
.account-wrapper .series-li-additional .download {
  display: flex;
  align-items: center;
  padding-left: 12px;
}
/* line 434, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper .series-li-formats .download .button,
.account-wrapper .series-li-additional .download .button {
  font-size: 12px;
  line-height: 32px;
  height: 32px;
  padding: 0 12px;
}
/* line 443, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper .series-li-download-date {
  font-size: 12px;
}
/* line 447, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper .film-series-download-list {
  margin: 36px 0 36px 0;
  padding: 24px 24px 0 24px;
  background-color: #e4dcce;
}
/* line 452, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper .film-series-download-list .film-series-download-title {
  margin-bottom: 36px;
}
/* line 455, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper .film-series-download-list .film-series-download-title h3 {
  font-size: 14px;
  font-weight: 600;
  color: #99762a;
}
/* line 461, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper .film-series-download-list .film-series-download-title h4 {
  font-size: 24px;
}
/* line 466, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper .film-series-download-list .series-li {
  border-bottom: 1px solid #f8f3ea;
}
/* line 470, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper .film-series-download-list .series-li-additional {
  border-bottom: none;
}
/* line 475, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper table.purchase-history {
  width: 100%;
}
/* line 478, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper table.purchase-history thead tr {
  font-family: "Lato", Helvetica, arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
}
/* line 485, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper table.purchase-history tbody {
  font-size: 14px;
}
/* line 488, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper table.purchase-history tbody tr {
  font-family: "Lato", Helvetica, arial, sans-serif;
}
/* line 491, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper table.purchase-history tbody tr:nth-child(odd) {
  background-color: #e9e3d8;
}
/* line 495, /app/app/assets/stylesheets/account/group.scss */
.account-wrapper table.purchase-history tbody tr td {
  padding: 8px;
}
