/* line 5, ../../../vendor/ruby/1.9.1/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.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: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

/* line 22, ../../../vendor/ruby/1.9.1/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
html {
  line-height: 1;
}

/* line 24, ../../../vendor/ruby/1.9.1/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
ol, ul {
  list-style: none;
}

/* line 26, ../../../vendor/ruby/1.9.1/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 28, ../../../vendor/ruby/1.9.1/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

/* line 30, ../../../vendor/ruby/1.9.1/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
q, blockquote {
  quotes: none;
}
/* line 103, ../../../vendor/ruby/1.9.1/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

/* line 32, ../../../vendor/ruby/1.9.1/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
a img {
  border: none;
}

/* line 116, ../../../vendor/ruby/1.9.1/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/*
 * Section Styles:
 */
/*Font stacks taken from https://gist.github.com/gpessia/8595729*/
/*
 # The zoom effect on imagecards requires background sizes to be specified with absolute pixel values
 # this is because css transitions won't work on 'background-size: cover' and percentage values break on window resize
 # this function is used to generate these absolute pixel values
 # 
 # $image: the url of the bg image used
 # $minDimension: width or height
 # $minValue: the px value of the $minDimension
 # $zoomFactor: how much the bg should zoom on hover
*/
/*################
 # Navbar
 ###############*/
/* line 15, ../../sass/partials/_hero.scss */
#navbar {
  width: 100%;
  padding: 0;
  margin: 0;
  position: relative;
  height: 75px;
  background-color: #252525;
  border-bottom: 0.5px solid rgba(137, 137, 137, 0.5);
  z-index: 5;
}

/* line 26, ../../sass/partials/_hero.scss */
#navGrip {
  position: absolute;
  right: 1em;
  top: 1em;
}
/* line 31, ../../sass/partials/_hero.scss */
#navGrip:hover {
  cursor: pointer;
}

/* line 36, ../../sass/partials/_hero.scss */
#navMenu {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  position: absolute;
  z-index: -1;
  background-clip: content-box;
  top: 75px;
  right: 0px;
  height: 100vh;
  margin: 0;
  padding: 0;
  /* make navmenu vertical fill viewport*/
  padding-top: 75px;
  margin-top: -75px;
  box-sizing: border-box;
  font-stretch: normal;
  font-family: "HelveticaNeueLight", "HelveticaNeue-Light", "Helvetica Neue Light", "HelveticaNeue", "Helvetica Neue", 'TeXGyreHerosRegular', "Helvetica", "Arial", "Tahoma", "Geneva", sans-serif;
  font-weight: 300;
  font-stretch: normal;
  letter-spacing: .4px;
  color: white;
  list-style: none;
  background-color: rgba(54, 54, 54, 0.95);
  text-align: right;
  transition: 0.5s all;
  /*navMenu starts at width 0 on the right side of the page*/
  width: 0px;
  overflow: hidden;
  white-space: nowrap;
}
/* line 64, ../../sass/partials/_hero.scss */
#navMenu #logIn {
  color: #cfcfcf;
}
/* line 67, ../../sass/partials/_hero.scss */
#navMenu #logIn:hover {
  color: white;
}
/* line 71, ../../sass/partials/_hero.scss */
#navMenu #signUp {
  background-color: rgba(23, 23, 23, 0.8);
  color: #ff7d25;
}
/* line 74, ../../sass/partials/_hero.scss */
#navMenu #signUp:hover {
  color: #ff9125;
}
/* line 80, ../../sass/partials/_hero.scss */
#navMenu.open {
  width: 230px;
}
/* line 84, ../../sass/partials/_hero.scss */
#navMenu li a {
  display: block;
  border-bottom: 0.5px solid rgba(137, 137, 137, 0.5);
  padding: 0.8em;
  text-decoration: none;
  color: inherit;
}
/* line 90, ../../sass/partials/_hero.scss */
#navMenu li a:hover {
  cursor: pointer;
}

/* language dropdown*/
/* line 97, ../../sass/partials/_hero.scss */
#language {
  /*expand/collapse symbol on language item*/
}
/* line 98, ../../sass/partials/_hero.scss */
#language ul {
  list-style: none;
  padding: 0;
  position: absolute;
  width: 100%;
  height: 0;
  background-color: rgba(158, 158, 158, 0.5);
  overflow: hidden;
  transition: 0.5s all;
}
/* line 110, ../../sass/partials/_hero.scss */
#language li a {
  border: none;
  font-size: 0.85em;
}
/* line 116, ../../sass/partials/_hero.scss */
#language a span {
  display: inline-block;
  transition: 0.2s all;
  border-bottom: 1px solid white;
  height: 5px;
  width: 5px;
  border-right: 1px solid white;
  transform: rotate(45deg);
  position: relative;
  bottom: 3px;
  left: 2px;
}
/* line 129, ../../sass/partials/_hero.scss */
#language.expanded {
  color: #cfcfcf;
}
/* line 132, ../../sass/partials/_hero.scss */
#language.expanded a span {
  transform: scaleY(-1) rotate(45deg);
}
/* line 135, ../../sass/partials/_hero.scss */
#language.expanded ul {
  display: block;
  height: 100%;
}

/*################
 # Hero - top image with slides labeled hs1, hs2, hs3...
 ###############*/
/* line 145, ../../sass/partials/_hero.scss */
#hero {
  width: 100%;
  /*makes the hero vertically fill the viewport*/
  height: 100vh;
  padding-top: 75px;
  margin-top: -75px;
  box-sizing: border-box;
  z-index: 0;
  position: relative;
}

/* line 156, ../../sass/partials/_hero.scss */
#logoWrapper {
  display: inline-block;
}

/* line 160, ../../sass/partials/_hero.scss */
#logoImg {
  height: 65px;
  padding: 5px 0px 0 5px;
}

/* line 165, ../../sass/partials/_hero.scss */
#logoTagline {
  width: 150px;
  padding-bottom: 5px;
}

/* line 170, ../../sass/partials/_hero.scss */
#slideDotSection {
  position: absolute;
  z-index: 100;
  bottom: 1em;
  width: 100%;
  text-align: center;
}

/* line 178, ../../sass/partials/_hero.scss */
.slideDot {
  display: inline-block;
  margin: 0.5em;
  width: 11px;
  height: 11px;
  border: 1px solid #b7b7b7;
  transition: 0.5s all;
  border-radius: 50%;
}
/* line 186, ../../sass/partials/_hero.scss */
.slideDot.active {
  background: white;
}

/* line 191, ../../sass/partials/_hero.scss */
.heroSlide {
  position: absolute;
  margin-top: -75px;
  width: 100%;
  z-index: 2;
  font-stretch: normal;
  font-family: "HelveticaNeueMedium", "HelveticaNeue-Medium", "Helvetica Neue Medium", "HelveticaNeue", "Helvetica Neue", 'TeXGyreHerosRegular', "Helvetica", "Arial", "Tahoma", "Geneva", sans-serif;
  font-weight: 600;
  font-stretch: normal;
  color: white;
  height: 100%;
  display: block;
  /* class temporarily applied to slides when slideshow fades from the active slide to the onDeck slide */
  /* displayed slide */
}
/* line 201, ../../sass/partials/_hero.scss */
.heroSlide.onDeck {
  z-index: 3;
}
/* line 206, ../../sass/partials/_hero.scss */
.heroSlide.active {
  z-index: 4;
}
/* line 209, ../../sass/partials/_hero.scss */
.heroSlide.uninitialized {
  display: none;
}

