@charset "UTF-8";
/*
*/
@font-face {
  font-family: "EssentialSansRegular";
  src: url(../fonts/EssentialSans-Regular.woff);
}
@font-face {
  font-family: "EssentialSansMedium";
  src: url(../fonts/EssentialSans-Medium.woff);
}
@font-face {
  font-family: "EssentialSansBold";
  src: url(../fonts/EssentialSans-Bold.woff);
}
@font-face {
  font-family: "NeueSwissRegular";
  src: url(../fonts/NeueSwiss-Regular.woff);
}
@font-face {
  font-family: "NeueSwissMedium";
  src: url(../fonts/NeueSwiss-Medium.woff);
}
@font-face {
  font-family: "NeueSwissSemibold";
  src: url(../fonts/NeueSwiss-Semibold.woff);
}
/**
 * Use when you want to fade in an element with pure CSS. An example is a
 * navigation dropdown that fades in. Normally you'd do this:
 *
 * li {
 *   .dropdown {
 *     display: none;
 *   }
 *   &:hover .dropdown {
 *     display: block;
 *   }
 * }
 *
 * ... but if you toggle display like that, you can't do any CSS3
 * opacity fade ins.
 *
 * This mixin allows you to toggle visibility and fade-in at the same time.
 *
 * @include mix.faded-out(0.4s, ease-in-out);
 * @include mix.fade-in();
 * 
 * 
 * Usage:
 *
 * li {
 *   .dropdown {
 *     @include mix.faded-out(0.3s, ease-in-out);
 *   }
 *   &:hover .dropdown {
 *     @include mix.fade-in();
 *   }
 * }
 *
 * Or for the reverse:
 *
 * figure {
 *   .overlay {
 *     @include mix.faded-in(0.4s, ease-in-out);
 *   }
 *   &:hover .overlay {
 *     @include mix.fade-out();
 *   }
 * }
 *
 * You must use both mixins in tandem.
 *
 * @param $duration  length, in seconds, of the opacity transition
 * @param $easing    the easing to use
 * @param delay      the delay, in seconds
 */
a {
  text-decoration: none;
  color: #1B94D2;
  font-weight: 700;
  cursor: pointer;
}
a:hover {
  color: #1B1919;
}
a img {
  border: none;
  outline: none;
}

