.w-layout-grid {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  grid-row-gap: 16px;
  grid-column-gap: 16px;
}

body {
  font-family: 'Londrina Solid', sans-serif;
  color: #1a1a1a;
  font-size: 16px;
  line-height: 1.5;
}

h1 {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 72px;
  line-height: 0.93;
  font-weight: 400;
}

h2 {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 24px;
  line-height: 1.18;
  font-weight: 400;
}

h3 {
  margin-top: 0px;
  margin-bottom: 0px;
  color: #000;
  font-size: 32px;
  line-height: 1.5;
  font-weight: 400;
}

h4 {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 1.82vw;
  line-height: 1.5;
  font-weight: 400;
}

h5 {
  margin-top: 0px;
  margin-bottom: 0px;
  color: #fff;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 400;
}

h6 {
  margin-top: 0px;
  margin-bottom: 0px;
  color: #000;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 400;
}

p {
  font-family: Karma, sans-serif;
  font-size: 18px;
}

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

ul {
  margin-top: 0px;
  margin-bottom: 0px;
  padding-left: 20px;
}

blockquote {
  margin-bottom: 10px;
  padding: 10px 20px;
  border-left: 5px solid #e2e2e2;
  font-size: 18px;
  line-height: 22px;
}

.fs-styleguide-sidebar-links {
  position: fixed;
  left: 20px;
  top: 20px;
  right: auto;
  bottom: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: auto;
  width: 250px;
  padding: 0px 0px 12px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 12px;
  background-color: #1a1a1a;
  color: #dadada;
  text-align: left;
}

.fs-styleguide-logo {
  display: block;
  height: 60px;
  margin-bottom: 10px;
}

.margin-bottom-small {
  margin-bottom: 16px;
}

.margin-bottom-large {
  margin-bottom: 64px;
}

.margin-bottom-medium {
  margin-bottom: 32px;
}

.margin-bottom-xlarge {
  margin-bottom: 128px;
}