/* line 214, ../../sass/partials/_hero.scss */
.slideText {
  width: 100%;
  background: rgba(0, 0, 0, 0.65);
  position: absolute;
  bottom: 0;
  text-align: center;
  box-sizing: border-box;
  /* positions text above slideDots*/
  padding: 0 5px 60px 5px;
}
/* line 224, ../../sass/partials/_hero.scss */
.slideText h1 {
  color: white;
  font-stretch: normal;
  font-family: "Helvetica Neue", "HelveticaNeueRoman", "HelveticaNeue-Roman", "Helvetica Neue Roman", "HelveticaNeue", 'TeXGyreHerosRegular', "Helvetica", "Arial", "Tahoma", "Geneva", sans-serif;
  font-weight: 300;
  font-stretch: normal;
  font-size: 1.8em;
  font-weight: 500;
  margin: 0.5em 0;
}
/* line 232, ../../sass/partials/_hero.scss */
.slideText p {
  line-height: 1.4em;
  font-size: 1.05em;
  margin: 0;
  font-stretch: normal;
  font-family: "Helvetica Neue", "HelveticaNeueRoman", "HelveticaNeue-Roman", "Helvetica Neue Roman", "HelveticaNeue", 'TeXGyreHerosRegular', "Helvetica", "Arial", "Tahoma", "Geneva", sans-serif;
  font-weight: 300;
  font-stretch: normal;
  margin-top: 0.3em;
  letter-spacing: .1px;
  padding-top: .2em;
}
/* line 240, ../../sass/partials/_hero.scss */
.slideText p:last-child {
  margin-top: 0.9rem;
}
/* line 247, ../../sass/partials/_hero.scss */
.slideText .learnMore {
  text-decoration: none;
  color: #35c5f4;
  font-size: 0.8em;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
}
/* line 256, ../../sass/partials/_hero.scss */
.slideText .joinButton {
  background-color: #ff7d25;
  border: none;
  color: white;
  font-stretch: normal;
  font-family: "HelveticaNeueMedium", "HelveticaNeue-Medium", "Helvetica Neue Medium", "HelveticaNeue", "Helvetica Neue", 'TeXGyreHerosRegular', "Helvetica", "Arial", "Tahoma", "Geneva", sans-serif;
  font-weight: 600;
  font-stretch: normal;
  font-weight: 500;
  padding: 0.6em 2.5em;
  font-size: 1em;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  display: inline-block;
}
/* line 14, ../../sass/modules/_mixins.scss */
.slideText .joinButton:hover {
  cursor: pointer;
  background-color: #fb6e0f;
}

/* line 261, ../../sass/partials/_hero.scss */
.hs1 {
  background: url('/525/_img/home/SL_Homepage_Adventure_February2018.jpg?1522951479') no-repeat center top;
  background-size: cover;
  background-position: 60% 75px;
}

/* line 267, ../../sass/partials/_hero.scss */
.hs2 {
  background: url('/525/_img/home/SL_Homepage_Creator_February2018.jpg?1522951479') no-repeat center top;
  background-size: cover;
  background-position: 60% 75px;
}

/* line 273, ../../sass/partials/_hero.scss */
.hs3 {
  background: url('/525/_img/home/Hero_3Business.jpg?1522951479') no-repeat center top;
  background-size: cover;
  background-position: 30% 75px;
}

/*Slide Control Buttons*/
/* line 280, ../../sass/partials/_hero.scss */
#heroLeft, #heroRight {
  display: none;
}

/*
 # Tablet/Desktop Styles
*/
@media (min-width: 500px) {
  /*
   # navbar
  */
  /* line 291, ../../sass/partials/_hero.scss */
  #navbar {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 0;
    margin: 0;
    height: 38px;
    background-color: rgba(0, 0, 0, 0.4);
    border-bottom: 0.5px solid rgba(137, 137, 137, 0.5);
    z-index: 5;
  }

  /* line 303, ../../sass/partials/_hero.scss */
  #navGrip {
    display: none;
  }

  /* line 307, ../../sass/partials/_hero.scss */
  #navMenu, #navMenu.open {
    z-index: 6;
    height: 100%;
    width: 100%;
    top: 0;
    margin: 0;
    line-height: 38px;
    padding: 0 1em;
    background: none;
    color: white;
    font-size: 0.81em;
    text-transform: uppercase;
    list-style: none;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex-direction: row;
    flex-direction: row;
    overflow: visible;
  }
  /* line 326, ../../sass/partials/_hero.scss */
  #navMenu li, #navMenu.open li {
    border: none;
    margin-left: 5px;
  }
  /* line 330, ../../sass/partials/_hero.scss */
  #navMenu li a, #navMenu.open li a {
    padding: 0 0.7em;
    display: block;
    background-clip: padding-box;
  }
  /* line 336, ../../sass/partials/_hero.scss */
  #navMenu li:hover a, #navMenu.open li:hover a {
    cursor: pointer;
  }
  /* line 341, ../../sass/partials/_hero.scss */
  #navMenu #signUp, #navMenu.open #signUp {
    background: none;
    /*override "log in" text on mobile*/
  }
  /* line 344, ../../sass/partials/_hero.scss */
  #navMenu #signUp a::after, #navMenu.open #signUp a::after {
    content: '';
  }

  /* line 351, ../../sass/partials/_hero.scss */
  #language.expanded {
    color: white;
  }
  /* line 355, ../../sass/partials/_hero.scss */
  #language a span, #language.expanded a span {
    transform: rotate(45deg);
  }
  /* line 359, ../../sass/partials/_hero.scss */
  #language ul, #language.expanded ul {
    position: static;
    display: none;
    overflow: visible;
    margin: 0;
    padding: 0;
    background: none;
  }
  /* line 367, ../../sass/partials/_hero.scss */
  #language ul li, #language.expanded ul li {
    margin: 0;
  }
  /* line 371, ../../sass/partials/_hero.scss */
  #language ul li a, #language.expanded ul li a {
    padding: 0.7em;
    line-height: 1;
    background: rgba(20, 20, 20, 0.5);
    color: white;
    font-stretch: normal;
    font-family: "HelveticaNeueLight", "HelveticaNeue-Light", "Helvetica Neue Light", "HelveticaNeue", "Helvetica Neue", 'TeXGyreHerosRegular', "Helvetica", "Arial", "Tahoma", "Geneva", sans-serif;
    font-weight: 300;
    font-stretch: normal;
  }
  /* line 379, ../../sass/partials/_hero.scss */
  #language ul li a:hover, #language.expanded ul li a:hover {
    background: rgba(20, 20, 20, 0.8);
  }
  /* line 386, ../../sass/partials/_hero.scss */
  #language:hover, #language.expanded {
    color: #cfcfcf;
  }
  /* line 389, ../../sass/partials/_hero.scss */
  #language:hover ul, #language.expanded ul {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  /* line 393, ../../sass/partials/_hero.scss */
  #language:hover a span, #language.expanded a span {
    transform: scaleY(-1) rotate(45deg);
  }

  /*
   # Logo
  */
  /* line 405, ../../sass/partials/_hero.scss */
  #logoWrapper {
    z-index: 5;
    position: absolute;
    top: 49px;
    left: 5em;
    /*override inline block at mobile size*/
  }
  /* line 412, ../../sass/partials/_hero.scss */
  #logoWrapper img {
    display: block;
  }

  /* line 417, ../../sass/partials/_hero.scss */
  #logoImg {
    padding: 0;
    height: 100px;
  }

  /* line 423, ../../sass/partials/_hero.scss */
  #logoTagline {
    width: 193.6px;
  }

  /*
   # Slides
  */
  /* line 431, ../../sass/partials/_hero.scss */
  #hero {
    height: 450px;
    padding-top: 0;
    margin-top: 0;
  }

  /* line 438, ../../sass/partials/_hero.scss */
  .hs1 {
    background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjgiLz48c3RvcCBvZmZzZXQ9IjkwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA='), url('/525/_img/home/SL_Homepage_Adventure_February2018.jpg?1522951479') no-repeat center top;
    background: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, rgba(0, 0, 0, 0.8)), color-stop(90%, rgba(0, 0, 0, 0))), url('/525/_img/home/SL_Homepage_Adventure_February2018.jpg?1522951479') no-repeat center top;
    background: -moz-linear-gradient(left, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 90%), url('/525/_img/home/SL_Homepage_Adventure_February2018.jpg?1522951479') no-repeat center top;
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 90%), url('/525/_img/home/SL_Homepage_Adventure_February2018.jpg?1522951479') no-repeat center top;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 90%), url('/525/_img/home/SL_Homepage_Adventure_February2018.jpg?1522951479') no-repeat center top;
    background-size: cover;
    background-position: 60% 0;
  }

  /* line 446, ../../sass/partials/_hero.scss */
  .hs2 {
    background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjgiLz48c3RvcCBvZmZzZXQ9IjkwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA='), url('/525/_img/home/SL_Homepage_Creator_February2018.jpg?1522951479') no-repeat center top;
    background: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, rgba(0, 0, 0, 0.8)), color-stop(90%, rgba(0, 0, 0, 0))), url('/525/_img/home/SL_Homepage_Creator_February2018.jpg?1522951479') no-repeat center top;
    background: -moz-linear-gradient(left, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 90%), url('/525/_img/home/SL_Homepage_Creator_February2018.jpg?1522951479') no-repeat center top;
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 90%), url('/525/_img/home/SL_Homepage_Creator_February2018.jpg?1522951479') no-repeat center top;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 90%), url('/525/_img/home/SL_Homepage_Creator_February2018.jpg?1522951479') no-repeat center top;
    background-size: cover;
    background-position: 60% 0;
  }

  /* line 454, ../../sass/partials/_hero.scss */
  .hs3 {
    background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjgiLz48c3RvcCBvZmZzZXQ9IjkwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA='), url('/525/_img/home/Hero_3Business.jpg?1522951479') no-repeat center top;
    background: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, rgba(0, 0, 0, 0.8)), color-stop(90%, rgba(0, 0, 0, 0))), url('/525/_img/home/Hero_3Business.jpg?1522951479') no-repeat center top;
    background: -moz-linear-gradient(left, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 90%), url('/525/_img/home/Hero_3Business.jpg?1522951479') no-repeat center top;
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 90%), url('/525/_img/home/Hero_3Business.jpg?1522951479') no-repeat center top;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 90%), url('/525/_img/home/Hero_3Business.jpg?1522951479') no-repeat center top;
    background-size: cover;
    background-position: 30% 0;
  }

  /* line 462, ../../sass/partials/_hero.scss */
  .heroSlide {
    /* undo mobile style */
    margin-top: 0;
  }

  /* line 466, ../../sass/partials/_hero.scss */
  .slideText {
    background: none;
    font-stretch: normal;
    font-family: "HelveticaNeueLight", "HelveticaNeue-Light", "Helvetica Neue Light", "HelveticaNeue", "Helvetica Neue", 'TeXGyreHerosRegular', "Helvetica", "Arial", "Tahoma", "Geneva", sans-serif;
    font-weight: 300;
    font-stretch: normal;
    padding: 0 0 0 5em;
    height: 267px;
    text-align: left;
  }
  /* line 474, ../../sass/partials/_hero.scss */
  .slideText h1 {
    margin: 0 0 0.9rem 0;
    font-weight: 200;
    font-size: 2.5em;
    letter-spacing: .5px;
  }
  /* line 482, ../../sass/partials/_hero.scss */
  .slideText p {
    margin: 0;
    padding: 0;
    padding-right: 20%;
    font-size: 1em;
    font-stretch: normal;
    font-family: "HelveticaNeueLight", "HelveticaNeue-Light", "Helvetica Neue Light", "HelveticaNeue", "Helvetica Neue", 'TeXGyreHerosRegular', "Helvetica", "Arial", "Tahoma", "Geneva", sans-serif;
    font-weight: 300;
    font-stretch: normal;
    letter-spacing: .5px;
  }
  /* line 489, ../../sass/partials/_hero.scss */
  .slideText p:last-child {
    margin-top: 0.9rem;
  }

  /*Slide Control Buttons*/
  /* line 497, ../../sass/partials/_hero.scss */
  #heroLeft, #heroRight {
    display: inline-block;
    position: absolute;
    top: 50%;
    z-index: 100;
  }
  /* line 502, ../../sass/partials/_hero.scss */
  #heroLeft:hover, #heroRight:hover {
    cursor: pointer;
  }

  /* line 507, ../../sass/partials/_hero.scss */
  #heroLeft {
    left: 2em;
  }

  /* line 509, ../../sass/partials/_hero.scss */
  #heroRight {
    right: 2em;
  }
}
/* large desktop styles*/
@media (min-width: 900px) {
  /* line 514, ../../sass/partials/_hero.scss */
  #hero {
    height: 550px;
  }

  /* line 519, ../../sass/partials/_hero.scss */
  .slideText {
    height: 325px;
  }
  /* line 521, ../../sass/partials/_hero.scss */
  .slideText p {
    padding-right: 55%;
  }

  /* line 525, ../../sass/partials/_hero.scss */
  .hs1 {
    background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjgiLz48c3RvcCBvZmZzZXQ9IjYwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA='), url('/525/_img/home/SL_Homepage_Adventure_February2018.jpg?1522951479') no-repeat center top;
    background: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, rgba(0, 0, 0, 0.8)), color-stop(60%, rgba(0, 0, 0, 0))), url('/525/_img/home/SL_Homepage_Adventure_February2018.jpg?1522951479') no-repeat center top;
    background: -moz-linear-gradient(left, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%), url('/525/_img/home/SL_Homepage_Adventure_February2018.jpg?1522951479') no-repeat center top;
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%), url('/525/_img/home/SL_Homepage_Adventure_February2018.jpg?1522951479') no-repeat center top;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%), url('/525/_img/home/SL_Homepage_Adventure_February2018.jpg?1522951479') no-repeat center top;
    background-size: cover;
    background-position: 60% 0;
  }

  /* line 532, ../../sass/partials/_hero.scss */
  .hs2 {
    background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjgiLz48c3RvcCBvZmZzZXQ9IjYwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA='), url('/525/_img/home/SL_Homepage_Creator_February2018.jpg?1522951479') no-repeat center top;
    background: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, rgba(0, 0, 0, 0.8)), color-stop(60%, rgba(0, 0, 0, 0))), url('/525/_img/home/SL_Homepage_Creator_February2018.jpg?1522951479') no-repeat center top;
    background: -moz-linear-gradient(left, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%), url('/525/_img/home/SL_Homepage_Creator_February2018.jpg?1522951479') no-repeat center top;
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%), url('/525/_img/home/SL_Homepage_Creator_February2018.jpg?1522951479') no-repeat center top;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%), url('/525/_img/home/SL_Homepage_Creator_February2018.jpg?1522951479') no-repeat center top;
    background-size: cover;
    background-position: 60% 0;
  }

  /* line 539, ../../sass/partials/_hero.scss */
  .hs3 {
    background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjgiLz48c3RvcCBvZmZzZXQ9IjYwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA='), url('/525/_img/home/Hero_3Business.jpg?1522951479') no-repeat center top;
    background: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, rgba(0, 0, 0, 0.8)), color-stop(60%, rgba(0, 0, 0, 0))), url('/525/_img/home/Hero_3Business.jpg?1522951479') no-repeat center top;
    background: -moz-linear-gradient(left, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%), url('/525/_img/home/Hero_3Business.jpg?1522951479') no-repeat center top;
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%), url('/525/_img/home/Hero_3Business.jpg?1522951479') no-repeat center top;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%), url('/525/_img/home/Hero_3Business.jpg?1522951479') no-repeat center top;
    background-size: cover;
    background-position: 30% 0;
  }
}
/* line 1, ../../sass/partials/_cards.scss */
html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  min-height: 400px;
}

