@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
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;
}

/*
  Simple Grid
  Project Page - http://thisisdallas.github.com/Simple-Grid/
  Author - Dallas Bass
  Site - http://dallasbass.com
*/
[class*=grid],
[class*=col-],
[class*=mobile-],
.grid:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

[class*=col-] {
  float: left;
  min-height: 1px;
  padding-right: 20px; /* column-space */
}

[class*=col-] [class*=col-]:last-child {
  padding-right: 0;
}

.grid {
  width: 100%;
  max-width: 1140px;
  min-width: 748px; /* when using padded grid on ipad in portrait mode, width should be viewport-width - padding = (768 - 20) = 748. actually, it should be even smaller to allow for padding of grid containing element */
  margin: 0 auto;
  /*overflow: hidden;*/
}

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

.grid-pad {
  padding-top: 20px;
  padding-left: 20px; /* grid-space to left */
  padding-right: 0; /* grid-space to right: (grid-space-left - column-space) e.g. 20px-20px=0 */
}

.push-right {
  float: right;
}

/* Content Columns */
.col-1-1 {
  width: 100%;
}

.col-2-3, .col-8-12 {
  width: 66.66%;
}

.col-1-2, .col-6-12 {
  width: 50%;
}

.col-1-3, .col-4-12 {
  width: 33.33%;
}

.col-1-4, .col-3-12 {
  width: 25%;
}

.col-1-5 {
  width: 20%;
}

.col-1-6, .col-2-12 {
  width: 16.667%;
}

.col-1-7 {
  width: 14.28%;
}

.col-1-8 {
  width: 12.5%;
}

.col-1-9 {
  width: 11.1%;
}

.col-1-10 {
  width: 10%;
}

.col-1-11 {
  width: 9.09%;
}

.col-1-12 {
  width: 8.33%;
}

/* Layout Columns */
.col-11-12 {
  width: 91.66%;
}

.col-10-12 {
  width: 83.333%;
}

.col-9-12 {
  width: 75%;
}

.col-5-12 {
  width: 41.66%;
}

.col-7-12 {
  width: 58.33%;
}

/* Pushing blocks */
.push-2-3, .push-8-12 {
  margin-left: 66.66%;
}

.push-1-2, .push-6-12 {
  margin-left: 50%;
}

.push-1-3, .push-4-12 {
  margin-left: 33.33%;
}

.push-1-4, .push-3-12 {
  margin-left: 25%;
}

.push-1-5 {
  margin-left: 20%;
}

.push-1-6, .push-2-12 {
  margin-left: 16.667%;
}

.push-1-7 {
  margin-left: 14.28%;
}

.push-1-8 {
  margin-left: 12.5%;
}

.push-1-9 {
  margin-left: 11.1%;
}

.push-1-10 {
  margin-left: 10%;
}

.push-1-11 {
  margin-left: 9.09%;
}

.push-1-12 {
  margin-left: 8.33%;
}

@media handheld, only screen and (max-width: 768px) {
  .grid {
    width: 100%;
    min-width: 0;
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px; /* grid-space to left */
    padding-right: 10px; /* grid-space to right: (grid-space-left - column-space) e.g. 20px-10px=10px */
  }
  [class*=col-] {
    width: auto;
    float: none;
    margin: 10px 0;
    padding-left: 0;
    padding-right: 10px; /* column-space */
  }
  [class*=col-] [class*=col-] {
    padding-right: 0;
  }
  /* Mobile Layout */
  [class*=mobile-col-] {
    float: left;
    margin: 0 0 20px;
    padding-left: 0;
    padding-right: 10px; /* column-space */
    padding-bottom: 0;
  }
  .mobile-col-1-1 {
    width: 100%;
  }
  .mobile-col-2-3, .mobile-col-8-12 {
    width: 66.66%;
  }
  .mobile-col-1-2, .mobile-col-6-12 {
    width: 50%;
  }
  .mobile-col-1-3, .mobile-col-4-12 {
    width: 33.33%;
  }
  .mobile-col-1-4, .mobile-col-3-12 {
    width: 25%;
  }
  .mobile-col-1-5 {
    width: 20%;
  }
  .mobile-col-1-6, .mobile-col-2-12 {
    width: 16.667%;
  }
  .mobile-col-1-7 {
    width: 14.28%;
  }
  .mobile-col-1-8 {
    width: 12.5%;
  }
  .mobile-col-1-9 {
    width: 11.1%;
  }
  .mobile-col-1-10 {
    width: 10%;
  }
  .mobile-col-1-11 {
    width: 9.09%;
  }
  .mobile-col-1-12 {
    width: 8.33%;
  }
  /* Layout Columns */
  .mobile-col-11-12 {
    width: 91.66%;
  }
  .mobile-col-10-12 {
    width: 83.333%;
  }
  .mobile-col-9-12 {
    width: 75%;
  }
  .mobile-col-5-12 {
    width: 41.66%;
  }
  .mobile-col-7-12 {
    width: 58.33%;
  }
  .hide-on-mobile {
    display: none !important;
    width: 0;
    height: 0;
  }
}
/*****************
	CONFIGURATIONS TO SIMPLEGRID
******************/
.grid {
  max-width: 1440px;
  border: 1px solid red;
}

.grid-pad {
  padding-top: 100px;
  padding-left: 120px;
  padding-bottom: 100px;
  padding-right: 80px;
}

[class*=col-] {
  padding-right: 40px;
  border: 1px solid grey;
}

@media (max-width: 568px) {
  .mobile-col-1-2.xs,
  .mobile-col-10-12.xs,
  .mobile-col-2-3.xs,
  .mobile-col-1-3.xs {
    float: none;
    width: 100%;
  }
}

@media (max-width: 1200px) {
  .grid-pad {
    padding-top: 100px;
    padding-left: 80px;
    padding-bottom: 100px;
    padding-right: 40px;
  }
  [class*=col-] {
    padding-right: 40px;
  }
}
@media (max-width: 1024px) {
  .grid {
    border: 1px solid green;
  }
  .grid-pad {
    padding-top: 100px;
    padding-left: 40px;
    padding-bottom: 100px;
    padding-right: 0px;
  }
  [class*=col-] {
    padding-right: 40px;
  }
}
@media (max-width: 768px) {
  .grid {
    border: 1px solid blue;
  }
  .grid-pad {
    padding-left: 20px;
    padding-bottom: 100px;
    padding-right: 0px;
  }
  [class*=col-] {
    padding-right: 20px;
    margin: 0;
  }
  [class*=mobile-col-] {
    padding-right: 20px;
    margin: 0;
  }
}
@media (max-width: 568px) {
  .grid-pad {
    padding-left: 20px;
    padding-right: 0px;
  }
}
/*
@media (max-width: 768px){
	.grid-pad{padding-top: 40px; padding-left: 30px; padding-bottom: 30px;}
	[class*='col-'] {padding-right: 30px;}
	//.mobile-col-1-1{margin-bottom: 10px;}
}

@media (max-width: 568px){
	.grid-pad{padding-top: 40px; padding-left: 20px; padding-bottom: 20px;}
	[class*='col-'] {padding-right: 20px;}
}
*/
/**************
	VARIABLES
***************/
/**************
	UTILITIES
***************/
/*** PADDINGS ***/
.pad__top--0 {
  padding-top: 0px;
}