figure {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong,
b {
  font-weight: 400;
}

@media screen and (max-width: 1000px) {
  .site-content .tablet-hide {
    display: none;
  }
}
.site-content .tablet-show {
  display: none;
}
@media screen and (max-width: 1000px) {
  .site-content .tablet-show {
    display: block;
  }
}

a,
button {
  transition-duration: 0.3s;
  transition-property: color, border, background-color, opacity;
}

abbr {
  text-decoration: none;
  border: none;
}

a svg .st0,
a svg .st1,
a svg .st2 {
  transition-duration: 0.3s;
}

.screen-reader {
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  overflow: hidden;
}

/*
body #wpadminbar {
  @include mix.bp(vars.$mobile) {
    position: fixed;
  }

  .admin-bar {
    padding-top: 32px;
  }
}
*/
.grecaptcha-badge {
  display: none !important;
}

/*
Sometimes the video falls outside the wysiwyg so I have it here. Could technically be in its own file but...
*/
#video-container,
.video-container {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  margin: 0;
  padding-bottom: calc(var(--aspect-ratio, 0.5625) * 100%);
}
#video-container video,
#video-container iframe,
.video-container video,
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.reveal {
  opacity: 0;
  transition-duration: 0.85s;
  transition-property: opacity;
  transition-timing-function: ease;
  transition-delay: 0.45s;
}
.reveal.page-headline, .reveal.come-in {
  opacity: 1;
}

.reveal-inner-up {
  transform: translateY(100%);
  transition-duration: 0.85s;
  display: block;
}
.come-in .reveal-inner-up {
  transform: translateY(0);
}

/*
.wp-block-image.size-large img, 
.reveal-img {
	opacity: 0;
	transform: scale(1.1) translateY(40px);
	transform-origin: 50% 0;
	transition-duration: 0.85s;
  transition-property: all;
  transition-timing-function: ease;
  transition-delay: 0.45s;

  &.come-in {
    opacity: 1;
		transform: scale(1) translateY(0);
  }
}
*/
.reveal-group .reveal {
  transition-duration: 0.85s;
  transition-property: all;
  transition-timing-function: ease;
  transition-delay: 0.45s;
  opacity: 0;
  transform: translateY(45px);
}
.reveal-group .reveal.come-in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-group .reveal:nth-of-type(1) {
  transition-delay: 0.1s; /* So they look staggered */
}
.reveal-group .reveal:nth-of-type(2) {
  transition-delay: 0.2s; /* So they look staggered */
}
.reveal-group .reveal:nth-of-type(3) {
  transition-delay: 0.3s; /* So they look staggered */
}
.reveal-group .reveal:nth-of-type(4) {
  transition-delay: 0.4s; /* So they look staggered */
}
.reveal-group .reveal:nth-of-type(5) {
  transition-delay: 0.5s; /* So they look staggered */
}
.reveal-group .reveal:nth-of-type(6) {
  transition-delay: 0.6s; /* So they look staggered */
}
.reveal-group .reveal:nth-of-type(7) {
  transition-delay: 0.7s; /* So they look staggered */
}
.reveal-group .reveal:nth-of-type(8) {
  transition-delay: 0.8s; /* So they look staggered */
}
.reveal-group .reveal:nth-of-type(9) {
  transition-delay: 0.9s; /* So they look staggered */
}
.reveal-group .reveal:nth-of-type(10) {
  transition-delay: 1s; /* So they look staggered */
}

.reveal-delay {
  transition-delay: 0.25s;
}

.reveal-delay--long {
  transition-delay: 0.4s;
}

.reveal-delay--longer {
  transition-delay: 1s;
}

.reveal--from-left {
  transform: translateX(-20px);
  transition: 0.8s;
}
.reveal--from-left.come-in {
  transform: translateX(0);
}

.reveal-down {
  transition-duration: 0.85s;
  transition-property: all;
  transition-timing-function: ease;
  transition-delay: 0.45s;
  opacity: 0;
  transform: translateY(-45px);
}
.reveal-down.come-in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-up {
  transition-duration: 0.85s;
  transition-property: all;
  transition-timing-function: ease;
  transition-delay: 0.45s;
  opacity: 0;
  transform: translateY(45px);
}
.reveal-up.come-in {
  opacity: 1;
  transform: translateY(0);
}

::-moz-selection {
  background: #61CBE9;
  color: #fff;
}

::selection {
  background: #61CBE9;
  color: #fff;
}

* {
  margin: 0px;
  padding: 0px;
}

@media print {
  a,
  h1,
  h2,
  h3,
  h4,
  h5,
  p {
    color: #000 !important;
  }
}
header,
section,
article,
hgroup,
aside,
footer {
  display: block;
}

html {
  -webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape while allowing user zoom */
  font-size: 20px;
  line-height: 1.5em;
  height: 100%;
}
@media print {
  html {
    font-size: 16px;
    padding: 0 30px;
  }
}

body {
  background: #ffffff;
  font-size: 20px;
  line-height: 1.5em;
  font-family: "NeueSwissSemibold", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.lightbox-open, body.menu-open {
  overflow: hidden;
}
@media screen and (max-width: 870px) {
  body {
    font-size: 18px;
  }
}
@media print {
  body {
    font-size: 16px;
  }
}

.site-svgs {
  display: none;
}

.site-wrap {
  width: 90%;
  max-width: 1360px;
  margin: 0 auto;
  position: relative;
}
.site-wrap.hidden {
  overflow: hidden;
}
@media print {
  .site-wrap {
    max-width: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 870px) {
  .site-wrap {
    width: 80%;
  }
}

.site-wrap__inner {
  width: 84vw;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.site-wrap__inner.block__page-callouts--grid {
  max-width: 960px;
}

.site-wrap__wide,
.site-wrap--wide {
  width: 90vw;
  max-width: 1480px;
  margin: 0 auto;
}
@media screen and (max-width: 870px) {
  .site-wrap__wide,
  .site-wrap--wide {
    width: calc(100vw - 20px);
  }
}

.site-content {
  padding: 0;
  overflow: hidden;
  width: 100vw;
  left: 0;
  position: relative;
}
.page-template-page-contact .site-content {
  background: #61CBE9 url(../images/background-pattern.svg);
  background-size: 520px auto;
}
.post-type-archive-product .site-content, .single-product .site-content {
  background: #ECECEC;
}
@media print {
  .site-content {
    padding: 0;
  }
}

@media screen and (max-width: 1000px) {
  .mobile-hide {
    display: none;
  }
}
.site {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; /* OLD - iOS 6-, Safari 3.1-6, BB7 */ /* TWEENER - IE 10 */ /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  -ms-flexbox-direction: column;
  flex-direction: column;
  height: 100%; /* 1, 3 */
  width: 100vw;
  left: 0;
  overflow-x: hidden;
  background-image: linear-gradient(#ffffff 0%, #f9f7f4 200px);
}
@media screen and (max-width: 870px) {
  .site {
    position: relative;
    transition-duration: 0.3s;
    transition-property: left;
  }
  .site.menu-open {
    left: -298px;
  }
}
@media print {
  .site {
    padding: 0;
    box-sizing: border-box;
    display: block;
    overflow: visible;
  }
}

.site-header,
.site-footer {
  flex: none;
}

.site-content {
  flex: 1 0 auto;
  width: 100%;
  position: relative;
  left: 0;
}
@media print {
  .site-content {
    width: 100%;
    display: block;
    overflow: visible;
  }
}

.site-content::after {
  content: " "; /* &nbsp; */
  display: block;
  margin-top: var(--space);
  overflow: hidden;
  height: 0px;
  visibility: hidden;
}

@keyframes backgroundlines {
  0% {
    transform: translateX(-10%) translateY(-20%);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateX(-30%) translateY(-40%) rotate(-45deg);
    opacity: 0;
  }
}
@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes scroll-right {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes scrollleftone {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes scrolllefttwo {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes scrollleftthree {
  0% {
    transform: translateX(200%);
  }
  100% {
    transform: translateX(0%);
  }
}
button {
  outline: none;
  border: none;
  padding: 0;
  background: transparent none;
  cursor: pointer;
}

button,
a {
  cursor: pointer;
}

.button__pill {
  font-size: 14px;
  line-height: 1.1em;
  font-weight: 400;
  background: #570B12;
  color: #ffffff;
  border-radius: 33px;
  padding: 15px 20px;
  display: inline-block;
  font-family: "EssentialSansBold", sans-serif;
  transition-duration: 0.3s;
}
.button__pill:hover {
  background: #E7DDD4;
  color: #570B12;
}

button {
  outline: none;
  border: none;
  display: inline-block;
  box-sizing: border-box;
}

input[type=text],
input[type=email],
input[type=password],
input[type=color],
input[type=number],
input[type=search],
input[type=datetime],
input[type=url],
input[type=tel],
button[type=submit],
input[type=submit],
button {
  -webkit-appearance: none;
  border-radius: 0;
}

.form__search-nutrition {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  box-sizing: border-box;
  padding: 0 33px;
}
.form__search-nutrition label {
  font-family: "EssentialSansRegular", sans-serif;
  font-weight: 700;
  font-size: 20px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0 0 8px;
}
.form__search-nutrition input[type=text] {
  box-sizing: border-box;
  border-radius: 7px 0px 0px 7px;
  background: #EFEFEF;
  border: none;
  outline: none;
  font-family: "NeueSwissSemibold", sans-serif;
  font-size: 16px;
  line-height: 1.2em;
  padding: 11px 9px;
  width: 100%;
}

.form__search-nutrition--submit {
  visibility: hidden;
  position: absolute;
  left: 100%;
}

.form-submit {
  font-family: "NeueSwissSemibold", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 95%; /* 13.3px */
  letter-spacing: 0.39px;
  height: auto;
  padding: 14px 15px;
}

.form__search button[type=submit],
.form__search input[type=submit] {
  margin: 16px auto 0;
}

label {
  padding-left: 20px;
  color: #1B1919;
  font-weight: 400;
}

.form-field {
  border: none;
  outline: none;
  box-sizing: border-box;
  width: 100%;
  font-family: "NeueSwissMedium", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 125% */
  letter-spacing: 0.15px;
  display: inline-block;
  margin: 0;
  -webkit-appearance: none;
  transition-duration: 0.3s;
  font-weight: 400;
  background: #EFEFEF;
  border-radius: 7px;
  height: auto;
  padding: 11px 13px;
  color: #1B1919;
  box-shadow: none;
}

input[type=search]:focus,
input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=color]:focus,
input[type=number]:focus,
input[type=datetime]:focus,
input[type=url]:focus,
input[type=tel]:focus,
select:focus,
textarea:focus {
  box-shadow: none;
  outline: none;
}
@media screen and (max-width: 1000px) {
  input[type=search],
  input[type=text],
  input[type=email],
  input[type=password],
  input[type=color],
  input[type=number],
  input[type=datetime],
  input[type=url],
  input[type=tel],
  select,
  textarea {
    max-width: 100%;
    display: block;
  }
}

textarea {
  height: 132px;
}

::-moz-placeholder {
  color: #1b1919;
  box-shadow: none;
  outline: none;
}

::placeholder {
  color: #1b1919;
  box-shadow: none;
  outline: none;
}

select {
  width: 100%;
  max-width: 100%;
  cursor: pointer;
}

.form__select--wrap {
  display: block;
  position: relative;
}

textarea {
  display: block;
  resize: none;
  overflow: hidden;
  height: 10.7142857143rem;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

.klaviyo-form div {
  padding: 0 !important;
}
.klaviyo-form input[type=text],
.klaviyo-form input[type=email],
.klaviyo-form input[type=phone] {
  border: 1px solid #787E88 !important;
  font-family: "EssentialSansRegular", sans-serif !important;
  letter-spacing: 0 !important;
  color: #787E88 !important;
  margin: 5px 0 !important;
}
.klaviyo-form input[type=text]:hover,
.klaviyo-form input[type=email]:hover,
.klaviyo-form input[type=phone]:hover {
  border-color: #787E88 !important;
}
.klaviyo-form input[type=checkbox] + label {
  margin-top: 20px;
}
.klaviyo-form input[type=checkbox] + label svg {
  stroke: #787E88 !important;
}
.klaviyo-form input[type=checkbox] + label div {
  font-size: 15px !important;
  letter-spacing: 0 !important;
  font-family: "EssentialSansMedium", sans-serif !important;
}
.klaviyo-form input[type=submit],
.klaviyo-form button[type=submit],
.klaviyo-form button[type=button] {
  padding: 17px 30px !important;
  font-size: 14px !important;
  font-family: "EssentialSansBold", sans-serif !important;
  line-height: 1em !important;
  height: auto !important;
  transition-duration: 0.3s !important;
  transition-property: all !important;
  font-weight: 400 !important;
  margin-top: 40px;
}
.klaviyo-form input[type=submit]:hover,
.klaviyo-form button[type=submit]:hover,
.klaviyo-form button[type=button]:hover {
  background: #E7DDD4 !important;
  color: #570B12 !important;
}
@media screen and (max-width: 870px) {
  .klaviyo-form input[type=submit],
  .klaviyo-form button[type=submit],
  .klaviyo-form button[type=button] {
    margin-top: 20px;
  }
}

.newsletter-signup__intro {
  max-width: 375px;
}

.newsletter-signup {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.69em;
}
.newsletter-signup h3 {
  font-family: "EssentialSansRegular", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3em;
  margin-bottom: 5px;
}
.newsletter-signup .gform_body {
  flex: 1;
}
.newsletter-signup .gfield_label {
  position: absolute;
  top: -200vh;
  left: -200vw;
  width: 0;
  height: 0;
  overflow: hidden;
}
.newsletter-signup .gform_wrapper form {
  display: flex;
  align-items: flex-end;
  gap: 5px;
}
.newsletter-signup .gform_wrapper form input[type=email],
.newsletter-signup .gform_wrapper form input[type=text] {
  border-radius: 7px 0 0 7px;
  min-height: 42px;
  margin: 0;
  font-size: 13px;
  background: #EFEFEF;
  border: none;
  box-shadow: none;
}
@media screen and (max-width: 870px) {
  .newsletter-signup {
    text-align: center;
    align-items: center;
  }
  .newsletter-signup h3 {
    font-size: 18px;
  }
}

.newsletter-signup__footnote {
  align-self: flex-end;
  width: 100%;
  margin: auto 0 0;
}
@media screen and (max-width: 870px) {
  .newsletter-signup__footnote {
    font-size: 11px;
    margin: 20px auto 0;
    line-height: 1.4em;
    width: 182px;
  }
}

.newsletter-signup__buttons {
  margin-top: 20px;
  margin-bottom: 14px;
}

.page-hero {
  position: relative;
  background: transparent url(../images/image-dog-beach.jpg) no-repeat 100% 100%;
  background-size: cover;
  padding: 95px 0 487px;
}
@media screen and (max-width: 870px) {
  .page-hero {
    padding-top: 0px;
    padding-bottom: 284px;
    background-size: auto 500px;
  }
}

.page-hero__text {
  width: 100%;
  max-width: 780px;
}

.page-columns__wrapper {
  position: relative;
  background: linear-gradient(180deg, #FFF 0%, #E7DDD4 100%);
}
.page-columns__wrapper .site-wrap {
  padding: 124px 0 412px;
  position: relative;
}
.page-columns__wrapper .site-wrap:after {
  content: "";
  display: block;
  width: 356px;
  height: 337px;
  position: absolute;
  bottom: 0;
  background: url(../images/logo-mark.svg) no-repeat 100% 100%;
  background-size: contain;
}
@media screen and (max-width: 870px) {
  .page-columns__wrapper .site-wrap {
    padding: 47px 0 167px;
  }
  .page-columns__wrapper .site-wrap:after {
    width: 149px;
    height: 141px;
    left: 50%;
    transform: translateX(-50%);
  }
}

.page-columns {
  display: flex;
  gap: 8%;
  color: #393D43;
}
@media screen and (max-width: 870px) {
  .page-columns {
    flex-wrap: wrap;
    row-gap: 45px;
  }
}

.page-column {
  width: 44%;
}
.page-column:first-child {
  width: 48%;
}
.page-column.callout {
  background: #ffffff;
  border-radius: 25px;
  overflow: hidden;
  box-sizing: border-box;
  padding: 83px 32px;
  font-size: 15px;
}
@media screen and (max-width: 870px) {
  .page-column {
    width: 100%;
  }
  .page-column:first-child {
    width: 100%;
  }
  .page-column.callout {
    padding: 36px 32px;
  }
}

.page-column__inner {
  max-width: 404px;
  margin: 0 auto;
  color: #570B12;
}

@media screen and (max-width: 870px) {
  .page-hero__title {
    position: relative;
    z-index: 0;
    padding-bottom: 12px;
  }
  .page-hero__title:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    background-image: linear-gradient(#f9f7f4 0px, #f9f7f4 200px);
    z-index: -1;
  }
}

.site-footer {
  background: #595E60;
  padding: 68px 0;
  color: #ffffff;
  font-size: 25px;
  line-height: 1.2em;
  font-family: "NeueSwissRegular", sans-serif;
}
@media screen and (max-width: 870px) {
  .site-footer {
    padding: 40px 0;
  }
}

.site-footer__columns {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}
.site-footer__columns a {
  color: #ffffff;
  font-weight: 400;
}
.site-footer__columns a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 870px) {
  .site-footer__columns {
    justify-self: center;
    text-align: center;
    flex-direction: column;
    gap: 35px;
  }
}

.site-footer__logo {
  width: 342px;
  height: 97px;
  display: block;
}
.site-footer__logo img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 870px) {
  .site-footer__logo {
    width: 250px;
  }
}

.site-header__logo {
  width: 249px;
  height: 118px;
  display: block;
  margin-top: 114px;
  margin-bottom: 61px;
}
.site-header__logo img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 870px) {
  .site-header__logo {
    width: 125px;
    height: 57px;
    margin-top: 62px;
    margin-bottom: 40px;
  }
}

.social-media__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  gap: 6px;
}
.site-footer .social-media__list {
  margin-top: 68px;
  margin-bottom: 21px;
}
.social-media__list li {
  margin: 0;
  padding: 0;
  display: block;
}
.social-media__list li:first-child {
  margin-left: 0;
}
.social-media__list li button,
.social-media__list li a {
  display: inline-block;
  vertical-align: middle;
  width: 37px;
  height: 37px;
  position: relative;
  overflow: hidden;
  transition-duration: 0.3s;
}
.social-media__list li button img,
.social-media__list li a img {
  display: block;
  transition-duration: 0.3s;
}
.social-media__list li button svg,
.social-media__list li a svg {
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  transition-duration: 0.3s;
}
.social-media__list li button svg path,
.social-media__list li a svg path {
  transition-duration: 0.3s;
}
.social-media__list li button svg path.black,
.social-media__list li a svg path.black {
  fill: #1B1919;
}
.social-media__list li button:hover svg path.black,
.social-media__list li a:hover svg path.black {
  fill: #61CBE9;
}
.social-media__list.page-header__meta--share {
  opacity: 0.7;
}
.social-media__list.page-header__meta--share li svg path:not(.black) {
  fill: #ffffff;
}
.posts-feed .social-media__list li button,
.posts-feed .social-media__list li a {
  width: 32px;
  height: 32px;
}
.posts-feed .social-media__list li svg path.black {
  fill: #a5a5a5;
}
.posts-feed .social-media__list li svg path:not(.black) {
  fill: #ffffff;
}
@media screen and (max-width: 870px) {
  .site-footer .social-media__list {
    margin-top: 38px;
    margin-bottom: 0px;
  }
}
@media print {
  .social-media__list {
    display: none;
  }
}

.wysiwyg h1:not(.ignore-style),
.type__heading--one {
  font-family: "EssentialSansRegular", sans-serif;
  font-size: 72px;
  line-height: 1.04167em;
  font-weight: 700;
}
@media screen and (max-width: 1000px) {
  .wysiwyg h1:not(.ignore-style),
  .type__heading--one {
    font-size: 48px;
  }
}
@media screen and (max-width: 870px) {
  .wysiwyg h1:not(.ignore-style),
  .type__heading--one {
    font-size: 28px;
    line-height: 1.3em;
  }
}

.wysiwyg h2:not(.ignore-style),
.type__heading--two {
  font-family: "EssentialSansRegular", sans-serif;
  font-size: 50px;
  line-height: 1.2em;
  font-weight: 400;
}
.wysiwyg h2:not(.ignore-style) strong,
.type__heading--two strong {
  font-family: "EssentialSansBold", sans-serif;
  font-weight: 400;
}
@media screen and (max-width: 870px) {
  .wysiwyg h2:not(.ignore-style),
  .type__heading--two {
    font-size: 33px;
  }
}

.wysiwyg h3:not(.ignore-style),
.type__heading--three {
  font-family: "EssentialSansRegular", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2em;
}
.wysiwyg h3:not(.ignore-style) strong,
.type__heading--three strong {
  font-family: "EssentialSansBold", sans-serif;
  font-weight: 400;
}
@media screen and (max-width: 870px) {
  .wysiwyg h3:not(.ignore-style),
  .type__heading--three {
    font-size: 28px;
  }
}

.wysiwyg h4:not(.ignore-style),
.type__heading--four {
  font-family: "EssentialSansRegular", sans-serif;
  font-size: 34px;
  line-height: 1.3em;
  font-weight: 400;
}
.wysiwyg h4:not(.ignore-style) strong,
.type__heading--four strong {
  font-family: "EssentialSansBold", sans-serif;
  font-weight: 400;
}
@media screen and (max-width: 870px) {
  .wysiwyg h4:not(.ignore-style),
  .type__heading--four {
    font-size: 20px;
  }
}

.wysiwyg h5:not(.ignore-style),
.type__heading--five {
  font-family: "EssentialSansRegular", sans-serif;
  font-size: 20px;
  line-height: 1.1em;
  font-weight: 700;
}
@media screen and (max-width: 870px) {
  .wysiwyg h5:not(.ignore-style),
  .type__heading--five {
    font-size: 18px;
  }
}

.wysiwyg h6:not(.ignore-style),
.type__heading--six {
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  line-height: 0.95em;
  letter-spacing: 1.21px;
  font-family: "EssentialSansRegular", sans-serif;
  text-transform: uppercase;
}

.wysiwyg {
  font-family: "NeueSwissMedium", sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.375em;
  font-style: normal;
  font-weight: 400;
}
.wysiwyg a:not(.ignore-style):not(.wp-block-button__link) {
  color: #1B94D2;
  font-weight: 700;
  text-decoration: underline;
}
.wysiwyg a:not(.ignore-style):not(.wp-block-button__link):hover {
  color: #F7975D;
}
.wysiwyg h1:not(.ignore-style) {
  color: #F7975D;
}
.wysiwyg h2:not(.ignore-style),
.wysiwyg h3:not(.ignore-style),
.wysiwyg h4:not(.ignore-style),
.wysiwyg h5:not(.ignore-style),
.wysiwyg h6:not(.ignore-style) {
  margin-top: 30px;
  margin-bottom: 30px;
}
.wysiwyg h1:not(.ignore-style):first-child,
.wysiwyg h2:not(.ignore-style):first-child,
.wysiwyg h3:not(.ignore-style):first-child,
.wysiwyg h4:not(.ignore-style):first-child,
.wysiwyg h5:not(.ignore-style):first-child,
.wysiwyg h6:not(.ignore-style):first-child {
  margin-top: 0;
}
.wysiwyg h1:not(.ignore-style) + p,
.wysiwyg h2:not(.ignore-style) + p,
.wysiwyg h3:not(.ignore-style) + p,
.wysiwyg h4:not(.ignore-style) + p,
.wysiwyg h5:not(.ignore-style) + p,
.wysiwyg h6:not(.ignore-style) + p {
  margin-top: 4px;
}
.wysiwyg strong,
.wysiwyg b {
  font-weight: 400;
  font-family: "NeueSwissSemibold", sans-serif;
}
.wysiwyg .wp-block-embed {
  margin: 2em 0;
}
.wysiwyg img:not(.ignore-style) {
  width: 100%;
  height: auto;
  display: block;
}
.wysiwyg p:empty {
  display: none;
}
.wysiwyg > p:first-child,
.wysiwyg > .type__heading-one:first-child,
.wysiwyg > h2:first-child,
.wysiwyg > h3:first-child,
.wysiwyg > .type__heading-two:first-child,
.wysiwyg > .type__heading-three:first-child,
.wysiwyg > .type__heading-four:first-child {
  margin-top: 0;
}
.wysiwyg p:last-child {
  margin-bottom: 0;
}
.wysiwyg sup {
  display: inline-block;
  vertical-align: top;
  font-size: 0.65em;
  width: 0.7142857143rem;
  height: 0.7142857143rem;
  line-height: 1em;
}
.wysiwyg hr {
  background-color: #61CBE9;
  border: 0;
  height: 3px;
  margin: 40px 0;
  width: 100%;
  display: block;
}
.wysiwyg p {
  margin: 1.125em 0;
}
.wysiwyg img:not(.ignore-style) {
  max-width: 100%;
  height: auto;
}
.wysiwyg ol:not(.ignore-style):not(.flickity-page-dots),
.wysiwyg ul:not(.ignore-style):not(.page-numbers):not(.tribe-events-c-subscribe-dropdown__list) {
  margin: 30px 0;
  padding: 0 0 0 19px;
  list-style: none;
  font-weight: 400;
  font-family: "EssentialSansMedium", sans-serif;
}
.wysiwyg ol:not(.ignore-style):not(.flickity-page-dots) li,
.wysiwyg ul:not(.ignore-style):not(.page-numbers):not(.tribe-events-c-subscribe-dropdown__list) li {
  margin: 0px 0 10px;
  padding: 0 0 0 24px;
  position: relative;
  overflow: hidden;
}
.wysiwyg ol:not(.ignore-style):not(.flickity-page-dots) ol,
.wysiwyg ol:not(.ignore-style):not(.flickity-page-dots) ul,
.wysiwyg ul:not(.ignore-style):not(.page-numbers):not(.tribe-events-c-subscribe-dropdown__list) ol,
.wysiwyg ul:not(.ignore-style):not(.page-numbers):not(.tribe-events-c-subscribe-dropdown__list) ul {
  margin: 0;
}
.wysiwyg .block__togglee ul {
  margin-top: 0;
}
.wysiwyg ul:not(.ignore-style):not(.page-numbers):not(.tribe-events-c-subscribe-dropdown__list) {
  padding: 0;
  font-size: 1em;
}
.wysiwyg ul:not(.ignore-style):not(.page-numbers):not(.tribe-events-c-subscribe-dropdown__list) li {
  padding-left: 32px;
  margin-left: 0;
}
.wysiwyg ul:not(.ignore-style):not(.page-numbers):not(.tribe-events-c-subscribe-dropdown__list) li:before {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: url(../images/icon-checkmark.png) no-repeat 0% 0%;
  background-size: contain;
  transition-duration: 0.3s;
}
.wysiwyg ul:not(.ignore-style):not(.page-numbers):not(.tribe-events-c-subscribe-dropdown__list) li li:before {
  background: #61CBE9;
}
.wysiwyg ol:not(.ignore-style):not(.flickity-page-dots) {
  counter-reset: li;
  padding-left: 16px;
}
.wysiwyg ol:not(.ignore-style):not(.flickity-page-dots) li {
  counter-increment: li;
  padding-left: 38px;
}
.wysiwyg ol:not(.ignore-style):not(.flickity-page-dots) li:before {
  content: counter(li) ".";
  position: absolute;
  top: 0px;
  left: 0;
  font-family: "NeueSwissMedium", sans-serif;
  font-weight: 400;
  font-size: 1em;
  text-align: right;
  width: 30px;
  color: #61CBE9;
}
.wysiwyg .alignnone {
  display: block;
  margin: 3.1875em 0;
}
.wysiwyg .alignnone.wp-caption {
  margin-bottom: 0px;
}
.wysiwyg .alignleft {
  float: left;
  width: auto !important;
  margin: 0 40px 20px 0;
}
.wysiwyg .alignright {
  float: right;
  width: auto !important;
  margin: 0 0 20px 40px;
}
.wysiwyg .alignleft,
.wysiwyg .alignright {
  clear: both;
}
.wysiwyg .alignleft img:not(.ignore-style),
.wysiwyg .alignright img:not(.ignore-style) {
  max-width: 300px;
  margin: 0;
  height: auto;
  display: block;
}
.wysiwyg img:not(.ignore-style).alignleft,
.wysiwyg img:not(.ignore-style).alignright {
  max-width: 300px;
  width: auto;
  height: auto;
  display: block;
}
.wysiwyg .aligncenter {
  margin: 0.5rem auto 1rem;
}
.wysiwyg .aligncenter img:not(.ignore-style) {
  margin: auto;
}
.wysiwyg figure:not(.ignore-style) {
  position: relative;
}
.wysiwyg table {
  border-collapse: collapse;
  margin: 1em 0 1.75em 0;
  width: 100%;
  position: relative;
}
.wysiwyg table table {
  border: none;
}
.wysiwyg table tr:nth-of-type(even) {
  background: #1B1919;
}
.wysiwyg table .alignnone,
.wysiwyg table .alignleft,
.wysiwyg table .alignright,
.wysiwyg table .aligncenter {
  margin-top: 0;
  margin-bottom: 0;
}
.wysiwyg table thead {
  background: #1B1919;
  text-transform: uppercase;
}
.wysiwyg table thead td,
.wysiwyg table thead th {
  padding: 0.5rem 0.65rem;
  box-sizing: border-box;
  font-family: "EssentialSansRegular", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2em;
  text-transform: uppercase;
  color: #61CBE9;
  text-align: left;
}
.wysiwyg table td {
  padding: 0.5rem 0.65rem;
  box-sizing: border-box;
  vertical-align: top;
  position: relative;
}
.wysiwyg table ul {
  margin: 0;
}
.wysiwyg table ul li {
  margin: 0;
}
.wysiwyg .wp-block-image {
  margin: 0;
  box-sizing: border-box;
}
.wysiwyg .wp-block-image img:not(.ignore-style) {
  box-sizing: border-box;
}
.wysiwyg .wp-block-image figcaption,
.wysiwyg .wp-caption-text {
  font-family: "NeueSwissSemibold", sans-serif;
  padding: 14px 8% 0;
  color: #666;
  margin: 0;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.69em;
  text-align: center;
}
.wysiwyg .size-full {
  width: 100vw;
  max-width: 930px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin: 65px auto 70px;
}
.wysiwyg.wysiwyg__footer-cta p {
  margin: 16px 0 0;
}
@media screen and (max-width: 870px) {
  .wysiwyg {
    font-size: 20px;
  }
  .wysiwyg.page-column {
    font-size: 15px;
    line-height: 1.5em;
    font-family: "NeueSwissMedium", sans-serif;
  }
  .wysiwyg h2:not(.ignore-style),
  .wysiwyg h3:not(.ignore-style),
  .wysiwyg h4:not(.ignore-style),
  .wysiwyg h5:not(.ignore-style),
  .wysiwyg h6:not(.ignore-style) {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .wysiwyg .alignleft,
  .wysiwyg .alignright {
    float: none;
    margin-left: auto;
    margin-right: auto;
  }
  .wysiwyg .wp-block-image img:not(.ignore-style) {
    padding-right: 20px;
    padding-bottom: 20px;
  }
  .wysiwyg .wp-block-image .wp-element-caption {
    text-align: center;
  }
  .wysiwyg .alignnone,
  .wysiwyg .alignleft,
  .wysiwyg .alignright,
  .wysiwyg .aligncenter {
    max-width: 100%;
    width: 100%;
  }
  .wysiwyg .alignnone img:not(.ignore-style),
  .wysiwyg .alignleft img:not(.ignore-style),
  .wysiwyg .alignright img:not(.ignore-style),
  .wysiwyg .aligncenter img:not(.ignore-style) {
    width: 100% !important;
  }
  .wysiwyg .alignnone.wp-caption,
  .wysiwyg .alignleft.wp-caption,
  .wysiwyg .alignright.wp-caption,
  .wysiwyg .aligncenter.wp-caption {
    margin-bottom: 32px;
  }
  .wysiwyg .alignnone {
    margin-top: 0;
  }
  .wysiwyg .size-full {
    width: 100%;
  }
  .wysiwyg .type__heading-four {
    margin-top: 32px;
    margin-bottom: 16px;
  }
  .wysiwyg .type__heading-four + p {
    margin-top: 0;
  }
  .wysiwyg hr {
    margin-top: 32px;
    margin-bottom: 32px;
  }
  .wysiwyg .alignnone.wp-caption + p {
    margin-top: 0;
  }
}