/*
 # Content area below hero image
*/
/* line 24, ../../sass/partials/_cards.scss */
#cardContentArea {
  background-color: #f3f3f3;
}

/*
 # cardWrapper: container for image cards
*/
/* line 31, ../../sass/partials/_cards.scss */
#cardWrapper {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-content: flex-start;
  align-content: flex-start;
  max-width: 1029px;
  width: 100%;
  margin: 0 auto;
}

/*
 # imageCard with header, text, and a background image.
 # cards stack vertically at mobile size, then form a grid at desktop size
 # they are labeled with classes ic1 through ic6 
*/
/* line 47, ../../sass/partials/_cards.scss */
.cardHead {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  height: 246px;
  font-stretch: normal;
  font-family: "Helvetica Neue", "HelveticaNeueRoman", "HelveticaNeue-Roman", "Helvetica Neue Roman", "HelveticaNeue", 'TeXGyreHerosRegular', "Helvetica", "Arial", "Tahoma", "Geneva", sans-serif;
  font-weight: 300;
  font-stretch: normal;
  font-weight: 200;
  font-size: 2.5em;
  margin: 0;
  /* transition for zoom*/
  transition: 0.4s all;
  letter-spacing: 1px;
  color: white;
  text-align: center;
  line-height: 246px;
}
/* line 63, ../../sass/partials/_cards.scss */
.cardHead .headWrap {
  height: 100%;
  margin: 0 auto;
  /* transparent black overlay on card*/
  background-color: rgba(0, 0, 0, 0.3);
  /* transition for bg*/
  transition: 0.5s all;
}
/* line 71, ../../sass/partials/_cards.scss */
.cardHead .headWrap h1 {
  margin: 0 auto;
  height: 100%;
}