.pad__top--10 {
  padding-top: 10px;
}

.pad__right--0 {
  padding-right: 0px;
}

.pad__bot--0 {
  padding-bottom: 0px;
}

.pad__bot--10 {
  padding-bottom: 10px;
}

.pad__all--40 {
  padding: 40px;
}

/*** TEXT ***/
.text--uppercase {
  text-transform: uppercase;
}

.text--center {
  text-align: center;
}

.text--left {
  text-align: left;
}

.text--right {
  text-align: right;
}

.text--flavour {
  font-size: 3rem;
}

.text--green-1 {
  color: #C9C973;
}

.text--green-2 {
  color: #828248;
}

.text--gray-1 {
  color: #58595B;
}

.text--red {
  color: red;
}

.text--white {
  color: #fff;
}

.text--black {
  color: #16181C;
}

.text--maxed {
  max-width: 70%;
}

.text--maxed-2 {
  max-width: 768px;
}

@media (max-width: 768px) {
  .text--maxed {
    max-width: none;
  }
}
/*** DISPLAYS ***/
.border-top {
  border-top: 1px solid #B9B9BA;
}

.border-bottom {
  border-bottom: 1px solid #B9B9BA;
}

.border--black {
  border-color: #16181C;
}

/*** DISPLAYS ***/
.dis__flex {
  display: flex;
}

.dis__flex-direction--row {
  flex-direction: row;
}

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

.dis__flex--align-self--center {
  align-self: center;
}

.dis__block {
  display: block;
}

/*** LIST ***/
.list {
  list-style-type: disc;
  margin-left: 0px;
  padding-left: 0px;
}

.list li {
  margin-left: 20px;
  line-height: 1.4;
  padding-bottom: 8px;
}

.list--2-col {
  column-count: 2;
}

/*** OVERFLOW ***/
.overflow--hidden {
  overflow: hidden;
}

/*** MARGINS ***/
.margin__top--auto {
  margin-top: auto;
}

.margin__bottom--auto {
  margin-bottom: auto;
}

.margin__left-right--auto {
  margin-left: auto;
  margin-right: auto;
}

.margin__top--none {
  margin-top: 0px;
}

.margin__bottom--none {
  margin-bottom: 0px;
}

.margin__top--10 {
  margin-top: 10px;
}

.margin__top--20 {
  margin-top: 20px;
}

.margin__top--30 {
  margin-top: 30px;
}

.margin__top--40 {
  margin-top: 40px;
}

.margin__top--60 {
  margin-top: 60px;
}

.margin__bottom--10 {
  margin-bottom: 10px;
}

.margin__bottom--20 {
  margin-bottom: 20px;
}

.margin__bottom--30 {
  margin-bottom: 30px;
}

.margin__bottom--40 {
  margin-bottom: 40px;
}

.margin__bottom--60 {
  margin-bottom: 60px;
}

.margin__bottom--80 {
  margin-bottom: 80px;
}

/*** POSITIONS ***/
.position--relative {
  position: relative;
}

/*** BACKGROUND ***/
.bg-gray--1 {
  background: #F5F6F7;
}

.bg-gray--2 {
  background: rgba(218, 218, 219, 0.1);
}

.bg-gray--3 {
  background: #343435;
}

