@font-face {
  font-family: Calibri;
  src: url('../fonts/Calibri-Bold.TTF') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Calibri;
  src: url('../fonts/Calibri-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Calibri;
  src: url('../fonts/Calibri-Light-Italic.ttf') format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Calibri;
  src: url('../fonts/Calibri-Light.ttf') format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Calibri;
  src: url('../fonts/Calibri-Italic.ttf') format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Calibri;
  src: url('../fonts/Calibri-Bold-Italic.ttf') format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Acier displaynoir;
  src: url('../fonts/Acier-DisplayNoir.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Acier textnoir;
  src: url('../fonts/Acier-TextNoir.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Acier displaysolid;
  src: url('../fonts/Acier-DisplaySolid.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Acier textgris;
  src: url('../fonts/Acier-TextGris.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Acier displayoutline;
  src: url('../fonts/Acier-DisplayOutline.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Acier displaygris;
  src: url('../fonts/Acier-DisplayGris.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Acier textoutline;
  src: url('../fonts/Acier-TextOutline.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Acier textsolid;
  src: url('../fonts/Acier-TextSolid.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --rich-yellow: #ecd41a;
  --dark-green: #154a1d;
  --black: black;
  --white: white;
  --light-yellow: #e5e060;
  --light-green: #84cf7a;
  --bc-grey-mid: #6b6b6a;
  --deep-purple: #533859;
}

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

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

body {
  color: #333;
  font-family: Calibri, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  margin-top: 5%;
  margin-bottom: 5%;
  font-size: 40px;
  font-weight: 300;
  line-height: 45px;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 400;
  line-height: 36px;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
}

p {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 24px;
}

a {
  color: var(--rich-yellow);
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: inline-block;
}

figure {
  margin-bottom: 10px;
}

.nav {
  z-index: 99999;
  background-color: var(--dark-green);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100px;
  display: flex;
  position: sticky;
  top: 0;
  box-shadow: 3px 3px 14px #000;
}

.nav-container {
  align-self: auto;
  width: 80%;
  max-width: none;
  height: 100%;
  margin-left: 0;
  margin-right: 0;
  display: flex;
}

.nav-menu, .logo {
  align-items: center;
  height: 100%;
  display: flex;
}

.hero-section {
  background-color: #221e20;
  background-image: linear-gradient(#fff0, #fff0), url('../images/IMG_8928.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 220px;
  min-height: 100px;
  display: flex;
  position: sticky;
  right: -200px;
}

.hero-wrap {
  text-align: left;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 80%;
  display: flex;
}

.section-1 {
  background-color: #ebebeb;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  padding-top: 70px;
  padding-bottom: 70px;
  display: flex;
}

.wrap-1 {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 80%;
  display: flex;
}

.column-1 {
  text-align: center;
  background-color: #fff;
  border-radius: 5px;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  margin: 10px 15px;
  padding: 20px;
  display: flex;
  box-shadow: 0 3px 6px #0003;
}

.subhead-1 {
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
}

.paragraph-3 {
  max-width: 280px;
  font-size: 14px;
  line-height: 20px;
}

.icon {
  margin-top: 10px;
  margin-bottom: 40px;
}

.nav-link {
  color: #fff;
  font-family: Calibri, sans-serif;
}

.nav-link.w--current {
  color: var(--white);
}

.hero-left {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  display: flex;
}

.button {
  color: #000;
  background-color: #fff;
  border-radius: 5px;
  margin-top: 20px;
  padding: 15px 25px;
  font-weight: 500;
  transition: box-shadow .2s;
  box-shadow: 0 1px #0000;
}

.button:hover {
  box-shadow: 0 6px 12px #0003;
}

.class {
  color: #fff;
  background-color: #3b79c3;
  border-radius: 2px;
  margin-left: 2px;
  margin-right: 2px;
  padding: 4px 5px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 12px;
}

.class-section {
  color: #000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
}

.wrap-2 {
  width: 80%;
  display: flex;
}

.logos-section {
  background-color: #d3d3d3;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}

.logos-wrap {
  opacity: .75;
  flex-wrap: wrap;
  justify-content: space-between;
  align-self: center;
  align-items: center;
  width: 80%;
  display: flex;
}

.left-1 {
  width: 50%;
  padding: 50px 20px;
}

.right-1 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.column-1-title {
  margin-bottom: 20px;
}

.left-2 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  display: flex;
}

.right-2 {
  text-align: left;
  width: 50%;
  padding: 50px 20px;
}

.footer-top {
  color: #fff;
  background-color: #6b6b6b;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: Calibri, sans-serif;
  display: flex;
}

.footer-top-wrap {
  flex-direction: row;
  justify-content: space-between;
  width: 80%;
  display: flex;
}

.footer-bottom {
  background-color: #111;
  flex-direction: column;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
}

.footer-bottom-wrap {
  width: 80%;
}

.legal {
  color: #777;
  font-size: 12px;
}

.section-3 {
  flex-direction: column;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
}

.wrap-3 {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 80%;
  display: flex;
}

.column-wrap-1 {
  flex-direction: row;
  justify-content: center;
  align-self: stretch;
  margin-top: 30px;
  margin-left: -15px;
  margin-right: -15px;
  display: flex;
}

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

.subhead-3 {
  text-align: left;
  margin-bottom: 40px;
}

.column-wrap-2 {
  justify-content: center;
  margin-top: 30px;
  margin-left: -20px;
  margin-right: -20px;
  display: flex;
}

.column-2 {
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.heading-4 {
  margin-top: 30px;
}

.heading-2 {
  color: #000;
  font-family: Roboto, sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 36px;
}

.screenshot {
  border-radius: 3px;
  box-shadow: 0 20px 50px #0003;
}

.caption-2 {
  color: #777;
  text-align: center;
  max-width: 320px;
  margin-top: 20px;
  font-size: 13px;
  line-height: 21px;
}

.footer-logo {
  margin-top: 40px;
  margin-bottom: 40px;
}

.footer-link-wrap {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.footer-link {
  color: var(--rich-yellow);
  margin-top: 60px;
  margin-left: 50px;
  text-decoration: none;
}

.hero-right {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  display: flex;
}

.caption-1 {
  color: #00000080;
  text-align: center;
  max-width: 320px;
  margin-top: 20px;
  font-size: 13px;
  line-height: 21px;
}

.customers-logo {
  margin: 10px;
}

.caption-4 {
  color: #777;
  text-align: center;
  max-width: 320px;
  margin-top: 20px;
  font-size: 13px;
  line-height: 21px;
}

.caption-3 {
  color: #777;
  max-width: 320px;
  margin-top: 20px;
  font-size: 13px;
  line-height: 21px;
}

.container {
  max-width: 100vh;
  height: 300px;
  max-height: 700px;
}

.container-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  max-width: 100vh;
  box-shadow: -14px 14px 20px -5px var(--rich-yellow);
  text-align: right;
  background-color: #3d393bc7;
  flex: 0 auto;
  order: 0;
  grid-template-rows: minmax(auto, 1.25fr) auto auto;
  grid-template-columns: 1fr 1.5fr;
  grid-auto-columns: 1fr;
  align-self: center;
  margin: auto auto 166px;
  padding: 20px 60px;
  font-family: Calibri, sans-serif;
  display: grid;
  position: static;
  right: -200px;
}

.paragraph-5 {
  color: var(--rich-yellow);
  text-align: left;
  background-color: #0000;
  margin-left: 5%;
  margin-right: 5%;
  font-family: Calibri, sans-serif;
}

.image {
  background-color: #00000073;
  margin-left: auto;
  margin-right: auto;
}

.heading-6 {
  color: var(--rich-yellow);
  text-align: left;
  margin-left: 5%;
  margin-right: 5%;
  font-family: Acier displaygris, sans-serif;
}

.hero-section-count-down {
  background-color: #ebebeb;
  background-image: url('../images/Road-Mountain-Blush-Cloud-72-cropped.jpg');
  background-position: 50%;
  background-size: cover;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: auto;
  min-height: 100vh;
  display: flex;
  position: sticky;
  right: -200px;
}

.container-3 {
  max-width: 100vh;
  max-height: 800px;
}

.grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: 215px;
  grid-template-columns: 1fr .25fr;
  align-self: center;
  place-items: stretch stretch;
  margin: 0% 5%;
  overflow: visible;
}

.body {
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  font-family: Calibri, sans-serif;
  display: flex;
}

.image-2 {
  object-fit: cover;
  height: auto;
  margin-top: 0;
}

.logo-style-heading {
  color: var(--dark-green);
  background-color: #0000;
  flex: 1;
  align-self: flex-start;
  margin-top: 5%;
  margin-bottom: 0%;
  font-family: Acier textgris, sans-serif;
  font-size: 60px;
  line-height: 60px;
}

.bc-button {
  background-color: var(--rich-yellow);
  max-width: 100%;
  box-shadow: 1px 1px 3px 0 var(--light-yellow);
  color: var(--dark-green);
  text-align: center;
  align-self: stretch;
  margin-top: 5%;
  margin-left: 0;
  display: flex;
  transform: translate(0);
}

.bc-button:hover {
  background-color: var(--light-green);
}

.bc-button:active {
  background-color: var(--light-yellow);
}

.bc-button.blog {
  object-fit: fill;
  justify-content: center;
  align-self: flex-start;
  align-items: center;
  max-width: 100%;
  padding-left: 15%;
  padding-right: 15%;
}

.bc-button._2-0 {
  align-self: auto;
  max-width: 30%;
  padding-left: 50%;
  padding-right: 50%;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.image-3 {
  max-width: 200%;
  margin-top: -260px;
  margin-left: -302px;
}

.paragraph-6 {
  position: relative;
}

.form {
  margin-top: 40px;
}

.container-4 {
  margin-top: 2%;
}

.success-message {
  background-color: var(--rich-yellow);
}

.html-embed {
  margin-top: 50px;
  margin-left: 50px;
}

.container-5 {
  margin-top: 70px;
}

.grid-2 {
  grid-template-rows: 70px auto auto auto auto auto;
}

.dropdown-toggle {
  color: var(--white);
}

.container-6 {
  margin-top: 70px;
}

.section-4 {
  flex-flow: column;
  align-items: baseline;
  height: auto;
  margin-top: 20px;
  display: block;
}

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

.section-5 {
  color: var(--bc-grey-mid);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 5%;
  padding-bottom: 100px;
  display: flex;
}

.section-5:hover {
  box-shadow: 3px 3px 3px #000;
}

.grid-3 {
  grid-template-rows: auto;
  grid-template-columns: 3fr 3fr 3fr 3fr;
  align-items: flex-end;
  margin-left: 5%;
  margin-right: 5%;
  display: flex;
}

.section-6 {
  filter: grayscale();
  margin-top: 40px;
}

.bc-secondary-heading {
  letter-spacing: normal;
  margin-bottom: 0%;
  margin-left: 0;
  font-family: Acier displaysolid, sans-serif;
  font-size: 20px;
}

.bc-secondary-heading.smallscreen {
  text-decoration: none;
}

.section-7 {
  margin-top: 20px;
}

.section-8 {
  background-image: url('../images/Road-Mountain-Blush-Cloud-72-Title-crop.jpg');
  background-position: 50%;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 280px;
  min-height: 100px;
  display: flex;
}

.section-8.heading-1 {
  background-image: url('../images/IMG_8928.jpg');
}

.bc-page-title {
  color: var(--white);
  text-align: center;
  justify-content: center;
  align-items: center;
  font-family: Acier textgris, sans-serif;
  font-size: 60px;
  line-height: 80px;
  display: flex;
}

.bc-page-title.big {
  color: #fff;
  margin-left: -220px;
  margin-right: 220px;
  font-size: 100px;
  font-weight: 400;
}

.bc-page-title.sub {
  text-align: left;
}

.heading-7 {
  letter-spacing: 20px;
  margin-left: 220px;
  margin-right: -220px;
  font-size: 20px;
}

.image-5 {
  margin-top: -2px;
  margin-left: -30px;
}

.service-card:hover {
  box-shadow: 6px 6px 20px 0 var(--bc-grey-mid);
}

.image-6 {
  margin-bottom: 46px;
}

.paragraph-7 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.grid-4 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-left: 0%;
  margin-right: 5%;
}

.section-9 {
  background-color: var(--dark-green);
  align-self: stretch;
  height: 150px;
}

.container-7 {
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.footer-links {
  margin-right: 40px;
}

.link-block {
  margin-top: 40px;
}

.text-block {
  color: var(--rich-yellow);
  flex: none;
  margin-top: 60px;
}

.social-media-small {
  margin-top: 18px;
  margin-left: 70px;
}

.grid-5 {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  margin-left: 5%;
  margin-right: 5%;
}

.grid-6 {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
}

.section-10 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 10vh;
  display: flex;
}

.collection-list-wrapper {
  margin-top: 5%;
  margin-left: 5%;
  margin-right: 5%;
}

.image-8 {
  filter: grayscale();
  border-radius: 400px;
  width: 80%;
  max-width: none;
  margin-top: 5%;
  margin-bottom: 5%;
  margin-left: 5%;
  box-shadow: 1px 1px 3px #000;
}

.grid-7 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  box-shadow: 8px 8px 16px 0 var(--bc-grey-mid);
  grid-template-rows: auto auto auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start;
  margin-bottom: 40px;
  margin-right: 20px;
  display: grid;
}

.heading-8 {
  align-self: flex-start;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 5%;
  font-size: 25px;
}

.product-card {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.product-card.standalone {
  justify-content: flex-start;
}

.product-card.standalone:hover {
  box-shadow: 4px 0 16px #000;
}

.product-card-link-block {
  color: var(--dark-green);
  text-decoration: none;
}

.product-card-link-block:hover {
  box-shadow: 3px 3px 16px #000;
}

.paragraph-8 {
  text-decoration: none;
}

.paragraph-9 {
  margin-bottom: 20px;
  margin-left: 5%;
  margin-right: 5%;
}

.section-11 {
  justify-content: center;
  align-items: center;
  height: auto;
  margin-bottom: 0%;
  padding-top: 10vh;
  padding-bottom: 10vh;
  display: flex;
}

.link {
  color: var(--white);
  text-decoration: none;
}

.social-media-links {
  margin-right: 10px;
}

.container-8 {
  align-items: center;
  margin-top: 41px;
  display: flex;
}

.heading-9 {
  margin-top: auto;
  margin-left: 5%;
  font-family: Calibri, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
}

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

.image-9 {
  filter: grayscale();
  margin-top: 0;
}

.image-10 {
  margin-top: 0;
}

.paragraph-11 {
  margin-top: -98px;
}

.slider {
  height: 600px;
  margin-top: 5%;
  margin-bottom: 10%;
}

.image-11 {
  object-fit: cover;
}

.grid-9 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 5%;
}

.navbartitile {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 10px;
  font-family: Acier textgris, sans-serif;
  font-size: 25px;
}

.grid-10 {
  grid-column-gap: 3px;
  grid-template-rows: auto;
  grid-template-columns: .25fr .75fr 1fr;
  margin-top: 20px;
}

.heading-10 {
  color: var(--white);
  letter-spacing: 1.2px;
  margin-top: -10px;
  margin-left: 10px;
  font-size: 15px;
  font-weight: 300;
}

.heading-11 {
  color: #fff;
  margin-top: -30px;
}

.paragraph-12 {
  margin-top: 80px;
}

.quote-box {
  background-color: var(--rich-yellow);
  box-shadow: 2px 2px 8px 0 var(--dark-green);
  color: var(--dark-green);
  text-align: left;
  object-fit: scale-down;
  margin-top: 0%;
  margin-left: 0;
  margin-right: 0;
  padding: 10px 20% 10px 20px;
  font-family: Acier displaygris, sans-serif;
  font-size: 30px;
  position: static;
}

.quote-box.small {
  margin-top: 111px;
  margin-bottom: 0;
  padding: 4%;
  font-size: 30px;
}

.quote-box.small.mobile.portrait {
  text-align: left;
}

.quote-box.for-title {
  color: #fff;
  text-align: left;
  background-color: #ecd41a80;
  margin-top: -3%;
  padding-top: 30px;
}

.product-bulets {
  text-transform: uppercase;
  background-color: #9292925e;
  margin-left: 10px;
  margin-right: 10px;
  padding-left: 10px;
  font-weight: 300;
  box-shadow: 1px 1px 3px #000;
}

.product-bulets.glow {
  box-shadow: 1px 1px 3px 0 var(--light-yellow);
}

.section-12 {
  margin-top: 5%;
  margin-bottom: 15%;
}

.div-block, .container-10 {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.container-11 {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.threecardgrid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  align-self: flex-start;
  justify-items: start;
}

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

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

.paragraph-14 {
  margin: -90px 5% 0 -100px;
}

.heading-13 {
  margin-left: 0;
}

.grid-11 {
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr;
  grid-auto-rows: 220px;
  margin-top: 2%;
}

.section-13 {
  margin-bottom: 40px;
}

.html-embed-2 {
  align-self: center;
  max-width: 80vw;
}

.container-12 {
  max-width: 90vw;
  box-shadow: 11px 11px 20px 0 var(--rich-yellow);
  background-color: #3d393bba;
  flex-direction: column;
  align-self: center;
  align-items: flex-start;
  margin-top: 5%;
  margin-bottom: 5%;
  padding: 2% 5% 5%;
  display: flex;
}

.form-block-2 {
  background-color: var(--deep-purple);
  width: 100%;
  max-width: 400px;
  padding: 32px;
  position: relative;
}

.pp-heading-1 {
  margin-top: 40px;
  margin-left: 2%;
  font-weight: 400;
}

.pp-paragraph-2 {
  margin-left: 5%;
  margin-right: 5%;
}

.pp-heading-2 {
  margin-top: 20px;
  padding-left: 4%;
  font-style: normal;
  font-weight: 400;
}

.pp-paragraph-1 {
  margin-left: 3%;
  margin-right: 3%;
}

.pp-heading-3 {
  padding-left: 5%;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}

.pp-paragraph-3 {
  margin-left: 6%;
  margin-right: 6%;
}

.section-14 {
  height: auto;
  min-height: 300px;
  max-height: 300px;
}

.slider-2 {
  height: 100%;
}

.container-13 {
  max-height: 600px;
}

.slider-3 {
  min-height: 600px;
  max-height: 600px;
}

.paragraph-15 {
  align-self: flex-start;
  margin-top: -10px;
  margin-bottom: 10px;
  padding-right: 10%;
  font-size: 18px;
  font-weight: 300;
  line-height: 35px;
  text-decoration: none;
}

.slider-4 {
  object-fit: fill;
  flex-flow: row;
  align-items: center;
  min-height: 700px;
  display: flex;
  overflow: visible;
}

.image-14 {
  -webkit-text-fill-color: inherit;
  object-fit: fill;
  background-clip: border-box;
  width: 100%;
  position: relative;
  top: -120px;
}

.slider-5 {
  min-height: 500px;
  margin-left: 5%;
  margin-right: 5%;
  display: flex;
}

.section-15 {
  margin-top: 0;
  margin-bottom: 0%;
  padding-top: 10vh;
  padding-bottom: 10vh;
}

.rich-text-block {
  margin-top: 5%;
  margin-right: 5%;
}

.button-2 {
  background-color: var(--rich-yellow);
  color: var(--bc-grey-mid);
  padding-left: 40px;
  padding-right: 40px;
}

.container-14 {
  margin-top: 2%;
  margin-bottom: 2%;
}

.collection-list-wrapper-2 {
  flex: 0 auto;
  justify-content: center;
  align-self: center;
  align-items: flex-end;
  margin-left: 5%;
  margin-right: 5%;
  display: block;
}

.collection-item {
  flex-direction: column;
  flex: 1;
  order: 0;
  margin-bottom: 5%;
  display: block;
}

.blogpost-titles {
  font-size: 24px;
  line-height: 26px;
}

.collection-list {
  object-fit: fill;
  flex-direction: column;
  align-items: flex-end;
  display: block;
}

.image-15 {
  max-width: 100%;
  margin-top: 4%;
  padding-bottom: 4%;
}

.video {
  min-width: 98vh;
  min-height: 100px;
  margin-bottom: -66px;
}

.section-16 {
  background-color: var(--light-green);
  align-self: stretch;
  width: 100vw;
  margin-bottom: 0%;
  padding-left: 10%;
  padding-right: 10%;
}

.heading-14 {
  margin-top: 5%;
  margin-bottom: 5%;
}

.section-17 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 5%;
  margin-bottom: 5%;
  display: flex;
}

.container-15 {
  margin-top: 0;
}

.image-16 {
  max-width: 80%;
  height: 70vh;
  margin-top: 0;
}

.container-16 {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 100%;
  display: flex;
}

.section-21 {
  margin-top: 5%;
}

.section-22 {
  margin-top: 5%;
  margin-bottom: 5%;
}

.container-17 {
  flex-direction: column;
  justify-content: flex-start;
  display: flex;
}

.image-17 {
  align-self: center;
  margin-left: 0%;
  margin-right: 0%;
}

.mask {
  object-fit: fill;
  flex: 1;
}

.image-18 {
  width: 100%;
  height: auto;
}

.image-19 {
  align-self: center;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
  top: auto;
}

.image-20, .image-21 {
  width: 100%;
}

.section-23 {
  min-height: 50vh;
}

.link-3 {
  display: block;
}

.grid-container {
  flex-direction: row;
  justify-content: center;
  align-self: auto;
  align-items: flex-start;
  margin-left: 10%;
  margin-right: 10%;
  display: flex;
}

.div-block-2 {
  margin-right: 20px;
}

.link-4 {
  color: #3452b4;
}

.slide-wrapper {
  display: flex;
}

.collection-list-wrapper-3 {
  width: 90%;
  margin-top: 10vh;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 60%;
  padding-top: 20px;
  display: flex;
  position: relative;
}

.client-avatar {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10000px;
  width: 120px;
  height: 120px;
  margin-bottom: 0;
  margin-right: 0;
}

.text-block-2 {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 700;
}

.avatar {
  background-color: var(--light-green);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 25%;
  margin-right: 20px;
  padding: 20px;
  display: flex;
}

.collection-item-2 {
  border-radius: 10px;
  flex-direction: row;
  justify-content: space-around;
  align-items: stretch;
  margin-bottom: 40px;
  display: flex;
  box-shadow: 1px 1px 12px 2px #00000059;
}

.heading-15 {
  color: #000;
  text-align: center;
  font-family: Calibri, sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
}

.text-block-3 {
  text-align: center;
  font-size: 18px;
}

.wrapper {
  width: 50%;
}

.nav-wrapper {
  color: #84cf7a;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  display: flex;
}

.rich-text-block-2 {
  margin-bottom: 3%;
  font-size: 15px;
}

.paragraph-17 {
  margin-top: 2%;
}

.bc-enquire-button-2-0 {
  background-color: var(--rich-yellow);
  color: var(--bc-grey-mid);
  flex: 0 auto;
  align-self: flex-start;
  margin-top: 5%;
  margin-left: 0%;
  margin-right: 5%;
  padding-left: 40px;
  padding-right: 40px;
  display: block;
}

.container-18 {
  flex-direction: column;
  display: flex;
}

.container-19 {
  flex-flow: column;
  max-width: 80%;
  display: flex;
}

.button-3 {
  background-color: var(--rich-yellow);
  color: var(--dark-green);
  margin-top: 5%;
  margin-bottom: 5%;
}

.button-4 {
  float: none;
  background-color: var(--rich-yellow);
  color: var(--white);
  display: inline;
}

.button-5 {
  background-color: var(--rich-yellow);
  align-self: flex-start;
}

.button-6 {
  background-color: var(--rich-yellow);
  color: var(--bc-grey-mid);
  align-self: flex-start;
}

.button-7 {
  background-color: var(--rich-yellow);
  object-fit: none;
  flex-direction: column;
  justify-content: flex-start;
  align-self: flex-start;
  align-items: flex-start;
  max-width: none;
  margin: 5% 10px 5% 0%;
  padding-left: 100px;
  padding-right: 100px;
  display: flex;
  position: relative;
  left: auto;
}

.button-8, .button-9 {
  background-color: var(--rich-yellow);
  align-self: flex-start;
}

.image-23 {
  margin-top: 2%;
}

.text-span, .text-span-2 {
  color: var(--bc-grey-mid);
}

.paragraph-20 {
  margin-bottom: 5%;
  margin-left: 5%;
}

.section-24 {
  background-color: #92929275;
}

.container-20 {
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 5%;
  display: flex;
}

.container-21 {
  display: block;
}

.image-24 {
  margin-bottom: 5%;
}

.paragraph-21 {
  margin-top: 0%;
}

.section-25 {
  margin-top: 5%;
}

.body-of-text h2 {
  font-size: 24px;
  line-height: 1.2;
}

.body-of-text a {
  color: var(--light-yellow);
}

.doodle-container {
  width: 100%;
  max-width: 1920px;
  margin: 2% auto 32px;
  position: relative;
  overflow: hidden;
}

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

.doodle-legend {
  text-align: center;
  font-style: italic;
}

.doodle-legend.hide-desktop {
  display: none;
}

.pinch-gif {
  width: 300px;
  height: 150px;
}

.pinch-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-height: 250px;
  display: none;
  position: absolute;
  inset: 0%;
}

.lottie-animation {
  width: 100%;
  height: 100%;
}

.email-modal {
  z-index: 999;
  background-color: #ffffffbf;
  width: 100vw;
  height: 100vh;
  display: flex;
  position: fixed;
  inset: 0%;
  overflow: visible;
}

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

.email-modal-content {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-top: 5%;
  display: flex;
}

.email-form-message {
  background-color: var(--white);
  color: var(--black);
  text-align: center;
  margin-bottom: 16px;
  padding: 8px 16px;
  font-size: 16px;
}

.success-message-2 {
  background-color: #ffdede;
}

.email-close-button {
  background-color: var(--rich-yellow);
  cursor: pointer;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  display: flex;
  position: absolute;
  inset: -16px -16px auto auto;
  overflow: hidden;
}

.text-block-4 {
  font-weight: 700;
}

.email-field-text {
  color: var(--black);
  text-align: left;
  background-color: #0000;
  margin-left: 5%;
  margin-right: 5%;
  font-family: Calibri, sans-serif;
}

.podcast-thumb {
  max-width: 100%;
  margin-top: 4%;
  padding-bottom: 4%;
}

.mail-form-link {
  color: var(--black);
}

.doodle-wrapper {
  max-width: 100%;
  max-height: 700px;
  overflow: hidden;
}

.container-22 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.video-2 {
  overflow: visible;
}

.container-23 {
  justify-content: flex-start;
  display: flex;
}

.video-5 {
  opacity: 1;
  outline-offset: 0px;
  mix-blend-mode: normal;
  outline: 3px #0000;
}

.paragraph-22 {
  color: var(--dark-green);
}

@media screen and (min-width: 1280px) {
  .nav {
    height: 100px;
  }

  .footer-link {
    margin-top: auto;
  }

  .container-2 {
    grid-template-columns: .75fr 1.5fr;
  }

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

  .logo-style-heading {
    background-color: #0000;
    margin-bottom: 40px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    font-size: 50px;
    transform: translate(0);
  }

  .section-5 {
    margin-top: 40px;
  }

  .section-8 {
    height: 280px;
  }

  .bc-page-title {
    font-size: 60px;
  }

  .bc-page-title.big {
    margin-top: 2%;
  }

  .image-5 {
    margin-left: 0%;
  }

  .paragraph-7 {
    margin-top: 20px;
  }

  .grid-4 {
    grid-template-columns: 1fr 1fr 1fr;
    margin-left: 5%;
  }

  .section-9 {
    flex-direction: column;
    justify-content: center;
    height: 100px;
    display: flex;
  }

  .text-block {
    margin-top: auto;
  }

  .section-11 {
    margin-top: 5%;
    padding-top: 0;
  }

  .image-9 {
    -webkit-text-fill-color: inherit;
    background-clip: border-box;
    margin-top: -20px;
  }

  .image-10 {
    margin-top: -120px;
  }

  .navbartitile {
    color: var(--white);
    align-self: flex-start;
    margin-left: 0;
    font-family: Acier textgris, sans-serif;
    font-size: 30px;
  }

  .grid-10 {
    grid-column-gap: 0px;
    grid-template-rows: auto;
    grid-template-columns: .25fr .5fr 1fr;
    place-content: center start;
  }

  .heading-10 {
    color: var(--white);
    letter-spacing: 1.2px;
    align-self: flex-start;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    font-size: 15px;
    font-weight: 300;
  }

  .container-9 {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }

  .heading-11 {
    letter-spacing: 8px;
    font-weight: 300;
  }

  .paragraph-12 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .image-12 {
    margin-top: -20px;
  }

  .quote-box {
    background-color: #f7c6c59c;
    margin-top: 0%;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    font-family: Acier textgris, sans-serif;
    font-size: 40px;
    box-shadow: 4px 4px 20px -7px #000;
  }

  .quote-box.for-title {
    background-color: var(--rich-yellow);
    text-align: center;
    padding-bottom: 30px;
    font-size: 50px;
  }

  .heading-12 {
    margin-left: 10px;
  }

  .product-bulets {
    box-shadow: 3px 3px 4px -3px var(--dark-green);
    text-transform: uppercase;
    background-color: #9292925e;
    margin-left: 10px;
    margin-right: 10px;
    padding-left: 10px;
    font-weight: 400;
  }

  .product-bulets.glow {
    box-shadow: 4px 4px 4px -3px var(--light-yellow);
  }

  .threecardgrid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .fourcardcrid {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .paragraph-15 {
    margin-top: 0;
    padding-top: 0;
  }

  .image-14 {
    top: 0;
  }

  .slider-5 {
    background-color: #0000;
    min-height: 100vh;
  }

  .section-15 {
    margin-top: 0;
    transition: opacity .2s;
    position: static;
  }

  .button-2 {
    color: var(--black);
    padding: 20px 100px;
    font-size: 18px;
  }

  .html-embed-4 {
    margin-top: 10%;
    margin-bottom: 10%;
  }

  .collection-list-wrapper-2, .collection-list {
    display: block;
  }

  .section-16 {
    background-color: var(--white);
  }

  .image-16 {
    margin-top: 0;
  }

  .collection-list-wrapper-3 {
    width: 85%;
  }

  .nav-wrapper {
    justify-content: space-around;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .bc-enquire-button-2-0 {
    margin-left: 0%;
  }

  .paragraph-19 {
    margin-top: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 18px;
  }

  .grid-12 {
    grid-template-areas: "Area";
  }

  .grid-13 {
    grid-template-areas: "Area";
    grid-auto-flow: row;
  }

  .video-4 {
    margin-bottom: 5%;
    bottom: 5%;
  }

  .video-5 {
    margin-bottom: 5%;
  }
}

@media screen and (min-width: 1440px) {
  .grid {
    font-size: 20px;
  }

  .logo-style-heading {
    text-align: left;
    font-size: 60px;
  }

  .bc-page-title.big {
    margin-top: 2%;
  }

  .grid-4 {
    grid-template-columns: 1fr 1fr 1fr;
    margin-left: 0%;
    margin-right: 0%;
  }

  .paragraph-12 {
    margin-top: 40px;
  }

  .quote-box {
    background-color: var(--rich-yellow);
    margin-top: 0%;
    padding-top: 15px;
  }

  .quote-box.for-title {
    text-align: left;
    margin-bottom: 40px;
    padding-left: 5%;
    font-size: 50px;
  }

  .paragraph-13 {
    margin-top: 40px;
  }

  .threecardgrid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .button-2 {
    padding: 20px 100px;
  }

  .collection-list-wrapper-2, .collection-list {
    display: block;
  }

  .image-16 {
    margin-top: 0;
  }

  .paragraph-16 {
    font-size: 15px;
  }

  .div-block-2 {
    flex-direction: column;
    align-self: flex-start;
    display: flex;
  }

  .collection-list-wrapper-3 {
    width: 75%;
  }

  .bc-enquire-button-2-0 {
    margin-left: 0%;
  }
}

@media screen and (min-width: 1920px) {
  .nav {
    justify-content: center;
    display: flex;
  }

  .nav-container {
    justify-content: flex-start;
  }

  .nav-menu {
    text-align: left;
    flex-wrap: nowrap;
    flex: 0 auto;
    order: 0;
    justify-content: flex-end;
    align-self: auto;
    align-items: center;
    display: flex;
  }

  .grid {
    grid-template-rows: auto 268px;
    margin-top: 0%;
  }

  .bc-button.blog {
    max-width: 100%;
  }

  .bc-secondary-heading.smallscreen {
    border-radius: 7px;
  }

  .bc-page-title.big {
    margin-top: 2%;
    padding-bottom: 51px;
  }

  .grid-4 {
    grid-template-columns: 1fr 1fr 1fr;
    margin-left: 0%;
  }

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

  .grid-7 {
    grid-template-columns: .25fr 1fr;
  }

  .product-card-link-block {
    border: 0px solid var(--light-yellow);
    border-radius: 0;
  }

  .section-11, .heading-9 {
    margin-top: 5%;
  }

  .image-10 {
    margin-top: -200px;
  }

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

  .paragraph-12 {
    margin-top: 140px;
  }

  .quote-box {
    margin-top: 0%;
  }

  .paragraph-13 {
    margin-top: 140px;
  }

  .threecardgrid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .heading-13 {
    margin-left: 20px;
  }

  .image-14 {
    object-fit: fill;
    width: 100%;
    height: auto;
    top: 0;
  }

  .slider-5 {
    min-height: 100vh;
  }

  .section-15 {
    margin-top: 0%;
  }

  .button-2 {
    padding: 20px 100px;
    font-size: 20px;
  }

  .collection-list-wrapper-2, .collection-list {
    display: block;
  }

  .image-16 {
    margin-top: 0;
  }

  .image-18 {
    width: 100%;
    position: relative;
    top: -157px;
  }

  .image-19 {
    width: 100%;
    margin-top: 0;
    padding-top: 0;
    position: relative;
    top: -124px;
    right: -13px;
    overflow: visible;
  }

  .image-20 {
    width: 100%;
    position: relative;
    top: -129px;
  }

  .image-21 {
    width: 100%;
    position: relative;
    top: -146px;
  }

  .paragraph-16 {
    letter-spacing: normal;
    object-fit: fill;
    margin-top: 43px;
    font-size: 15px;
    line-height: 40px;
  }

  .image-22 {
    object-fit: contain;
    display: block;
  }

  .grid-container {
    justify-content: center;
    align-items: flex-start;
  }

  .div-block-2 {
    height: auto;
  }

  .collection-list-wrapper-3 {
    width: 80%;
  }

  .avatar {
    background-color: #f7c6c561;
  }

  .rich-text-block-2 {
    font-size: 15px;
  }

  .bc-enquire-button-2-0 {
    margin-left: 0%;
  }
}

@media screen and (max-width: 991px) {
  .hero-section {
    background-position: 50%;
    background-repeat: repeat;
    background-size: auto;
    background-attachment: scroll;
  }

  .logos-wrap {
    justify-content: center;
  }

  .column-wrap-1 {
    flex-direction: column;
  }

  .column-wrap-2 {
    flex-wrap: wrap;
  }

  .column-2 {
    flex: 0 auto;
    width: 50%;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .container-2 {
    object-position: 50% 50%;
    left: auto;
    right: auto;
  }

  .hero-section-count-down {
    background-position: 50%;
    background-repeat: repeat;
    background-size: auto;
    background-attachment: scroll;
  }

  .grid {
    align-self: stretch;
  }

  .bc-secondary-heading.smallscreen {
    font-size: 15px;
  }

  .bc-page-title {
    font-size: 60px;
  }

  .image-5 {
    margin-top: -2px;
  }

  .service-card {
    flex-direction: column;
    justify-content: flex-end;
    display: flex;
  }

  .grid-4 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    margin-left: 5%;
    margin-right: 5%;
  }

  .icon-2 {
    color: var(--rich-yellow);
    margin: -86px 0 77px 200px;
  }

  .section-9 {
    padding-left: 5%;
  }

  .icon-3 {
    color: var(--rich-yellow);
    margin-top: 40px;
  }

  .grid-5 {
    flex-direction: row;
    grid-template-rows: 50px 50px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    justify-content: center;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
  }

  .section-11 {
    align-items: stretch;
    margin-top: 0;
    padding-top: 10vh;
  }

  .container-8 {
    flex-direction: column;
  }

  .slider {
    height: 450px;
  }

  .navbartitile, .heading-10 {
    margin-left: 10px;
  }

  .paragraph-12 {
    margin-top: -50px;
  }

  .image-12 {
    margin-top: -541px;
  }

  .quote-box {
    align-self: stretch;
    margin-top: 2%;
  }

  .paragraph-13 {
    margin-top: -420px;
  }

  .fourcardcrid {
    grid-template-columns: 1fr;
  }

  .paragraph-14 {
    margin-top: -48px;
    margin-left: -3px;
  }

  .heading-13 {
    margin-left: -20px;
  }

  .image-14 {
    position: absolute;
    inset: 0%;
  }

  .section-15 {
    margin-top: 5%;
    padding-top: 0;
  }

  .video {
    min-width: auto;
  }

  .section-16 {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .container-15 {
    margin-top: 0;
  }

  .image-16 {
    height: auto;
    margin-top: 0;
  }

  .image-19 {
    object-fit: none;
    position: absolute;
    inset: 0%;
    overflow: auto;
  }

  .image-20 {
    padding-top: 0;
  }

  .grid-container {
    flex-direction: column;
    align-items: flex-end;
  }

  .right-arrow, .left-arrow {
    display: none;
  }

  .slide-nav {
    background-color: var(--white);
  }

  .wrapper {
    width: auto;
  }

  .bc-enquire-button-2-0 {
    margin-left: 5%;
  }
}

@media screen and (max-width: 767px) {
  .hero-section {
    height: auto;
    min-height: 150px;
  }

  .hero-wrap {
    flex-direction: column;
    flex: 1;
  }

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

  .hero-left {
    text-align: center;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .wrap-2 {
    flex-direction: column;
  }

  .wrap-2.a {
    flex-direction: column-reverse;
  }

  .left-1 {
    text-align: center;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .right-1 {
    width: 100%;
  }

  .left-2 {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .right-2 {
    text-align: center;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .heading-3, .subhead-3 {
    text-align: center;
  }

  .footer-link {
    flex: none;
    margin-top: 20px;
    margin-left: 10px;
    font-size: 7px;
  }

  .hero-right {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .container-2 {
    max-width: 80%;
    margin-top: 5%;
  }

  .hero-section-count-down {
    height: auto;
  }

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

  .logo-style-heading {
    margin-left: 5%;
  }

  .bc-button._2-0 {
    align-self: stretch;
    max-width: none;
    margin-left: 5%;
    margin-right: 5%;
  }

  .html-embed {
    display: none;
  }

  .bc-secondary-heading.smallscreen {
    letter-spacing: normal;
    white-space: normal;
    font-size: 15px;
  }

  .section-8 {
    padding-left: 5%;
  }

  .bc-page-title {
    flex-wrap: wrap;
    font-size: 50px;
  }

  .bc-page-title.big {
    font-size: 80px;
  }

  .image-5 {
    margin-top: -2px;
  }

  .paragraph-7 {
    margin-left: 5%;
    margin-right: 5%;
  }

  .grid-4 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    margin-left: 5%;
    margin-right: 5%;
  }

  .icon-2 {
    color: var(--rich-yellow);
    margin: -90px -54px 0 0;
  }

  .section-9 {
    height: 70px;
    display: flex;
  }

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

  .grid-5 {
    align-items: flex-start;
  }

  .grid-7 {
    grid-template-columns: 1fr 1fr;
  }

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

  .container-8 {
    flex-direction: row;
    margin-top: 14px;
  }

  .heading-9 {
    margin-top: -140px;
  }

  .slider {
    height: 350px;
    margin-left: 5%;
    margin-right: 5%;
  }

  .grid-9 {
    margin-left: 5%;
    margin-right: 5%;
  }

  .navbartitile {
    margin-top: 0;
    margin-left: 10px;
  }

  .heading-10 {
    margin-left: 10px;
    font-size: 10px;
  }

  .paragraph-12 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .image-12 {
    margin-top: 0;
  }

  .quote-box {
    align-self: stretch;
    margin-top: 0%;
    margin-left: 0%;
    margin-right: 0%;
    font-size: 25px;
  }

  .quote-box.small.mobile {
    font-size: 20px;
    line-height: 25px;
  }

  .section-12 {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .paragraph-13 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .threecardgrid, .twocardgrid {
    grid-template-columns: 1fr;
    margin-left: 5%;
    margin-right: 5%;
  }

  .paragraph-14 {
    margin-top: -5px;
  }

  .heading-13 {
    margin-left: -16px;
  }

  .image-14 {
    object-fit: scale-down;
    margin-top: 0;
    position: relative;
    inset: auto auto auto 0%;
  }

  .slider-5 {
    background-color: #0000;
    margin-top: 0;
  }

  .section-15 {
    margin-top: 5%;
    padding-top: 0;
  }

  .container-14 {
    padding-left: 3%;
    padding-right: 3%;
  }

  .container-15 {
    margin-top: 0;
  }

  .image-16 {
    margin-top: 14px;
  }

  .section-18, .section-19, .section-20 {
    margin-left: 5%;
    margin-right: 5%;
  }

  .image-19 {
    position: relative;
    inset: 87px 0% -1%;
  }

  .slide-2 {
    position: absolute;
    inset: 0%;
  }

  .div-block-2 {
    flex-direction: column;
    align-items: flex-start;
    margin-right: 0;
    display: flex;
  }

  .testimonial-wrapper {
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
  }

  .avatar {
    width: auto;
    margin-right: 0;
  }

  .collection-item-2 {
    flex-direction: column;
  }

  .bc-enquire-button-2-0 {
    margin-left: 5%;
  }

  .button-3, .paragraph-18 {
    margin-left: 5%;
    margin-right: 5%;
  }

  .image-24, .image-25, .image-26 {
    height: 50px;
  }

  .doodle-legend.hide-mobile {
    display: none;
  }

  .doodle-legend.hide-desktop {
    display: block;
  }

  .pinch-container {
    margin-bottom: 20px;
    display: flex;
  }
}

@media screen and (max-width: 479px) {
  .nav {
    align-self: flex-start;
    width: 100vw;
    height: 100px;
    overflow: visible;
  }

  .nav-container {
    align-items: center;
    display: flex;
  }

  .nav-menu {
    background-color: var(--black);
    justify-content: flex-start;
    height: auto;
  }

  .hero-section {
    align-self: flex-start;
    width: 100vw;
    overflow: hidden;
  }

  .nav-link {
    width: 100vw;
    height: auto;
    color: var(--rich-yellow);
    background-color: #3d393b;
    border: 1px solid #0000;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    display: flex;
  }

  .nav-link.w--current {
    opacity: 1;
    color: var(--rich-yellow);
    background-color: #3d393b;
    border-color: #0000;
    font-size: 20px;
  }

  .footer-top-wrap {
    flex-direction: column;
    align-items: center;
    padding-bottom: 33px;
  }

  .column-wrap-2 {
    flex-direction: column;
  }

  .column-2 {
    width: 100%;
  }

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

  .container-2 {
    grid-template-rows: minmax(auto, 1.25fr);
    grid-template-columns: 1.5fr;
    max-width: 80%;
    margin-top: 5%;
    margin-bottom: 5%;
    padding-left: 40px;
    padding-right: 40px;
  }

  .paragraph-5 {
    margin-left: 5%;
    margin-right: 5%;
    font-size: 10px;
  }

  .heading-6 {
    font-size: 20px;
  }

  .hero-section-count-down {
    height: 70em;
  }

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

  .body {
    align-items: flex-start;
  }

  .image-2 {
    margin-left: -40px;
  }

  .logo-style-heading {
    margin-left: 0%;
    font-size: 50px;
    line-height: 45px;
  }

  .bc-button {
    padding-left: 100px;
    padding-right: 100px;
  }

  .html-embed {
    display: none;
  }

  .section-6 {
    margin-left: 5%;
    margin-right: 5%;
  }

  .section-8 {
    height: 150px;
  }

  .bc-page-title {
    font-size: 40px;
  }

  .bc-page-title.big {
    flex-flow: row;
    margin-left: 0;
    font-size: 40px;
  }

  .image-5 {
    align-self: center;
    margin-top: -2px;
    margin-left: 0;
    display: block;
  }

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

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

  .icon-2 {
    border: 1px solid #ad9d9d;
    margin: 0 -10% 0 0;
    display: block;
    position: static;
  }

  .section-9 {
    flex-wrap: wrap;
    justify-content: space-around;
    align-self: auto;
    width: 100vw;
    height: 100px;
    overflow: hidden;
  }

  .grid-5 {
    object-fit: fill;
    margin-left: 60px;
    margin-right: -32px;
    display: flex;
  }

  .grid-7 {
    grid-template-columns: 1fr;
    margin-left: 5%;
    margin-right: 5%;
  }

  .heading-8 {
    margin-top: -69px;
    margin-bottom: 191px;
  }

  .section-11 {
    width: 100vw;
    padding-top: 5vh;
    padding-bottom: 5vh;
    overflow: hidden;
  }

  .paragraph-10 {
    margin-left: 5%;
    margin-right: 3px;
  }

  .form-block {
    margin-left: 5%;
    margin-right: 5%;
  }

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

  .slider {
    height: 190px;
  }

  .grid-9 {
    grid-template-columns: 1fr;
  }

  .navbartitile {
    margin-left: 0;
    margin-right: 0;
    font-size: 15px;
  }

  .grid-10 {
    grid-template-columns: .25fr;
  }

  .heading-10 {
    margin-left: 0;
  }

  .heading-11 {
    text-align: left;
    margin-left: 0;
    font-size: 20px;
  }

  .quote-box {
    align-self: stretch;
    margin-left: 5%;
    margin-right: 5%;
    padding-right: 5%;
  }

  .quote-box.small.mobile.portrait {
    font-size: 12px;
    line-height: 20px;
  }

  .menu-button {
    z-index: 9999999;
    margin-top: 0;
    margin-right: -20%;
  }

  .menu-button.w--open {
    background-color: #0000;
    border: 1px solid #0000;
  }

  .section-12 {
    align-self: flex-start;
    width: 100vw;
    margin-top: 15%;
    overflow: hidden;
  }

  .div-block {
    margin-top: 0;
  }

  .fourcardcrid {
    margin-left: 5%;
    margin-right: 5%;
  }

  .paragraph-14 {
    margin-top: -88px;
    margin-left: 0;
    margin-right: 0%;
  }

  .heading-13 {
    margin-top: 0;
    margin-bottom: 80px;
    margin-left: 0;
  }

  .html-embed-2, .html-embed-3 {
    margin: 5%;
  }

  .form-block-2 {
    padding: 16px;
  }

  .image-14 {
    width: auto;
  }

  .slider-5 {
    justify-content: center;
    align-items: center;
    width: 90%;
    min-height: auto;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .section-15 {
    width: 100vw;
    margin-top: 5%;
    margin-bottom: 0%;
    margin-left: 0;
    padding-top: 0;
    padding-bottom: 5vh;
    padding-left: 0;
    overflow: hidden;
  }

  .button-2 {
    margin-top: 10%;
  }

  .html-embed-4 {
    margin-top: 10%;
    margin-bottom: 10%;
  }

  .image-15 {
    width: 50%;
  }

  .video {
    margin-bottom: 0;
  }

  .section-16 {
    padding-top: 10vh;
    padding-bottom: 10vh;
    overflow: hidden;
  }

  .section-17 {
    width: 100vw;
    overflow: hidden;
  }

  .container-15 {
    margin-top: 0;
  }

  .image-16 {
    margin-top: 44px;
  }

  .container-17 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .image-17 {
    width: auto;
  }

  .mask {
    object-fit: none;
    flex: none;
    align-self: center;
    width: 100%;
  }

  .image-18 {
    width: auto;
  }

  .image-19 {
    object-fit: fill;
    width: auto;
    position: static;
    overflow: visible;
  }

  .image-20, .image-21 {
    width: auto;
  }

  .slide {
    height: 0;
    margin-top: 0;
    padding-top: 0;
  }

  .slide-2 {
    position: relative;
    inset: auto;
  }

  .slide-nav {
    background-color: #0000;
  }

  .avatar {
    background-color: #f7c6c5a6;
  }

  .paragraph-17, .heading-16 {
    margin-left: 5%;
  }

  .image-27 {
    height: 50px;
  }

  .image-28 {
    height: 50px;
    margin-top: 5%;
  }

  .body-of-text h2 {
    font-size: 20px;
  }

  .email-modal-content {
    padding-left: 6%;
    padding-right: 6%;
  }

  .email-field-text {
    margin-left: 5%;
    margin-right: 5%;
  }
}

#w-node-_05b0beb0-8308-a76b-fe7b-b4a430ad5424-a50974db {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4cce2f6c-fbde-8cf0-7365-108bcf10fc01-e60974e0 {
  grid-area: span 3 / span 1 / span 3 / span 1;
}

#w-node-_34a069b9-b4fe-ee8b-4a8f-6cf2c15baac2-af0974cd, #w-node-_34a069b9-b4fe-ee8b-4a8f-6cf2c15baac2-450974cb, #w-node-_34a069b9-b4fe-ee8b-4a8f-6cf2c15baac2-fc0974cc, #w-node-_34a069b9-b4fe-ee8b-4a8f-6cf2c15baac2-900974bf {
  justify-self: auto;
}

#w-node-_4cce2f6c-fbde-8cf0-7365-108bcf10fc01-c29d859c {
  grid-area: span 3 / span 1 / span 3 / span 1;
}

#w-node-bed8040f-aeea-93ec-9cab-e311f0841e6b-c29d859c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_34a069b9-b4fe-ee8b-4a8f-6cf2c15baac2-cb5cb784 {
  justify-self: auto;
}

#w-node-_05b0beb0-8308-a76b-fe7b-b4a430ad5424-403f3374 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d6df8949-1dee-e2df-61c6-243ea0472521-403f3374 {
  grid-area: 1 / 2 / 3 / 3;
  justify-self: end;
}

#w-node-_05b0beb0-8308-a76b-fe7b-b4a430ad5424-006a76cf {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d6df8949-1dee-e2df-61c6-243ea0472521-006a76cf {
  grid-area: 1 / 2 / 3 / 3;
  justify-self: end;
}

#w-node-_05b0beb0-8308-a76b-fe7b-b4a430ad5424-e2006391 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d6df8949-1dee-e2df-61c6-243ea0472521-e2006391 {
  grid-area: 1 / 2 / 3 / 3;
  justify-self: end;
}

@media screen and (min-width: 1920px) {
  #w-node-_05b0beb0-8308-a76b-fe7b-b4a430ad5424-a50974db {
    justify-self: start;
  }

  #w-node-_4cce2f6c-fbde-8cf0-7365-108bcf10fc01-e60974e0, #w-node-_4cce2f6c-fbde-8cf0-7365-108bcf10fc01-c29d859c {
    grid-area: span 3 / span 1 / span 3 / span 1;
  }

  #w-node-_05b0beb0-8308-a76b-fe7b-b4a430ad5424-403f3374 {
    justify-self: start;
  }

  #w-node-d6df8949-1dee-e2df-61c6-243ea0472521-403f3374 {
    justify-self: end;
  }

  #w-node-_05b0beb0-8308-a76b-fe7b-b4a430ad5424-006a76cf {
    justify-self: start;
  }

  #w-node-d6df8949-1dee-e2df-61c6-243ea0472521-006a76cf {
    justify-self: end;
  }

  #w-node-_05b0beb0-8308-a76b-fe7b-b4a430ad5424-e2006391 {
    justify-self: start;
  }

  #w-node-d6df8949-1dee-e2df-61c6-243ea0472521-e2006391 {
    justify-self: end;
  }
}

@media screen and (min-width: 1440px) {
  #w-node-d6df8949-1dee-e2df-61c6-243ea0472521-403f3374, #w-node-d6df8949-1dee-e2df-61c6-243ea0472521-006a76cf, #w-node-d6df8949-1dee-e2df-61c6-243ea0472521-e2006391 {
    justify-self: end;
  }
}

@media screen and (min-width: 1280px) {
  #w-node-d6df8949-1dee-e2df-61c6-243ea0472521-403f3374, #w-node-d6df8949-1dee-e2df-61c6-243ea0472521-006a76cf, #w-node-d6df8949-1dee-e2df-61c6-243ea0472521-e2006391 {
    justify-self: end;
  }
}