/* line 78, ../../sass/partials/_cards.scss */
.cardText {
  font-stretch: normal;
  font-family: "Helvetica Neue", "HelveticaNeueRoman", "HelveticaNeue-Roman", "Helvetica Neue Roman", "HelveticaNeue", 'TeXGyreHerosRegular', "Helvetica", "Arial", "Tahoma", "Geneva", sans-serif;
  font-weight: 300;
  font-stretch: normal;
  font-size: 1em;
  color: #676767;
  text-align: center;
  margin: 0.5em auto;
  line-height: 1.4em;
  overflow: hidden;
}
/* line 86, ../../sass/partials/_cards.scss */
.cardText p {
  max-width: 80%;
  margin: 0 auto;
  padding: 0.6em 0;
  letter-spacing: .5px;
}
/* line 94, ../../sass/partials/_cards.scss */
.cardText a {
  color: #ff7d25;
  font-stretch: normal;
  font-family: "Helvetica Neue", "HelveticaNeueRoman", "HelveticaNeue-Roman", "Helvetica Neue Roman", "HelveticaNeue", 'TeXGyreHerosRegular', "Helvetica", "Arial", "Tahoma", "Geneva", sans-serif;
  font-weight: 300;
  font-stretch: normal;
  font-weight: 400;
  font-size: 1.05em;
  text-transform: uppercase;
  text-decoration: none;
}
/* line 101, ../../sass/partials/_cards.scss */
.cardText a:hover {
  cursor: pointer;
  color: #fb6e0f;
}

/* line 108, ../../sass/partials/_cards.scss */
.ic1 .cardHead {
  background: url('/525/_img/home/Creativity.jpg?1522951479') no-repeat 30% 80%;
  background-size: 550px 413.31943px;
}

/* line 113, ../../sass/partials/_cards.scss */
.ic2 .cardHead {
  background: url('/525/_img/home/Entertainment.jpg?1522951479') no-repeat center 10%;
  background-size: 750.08914px 393.6px;
}

/* line 118, ../../sass/partials/_cards.scss */
.ic3 .cardHead {
  background: url('/525/_img/home/Social.jpg?1522951479') no-repeat center 88%;
  background-size: cover;
}

/* line 123, ../../sass/partials/_cards.scss */
.ic4 .cardHead {
  background: url('/525/_img/home/RealEstate.jpg?1522951479') no-repeat center top;
  background-size: cover;
}

/* line 128, ../../sass/partials/_cards.scss */
.ic5 .cardHead {
  background: url('/525/_img/home/Education.jpg?1522951479') no-repeat center center;
  background-size: 500px 378.15126px;
}

/* line 133, ../../sass/partials/_cards.scss */
.ic6 .cardHead {
  background: url('/525/_img/home/Business.jpg?1522951479') no-repeat 42% center;
  background-size: 790.62687px 467.4px;
}

/* line 139, ../../sass/partials/_cards.scss */
#cardButtonWrap {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
}

/* line 147, ../../sass/partials/_cards.scss */
.cardButton {
  background-color: #252525;
  border: 1px solid #252525;
  min-width: 90px;
  padding: 3px 2px;
  font-size: 0.8em;
  text-transform: uppercase;
  text-align: center;
  color: #ff7d25;
  text-decoration: none;
  font-stretch: normal;
  font-family: "Helvetica Neue", "HelveticaNeueRoman", "HelveticaNeue-Roman", "Helvetica Neue Roman", "HelveticaNeue", 'TeXGyreHerosRegular', "Helvetica", "Arial", "Tahoma", "Geneva", sans-serif;
  font-weight: 300;
  font-stretch: normal;
  font-weight: 400;
  letter-spacing: 0;
  margin: 5px 8px;
}
/* line 161, ../../sass/partials/_cards.scss */
.cardButton:hover, .cardButton:focus {
  background-color: #ff7d25;
  border: 1px solid #ff7d25;
  color: white;
  cursor: pointer;
}

@media (min-width: 500px) {
  /* line 170, ../../sass/partials/_cards.scss */
  #cardWrapper {
    -webkit-flex-direction: row;
    flex-direction: row;
    width: 90%;
  }

  /* line 176, ../../sass/partials/_cards.scss */
  .imageCard {
    -webkit-flex-basis: 40%;
    flex-basis: 40%;
    -webkit-flex-grow: 1;
    flex-grow: 1;
    margin: 5px;
    border: 1px solid #d6d6d6;
    height: 246px;
    position: relative;
  }
  /* line 184, ../../sass/partials/_cards.scss */
  .imageCard:hover .cardText, .imageCard.touchOpen .cardText {
    opacity: 1;
  }
  /* line 187, ../../sass/partials/_cards.scss */
  .imageCard:hover .headWrap, .imageCard.touchOpen .headWrap {
    background-color: rgba(0, 0, 0, 0.6);
  }
  /* line 190, ../../sass/partials/_cards.scss */
  .imageCard:hover h1, .imageCard.touchOpen h1 {
    transform: translateY(-1.9em);
  }

  /* line 196, ../../sass/partials/_cards.scss */
  .cardHead {
    height: 100%;
  }

  /* line 200, ../../sass/partials/_cards.scss */
  .headWrap h1 {
    /* transition for translateY*/
    transition: 0.5s all;
    /*prevents hover bugs after translateY*/
    pointer-events: none;
  }

  /* line 208, ../../sass/partials/_cards.scss */
  .cardText {
    transition: 0.5s all;
    transition-delay: 0s;
    opacity: 0;
    color: #e8e8e8;
    position: absolute;
    min-width: 100%;
    top: 0;
    height: 100%;
    white-space: nowrap;
    margin: 0;
    transform: scale(0.6);
    transform-origin: 50% 70%;
    pointer-events: none;
    max-width: 80%;
  }
  /* line 225, ../../sass/partials/_cards.scss */
  .cardText p {
    padding: 0.25em 0;
    max-width: none;
  }
  /* line 230, ../../sass/partials/_cards.scss */
  .imageCard:hover .cardText, .touchOpen .cardText {
    pointer-events: auto;
    transform: scale(1);
  }
  /* line 235, ../../sass/partials/_cards.scss */
  .cardText .cardTextWrapper {
    position: relative;
    height: 98.4px;
    top: 83.64px;
    vertical-align: middle;
    display: inline-block;
    padding: 0 1em;
    white-space: normal;
  }

  /* The following styles (1) correctly order and resize the cards for display, (2) position background images to look nice */
  /* line 248, ../../sass/partials/_cards.scss */
  .ic1 {
    -webkit-order: 1;
    order: 1;
  }
  /* line 251, ../../sass/partials/_cards.scss */
  .ic1 .cardHead {
    background-size: 458.28961px 344.4px;
    background-position: 20% 100%;
  }
  /* line 255, ../../sass/partials/_cards.scss */
  .ic1:hover .cardHead, .ic1:focus .cardHead, .ic1.touchOpen .cardHead {
    background-size: 491.02458px 369px;
  }

  /* line 261, ../../sass/partials/_cards.scss */
  .ic2 {
    -webkit-order: 2;
    order: 2;
    -webkit-flex-basis: 80%;
    flex-basis: 80%;
  }
  /* line 265, ../../sass/partials/_cards.scss */
  .ic2 .cardHead {
    background-size: 810px 425.03748px;
    background-position: 50% 10%;
  }
  /* line 270, ../../sass/partials/_cards.scss */
  .ic2:hover .cardHead, .ic2:focus .cardHead, .ic2.touchOpen .cardHead {
    background-size: 891px 467.54123px;
  }

  /* line 275, ../../sass/partials/_cards.scss */
  .ic3 {
    -webkit-order: 1;
    order: 1;
  }
  /* line 278, ../../sass/partials/_cards.scss */
  .ic3 .cardHead {
    background-size: 553px 553px;
    background-position: 20% 60%;
  }
  /* line 283, ../../sass/partials/_cards.scss */
  .ic3:hover .cardHead, .ic3:focus .cardHead, .ic3.touchOpen .cardHead {
    background-size: 592.5px 592.5px;
  }

  /* line 288, ../../sass/partials/_cards.scss */
  .ic4 {
    -webkit-order: 3;
    order: 3;
  }
  /* line 291, ../../sass/partials/_cards.scss */
  .ic4 .cardHead {
    background-size: 409.26126px 246px;
    background-position: 50% 50%;
  }
  /* line 295, ../../sass/partials/_cards.scss */
  .ic4:hover .cardHead, .ic4:focus .cardHead, .ic4.touchOpen .cardHead {
    background-size: 450.18739px 270.6px;
  }

  /* line 300, ../../sass/partials/_cards.scss */
  .ic5 {
    -webkit-order: 3;
    order: 3;
  }
  /* line 303, ../../sass/partials/_cards.scss */
  .ic5 .cardHead {
    background-size: 390.32px 295.2px;
    background-position: 50% 80%;
  }
  /* line 308, ../../sass/partials/_cards.scss */
  .ic5:hover .cardHead, .ic5:focus .cardHead, .ic5.touchOpen .cardHead {
    background-size: 422.84667px 319.8px;
  }

  /* line 313, ../../sass/partials/_cards.scss */
  .ic6 {
    -webkit-order: 3;
    order: 3;
  }
  /* line 315, ../../sass/partials/_cards.scss */
  .ic6 .cardHead {
    background-size: 987.6px 593.6296px;
    background-position: 50% 45%;
  }
  /* line 319, ../../sass/partials/_cards.scss */
  .ic6:hover .cardHead, .ic6:focus .cardHead, .ic6.touchOpen .cardHead {
    background-size: 1069.9px 643.09874px;
  }

  /* line 324, ../../sass/partials/_cards.scss */
  .cardButton {
    background-color: rgba(54, 54, 54, 0.5);
    border: 1px solid #ff7d25;
    min-width: 103px;
    padding: 5px 2px;
    font-size: 1em;
    margin: 5px 7px;
  }
  /* line 332, ../../sass/partials/_cards.scss */
  .cardButton:hover, .cardButton:focus {
    background-color: rgba(255, 125, 37, 0.8);
    /* this is $orange but lower opacity*/
    color: white;
    cursor: pointer;
  }
}
@media (min-width: 900px) {
  /* line 340, ../../sass/partials/_cards.scss */
  #cardWrapper {
    width: 80%;
  }

  /* undoes the reordering of cards at 500-900px width*/
  /* line 345, ../../sass/partials/_cards.scss */
  .imageCard {
    -webkit-order: 1;
    order: 1;
  }

  /* line 349, ../../sass/partials/_cards.scss */
  .ic1 {
    -webkit-flex-grow: 1;
    flex-grow: 1;
    -webkit-flex-basis: 34%;
    flex-basis: 34%;
    /* this and the max-width on .ic3 guarantee that .ic1 and .ic3 will ine up vertically*/
    max-width: 33.33%;
  }

  /* line 356, ../../sass/partials/_cards.scss */
  .ic2 {
    -webkit-flex-grow: 2;
    flex-grow: 2;
    -webkit-flex-basis: 60%;
    flex-basis: 60%;
  }

  /* line 361, ../../sass/partials/_cards.scss */
  .ic3 {
    -webkit-flex-grow: 1;
    flex-grow: 1;
    -webkit-flex-basis: 34%;
    flex-basis: 34%;
    max-width: 33.33%;
  }

  /* line 367, ../../sass/partials/_cards.scss */
  .ic4 {
    -webkit-flex-grow: 1;
    flex-grow: 1;
    -webkit-flex-basis: 30%;
    flex-basis: 30%;
  }

  /* line 372, ../../sass/partials/_cards.scss */
  .ic5 {
    -webkit-flex-grow: 1;
    flex-grow: 1;
    -webkit-flex-basis: 30%;
    flex-basis: 30%;
  }

  /* line 377, ../../sass/partials/_cards.scss */
  .ic6 {
    -webkit-flex-grow: 1;
    flex-grow: 1;
    -webkit-flex-basis: 90%;
    flex-basis: 90%;
  }
  /* line 380, ../../sass/partials/_cards.scss */
  .ic6 .cardHead {
    background-size: 1029px 608.32059px;
    background-position: 50% 40%;
  }
  /* line 384, ../../sass/partials/_cards.scss */
  .ic6:hover .cardHead, .ic6:focus .cardHead, .ic6.touchOpen .cardHead {
    background-size: 1131.9px 669.15265px;
  }
}
/* line 390, ../../sass/partials/_cards.scss */
#popularDestinations {
  background: white;
}