.bg-gradient--1 {
  background: linear-gradient(90deg, #C9C973 0%, #828248 100%);
}

.bg-green--1 {
  background: #C9C973;
}

.bg-green--2 {
  background: rgba(130, 130, 72, 0.05);
}

.bg-green--3 {
  background: #ebebdc;
}

.bg-green--4 {
  background: #828248;
}

.bg-white {
  background: #fff;
}

/**************
	COMPONENTS
***************/
/***** VIDEO *****/
.video-container {
  overflow: hidden;
  background: black;
  width: 100%;
  position: relative;
  padding-top: 56.25%;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/***** BUTTONS *****/
.btn {
  font-family: "Fredoka", sans-serif;
  font-style: normal;
  text-align: center;
  font-size: 1.6rem;
  border: none;
  margin: 0;
  font-weight: 500;
  padding: 18px 10px;
  border-radius: 30px;
  display: inline-block;
  min-width: 200px;
  cursor: pointer;
  transition: background-color 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.25s ease, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.btn:active {
  transform: translateY(-1px) scale(0.97);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn.disabled {
  filter: opacity(0.4);
}

.btn--green {
  background: #C9C973;
  color: #16181C;
}

.btn--green:hover {
  background: #828248;
  color: #fff;
}

.btn--green:visited {
  color: #16181C;
}

.btn--gray {
  background: #58595B;
  color: #fff;
}

.btn--gray:visited {
  color: #fff;
}

.btn--gray:hover {
  background: #343435;
}

.btn--gray-2 {
  background: #DADADB;
}

.btn--gray-2:hover {
  background: #58595B;
  color: #fff;
}

.btn--beige {
  background: #c9bcad;
  color: #16181C !important;
}

.btn--beige:hover {
  background: #b8ac9d;
}

.btn--back {
  width: auto;
  min-width: 100px;
  padding-left: 30px;
  padding-right: 30px;
  display: inline-block;
  margin-bottom: 80px;
}

.btn--back svg {
  margin-right: 10px;
  margin-bottom: -2px;
}

.btn-grp {
  background: #D9D9D9;
  border: 1px solid #B9B9BA;
  border-radius: 30px;
  width: auto;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  box-sizing: border-box;
}

.btn-grp button {
  border: none;
  padding: 15px 20px;
  margin: 0px;
  width: 50%;
  font-family: "Fredoka", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 1.6rem;
  color: #16181C;
}

.btn-grp button:first-child {
  border-right: 1px solid #B9B9BA;
}

.btn-grp button:hover {
  background: #C9C973;
}

.btn-grp button.active {
  background: #C9C973;
}

.btn--left {
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}

.btn--right {
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}

.btn-block .btn {
  width: 100%;
  box-sizing: border-box;
}

/***** FLEX-CONTENT *****/
.flex-content {
  display: flex;
  flex-direction: row;
  box-sizing: border-box;
}

.flex-content__child {
  padding-right: 40px;
}

.flex-content__child--3-12 {
  width: 25%;
}

.flex-content__child--4-12 {
  width: 33.33%;
}

.flex-content__child--5-12 {
  width: 41.66%;
}

.flex-content__child--7-12 {
  width: 58.33%;
}

.flex-content__child--6-12 {
  width: 50%;
}

.flex-content__child--9-12 {
  width: 75%;
}

.flex-content__child--full {
  flex: 0 0 100% !important;
}

@media (max-width: 1024px) {
  .flex-content__child {
    padding-right: 30px;
  }
}
@media (max-width: 768px) {
  .flex-content {
    flex-direction: column;
  }
  .flex-content__child {
    width: 100%;
    text-align: center;
  }
}
/***** CARDS *****/
.cards {
  flex-wrap: wrap;
  box-sizing: border-box;
}

.cards-li--50 {
  flex-basis: 50%;
  margin-bottom: 60px;
}

.cards-li--33 {
  flex-basis: 33.33%;
}

.card {
  padding-right: 60px;
}

.card-icon {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background: #C9C973;
  margin-bottom: 20px;
  position: relative;
}

.card-icon img {
  max-height: 50px;
  position: absolute;
  top: 50%;
  margin-top: -25px;
  left: 50%;
  margin-left: -25px;
}

.card-title {
  font-size: 1.7rem;
}

.card--2 {
  padding-left: 20px;
  padding-right: 20px;
}

.card--3 {
  font-family: "Fredoka", sans-serif;
  font-style: normal;
  width: 100%;
  padding: 20px 20px;
  border-radius: 30px;
  border: 1px solid #D9D9D9;
  justify-content: space-between;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  filter: opacity(0.6);
  cursor: pointer;
}

.card--3 .choice-check {
  height: 50px;
  width: 50px;
  border-radius: 100%;
  background: #DADADB;
  margin-right: 20px;
  min-width: 50px;
}

.card--3 strong {
  margin-right: auto;
  font-size: 2.8rem;
  text-align: left;
  line-height: 1.05;
}

.card--3 strong small {
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 400;
}

.card--3 p {
  font-size: 4.5rem;
  min-width: 220px;
  margin-left: auto;
}

.card--3 p small {
  font-size: 1.4rem;
}

.card--3:hover {
  filter: opacity(1);
}

.card--3.selected {
  filter: opacity(1);
}

.selected .choice-check {
  background: #C9C973;
  position: relative;
}

.selected .choice-check:after {
  content: "";
  width: 50px;
  height: 50px;
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  background: url("/assets/images/check.svg");
  background-size: 60% auto;
  background-repeat: no-repeat;
  background-position: center center;
}

.card--4 {
  position: relative;
  font-family: "Fredoka", sans-serif;
  font-size: 1.6rem;
  width: 100%;
  border: none;
  box-sizing: border-box;
  border-radius: 30px;
  margin-bottom: 30px;
  padding: 40px 40px;
  text-align: left;
}

.card--4 .header {
  font-weight: 500;
  font-size: 1.8rem;
  margin-top: 20px;
  display: block;
}

.card--4 .title {
  font-size: 2.6rem;
  font-weight: 500;
}

.card--4 .amount {
  font-size: 5rem;
  position: absolute;
  top: 45px;
  right: 40px;
} /* float: right; font-size: 5rem; margin-top: -70px;*/
.card--4 .amount small {
  font-size: 1.4rem;
}

.card--5 img {
  display: block;
  height: 100px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .card-icon {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
/***** WELL *****/
.well {
  border-radius: 30px;
  z-index: 0;
}

.well--green {
  background: #C9C973;
}

.well--gray {
  background: rgba(218, 218, 219, 0.4);
}

.well--gray-2 {
  background: #58595b;
  color: #fff;
}

.well--effect:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  border-radius: 30px;
  background: rgba(201, 201, 115, 0.4);
  transform: rotate(3.15deg);
  width: 100%;
  height: 100%;
  z-index: -2;
}

.well--effect:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  border-radius: 30px;
  background: rgba(201, 201, 115, 0.8);
  transform: rotate(-3.15deg);
  width: 100%;
  height: 100%;
  z-index: -3;
}

.well__figure {
  height: 150px;
  margin-left: -40px;
  margin-top: -40px;
  margin-right: -40px;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
} /* background: rgba(255,255,255,.8); */
.well__figure img {
  margin-top: 60px;
  margin-bottom: auto;
  max-height: 100px;
}

.well__title {
  font-size: 2rem;
}

.well-shadow {
  box-shadow: 1px 1px 15px #eee;
}

.well--2 {
  padding: 60px 40px;
  border-radius: 30px;
}

.well--outer {
  padding: 6px;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
}

.well--inner {
  border: 4px solid #fff;
  border-radius: 30px;
  padding: 40px;
}

.well-header {
  display: flex;
  align-items: center;
}

.well-header img {
  width: 120px;
  margin-right: 20px;
}

@media (max-width: 768px) {
  .well {
    padding: 40px 20px;
  }
}
/***** FORM *****/
fieldset {
  margin-bottom: 24px;
}

input {
  font-family: "Fredoka", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.6rem;
}

.form-input {
  border: none;
  width: 100%;
  box-sizing: border-box;
  background: #D9D9D9;
  border-radius: 30px;
  padding: 14px 20px;
}

.form-textarea {
  font-family: "Fredoka", sans-serif;
  font-size: 1.6rem;
  border: none;
  width: 100%;
  box-sizing: border-box;
  background: #D9D9D9;
  border-radius: 30px;
  padding: 14px 20px;
  height: 236px;
}

.form-label {
  display: block;
  margin-bottom: 12px;
}

.select-wrapper {
  position: relative;
  max-width: 568px;
}

.select-wrapper::after {
  content: "▾";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #828248;
  font-size: 22px;
}

.form-select {
  font-family: "Fredoka", sans-serif;
  font-size: 1.6rem;
  height: 47.5px;
  border: none;
  margin: 0px;
  width: 100%;
  box-sizing: border-box;
  width: 100%;
  background: #D9D9D9;
  border-radius: 30px;
  padding: 8px 20px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.form-select--maxed {
  max-width: 568px;
}

.form-checkbox {
  margin-right: 10px;
  margin-bottom: -1px;
  float: left;
}

.board {
  position: relative;
  background: #E5E7EA;
  width: 80%;
  display: flex;
  margin-bottom: 60px;
  box-shadow: 1px 1px 15px #eee;
}

.board--right {
  margin-left: 20%;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}

.board--left {
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}

.board--left:before,
.board--right:before {
  width: 80px;
  height: 80px;
  content: "";
  border-radius: 100%;
  background: #C9C973;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.board--left:before {
  right: -40px;
}

.board--right:before {
  left: -40px;
}

.board--left:after,
.board--right:after {
  width: 80px;
  height: 80px;
  content: "";
  border-radius: 100%;
  border: 6px solid #fff;
  background: #C9C973;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(0.7);
}

.board--left:after {
  right: -46px;
}

.board--right:after {
  left: -46px;
}

.board--edge-to-edge {
  width: 100%;
  border-radius: 30px;
}

.board__content {
  padding: 80px;
  width: 60%;
  box-sizing: border-box;
  align-self: center;
}

.board__title {
  font-size: 1.8rem;
}

.board button {
  width: 40%;
  background: #000;
  position: relative;
  overflow: hidden;
  margin: 0;
  border: none;
  padding: 0;
}

.board button:hover {
  cursor: pointer;
}

.board button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.board--right button {
  order: 2;
}

.board--right .board__content {
  order: 1;
}

.board--edge-to-edge .button--left {
  width: 25%;
}

.board--edge-to-edge .button--right {
  width: 25%;
}

.board--edge-to-edge .board__content {
  width: 50%;
}

@media (max-width: 1024px) {
  .board {
    width: 90%;
  }
  .board--edge-to-edge {
    width: 100%;
    box-sizing: border-box;
  }
  .board__content {
    padding: 60px;
  }
  .board--right {
    margin-left: 10%;
  }
}
@media (max-width: 768px) {
  .boards {
    padding: 20px;
  }
  .board {
    margin-bottom: 60px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    border: 1px solid #DADADB;
  }
  .board:first-child {
    margin-top: 60px;
  }
  .board--right button {
    order: 1;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
  }
  .board--right .board__content {
    order: 2;
  }
  .board--right {
    margin-left: auto;
  }
  .board {
    border-radius: 30px;
    flex-direction: column;
  }
  .board__content,
  .board button {
    width: 100%;
    height: 240px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
  }
  .board__content {
    padding: 40px 30px;
    height: auto;
  }
  .board--left:before {
    left: 50%;
    margin-left: -40px;
    top: 0%;
    z-index: 2;
  }
  .board--right:before {
    left: 50%;
    margin-left: -40px;
    top: 0%;
    z-index: 3;
  }
  .board--left:after {
    left: 50%;
    margin-left: -46px;
    top: 0%;
    z-index: 2;
  }
  .board--right:after {
    left: 50%;
    margin-left: -46px;
    top: 0%;
    z-index: 3;
  }
  .board--edge-to-edge {
    box-sizing: border-box;
  }
  .board--edge-to-edge .button--left {
    width: 100%;
  }
  .board--edge-to-edge .button--right {
    width: 100%;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
  }
  .board--edge-to-edge .board__content {
    width: 100%;
  }
  .board--edge-to-edge:before {
    width: 80px;
    height: 80px;
    content: "";
    border-radius: 100%;
    background: #C9C973;
    display: block;
    position: absolute;
    left: 50%;
    margin-left: -40px;
    top: 0%;
    z-index: 2;
    transform: translateY(-50%);
  }
  .board--edge-to-edge:after {
    width: 80px;
    height: 80px;
    content: "";
    border-radius: 100%;
    border: 6px solid #fff;
    background: #C9C973;
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) scale(0.7);
    left: 50%;
    margin-left: -46px;
    top: 0%;
    z-index: 3;
  }
}
@media (max-width: 568px) {
  .board {
    max-width: 100%;
  }
}
.pill {
  border-radius: 30px;
  padding: 10px 30px;
  background: #C9C973;
  color: #16181C;
  display: inline-block;
}

table {
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #D9D9D9;
  margin-top: 60px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 1px 1px 15px #eee;
}

thead th {
  font-weight: 500;
  vertical-align: bottom;
  line-height: 1.2;
  padding: 20px 20px;
  border: 1px solid rgba(22, 24, 28, 0.4);
  background: #C9C973;
}

tbody td {
  border: 1px solid #D9D9D9;
  padding: 20px 10px;
  max-width: 200px;
  text-align: center;
  vertical-align: middle;
}

tr td:first-child {
  font-weight: 500;
}

tr:nth-child(even) {
  background-color: rgba(217, 217, 217, 0.2);
}

th img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-height: 38px;
  margin-bottom: 15px;
  margin-top: 15px;
}

@media (max-width: 568px) {
  .table-block {
    overflow-x: auto;
    width: 100%;
    margin-top: 40px;
  }
  .table-block table {
    width: 1000px;
  }
  .pricing-retailers .btn-block {
    display: block;
  }
  .pricing-retailers .btn-block li:first-child {
    margin-bottom: 20px;
  }
}
/***** STUBS *****/
.stubs {
  display: flex;
  flex-wrap: wrap;
  margin-left: -30px;
  margin-right: -30px;
}

.stub {
  padding-left: 30px;
  padding-right: 30px;
  width: 33.33%;
  box-sizing: border-box;
}

.stub .video-container {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 56.25%;
  overflow: hidden;
  margin-bottom: 10px;
}

.stub iframe {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border: 0;
}

.stub .title {
  margin-bottom: 10px;
}

.stub .pill {
  padding: 4px 8px;
  font-size: 1.4rem;
}

/*** PHOTO MODAL ***/
.photo-modal {
  box-sizing: border-box;
  padding: 20px;
  position: fixed;
  z-index: 5000;
  background: rgb(0, 0, 0);
  backdrop-filter: blur(6px);
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-content: center;
}

.photo-modal figure {
  position: static;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  background: none;
  text-align: center;
}

.photo-modal img {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  position: static;
  object-fit: contain;
  object-position: center;
}

.photo-modal button {
  border: none;
  padding: 4px;
  border-radius: 4px;
  position: absolute;
  top: 40px;
  right: 40px;
  background: #C9C973 !important;
  text-transform: uppercase;
  color: #16181C;
}

.photo-modal .close:hover {
  cursor: pointer;
}

/*** FLEX-ITEM ***/
.flex-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  box-sizing: border-box;
}

.flex-item figure {
  background: #fff;
  border-radius: 100%;
  min-width: 60px;
  height: 60px;
  margin-right: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-item img {
  width: 40px;
  height: auto;
  align-content: center;
}

/*** DETAILS ***/
details {
  border-radius: 30px;
  border: 1px solid rgba(185, 185, 186, 0.4);
  padding: 30px;
  margin-bottom: 20px;
  background: #fff;
}

details p {
  margin-top: 30px;
}

summary {
  font-weight: 500;
  line-height: 1.3;
}

summary:hover {
  color: #828248;
  text-decoration: underline;
  cursor: pointer;
}

summary::marker {
  color: #828248;
}

details[open] p {
  animation: animateDown 0.2s linear forwards;
}

@keyframes animateDown {
  0% {
    opacity: 0;
    transform: translatey(-15px);
  }
  100% {
    opacity: 1;
    transform: translatey(0);
  }
}
/*** BANNER IMAGE ***/
.banner-image {
  width: 100%;
}

.banner-image img {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  position: static;
  object-fit: 120% auto;
  object-position: center center;
}

/*** FEEDBACK ***/
.feedback {
  display: flex;
  align-items: center;
}

.feedback--2 {
  align-items: top;
}

.feedback-img {
  width: 60px;
  height: auto;
  margin-right: 20px;
}

.success-img {
  width: 60px;
  height: auto;
  margin-right: 20px;
}

.loading-block {
  display: flex;
  align-items: center;
}

.loading-block img {
  margin-left: 20px;
}

/*** SEGMENT ***/
.segment {
  margin-bottom: 50px;
}

.segment-header {
  width: 100%;
  position: relative;
  z-index: 100;
}

.segment-header:before {
  content: "";
  display: block;
  box-shadow: 1px 0px 15px #ccc;
  position: absolute;
  height: 100%;
  background: #C9C973;
  width: 98%;
  z-index: -1;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}

.segment-header .grid {
  display: flex;
  align-items: flex-end;
}

.segment-header .grid-pad {
  padding-top: 40px;
  padding-bottom: 40px;
}

.segment-header img {
  width: 150px;
  height: auto;
  margin-right: 20px;
  margin-top: -70px;
}

.segment-header h3 {
  color: #16181C;
}

.segment-number {
  font-size: 4rem;
  color: #fff;
  background: #828248;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
}

.segment-body .grid-pad {
  padding-top: 0px;
  padding-right: 120px;
}

.segment-well {
  background: #fff;
  padding: 40px;
  padding-top: 60px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  box-shadow: 1px 1px 15px #eee;
}

.segments .cards {
  display: flex;
  flex-wrap: wrap;
  margin-left: -40px;
  margin-right: -40px;
}

.segments .card--6 {
  width: 50%;
  box-sizing: border-box;
  padding: 40px;
  margin-bottom: 40px;
  border-radius: 30px;
}

.segments .card--6 img {
  max-width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.segments .card--6 button {
  margin-bottom: 30px;
  height: 240px;
  overflow: hidden;
  border: none;
  position: relative;
  width: 100%;
}

.segments .card--6 button:hover {
  cursor: pointer;
}

@media (max-width: 1200px) {
  .segment-header:before {
    width: 100%;
  }
  .segment-body .grid-pad {
    padding-right: 80px !important;
  }
}
@media (max-width: 1024px) {
  .segment-body .grid-pad {
    padding-right: 40px !important;
  }
  .segments .card--6 button {
    max-height: 200px;
  }
}
@media (max-width: 768px) {
  .segment {
    margin-bottom: 40px;
  }
  .segment-body .grid-pad {
    padding-right: 20px !important;
    padding-bottom: 60px;
  }
  .segment-well {
    padding-top: 60px;
  }
  .segment-body .list {
    margin-bottom: 30px;
  }
}
@media (max-width: 568px) {
  .segment-header img {
    width: 100px;
  }
  .segment-header h3 {
    padding-right: 20px;
  }
  .segment-well {
    padding-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .segment-body .list--2-col {
    columns: 1;
  }
  .segment-body .cards {
    display: block;
  }
  .segment-body .card--6 {
    width: 100%;
    margin-bottom: 20px !important;
    padding-bottom: 0px;
  }
}
/*** CIRCLES ***/
.circles {
  margin-bottom: 10px;
  display: none;
}

.circle {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background: #828248;
  display: inline-block;
  margin-right: 8px;
}

/*** LINE ITEM ***/
.line-item {
  display: flex;
  justify-content: space-between;
  align-items: top;
  margin-bottom: 8px;
}

.line-item span:last-child {
  padding-left: 20px;
}

/*** SUMMARY CARD ***/
/*****************
	GLOBAL STYLES
******************/
[class*=col-], .grid {
  border: none;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 156px;
}

body {
  font-size: 1.6rem;
  font-family: "Fredoka", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #16181C;
  background: #fff;
}

[data-ember-action]:not(:disabled) {
  cursor: pointer;
}

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

h1 {
  font-size: 8rem;
}

h2 {
  font-size: 6rem;
  line-height: 1.1;
}

h3 {
  font-size: 3.6rem;
  line-height: 1.2;
}

h4 {
  font-size: 3rem;
  line-height: 1.2;
}

h5 {
  font-size: 2.4rem;
  line-height: 1.2;
}

h6 {
  font-size: 2rem;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: #828248;
}

a:hover {
  text-decoration: underline;
}

a:visited {
  color: #828248;
}

p {
  font-size: 1.6rem;
  line-height: 1.4;
}

strong {
  font-weight: 500;
}

em {
  font-style: italic;
}

@media (max-width: 1024px) {
  h2 {
    font-size: 5rem;
  }
}
@media (max-width: 768px) {
  h3 {
    font-size: 3rem;
  }
}
@media (max-width: 568px) {
  h1 {
    font-size: 6rem;
  }
  h2 {
    font-size: 4.6rem;
    line-height: 1;
  }
}
header {
  position: fixed;
  width: 100%;
  top: 0px;
  left: 0px;
  z-index: 1000;
  background: #fff;
  height: 100px;
}

main {
  margin-top: 156px;
}

header .grid {
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  justify-content: space-between;
  height: 100%;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  display: flex;
  flex-direction: row;
}

nav ul li {
  padding-right: 10px;
}

nav ul li:last-child {
  padding-right: 0px;
}

nav ul a {
  padding: 10px 24px;
  color: #16181C !important;
}

nav li a:hover,
nav ul a.active {
  background: #C9C973;
  border-radius: 30px;
  text-decoration: none;
}

.sub-nav {
  position: fixed;
  left: 0px;
  top: 100px;
  width: 100%;
  z-index: 400;
  height: 56px;
}

.sub-nav {
  background-color: #e6e6e6;
}

.sub-nav ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  padding: 10px 0px;
}

.sub-nav li {
  padding: 10px 14px;
}

.sub-nav a {
  color: #16181C;
}

.sub-nav a:hover,
.sub-nav a.active {
  color: #828248;
  text-decoration: underline;
}

.sub-nav a img {
  max-width: 24px;
  margin-right: 5px;
  margin-top: -4px;
}

.sub-nav a.has-image {
  display: flex;
}

.sub-nav button {
  display: none;
}

.mobile-menu-btn {
  border: 0;
  margin: 0;
  padding: 10px;
  border-radius: 6px;
  background: #C9C973;
  font-size: 3rem;
  color: #fff;
  display: none;
}

.mobile-only {
  display: none;
}

.close-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  border: None;
  border-radius: 100% !important;
  width: 40px;
  height: 40px;
  background: #C9C973 !important;
  color: #16181C;
}

@media (max-width: 768px) {
  .mobile-only {
    display: block;
  }
  .mobile-menu-btn {
    display: block;
    margin-left: auto;
  }
  nav {
    display: none;
  }
  .header-content {
    width: 100%;
    box-sizing: border-box;
  }
  .nav-mobile--visible {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 400;
  }
  .nav-mobile--visible ul {
    flex-direction: column;
    text-align: center;
  }
  .nav-mobile--visible li {
    margin: 20px 0px;
    padding-right: 0px;
  }
  .nav-mobile--visible a {
    color: #fff !important;
  }
  .nav-mobile--visible a:hover {
    color: #16181C !important;
  }
  .nav-mobile--visible a:visited {
    color: #fff;
  }
  .sub-nav .grid-pad {
    padding-left: 0px;
  }
  .sub-nav-container {
    background: #58595B;
    padding-right: 0px;
    height: 56px;
  }
  .sub-nav button {
    display: block;
    margin-left: auto;
    margin-right: auto;
    display: block;
    background: none;
    border: none;
    box-shadow: none;
    height: 100%;
    color: #fff;
    font-size: 1.6rem;
    font-family: "Fredoka", sans-serif;
  }
  .sub-nav button:hover {
    cursor: pointer;
  }
  .sub-nav button.active {
    color: #C9C973;
  }
  .sub-nav ul {
    display: none;
    text-align: center;
  }
  .sub-nav .sub-nav--visible {
    display: block;
    background: #bebebe;
  }
  .sub-nav li {
    display: block;
    margin: 4px 0px;
  }
  .sub-nav a {
    color: #16181C;
  }
  .sub-nav a.has-image {
    justify-content: center;
  }
}
footer {
  background: #16181C;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: #fff;
}

.footer-logo img {
  max-height: 150px;
}

@media (max-width: 1024px) {
  .footer-logo img {
    max-height: 100px;
  }
}
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .footer-logo {
    margin-bottom: 40px;
  }
  footer .text--right {
    text-align: center;
  }
  footer .grid-pad {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
/*** SOCIAL ***/
.social {
  margin-top: 20px;
  margin-left: 20px;
  margin-right: 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.social li {
  display: inline-block;
  padding: 0px 5px;
}

.social li a img {
  width: 30px;
}

@media (max-width: 768px) {
  .social {
    margin-bottom: 20px;
  }
}
/*** COUNTDOWN PAGE ***/
.countdown-page {
  margin-top: 0px !important;
  box-sizing: border-box;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
}

.countdown-wrapper {
  width: 100%;
  max-width: 768px;
}

.countdown-logo {
  display: block;
  width: 400px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

@media (max-width: 568px) {
  .countdown-wrapper {
    padding: 40px;
  }
  .countdown-logo {
    width: 100%;
    max-width: 320px;
  }
}
/**************
	SPECIFIC
***************/
.logo img {
  width: 126px;
}

.half-moon-arrow {
  width: 160px;
  height: 160px;
  position: absolute;
  top: -80px;
  left: 50%;
  margin-left: -80px;
  background: #F5F6F7;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.half-moon-arrow svg {
  margin-bottom: 30px;
}

.flavour-number {
  font-size: 8rem;
  color: #C9C973;
  font-weight: 500;
}

.btn-grp {
  max-width: 60%;
}

.x-small {
  font-size: 1.3rem;
}

.triangle {
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid #828248;
  display: block;
  float: right;
  margin-top: 5px;
  margin-left: 5px;
  transition: transform 0.6s ease;
  border-radius: 2px;
}

.triangle.rotated {
  transform: rotate(180deg);
}

/*** INTRO ***/
#intro {
  position: relative;
  overflow: hidden;
}

#intro img {
  width: 100%;
  max-width: 480px;
}

#intro p {
  margin-bottom: 40px;
}

#intro .bokeh-1 {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  filter: blur(6px);
}

#intro .bokeh-2 {
  position: absolute;
  top: 0px;
  right: 0px;
  transform: scaleX(-1);
  filter: blur(6px);
}

@media (max-width: 1024px) {
  #intro .grid-pad {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  #intro .text--flavour {
    font-size: 2rem;
  }
}
@media (max-width: 568px) {
  #intro .bokeh-1 {
    left: -240px;
  }
  #intro .bokeh-2 {
    right: -240px;
  }
}
#what-is {
  height: 580px;
}