.fs-styleguide-title-line {
  position: relative;
  display: -ms-grid;
  display: grid;
  margin-top: 72px;
  margin-bottom: 40px;
  padding-top: 64px;
  grid-auto-columns: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.styles {
  position: fixed;
  left: 0%;
  top: 0%;
  right: auto;
  bottom: auto;
  display: block;
}

.grid-1-col {
  display: -ms-grid;
  display: grid;
  -webkit-align-content: start;
  -ms-flex-line-pack: start;
  align-content: start;
  grid-auto-columns: 100%;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  -ms-grid-columns: 100%;
  grid-template-columns: 100%;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.grid-1-col.gap-large {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
}

.grid-1-col.gap-small {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
}

.grid-1-col.gap-medium {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
}

.grid-1-col.gap-xlarge {
  grid-row-gap: 128px;
}

.grid-row {
  display: -ms-grid;
  display: grid;
  justify-items: start;
  grid-auto-flow: column;
  grid-auto-columns: -webkit-max-content;
  grid-auto-columns: max-content;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.grid-row.gap-small {
  grid-column-gap: 8px;
}

.grid-row.gap-large {
  grid-column-gap: 48px;
}

.grid-row.gap-medium {
  grid-column-gap: 32px;
}

.grid-row.gap-xlarge {
  grid-column-gap: 64px;
}

.fs-styleguide-block-item {
  display: -ms-grid;
  display: grid;
  padding: 30px;
  -webkit-box-align: start;
  -webkit-align-items: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-align-content: start;
  -ms-flex-line-pack: start;
  align-content: start;
  grid-auto-columns: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  border-radius: 12px;
  background-color: rgba(168, 193, 216, 0.2);
  box-shadow: 0 3px 0 -4px rgba(0, 0, 0, 0.2);
  -webkit-transition: box-shadow 100ms ease, background-color 50ms ease;
  transition: box-shadow 100ms ease, background-color 50ms ease;
  text-decoration: none;
  cursor: pointer;
}

.fs-styleguide-block-item:hover {
  position: relative;
  background-color: #fff;
  box-shadow: 0 8px 20px -4px rgba(0, 0, 0, 0.2);
  color: #1402ff;
}

.fs-styleguide-block-item:active {
  position: relative;
  top: 3px;
}

.fs-styleguide-sidebar-item {
  width: 100%;
  padding: 8px 20px;
  font-weight: 600;
  text-decoration: none;
}

.fs-styleguide-sidebar-item:hover {
  background-color: hsla(0, 0%, 100%, 0.05);
  color: #fff;
}

.fs-styleguide-sidebar-item.w--current {
  background-color: hsla(0, 0%, 100%, 0.1);
  color: #fff;
  font-weight: 700;
}

.fs-styleguide-sidebar-item.first {
  padding-top: 35px;
  padding-bottom: 35px;
}

.spacing-clean {
  margin: 0px;
  padding: 0px;
}

.heading-xlarge {
  font-size: 64px;
  line-height: 1.125;
}

.heading-large {
  font-size: 48px;
  line-height: 1.2;
}

.heading-medium {
  font-size: 32px;
  line-height: 1.2;
}

.text-tiny {
  font-size: 12px;
}

.text-small {
  font-size: 14px;
}

.margin-left-small {
  margin-left: 8px;
}

.margin-left-large {
  margin-left: 32px;
}

.margin-left-medium {
  margin-left: 16px;
}

.margin-left-xlarge {
  margin-left: 64px;
}

.fs-styleguide-sidebar-folder {
  display: none;
  margin-left: 20px;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  border-left: 1px solid hsla(0, 0%, 100%, 0.1);
  font-size: 0.75rem;
}

.grid-2-col {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.grid-3-col {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.fs-styleguide-grey-visibility {
  padding: 24px;
  background-color: rgba(168, 192, 216, 0.2);
}

.grid-4-col {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.show-mobile {
  display: none;
}

.show-landscape {
  display: none;
}

.show-tablet {
  display: none;
}

.hide {
  display: none;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
}

.container.max-full {
  height: 100vh;
}

.container.max-full.background-layer-parallax {
  position: relative;
  background-image: url('../images/9781947644489.MAIN-1.jpg');
  background-position: 50% 70%;
}

.container.cart_contain {
  overflow: auto;
  padding-right: 32px;
  padding-left: 32px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.container.cart_subtotal-contain {
  width: auto;
  max-width: none;
  padding-bottom: 40px;
}

.container.background-layer-parallax {
  background-image: url('../images/9781947644489.MAIN-1.jpg');
  background-position: 50% 69%;
}

.container.background-layer-parallax_penguin {
  background-image: url('../images/PenguinSetsSail_FrontCover.png'), -webkit-gradient(linear, left top, left bottom, from(#fefdf0), to(#61919b));
  background-image: url('../images/PenguinSetsSail_FrontCover.png'), linear-gradient(180deg, #fefdf0, #61919b);
  background-position: 50% 69%, 0px 0px;
  background-size: cover, auto;
  background-attachment: fixed, scroll;
}

.container.cart-contain {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-right: 32px;
  padding-left: 32px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.container.cart_subtotal-contain {
  padding-right: 32px;
  padding-left: 32px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.container.audio {
  background-color: #d1d1d1;
}

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

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

.z-1 {
  position: relative;
  z-index: 1;
}

.max-large {
  width: 100%;
  max-width: 1280px;
}

.max-xlarge {
  width: 100%;
  max-width: 1440px;
}

.home-content {
  display: -ms-grid;
  display: grid;
  width: 100%;
  max-width: 500px;
  margin-right: auto;
  margin-left: auto;
  justify-items: start;
  grid-auto-columns: 1fr;
  grid-row-gap: 0px;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto auto auto auto;
  grid-template-rows: auto auto auto auto;
}

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

.margin-right-small {
  margin-right: 8px;
}

.margin-right-medium {
  margin-right: 16px;
}

.margin-right-large {
  margin-right: 32px;
}

.margin-right-xlarge {
  margin-right: 64px;
}

.button {
  position: relative;
  display: inline-block;
  padding: 12px 20px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 6px;
  background-color: #35539d;
  font-family: 'Londrina Solid', sans-serif;
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
}

.button.invert-colors {
  background-color: #fff;
  color: #1b1b1b;
}

.button.button_orange.margin-top-medium.image-button {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  font-size: 40px;
  line-height: 1.1;
}

.button.button_orange.margin-top-medium.image-button.wide {
  max-width: none;
  font-size: 30px;
}

.button-secondary {
  position: relative;
  display: inline-block;
  padding: 12px 20px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #0015ff;
  border-radius: 8px;
  background-color: transparent;
  color: #0015ff;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
}

.button-secondary.invert-colors {
  border-color: #fff;
  color: #fff;
}

.button-text {
  position: relative;
  display: inline-block;
  height: 40px;
  padding: 8px 0px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: transparent;
  color: #0015ff;
  text-decoration: none;
}

.button-text.invert-colors {
  color: #fff;
}

.form-block {
  margin-bottom: 0px;
}

.form-input {
  height: 40px;
  background-color: transparent;
}

.form-input.select {
  background-image: none;
}

.form-input.textarea {
  height: auto;
  min-height: 40px;
}

.margin-bottom-xsmall {
  margin-bottom: 8px;
}

.margin-right-xsmall {
  margin-right: 4px;
}

.margin-left-xsmall {
  margin-left: 4px;
}

.fs-styleguide-color-sample {
  padding: 120px 20px 20px;
  border-radius: 12px;
  background-color: #f5f5f5;
  cursor: pointer;
}

.fs-styleguide-color-sample:active {
  -webkit-transform: translate(0px, 1px);
  -ms-transform: translate(0px, 1px);
  transform: translate(0px, 1px);
}

.fs-styleguide-color-sample.white {
  background-color: #fff;
}

.fs-styleguide-color-sample.black {
  background-color: #000;
  color: #fff;
}

.fs-styleguide-color-sample.blue {
  background-color: #00f;
  color: #fff;
}

.fs-styleguide-color-sample.red {
  background-color: red;
  color: #fff;
}

.fs-styleguide-color-sample.grey {
  background-color: #ccc;
}

.fs-styleguide-download-wrap {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100px;
  height: 100px;
  margin-right: 20px;
  margin-bottom: 20px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid transparent;
}

.fs-styleguide-download-wrap:hover {
  border-color: #000;
}

.fs-styleguide-download {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 1;
  display: none;
  overflow: hidden;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: hsla(0, 0%, 100%, 0.93);
}

.fs-ico-download {
  width: 30px;
  height: 30px;
  padding: 5px;
}

.form-radio {
  margin-top: 6px;
}

.nav_container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 0px;
  padding-left: 0px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.fs-styleguide-nav {
  position: fixed;
  left: 12px;
  top: 12px;
  right: 12px;
  bottom: auto;
  padding: 8px 40px;
  border-radius: 20px;
  background-color: #1b1b1b;
  color: #f5f5f5;
}

.nav_link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 600;
  text-decoration: none;
}

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

.slider {
  height: auto;
}

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

.background-grey {
  background-color: rgba(168, 193, 216, 0.2);
}

.background-black {
  background-color: #000;
  color: #f5f5f5;
}

.padding-horizontal-large {
  padding-right: 64px;
  padding-left: 64px;
}

.padding-horizontal-medium {
  padding-right: 32px;
  padding-left: 32px;
}

.padding-horizontal-small {
  padding-right: 16px;
  padding-left: 16px;
}

.padding-vertical-small {
  padding-top: 16px;
  padding-bottom: 16px;
}

.padding-vertical-medium {
  padding-top: 32px;
  padding-bottom: 32px;
}

.padding-vertical-large {
  padding-top: 64px;
  padding-bottom: 64px;
}

.fs-intro-image {
  width: 100%;
}

.margin-top-medium {
  max-width: 100%;
  margin-top: 32px;
}

.margin-top-small {
  margin-top: 16px;
}

.margin-top-xsmall {
  margin-top: 8px;
}

.margin-top-large {
  margin-top: 64px;
}

.margin-top-xlarge {
  margin-top: 128px;
}

.card-layout {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: start;
  -webkit-align-items: start;
  -ms-flex-align: start;
  align-items: start;
  grid-auto-columns: 1fr;
  grid-column-gap: 5vw;
  grid-row-gap: 0px;
  -ms-grid-columns: 1fr minmax(200px, 1fr);
  grid-template-columns: 1fr minmax(200px, 1fr);
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.icon-small {
  height: 32px;
}

.icon-xsmall {
  height: 16px;
}

.icon-medium {
  height: 40px;
}

.icon-large {
  height: 64px;
}

.icon-xlarge {
  height: 80px;
}

.footer_component {
  padding-top: 60px;
  padding-bottom: 60px;
  border-radius: 20px;
  background-color: #1b1b1b;
  color: #f5f5f5;
  font-weight: 600;
}

.footer_bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-social-link {
  margin-left: 20px;
}

.footer-social-link:hover {
  color: #7e7e7e;
}

.footer_content {
  display: -ms-grid;
  display: grid;
  margin-bottom: 80px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: start;
  -ms-flex-align: start;
  align-items: start;
  grid-auto-columns: 1fr;
  grid-column-gap: 80px;
  grid-row-gap: 40px;
  -ms-grid-columns: 0.25fr 1fr;
  grid-template-columns: 0.25fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.footer_link {
  opacity: 0.6;
  text-decoration: none;
}

.footer_link:hover {
  opacity: 1;
}

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

.max-xsmall {
  width: 100%;
  max-width: 544px;
}

.fs-styleguide-hero-wrapper {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-top: 160px;
  padding-bottom: 120px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 20px;
  background-color: #1a1a1a;
  color: #fff;
}

.text-large {
  font-size: 24px;
  line-height: 1.18;
}

.text-large.text-orange.wiz-text {
  font-size: 1.9vw;
}

.home-hero_image-wrapper {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.fs-styleguide-hero-title {
  position: relative;
  z-index: 2;
}

.col {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.page-wrapper-full-screen {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  max-width: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

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

.text-strikethrough {
  text-decoration: line-through;
}

.text-bold {
  font-weight: 700;
}

.text-normal {
  font-weight: 400;
}

.fs-styleguide-sidebar {
  position: fixed;
  left: 0%;
  top: 0%;
  right: auto;
  bottom: 0%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background-color: transparent;
}

.page-padding {
  padding-right: 40px;
  padding-left: 40px;
}

.page-padding.padding-xxlarge {
  padding-right: 10%;
  padding-left: 10%;
}

.page-wrapper {
  overflow: hidden;
}

.page-wrapper.sticky-on-page {
  overflow: visible;
}

.page-wrapper.hide-styleguide {
  display: none;
}

.fs-styleguide-class-label {
  display: inline-block;
  padding-right: 8px;
  padding-left: 8px;
  border-radius: 5px;
  background-color: rgba(23, 138, 244, 0.2);
  font-weight: 700;
  cursor: context-menu;
}

.fs-styleguide-class-label.fs-styleguide-purple-color {
  background-color: rgba(137, 23, 244, 0.2);
}

.fs-styleguide-class-label.fs-style-guide-pink-color {
  background-color: rgba(255, 95, 160, 0.4);
}

.fs-styleguide-class-label.fs-style-guide-green-color {
  background-color: rgba(112, 201, 92, 0.5);
}

.utility-page-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.form_submit-custom {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  display: inline-block;
  width: 100%;
  padding: 8px 16px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #0015ff;
  opacity: 0;
  color: #fff;
  text-align: center;
  text-decoration: none;
}

.text-rich-text h1 {
  margin-top: 10px;
  margin-bottom: 20px;
}

.text-rich-text h2 {
  margin-top: 10px;
  margin-bottom: 15px;
}

.text-rich-text h3 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.text-rich-text h4 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.text-rich-text h5 {
  margin-top: 10px;
  margin-bottom: 6px;
}

.text-rich-text h6 {
  margin-top: 10px;
  margin-bottom: 6px;
}

.text-rich-text blockquote {
  margin-bottom: 15px;
  border-left-color: #333;
}

.text-rich-text a {
  text-decoration: underline;
}

.text-rich-text li {
  margin-bottom: 6px;
  list-style-type: disc;
}

.text-rich-text p {
  margin-bottom: 10px;
}

.fs-styleguide-page-wrapper {
  margin-left: 270px;
  padding-right: 40px;
  padding-left: 40px;
}

.fs-styleguide-content {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 80px;
  padding-bottom: 80px;
}

.icon-1x1-xsmall {
  width: 16px;
  height: 16px;
}

.icon-1x1-small {
  width: 32px;
  height: 32px;
}

.icon-1x1-medium {
  width: 40px;
  height: 40px;
}

.icon-1x1-large {
  width: 64px;
  height: 64px;
}

.icon-1x1-xlarge {
  width: 80px;
  height: 80px;
}

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

.text-color-white.text-xxlarge {
  font-size: 61px;
  line-height: 1.1;
  letter-spacing: -1px;
}

.text-color-white.text-xxlarge.wide {
  max-width: 100%;
  font-size: 57px;
}

.fs-styleguide-border-left {
  border-left: 1px solid #bbb;
}

.text-color-grey {
  color: grey;
}

.text-color-black {
  color: #000;
}

.text-muted {
  opacity: 0.6;
}

.text-italic {
  font-style: italic;
}

.testimonial-item {
  position: relative;
  margin-bottom: 20px;
  padding: 20px;
  background-color: #f5f5f5;
}

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

.testimonial-author-photo {
  width: 50px;
  height: 50px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  border-radius: 50%;
  background-color: #bbb;
}

.testimonial-author-details {
  padding-left: 20px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.testimonial-author-title {
  margin-top: 5px;
  opacity: 0.6;
  font-size: 12px;
}

.fs-styleguide-sidebar-styles {
  position: fixed;
  left: 0%;
  top: 0%;
  right: auto;
  bottom: auto;
}

.layout-card-center {
  display: -ms-grid;
  display: grid;
  margin-right: auto;
  margin-left: auto;
  justify-items: center;
  grid-auto-columns: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 32px;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  text-align: center;
}

.footer_navigation-wrapper {
  display: -ms-grid;
  display: grid;
  margin-top: 72px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  grid-auto-columns: 1fr;
  grid-column-gap: 40px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.fs-styleguide-nav-logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #f5f5f5;
}

.max-medium {
  width: 100%;
  max-width: 1024px;
}

.layout-hero {
  position: relative;
  display: -ms-grid;
  display: grid;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-auto-columns: 1fr;
  grid-column-gap: 60px;
  grid-row-gap: 40px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.layout-card-right {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-auto-columns: 1fr;
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.layout-card-left {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-auto-columns: 1fr;
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.fs-styleguide-block-highlight {
  display: -ms-grid;
  display: grid;
  padding: 30px;
  -webkit-box-align: start;
  -webkit-align-items: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-align-content: start;
  -ms-flex-line-pack: start;
  align-content: start;
  grid-auto-columns: 1fr;
  grid-column-gap: 60px;
  grid-row-gap: 40px;
  -ms-grid-columns: 0.75fr 1fr;
  grid-template-columns: 0.75fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  border-radius: 12px;
  background-color: #1a1a1a;
  -webkit-transition: box-shadow 200ms ease, background-color 200ms ease;
  transition: box-shadow 200ms ease, background-color 200ms ease;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.fs-styleguide-hidden-combo {
  display: none;
}

.padding-medium {
  padding: 32px;
}

.padding-small {
  padding: 16px;
}

.padding-large {
  padding: 64px;
}

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

.fs-styleguide-save-styles {
  display: none;
}

.z-2 {
  position: relative;
  z-index: 2;
}

.align-center {
  margin-right: auto;
  margin-left: auto;
}

.layer {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.crop {
  overflow: hidden;
}

.max-xxlarge {
  width: 100%;
  max-width: 1568px;
}

.fs-styleguide-section-divider {
  height: 8px;
  margin-top: 128px;
  margin-bottom: 128px;
  background-color: #333;
}

.fs-styleguide-value-label {
  display: inline-block;
  margin-bottom: 4px;
  padding: 2px 10px;
  border-radius: 5px;
  background-color: #feb;
  font-size: 14px;
  font-weight: 600;
}

.fs-styleguide-value-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.padding-vertical-xlarge {
  padding-top: 128px;
  padding-bottom: 128px;
}

.max-full {
  width: 100%;
  max-width: none;
}

.padding-xlarge {
  padding: 128px;
}

.padding-horizontal-xlarge {
  padding-right: 128px;
  padding-left: 128px;
}

.text-xbold {
  font-weight: 800;
}

.text-light {
  font-weight: 300;
}

.fs-styleguide-header {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  min-height: 100vh;
  margin-right: auto;
  margin-left: auto;
  padding: 12px;
}

.fs-styleguide-iframe {
  width: 108%;
  height: 100vh;
  margin-right: -4%;
  margin-left: -4%;
  border: 4px solid #141414;
  border-radius: 8px;
}

.text-semibold {
  font-weight: 600;
}

.show {
  display: block;
}

.nav_main {
  padding-right: 20px;
  padding-left: 20px;
}

.grid-8-col {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 0px;
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.fs-styleguide-section-below-fold {
  position: -webkit-sticky;
  position: sticky;
  bottom: 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  background-color: #eef2f7;
}

.fs-styleguide-hero-img {
  position: absolute;
  left: 0%;
  top: 0%;
  right: auto;
  bottom: 0%;
  z-index: 1;
  width: 50vw;
  height: 100%;
  max-width: 640px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.fs-styleguide-grid {
  width: 64px;
  height: 90vh;
  margin-top: 20vh;
  margin-right: 8px;
  margin-left: 8px;
  background-color: rgba(255, 54, 188, 0.1);
}

.fs-styleguide-grid.fs-first-item {
  margin-left: auto;
}

.fs-grid-3-col {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.column-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.fs-styleguide-footer_wrapper {
  padding: 12px;
  background-color: #eef2f7;
}

.max-xxsmall {
  width: 100%;
  max-width: 320px;
}

.fs-styleguide-nav_menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.fs-styleguide-nav_link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 8px;
  margin-bottom: 8px;
  padding: 12px 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}

.fs-styleguide-nav_link:hover {
  background-color: hsla(0, 0%, 100%, 0.15);
}

.fs-styleguide-nav_brand {
  height: 36px;
}

.fs-styleguide-hero-shaddow {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 1;
  box-shadow: inset -7px 0 120px 5px #1c1c1c;
}

.text-medium {
  font-size: 18px;
}

.fs-styleguide-heading-visual {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 0.25fr;
  grid-template-columns: 1fr 0.25fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
}

.navigation-items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.logo-link {
  z-index: 1;
}

.logo-link:hover {
  opacity: 0.8;
}

.logo-link:active {
  opacity: 0.7;
}

.text-field-2 {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-bottom: 0px;
}

.button-3 {
  margin-bottom: 40px;
}

.navigation-item {
  padding-top: 9px;
  padding-bottom: 9px;
  opacity: 0.6;
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.navigation-item:hover {
  opacity: 0.9;
}

.navigation-item:active {
  opacity: 0.8;
}

.navigation-item.w--current {
  opacity: 1;
  color: #1a1b1f;
  font-weight: 600;
}

.navigation-item.w--current:hover {
  opacity: 0.8;
  color: #32343a;
}

.navigation-item.w--current:active {
  opacity: 0.7;
  color: #32343a;
}

.heading-6 {
  margin-top: 0px;
  margin-bottom: 0px;
}

.form-block-2 {
  display: inline-block;
  margin-top: -2px;
  margin-bottom: 0px;
}

.text-block-3 {
  display: inline-block;
  background-color: #7d92b1;
}

.navigation {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 30px 50px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: transparent;
}

.container-4 {
  position: static;
  display: block;
  max-width: none;
  padding-right: 20px;
  padding-left: 20px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
  text-align: left;
  -o-object-fit: fill;
  object-fit: fill;
}

.image-logo {
  display: inline-block;
  max-width: 70%;
  padding-left: 15px;
}

.cart-wrapper {
  position: fixed;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 2;
  display: none;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  background-color: rgba(0, 0, 0, 0.68);
}

.container-3 {
  display: block;
  padding-right: 20px;
  padding-left: 20px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.button-2 {
  padding: 4px 8px;
  background-color: #000;
  font-size: 20px;
  line-height: 20px;
}

.cart-items-wrapper {
  overflow: auto;
}

.cart_exit-icon {
  display: block;
  margin-top: 20px;
  text-align: right;
}

.navigation-wrap {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.text-block-4 {
  text-decoration: line-through;
}

.heading-8 {
  margin-top: 0px;
}

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

.cart_flex-wrapper {
  position: static;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100px;
  height: auto;
  max-width: 480px;
  min-width: 400px;
  clear: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  background-color: #000;
  text-align: left;
}

.button-4 {
  padding: 12px 25px;
  border-radius: 0px;
  background-color: #e4a24e;
  -webkit-transition: background-color 400ms ease, opacity 400ms ease, color 400ms ease;
  transition: background-color 400ms ease, opacity 400ms ease, color 400ms ease;
  color: #fff;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
}

.button-4:hover {
  background-color: #32343a;
  color: #fff;
}

.button-4:active {
  background-color: #43464d;
}

.button-4.cc-contact-us {
  position: relative;
  z-index: 1;
  display: inline-block;
}

.button-4.cart {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 80px;
  height: 80px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  background-color: transparent;
}

.menu {
  position: relative;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 0;
  display: none;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.collection_product-title {
  text-decoration: none;
}

.js-product-sku {
  display: none;
}

.text-block-7 {
  margin-top: 20px;
}

.div-block-6 {
  text-align: left;
}

.js-product-variant-sku {
  display: none;
}

.heading {
  display: block;
  line-height: 50px;
  text-align: left;
  text-decoration: none;
}

.text-block-5 {
  display: none;
}

.collec {
  text-decoration: none;
}

.text-block-11 {
  text-align: left;
  text-decoration: line-through;
}

.dynamic-product-image-linked {
  width: 75%;
  box-shadow: -10px 10px 20px -4px rgba(0, 0, 0, 0.43);
}

.image-sku {
  display: none;
}

.div-block-8 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.collection-width {
  max-width: 30vw;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.dynamic-collection-feature {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.js-collection-slug {
  display: none;
}

.section {
  margin-right: 30px;
  margin-left: 30px;
}

.section-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.link-5 {
  padding-right: 10px;
  padding-left: 10px;
}

.columns {
  margin-right: 60px;
  margin-bottom: 100px;
  margin-left: 60px;
}

.container-5 {
  width: 100%;
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
}

.heading-2 {
  margin-bottom: 20px;
}

.blog-heading {
  margin-bottom: 60px;
  text-align: center;
}

.collection_paginate-current {
  padding-right: 10px;
  padding-left: 10px;
  color: #000;
}

.link-2 {
  color: #43464d;
  text-decoration: none;
  text-transform: uppercase;
}

.text-block-12 {
  text-align: justify;
}

.collection-price-compare {
  text-decoration: line-through;
}

.collection-product-title-wrapper {
  width: 100%;
  text-decoration: none;
}

.collection_paginate-arrow {
  padding-right: 10px;
  padding-left: 10px;
}

.collection_paginate-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.tab-link_product-details {
  border-bottom: 4px solid #000;
  background-color: #fff;
}

.tab-link_product-details.w--current {
  background-color: #000;
  color: #e4a24e;
}

.tabs-menu-2 {
  text-align: center;
}

.tab-link-tab-2 {
  background-color: #b1a0a0;
}

.tab-link-tab-2.w--current {
  background-color: #fff;
}

.column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: auto;
  margin-bottom: auto;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.pdp_vendor {
  margin-top: 8px;
  margin-bottom: 8px;
  color: #000;
}

.pdp_price {
  color: #000;
}

.pdp_product-title {
  margin-top: 0px;
  margin-bottom: 20px;
  color: #000;
  line-height: 30px;
  text-align: center;
}

.pdp_compare-price {
  color: #e4a24e;
  line-height: 50px;
  text-decoration: line-through;
}

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

.pdp-detail-wrapper {
  text-align: center;
}

.container-6 {
  width: 100%;
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 40px;
  padding-bottom: 40px;
}

.product-page-wrapper {
  overflow: hidden;
}

.product-page-wrapper.sticky-on-page {
  overflow: visible;
}

.cart_price-subtotal {
  font-size: 18px;
}

.div-block-9 {
  margin-right: auto;
  margin-left: auto;
}

.div-block-10 {
  margin-right: auto;
  margin-left: auto;
}

.width-none {
  width: auto;
  margin-right: auto;
  margin-left: auto;
}

.link-4 {
  margin-top: 20px;
  text-align: right;
}

.div-block-3 {
  position: static;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100px;
  max-width: 480px;
  min-width: 400px;
  clear: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  background-color: #d4d4d4;
  text-align: left;
}

.price-compare {
  text-decoration: line-through;
}

.section-home-hero {
  background-color: #f1f1f1;
}

.html-embed {
  display: none;
}

.heading-9 {
  font-size: 72px;
  font-weight: 400;
}

.text-orange {
  color: #e4a24e;
}

.grid {
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.strikethrough-wrapper {
  position: relative;
}

.prices-wrapper {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: end;
  -ms-flex-align: end;
  align-items: end;
  grid-auto-columns: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.striekthrough-red {
  position: absolute;
  left: 0%;
  top: 0%;
  right: auto;
  bottom: 0%;
  width: 58%;
  height: 3px;
  margin-top: 13px;
  background-color: #9b3a3a;
  -webkit-transform: rotate(-14deg);
  -ms-transform: rotate(-14deg);
  transform: rotate(-14deg);
}

.text-xlarge {
  font-size: 48px;
  line-height: 1.18;
}

.logo-image {
  position: relative;
  max-height: 80px;
}

.story_image {
  display: block;
  min-width: 390px;
  box-shadow: -17px 46px 20px 19px rgba(0, 0, 0, 0.01);
}

.wiz-h1 {
  font-size: 5vw;
}

.wiz-text {
  font-size: 1.9vw;
}

.wiz-text-large {
  font-size: 3.5vw;
}

.image-author {
  position: relative;
  width: 100px;
  max-width: none;
  border-radius: 1850%;
}

.blurb_title-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.heading-10 {
  padding-right: 28px;
}

.horizontal-logo {
  max-width: 200px;
  margin-bottom: 20px;
}

.author-name {
  margin-top: 0px;
  margin-bottom: 0px;
  color: #151c34;
  font-size: 20px;
  font-weight: 400;
}

.blurb-card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  box-shadow: 17px 88px 60px -100px rgba(79, 94, 120, 0.18), 11px 0 20px -9px rgba(79, 94, 120, 0.1);
}

.play-button {
  position: absolute;
}

.horizontal-angle {
  position: absolute;
  left: auto;
  top: 0%;
  right: -2%;
  bottom: 0%;
  z-index: 99;
  height: 101%;
  -o-object-fit: cover;
  object-fit: cover;
}

.right-arrow {
  top: 17px;
  right: -17px;
  width: 45px;
  height: 45px;
  border-radius: 100px;
  background-color: #e4a24e;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  font-size: 14px;
}

.right-arrow:hover {
  -webkit-transform: translate(2px, 0px);
  -ms-transform: translate(2px, 0px);
  transform: translate(2px, 0px);
}

.blurb_v2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  padding-right: 3%;
  padding-left: 3%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.author-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-top: 25px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.horizontal-quote-h4 {
  margin-top: 0px;
  margin-bottom: 0px;
  color: #151c34;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
}

.horizontal-quote-h4.text-testimonial-headline {
  color: #e4a24e;
  font-size: 26px;
}

.slider-horizontal {
  width: 50%;
  height: 100%;
  background-color: transparent;
}

.blurb-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.blurb-image.image-position-down {
  height: 125%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: 50% 100%;
  object-position: 50% 100%;
}

.left-arrow {
  left: -17px;
  top: 17px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 45px;
  height: 45px;
  padding: 10px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100px;
  background-color: #e4a24e;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  font-size: 14px;
}

.left-arrow:hover {
  -webkit-transform: translate(-2px, 0px);
  -ms-transform: translate(-2px, 0px);
  transform: translate(-2px, 0px);
}

.play-icon {
  width: 60px;
}

.testu {
  width: 100%;
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
}

.slide-nav {
  top: 575.901px;
  display: none;
  max-width: 150px;
  border-radius: 500px;
  background-color: #fff;
  box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.05);
}

.horizontal-content-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 60%;
  padding: 20px 75px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.mask-horizontal {
  overflow: visible;
}

.horizontal-fixed-height {
  min-height: 100px;
}

.text-author-job {
  color: rgba(21, 28, 52, 0.5);
  font-size: 1.82vw;
}

.blurb-image-wrap {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 40%;
  height: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

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

.blurb_author-image {
  max-width: 120px;
  margin-right: 3%;
  border-radius: 100px;
  box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.14);
}

.blurb_author-image.medium-image {
  max-height: 215px;
  max-width: 215px;
}

.blurb-card-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.image-2 {
  width: 200px;
}

.blurb-copy {
  max-width: 42ch;
}

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

.blurb_v1 {
  display: none;
}

.section-story {
  display: none;
}

.wiz-h2 {
  font-size: 3.5vw;
}

.story-content {
  display: -ms-grid;
  display: grid;
  width: 100%;
  max-width: 500px;
  margin-right: auto;
  margin-left: auto;
  justify-items: start;
  grid-auto-columns: 1fr;
  grid-row-gap: 0px;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto auto auto;
  grid-template-rows: auto auto auto;
}

.button_orange {
  background-color: #e4a24e;
}

.background-orange {
  background-color: #e4a24e;
}

.cart_exit-link {
  margin-top: 20px;
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
  color: #fff;
  font-size: 20px;
  text-align: left;
  text-decoration: none;
}

.cart-quantity-edit {
  padding: 4px 8px;
  background-color: #000;
  font-size: 20px;
  line-height: 20px;
}

.cart-wrapper-2 {
  position: fixed;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 99999999;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.cart-wrap {
  position: fixed;
  left: auto;
  top: 0%;
  right: 0%;
  bottom: auto;
  z-index: 999999999;
  display: block;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.cart-items-wrapper-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.cart_quantity-field {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: -2px;
  margin-bottom: 0px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  text-align: center;
}

.div-block-4 {
  display: none;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.59);
}

.cart_quantity-field-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.cart_quantity-text {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-bottom: 0px;
  padding-right: 0px;
  padding-left: 0px;
  text-align: center;
}

.h1 {
  margin-top: 0px;
  margin-bottom: 0px;
  font-family: Montserrat, sans-serif;
  color: #fff;
  font-size: 72px;
  line-height: 95px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.h1.hero {
  width: 14ch;
  font-size: 64px;
  line-height: 84px;
  font-weight: 500;
  letter-spacing: normal;
  text-transform: none;
}

.h1.hero.cart {
  width: auto;
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 23px;
  line-height: 1.4;
}

.cart-contents {
  position: static;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100px;
  height: 100%;
  max-width: 480px;
  min-width: 400px;
  padding: 40px;
  clear: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #000;
  text-align: left;
}

.h3 {
  margin-top: 0px;
  margin-bottom: 0px;
  font-family: Montserrat, sans-serif;
  color: #e8901b;
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.h3.cart.white {
  margin-bottom: 15px;
}

.h3.chapters {
  width: 100%;
  color: #fff;
  font-size: 1.7vw;
  line-height: 1.5;
  font-weight: 600;
  text-align: left;
  letter-spacing: normal;
  text-transform: none;
}

.h3.black {
  margin-top: 100px;
  margin-bottom: 100px;
  color: #000;
  font-weight: 600;
}

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

.cart_quantity-adjust {
  display: block;
  padding: 4px 8px;
  background-color: #000;
  font-size: 20px;
  line-height: 20px;
}

.pricing {
  font-family: Montserrat, sans-serif;
  color: #e8901b;
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
}

.pricing.discount {
  display: none;
  color: #9c3c3c;
  font-size: 18px;
  text-decoration: line-through;
}

.pricing.subtotal {
  color: #e4a24e;
}

.pricing.cart {
  display: none;
  color: #e5e5e5;
}

.cta {
  margin: 40px 10px;
  padding: 17px 36px;
  border-radius: 15px;
  background-color: #e8901b;
  font-family: Montserrat, sans-serif;
  color: #fff;
  font-size: 18px;
  line-height: 30px;
  font-weight: 700;
}

.cta.cart {
  margin-top: 15px;
  margin-bottom: 15px;
}

.quantity-wrapper {
  display: none;
  padding-top: 15px;
  padding-bottom: 15px;
}

.container-7 {
  position: static;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: none;
  padding-right: 20px;
  padding-left: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
  text-align: left;
  -o-object-fit: fill;
  object-fit: fill;
}

.container-cart_products {
  display: block;
  overflow: auto;
  padding-right: 20px;
  padding-left: 20px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

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

.text-cart-menu {
  font-family: 'Londrina Solid', sans-serif;
  font-size: 18px;
  font-weight: 400;
  text-transform: none;
}

.image-4 {
  max-width: 100%;
}

.hero_content {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  padding-top: 32px;
  padding-bottom: 32px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.63)), to(rgba(0, 0, 0, 0.63)));
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.63), rgba(0, 0, 0, 0.63));
}

.background-layer-parallax {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50% -15%;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.hero_content-wrapper {
  position: -webkit-sticky;
  position: sticky;
  top: 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.below-the-fold_content {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  padding-top: 32px;
  padding-bottom: 32px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.gallery_product-bg-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  padding: 40px 30px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #c6e2e6;
}

.gallery_product-bg-wrapper.bg_green {
  background-color: #81925c;
}

.gallery_product-bg-wrapper.bg_strays {
  background-color: #e49922;
}

.gallery_product-bg-wrapper.bg_ninja-color {
  background-color: #3f4e61;
}

.gallery_product-bg-wrapper.bg_penguin {
  background-color: #576572;
}

.gallery_product-bg-wrapper.bg_winterking {
  background-color: #b4d2ea;
}

.gallery_product-bg-wrapper.bg_dragonslayers {
  background-color: #ccb992;
}

.gallery_product-bg-wrapper.bg_purloined {
  background-color: #172822;
}

.gallery_product-bg-wrapper.bg_firedrake {
  background-color: #9eb243;
}

.gallery_product-bg-wrapper.bg_dragongarden {
  background-color: #f2f282;
}

.gallery_product-bg-wrapper.bg_noah {
  background-color: #d7683d;
}

.gallery_product-bg-wrapper.bg_abram {
  background-color: #b3a290;
}

.gallery_product-bg-wrapper.bg_goblin {
  background-color: #5d76c5;
}

.gallery_product-bg-wrapper.bg_curdie {
  background-color: #aa5a6c;
}

.gallery_product-bg-wrapper.bg_riot {
  background-color: #272f1d;
}

.gallery_product-amazon-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.image-5 {
  max-width: 100%;
}

.heading-12 {
  font-weight: 300;
}

.nav-link {
  color: #fff;
  font-size: 1.4em;
  line-height: 1.14;
  text-transform: uppercase;
}

.style_item {
  padding: 2em 0em;
  border-bottom: 0.1em solid #bdbdbd;
}

.container-style-guide {
  width: 100%;
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 2.8em;
  padding-bottom: 2.8em;
  padding-left: 4em;
  grid-auto-columns: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.styletitle {
  margin: 20px 15px 30px;
  border-bottom: 1px solid #d4d4d4;
  font-size: 14px;
  text-transform: uppercase;
}

.bold {
  font-weight: 700;
}

.colorbox {
  display: inline-block;
  width: 150px;
  height: 150px;
  margin-right: 25px;
}

.colorbox.brandmaincolor {
  background-color: #25bcca;
}

.colorbox.darkgreycolor {
  background-color: #9b9b9b;
}

.colorbox.lightgreycolor {
  background-color: #d4d4d4;
}

.colorbox.blackcolor {
  margin-left: 0px;
  background-color: #000;
  color: #000;
}

.colorbox.brand2ndcolor {
  background-color: #1e949e;
}

.stylename {
  margin-top: 20px;
  margin-bottom: 20px;
  border-top: 1px solid #d4d4d4;
  border-bottom: 0px none #d4d4d4;
  color: #d4d4d4;
  font-size: 14px;
  text-transform: uppercase;
}

.invese-link {
  color: #fff;
}

.flex3col {
  width: 33.333%;
  margin-bottom: 15px;
  padding-right: 15px;
  padding-left: 15px;
}

.flex3col.textlinkcol {
  padding-top: 19px;
}

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

.flexcolwrap.inversecolors {
  padding-top: 26px;
  padding-bottom: 0px;
  background-color: #25bcca;
}

.mycontain {
  display: block;
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 25px;
  padding-bottom: 25px;
}

.flex2col {
  width: 50%;
  margin-bottom: 15px;
  padding: 10px 15px;
}

.cta-button {
  border-radius: 5px;
  background-color: #25bcca;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
}

.cta-button:hover {
  background-color: #1e949e;
  color: #fff;
}

.cta-button.ghost-button {
  border: 1px solid #25bcca;
  background-color: transparent;
  color: #25bcca;
}

.cta-button.ghost-button:hover {
  border-color: #25bcca;
  background-color: #25bcca;
  color: #fff;
}

.cta-button.ghost-button.inverse-ghost {
  border-color: #fff;
  color: #fff;
}

.cta-button.ghost-button.inverse-ghost:hover {
  background-color: #fff;
  color: #25bcca;
}

.cta-button.inverse-button {
  background-color: #fff;
  color: #25bcca;
}

.cta-button.inverse-button:hover {
  background-color: #1e949e;
  color: #fff;
}

.coldummycolor {
  background-color: #d4d4d4;
}

.small-p {
  margin-bottom: 10px;
  color: #9b9b9b;
  font-size: 15px;
  line-height: 25px;
}

.cart_spacer {
  width: 80%;
  height: 3px;
  margin: 12px auto;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
}

.select-field {
  margin-top: 12px;
  margin-bottom: 12px;
  font-size: 18px;
}

.ollie-wrap {
  display: -ms-grid;
  display: grid;
  width: 600px;
  height: 500px;
  margin-top: 52px;
  margin-bottom: 52px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  justify-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  background-color: #2c4896;
}

.ollie-bg {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-left: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.div-block-11 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.text-span {
  color: #e4a24e;
  text-decoration: line-through;
}

.text-span-2 {
  color: #e4a24e;
  text-decoration: line-through;
}

.text-span-3 {
  text-decoration: line-through;
}

.text-span-4 {
  color: #e4a24e;
}

.text-span-5 {
  color: #e4a24e;
}

.image-6 {
  position: relative;
  max-width: 95%;
}

.text-span-6 {
  font-size: 31px;
}

.text-span-7 {
  color: #e4a24e;
  font-size: 37px;
}

.text-span-8 {
  font-size: 46px;
}

.ollie-long-banner {
  display: -ms-grid;
  display: grid;
  width: 90vw;
  height: 30vw;
  margin-top: 52px;
  margin-bottom: 52px;
  padding-right: 8px;
  padding-left: 8px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  justify-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  grid-auto-columns: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  -ms-grid-columns: 2.25fr 1fr;
  grid-template-columns: 2.25fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  background-color: #2c4896;
}

.ollie-bg-wide {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-left: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.wide {
  position: relative;
  max-width: 70%;
  padding-top: 12px;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.image-7 {
  max-width: 71%;
}

.image-8 {
  background-color: #000;
}

.divider {
  width: 80%;
  height: 3px;
  margin-top: 12px;
  margin-bottom: 12px;
  background-color: #fff;
}

.part-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.tabs-menu-3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-right: 30px;
  float: left;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.list-2 {
  display: none;
}

.part-tab {
  height: 100%;
  margin-top: 25px;
  margin-bottom: 25px;
  padding-top: 25px;
  padding-bottom: 25px;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
  background-color: #fff;
  color: #bcbcbc;
}

.part-tab.w--current {
  height: 100%;
  margin-top: 25px;
  margin-bottom: 25px;
  padding-top: 25px;
  padding-bottom: 25px;
  border-bottom: 7px solid #e8901b;
  background-color: transparent;
}

.p {
  max-width: 50ch;
  margin-bottom: 0px;
  color: #000;
  font-size: 18px;
  line-height: 30px;
}

.p.chapter {
  height: 100%;
  padding-top: 24px;
  padding-bottom: 24px;
  font-size: 16px;
  line-height: 27px;
}

.p.chapter.list {
  padding-top: 10px;
  padding-bottom: 10px;
}

.faq-icon {
  position: absolute;
  left: auto;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 2;
  width: 24px;
  margin-right: 16px;
}

.part-title-chapter-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  padding-left: 20px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.faq {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 80px;
  padding-top: 0px;
  padding-right: 50px;
  padding-bottom: 0px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #35539d;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  white-space: break-spaces;
}

.faq.w--open {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.part-title-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.part-number-wrap-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 40px;
  height: 40px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 5px;
  background-color: #bcbcbc;
}

.part-parent {
  display: block;
  width: 100%;
}

.section-faqs {
  font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
}

.part-text {
  padding-top: 0px;
  padding-bottom: 10px;
  font-family: Montserrat, sans-serif;
  color: #bcbcbc;
  font-size: 12px;
  line-height: 15px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.part-text.number {
  padding-bottom: 0px;
  padding-left: 4px;
  color: #e5e5e5;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
}

.faq-body-cont {
  padding: 30px;
  border-top: 1px none #000;
  font-size: 16px;
  line-height: 32px;
  font-weight: 300;
}

.faq-body {
  position: relative;
  display: block;
  width: 100%;
  background-color: transparent;
}

.faq-body.w--open {
  background-color: transparent;
}

.faq-container {
  display: block;
  max-width: 600px;
  min-width: 600px;
}

.faq-p {
  overflow: hidden;
  width: 100%;
  border-radius: 4px;
  background-color: #f4f6f8;
}

.contain {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 100px;
  padding-left: 100px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.contain.chapters-wrap {
  width: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #f1f1f1;
}

.paragraph-2 {
  padding-top: 20px;
}

.div-block-12 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.text-span-9 {
  color: #000;
}

@media screen and (min-width: 1280px) {
  h2 {
    font-size: 1.88vw;
  }

  .text-large {
    font-size: 1.88vw;
  }

  .text-large.text-orange.text-wiz-large {
    font-size: 2.5vw;
  }

  .button-4.cart {
    width: 90px;
  }

  .dynamic-add-to-cart-custom.button {
    font-size: 1.88vw;
  }

  .text-wiz-large {
    font-size: 2.5vw;
  }
}

@media screen and (min-width: 1920px) {
  p {
    font-size: 1.5vw;
    line-height: 1.3;
  }

  .container.background-layer-parallax_penguin {
    background-image: url('../images/PenguinSetsSail_FrontCover.png'), -webkit-gradient(linear, left top, left bottom, from(#fefdf0), to(#61919b));
    background-image: url('../images/PenguinSetsSail_FrontCover.png'), linear-gradient(180deg, #fefdf0, #61919b);
    background-position: 50% 69%, 0px 0px;
    background-size: cover, auto;
    background-attachment: fixed, scroll;
  }

  .button.button_orange {
    font-size: 2vw;
  }

  .button-4.cart {
    width: 100px;
    height: 100px;
  }

  .dynamic-add-to-cart-custom.button {
    font-size: 2vw;
  }

  .dynamic-product-image-linked {
    max-width: 359px;
  }

  .horizontal-quote-h4 {
    font-size: 2vw;
  }

  .h3.chapters {
    font-size: 1.8vw;
  }

  .h3.black {
    font-size: 1vw;
    line-height: 1.5;
  }

  .p.chapter {
    font-size: 1.2vw;
    line-height: 1.6;
  }

  .part-text {
    font-size: 0.7vw;
  }

  .text-block-14 {
    font-family: 'Londrina Solid', sans-serif;
  }

  .paragraph-3 {
    font-size: 1px;
  }
}

@media screen and (max-width: 991px) {
  p {
    margin-bottom: 20px;
  }

  .fs-styleguide-sidebar-links {
    left: auto;
    top: 0%;
    right: 0%;
    bottom: 0%;
    z-index: 9;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    text-align: left;
  }

  .grid-row.gap-large {
    grid-column-gap: 32px;
  }

  .grid-row.gap-medium {
    grid-column-gap: 16px;
  }

  .grid-row.gap-xlarge {
    grid-column-gap: 40px;
  }

  .margin-left-large {
    margin-left: 24px;
  }

  .margin-left-xlarge {
    margin-left: 32px;
  }

  .fs-styleguide-grey-visibility {
    width: 100%;
  }

  .hide-tablet {
    display: none;
  }

  .show-tablet {
    display: block;
  }

  .container.background-layer-parallax {
    background-position: 50% 100%;
  }

  .home-content {
    max-width: none;
  }

  .margin-right-large {
    margin-right: 24px;
  }

  .margin-right-xlarge {
    margin-right: 32px;
  }

  .button.wiz-text {
    -webkit-transition: background-color 500ms cubic-bezier(.075, .82, .165, 1);
    transition: background-color 500ms cubic-bezier(.075, .82, .165, 1);
    font-size: 20px;
  }

  .button.wiz-text:hover {
    background-color: #e4a24e;
  }

  .fs-styleguide-nav {
    padding: 0px;
    background-color: rgba(27, 27, 27, 0);
  }

  .nav_menu {
    background-color: #fff;
  }

  .nav_button {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 20px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .padding-horizontal-large {
    padding-right: 40px;
    padding-left: 40px;
  }

  .padding-horizontal-medium {
    padding-right: 24px;
    padding-left: 24px;
  }

  .padding-horizontal-small {
    padding-right: 12px;
    padding-left: 12px;
  }

  .padding-vertical-small {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .padding-vertical-medium {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .padding-vertical-large {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .card-layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
  }

  .footer_bottom {
    display: -ms-grid;
    display: grid;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    grid-auto-columns: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }

  .footer-social-link {
    margin-right: 20px;
    margin-left: 0px;
  }

  .footer_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .fs-styleguide-hero-wrapper {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .text-large.text-orange.wiz-text {
    font-size: 17px;
  }

  .text-large.wiz-text {
    font-size: 22px;
  }

  .home-hero_image-wrapper {
    max-width: 500px;
    margin-right: auto;
    margin-left: auto;
  }

  .fs-styleguide-hero-title {
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  .fs-styleguide-nav-button {
    position: fixed;
    left: auto;
    top: 10px;
    right: 10px;
    bottom: auto;
    z-index: 2;
    width: 50px;
    height: 50px;
    padding: 0px;
    border-radius: 50%;
    background-color: #dadada;
  }

  .fs-styleguide-nav-button.w--open {
    background-color: #1b1b1b;
  }

  .page-padding.padding-xxlarge {
    padding-right: 6%;
    padding-left: 6%;
  }

  .fs-styleguide-page-wrapper {
    margin-left: 0px;
  }

  .footer_navigation-wrapper {
    margin-top: 0px;
  }

  .fs-styleguide-nav-logo {
    z-index: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 60px;
    height: 60px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
    background-color: #1a1a1a;
  }

  .padding-medium {
    padding: 24px;
  }

  .padding-small {
    padding: 12px;
  }

  .padding-large {
    padding: 40px;
  }

  .padding-vertical-xlarge {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .tablet-marg-left-small {
    margin-left: 8px;
  }

  .tablet-marg-left-medium {
    margin-left: 16px;
  }

  .tablet-marg-left-large {
    margin-left: 24px;
  }

  .tablet-marg-right-small {
    margin-right: 8px;
  }

  .tablet-marg-right-medium {
    margin-right: 16px;
  }

  .tablet-marg-right-large {
    margin-right: 24px;
  }

  .tablet-marg-bottom-small {
    margin-bottom: 16px;
  }

  .tablet-marg-bottom-medium {
    margin-bottom: 32px;
  }

  .tablet-marg-bottom-large {
    margin-bottom: 64px;
  }

  .tablet-marg-bottom-xlarge {
    margin-bottom: 128px;
  }

  .tablet-marg-top-small {
    margin-top: 16px;
  }

  .tablet-marg-top-medium {
    margin-top: 32px;
  }

  .tablet-marg-top-large {
    margin-top: 64px;
  }

  .tablet-marg-top-xlarge {
    margin-top: 128px;
  }

  .padding-xlarge {
    padding: 80px;
  }

  .padding-horizontal-xlarge {
    padding-right: 80px;
    padding-left: 80px;
  }

  .tablet-pad-small {
    padding: 12px;
  }

  .tablet-pad-medium {
    padding: 24px;
  }

  .tablet-pad-large {
    padding: 40px;
  }

  .tablet-pad-xlarge {
    padding: 80px;
  }

  .tablet-pad-vertical-xlarge {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .tablet-pad-vertical-large {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .tablet-pad-vertical-medium {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .tablet-pad-vertical-small {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .tablet-pad-horizontal-small {
    padding-right: 12px;
    padding-left: 12px;
  }

  .tablet-pad-horizontal-medium {
    padding-right: 24px;
    padding-left: 24px;
  }

  .tablet-pad-horizontal-large {
    padding-right: 40px;
    padding-left: 40px;
  }

  .grid-8-col {
    -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  }

  .fs-styleguide-hero-img {
    position: relative;
    height: auto;
    max-width: 500px;
    min-width: auto;
    margin-right: auto;
    margin-left: auto;
  }

  .fs-grid-3-col {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .fs-styleguide-nav-button-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .fs-styleguide-nav_menu {
    padding: 72px 8px 24px;
    border-radius: 30px;
    background-color: #1c1c1c;
    font-size: 24px;
  }

  .fs-styleguide-nav_button {
    z-index: 10;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 60px;
    height: 60px;
    padding: 18px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
    background-color: #1a1a1a;
    -webkit-transition: -webkit-transform 400ms ease-in-out;
    transition: -webkit-transform 400ms ease-in-out;
    transition: transform 400ms ease-in-out;
    transition: transform 400ms ease-in-out, -webkit-transform 400ms ease-in-out;
  }

  .fs-styleguide-nav_button.w--open {
    z-index: 2;
    background-color: #1d1d1d;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .fs-styleguide-nav_icon {
    -webkit-transform: translate(0px, 2px);
    -ms-transform: translate(0px, 2px);
    transform: translate(0px, 2px);
  }

  .fs-styleguide-nav_brand {
    height: 32px;
  }

  .navigation-items {
    background-color: #fff;
  }

  .menu-icon {
    display: block;
  }

  .logo-link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .logo-link.w--current {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .navigation-item {
    padding: 15px 30px;
    -webkit-transition: background-color 400ms ease, opacity 400ms ease, color 400ms ease;
    transition: background-color 400ms ease, opacity 400ms ease, color 400ms ease;
    text-align: center;
  }

  .navigation-item:hover {
    background-color: #f7f8f9;
  }

  .navigation-item:active {
    background-color: #eef0f3;
  }

  .menu-button {
    padding: 0px;
  }

  .menu-button.w--open {
    background-color: transparent;
  }

  .navigation {
    padding: 25px 30px;
  }

  .image-logo {
    position: static;
    bottom: 0px;
    max-width: 70%;
  }

  .navigation-wrap {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: #fff;
  }

  .button-4 {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .button-4.cc-contact-us {
    display: block;
  }

  .button-4.cart {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }

  .menu {
    position: static;
    margin-left: 30px;
  }

  .pdp_vendor {
    color: #000;
  }

  .pdp_price {
    color: #000;
  }

  .pdp_product-title {
    color: #000;
  }

  .pdp_compare-price {
    color: #c79a60;
  }

  .striekthrough-red {
    width: 95%;
  }

  .story_image {
    z-index: 20;
    min-width: 298px;
  }

  .story_image.left {
    margin-left: -10%;
  }

  .wiz-h1 {
    font-size: 44px;
  }

  .horizontal-logo {
    max-width: 170px;
  }

  .blurb-image {
    position: relative;
  }

  .testu {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .horizontal-content-block {
    padding-right: 40px;
    padding-left: 25px;
  }

  .column-wrap {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .blurb_author-image {
    max-width: 90px;
  }

  .wiz-h2.text-orange {
    font-size: 28px;
  }

  .cart-wrapper-2 {
    display: none;
  }

  .cart-wrap {
    display: block;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: transparent;
  }

  .cart-contents {
    width: auto;
    max-width: none;
    min-width: auto;
    padding: 0px 20px;
  }

  .h3.chapters {
    width: 100%;
    font-size: 18px;
  }

  .nav-link {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    font-size: 14px;
  }

  .container-style-guide {
    padding-right: 3em;
    padding-left: 3em;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .paragraph {
    margin-bottom: 23px;
  }

  .p.chapter {
    font-size: 14px;
  }

  .part-title-chapter-wrap {
    padding-left: 10px;
  }

  .faq-container {
    width: 100%;
    min-width: 0px;
  }

  .contain {
    padding-right: 40px;
    padding-left: 40px;
  }

  .contain.chapters-wrap {
    margin-right: auto;
    margin-left: auto;
    padding-right: 40px;
    padding-left: 40px;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 24px;
  }

  .margin-bottom-small {
    margin-bottom: 12px;
  }

  .margin-bottom-large {
    margin-bottom: 48px;
  }

  .margin-bottom-medium {
    margin-bottom: 24px;
  }

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

  .grid-row {
    grid-auto-flow: row;
    grid-column-gap: 0px;
    grid-row-gap: 16px;
  }

  .grid-row.mobile-1-col {
    grid-auto-flow: row;
    grid-row-gap: 24px;
  }

  .heading-xlarge {
    font-size: 40px;
  }

  .heading-large {
    font-size: 32px;
  }

  .heading-medium {
    font-size: 24px;
  }

  .margin-left-small {
    margin-left: 4px;
  }

  .margin-left-large {
    margin-left: 16px;
  }

  .margin-left-medium {
    margin-left: 8px;
  }

  .margin-left-xlarge {
    margin-left: 16px;
  }

  .grid-3-col {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .grid-3-col.mobile-1-col {
    grid-row-gap: 60px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .grid-4-col {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .hide-landscape {
    display: none;
  }

  .show-landscape {
    display: block;
  }

  .container.cart_contain {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .container.cart_subtotal-contain {
    margin-left: 0px;
  }

  .container.cart-contain {
    padding-bottom: 32px;
    padding-left: 32px;
  }

  .container.cart_subtotal-contain {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .home-content {
    justify-items: stretch;
  }

  .margin-right-small {
    margin-right: 4px;
  }

  .margin-right-medium {
    margin-right: 8px;
  }

  .margin-right-large {
    margin-right: 16px;
  }

  .margin-right-xlarge {
    margin-right: 16px;
  }

  .button.wiz-text {
    font-size: 20px;
  }

  .padding-horizontal-medium {
    padding-right: 20px;
    padding-left: 20px;
  }

  .margin-top-medium {
    margin-top: 24px;
  }

  .margin-top-small {
    margin-top: 12px;
  }

  .margin-top-large {
    margin-top: 48px;
  }

  .margin-top-xlarge {
    margin-top: 80px;
  }

  .card-layout {
    grid-column-gap: 5vw;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }

  .footer_content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .text-large {
    font-size: 20px;
  }

  .text-large.text-orange {
    font-size: 22px;
  }

  .text-large.wiz-text {
    font-size: 22px;
    text-align: center;
  }

  .home-hero_image-wrapper {
    max-width: 40vh;
  }

  .fs-styleguide-nav-button {
    z-index: 2;
  }

  .page-padding {
    padding-right: 40px;
    padding-left: 40px;
  }

  .fs-styleguide-page-wrapper {
    overflow: hidden;
    padding-right: 20px;
    padding-left: 20px;
  }

  .footer_navigation-wrapper {
    grid-row-gap: 40px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .fs-styleguide-block-highlight {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .padding-medium {
    padding: 24px;
  }

  .padding-small {
    padding: 12px;
  }

  .footer-social-row {
    margin-top: 40px;
  }

  .padding-vertical-xlarge {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .tablet-marg-left-small {
    margin-left: 4px;
  }

  .tablet-marg-left-medium {
    margin-left: 8px;
  }

  .tablet-marg-left-large {
    margin-left: 16px;
  }

  .tablet-marg-right-small {
    margin-right: 4px;
  }

  .tablet-marg-right-medium {
    margin-right: 8px;
  }

  .tablet-marg-right-large {
    margin-right: 16px;
  }

  .mobile-marg-left-small {
    margin-left: 4px;
  }

  .mobile-marg-left-medium {
    margin-left: 8px;
  }

  .mobile-marg-left-large {
    margin-left: 16px;
  }

  .mobile-marg-right-small {
    margin-right: 4px;
  }

  .mobile-marg-right-medium {
    margin-right: 8px;
  }

  .mobile-marg-right-large {
    margin-right: 16px;
  }

  .tablet-marg-bottom-small {
    margin-bottom: 12px;
  }

  .tablet-marg-bottom-medium {
    margin-bottom: 24px;
  }

  .tablet-marg-bottom-large {
    margin-bottom: 48px;
  }

  .tablet-marg-bottom-xlarge {
    margin-bottom: 80px;
  }

  .tablet-marg-top-small {
    margin-top: 12px;
  }

  .tablet-marg-top-medium {
    margin-top: 24px;
  }

  .tablet-marg-top-large {
    margin-top: 48px;
  }

  .tablet-marg-top-xlarge {
    margin-top: 80px;
  }

  .mobile-marg-bottom-small {
    margin-bottom: 12px;
  }

  .mobile-marg-bottom-medium {
    margin-bottom: 24px;
  }

  .mobile-marg-bottom-large {
    margin-bottom: 48px;
  }

  .mobile-marg-bottom-xlarge {
    margin-bottom: 80px;
  }

  .mobile-marg-top-small {
    margin-top: 12px;
  }

  .mobile-marg-top-medium {
    margin-top: 24px;
  }

  .mobile-marg-top-large {
    margin-top: 48px;
  }

  .mobile-marg-top-xlarge {
    margin-top: 80px;
  }

  .padding-xlarge {
    padding: 64px;
  }

  .padding-horizontal-xlarge {
    padding-right: 64px;
    padding-left: 64px;
  }

  .tablet-pad-xlarge {
    padding: 64px;
  }

  .mobile-pad-small {
    padding: 12px;
  }

  .mobile-pad-medium {
    padding: 24px;
  }

  .mobile-pad-large {
    padding: 40px;
  }

  .mobile-pad-xlarge {
    padding: 64px;
  }

  .tablet-pad-vertical-xlarge {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .mobile-pad-vertical-small {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .mobile-pad-vertical-medium {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .mobile-pad-vertical-large {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .mobile-pad-vertical-xlarge {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .mobile-pad-horizontal-large {
    padding-right: 40px;
    padding-left: 40px;
  }

  .mobile-pad-horizontal-medium {
    padding-right: 24px;
    padding-left: 24px;
  }

  .mobile-pad-horizontal-small {
    padding-right: 12px;
    padding-left: 12px;
  }

  .grid-8-col {
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .fs-styleguide-hero-img {
    width: 100%;
    max-width: 40vh;
  }

  .fs-styleguide-grid {
    max-height: 400px;
  }

  .fs-grid-3-col {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .logo-link {
    padding-left: 0px;
  }

  .navigation {
    padding: 20px 30px;
  }

  .image-logo {
    bottom: 0px;
    max-width: 50%;
  }

  .cart-wrapper {
    display: none;
    overflow: auto;
  }

  .cart-items-wrapper {
    overflow: auto;
  }

  .cart_exit-icon {
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end;
  }

  .cart_flex-wrapper {
    width: auto;
    max-width: 60vw;
    min-width: 0px;
  }

  .button-4.cart {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 70px;
    height: 70px;
  }

  .section {
    margin-right: 15px;
    margin-left: 15px;
  }

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

  .columns-2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

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

  .striekthrough-red {
    width: 90%;
  }

  .text-xlarge {
    font-size: 20px;
  }

  .text-xlarge.text-orange.wiz-text-large {
    font-size: 28px;
  }

  .story_image.left {
    margin-left: 0px;
  }

  .blurb-card {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .horizontal-angle {
    display: none;
  }

  .blurb_v2 {
    overflow: visible;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .slider-horizontal {
    width: 100%;
    max-width: 87vw;
    margin-right: auto;
    margin-left: auto;
  }

  .horizontal-content-block {
    width: 100%;
    padding: 45px;
  }

  .horizontal-fixed-height {
    min-height: 69px;
  }

  .text-author-job {
    font-size: 16px;
  }

  .blurb-image-wrap {
    display: none;
    width: 100%;
    height: 280px;
  }

  .cart_exit-link {
    padding: 10px;
  }

  .cart-wrapper-2 {
    left: auto;
    top: 0%;
    right: 0%;
    bottom: 0%;
    display: none;
    width: 100%;
  }

  .cart-wrap {
    position: fixed;
    left: auto;
    top: 0%;
    right: 0%;
    bottom: auto;
    z-index: 99999;
  }

  .cart_product-image {
    width: 50%;
  }

  .h1.hero {
    width: 80%;
    font-size: 36px;
    line-height: 46px;
  }

  .cart-contents {
    width: 50%;
    max-width: none;
    min-width: auto;
    padding-right: 0px;
    padding-left: 0px;
  }

  .h3.chapters {
    color: #000;
    font-size: 24px;
  }

  .h3.black {
    display: block;
    margin-top: 0px;
    margin-bottom: 50px;
  }

  .container-7 {
    padding-right: 0px;
    padding-left: 0px;
  }

  .colorbox {
    margin-right: 15px;
    margin-bottom: 15px;
    margin-left: 10px;
  }

  .colorbox.blackcolor {
    margin-left: 10px;
  }

  .flex3col {
    width: 100%;
  }

  .flexcolwrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .flex2col {
    width: 100%;
  }

  .heading-13 {
    font-size: 18px;
  }

  .tabs-menu-3 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding-right: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .part-tab {
    width: 100%;
  }

  .p.chapter {
    max-width: 50ch;
    padding-top: 0px;
    padding-bottom: 0px;
    font-size: 18px;
  }

  .p.chapter.accordion {
    padding-top: 0px;
  }

  .faq {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #bcbcbc;
  }

  .part-title-wrap {
    padding-bottom: 0px;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .part-number-wrap-2 {
    background-color: #000;
  }

  .part-parent {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .part-text {
    color: #101010;
  }

  .faq-container {
    display: block;
    margin-bottom: 0px;
  }

  .contain {
    padding-right: 30px;
    padding-left: 30px;
  }

  .contain.chapters-wrap {
    margin-bottom: 0px;
    padding-right: 25px;
    padding-left: 25px;
    border-bottom-style: none;
  }
}

@media screen and (max-width: 479px) {
  h5 {
    color: #fff;
  }

  p {
    margin-top: 10px;
    color: #1a1a1a;
  }

  .grid-row {
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }

  .grid-row.gap-small {
    grid-row-gap: 8px;
  }

  .grid-row.gap-large {
    grid-row-gap: 32px;
  }

  .grid-row.gap-medium {
    grid-row-gap: 24px;
  }

  .grid-row.gap-xlarge {
    grid-row-gap: 40px;
  }

  .grid-2-col {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .grid-3-col {
    grid-auto-flow: row;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
  }

  .grid-4-col {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .hide-mobile {
    display: none;
  }

  .show-mobile {
    display: block;
  }

  .container.cart_contain {
    overflow: auto;
  }

  .container.background-layer-parallax_penguin {
    background-image: url('../images/PenguinSetsSail_FrontCover.png'), -webkit-gradient(linear, left top, left bottom, color-stop(30%, #fefdf0), to(#61919b));
    background-image: url('../images/PenguinSetsSail_FrontCover.png'), linear-gradient(180deg, #fefdf0 30%, #61919b);
    background-position: 50% 69%, 0px 0px;
    background-size: 621px, auto;
    background-repeat: no-repeat, repeat;
    background-attachment: fixed, scroll;
  }

  .home-content {
    max-width: 100%;
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }

  .card-layout {
    grid-auto-columns: 100%;
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }

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

  .footer_navigation-wrapper {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .grid-8-col {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .fs-grid-3-col {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .logo-link {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .menu-button {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .menu-button.w--open {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .navigation {
    padding: 12px 10px;
  }

  .image-logo {
    position: static;
    max-width: 70%;
    padding-left: 0px;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }

  .image-logo.margin-left-small {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }

  .cart-wrapper {
    display: none;
  }

  .navigation-wrap {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .cart_flex-wrapper {
    max-width: 75vw;
  }

  .menu {
    margin-left: 15px;
  }

  .tab-link_product-details.w--current {
    background-color: #000;
    color: #e4a24e;
  }

  .tab-link-tab-2 {
    background-color: #b6b6b6;
  }

  .container-6 {
    padding-top: 0px;
  }

  .logo-image {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    max-height: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .story_image {
    min-width: 0px;
  }

  .image-author {
    position: static;
    display: block;
  }

  .image-author.margin-bottom-medium {
    width: 80px;
  }

  .blurb_title-wrapper {
    width: 100vw;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .right-arrow {
    position: absolute;
    left: auto;
    top: 0px;
    right: -25px;
    bottom: -3%;
    background-color: transparent;
    font-size: 30px;
  }

  .blurb_v2 {
    min-height: 400px;
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .author-block {
    margin-top: 15px;
  }

  .left-arrow {
    left: -25px;
    top: 0px;
    right: auto;
    bottom: -3%;
    background-color: transparent;
    font-size: 30px;
  }

  .horizontal-content-block {
    padding: 20px 15px;
  }

  .blurb-card-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .image-3 {
    width: 20px;
    max-width: none;
  }

  .heading-11 {
    font-size: 18px;
  }

  .cart-wrapper-2 {
    display: none;
    overflow: scroll;
  }

  .cart_product-image {
    max-width: 50%;
  }

  .cart-contents {
    width: 80%;
    height: auto;
    max-width: none;
    min-width: auto;
  }

  .h3.chapters {
    width: auto;
    font-size: 5vw;
  }

  .hero_content-wrapper {
    padding-right: 20px;
    padding-left: 20px;
  }

  .icon {
    color: #e4a24e;
  }

  .icon-2 {
    color: #e4a24e;
  }

  .text-block-13 {
    color: #e4a24e;
  }

  .cta-button {
    font-size: 15px;
  }

  .small-p {
    font-size: 13px;
    line-height: 22px;
  }

  .tabs-menu-3 {
    padding-right: 0px;
  }

  .p.chapter {
    font-size: 16px;
  }

  .part-parent {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .faq-container {
    display: block;
  }
}

#w-node-_2e16e5b9-b73d-f1be-62bc-9b703cc4aceb-f8930b0f {
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
}

#w-node-bc6393a6-4e2a-6c52-5477-b9680f7a0e25-f8930b0f {
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-row: 2;
  grid-row-start: 2;
  -ms-grid-row-span: 1;
  grid-row-end: 3;
}

#w-node-_252284c0-320d-6857-fbe0-60ae7cb5b739-f8930b0f {
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-row: 3;
  grid-row-start: 3;
  -ms-grid-row-span: 1;
  grid-row-end: 4;
}

#w-node-dae5ec0a-5aa4-0234-66f3-7f9077652c94-f8930b0f {
  -webkit-align-self: end;
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
}

#w-node-dcc30b07-50a6-85d2-7e72-320c2b343bd2-f8930b0f {
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row-align: center;
  align-self: center;
}

#w-node-dcc30b07-50a6-85d2-7e72-320c2b343bd3-f8930b0f {
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
}

#w-node-dcc30b07-50a6-85d2-7e72-320c2b343bd5-f8930b0f {
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-row: 2;
  grid-row-start: 2;
  -ms-grid-row-span: 2;
  grid-row-end: 4;
}

#w-node-eb618d09-81b8-1b7f-30b0-0ccc8cce0a10-f8930b0f {
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row-align: center;
  align-self: center;
}

#w-node-eb618d09-81b8-1b7f-30b0-0ccc8cce0a11-f8930b0f {
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
}

#w-node-eb618d09-81b8-1b7f-30b0-0ccc8cce0a13-f8930b0f {
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-row: 2;
  grid-row-start: 2;
  -ms-grid-row-span: 2;
  grid-row-end: 4;
}

#w-node-_97ff7c73-7db3-43b4-3a50-d49d6e0aad04-f8930b0f {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -ms-grid-column-align: end;
  justify-self: end;
}

#w-node-_78eacc7c-30d7-4b68-ecbb-c47aa55c071e-f8930b0f {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -ms-grid-column-align: center;
  justify-self: center;
}

#w-node-_5664c35d-2a74-5e3b-99bd-dc8778a974ea-f8930b0f {
  -ms-grid-row-align: center;
  align-self: center;
  -ms-grid-column-align: center;
  justify-self: center;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
}

#w-node-_5664c35d-2a74-5e3b-99bd-dc8778a974f7-f8930b0f {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -ms-grid-column-align: center;
  justify-self: center;
}

#w-node-b1b2d6ce-04b2-b1e3-23f6-fae06f57856b-f8930b0f {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -ms-grid-column-align: end;
  justify-self: end;
}

#w-node-b1b2d6ce-04b2-b1e3-23f6-fae06f578578-f8930b0f {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -ms-grid-column-align: center;
  justify-self: center;
}

#w-node-d8baa1e7-a23d-710e-e9bc-6e7a152fb084-699e34d1 {
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
}

#w-node-_14b7334b-3bbc-fc88-7600-48e421978363-699e34d1 {
  -ms-grid-column: 2;
  grid-column-start: 2;
  -ms-grid-column-span: 1;
  grid-column-end: 3;
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
}

@media screen and (max-width: 991px) {
  #w-node-_9f2c4cd4-7d9d-652a-ff08-1dd1e8cc3d02-f8930b0f {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_2e16e5b9-b73d-f1be-62bc-9b703cc4aceb-f8930b0f {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row: 2;
    grid-row-start: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 3;
  }

  #w-node-eb618d09-81b8-1b7f-30b0-0ccc8cce0a0f-f8930b0f {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row: 1;
    grid-row-start: 1;
    -ms-grid-row-span: 1;
    grid-row-end: 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-bc6393a6-4e2a-6c52-5477-b9680f7a0e25-f8930b0f {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row: 2;
    grid-row-start: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 3;
  }

  #w-node-_8946b1f7-0213-399f-7c0e-79a0ad1747f1-f8930b0f {
    -ms-grid-column-align: start;
    justify-self: start;
  }

  #w-node-_9f2c4cd4-7d9d-652a-ff08-1dd1e8cc3d02-f8930b0f {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }

  #w-node-_14b7334b-3bbc-fc88-7600-48e421978363-699e34d1 {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row: 2;
    grid-row-start: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 3;
  }
}

@font-face {
  font-family: 'Hvd bodedo';
  src: url('../fonts/HVD_Bodedo.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Minionpro';
  src: url('../fonts/MinionPro-Bold.otf') format('opentype'), url('../fonts/MinionPro-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Minionpro';
  src: url('../fonts/MinionPro-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Minionpro';
  src: url('../fonts/MinionPro-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Minionpro';
  src: url('../fonts/MinionPro-Semibold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}