/* line 3, ../../sass/partials/_gallery.scss */
#destinationGallery {
  width: 100%;
  margin: 0 auto 2em auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  /*slick next and slick prev*/
}
/* line 9, ../../sass/partials/_gallery.scss */
#destinationGallery a {
  text-decoration: none;
}
/* line 13, ../../sass/partials/_gallery.scss */
#destinationGallery img {
  display: block;
  width: 90%;
  margin: 0 auto;
}
/* line 19, ../../sass/partials/_gallery.scss */
#destinationGallery h2 {
  margin-left: 5%;
  line-height: 1.3em;
  padding-top: 5px;
  font-stretch: normal;
  font-family: "Helvetica Neue", "HelveticaNeueRoman", "HelveticaNeue-Roman", "Helvetica Neue Roman", "HelveticaNeue", 'TeXGyreHerosRegular', "Helvetica", "Arial", "Tahoma", "Geneva", sans-serif;
  font-weight: 300;
  font-stretch: normal;
  font-weight: 400;
  font-size: 0.9em;
  color: #686767;
}
/* line 30, ../../sass/partials/_gallery.scss */
#destinationGallery button {
  outline: none;
  position: absolute;
  top: calc(50% - 25px);
  height: 25px;
  width: 25px;
  min-height: 25px;
  min-width: 25px;
  max-height: 25px;
  max-width: 25px;
  z-index: 1000;
  border: solid #cccccc;
  border-width: 8px 8px 0 0;
  background: none;
  text-indent: 100px;
  overflow: hidden;
}
/* line 49, ../../sass/partials/_gallery.scss */
#destinationGallery button:hover {
  cursor: pointer;
  border-color: #aaaaaa;
}

/* line 56, ../../sass/partials/_gallery.scss */
.slick-next {
  transform: rotate(45deg);
  right: 9%;
}

/* line 60, ../../sass/partials/_gallery.scss */
.slick-prev {
  transform: rotate(-135deg);
  left: 9%;
}

/* line 66, ../../sass/partials/_gallery.scss */
#destinationContentArea p {
  text-align: center;
}
/* line 69, ../../sass/partials/_gallery.scss */
#destinationContentArea p a {
  background-color: #ff7d25;
  border: none;
  color: white;
  font-stretch: normal;
  font-family: "HelveticaNeueMedium", "HelveticaNeue-Medium", "Helvetica Neue Medium", "HelveticaNeue", "Helvetica Neue", 'TeXGyreHerosRegular', "Helvetica", "Arial", "Tahoma", "Geneva", sans-serif;
  font-weight: 600;
  font-stretch: normal;
  font-weight: 500;
  padding: 0.6em 2.5em;
  font-size: 1em;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  display: inline-block;
}
/* line 14, ../../sass/modules/_mixins.scss */
#destinationContentArea p a:hover {
  cursor: pointer;
  background-color: #fb6e0f;
}

/* line 74, ../../sass/partials/_gallery.scss */
#destinationNav {
  display: flex;
  width: 100%;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  margin-bottom: 1em;
}
/* line 80, ../../sass/partials/_gallery.scss */
#destinationNav li {
  min-width: 40%;
  box-sizing: border-box;
}
/* line 85, ../../sass/partials/_gallery.scss */
#destinationNav a {
  font-stretch: normal;
  font-family: "HelveticaNeueLight", "HelveticaNeue-Light", "Helvetica Neue Light", "HelveticaNeue", "Helvetica Neue", 'TeXGyreHerosRegular', "Helvetica", "Arial", "Tahoma", "Geneva", sans-serif;
  font-weight: 300;
  font-stretch: normal;
  font-size: 1em;
  color: #878787;
  padding-bottom: 1em;
  display: block;
  white-space: nowrap;
  text-align: center;
  text-transform: uppercase;
}
/* line 95, ../../sass/partials/_gallery.scss */
#destinationNav a:hover {
  cursor: pointer;
  color: #656565;
}
/* line 100, ../../sass/partials/_gallery.scss */
#destinationNav a.selected {
  color: #ff7d25;
  text-decoration: underline;
}

@media (min-width: 500px) {
  /* line 108, ../../sass/partials/_gallery.scss */
  #destinationGallery {
    width: 90%;
  }

  /* line 111, ../../sass/partials/_gallery.scss */
  .slick-next {
    right: -3%;
  }

  /* line 114, ../../sass/partials/_gallery.scss */
  .slick-prev {
    left: -3%;
  }

  /* line 118, ../../sass/partials/_gallery.scss */
  #destinationNav {
    -webkit-justify-content: center;
    justify-content: center;
  }
  /* line 120, ../../sass/partials/_gallery.scss */
  #destinationNav li {
    margin: 0 1em;
    min-width: initial;
    width: initial;
  }
  /* line 126, ../../sass/partials/_gallery.scss */
  #destinationNav a {
    font-size: 1.125em;
  }
}
@media (min-width: 900px) {
  /* line 132, ../../sass/partials/_gallery.scss */
  #destinationGallery {
    width: 80%;
  }
}
/* line 137, ../../sass/partials/_gallery.scss */
#emptyGallery {
  font-stretch: normal;
  font-family: "Helvetica Neue", "HelveticaNeueRoman", "HelveticaNeue-Roman", "Helvetica Neue Roman", "HelveticaNeue", 'TeXGyreHerosRegular', "Helvetica", "Arial", "Tahoma", "Geneva", sans-serif;
  font-weight: 300;
  font-stretch: normal;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}