#what-is img {
  width: 100%;
  max-width: 60px;
  margin-left: -10px;
}

#what-is .grid-pad {
  height: 100%;
}

#what-is p {
  font-size: 23px;
}

#what-is .flex-content__child--7-12 {
  padding-top: 50px;
  padding-bottom: 50px;
}

@media (max-width: 1024px) {
  #what-is {
    height: auto;
  }
  #what-is p {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  #what-is {
    height: auto;
  }
  #what-is img {
    margin-left: 0px;
  }
  #what-is h2 {
    margin-bottom: 40px;
    margin-top: 0px;
  }
  #what-is .flex-content__child--7-12 {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  #what-is p {
    font-size: 18px;
  }
}
#do .well__figure img {
  margin-top: 40px;
  max-height: 150px;
}

@media (max-width: 1024px) {
  #do .col-7-12,
  #do .col-5-12 {
    width: 100%;
  }
  #do .well {
    max-width: 568px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
  }
}
@media (max-width: 768px) {
  #do {
    text-align: center;
    overflow: hidden;
  }
  #do .card {
    padding-right: 0px;
    max-width: 568px;
    margin-left: auto;
    margin-right: auto;
  }
  #do .well {
    margin-top: 40px;
  }
}
@media (max-width: 568px) {
  #do .cards-li--50:last-child {
    margin-bottom: 20px;
  }
}
#deliver {
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.blob {
  position: absolute;
  z-index: -1;
}

