/** * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/) * http://cssreset.com */
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 */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/****************************************
= FONT VARIABLES
****************************************/
/****************************************
= Media Query Breakpoints
****************************************/
/****************************************
= COLORS
****************************************/
/****************************************
= GRADIENTS
***************************************/
/****************************************
= MEDIA QUERIES
****************************************/
/****************************************
= CENTERED MIXINS
****************************************/
/****************************************
= CLEARFIX
****************************************/
/****************************************
= FONT IMPORTS
****************************************/
/****************************************
= UNIVERSAL BASE STYLES
****************************************/
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

html, body {
  height: 100%;
}

body {
  padding: 0;
  margin: 0 auto;
  min-height: 100vh;
  width: 100%;
}

body.no-scroll {
  overflow: hidden;
  position: fixed;
}

/****************************************
= HIGHLIGHT & FOCUS
****************************************/
::-moz-selection {
  background: #020202;
  color: #FFC72C;
}
::selection {
  background: #020202;
  color: #FFC72C;
}

/****************************************
= ul & ol RESET
****************************************/
ul, ol {
  list-style-type: none;
  margin: 0 0 20px 0;
  padding: 0;
}

li {
  list-style-type: none;
}

ol.list, ul.list {
  padding: 0 0 0 30px;
}

ol.list {
  list-style-type: decimal;
}
ol.list li {
  list-style-type: decimal;
}

ul.list {
  list-style-type: disc;
}
ul.list li {
  list-style-type: disc;
}