/* line 142, ../../sass/partials/_gallery.scss */
#emptyGallery h1 {
  font-size: 2em;
  margin-bottom: 5px;
  text-align: center;
}
/* line 148, ../../sass/partials/_gallery.scss */
#emptyGallery p {
  margin: 0 auto;
  text-align: center;
}

/* line 3, ../../sass/partials/_video.scss */
#videoContentArea {
  background: #f3f3f3;
}
/* line 6, ../../sass/partials/_video.scss */
#videoContentArea p {
  font-stretch: normal;
  font-family: "HelveticaNeueLight", "HelveticaNeue-Light", "Helvetica Neue Light", "HelveticaNeue", "Helvetica Neue", 'TeXGyreHerosRegular', "Helvetica", "Arial", "Tahoma", "Geneva", sans-serif;
  font-weight: 300;
  font-stretch: normal;
  font-size: 1.25em;
  color: #676767;
  text-align: center;
  width: 80%;
  margin: 1em auto;
  line-height: 1.4em;
}
/* line 15, ../../sass/partials/_video.scss */
#videoContentArea p em {
  font-style: italic;
  font-weight: 400;
}
/* line 21, ../../sass/partials/_video.scss */
#videoContentArea #watchMore {
  text-align: center;
}
/* line 23, ../../sass/partials/_video.scss */
#videoContentArea #watchMore a {
  background-color: #ff7d25;
  border: none;
  color: white;
  font-stretch: normal;
  font-family: "HelveticaNeueMedium", "HelveticaNeue-Medium", "Helvetica Neue Medium", "HelveticaNeue", "Helvetica Neue", 'TeXGyreHerosRegular', "Helvetica", "Arial", "Tahoma", "Geneva", sans-serif;
  font-weight: 600;
  font-stretch: normal;
  font-weight: 500;
  padding: 0.6em 2.5em;
  font-size: 1em;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  display: inline-block;
}
/* line 14, ../../sass/modules/_mixins.scss */
#videoContentArea #watchMore a:hover {
  cursor: pointer;
  background-color: #fb6e0f;
}

/* line 29, ../../sass/partials/_video.scss */
#videoSuperWrapper {
  display: block;
  width: 90%;
  margin: 0 auto;
  border: 1px solid #d6d6d6;
  position: relative;
}

/* line 37, ../../sass/partials/_video.scss */
#videoWrapper {
  display: block;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 0;
  /*responsive iframe: */
}
/* line 45, ../../sass/partials/_video.scss */
#videoWrapper::after {
  /* padding fixes aspect ratio */
  padding-top: 56.25%;
  display: block;
  content: '';
}
/* line 52, ../../sass/partials/_video.scss */
#videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* line 60, ../../sass/partials/_video.scss */
#videoImage {
  width: 100%;
  z-index: 1;
  position: absolute;
  top: 0;
  /* ensures that image covers youtube video*/
  height: 100%;
}
/* line 67, ../../sass/partials/_video.scss */
#videoImage:hover {
  cursor: pointer;
}

/* line 72, ../../sass/partials/_video.scss */
#playBtn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 66px;
  margin-top: -33px;
  margin-left: -33px;
  border-radius: 50%;
  z-index: 2;
  transition: .3s all;
}
/* line 82, ../../sass/partials/_video.scss */
#playBtn.playing {
  transform: scale(1.5);
  opacity: 0;
  pointer-events: none;
}
/* line 87, ../../sass/partials/_video.scss */
#playBtn:hover {
  cursor: pointer;
}

@media (min-width: 500px) {
  /* line 93, ../../sass/partials/_video.scss */
  #videoSuperWrapper {
    width: 70%;
    margin: 0 auto;
  }

  /* line 97, ../../sass/partials/_video.scss */
  #videoContentArea p {
    width: 60%;
  }

  /* line 100, ../../sass/partials/_video.scss */
  #playBtn {
    width: 92px;
    margin-top: -46px;
    margin-left: -46px;
    border-radius: 50%;
  }
}
@media (min-width: 900px) {
  /* line 111, ../../sass/partials/_video.scss */
  #videoSuperWrapper {
    width: 60%;
  }

  /* line 114, ../../sass/partials/_video.scss */
  #videoContentArea p {
    width: 50%;
    margin: 1.5em auto;
  }
}
/* line 26, ../../sass/partials/_footer.scss */
#footer {
  background-color: black;
  font-stretch: normal;
  font-family: "HelveticaNeueMedium", "HelveticaNeue-Medium", "Helvetica Neue Medium", "HelveticaNeue", "Helvetica Neue", 'TeXGyreHerosRegular', "Helvetica", "Arial", "Tahoma", "Geneva", sans-serif;
  font-weight: 600;
  font-stretch: normal;
  font-size: 0.7em;
  color: #888888;
}
/* line 31, ../../sass/partials/_footer.scss */
#footer a {
  text-decoration: none;
  color: #888888;
}
/* line 35, ../../sass/partials/_footer.scss */
#footer a:hover {
  cursor: pointer;
  color: #bebebe;
}

/* line 42, ../../sass/partials/_footer.scss */
#footerLinks {
  height: 25em;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-content: center;
  align-content: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 5% 0;
  /*pseudo-element forces two-column layout*/
}
/* line 52, ../../sass/partials/_footer.scss */
#footerLinks::after {
  content: '';
  height: 100%;
  order: 1;
}
/* line 58, ../../sass/partials/_footer.scss */
#footerLinks ul {
  order: 2;
}
/* line 60, ../../sass/partials/_footer.scss */
#footerLinks ul:first-child, #footerLinks ul:nth-child(3) {
  order: 0;
  padding-right: 3em;
}
/* line 65, ../../sass/partials/_footer.scss */
#footerLinks li {
  line-height: 1.8em;
}
/* line 69, ../../sass/partials/_footer.scss */
#footerLinks h2 {
  color: white;
  padding-bottom: 5px;
}
/* line 73, ../../sass/partials/_footer.scss */
#footerLinks img {
  width: 12px;
  display: inline;
  margin-right: 0.5em;
  vertical-align: -2px;
}

/* line 82, ../../sass/partials/_footer.scss */
#bottom {
  color: #1a8eb4;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-bottom: 2.5em;
}
/* line 89, ../../sass/partials/_footer.scss */
#bottom li {
  padding: 0.5em 1em;
}
/* line 92, ../../sass/partials/_footer.scss */
#bottom a {
  text-decoration: none;
  color: #1a8eb4;
}
/* line 96, ../../sass/partials/_footer.scss */
#bottom a:hover {
  cursor: pointer;
  color: #bebebe;
}

/* line 105, ../../sass/partials/_footer.scss */
hr {
  border-color: #333333;
  width: 80%;
  margin-bottom: 1em;
}

@media (min-width: 500px) {
  /* line 112, ../../sass/partials/_footer.scss */
  #footerLinks {
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-around;
    justify-content: space-around;
    padding: 2em 0;
    height: auto;
  }
  /* line 118, ../../sass/partials/_footer.scss */
  #footerLinks li {
    margin-bottom: 0.5em;
  }
  /* line 123, ../../sass/partials/_footer.scss */
  #footerLinks::after {
    display: none;
  }
  /* line 127, ../../sass/partials/_footer.scss */
  #footerLinks ul {
    order: 0;
  }
  /* line 129, ../../sass/partials/_footer.scss */
  #footerLinks ul:first-child, #footerLinks ul:nth-child(3) {
    order: 0;
    padding: 0;
  }

  /* line 136, ../../sass/partials/_footer.scss */
  #bottom {
    margin: 0;
    -webkit-justify-content: center;
    justify-content: center;
  }
  /* line 140, ../../sass/partials/_footer.scss */
  #bottom li {
    padding: 0;
  }
  /* line 144, ../../sass/partials/_footer.scss */
  #bottom li::after {
    content: "\007C";
    padding: 0 1em;
  }
  /* line 149, ../../sass/partials/_footer.scss */
  #bottom li:last-child::after {
    content: '';
    padding: 0;
  }

  /* line 155, ../../sass/partials/_footer.scss */
  hr {
    display: none;
  }
}
@media (min-width: 900px) {
  /* line 161, ../../sass/partials/_footer.scss */
  #footerLinks {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding: 2em 20%;
  }

  /* line 166, ../../sass/partials/_footer.scss */
  #bottom {
    padding: 0 0 2.5em 20%;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