#blob-1 {
  top: 40px;
  left: -200px;
  width: 581px;
  height: 581px;
}

#blob-2 {
  width: 940px;
  height: 940px;
  right: -200px;
  top: 20%;
}

#blob-3 {
  left: -100px;
  top: 50%;
}

#blob-4 {
  right: -10px;
  top: 70%;
}

@media (max-width: 568px) {
  #deliver .grid-pad {
    padding-bottom: 30px;
  }
}
#well-retailer-callout {
  box-sizing: border-box;
  padding: 60px;
  background: #fff;
  border-radius: 30px;
}

#well-retailer-callout .col-3-12 {
  flex-basis: 240px;
}

#well-retailer-callout h3 {
  line-height: 1.2;
}

#well-retailer-callout a {
  display: block;
}

@media (max-width: 768px) {
  #well-retailer-callout {
    flex-direction: column;
    text-align: center;
  }
  #well-retailer-callout .col-3-12 {
    flex-basis: auto;
  }
  #well-retailer-callout h3 {
    max-width: none;
    margin-bottom: 30px;
  }
}
@media (max-width: 568px) {
  #well-retailer-callout {
    padding: 40px;
  }
}
/**** PRICING ****/
.pricing__title {
  font-size: 3rem;
  font-weight: 500;
  color: #828248;
  line-height: normal;
  margin-bottom: 10px;
}