/****************************************
= DISPLAY UTILITIES
****************************************/
.init-hide {
  visibility: hidden;
  opacity: 0;
  height: 0;
}
.init-hide.active {
  height: auto;
  visibility: visible;
  opacity: 1;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.hidden {
  display: none !important;
}

.visually-hidden {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.hide-mobile-md {
  display: none !important;
}
@media (min-width: 992px) {
  .hide-mobile-md {
    display: block !important;
  }
}

.hide-mobile-lg {
  display: none !important;
}
@media (min-width: 1200px) {
  .hide-mobile-lg {
    display: block !important;
  }
}

@media (min-width: 992px) {
  .hide-md-desktop {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .hide-desktop {
    display: none !important;
  }
}

.xs-hidden {
  display: block;
}
@media (min-width: 1200px) {
  .xs-hidden {
    display: none;
  }
}

.sm-hidden {
  display: none;
}
@media (min-width: 1200px) {
  .sm-hidden {
    display: block;
  }
}

/****************************************
= LAYOUT UTILITIES
****************************************/
.center {
  text-align: center !important;
  margin: auto !important;
}

.center-block {
  text-align: center !important;
  margin: auto !important;
  display: block !important;
}

/****************************************
= IMAGES
****************************************/
img {
  max-width: 100%;
}

img.circle {
  border-radius: 100%;
}

img.thumb {
  background: #ffffff;
  padding: 4px;
  border: 1px solid #b4b4b4;
}

/****************************************
= VIDEO MEDIA WRAPPER
****************************************/
.media {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 35px;
  height: 0;
  overflow: hidden;
}

.media iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/****************************************
= NOTIFICATION LABELS
****************************************/
.success,
.error,
.info {
  color: #ffffff;
  padding: 0.5rem;
}

.success {
  background: #62bc53;
}

.error {
  background: #CE1329;
}

.info {
  color: #020202;
  background: #FFC72C;
}

.loader {
  display: inline-block;
  width: 3rem;
  height: 3rem;
}
.loader:after {
  content: " ";
  display: block;
  width: 3rem;
  height: 3rem;
  margin: 1px;
  border-radius: 50%;
  margin: auto;
  border: 5px solid #FFC72C;
  border-color: #FFC72C transparent #FFC72C transparent;
  -webkit-animation: loader 1.2s linear infinite;
          animation: loader 1.2s linear infinite;
}

@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/****************************************
= FONTS - variables.scss
****************************************/
/*
$heading-font-1 : arpona, serif;
$heading-font-2 : franklin-gothic-compressed, sans-serif;
$body-font      : franklin-gothic-compressed, sans-serif;
*/
html {
  font-size: 10px;
  line-height: 1.6;
}

body, button, input, select, textarea {
  font-family: franklin-gothic-compressed, sans-serif;
}

body {
  background: #020202;
  color: #ffffff;
}

/****************************************
= CUSTOM FONTS
****************************************/
.font-accent {
  font-family: arpona, serif !important;
  font-weight: 900;
  font-style: italic;
}

.font-subhead {
  font-family: franklin-gothic-compressed, sans-serif !important;
  font-weight: 400;
  font-style: normal;
}

.font-subhead-bold, .global-nav a:not(.cta), .global-nav .p, .get-started .cta, input[type=submit],
input[type=button],
.button,
.btn {
  font-family: franklin-gothic-compressed, sans-serif !important;
  font-weight: 600;
  font-style: normal;
}

.font-body {
  font-family: franklin-gothic-compressed, sans-serif !important;
  font-weight: 400;
  font-style: normal;
}

strong, .font-bold {
  font-weight: 600;
}

/****************************************
= HEADINGS
****************************************/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  margin: 0;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  line-height: 1;
}

h1, .h1, h2, .h2, h3, .h3 {
  font-family: arpona, serif;
}

h4, .h4, h5, .h5, h6, .h6 {
  font-family: franklin-gothic-compressed, sans-serif;
}

h1, .h1 {
  font-size: 3.3rem;
}
@media (min-width: 768px) {
  h1, .h1 {
    font-size: 5rem;
  }
}

h2, .h2 {
  font-size: 3rem;
}
@media (min-width: 768px) {
  h2, .h2 {
    font-size: 4.7rem;
  }
}

h3, .h3 {
  font-size: 2.7rem;
}
@media (min-width: 768px) {
  h3, .h3 {
    font-size: 4.4rem;
  }
}

h4, .h4 {
  font-size: 2.4rem;
}
@media (min-width: 768px) {
  h4, .h4 {
    font-size: 4.1rem;
  }
}

h5, .h5 {
  font-size: 2.1rem;
}
@media (min-width: 768px) {
  h5, .h5 {
    font-size: 3.8rem;
  }
}

h6, .h6 {
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  h6, .h6 {
    font-size: 3.5rem;
  }
}

.shadow-white {
  text-shadow: -3px 2px 0 #ffffff;
}
@media (min-width: 992px) {
  .shadow-white {
    text-shadow: -5px 4px 0 #ffffff;
  }
}

.shadow-yellow {
  text-shadow: -3px 2px 0 #FFC72C;
}
@media (min-width: 992px) {
  .shadow-yellow {
    text-shadow: -5px 4px 0 #FFC72C;
  }
}

/****************************************
= PARAGRAPH + ANCHORS + LI
****************************************/
p, li {
  font-style: normal;
  line-height: 1.1;
}

p {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  p {
    font-size: 2.2rem;
  }
}
@media (min-width: 1440px) {
  p {
    font-size: 3rem;
  }
}

li {
  font-size: 2rem;
  padding: 1px 0;
}
@media (min-width: 768px) {
  li {
    font-size: 2.2rem;
  }
}
@media (min-width: 1440px) {
  li {
    font-size: 3rem;
  }
}

a {
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  text-decoration: none;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
a:hover {
  color: #0087FF;
}
a:active, a:hover {
  outline: 0;
}

a.text-link {
  color: #CE1329;
}
a.text-link:hover {
  color: #FFC72C;
}

a.text-link-secondary {
  color: #CE1329;
}
a.text-link-secondary:hover {
  color: #FFC72C;
}

.anchor {
  position: absolute;
  top: -95px;
  left: 0;
}

.anchor-link {
  position: relative;
}
.anchor-link a {
  position: absolute;
  top: -95px;
  left: 0;
}

p, li, a {
  font-weight: 400;
}

/****************************************
= MISC FONT SIZES
****************************************/
small,
.small {
  font-size: 1.3rem;
}
@media (min-width: 592px) {
  small,
  .small {
    font-size: 1.5rem;
  }
}
@media (min-width: 992px) {
  small,
  .small {
    font-size: 1.6rem;
  }
}

.smaller {
  font-size: 40% !important;
}

/****************************************
= TEXT STYLES & ALIGNMENT
****************************************/
.a-center {
  text-align: center !important;
}

.a-right {
  text-align: right !important;
}

.a-left {
  text-align: left !important;
}

.underline {
  text-decoration: underline !important;
}

.italic {
  font-style: italic !important;
}

.uppercase {
  text-transform: uppercase !important;
}

.text-none {
  text-transform: none !important;
}

/****************************************
= CONTAINERS
****************************************/
.container,
.row,
.block {
  width: 100%;
  position: relative;
  display: block;
}

.wrap {
  width: 90%;
  margin: auto;
  max-width: 2000px;
  border: 1px solid rgba(0, 0, 0, 0);
}
.wrap:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 592px) {
  .wrap {
    padding: 0 0.5em;
  }
}

.wrap.row {
  margin-left: auto;
  margin-right: auto;
}

.page-wrapper {
  position: relative;
  width: 100%;
  min-height: 95%;
  overflow: hidden;
}

.main-container {
  width: 100%;
}

.clear:after,
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.inline-block {
  display: inline-block;
}

/****************************************
= FLEX BOX GRID CONTAINERS
****************************************/
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.flex > div,
.flex a {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (min-width: 450px) {
  .flex.s-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (min-width: 592px) {
  .flex.sm-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (min-width: 992px) {
  .flex.md-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (min-width: 1200px) {
  .flex.lg-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (min-width: 592px) {
  .flex.sm-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media (min-width: 992px) {
  .flex.md-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media (min-width: 1200px) {
  .flex.lg-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.flex-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
}
.flex-row > div,
.flex-row a {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (min-width: 592px) {
  .flex-row.sm-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (min-width: 992px) {
  .flex-row.md-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (min-width: 1200px) {
  .flex-row.lg-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.flex-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

/****************************************
= CENTERED BLOCKS mixins.scss
****************************************/
.absolute-center {
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (min-width: 1200px) {
  .absolute-center {
    padding: 0 50px;
  }
}

.vertical-center {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/****************************************
= BUTTONS
****************************************/
input[type=submit],
input[type=button],
.button,
.btn {
  height: 46px;
  border-radius: 46px;
  line-height: 46px;
  text-align: center;
  border-radius: 0;
  -webkit-appearance: none;
  display: inline-block;
  padding: 0px 22px;
  max-width: 250px;
  min-width: 130px;
  margin: 10px 0;
  cursor: pointer;
  font-size: 2rem;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  border: 1px solid rgba(0, 0, 0, 0);
  background: #020202;
  color: #ffffff;
  border-radius: 25px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  input[type=submit],
  input[type=button],
  .button,
  .btn {
    font-size: 2.5rem;
    min-width: 130px;
    max-width: 280px;
  }
}
input[type=submit].short,
input[type=button].short,
.button.short,
.btn.short {
  font-size: 1.6rem;
  height: 30px;
  line-height: 30px;
}
input[type=submit].tall,
input[type=button].tall,
.button.tall,
.btn.tall {
  height: 56px;
  border-radius: 56px;
  line-height: 56px;
  font-size: 3.6rem;
  min-width: 260px;
  font-family: arpona, serif;
}
input[type=submit].huge,
input[type=button].huge,
.button.huge,
.btn.huge {
  height: 56px;
  line-height: 56px;
  font-size: 3rem;
  min-width: 265px;
  font-family: arpona, serif;
}
@media (min-width: 450px) {
  input[type=submit].huge,
  input[type=button].huge,
  .button.huge,
  .btn.huge {
    height: 75px;
    border-radius: 75px;
    line-height: 75px;
    font-size: 4rem;
    min-width: 375px;
  }
}
input[type=submit].full,
input[type=button].full,
.button.full,
.btn.full {
  width: 100%;
  max-width: 100%;
}
input[type=submit].auto,
input[type=button].auto,
.button.auto,
.btn.auto {
  width: auto;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
input[type=submit]:focus,
input[type=button]:focus,
.button:focus,
.btn:focus {
  border: 1px solid #0087FF;
}
input[type=submit]:hover,
input[type=button]:hover,
.button:hover,
.btn:hover {
  color: #020202;
  background: #FFC72C;
}
input[type=submit].btn-red,
input[type=button].btn-red,
.button.btn-red,
.btn.btn-red {
  color: #ffffff;
  background: #CE1329;
}
input[type=submit].btn-red:hover,
input[type=button].btn-red:hover,
.button.btn-red:hover,
.btn.btn-red:hover {
  color: #ffffff;
  background: #FFC72C;
}
input[type=submit].btn-yellow,
input[type=button].btn-yellow,
.button.btn-yellow,
.btn.btn-yellow {
  color: #020202;
  background: #FFC72C;
}
input[type=submit].btn-yellow:hover,
input[type=button].btn-yellow:hover,
.button.btn-yellow:hover,
.btn.btn-yellow:hover {
  color: #ffffff;
  background: #CE1329;
}
input[type=submit].btn-gray,
input[type=button].btn-gray,
.button.btn-gray,
.btn.btn-gray {
  color: #ffffff;
  background: #767575;
}
input[type=submit].btn-gray:hover,
input[type=button].btn-gray:hover,
.button.btn-gray:hover,
.btn.btn-gray:hover {
  color: #ffffff;
  background: #020202;
}

input[type=submit],
input[type=button],
button.button,
button.btn {
  vertical-align: middle;
}

button img {
  pointer-events: none;
}

.offscreen {
  left: -1000%;
  top: 2.25em;
  overflow: hidden;
  position: absolute;
  width: 11em;
  z-index: 2;
}
.offscreen:active, .offscreen:focus, .offscreen:hover {
  left: 1em;
  top: 6.5em;
  margin: 0;
}
@media (min-width: 768px) {
  .offscreen {
    top: 6.5em;
  }
}

/****************************************
= FLEXIBLE BUTTON
****************************************/
.flexible-button {
  height: auto;
  cursor: pointer;
  display: inline-block;
  background: none;
  border: none;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
  top: 5px;
  width: 45px;
  height: 28px;
  border: none !important;
}

.flexible-button .burger,
.flexible-button .burger:after,
.flexible-button .burger:before {
  right: 0;
  height: 1px;
  width: 45px;
  content: "";
  display: block;
  cursor: pointer;
  background: #FFC72C;
  position: absolute;
  border-radius: 1px;
  -webkit-transition: all 100ms linear;
  transition: all 100ms linear;
}

.flexible-button .burger {
  top: 10px;
}
.flexible-button .burger:before {
  top: -10px;
}
.flexible-button .burger:after {
  bottom: -10px;
}

.flexible-button.active, .flexible-button.close {
  -webkit-transform: translateY(50%) rotate(90deg);
          transform: translateY(50%) rotate(90deg);
}
.flexible-button.active .burger, .flexible-button.close .burger {
  background: none !important;
  top: 1.1rem;
}
.flexible-button.active .burger:after, .flexible-button.active .burger:before, .flexible-button.close .burger:after, .flexible-button.close .burger:before {
  top: 0;
}
.flexible-button.active .burger:after, .flexible-button.close .burger:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.flexible-button.active .burger:before, .flexible-button.close .burger:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.nav-flexible {
  position: absolute;
  right: 10px;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
@media (min-width: 992px) {
  .nav-flexible {
    display: none;
  }
}

.btn-share {
  position: relative;
}

.btn-share::after {
  content: attr(data-tooltip);
  position: absolute;
  top: -50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 4px 8px;
  font-size: 12px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
  pointer-events: none;
}

.btn-share.show-tooltip::after {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/****************************************
= GLOBAL HEADER
****************************************/
.global-header {
  z-index: 10;
  height: auto;
  width: 100%;
  min-height: 65px;
  position: fixed;
  -webkit-transition: 1s ease;
  transition: 1s ease;
  background: rgba(0, 0, 0, 0.75);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, rgba(0, 0, 0, 0.75)), to(transparent));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75) 60%, transparent 100%);
}
@media (min-width: 1200px) {
  .global-header {
    min-height: 115px;
  }
}

.global-header.scroll-active {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, rgba(0, 0, 0, 0.75)), to(transparent));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75) 60%, transparent 100%);
}

.global-header .logo {
  max-width: 130px;
  min-height: 65px;
  max-height: 65px;
  z-index: 9;
  text-align: center;
  margin: auto;
  width: 35%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
@media (min-width: 450px) {
  .global-header .logo {
    margin-left: auto;
  }
}
@media (min-width: 992px) {
  .global-header .logo {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin: 0;
    position: relative;
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .global-header .logo {
    min-height: 115px;
    max-height: 115px;
  }
}
.global-header .logo a {
  display: block;
  margin: auto;
  max-width: 170px;
}
@media (min-width: 1200px) {
  .global-header .logo a {
    max-width: 310px;
    min-height: 115px;
    max-height: 115px;
    padding-top: 15px;
  }
}
@media (min-width: 1680px) {
  .global-header .logo a {
    max-width: 310px;
  }
}
.global-header .logo img {
  margin: auto;
  width: 100%;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  max-width: 250px;
}

@media (min-width: 992px) {
  .global-header .nav {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}

.get-started .cta {
  font-size: 1.5rem;
  min-width: 130px;
  max-width: 130px;
  line-height: initial;
  padding: 0.5rem 0.5rem 0.5rem 0.5rem;
  background: none;
  text-transform: uppercase;
  text-align: center;
  margin-right: 0.5rem;
  border-radius: 46px;
  color: #020202;
  background: #FFC72C;
}
@media (min-width: 992px) {
  .get-started .cta {
    padding: 1rem 1rem 0.75rem 1rem;
    min-width: 150px;
    max-width: 150px;
    line-height: 65px;
  }
}
@media (min-width: 1200px) {
  .get-started .cta {
    margin-right: 1.5rem;
  }
}
.get-started .cta:hover, .get-started .cta:focus {
  color: #ffffff;
  background: #CE1329;
}
.get-started .cta:after {
  display: none !important;
}
@media (min-width: 992px) {
  .get-started {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 100%;
    text-align: right;
    margin-right: 1.5rem;
    display: inline-block;
  }
}
@media (min-width: 992px) {
  .get-started .sub-nav-link {
    max-height: 65px;
    line-height: 55px;
  }
}

.get-started.header-cta .sub-nav {
  height: auto;
  pointer-events: all;
}
.get-started.header-cta .sub-nav li {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media (min-width: 992px) {
  .get-started.header-cta .sub-nav {
    width: 100%;
    max-width: 450px;
    margin: 0 0 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.get-started.header-cta {
  position: absolute;
  right: 0;
}
@media (min-width: 992px) {
  .get-started.header-cta {
    position: relative;
  }
}

/****************************************
= HEADER MOBILE BUTTONS
****************************************/
.get-started-mobile-cta {
  position: absolute;
  top: 0;
  right: 0.5rem;
  bottom: 0;
  font-size: 1.3rem;
  text-align: center;
  padding: 0 10px;
  max-height: 65px;
  font-weight: bold;
  line-height: 1.2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 75px;
  text-transform: uppercase;
  border: 2px solid #FFC72C;
}
@media (min-width: 992px) {
  .get-started-mobile-cta {
    display: none;
  }
}

/****************************************
= ACTIVE HEADER & ACTIVE NAV
****************************************/
.active-panel {
  background: rgba(0, 0, 0, 0.75);
}

[rel=js-global-header].active {
  height: 100vh;
  overflow-y: scroll;
  background: #020202;
  -webkit-transition: background 0.36s cubic-bezier(0.32, 0.08, 0.24, 1), height 0.56s cubic-bezier(0.52, 0.16, 0.24, 1);
  transition: background 0.36s cubic-bezier(0.32, 0.08, 0.24, 1), height 0.56s cubic-bezier(0.52, 0.16, 0.24, 1);
}
@media (min-width: 992px) {
  [rel=js-global-header].active {
    max-height: 65px;
  }
}
@media (min-width: 1200px) {
  [rel=js-global-header].active {
    max-height: 115px;
    background: rgba(0, 0, 0, 0.75);
  }
}
/****************************************
= GLOBAL NAVIGATION
****************************************/
.global-nav {
  z-index: 1000;
  margin: 0 auto;
}
.global-nav > li > a:not(.cta), .global-nav .p {
  width: 100%;
  padding: 0 25px;
}
.global-nav > li a:not(.cta), .global-nav .p {
  width: 100%;
  padding: 0 5px;
}
.global-nav > li {
  max-height: 65px;
  line-height: 65px;
  padding: 0;
}
.global-nav li {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  margin: 0;
}
.global-nav a:not(.cta), .global-nav .p {
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0);
}
@media (min-width: 992px) {
  .global-nav a:not(.cta), .global-nav .p {
    font-size: 1.65rem;
    max-height: 65px;
  }
}
@media (min-width: 1200px) {
  .global-nav a:not(.cta), .global-nav .p {
    font-size: 2rem;
    max-height: 115px;
  }
}
@media (min-width: 1440px) {
  .global-nav a:not(.cta), .global-nav .p {
    font-size: 2.2rem;
  }
}
.global-nav a:not(.cta):focus, .global-nav .p:focus {
  background: #020202;
}
.global-nav a:focus, .global-nav a:hover {
  color: #FFC72C;
}

.global-header .global-nav {
  height: 0;
  pointer-events: none;
}
.global-header .global-nav a:not(.cta), .global-header .global-nav p {
  font-size: 2.5rem;
}
@media (orientation: landscape) {
  .global-header .global-nav a, .global-header .global-nav .p {
    font-size: 2.5rem;
  }
}
.global-header .global-nav a:after, .global-header .global-nav .p:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid rgba(255, 206, 52, 0.5);
  opacity: 0;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
}
.global-header .global-nav a:hover:after, .global-header .global-nav .p:hover:after {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.global-header .global-nav li {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (orientation: landscape) {
  .global-header .global-nav li {
    max-height: 65px;
    line-height: 65px;
  }
}
.global-header .global-nav li:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid rgba(255, 206, 52, 0.5);
  opacity: 0;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
}
.global-header .global-nav li:last-child:after {
  border-bottom: none;
}
.global-header .global-nav li.small {
  max-height: 35px;
  line-height: 35px;
}
.global-header .global-nav li.small a, .global-header .global-nav li.small p {
  font-size: 1.2rem;
}
.global-header .global-nav li.small:after {
  border: none;
}
.global-header .global-nav li.copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.global-header .global-nav li.copy p {
  margin: 0;
}
@media (min-width: 992px) {
  .global-header .global-nav li.small,
  .global-header .global-nav li.copy {
    display: none;
  }
}
.global-header .global-nav .get-started.menu-cta {
  display: none;
}
@media (min-width: 992px) {
  .global-header .global-nav {
    height: 100%;
    pointer-events: all;
    max-width: 550px;
    margin-left: 1rem;
  }
  .global-header .global-nav a, .global-header .global-nav .p {
    font-size: 1.65rem;
    max-height: 65px;
    line-height: 65px;
  }
  .global-header .global-nav li {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    max-width: 550px;
    margin-left: 1rem;
    max-height: 65px;
    line-height: 65px;
    border-bottom: none;
  }
  .global-header .global-nav .get-started.menu-cta {
    display: none;
  }
}
@media (min-width: 1200px) {
  .global-header .global-nav a, .global-header .global-nav .p {
    font-size: 2rem;
    max-height: 115px;
    line-height: 115px;
  }
}
@media (min-width: 1920px) {
  .global-header .global-nav a:not(.cta), .global-header .global-nav .p {
    font-size: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .global-header .global-nav > li {
    max-height: 115px;
    line-height: 115px;
  }
}
.global-header .global-nav.active {
  height: 90vh;
  pointer-events: all;
}
.global-header .global-nav.active li {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  transition: -webkit-transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  transition: transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  transition: transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28), -webkit-transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}
.global-header .global-nav.active li:after {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

@media (min-width: 992px) {
  .global-nav {
    visibility: visible;
    opacity: 1;
    height: auto;
  }
}

/****************************************
= MOBILE NAV TOGGLE BUTTON
****************************************/
.toggle-button {
  height: auto;
  cursor: pointer;
  display: inline-block;
  background: none;
  border: none;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
  top: 5px;
  width: 45px;
  height: 28px;
  border: none !important;
}

.toggle-button .burger,
.toggle-button .burger:after,
.toggle-button .burger:before {
  left: 0;
  height: 1px;
  width: 45px;
  content: "";
  display: block;
  cursor: pointer;
  background: #ffffff;
  position: absolute;
  border-radius: 1px;
  -webkit-transition: all 100ms linear;
  transition: all 100ms linear;
}

.toggle-button .burger {
  top: 10px;
}
.toggle-button .burger:before {
  top: -10px;
}
.toggle-button .burger:after {
  bottom: -10px;
}

.toggle-button.active, .toggle-button.close {
  -webkit-transform: translateY(50%) rotate(90deg);
          transform: translateY(50%) rotate(90deg);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  transition: -webkit-transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  transition: transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  transition: transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28), -webkit-transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}
.toggle-button.active .burger, .toggle-button.close .burger {
  background: none !important;
  top: 1.1rem;
}
.toggle-button.active .burger:after, .toggle-button.active .burger:before, .toggle-button.close .burger:after, .toggle-button.close .burger:before {
  top: 0;
}
.toggle-button.active .burger:after, .toggle-button.close .burger:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.toggle-button.active .burger:before, .toggle-button.close .burger:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.nav-toggle {
  position: absolute;
  left: 10px;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
@media (min-width: 992px) {
  .nav-toggle {
    display: none;
  }
}

/****************************************
= FORM ELEMENTS BASE STYLES
****************************************/
fieldset {
  border: none;
}

input:not([type=radio]), textarea, select {
  width: 100%;
  font-size: 1.6rem;
  padding: 0 0 0 10px;
  font-family: inherit;
  color: #020202;
  border: 1px solid #dcdbda;
}

textarea {
  padding: 10px;
}

label:not(.radio), input:not([type=radio]) {
  display: block;
}

label {
  margin-bottom: 5px;
}

select,
input[type=text] {
  height: 55px;
  -webkit-appearance: none;
  border-radius: 10px;
}
select.tall,
input[type=text].tall {
  height: 60px;
}
select:focus,
input[type=text]:focus {
  color: #0087FF;
}

input::-webkit-input-placeholder {
  text-transform: uppercase;
  color: #020202 !important;
}

input::-moz-placeholder {
  text-transform: uppercase;
  color: #020202 !important;
}

input:-ms-input-placeholder {
  text-transform: uppercase;
  color: #020202 !important;
}

input::-ms-input-placeholder {
  text-transform: uppercase;
  color: #020202 !important;
}

input::placeholder {
  text-transform: uppercase;
  color: #020202 !important;
}

/****************************************
= FORM NOTIFICATIONS
****************************************/
.form-notification {
  min-height: 30px;
  width: 100%;
  text-align: center;
}
.form-notification p {
  text-transform: uppercase;
  font-size: 1.6rem;
  padding: 0.5rem;
  margin: 0 auto !important;
}
.form-notification p.h1 {
  font-size: 3.6rem;
}
@media (min-width: 768px) {
  .form-notification p.h1 {
    font-size: 4.6rem;
  }
}
@media (min-width: 1200px) {
  .form-notification p.h1 {
    font-size: 8rem;
  }
}
@media (min-width: 1440px) {
  .form-notification p.h1 {
    font-size: 9rem;
  }
}
.form-notification span {
  display: block;
}

[rel=js-form-notification] .list.error {
  padding: 10px 30px 10px 30px;
}

[rel=js-form-element-notification] {
  margin: 5px auto 10px auto;
}

/****************************************
= FORM STYLES
****************************************/
form.compact-labels .form-element {
  position: relative;
}
form.compact-labels .form-element.active input[type=text] {
  padding: 1.3rem 0.85rem 0.45rem !important;
  height: 55px;
}
form.compact-labels .form-element.active textarea {
  padding: 1.3rem 0.85rem 0.45rem !important;
  height: auto;
}
form.compact-labels .form-element.active .form-label {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}
form.compact-labels .form-label {
  position: absolute;
  top: 5px;
  left: 5px;
  font-size: 1.2rem;
  color: #252525;
  padding-left: 5px;
  padding-right: 5px;
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

form.compact-labels.v2 input::-webkit-input-placeholder {
  opacity: 0;
}

form.compact-labels.v2 input::-moz-placeholder {
  opacity: 0;
}

form.compact-labels.v2 input:-ms-input-placeholder {
  opacity: 0;
}

form.compact-labels.v2 input::-ms-input-placeholder {
  opacity: 0;
}

form.compact-labels.v2 input::placeholder {
  opacity: 0;
}
form.compact-labels.v2 .form-label {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
  padding: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
}
form.compact-labels.v2 select + .form-label {
  opacity: 0;
  visibility: hidden;
}
form.compact-labels.v2 .form-element.active input[type=text] {
  height: 45px;
}
form.compact-labels.v2 .form-element.active .form-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-transform: translateY(125%);
          transform: translateY(125%);
  font-size: 1rem;
}

.contact-form label {
  font-size: 2rem;
}
.contact-form .form-element.top-label {
  margin-bottom: 0;
}
.contact-form .form-element.top-label p {
  margin-bottom: 1rem;
}
.contact-form textarea {
  min-height: 150px;
}

.hide-mobile-label {
  display: none !important;
}
@media (min-width: 1200px) {
  .hide-mobile-label {
    display: inline !important;
  }
}

/****************************************
= DOWNLOAD BROCHURE FORMS
****************************************/
.downlaod-brochure .form-element {
  margin-bottom: 0.5rem;
}

/****************************************
= SCHEDULE A MEETINF FORM
****************************************/
.schedule-meeting-form {
  max-width: 750px;
  overflow: hidden;
  padding-top: 3rem;
}
.schedule-meeting-form p:not(.h1):not(.h2):not(.h3):not(.h4):not(.small),
.schedule-meeting-form label {
  font-size: 1.6rem;
}
.schedule-meeting-form input:not([type=radio]), .schedule-meeting-form textarea, .schedule-meeting-form select {
  font-size: 1.5rem;
}
.schedule-meeting-form select, .schedule-meeting-form input[type=text] {
  height: 45px;
}
@media (min-width: 768px) {
  .schedule-meeting-form p:not(.h1):not(.small),
  .schedule-meeting-form label {
    font-size: 2rem;
  }
  .schedule-meeting-form input:not([type=radio]), .schedule-meeting-form textarea, .schedule-meeting-form select {
    font-size: 1.6rem;
  }
  .schedule-meeting-form select, .schedule-meeting-form input[type=text] {
    height: 55px;
  }
}

.schedule-meeting-form.no-input-bg input, .schedule-meeting-form.no-input-bg textarea, .schedule-meeting-form.no-input-bg select {
  background: none;
  border: none;
  border-bottom: 1px solid #FFC72C;
}
.schedule-meeting-form.no-input-bg ::-webkit-input-placeholder {
  color: #ffffff !important;
}
.schedule-meeting-form.no-input-bg ::-moz-placeholder {
  color: #ffffff !important;
}
.schedule-meeting-form.no-input-bg :-ms-input-placeholder {
  color: #ffffff !important;
}
.schedule-meeting-form.no-input-bg ::-ms-input-placeholder {
  color: #ffffff !important;
}
.schedule-meeting-form.no-input-bg input, .schedule-meeting-form.no-input-bg label, .schedule-meeting-form.no-input-bg textarea, .schedule-meeting-form.no-input-bg select, .schedule-meeting-form.no-input-bg ::placeholder {
  color: #ffffff !important;
}

.schedule-meeting-form .absolute-center {
  top: 40%;
}
.schedule-meeting-form .h2 {
  font-size: 6rem;
}
.schedule-meeting-form .h4 {
  font-size: 2rem;
}
@media (min-width: 992px) {
  .schedule-meeting-form .absolute-center {
    top: 30%;
  }
  .schedule-meeting-form .h2 {
    font-size: 10rem;
  }
  .schedule-meeting-form .h3 {
    font-size: 5rem;
  }
  .schedule-meeting-form .h4 {
    font-size: 2.5rem;
  }
}
@media (min-width: 1440px) {
  .schedule-meeting-form .h2 {
    font-size: 14rem;
  }
}

/****************************************
= GLOBAL FOOTER
****************************************/
.global-footer {
  position: relative;
  min-height: 65px;
}
.global-footer .logo {
  position: relative;
  text-align: center;
}
.global-footer img {
  margin: auto;
  max-width: 100px;
  padding: 1rem 0;
}
@media (min-width: 1200px) {
  .global-footer img {
    position: absolute;
    top: 0;
    left: 1rem;
    bottom: 0;
    width: 100%;
    max-height: 40px;
    padding: 0;
    margin: auto;
  }
}

/****************************************
= FOOTER LINKS
****************************************/
.global-nav.footer {
  max-width: 1200px;
}
@media (min-width: 1200px) {
  .global-nav.footer {
    margin-left: 3rem;
  }
}

.global-nav.footer a, .global-nav.footer p {
  font-size: 1.75rem;
}
@media (min-width: 1200px) {
  .global-nav.footer a, .global-nav.footer p {
    font-size: 1.2rem;
  }
}
@media (min-width: 1680px) {
  .global-nav.footer a, .global-nav.footer p {
    font-size: 1.5rem;
  }
}
.global-nav.footer .p {
  font-size: 1.15rem;
  text-transform: none;
}
.global-nav.footer li {
  line-height: 40px;
}
@media (min-width: 1200px) {
  .global-nav.footer li {
    line-height: 65px;
  }
}
.global-nav.footer a {
  font-family: franklin-gothic-compressed, sans-serif;
}
.global-nav.footer a:hover {
  background: none;
  color: #FFC72C;
}
.global-nav.footer .phone a {
  font-weight: bold;
  font-family: arpona, serif;
}
.global-nav.footer .phone a:hover {
  color: #ffffff !important;
}

/****************************************
= SUB FOOTER
****************************************/
.sub-footer .disclaimer {
  font-size: 1.1rem;
}
.sub-footer .wrap {
  width: 95%;
  padding: 1rem 0;
}
@media (min-width: 992px) {
  .sub-footer .wrap {
    margin-left: 3rem;
  }
}

/****************************************
= SCHEDULE A MEETING BUTTON
****************************************/
@-webkit-keyframes spin {
  5%, 100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  5%, 100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.spin-animation {
  -webkit-animation: spin 30s ease 1.369s infinite;
          animation: spin 30s ease 1.369s infinite;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.schedule-meeting-button {
  z-index: 2;
  width: 120px;
  height: 60px;
  margin: 0 auto;
  padding: 0.5rem;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  cursor: pointer;
  bottom: 0;
  right: 0;
  left: 0;
  background: #020202;
  border-top-left-radius: 110px;
  border-top-right-radius: 110px;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  transition: -webkit-transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  transition: transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  transition: transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28), -webkit-transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  -webkit-box-shadow: 0 0 10px #FFC72C;
          box-shadow: 0 0 10px #FFC72C;
}
.schedule-meeting-button:hover {
  -webkit-box-shadow: 0 0 35px #FFC72C;
          box-shadow: 0 0 35px #FFC72C;
}
.schedule-meeting-button .images {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  pointer-events: none;
}
.schedule-meeting-button .star {
  width: 35px;
  margin: 0 auto;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
@media (min-width: 1200px) {
  .schedule-meeting-button {
    left: initial;
    right: 3rem;
  }
}

/****************************************
= MODAL POP-UP
****************************************/
.modal {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: -100em;
  width: 90%;
  margin: 0 auto;
  left: 0;
  right: 0;
  padding: 1em;
  z-index: 2000;
  background: #ffffff;
  -webkit-transition: top 0.4s cubic-bezier(0.19, 0.92, 0.32, 1.1);
  transition: top 0.4s cubic-bezier(0.19, 0.92, 0.32, 1.1);
  border-bottom: 5px solid #FFC72C;
}
.modal h1, .modal .h1, .modal h2, .modal .h2, .modal h3, .modal .h3, .modal h4, .modal .h4 {
  text-align: center;
}
@media (min-width: 992px) {
  .modal {
    max-width: 720px;
  }
}
@media (min-width: 1440px) {
  .modal {
    width: 70%;
    max-width: 1000px;
  }
}
.modal.active {
  top: 5em;
  opacity: 1 !important;
  visibility: visible;
}
@media (min-width: 992px) {
  .modal.active {
    top: 10%;
  }
}

.modal.full-page {
  -webkit-transition: top ease;
  transition: top ease;
}
.modal.full-page.active {
  top: 0;
  width: 100%;
  height: 100vh;
  max-width: 100%;
  overflow-y: scroll;
}

.modal-overlay {
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  left: 0;
  z-index: 1999;
  opacity: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.modal-overlay.active {
  opacity: 1 !important;
}

.close-modal-button {
  position: absolute;
  top: 5px;
  right: 10px;
  background: #ffffff;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  margin-top: 0;
  cursor: pointer;
}

.close-modal-button:hover {
  background: #252525;
}

.close-modal-button:hover .close:after,
.close-modal-button:hover .close:before {
  background: #ffc627;
}

@media (min-width: 1200px) {
  .close-modal-button {
    margin-top: 5px;
  }
}
.close-modal-button .close:after,
.close-modal-button .close:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  display: inline-block;
  width: 15px;
  height: 2px;
  background: #020202;
}

.close-modal-button .close:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.close-modal-button .close:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.video-popup .close-modal-button {
  right: 0;
  top: -3.5rem;
}
@media (min-width: 992px) {
  .video-popup .close-modal-button {
    top: -3.5rem;
  }
}

/****************************************
= PHOTO SWIPE SETTINGS
***************************************/
/****************************************
= GALLERY LOGO
****************************************/
.pswp:before {
  opacity: 0;
  content: "";
  display: block;
  position: absolute;
  height: 20px;
  top: 0;
  left: 0;
  right: 0;
  background: url(../../images/logo.svg);
  z-index: 1;
  margin: 1rem auto;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  -webkit-transition: opacity 3s cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 3s cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp.pswp--open:before {
  opacity: 1;
  -webkit-transition: opacity 3s cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 3s cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp__bg:after {
  content: "Swipe to view more";
  color: #ffffff;
  font-family: franklin-gothic-compressed, sans-serif;
  font-size: 1.1rem;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 20px;
  z-index: 9;
}
@media (min-width: 1200px) {
  .pswp__bg:after {
    content: "";
  }
}

/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*
	Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
*/
/* pswp = photoswipe */
.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 1500;
  -webkit-text-size-adjust: 100%;
  /* create separate layer, to avoid paint on window.onscroll in webkit/blink */
  -webkit-backface-visibility: hidden;
  outline: none;
}

.pswp * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.pswp img {
  max-width: none;
}

/* style is added when JS option showHideOpacity is set to true */
.pswp--animate_opacity {
  /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
  opacity: 0.001;
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--open {
  display: block;
}

.pswp--zoom-allowed .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.pswp--zoomed-in .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
}

.pswp--dragging .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

/*
	Background is added as a separate element.
	As animating opacity is much faster than animating rgba() background-color.
*/
.pswp__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  will-change: opacity;
}

.pswp__scroll-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.pswp__container,
.pswp__zoom-wrap {
  -ms-touch-action: none;
  touch-action: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.pswp__zoom-wrap {
  position: absolute;
  width: 100%;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  /* for open/close transition */
  -webkit-transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1), -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp__bg {
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  -webkit-transition: none;
  transition: none;
}

.pswp__container,
.pswp__zoom-wrap {
  -webkit-backface-visibility: hidden;
}

.pswp__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
}

.pswp__img {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0;
}

/*
	stretched thumbnail or div placeholder element (see below)
	style is added to avoid flickering in webkit/blink when layers overlap
*/
.pswp__img--placeholder {
  -webkit-backface-visibility: hidden;
}

/*
	div element that matches size of large image
	large image loads on top of it
*/
.pswp__img--placeholder--blank {
  background: #222;
}

.pswp--ie .pswp__img {
  width: 100% !important;
  height: auto !important;
  left: 0;
  top: 0;
}

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  margin-top: -8px;
  color: #CCC;
}

.pswp__error-msg a {
  color: #CCC;
  text-decoration: underline;
}

/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*
	Contents:
	1. Buttons
	2. Share modal and links
	3. Index indicator ("1 of X" counter)
	4. Caption
	5. Loading indicator
	6. Additional styles (root element, top bar, idle state, hidden state, etc.)
*/
/*

	1. Buttons
 */
/* <button> css reset */
.pswp__button {
  width: 44px;
  height: 44px;
  position: relative;
  background: none;
  cursor: pointer;
  overflow: visible;
  -webkit-appearance: none;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  float: right;
  opacity: 0.75;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.pswp__button:focus, .pswp__button:hover {
  opacity: 1;
}
.pswp__button:active {
  outline: none;
  opacity: 0.9;
}
.pswp__button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* pswp__ui--over-close class it added when mouse is over element that should close gallery */
.pswp__ui--over-close .pswp__button--close {
  opacity: 1;
}

.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  background: url(../../images/gallery/default-skin.png) 0 0 no-repeat;
  background-size: 264px 88px;
  width: 44px;
  height: 44px;
}

@media (-webkit-min-device-pixel-ratio: 1.1), (-webkit-min-device-pixel-ratio: 1.09375), (min-resolution: 105dpi), (min-resolution: 1.1dppx) {
  /* Serve SVG sprite if browser supports SVG and resolution is more than 105dpi */
  .pswp--svg .pswp__button,
  .pswp--svg .pswp__button--arrow--left:before,
  .pswp--svg .pswp__button--arrow--right:before {
    background-image: url(../../images/gallery/default-skin.png) 0 0 no-repeat;
  }
  .pswp__top-bar .pswp__button--share,
  .pswp--supports-fs .pswp__button--fs {
    display: none !important;
  }
  .pswp--svg .pswp__button--arrow--left,
  .pswp--svg .pswp__button--arrow--right {
    background: none;
  }
}
.pswp__button--close {
  background-position: 0 -44px;
}

.pswp__button--share {
  background-position: -44px -44px;
}

.pswp__button--fs {
  display: none;
}

.pswp--supports-fs .pswp__button--fs {
  display: block;
}

.pswp--fs .pswp__button--fs {
  background-position: -44px 0;
}

.pswp__button--zoom {
  display: none;
  background-position: -88px 0;
}

.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}

.pswp--zoomed-in .pswp__button--zoom {
  background-position: -132px 0;
}

/* no arrows on touch screens */
.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
  visibility: hidden;
}

/*
	Arrow buttons hit area
	(icon is added to :before pseudo-element)
*/
.pswp__button--arrow--left,
.pswp__button--arrow--right {
  background: none;
  top: 50%;
  margin-top: -50px;
  width: 70px;
  height: 100px;
  position: absolute;
}

.pswp__button--arrow--left {
  left: 0;
}

.pswp__button--arrow--right {
  right: 0;
}

.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  content: "";
  top: 35px;
  background-color: rgba(0, 0, 0, 0.3);
  height: 30px;
  width: 32px;
  position: absolute;
}

.pswp__button--arrow--left:before {
  left: 6px;
  background-position: -138px -44px;
}

.pswp__button--arrow--right:before {
  right: 6px;
  background-position: -94px -44px;
}

/*
	2. Share modal/popup and links
 */
.pswp__counter,
.pswp__share-modal {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

.pswp__share-modal {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 10px;
  position: absolute;
  z-index: 1600;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
  -webkit-backface-visibility: hidden;
  will-change: opacity;
}

.pswp__share-modal--hidden {
  display: none;
}

.pswp__share-tooltip {
  z-index: 1620;
  position: absolute;
  background: #FFF;
  top: 56px;
  border-radius: 2px;
  display: block;
  width: auto;
  right: 44px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  -webkit-transform: translateY(6px);
          transform: translateY(6px);
  -webkit-transition: -webkit-transform 0.25s;
  transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}
.pswp__share-tooltip a {
  display: block;
  padding: 8px 12px;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  line-height: 18px;
}
.pswp__share-tooltip a:hover {
  text-decoration: none;
  color: #000;
}
.pswp__share-tooltip a:first-child {
  /* round corners on the first/last list item */
  border-radius: 2px 2px 0 0;
}
.pswp__share-tooltip a:last-child {
  border-radius: 0 0 2px 2px;
}

.pswp__share-modal--fade-in {
  opacity: 1;
}
.pswp__share-modal--fade-in .pswp__share-tooltip {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* increase size of share links on touch devices */
.pswp--touch .pswp__share-tooltip a {
  padding: 16px 12px;
}

a.pswp__share--facebook:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -12px;
  right: 15px;
  border: 6px solid rgba(0, 0, 0, 0);
  border-bottom-color: #FFF;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  pointer-events: none;
}
a.pswp__share--facebook:hover {
  background: #3E5C9A;
  color: #FFF;
}
a.pswp__share--facebook:hover:before {
  border-bottom-color: #3E5C9A;
}

a.pswp__share--twitter:hover {
  background: #55ACEE;
  color: #FFF;
}

a.pswp__share--pinterest:hover {
  background: #CCC;
  color: #CE272D;
}

a.pswp__share--download:hover {
  background: #DDD;
}

/*
	3. Index indicator ("1 of X" counter)
 */
.pswp__counter {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  font-size: 13px;
  line-height: 44px;
  color: #FFF;
  opacity: 0.75;
  padding: 0 10px;
}

/*

	4. Caption
 */
.pswp__caption {
  position: absolute;
  left: 0;
  bottom: 2rem;
  width: 100%;
  min-height: 44px;
}
.pswp__caption small {
  font-size: 11px;
  color: #BBB;
}

.pswp__caption__center {
  max-width: 420px;
  margin: 0 auto;
  font-size: 13px;
  padding: 10px;
  line-height: 20px;
  color: #CCC;
  text-align: center;
}

.pswp__caption--empty {
  display: none;
}

/* Fake caption element, used to calculate height of next/prev image */
.pswp__caption--fake {
  visibility: hidden;
}

/*
	5. Loading indicator (preloader)
	You can play with it here - http://codepen.io/dimsemenov/pen/yyBWoR
 */
.pswp__preloader {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -22px;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
  will-change: opacity;
  direction: ltr;
}

.pswp__preloader__icn {
  width: 20px;
  height: 20px;
  margin: 12px;
}

.pswp__preloader--active {
  opacity: 1;
}
.pswp__preloader--active .pswp__preloader__icn {
  /* We use .gif in browsers that don't support CSS animation */
  background: url(../../images/gallery/preloader.gif) 0 0 no-repeat;
}

.pswp--css_animation .pswp__preloader--active {
  opacity: 1;
}
.pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
  -webkit-animation: clockwise 500ms linear infinite;
          animation: clockwise 500ms linear infinite;
}
.pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
  -webkit-animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
          animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
}
.pswp--css_animation .pswp__preloader__icn {
  background: none;
  opacity: 0.75;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 15px;
  top: 15px;
  margin: 0;
}
.pswp--css_animation .pswp__preloader__cut {
  /* 
  	The idea of animating inner circle is based on Polymer ("material") loading indicator 
  	 by Keanu Lee https://blog.keanulee.com/2014/10/20/the-tale-of-three-spinners.html
  */
  position: relative;
  width: 7px;
  height: 14px;
  overflow: hidden;
}
.pswp--css_animation .pswp__preloader__donut {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 2px solid #FFF;
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  margin: 0;
}

@media screen and (max-width: 1024px) {
  .pswp__preloader {
    position: relative;
    left: auto;
    top: auto;
    margin: 0;
    float: right;
  }
}
@-webkit-keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(-140deg);
            transform: rotate(-140deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
@keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(-140deg);
            transform: rotate(-140deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
/*

	6. Additional styles
 */
/* root element of UI */
.pswp__ui {
  -webkit-font-smoothing: auto;
  visibility: visible;
  opacity: 1;
  z-index: 1550;
}

/* top black bar with buttons and "1 of X" indicator */
.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  width: 100%;
}

.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  -webkit-backface-visibility: hidden;
  will-change: opacity;
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

/* pswp--has_mouse class is added only when two subsequent mousemove events occur */
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  visibility: visible;
}

.pswp__top-bar,
.pswp__caption {
  background-color: rgba(0, 0, 0, 0.5);
}

/* pswp__ui--fit class is added when main image "fits" between top bar and bottom bar (caption) */
.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
  background-color: rgba(0, 0, 0, 0.3);
}

/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */
.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
  opacity: 0;
}

/*
	pswp__ui--hidden class is added when controls are hidden
	e.g. when user taps to toggle visibility of controls
*/
.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
  /* Force paint & create composition layer for controls. */
  opacity: 0.001;
}

/* pswp__ui--one-slide class is added when there is just one item in gallery */
.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
  display: none;
}

.pswp__element--disabled {
  display: none !important;
}

.pswp--minimal--dark .pswp__top-bar {
  background: none;
}

.slick-slider div {
  margin-top: -1px;
  margin-bottom: -1px;
  margin-right: -1px;
  margin-left: -1px;
  border: 1px solid rgba(0, 0, 0, 0);
}

.progress-bar {
  margin-top: 5rem;
  position: relative;
  height: 5px;
}
.progress-bar span {
  width: 0%;
  height: 5px;
  display: inline-block;
}

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-right: 2rem;
  padding-left: 2rem;
}

.row {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -moz-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -0.5rem;
  margin-left: -0.5rem;
}

.row.reverse {
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.col.reverse {
  -webkit-box-direction: reverse;
  -webkit-box-orient: vertical;
  -moz-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

[class*=col-xs] {
  -webkit-box-flex: 0;
  -moz-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.col-xs-1 {
  -ms-flex-preferred-size: 8.3333333333%;
  flex-basis: 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-xs-2 {
  -ms-flex-preferred-size: 16.6666666667%;
  flex-basis: 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-xs-3 {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
}

.col-xs-4 {
  -ms-flex-preferred-size: 33.3333333333%;
  flex-basis: 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-xs-5 {
  -ms-flex-preferred-size: 41.6666666667%;
  flex-basis: 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-xs-6 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}

.col-xs-7 {
  -ms-flex-preferred-size: 58.3333333333%;
  flex-basis: 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-xs-8 {
  -ms-flex-preferred-size: 66.6666666667%;
  flex-basis: 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-xs-9 {
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%;
}

.col-xs-10 {
  -ms-flex-preferred-size: 83.3333333333%;
  flex-basis: 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-xs-11 {
  -ms-flex-preferred-size: 91.6666666667%;
  flex-basis: 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-xs-12 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

.col-xs-offset-1 {
  margin-left: 8.3333333333%;
}

.col-xs-offset-2 {
  margin-left: 16.6666666667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.3333333333%;
}

.col-xs-offset-5 {
  margin-left: 41.6666666667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.3333333333%;
}

.col-xs-offset-8 {
  margin-left: 66.6666666667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.3333333333%;
}

.col-xs-offset-11 {
  margin-left: 91.6666666667%;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

.col-xs {
  -webkit-box-flex: 1;
  -moz-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  max-width: 100%;
}

.start-xs {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  text-align: start;
}

.center-xs {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -moz-justify-content: center;
  justify-content: center;
  text-align: center;
}

.end-xs {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
  text-align: end;
}

.top-xs {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -moz-align-items: flex-start;
  align-items: flex-start;
}

.middle-xs {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
}

.bottom-xs {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -moz-align-items: flex-end;
  align-items: flex-end;
}

.around-xs {
  -ms-flex-pack: distribute;
  -moz-justify-content: space-around;
  justify-content: space-around;
}

.between-xs {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -moz-justify-content: space-between;
  justify-content: space-between;
}

.first-xs {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

.last-xs {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

@media only screen and (min-width: 48em) {
  /*  .container {
      width: 46rem; }*/
  [class*=col-sm] {
    -webkit-box-flex: 0;
    -moz-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .col-sm-1 {
    -ms-flex-preferred-size: 8.3333333333%;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-sm-2 {
    -ms-flex-preferred-size: 16.6666666667%;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -ms-flex-preferred-size: 33.3333333333%;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-sm-5 {
    -ms-flex-preferred-size: 41.6666666667%;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-sm-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -ms-flex-preferred-size: 58.3333333333%;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-sm-8 {
    -ms-flex-preferred-size: 66.6666666667%;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-sm-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -ms-flex-preferred-size: 83.3333333333%;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-sm-11 {
    -ms-flex-preferred-size: 91.6666666667%;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-sm-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-sm-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-sm-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-sm-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-sm-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-sm-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm {
    -webkit-box-flex: 1;
    -moz-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .start-sm {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    text-align: start;
  }
  .center-sm {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -moz-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .end-sm {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
    text-align: end;
  }
  .top-sm {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -moz-align-items: flex-start;
    align-items: flex-start;
  }
  .middle-sm {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -moz-align-items: center;
    align-items: center;
  }
  .bottom-sm {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -moz-align-items: flex-end;
    align-items: flex-end;
  }
  .around-sm {
    -ms-flex-pack: distribute;
    -moz-justify-content: space-around;
    justify-content: space-around;
  }
  .between-sm {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -moz-justify-content: space-between;
    justify-content: space-between;
  }
  .first-sm {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .last-sm {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media only screen and (min-width: 62em) {
  /*  .container {
      width: 61rem; }*/
  [class*=col-md] {
    -webkit-box-flex: 0;
    -moz-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .col-md-1 {
    -ms-flex-preferred-size: 8.3333333333%;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-md-2 {
    -ms-flex-preferred-size: 16.6666666667%;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -ms-flex-preferred-size: 33.3333333333%;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-md-5 {
    -ms-flex-preferred-size: 41.6666666667%;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-md-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -ms-flex-preferred-size: 58.3333333333%;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-md-8 {
    -ms-flex-preferred-size: 66.6666666667%;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-md-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -ms-flex-preferred-size: 83.3333333333%;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-md-11 {
    -ms-flex-preferred-size: 91.6666666667%;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-md-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-md-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-md-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-md-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-md-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-md-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md {
    -webkit-box-flex: 1;
    -moz-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .start-md {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    text-align: start;
  }
  .center-md {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -moz-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .end-md {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
    text-align: end;
  }
  .top-md {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -moz-align-items: flex-start;
    align-items: flex-start;
  }
  .middle-md {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -moz-align-items: center;
    align-items: center;
  }
  .bottom-md {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -moz-align-items: flex-end;
    align-items: flex-end;
  }
  .around-md {
    -ms-flex-pack: distribute;
    -moz-justify-content: space-around;
    justify-content: space-around;
  }
  .between-md {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -moz-justify-content: space-between;
    justify-content: space-between;
  }
  .first-md {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .last-md {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media only screen and (min-width: 1200px) {
  /*  .container {
      width: 61rem; }*/
  [class*=col-lg] {
    -webkit-box-flex: 0;
    -moz-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .col-lg-1 {
    -ms-flex-preferred-size: 8.3333333333%;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-lg-2 {
    -ms-flex-preferred-size: 16.6666666667%;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -ms-flex-preferred-size: 33.3333333333%;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-lg-5 {
    -ms-flex-preferred-size: 41.6666666667%;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-lg-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -ms-flex-preferred-size: 58.3333333333%;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-lg-8 {
    -ms-flex-preferred-size: 66.6666666667%;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-lg-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -ms-flex-preferred-size: 83.3333333333%;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-lg-11 {
    -ms-flex-preferred-size: 91.6666666667%;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-lg-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-lg-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-lg-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-lg-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-lg-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-lg-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg {
    -webkit-box-flex: 1;
    -moz-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .start-lg {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    text-align: start;
  }
  .center-lg {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -moz-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .end-lg {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
    text-align: end;
  }
  .top-lg {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -moz-align-items: flex-start;
    align-items: flex-start;
  }
  .middle-lg {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -moz-align-items: center;
    align-items: center;
  }
  .bottom-lg {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -moz-align-items: flex-end;
    align-items: flex-end;
  }
  .around-lg {
    -ms-flex-pack: distribute;
    -moz-justify-content: space-around;
    justify-content: space-around;
  }
  .between-lg {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -moz-justify-content: space-between;
    justify-content: space-between;
  }
  .first-lg {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .last-lg {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.main-container {
  margin-top: 0;
}

.hero.home {
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 5vw;
  padding-right: 5vw;
  padding-top: 80px;
  min-height: 245px;
}
.hero.home img {
  max-width: 50%;
}
.hero.home h1 + .btn {
  opacity: 0;
}
.hero.home h1 + .btn {
  display: none;
}
.hero.home .btn {
  min-width: 150px;
}
@media (min-width: 450px) {
  .hero.home {
    min-height: 280px;
  }
}
@media (min-width: 768px) {
  .hero.home {
    min-height: 300px;
    min-height: 35rem;
    padding-top: 8rem;
    padding-bottom: 2rem;
    background-size: cover;
    padding-top: 60px;
  }
}
@media (min-width: 992px) {
  .hero.home {
    background-position: center center;
  }
  .hero.home img {
    width: 40%;
  }
  .hero.home .btn {
    min-width: 150px;
  }
}
@media (min-width: 1200px) {
  .hero.home {
    min-height: 500px;
    padding-top: 15rem;
    max-height: 600px;
  }
}
@media (min-width: 1440px) {
  .hero.home {
    min-height: 600px;
  }
}

.hero.home h1,
.hero.home h2 {
  padding: 2rem 0 0 0;
  margin-bottom: 0;
}
.hero.home h1 span,
.hero.home h2 span {
  display: block;
}
.hero.home h1 span.white-text,
.hero.home h2 span.white-text {
  font-size: 75%;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}
@media (min-width: 992px) {
  .hero.home h1 span.white-text,
  .hero.home h2 span.white-text {
    font-size: inherit;
  }
}
.hero.home h1 .font-accent.bottom,
.hero.home h2 .font-accent.bottom {
  font-size: 5vw;
}
.hero.home h1 .font-accent.top.offer,
.hero.home h2 .font-accent.top.offer {
  font-size: 10vw;
}
.hero.home h1 .font-accent.bottom.offer,
.hero.home h2 .font-accent.bottom.offer {
  font-size: 4vw;
}
.hero.home h1 .sub-heading,
.hero.home h2 .sub-heading {
  font-size: 0.9rem;
}
@media (min-width: 592px) {
  .hero.home h1 .sub-heading br,
  .hero.home h2 .sub-heading br {
    display: none;
  }
  .hero.home h1 .sub-heading,
  .hero.home h2 .sub-heading {
    font-size: 1.2rem;
  }
}
@media (min-width: 992px) {
  .hero.home h1 .font-accent.top.offer,
  .hero.home h2 .font-accent.top.offer {
    font-size: 8vw;
  }
  .hero.home h1 .font-accent.bottom.offer,
  .hero.home h2 .font-accent.bottom.offer {
    font-size: 3vw;
  }
}
@media (min-width: 1440px) {
  .hero.home h1 .sub-heading,
  .hero.home h2 .sub-heading {
    font-size: 1.5rem;
  }
}

.hero.home {
  position: relative;
}
.hero.home .heading-bottom {
  position: absolute;
  bottom: 2rem;
}
.hero.home h2 {
  line-height: 0.9;
}

.home-slider .slide-1 {
  background: url(../../images/hero-home-cj.jpg) right 100% center no-repeat;
  background-size: cover;
  background-position: center bottom;
}

.home-slider .slide-2 {
  background: url(../../images/hero-home-cj-2.jpg) right 100% center no-repeat;
  background-size: cover;
  background-position: center bottom;
}

.home-slider .slide-3 {
  background: url(../../images/hero-home-cj-3C.jpg) right 100% center no-repeat;
  background-size: cover;
  background-position: center bottom;
}

.cta-blocks {
  text-align: center;
  margin: auto;
  width: 95%;
}
@media (min-width: 992px) {
  .cta-blocks {
    min-height: 33vh;
  }
}

.cta-blocks a.block {
  margin: 0 0 1rem 0;
  position: relative;
  border-radius: 15px;
  padding: 0vh 0.5rem 0vh 0.5rem;
}
.cta-blocks a.block:hover {
  color: #ffffff;
}
.cta-blocks a.block:hover .btn {
  color: #ffffff;
  background: #020202;
  border: 1px solid rgba(0, 0, 0, 0);
}
.cta-blocks a.block:hover .h3 {
  color: #CE1329;
}
.cta-blocks a.block:hover .overlay, .cta-blocks a.block:focus .overlay {
  border-radius: 15px;
}
.cta-blocks a.block .h3 {
  font-size: 2rem;
}
.cta-blocks a.block .h3:hover {
  color: #CE1329;
}
.cta-blocks a.block .small {
  font-size: 1.1rem;
  display: block;
}
.cta-blocks a.block span {
  display: block;
}
.cta-blocks a.block span:nth-of-type(2) {
  font-size: 70%;
}
.cta-blocks a.block .btn {
  margin: auto;
  margin-bottom: 0;
  color: #020202;
  background: #FFC72C;
  font-size: 1.5rem;
  margin-top: 1rem;
  min-width: 150px;
}
.cta-blocks a.block .btn:hover, .cta-blocks a.block .btn:focus {
  color: #ffffff;
  background: #CE1329;
}
@media (min-width: 768px) {
  .cta-blocks a.block .btn {
    font-size: 2rem;
  }
}
.cta-blocks a.block img {
  top: initial;
  left: initial;
  -webkit-transform: none;
          transform: none;
  padding: 2rem 0;
  width: 50%;
  height: 100%;
  max-width: 100%;
  z-index: 1;
}
.cta-blocks a.block .h3, .cta-blocks a.block .btn {
  z-index: 2;
}
.cta-blocks a.block .cta {
  height: auto;
  padding: 3rem 0rem 1rem 0rem;
  width: 50%;
  max-width: 50%;
  min-height: 100%;
}
.cta-blocks a.block .overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
@media (min-width: 592px) {
  .cta-blocks a.block .btn {
    margin-top: 2rem;
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) {
  .cta-blocks a.block {
    padding: 3vh 1rem 0vh 1rem;
  }
  .cta-blocks a.block .h3 {
    margin-bottom: 0;
    font-size: 3.5rem;
  }
}
@media (min-width: 992px) {
  .cta-blocks a.block {
    border-radius: 30px;
    padding: 5vh 1rem 1vh 1rem;
  }
  .cta-blocks a.block:hover .overlay, .cta-blocks a.block:focus .overlay {
    border-radius: 30px;
  }
  .cta-blocks a.block .small {
    font-size: 1.6rem;
  }
  .cta-blocks a.block .btn {
    margin-top: 3rem;
    font-size: 1.6rem;
  }
  .cta-blocks a.block .h3 {
    font-size: 4.5rem;
  }
}
@media (min-width: 768px) {
  .cta-blocks a.block .btn {
    font-size: 2rem;
  }
}
@media (min-width: 1200px) {
  .cta-blocks a.block {
    padding: 0;
  }
  .cta-blocks a.block .btn {
    margin-top: auto;
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
  .cta-blocks a.block .h3 {
    font-size: 3rem;
    margin-bottom: 0;
  }
  .cta-blocks a.block img {
    width: 70%;
    position: absolute;
    top: 60%;
    right: 0;
    left: 0;
    height: auto;
    margin: auto;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .cta-blocks a.block .cta {
    width: 100%;
    max-width: 100%;
    padding: 3rem 1rem 1rem 1rem;
  }
  .cta-blocks a.block:nth-of-type(2) {
    margin: 0 20px 1rem 20px;
  }
}
@media (min-width: 1440px) {
  .cta-blocks a.block .h3 {
    font-size: 4rem;
    font-size: 2vw;
  }
}

.block.legacy {
  background: url(../../images/cta-legacy-brand-2.png) left center no-repeat;
  background-size: 140%;
}
@media (min-width: 992px) {
  .block.legacy {
    background-size: 120%;
  }
}
@media (min-width: 1200px) {
  .block.legacy {
    background: url(../../images/cta-legacy-brand-2.png) center center/cover no-repeat;
  }
}

.block.bold {
  background: url(../../images/cta-bold-investment-2.png) right center no-repeat;
  background-size: cover;
}
@media (min-width: 1200px) {
  .block.bold {
    background-position: 85% center;
  }
}

.block.franchise {
  background: url(../../images/cta-franchise-dev.png) right center no-repeat;
  background-size: cover;
}

/****************************************
= INCVENTIVE BANNER
****************************************/
.banner-incentive {
  background: #F0E7D6 url(../../images/bg-texture-paper.jpg) center center/cover no-repeat;
  padding: 2rem 0;
  margin: 0 auto 10px;
  overflow: hidden;
  position: relative;
}

.banner-incentive .wrap {
  width: 95%;
}

.banner-incentive .col-xs-12 {
  padding: 20px 0;
}

.banner-incentive .col-md-9 {
  padding: 0;
}

.banner-incentive h3 {
  font-size: 3.1rem;
}
@media (min-width: 768px) {
  .banner-incentive h3 {
    font-size: 3.1rem;
  }
}
@media (min-width: 992px) {
  .banner-incentive h3 {
    font-size: 4rem;
  }
}
@media (min-width: 1200px) {
  .banner-incentive h3 {
    font-size: 4.5rem;
  }
}
@media (min-width: 1440px) {
  .banner-incentive h3 {
    font-size: 5.5rem;
  }
}

.banner-incentive .co-brand h3 {
  text-shadow: -3px 2px 0 #FFC72C;
}

.banner-incentive .co-brand {
  border-radius: 15px;
  background: #F0E7D6 url(../../images/bg-cta-co-branding.png) left 60% bottom 0%/250% no-repeat;
}
@media (min-width: 400px) {
  .banner-incentive .co-brand {
    background: #F0E7D6 url(../../images/bg-cta-co-branding.png) left 55% bottom 0%/200% no-repeat;
  }
}
@media (min-width: xs) {
  .banner-incentive .co-brand {
    background: #F0E7D6 url(../../images/bg-cta-co-branding.png) left 55% bottom 0%/200% no-repeat;
  }
}
@media (min-width: 450px) {
  .banner-incentive .co-brand {
    background: #F0E7D6 url(../../images/bg-cta-co-branding.png) left 55% bottom 30%/200% no-repeat;
  }
}
@media (min-width: 592px) {
  .banner-incentive .co-brand {
    background: #F0E7D6 url(../../images/bg-cta-co-branding.png) left 45% bottom 30%/150% no-repeat;
  }
}
@media (min-width: 992px) {
  .banner-incentive .co-brand {
    border-radius: 30px;
  }
}
@media (min-width: 1200px) {
  .banner-incentive .co-brand {
    background: #F0E7D6 url(../../images/bg-cta-co-branding.png) left 40% bottom/160% no-repeat;
  }
}
@media (min-width: 1440px) {
  .banner-incentive .co-brand {
    background: #F0E7D6 url(../../images/bg-cta-co-branding.png) left bottom/120% no-repeat;
  }
}

.banner-incentive .btn {
  margin-bottom: 0;
}

.banner-incentive:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: -25%;
  right: 0;
  bottom: 0;
  left: -70%;
  pointer-events: none;
  z-index: 0;
  background: url(../../images/star-strip-angled-2.png) no-repeat left bottom/contain;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
@media (min-width: 450px) {
  .banner-incentive:before {
    top: -25%;
  }
}
@media (min-width: 592px) {
  .banner-incentive:before {
    top: -15%;
    left: -65%;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}
@media (min-width: 768px) {
  .banner-incentive:before {
    top: 50%;
    left: -40%;
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
}
@media (min-width: 992px) {
  .banner-incentive:before {
    top: 40%;
    left: -350px;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}
@media (min-width: 1680px) {
  .banner-incentive:before {
    left: -300px;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@media (min-width: 1920px) {
  .banner-incentive:before {
    left: -150px;
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
}
@media (min-width: 2200px) {
  .banner-incentive:before {
    left: 100px;
  }
}

/****************************************
= NEWS + EVENTS
****************************************/
.home-news-events {
  margin-bottom: 30px;
}

.home-news-events .row {
  margin: auto;
}

.home-news-events > .wrap {
  width: 95%;
  padding: 0;
  border: none;
  max-width: 95%;
}

.home-news-events h4 {
  position: relative;
  margin: 30px auto;
}
.home-news-events h4:before, .home-news-events h4:after {
  opacity: 1;
  content: "";
  display: block;
  width: 20%;
  height: 100%;
  background: #00f;
  position: absolute;
  top: 50%;
  bottom: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../../images/stripes-section-button.svg) repeat-x center center/cover;
}
.home-news-events h4:before {
  right: 0;
}
.home-news-events h4:after {
  left: 0;
}
@media (min-width: 1200px) {
  .home-news-events h4:before, .home-news-events h4:after {
    background-size: contain;
  }
}
@media (min-width: 1200px) {
  .home-news-events h4:before, .home-news-events h4:after {
    width: 33%;
  }
}

.home-events {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0 10px 0;
  border-radius: 15px;
  -ms-flex-item-align: baseline;
      align-self: baseline;
}
.home-events p {
  margin-bottom: 10px;
  font-size: 1.75rem;
}
@media (min-width: 992px) {
  .home-events p {
    font-size: 1.8rem;
  }
}
@media (min-width: 1200px) {
  .home-events p {
    font-size: 2.2rem;
  }
}
.home-events li {
  font-size: 2rem;
}
@media (min-width: 992px) {
  .home-events li {
    font-size: 2.1rem;
  }
}
@media (min-width: 1200px) {
  .home-events li {
    font-size: 2.2rem;
  }
}
@media (min-width: 1680px) {
  .home-events li {
    font-size: 2.5rem;
  }
}
.home-events ul {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .home-events {
    border-radius: 30px;
  }
}

.home-events .btn {
  margin: auto;
  font-size: 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 65px;
  line-height: 65px;
  min-width: auto;
  max-width: 360px;
}
.home-events .btn span {
  line-height: initial;
  display: inline-block;
}
.home-events .btn .black-text {
  text-shadow: -2px 1px 0 #FFC72C;
}
.home-events .btn:hover .white-text {
  color: #020202 !important;
}
.home-events .btn .white-text {
  font-size: 1.6rem;
}
.home-events .btn .white-text:hover {
  color: #020202 !important;
}
@media (min-width: 992px) {
  .home-events .btn {
    font-size: 2.1rem;
  }
}
@media (min-width: 1200px) {
  .home-events .btn {
    font-size: 2.4rem;
  }
}
@media (min-width: 1440px) {
  .home-events .btn {
    font-size: 2.5rem;
  }
}
@media (min-width: 1680px) {
  .home-events .btn {
    font-size: 3rem;
    min-width: 475px;
  }
  .home-events .btn .white-text {
    font-size: 1.9rem;
  }
}

.home-events li {
  margin-bottom: 10px;
}

@media (min-width: 992px) {
  .home-news {
    padding-right: 25px;
  }
}

.home-news li {
  margin-bottom: 15px;
}
.home-news li a:hover {
  color: #FFC72C;
}
.home-news li a:hover span {
  color: #FFC72C !important;
}

/****************************************
= GET STARTED
****************************************/
.home-get-started {
  padding: 30px 0;
}

.home-get-started .wrap {
  width: 95%;
}

.home-get-started-form .btn-next:hover {
  color: #ffffff;
  background: #CE1329;
}

.inner-page {
  padding-top: 65px;
}
@media (min-width: 1200px) {
  .inner-page {
    padding-top: 115px;
  }
}

.inner-page-bg {
  min-height: 95vh;
  padding-top: 65px;
}
@media (min-width: 1200px) {
  .inner-page-bg {
    padding-top: 0;
  }
}

.inner-page-bg > h1 {
  font-size: 12vw;
  padding: 3rem 0;
  margin-bottom: 0;
}
@media (min-width: 1200px) {
  .inner-page-bg > h1 {
    padding-top: 11.5rem;
    font-size: 11vw;
  }
}

.accordion-group h3 {
  margin-bottom: 0;
}
.accordion-group h3:nth-of-type(3) {
  border-bottom: 1px solid #ffffff;
}

.accordion-group.active h3 {
  margin-bottom: 0;
  position: relative;
}
.accordion-group.active h3:nth-of-type(3) {
  border-bottom: none;
}
.accordion-group.active h3:after {
  content: "";
  display: block;
  height: 1px;
  background: #020202;
  position: absolute;
  width: 90%;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.accordion-group.active h3:nth-of-type(2) .accordion-button.active {
  background: #F0E7D6;
}
.accordion-group.active h3:nth-of-type(2) + .white-transparent-lg {
  background: #F0E7D6;
}

.accordion-group .accordion-button {
  cursor: pointer;
  width: 100%;
  background: none;
  color: #ffffff;
  height: 100%;
  padding: 4rem 0;
  border: none;
  border-top: 1px solid #ffffff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.accordion-group .accordion-button span {
  display: block;
}
.accordion-group .accordion-button:hover {
  background: #CE1329;
}
.accordion-group .accordion-button:focus {
  color: #ffffff;
  background: none;
}
.accordion-group .accordion-button:before, .accordion-group .accordion-button:after {
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.accordion-group .accordion-button.active {
  color: #020202;
  background: #ffffff;
  padding: 2rem 0;
}
.accordion-group .accordion-button.active:before, .accordion-group .accordion-button.active:after {
  opacity: 1;
  content: "";
  display: block;
  width: 2%;
  height: 50%;
  background: #00f;
  position: absolute;
  top: 50%;
  bottom: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../../images/stripes-section-button.svg) no-repeat center center/cover;
}
.accordion-group .accordion-button.active:before {
  right: 0;
}
.accordion-group .accordion-button.active:after {
  left: 0;
}
@media (min-width: 592px) {
  .accordion-group .accordion-button.active:before, .accordion-group .accordion-button.active:after {
    width: 10%;
  }
}
@media (min-width: 768px) {
  .accordion-group .accordion-button.active .h1 {
    font-size: 4.5rem;
  }
}
@media (min-width: 1200px) {
  .accordion-group .accordion-button.active:before, .accordion-group .accordion-button.active:after {
    width: 10%;
  }
  .accordion-group .accordion-button.active .h1 {
    font-size: 7rem;
  }
  .accordion-group .accordion-button.active .h6 {
    font-size: 4rem;
  }
}
@media (min-width: 1440px) {
  .accordion-group .accordion-button.active:before, .accordion-group .accordion-button.active:after {
    width: 10%;
  }
  .accordion-group .accordion-button.active .h1 {
    font-size: 8rem;
  }
}
@media (min-width: 1680px) {
  .accordion-group .accordion-button.active:before, .accordion-group .accordion-button.active:after {
    width: 15%;
  }
}
.accordion-group .accordion-button.active:hover {
  color: #020202;
}
.white-transparent-lg {
  background: #ffffff;
}
.panel {
  display: none;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.25s ease-out;
  transition: max-height 0.25s ease-out;
}
.panel .wrap {
  padding: 3rem 0 0.5rem 0;
}
.panel img {
  margin: auto;
  width: 100%;
}

.panel.active {
  display: block;
  padding-bottom: 3rem;
}

.panel.show {
  display: block;
  max-height: 100%;
  min-height: 60vh;
}

.copy {
  padding: 0 1rem;
}

@media (min-width: 1200px) {
  .copy {
    padding: 0 5rem 0 0rem;
  }
  .copy.left-padding {
    padding: 0 0 0 5rem;
  }
}
/****************************************
= Contact Us
****************************************/
.contactus .intro {
  margin: 0 0 3rem 0;
}
.contactus h2 {
  font-size: 2.5rem;
}
@media (min-width: 992px) {
  .contactus h2 {
    font-size: 3.5rem;
  }
}
.contactus .contactus-list {
  padding: 2rem 0rem 2rem 0rem;
  border-top: 1px solid #767575;
}
@media (min-width: 1200px) {
  .contactus .contactus-list {
    padding: 0rem 0rem 2rem 0rem;
    border-top: none;
    border-bottom: 1px solid #767575;
  }
}
.contactus .contactus-list-2 {
  padding: 2rem 0rem 2rem 0rem;
  border-top: 1px solid #767575;
}
@media (min-width: 1200px) {
  .contactus .contactus-list-2 {
    border-top: none;
    border-bottom: 1px solid #767575;
  }
}
.contactus .flex-row div {
  margin-right: 1rem;
}
.contactus .flex-row div.child {
  border-right: 1px solid #767575;
}

/****************************************
= FAQ
****************************************/
.faq ul {
  text-align: left;
  margin: 0 auto;
}
.faq li {
  line-height: 1.5;
  padding: 0 0 0.5rem 0.5rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 1200px) {
  .faq .faq-answers {
    margin-top: 2rem;
  }
}
.faq .faq-questions {
  margin-bottom: 2rem;
}
@media (min-width: 1200px) {
  .faq .faq-questions {
    margin-right: 4rem;
  }
}

.faq-answers li {
  line-height: 1.5;
  padding: 0 0 1rem 0.5rem;
  margin-bottom: 0.5rem;
}

.faq-question-button {
  position: relative;
  border: 1px solid #dcdbda;
  width: 100%;
  background: none;
  cursor: pointer;
  padding: 1rem 0;
  border-left: none;
  border-right: none;
}
.faq-question-button .question {
  padding: 1rem 0.5rem 1rem 3rem;
  text-align: left;
}
.faq-question-button .icon {
  position: relative;
  height: 20px;
  width: 20px;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.faq-question-button .icon:after, .faq-question-button .icon:before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 5px;
  margin: auto;
  background: #252525;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.faq-question-button .icon:after {
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.faq-question-button.active .icon:after {
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.answer {
  padding: 0;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}

.answer.active {
  opacity: 1;
  max-height: 100%;
  padding: 2rem 2rem 2rem 3rem;
  -webkit-transition: max-height 0.4s ease-in, opacity 0.3s linear;
  transition: max-height 0.4s ease-in, opacity 0.3s linear;
}

/****************************************
= LEGAL, privacy-policy,accessibility
****************************************/
.legal p {
  margin-bottom: 2rem;
}
.legal ul.dotlist li {
  list-style-type: disc;
  margin-left: 5rem;
  margin-bottom: 1rem;
}
.legal ul.square li {
  list-style-type: square !important;
  margin-left: 8rem;
  margin-bottom: 0.5rem;
}
.legal h2 {
  font-size: 15vw;
  padding: 3rem 0;
  margin-bottom: 0;
}
@media (min-width: 1200px) {
  .legal h2 {
    padding-top: 11.5rem;
    font-size: 9vw;
  }
}
.legal .bold {
  font-weight: bold;
}
.legal .italic {
  font-style: oblique;
}
.legal a {
  text-decoration: underline;
}
.legal table {
  border-collapse: collapse;
  width: 100%;
}
.legal th, .legal td {
  padding: 8px;
  text-align: left;
  border-bottom: 1px solid #767575;
}

.inner-page-bg.brand {
  background: url(../../images/bg_brand_1.jpg) center top no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
@media (min-width: 1200px) {
  .inner-page-bg.brand {
    background: url(../../images/bg_brand_desktop_1.jpg) center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
  }
}

.products .flex > div {
  margin: auto;
  width: 100%;
  max-width: 100%;
}
.products .flex .food {
  padding-top: 2rem;
}
@media (min-width: 1200px) {
  .products .flex > div {
    max-width: 50%;
  }
}
.products .copy-bottom {
  margin-top: 3em !important;
}

.products-slider {
  margin-top: 3rem;
}
@media (min-width: 992px) {
  .products-slider {
    margin-top: 0;
  }
}

.marketing .yellow-text {
  text-align: center;
}
@media (min-width: 992px) {
  .marketing .yellow-text {
    text-align: left;
  }
}
.marketing .slick-slider {
  padding: 2rem;
  max-width: 100%;
}
@media (min-width: 1200px) {
  .marketing .slick-slider {
    max-width: 33%;
  }
}

.innovation-copy {
  margin-top: 1rem;
}
@media (min-width: 992px) {
  .innovation-copy {
    margin-top: 0;
    margin-left: 3rem;
    position: relative;
  }
}
.innovation-copy:after {
  content: "";
  display: block;
  height: 1px;
  width: 65%;
  border-bottom: 1px solid #020202;
  margin: auto;
  margin-top: 3rem;
  position: relative;
  right: 0;
  bottom: 0px;
  left: 0;
}
@media (min-width: 992px) {
  .innovation-copy:after {
    margin-top: 5rem;
    width: 95%;
    position: absolute;
    bottom: -2px;
  }
}

.history.active {
  padding-bottom: 5rem;
}

.history-slider {
  width: 100%;
  max-width: 100%;
  border: 1px solid rgba(0, 0, 0, 0);
}
.history-slider .flex > div {
  margin: auto;
  padding: 1rem;
}
.history-slider span {
  display: block;
}
.history-slider .s {
  display: inline;
  text-transform: lowercase;
}
.history-slider .slide {
  border: 1px solid rgba(0, 0, 0, 0);
}
.history-slider .event {
  padding: 5rem 0;
  margin: auto;
}
.history-slider .slick-dots {
  bottom: -2rem;
}

@media (min-width: 1200px) {
  .history-slider {
    margin: auto;
    max-width: 90%;
  }
  .history-slider .h4 {
    font-size: 2vw;
  }
}

.history-slider-buttons {
  margin-top: 10rem;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 60px;
}
.history-slider-buttons button {
  cursor: pointer;
  border: none;
  background: none;
  width: 3rem;
}

.history-slider-controls {
  margin: auto;
  max-width: 60px;
}
.history-slider-controls > div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
}
.history-slider-controls .controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 0;
  max-width: 70px;
}
.history-slider-controls button {
  width: 50%;
}
.history-slider-controls i {
  color: #676767;
}

.news-list article {
  border-bottom: 1px solid #767575;
  padding: 20px 10px 20px 10px;
}
.news-list article:nth-of-type(1) {
  padding-top: 0;
}
.news-list .feature {
  padding: 5px;
}
@media (min-width: 992px) {
  .news-list article {
    padding: 40px 10px 20px 10px;
  }
  .news-list .thumb {
    max-width: 15%;
  }
  .news-list .feature {
    max-width: 85%;
    padding-right: 100px;
  }
}
@media (min-width: 1200px) {
  .news-list .feature {
    padding-right: 100px;
  }
}

@media (min-width: 992px) {
  .news-single article {
    padding: 40px 10px 20px 10px;
  }
  .news-single .thumb {
    max-width: 40%;
  }
  .news-single .feature {
    max-width: 60%;
    padding-right: 100px;
  }
}

.news-single .btn-red {
  border-radius: 40px;
}

.inner-page-bg.franchising {
  background: url(../../images/bg_franchising.jpg) center top no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
@media (min-width: 1200px) {
  .inner-page-bg.franchising {
    background: url(../../images/bg_franchising_desktop.jpg) right top no-repeat;
    background-size: cover;
    background-attachment: fixed;
  }
}

.requirements .wrap {
  width: 95%;
  padding: 3rem 1em 0 1em;
}
@media (min-width: 1200px) {
  .requirements .wrap {
    padding: 5rem 1rem;
  }
  .requirements .requirements-chart {
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
  }
}

.requirements-chart .flex-row {
  padding: 0.5rem 0rem 0.5rem 0rem;
  border-top: 1px solid #767575;
}
.requirements-chart .flex-row > div {
  padding: 0.5rem 1rem 0 0.5rem;
}
.requirements-chart .flex-row > div:nth-of-type(2) {
  border-left: 1px solid #767575;
  padding-left: 1.5rem;
  padding-right: 0;
}

.requirements-chart ul {
  margin-top: 0.5rem;
  margin-bottom: 0;
}
.requirements-chart li {
  padding: 0;
  margin-bottom: 0.5rem;
}
.requirements-chart .disclaimer {
  padding-top: 2rem;
}
.requirements-chart .small {
  margin: auto;
}

@media (min-width: 992px) {
  .requirements-chart .flex-row > div:nth-of-type(1) {
    border-bottom: none;
  }
  .requirements-chart .flex-row > div:nth-of-type(2) {
    border-left: 1px solid #767575;
    padding-left: 2.5rem;
  }
}

@media (min-width: 768px) {
  .minimums-list li {
    -ms-flex-pack: distribute;
        justify-content: space-around;
    width: 100%;
  }
}

@media (min-width: 592px) {
  .process li.flex {
    padding: 1rem 0;
  }
}
@media (min-width: 1200px) {
  .process li.flex {
    padding: 1rem;
  }
  .process .copy {
    position: relative;
  }
  .process .copy:after {
    content: "";
    display: block;
    height: 1px;
    width: 95%;
    border-bottom: 1px solid #020202;
    margin: auto;
    position: absolute;
    right: 0;
    bottom: 7px;
    left: 0;
  }
}

.support li.flex {
  padding: 0 0 5rem 0;
}
@media (min-width: 1200px) {
  .support li.flex {
    padding: 0 0 10rem 0;
  }
}

.support-list li {
  border-top: 1px solid #767575;
}
.support-list li:last-child {
  border-bottom: 1px solid #767575;
}

/****************************************
= INCENTIVE CHARTS
****************************************/
.growth-incentive-promo .promotion {
  margin: auto;
  padding: 10px 0;
  max-width: 1400px;
}
@media (min-width: 992px) {
  .growth-incentive-promo .promotion {
    padding: 20px 0;
  }
}
@media (min-width: 1680px) {
  .growth-incentive-promo .promotion {
    padding: 25px 0;
  }
}

.growth-incentive-promo .sub-heading div,
.schedule-meeting-promo .sub-heading div {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
@media (min-width: 992px) {
  .growth-incentive-promo .sub-heading div:nth-of-type(1),
  .schedule-meeting-promo .sub-heading div:nth-of-type(1) {
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
  }
}

.growth-incentive-promo .download-instructions {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 1em auto 2em auto;
}
.growth-incentive-promo .download-instructions div {
  margin: 1rem auto;
}
.growth-incentive-promo .download-instructions .h3 {
  line-height: 0.75;
}
.growth-incentive-promo .download-instructions img {
  max-width: 250px;
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
  -webkit-box-shadow: 0 0 100px rgba(250, 250, 250, 0.5);
          box-shadow: 0 0 100px rgba(250, 250, 250, 0.5);
}
.growth-incentive-promo .download-instructions.border {
  padding: 2rem;
  border: 1px solid #FFC72C;
}
@media (min-width: 592px) {
  .growth-incentive-promo .download-instructions .brochure {
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
    padding: 3rem;
  }
}

.growth-incentive-promo .promo-header,
.growth-incentive-promo .promo-controls,
.growth-incentive-promo .promo-chart,
.growth-incentive-promo .promo-footer {
  margin-bottom: 10px;
}
.growth-incentive-promo .promo-footer {
  margin: auto;
  max-width: 900px;
}
.growth-incentive-promo .promo-footer li {
  font-size: 1.6rem;
}
@media (min-width: 592px) {
  .growth-incentive-promo .promo-footer li {
    font-size: 1.8rem;
  }
}
@media (min-width: 592px) {
  .growth-incentive-promo .promo-footer li {
    font-size: 2rem;
  }
}
@media (min-width: 992px) {
  .growth-incentive-promo .promo-footer li {
    font-size: 3rem;
  }
}

.growth-incentive-promo .instructions {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  margin: auto;
  max-width: 700px;
}
.growth-incentive-promo legend {
  position: relative;
  height: 50px;
  font-size: 2rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.growth-incentive-promo legend:after {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  right: 0;
  left: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 20px solid #ffffff;
  -webkit-animation: shakeX 10s linear infinite;
          animation: shakeX 10s linear infinite;
}
@media (min-width: 992px) {
  .growth-incentive-promo legend {
    position: absolute;
    height: 55px;
    top: 0;
    left: 0;
    bottom: 20%;
    text-align: right;
    max-width: 180px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-right: 33px;
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
        -ms-flex-direction: initial;
            flex-direction: initial;
  }
  .growth-incentive-promo legend:after {
    content: "";
    display: block;
    position: absolute;
    top: 5px;
    right: 5px;
    left: initial;
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 20px solid #ffffff;
    border-right: initial;
  }
}
.growth-incentive-promo input[type=text],
.growth-incentive-promo input[type=number] {
  text-align: center;
  font-size: 4.5rem;
  background: none;
  color: white;
  border: none;
  border: 1px solid #ffffff;
  margin: auto;
  max-width: 340px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.growth-incentive-promo input[type=text]::-webkit-input-placeholder, .growth-incentive-promo input[type=number]::-webkit-input-placeholder {
  color: #ffffff !important;
}
.growth-incentive-promo input[type=text]::-moz-placeholder, .growth-incentive-promo input[type=number]::-moz-placeholder {
  color: #ffffff !important;
}
.growth-incentive-promo input[type=text]:-ms-input-placeholder, .growth-incentive-promo input[type=number]:-ms-input-placeholder {
  color: #ffffff !important;
}
.growth-incentive-promo input[type=text]::-ms-input-placeholder, .growth-incentive-promo input[type=number]::-ms-input-placeholder {
  color: #ffffff !important;
}
.growth-incentive-promo input[type=text]::placeholder,
.growth-incentive-promo input[type=number]::placeholder {
  color: #ffffff !important;
}
.growth-incentive-promo input[type=range] {
  margin: 5px auto 10px auto;
}
.growth-incentive-promo input[type=number] {
  border: 1px solid red;
}
.growth-incentive-promo h3.h6 {
  padding: 10px;
  font-size: 1.6rem;
  max-width: 700px;
  margin: auto;
}
@media (min-width: 992px) {
  .growth-incentive-promo h3.h6 {
    font-size: 2.5rem;
  }
}
.growth-incentive-promo .unit-volume {
  margin-bottom: 0;
}
.growth-incentive-promo .total-savings {
  line-height: 0.9;
}
.growth-incentive-promo .btn.full {
  max-width: 330px;
}
.growth-incentive-promo input[type=range] {
  accent-color: #ffc627;
  max-width: 500px;
}
.growth-incentive-promo .promo-chart {
  margin: 30px auto 30px auto;
  max-width: 900px;
}
.growth-incentive-promo .unit-volume span {
  font-size: 2rem;
}
.growth-incentive-promo .promo-chart h3 {
  margin-bottom: 15px;
}
.growth-incentive-promo .total-savings {
  margin-top: 15px;
}
.growth-incentive-promo .total-savings span.yellow-text {
  font-size: 2.5rem;
}
.growth-incentive-promo .total-savings span.red-text {
  font-size: 8rem;
}
.growth-incentive-promo .block {
  display: block;
}
.growth-incentive-promo canvas {
  max-height: 170px;
}
.growth-incentive-promo + .form-container {
  padding: 20px 0;
}
.growth-incentive-promo a.h2, .growth-incentive-promo a.h3 {
  color: #CE1329;
}
.growth-incentive-promo a.h2:hover, .growth-incentive-promo a.h3:hover {
  color: #FFC72C;
  text-decoration: underline;
}
@media (min-width: 992px) {
  .growth-incentive-promo .total-savings span.red-text {
    font-size: 11rem;
  }
  .growth-incentive-promo + .form-container {
    padding: 40px 0;
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 1.15, 1.15);
            transform: scale3d(1.15, 1.15, 1.15);
  }
  to {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 1.15, 1.15);
            transform: scale3d(1.15, 1.15, 1.15);
  }
  to {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
@-webkit-keyframes shakeX {
  0%, to {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-2px, 0, 0);
            transform: translate3d(-2px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(2px, 0, 0);
            transform: translate3d(2px, 0, 0);
  }
}
@keyframes shakeX {
  0%, to {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-2px, 0, 0);
            transform: translate3d(-2px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(2px, 0, 0);
            transform: translate3d(2px, 0, 0);
  }
}
.inner-page-bg.development {
  background: url(../../images/bg_development.jpg) center bottom no-repeat;
  background-size: cover !important;
  background-attachment: fixed;
}
@media (min-width: 1200px) {
  .inner-page-bg.development {
    background: url(../../images/bg_development_desktop.jpg) right top no-repeat;
    background-size: cover;
    background-attachment: fixed;
  }
}

.available-markets .flex > div {
  margin: auto;
}
.available-markets img {
  margin: 2rem 0;
}
@media (min-width: 992px) {
  .available-markets img {
    padding-right: 3rem;
  }
}

.markets-map {
  width: 100%;
}

.facility-design h4 {
  margin: 0;
}
.facility-design ul {
  margin-bottom: 0;
}
.facility-design .design-callouts {
  position: relative;
  margin: 1rem 0;
  border: 4px solid #FFC72C;
}
@media (min-width: 1200px) {
  .facility-design .design-callouts .slider-container {
    min-width: 35%;
  }
  .facility-design .design-callouts .facility-design-slider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.facility-design .init-hide {
  display: none;
}
.facility-design .init-hide.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 992px) {
  .facility-design .interior {
    padding-left: 2rem;
  }
}
@media (min-width: 1200px) {
  .facility-design .interior {
    -webkit-box-flex: 1.5;
        -ms-flex: 1.5;
            flex: 1.5;
  }
}

.facility-attributes {
  margin: 2rem auto;
}
.facility-attributes .wrap {
  width: 99%;
  padding: 0;
}
.facility-attributes .flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.facility-attributes img {
  max-width: 60%;
}
.facility-attributes li {
  padding: 15px;
  width: 50%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.facility-attributes p {
  font-size: 1.6rem;
}
@media (min-width: 992px) {
  .facility-attributes li {
    width: 25%;
  }
  .facility-attributes p {
    font-size: 2rem;
    max-width: 300px;
  }
}

.facility-types .flex {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.facility-types .flex > li {
  padding: 0 20px 30px 20px;
}
.facility-types .flex > .white-bg {
  border-radius: 10px;
  padding: 20px;
}
.facility-types img {
  border-radius: 10px;
}
@media (min-width: 992px) {
  .facility-types .flex > li {
    width: 50%;
  }
  .facility-types .flex > li {
    padding: 0 20px 50px 20px;
  }
}
@media (min-width: 1200px) {
  .facility-types .flex > li {
    width: 33.333%;
  }
}

.facility-design-slider.slick-dotted {
  margin-bottom: 20px !important;
}
.facility-design-slider img {
  width: 100%;
  padding: 1px;
}
.facility-design-slider .slick-dots {
  bottom: 0;
  padding: 0.5rem 0;
}
.facility-design-slider .slick-dots button:before {
  color: #ffffff;
  font-size: 15px;
}
.facility-design-slider .slick-dots li.slick-active button:before {
  color: #ffffff;
}
.toggle-design-button {
  width: 100%;
  position: relative;
  background: none;
  border: none;
  padding: 1rem 0;
  cursor: pointer;
  color: #020202;
  -webkit-transition: all 0.369s ease;
  transition: all 0.369s ease;
}
.toggle-design-button.active, .toggle-design-button:hover, .toggle-design-button:focus {
  color: #FFC72C;
  background: #020202;
}
.toggle-design-button.active:hover, .toggle-design-button.active:focus {
  color: #ffffff;
}
.toggle-design-button .h3 {
  line-height: initial;
}

.toggle-design-button .cross {
  width: 25px;
  height: 25px;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 5px;
  bottom: 0;
  -webkit-transform: translateY(-65%);
          transform: translateY(-65%);
}
.toggle-design-button .cross:before, .toggle-design-button .cross:after {
  content: "";
  display: inline-block;
  background: #FFC72C;
  height: 3px;
  width: 100%;
  position: absolute;
  top: 50%;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.369s ease;
  transition: all 0.369s ease;
}
.toggle-design-button .cross:after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media (min-width: 992px) {
  .toggle-design-button .cross {
    right: 15px;
  }
}

.toggle-design-button.active .cross::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  background: #CE1329;
}

.specs > div:not(.slider-container) {
  padding: 0 1rem;
}
.specs .h5 {
  padding: 1.5rem;
}
.specs ul:not(.slick-dots) {
  padding: 2rem;
}
.specs li {
  font-size: 1.6rem;
}
@media (min-width: 1200px) {
  .specs > div {
    margin: 1rem;
  }
}

.future .l-hidden {
  display: none;
}
@media (min-width: 1440px) {
  .future .l-hidden {
    display: block;
  }
}
.future .l-xs-hidden {
  display: block;
}
@media (min-width: 1440px) {
  .future .l-xs-hidden {
    display: none;
  }
}

.future-content {
  padding: 2rem 0;
}
.future-content > div {
  padding: 1rem 0;
}
@media (min-width: 992px) {
  .future-content.future-heading div:nth-of-type(1) {
    padding-right: 3rem;
  }
}
@media (min-width: 1200px) {
  .future-content.future-heading div:nth-of-type(1) {
    padding-right: 5rem;
  }
}

.future-restaurant-button-group {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr 2rem 1fr 2rem 1fr 2rem 1fr;
  grid-template-rows: repeat(4, 1fr);
  grid-gap: 2rem;
}
@media (min-width: 992px) {
  .future-restaurant-button-group {
    -ms-grid-rows: 1fr 2rem 1fr;
    grid-template-rows: repeat(2, 1fr);
    -ms-grid-columns: 1fr 2rem 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
  .future-restaurant-button-group > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .future-restaurant-button-group > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .future-restaurant-button-group > *:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .future-restaurant-button-group > *:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
}

.future-restaurant-button-group .wrap {
  padding-top: 1rem;
}
.future-restaurant-button-group .wrap img {
  margin: 0 auto;
  max-width: 700px;
}
.future-restaurant-button-group button[rel=js-ToggleSibling] {
  width: 100%;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  border: 1px solid transparent;
}
.future-restaurant-button-group button[rel=js-ToggleSibling]:hover, .future-restaurant-button-group button[rel=js-ToggleSibling]:focus {
  border: 1px solid #FFC72C;
}
@media (min-width: 992px) {
  .future-restaurant-button-group .wrap {
    padding-top: 2rem;
  }
}

.future-restaurant-content {
  position: relative;
}
.future-restaurant-content .small {
  font-size: 1.45rem;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .future-restaurant-content .small {
    font-size: 2rem;
    line-height: 1.3;
  }
}
@media (min-width: 1200px) {
  .future-restaurant-content .small {
    font-size: 2.5rem;
  }
}
@media (min-width: 1680px) {
  .future-restaurant-content .small {
    font-size: 3rem;
  }
}

.future-restaurant-content .init-hide.active {
  pointer-events: none;
}

.future-restaurant-content div {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}

.prototype-gallery {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.prototype-gallery figure {
  width: 48%;
  margin: 1% 1%;
}
@media (min-width: 1200px) {
  .prototype-gallery figure {
    width: 30%;
    margin: 1% 1.5%;
  }
}

@media (min-width: 992px) {
  .gallery figcaption {
    padding: 0.5rem 0;
    font-size: 1.5rem;
  }
}

.gallery.active {
  padding-bottom: 5rem;
}

.development-disclaimer {
  padding: 2rem 0;
  font-size: 1.15rem;
  color: #cecece;
}

form {
  width: 100%;
  margin: auto;
}
form .form-element {
  margin: 0.5rem;
}
form select {
  text-transform: uppercase;
}
form label {
  font-size: 1.6rem;
  padding: 0.5rem;
}
form .financials {
  margin-bottom: 2rem;
}
form .financials-alert {
  min-height: 2.5rem;
}
form .financials-alert p {
  font-size: 1.2rem;
  margin-bottom: 0;
}

.get-started-form {
  max-width: 1500px;
}
.get-started-form .territories > div {
  margin: 1rem 0.5rem;
  padding: 2rem;
  border: 1px solid #020202;
}
.get-started-form .captcha {
  margin: 1rem 0.5rem;
}
.get-started-form .required {
  color: #CE1329;
}
.get-started-form .yellow-border {
  border: 1px solid #FFC72C;
}
.get-started-form .small {
  font-size: 1.25rem;
}
.get-started-form .state-element {
  display: none;
}
.get-started-form .state-element.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

body.landing {
  max-width: 100%;
}

.landing-page {
  position: relative;
  color: #020202;
  overflow: hidden;
  height: auto;
  min-height: 95vh;
  border: 1px solid rgba(0, 0, 0, 0);
}
@media (min-width: 1200px) {
  .landing-page {
    background: url(../../images/prospect-direct-bg.png) repeat-x;
    background-position: center bottom -8em;
  }
}
.landing-page .wrap {
  max-width: 800px;
  padding-top: 0;
}

.landing-page .hgroup {
  z-index: 2;
}
.landing-page p {
  margin: auto;
  text-align: left;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .landing-page p {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    max-width: 500px;
  }
}
@media (min-width: 1440px) {
  .landing-page p {
    max-width: 600px;
  }
}
.landing-page li {
  margin-bottom: 0.5em;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .landing-page li {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}
.landing-page .burger-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  bottom: -70%;
  left: 0;
  overflow: hidden;
  pointer-events: none;
}
@media (min-width: 768px) {
  .landing-page .burger-bg {
    bottom: -50%;
  }
}
.landing-page .burger-bg.left {
  background: url(../../images/burger-left.png) center left no-repeat;
  left: -700px;
}
@media (min-width: 992px) {
  .landing-page .burger-bg.left {
    bottom: 0;
    left: -750px;
  }
}
@media (min-width: 1200px) {
  .landing-page .burger-bg.left {
    left: -650px;
    bottom: -200px;
  }
}
@media (min-width: 1440px) {
  .landing-page .burger-bg.left {
    left: -600px;
    background-size: 60%;
  }
}
@media (min-width: 1680px) {
  .landing-page .burger-bg.left {
    left: -500px;
  }
}
.landing-page .burger-bg.right {
  background: url(../../images/burger-right.png) center right no-repeat;
  right: -700px;
}
@media (min-width: 992px) {
  .landing-page .burger-bg.right {
    bottom: 0;
    right: -750px;
  }
}
@media (min-width: 1200px) {
  .landing-page .burger-bg.right {
    right: -650px;
    bottom: -200px;
  }
}
@media (min-width: 1440px) {
  .landing-page .burger-bg.right {
    right: -600px;
    background-size: 60%;
  }
}
@media (min-width: 1680px) {
  .landing-page .burger-bg.right {
    right: -500px;
  }
}
@media (min-width: 1680px) {
  .landing-page .burger-bg.left, .landing-page .burger-bg.right {
    background-size: 55%;
  }
}
.landing-page .logo img {
  max-width: 400px;
}
.landing-page form {
  margin: 2em auto 3em;
  text-align: left;
  max-width: 515px;
}
.landing-page form .form-element {
  margin: 3px;
  width: 100%;
}
.landing-page form .form-element:last-child {
  width: 100%;
  padding-top: 0em;
}
.landing-page form .form-element p {
  padding: 0 1em;
}
.landing-page input[type=text] {
  background: #ffffff;
  height: 40px;
}
.landing-page .result {
  margin-top: 0.5em;
}
.landing-page .result .error,
.landing-page .result .success {
  padding: 1em 0;
  color: #ffffff;
  font-size: 1.8rem;
}
.landing-page .result .error {
  background: red;
}
.landing-page .result .success {
  background: green;
}
.landing-page .loader {
  display: inline-block;
  width: 64px;
  height: 64px;
}
.landing-page .loader:after {
  content: " ";
  display: block;
  width: 46px;
  height: 46px;
  margin: 0.3em auto;
  border-radius: 50%;
  border: 5px solid #020202;
  border-color: #020202 transparent #020202 transparent;
  -webkit-animation: ring-spin 1.2s linear infinite;
          animation: ring-spin 1.2s linear infinite;
}
@-webkit-keyframes ring-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes ring-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

footer.prospect-direct {
  padding: 2rem 0;
}

/****************************************
= HEADER
****************************************/
.c-store-page .global-header {
  background: #020202;
}

/****************************************
= PAGE UTILITIES
****************************************/
.bg-texture-paper {
  background: #F0E7D6 url(../../images/bg-texture-paper.jpg) center center/cover no-repeat;
}

.c-store-page .container {
  padding: 30px 0;
}
@media (min-width: 992px) {
  .c-store-page .container {
    padding: 35px 0;
  }
}
@media (min-width: 1200px) {
  .c-store-page .container {
    padding: 40px 0;
  }
}
@media (min-width: 1680px) {
  .c-store-page .container {
    padding: 50px 0;
  }
}
@media (min-width: 1920px) {
  .c-store-page .container {
    padding: 60px 0;
  }
}

@media (min-width: 768px) {
  .c-store-page .wrap {
    width: 70%;
  }
}
@media (min-width: 1920px) {
  .c-store-page .wrap {
    width: 60%;
  }
}

.c-store-page .hero {
  padding-top: 0;
}

@media (min-width: 1200px) {
  .c-store-page .h4 {
    font-size: 4.3rem;
  }
}

/****************************************
= HERO
****************************************/
.c-store-page .hero h1 {
  font-size: 3.6rem;
}
.c-store-page .hero h1 .inline-block {
  width: 100%;
}
.c-store-page .hero h2 .font-accent {
  display: block;
}
.c-store-page .hero .small {
  font-size: 2rem;
}
.c-store-page .hero .btn {
  margin: 15px auto;
}
@media (min-width: 768px) {
  .c-store-page .hero h1 {
    width: 70%;
    margin: auto;
    font-size: 3.8rem;
  }
  .c-store-page .hero h1 .inline-block {
    width: auto;
  }
}
@media (min-width: 992px) {
  .c-store-page .hero h1 {
    font-size: 4.5rem;
  }
}
@media (min-width: 1200px) {
  .c-store-page .hero h1 {
    font-size: 5rem;
  }
  .c-store-page .hero .small {
    font-size: 3rem;
  }
  .c-store-page .hero .btn {
    margin: 25px auto;
  }
}
@media (min-width: 1440px) {
  .c-store-page .hero h1 {
    font-size: 7rem;
  }
  .c-store-page .hero .btn {
    margin: 35px auto;
  }
}
@media (min-width: 1680px) {
  .c-store-page .hero h1 {
    font-size: 8rem;
  }
}
@media (min-width: 1920px) {
  .c-store-page .hero h1 {
    width: 60%;
  }
}

.striped-heading {
  position: relative;
  padding: 30px 0 10px 0;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .striped-heading {
    margin-bottom: 20px;
  }
}
@media (min-width: 1200px) {
  .striped-heading {
    padding: 30px 0 15px 0;
    margin-bottom: 30px;
  }
}

.striped-heading:before, .striped-heading:after {
  opacity: 1;
  content: "";
  display: block;
  width: 10%;
  height: 40%;
  position: absolute;
  top: 50%;
  bottom: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../../images/stripes-section-button.svg) repeat-x center center/cover;
}
.striped-heading:before {
  right: 0;
}
.striped-heading:after {
  left: 0;
}
@media (min-width: 768px) {
  .striped-heading:before, .striped-heading:after {
    width: 15%;
  }
}
@media (min-width: 1920px) {
  .striped-heading:before, .striped-heading:after {
    width: 20%;
  }
}

.c-store-page .hero .btn.tall {
  margin: 30px auto;
}
@media (min-width: 992px) {
  .c-store-page .hero .btn.tall {
    margin: 40px auto;
  }
}
@media (min-width: 1200px) {
  .c-store-page .hero .btn.tall {
    margin: 50px auto;
  }
}

/****************************************
= AUV CALLOUT
****************************************/
.c-store-page .callout-auv {
  margin: 3rem auto 2rem auto;
  line-height: 0.7;
}
.c-store-page .callout-auv span:not(.font-body) {
  display: block;
}
.c-store-page .callout-auv .top {
  font-size: 12vw;
}
.c-store-page .callout-auv .bottom {
  font-size: 5vw;
}
@media (min-width: 450px) {
  .c-store-page .callout-auv {
    font-size: 10vw;
  }
}
@media (min-width: 992px) {
  .c-store-page .callout-auv {
    margin: 6rem auto 4rem auto;
  }
  .c-store-page .callout-auv .top {
    font-size: 9vw;
  }
}
@media (min-width: 1680px) {
  .c-store-page .callout-auv .top {
    font-size: 16rem;
  }
}

.auv-cta .btn:hover {
  color: #ffffff;
  background: #CE1329;
}

.auv-intro p {
  max-width: 900px;
  margin: auto;
}

/****************************************
= BENEFITS OF CO-BRANDING
****************************************/
.c-store-page .co-brand-benefits {
  background: #1293d1;
  padding-bottom: 0;
}
.c-store-page .co-brand-benefits .wrap {
  border: none;
}
.c-store-page .co-brand-benefits img {
  width: 100%;
}
.c-store-page .co-brand-benefits .wrap + img {
  border: none;
  margin-bottom: -5px;
}
.c-store-page .co-brand-benefits li {
  position: relative;
  padding: 15px 0;
  font-weight: bold;
}
.c-store-page .co-brand-benefits li:after {
  content: "";
  height: 1px;
  width: 50%;
  margin: auto;
  background: #ffffff;
  position: absolute;
  top: initial;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 300px;
}
@media (min-width: 992px) {
  .c-store-page .co-brand-benefits .wrap {
    border: none;
    position: absolute;
    top: 5rem;
    left: 0;
    right: 0;
  }
  .c-store-page .co-brand-benefits li {
    padding: 25px 0;
  }
  .c-store-page .co-brand-benefits .wrap + img {
    padding-top: 450px;
  }
}

@media (min-width: 1200px) {
  .c-store-page .co-brand-benefits .shadow-yellow {
    text-shadow: -3px 2px 0 #FFC72C;
  }
}

/****************************************
= FOOD
****************************************/
.c-store-page .callout-food {
  background: url(../../images/landing/cstore/c-store-food-bkg-gradient.png) center top/cover no-repeat;
}
.c-store-page .callout-food img {
  width: 90%;
}

.inner-page-bg.incentives {
  background: none;
}
.inner-page-bg.incentives img {
  width: 100%;
}
@media (min-width: 1200px) {
  .inner-page-bg.incentives {
    margin-top: 115px;
  }
}

.incentives > .container {
  padding: 3rem 0;
}
@media (min-width: 768px) {
  .incentives > .container {
    padding: 5rem 0;
  }
}

.incentives .hero {
  padding: 0 0 3rem 0;
}
@media (min-width: 992px) {
  .incentives .hero {
    padding: 2rem 0;
  }
}

.incentives p {
  max-width: 1200px;
  margin: 0 auto 20px auto;
}

.incentives .hero .flex {
  width: 100%;
}
.incentives .hero .flex h1, .incentives .hero .flex p {
  width: 90%;
  margin: auto;
}
.incentives .hero .flex p {
  text-align: justify;
  margin-bottom: 20px;
}
.incentives .hero .flex h1 {
  margin-top: 30px;
  margin-bottom: 10px;
}
.incentives .hero .flex h1 span {
  display: block;
}
@media (min-width: 992px) {
  .incentives .hero .flex .slider {
    margin: auto;
    width: 90%;
  }
  .incentives .hero .flex h1 {
    margin: 10px auto;
  }
  .incentives .hero .flex h1 span {
    display: inline;
  }
}

.incentives h1 {
  padding-top: 0;
  font-size: 3rem;
  padding: 0;
  margin: 20px auto 10px auto;
  line-height: 1;
}
.incentives h1 .top {
  font-size: 6rem;
}
.incentives h1 .bottom {
  font-size: 4rem;
  margin-top: -10px;
}
@media (min-width: 768px) {
  .incentives h1 .top {
    font-size: 10rem;
  }
  .incentives h1 .bottom {
    font-size: 7rem;
    margin-top: -15px;
  }
}
@media (min-width: 992px) {
  .incentives h1 .top, .incentives h1 .bottom {
    font-size: 10rem;
  }
}

@media (min-width: 1200px) {
  .incentives .h2 {
    font-size: 6rem;
  }
}

.incentives .slider {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  margin-top: -2px;
}
.incentives .slider img {
  width: 100%;
}
@media (min-width: 992px) {
  .incentives .slider {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

@media (min-width: 992px) {
  .incentives .copy {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 30px;
  }
}

.incentives .build-more img {
  margin: 20px auto 30px auto;
}
.incentives .build-more li {
  position: relative;
  padding: 15px 0;
  font-weight: bold;
}
.incentives .build-more li:after {
  content: "";
  height: 1px;
  width: 50%;
  margin: auto;
  background: #020202;
  position: absolute;
  top: initial;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 300px;
}
@media (min-width: 992px) {
  .incentives .build-more li {
    padding: 25px 0;
  }
}

.incentives .callout-auv {
  line-height: 1;
}
.incentives .callout-auv span {
  display: block;
}
.incentives .callout-auv .big {
  font-size: 15vw;
}
.incentives .callout-auv .small {
  font-size: 5vw;
}
.incentives .callout-auv + p {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .incentives .callout-auv .big {
    font-size: 11vw;
  }
}

.incentives .callout-food {
  background: url(../../images/landing/cstore/c-store-food-bkg-gradient.png) center top/cover no-repeat;
}
.incentives .callout-food img {
  width: 90%;
}

.incentives .contact {
  padding-top: 10px;
}
.incentives .contact img {
  margin: 20px auto;
  max-width: 200px;
}

/****************************************
= BACKGROUND COLORS
****************************************/
.black-bg {
  background-color: #020202 !important;
}

.dark-gray-bg {
  background-color: #252525 !important;
}

.white-bg {
  background-color: #ffffff !important;
}

.yellow-bg {
  background-color: #FFC72C !important;
}

.cream-bg {
  background-color: #F0E7D6 !important;
}

.black-trans-bg {
  background-color: #020202;
  background: rgba(0, 0, 0, 0.75) !important;
}

/****************************************
= TEXT COLORS
****************************************/
.black-text {
  color: #020202 !important;
}

.white-text {
  color: #ffffff !important;
}

.cream-text {
  color: #F0E7D6 !important;
}

.gray-text {
  color: #b4b4b4 !important;
}

.red-text {
  color: #CE1329 !important;
}

.yellow-text {
  color: #FFC72C !important;
}

body {
  background: #252525;
}

@media (min-width: 992px) {
  .font-xl {
    font-size: 3vw;
  }
}

@media (min-width: 992px) {
  .font-jumbo {
    font-size: 4vw;
  }
}
/*# sourceMappingURL=main.css.map */