@media screen and (max-width: 767px) {
  #w-node-d6df8949-1dee-e2df-61c6-243ea0472521-403f3374, #w-node-d6df8949-1dee-e2df-61c6-243ea0472521-006a76cf, #w-node-d6df8949-1dee-e2df-61c6-243ea0472521-e2006391 {
    grid-area: span 2 / span 1 / span 2 / span 1;
  }
}


@font-face {
  font-family: 'Calibri';
  src: url('../fonts/Calibri-Bold.TTF') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Calibri';
  src: url('../fonts/Calibri-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Calibri';
  src: url('../fonts/Calibri-Light-Italic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Calibri';
  src: url('../fonts/Calibri-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Calibri';
  src: url('../fonts/Calibri-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Calibri';
  src: url('../fonts/Calibri-Bold-Italic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Acier displaynoir';
  src: url('../fonts/Acier-DisplayNoir.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Acier textnoir';
  src: url('../fonts/Acier-TextNoir.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Acier displaysolid';
  src: url('../fonts/Acier-DisplaySolid.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Acier textgris';
  src: url('../fonts/Acier-TextGris.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Acier displayoutline';
  src: url('../fonts/Acier-DisplayOutline.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Acier displaygris';
  src: url('../fonts/Acier-DisplayGris.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Acier textoutline';
  src: url('../fonts/Acier-TextOutline.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Acier textsolid';
  src: url('../fonts/Acier-TextSolid.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}