.pricing__price {
  font-size: 5rem;
}

.pricing__price small {
  font-size: 1.4rem;
}

@media (max-width: 1024px) {
  #pricing .btn-block {
    flex-direction: row;
    box-sizing: border-box;
  }
  #pricing .btn-block li:first-child {
    margin-bottom: 10px;
  }
  #pricing .flex-content__child--6-12 {
    width: 100%;
    box-sizing: border-box;
  }
}
@media (max-width: 768px) {
  #pricing .pad__all--40 {
    padding: 30px;
  }
  .pricing__title {
    margin-top: 20px;
  }
  #pricing .well {
    max-width: 568px;
    margin-left: auto;
    margin-right: auto;
  }
  #pricing .btn-grp {
    max-width: 568px;
  }
}
@media (max-width: 568px) {
  #pricing-cards .card--2 {
    padding-left: 0px;
    padding-right: 0px;
  }
}
#pricing-cards {
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
}

#pricing-cards .flex-content__child {
  box-sizing: border-box;
  width: 50%;
  padding-right: 0px;
  padding: 20px;
  flex: 0 0 50%;
}

#pricing-cards .well {
  height: 100%;
  box-sizing: border-box;
}

#pricing-cards .btn-block {
  margin-top: auto;
}

#pricing-cards .btn-block {
  margin-left: -5px;
  margin-right: -5px;
}