/* line 3, ../../sass/partials/_premium.scss */
.premiumSlide {
  background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjgiLz48c3RvcCBvZmZzZXQ9IjkwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjEiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA='), url("/525/_img/page/premium/Premium_Page_Hero.jpg") no-repeat center top;
  background: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, rgba(0, 0, 0, 0.8)), color-stop(90%, rgba(0, 0, 0, 0.1))), url("/525/_img/page/premium/Premium_Page_Hero.jpg") no-repeat center top;
  background: -moz-linear-gradient(left, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 90%), url("/525/_img/page/premium/Premium_Page_Hero.jpg") no-repeat center top;
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 90%), url("/525/_img/page/premium/Premium_Page_Hero.jpg") no-repeat center top;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 90%), url("/525/_img/page/premium/Premium_Page_Hero.jpg") no-repeat center top;
  background-size: cover;
  background-position: 60% 0;
}

/* line 10, ../../sass/partials/_premium.scss */
#discountBadge {
  display: none;
}

/* line 14, ../../sass/partials/_premium.scss */
#joinLink {
  background-color: #ff7d25;
  border: none;
  color: white;
  font-stretch: normal;
  font-family: "HelveticaNeueMedium", "HelveticaNeue-Medium", "Helvetica Neue Medium", "HelveticaNeue", "Helvetica Neue", 'TeXGyreHerosRegular', "Helvetica", "Arial", "Tahoma", "Geneva", sans-serif;
  font-weight: 600;
  font-stretch: normal;
  font-weight: 500;
  padding: 0.6em 2.5em;
  font-size: 1em;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  display: inline-block;
}
/* line 14, ../../sass/modules/_mixins.scss */
#joinLink:hover {
  cursor: pointer;
  background-color: #fb6e0f;
}

/* line 18, ../../sass/partials/_premium.scss */
#premiumContent {
  font-stretch: normal;
  font-family: "Helvetica Neue", "HelveticaNeueRoman", "HelveticaNeue-Roman", "Helvetica Neue Roman", "HelveticaNeue", 'TeXGyreHerosRegular', "Helvetica", "Arial", "Tahoma", "Geneva", sans-serif;
  font-weight: 300;
  font-stretch: normal;
  font-weight: 300;
}

/* line 23, ../../sass/partials/_premium.scss */
#benefitsBox {
  width: 95%;
  max-width: 950px;
  margin: 0 auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}

/* line 32, ../../sass/partials/_premium.scss */
#imageGroup {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-content: center;
  align-content: center;
  margin-bottom: 1rem;
}
/* line 42, ../../sass/partials/_premium.scss */
#imageGroup .image {
  margin: 10px 10px 0;
  position: relative;
  width: calc(50% - 25px);
}
/* line 47, ../../sass/partials/_premium.scss */
#imageGroup .image:nth-child(-n + 2) {
  margin-top: 0;
}
/* line 51, ../../sass/partials/_premium.scss */
#imageGroup .image img {
  min-height: 100%;
  width: auto;
  max-height: 294px;
}
/* line 56, ../../sass/partials/_premium.scss */
#imageGroup .image p {
  letter-spacing: 1px;
  position: absolute;
  box-sizing: border-box;
  padding: 15px 4px;
  width: 100%;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  text-align: center;
  color: white;
  font-size: 0.7rem;
}
/* line 68, ../../sass/partials/_premium.scss */
#imageGroup .image .new_banner {
  position: absolute;
  top: 10%;
  left: -10px;
  background-color: red;
  color: white;
  line-height: 30px;
  font-weight: 400;
  padding: 0 10px;
}
/* line 77, ../../sass/partials/_premium.scss */
#imageGroup .image .new_banner::before {
  content: '';
  width: 0;
  position: absolute;
  left: 0px;
  border-right: 10px solid #d90000;
  border-bottom: 7px solid transparent;
  top: 30px;
  width: 10px;
  box-sizing: border-box;
}
/* line 89, ../../sass/partials/_premium.scss */
#imageGroup .image .new_banner::after {
  content: '';
  border-right: 9px solid transparent;
  border-top: 15px solid red;
  border-bottom: 15px solid red;
  position: absolute;
  right: -8px;
  width: 0;
  top: 0;
  height: 0;
}

/* line 104, ../../sass/partials/_premium.scss */
.imgwrap {
  display: flex;
  overflow: hidden;
  height: 100%;
  justify-content: center;
}

/* line 111, ../../sass/partials/_premium.scss */
#benefitsList {
  width: 90%;
  margin: 0 auto;
  background-color: #f0f0f0;
  padding: 0 1rem;
}
/* line 117, ../../sass/partials/_premium.scss */
#benefitsList h2 {
  text-align: center;
  color: #ff7d25;
  font-size: 1.5rem;
  font-stretch: normal;
  font-family: "Helvetica Neue", "HelveticaNeueRoman", "HelveticaNeue-Roman", "Helvetica Neue Roman", "HelveticaNeue", 'TeXGyreHerosRegular', "Helvetica", "Arial", "Tahoma", "Geneva", sans-serif;
  font-weight: 300;
  font-stretch: normal;
  padding: 1em 0 1.5em 0;
}
/* line 125, ../../sass/partials/_premium.scss */
#benefitsList ul {
  -webkit-flex: 1;
  flex: 1;
  padding-right: 0.5rem;
}
/* line 129, ../../sass/partials/_premium.scss */
#benefitsList li {
  font-size: 1rem;
  padding-left: 2em;
  margin-bottom: 1.4em;
  background: url(/525/_img/page/premium/Premium_Checkmark.png) no-repeat left center;
}
/* line 134, ../../sass/partials/_premium.scss */
#benefitsList li em {
  font-weight: 400;
}
/* line 139, ../../sass/partials/_premium.scss */
#benefitsList #benefitsLink {
  background-color: #ff7d25;
  border: none;
  color: white;
  font-stretch: normal;
  font-family: "HelveticaNeueMedium", "HelveticaNeue-Medium", "Helvetica Neue Medium", "HelveticaNeue", "Helvetica Neue", 'TeXGyreHerosRegular', "Helvetica", "Arial", "Tahoma", "Geneva", sans-serif;
  font-weight: 600;
  font-stretch: normal;
  font-weight: 500;
  padding: 0.6em 2.5em;
  font-size: 1em;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  margin: 0 0 17px 0;
  display: block;
}
/* line 14, ../../sass/modules/_mixins.scss */
#benefitsList #benefitsLink:hover {
  cursor: pointer;
  background-color: #fb6e0f;
}
/* line 145, ../../sass/partials/_premium.scss */
#benefitsList #benefitsMoreLink {
  background-color: #ff7d25;
  border: none;
  color: white;
  font-stretch: normal;
  font-family: "HelveticaNeueMedium", "HelveticaNeue-Medium", "Helvetica Neue Medium", "HelveticaNeue", "Helvetica Neue", 'TeXGyreHerosRegular', "Helvetica", "Arial", "Tahoma", "Geneva", sans-serif;
  font-weight: 600;
  font-stretch: normal;
  font-weight: 500;
  padding: 0.6em 2.5em;
  font-size: 1em;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  margin: 0 0 17px 0;
  display: block;
  background-color: transparent;
  text-transform: none;
  font-weight: 300;
  font-size: 0.8rem;
  color: #08a0d1;
}
/* line 14, ../../sass/modules/_mixins.scss */
#benefitsList #benefitsMoreLink:hover {
  cursor: pointer;
  background-color: #fb6e0f;
}
/* line 156, ../../sass/partials/_premium.scss */
#benefitsList #benefitsMoreLink:hover {
  cursor: pointer;
  background-color: transparent;
  text-decoration: underline;
}

/* line 164, ../../sass/partials/_premium.scss */
#disclaimer {
  font-stretch: normal;
  font-family: "Helvetica Neue", "HelveticaNeueRoman", "HelveticaNeue-Roman", "Helvetica Neue Roman", "HelveticaNeue", 'TeXGyreHerosRegular', "Helvetica", "Arial", "Tahoma", "Geneva", sans-serif;
  font-weight: 300;
  font-stretch: normal;
  color: grey;
  font-size: 0.8rem;
  line-height: 1.5rem;
  width: 95%;
  margin: 1rem auto;
  font-style: italic;
  max-width: 950px;
}