#pricing-cards li {
  padding: 0px 5px;
}

#pricing-cards button {
  width: 100%;
}

@media (max-width: 768px) {
  #pricing-cards {
    display: block;
    max-width: 568px;
    margin-left: auto;
    margin-right: auto;
  }
  #pricing-cards .flex-content__child {
    display: block;
    width: 100%;
    margin-bottom: 0px;
  }
  .flex-content__child--full .btn-block {
    display: block;
  }
  .flex-content__child--full .flex-content__child--6-12 {
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
  }
}
@media (max-width: 1024px) {
  #contact .col-5-12,
  #contact .col-6-12 {
    width: 100%;
    max-width: 80%;
  }
}
@media (max-width: 568px) {
  #contact .col-5-12,
  #contact .col-6-12 {
    max-width: none;
  }
}
.pricing-retailers .btn-block {
  max-width: 568px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-retailers .btn-block li {
  padding: 0px 10px;
}

#security .flex-content {
  align-items: center;
}

@media (max-width: 768px) {
  #security .flex-content {
    display: block;
  }
  #security .flex-content__child {
    padding-right: 0px;
  }
  #security img {
    max-width: 200px;
    margin-bottom: 40px;
  }
  #security .list {
    text-align: left;
    max-width: 568px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 568px) {
  #security img {
    max-width: 150px;
  }
}
/*** ALERTS SECTION ***/
#numi-alerts {
  background: #242424;
}

.numi-alerts-logo {
  max-width: 480px;
  width: 100%;
  margin-bottom: 40px;
}

.alerts-tile .flex-content__child {
  width: 33.33%;
  box-sizing: border-box;
  padding-left: 20px;
  padding-right: 20px;
}

.alerts-tile .flex-content__child:last-child {
  padding-right: 0px;
}

.alerts-tile .card--5 {
  padding: 40px;
  background: linear-gradient(#ffffff, #D9D9D9);
  border-radius: 30px;
  height: 100%;
  box-sizing: border-box;
  color: #16181C;
}

.alerts-tile .card--5 h6 {
  margin-bottom: 20px;
  display: block;
  color: #f8284a;
}

.alerts-tile .card--5 figure {
  width: 90px;
  height: 90px;
  border-radius: 100%;
  background: none;
  border: 2px solid #f8284a;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.alerts-tile .card--5 img {
  max-width: 50px;
  height: auto;
  margin-bottom: 0px;
}

.alerts-sec .well {
  background: #fff;
  border-radius: 30px;
  position: relative;
}

.alerts-sec .well--inner {
  padding-top: 140px;
  color: #16181C;
  border-color: #f8284a;
}

.alerts-sec .well figure {
  width: 200px;
  height: 200px;
  border-radius: 100%;
  background: #f8284a;
  position: absolute;
  top: -100px;
  left: 50%;
  margin-left: -100px;
  border: 4px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 0px 0px 4px #f8284a;
}

.alerts-sec .well img {
  width: 140px;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alerts-sec .well h5 {
  color: #f8284a;
}

.alerts-sec-row-2 {
  margin-top: 100px;
}

@media (max-width: 1024px) {
  .alerts-tile .flex-content {
    margin-left: -20px;
  }
  .alerts-tile .card--5 {
    padding-left: 20px;
    padding-right: 20px;
  }
  .alerts-sec-row-2 {
    margin-top: 40px;
  }
  .alerts-sec .well {
    margin-top: 140px;
  }
  .alerts-sec-row-2 .flex-content {
    align-items: flex-end;
  }
}
@media (max-width: 768px) {
  .alerts-tile .flex-content {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-right: -20px;
  }
  .alerts-tile .flex-content__child {
    width: 50%;
  }
  .alerts-sec .card--5 figure {
    margin-left: auto;
    margin-right: auto;
  }
  .alerts-sec .list {
    text-align: left;
  }
  .alerts-sec .well {
    padding: 10px;
  }
  .alerts-sec .well--inner {
    padding-top: 100px;
  }
  .alerts-sec-row-2 .flex-content__child {
    padding-right: 0px;
  }
}
@media (max-width: 568px) {
  .numi-alerts-logo {
    max-width: 320px;
    width: 100%;
    margin-bottom: 40px;
  }
  .alerts-tile .flex-content {
    display: block;
    text-align: center;
  }
  .alerts-tile .flex-content__child {
    width: 100%;
    margin-bottom: 30px;
  }
  .alerts-tile .flex-content__child:last-child {
    padding-right: 20px;
  }
  .alerts-sec .well {
    margin-top: 160px;
  }
  .alerts-sec .well--inner {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 120px;
  }
}
#ret-deliver {
  overflow: hidden;
}

#ia-list .flex-content {
  flex-wrap: wrap;
  margin-left: -40px;
  margin-right: -40px;
}

#ia-list .flex-content li {
  width: 33.33%;
  padding-right: 40px;
  padding-left: 40px;
  box-sizing: border-box;
}

#ia-list strong {
  display: block;
  margin-bottom: 14px;
}

@media (max-width: 768px) {
  #ia-list .flex-content {
    flex-wrap: wrap;
    flex-direction: row;
    margin-left: -20px;
    margin-right: -20px;
  }
  #ia-list .flex-content li {
    width: 50%;
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (max-width: 568px) {
  #ia-list .flex-content {
    display: block;
    text-align: center;
  }
  #ia-list .flex-content li {
    width: 100%;
    padding-right: 0px;
  }
  #ia-list .card--5 {
    padding-right: 20px;
  }
  #ia-list .card--5 img {
    margin-left: auto;
    margin-right: auto;
  }
  #ia-list .card--5 strong {
    margin-bottom: 20px;
    display: block;
  }
}
#ret-do {
  overflow: hidden;
}

#ret-do .flex-content {
  flex-wrap: wrap;
  margin-left: -40px;
  margin-right: -40px;
  justify-content: center;
}

#ret-do .flex-content .list {
  padding-left: 20px;
  padding-right: 20px;
  column-count: 2;
}

#ret-do .flex-content > li {
  padding-right: 40px;
  padding-left: 40px;
  box-sizing: border-box;
  margin-bottom: 60px;
}

#ret-do .well {
  padding: 40px;
  height: 100%;
  box-sizing: border-box;
}

#ret-do .flex-content__child:last-child {
  width: 100%;
}

@media (max-width: 1200px) {
  #ret-do .well-header img {
    width: 80px;
  }
}
@media (max-width: 1024px) {
  #ret-do .flex-content .list {
    padding-left: 0px;
    padding-right: 0px;
  }
  #ret-do .well-header img {
    width: 80px;
  }
}
@media (max-width: 768px) {
  #ret-do .flex-content .list {
    column-count: 1;
  }
  #ret-do .flex-content > li {
    text-align: left;
  }
}
/*** REQUIREMENTS ***/
#requirements .flex-content__child {
  flex: 0 0 33.33%;
  box-sizing: border-box;
}

#requirements .well {
  height: 100%;
  box-sizing: border-box;
}

#requirements .flex-content__child:last-child {
  padding-right: 0px;
}

#requirements .flex-content__child:last-child .well:first-child {
  height: auto;
  margin-bottom: 20px;
}

@media (max-width: 1023px) {
  #requirements .flex-content {
    display: flex;
    flex-wrap: wrap;
  }
  #requirements .flex-content__child {
    flex: 0 0 50%;
    margin-bottom: 30px;
  }
  #requirements .flex-content__child:nth-child(2) {
    padding-right: 0px;
  }
  #requirements .flex-content__child:last-child {
    flex: 0 0 100%;
    display: flex;
  }
  #requirements .flex-content__child:last-child .well {
    height: 100%;
    margin-bottom: 0px;
  }
  #requirements .flex-content__child:last-child .well:first-child {
    width: 40%;
    margin-right: 30px;
    margin-bottom: 0px;
  }
}
@media (max-width: 768px) {
  #requirements .flex-content__child {
    margin-bottom: 20px;
    width: 100% !important;
    padding-right: 0px;
  }
  #requirements .flex-content__child .well {
    margin-left: auto;
    margin-right: auto;
    max-width: 568px;
  }
  #requirements .flex-item p {
    text-align: left;
  }
  #requirements h6 {
    text-align: left;
  }
  #requirements .flex-content__child:last-child {
    display: block;
  }
  #requirements .flex-content__child:last-child .well {
    margin-bottom: 20px;
    margin-right: auto;
    margin-left: auto;
  }
  #requirements .flex-content__child:last-child .well:first-child {
    width: 100%;
    margin-right: auto;
    margin-bottom: 20px;
  }
}
#ret-boards {
  padding-top: 100px;
  padding-bottom: 100px;
}

#ia .cards {
  display: flex;
  margin-left: -40px;
  margin-right: -40px;
  box-sizing: border-box;
}

#ia .card--6 {
  width: 50%;
  box-sizing: border-box;
  margin-bottom: 40px;
  padding-right: 40px;
  padding-left: 40px;
}

#ia .card--6 button {
  margin-bottom: 20px;
  background: none;
  border: none;
}

#ia .card--6 img {
  width: auto;
  height: 150px;
}

#ia .card--6 button:hover {
  cursor: pointer;
}

#image-banner-2 {
  height: 400px;
  background: url("/assets/images/coin-banner-v2-2.jpg") no-repeat;
  background-size: 120% auto;
  background-position: center center;
}

@media (max-width: 1240px) {
  #su-retailers .card--4 {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  #su-retailers .amount {
    position: static;
    text-align: right;
    border-top: 1px solid rgba(22, 24, 28, 0.3);
    font-size: 4rem;
    margin-top: 10px;
  }
}
@media (max-width: 768px) {
  #su-retailers .well--gray {
    margin-top: 30px;
  }
}
/*** SETUP SECTION ***/
.setup .flavour-number {
  display: inline-block;
  margin-right: 15px;
}

.setup .card img {
  width: 60px;
  display: inline-block;
  margin-bottom: -2px;
}

@media (max-width: 768px) {
  .setup .cards-li--33 {
    margin-bottom: 30px;
  }
  .setup .card {
    padding-right: 0px;
  }
}
/*** TUTORIALS ***/
#tutorials .stub {
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  #tutorials .stubs {
    margin-left: -20px;
    margin-right: -20px;
  }
  #tutorials .stubs .stub {
    width: 50%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 568px) {
  #tutorials .stubs {
    display: block;
  }
  #tutorials .stubs .stub {
    width: 100%;
    margin-bottom: 30px;
  }
}
#manual {
  color: #fff;
}

#manual .flex-content {
  width: 100%;
}

#manual .flex-content__child:first-child {
  width: 60%;
  padding-right: 40px;
}

#manual .flex-content__child:last-child {
  width: 40%;
}

#manual .well {
  background: #828248;
  padding: 40px;
}

#manual a {
  margin-bottom: 20px;
  width: 100%;
  display: block;
}

@media (max-width: 768px) {
  #manual {
    padding-right: 20px;
  }
  #manual .flex-content {
    flex-direction: column;
  }
  #manual .flex-content__child:first-child {
    width: 100%;
    padding-right: 0px;
  }
  #manual .flex-content__child:last-child {
    width: 100%;
    padding-right: 0px;
  }
  #manual .flex-content__child:last-child .well {
    max-width: 568px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
  }
}