/* line 176, ../../sass/partials/_premium.scss */
#membershipArea {
  background-color: #f0f0f0;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2YzZjNmMyIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f3f3f3), color-stop(100%, #ffffff));
  background-image: -moz-linear-gradient(#f3f3f3, #ffffff);
  background-image: -webkit-linear-gradient(#f3f3f3, #ffffff);
  background-image: linear-gradient(#f3f3f3, #ffffff);
  width: 100%;
  font-stretch: normal;
  font-family: "Helvetica Neue", "HelveticaNeueRoman", "HelveticaNeue-Roman", "Helvetica Neue Roman", "HelveticaNeue", 'TeXGyreHerosRegular', "Helvetica", "Arial", "Tahoma", "Geneva", sans-serif;
  font-weight: 300;
  font-stretch: normal;
}

/* line 183, ../../sass/partials/_premium.scss */
#membershipWrapper {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

/* line 191, ../../sass/partials/_premium.scss */
.savingsWrap {
  -webkit-flex: 1;
  flex: 1;
  max-width: 280px;
  min-width: 200px;
  margin: 1rem 0.5rem;
}

/* line 198, ../../sass/partials/_premium.scss */
.memberBox {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 10px;
  border: 1px solid #d5d5d5;
  position: relative;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2YzZjNmMyIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f3f3f3), color-stop(100%, #ffffff));
  background-image: -moz-linear-gradient(#f3f3f3, #ffffff);
  background-image: -webkit-linear-gradient(#f3f3f3, #ffffff);
  background-image: linear-gradient(#f3f3f3, #ffffff);
  -webkit-flex-basis: 25%;
  flex-basis: 25%;
  box-sizing: border-box;
  height: 210px;
}
/* line 209, ../../sass/partials/_premium.scss */
.memberBox p {
  width: 100%;
  margin: 12px auto;
  text-align: center;
}

/* line 216, ../../sass/partials/_premium.scss */
.term {
  color: #ff7d25;
  font-size: 1.4em;
  text-align: center;
  font-stretch: normal;
  font-family: "HelveticaNeueMedium", "HelveticaNeue-Medium", "Helvetica Neue Medium", "HelveticaNeue", "Helvetica Neue", 'TeXGyreHerosRegular', "Helvetica", "Arial", "Tahoma", "Geneva", sans-serif;
  font-weight: 600;
  font-stretch: normal;
}

/* line 223, ../../sass/partials/_premium.scss */
.priceMonthly {
  color: black;
  font-size: 2rem;
}

/* line 228, ../../sass/partials/_premium.scss */
.best .priceMonthly {
  color: #539612;
}

/* line 231, ../../sass/partials/_premium.scss */
.dollarSign {
  vertical-align: top;
  font-size: 1rem;
  font-weight: 600;
}

/* line 236, ../../sass/partials/_premium.scss */
.perMonth {
  font-size: 1rem;
}

/* line 240, ../../sass/partials/_premium.scss */
.billing {
  font-style: italic;
  color: grey;
  font-size: .8rem;
}

/* line 246, ../../sass/partials/_premium.scss */
.selectMembership {
  background-color: #ff7d25;
  border: none;
  color: white;
  font-stretch: normal;
  font-family: "HelveticaNeueMedium", "HelveticaNeue-Medium", "Helvetica Neue Medium", "HelveticaNeue", "Helvetica Neue", 'TeXGyreHerosRegular', "Helvetica", "Arial", "Tahoma", "Geneva", sans-serif;
  font-weight: 600;
  font-stretch: normal;
  font-weight: 500;
  padding: 0.6em 2.5em;
  font-size: 1em;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  background-color: #4b4b4b;
  max-width: 180px;
  margin: 0 auto;
}
/* line 14, ../../sass/modules/_mixins.scss */
.selectMembership:hover {
  cursor: pointer;
  background-color: #fb6e0f;
}
/* line 251, ../../sass/partials/_premium.scss */
.selectMembership:hover {
  background-color: #539612;
}

/* line 256, ../../sass/partials/_premium.scss */
.best .selectMembership {
  background-color: #539612;
}
/* line 258, ../../sass/partials/_premium.scss */
.best .selectMembership:hover {
  background-color: #6da636;
}

/* line 263, ../../sass/partials/_premium.scss */
.savings {
  margin-bottom: 10px;
  text-align: center;
  color: #539612;
  font-size: 0.8rem;
  font-style: italic;
}

/* line 271, ../../sass/partials/_premium.scss */
.promoPrice {
  display: none;
}

/* line 275, ../../sass/partials/_premium.scss */
.promoBilling .strike {
  text-decoration: line-through;
}
/* line 278, ../../sass/partials/_premium.scss */
.promoBilling .promoPrice {
  display: inline;
  color: #539612;
}

/* line 284, ../../sass/partials/_premium.scss */
#terms {
  width: 80%;
  font-style: italic;
  color: grey;
  font-size: .8rem;
  margin: 0 auto;
  line-height: 1.3em;
  margin-top: 2rem;
}

@media (min-width: 500px) {
  /* line 295, ../../sass/partials/_premium.scss */
  #discountBadge {
    display: block;
    position: absolute;
    right: 30px;
    top: 50px;
    width: 130px;
  }

  /* line 302, ../../sass/partials/_premium.scss */
  #premiumHeroText {
    margin: 1em 0 2em;
  }
}
@media (min-width: 685px) {
  /* line 309, ../../sass/partials/_premium.scss */
  .premiumSlide h1 {
    padding-right: 250px;
  }

  /* line 313, ../../sass/partials/_premium.scss */
  #discountBadge {
    width: 170px;
  }

  /* line 317, ../../sass/partials/_premium.scss */
  #benefitsList {
    width: 100%;
    box-sizing: border-box;
  }

  /* line 321, ../../sass/partials/_premium.scss */
  #benefitsBox {
    -webkit-flex-direction: row;
    flex-direction: row;
  }

  /* line 324, ../../sass/partials/_premium.scss */
  #imageGroup {
    align-content: stretch;
    margin-bottom: 0;
  }
  /* line 328, ../../sass/partials/_premium.scss */
  #imageGroup .image {
    width: calc(50% - 25px);
    margin: 10px 10px 0;
  }
  /* line 332, ../../sass/partials/_premium.scss */
  #imageGroup .image:nth-child(-n + 2) {
    margin-top: 0;
  }
  /* line 337, ../../sass/partials/_premium.scss */
  #imageGroup .image p {
    font-size: 0.75rem;
  }

  /* line 343, ../../sass/partials/_premium.scss */
  #membershipWrapper {
    -webkit-flex-direction: row;
    flex-direction: row;
  }

  /* line 347, ../../sass/partials/_premium.scss */
  .savingsWrap {
    -webkit-flex: initial;
    flex: initial;
    min-width: 250px;
    max-width: 250px;
    margin: 0.5rem;
    -webkit-flex-basis: 25%;
    flex-basis: 25%;
  }

  /* line 355, ../../sass/partials/_premium.scss */
  .memberBox {
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }

  /* line 359, ../../sass/partials/_premium.scss */
  .priceMonthly {
    font-size: 3rem;
  }

  /* line 363, ../../sass/partials/_premium.scss */
  .billing {
    font-size: 1rem;
  }

  /* line 367, ../../sass/partials/_premium.scss */
  .dollarSign {
    font-size: 1.2rem;
  }

  /* line 371, ../../sass/partials/_premium.scss */
  .savings {
    text-align: center;
    color: #539612;
    font-size: 1rem;
    font-style: italic;
  }
}
@media (min-width: 900px) {
  /* line 381, ../../sass/partials/_premium.scss */
  #discountBadge {
    width: initial;
  }

  /* line 386, ../../sass/partials/_premium.scss */
  #imageGroup .image {
    width: calc(50% - 40px);
    margin: 17px 17px 0;
  }
  /* line 390, ../../sass/partials/_premium.scss */
  #imageGroup .image:nth-child(-n + 2) {
    margin-top: 0;
  }
  /* line 395, ../../sass/partials/_premium.scss */
  #imageGroup .image p {
    font-size: 1rem;
  }
}
/*
 * Global Styles:
 */
/* line 16, ../../sass/home.scss */
.contentArea {
  padding-bottom: 3.4rem;
}

/* line 20, ../../sass/home.scss */
.contentHeader {
  font-stretch: normal;
  font-family: "Helvetica Neue", "HelveticaNeueRoman", "HelveticaNeue-Roman", "Helvetica Neue Roman", "HelveticaNeue", 'TeXGyreHerosRegular', "Helvetica", "Arial", "Tahoma", "Geneva", sans-serif;
  font-weight: 300;
  font-stretch: normal;
  color: #676767;
  font-size: 2.25em;
  padding: 3.2rem 1rem;
  font-weight: 200;
  margin: auto;
  text-align: center;
  line-height: 1.3em;
}

/* line 30, ../../sass/home.scss */
br.mdBreak {
  display: none;
}

@media (min-width: 500px) {
  /* line 36, ../../sass/home.scss */
  .contentHeader {
    font-size: 2.5em;
  }

  /* line 40, ../../sass/home.scss */
  br.mdBreak {
    display: inline;
  }
}
