/** Shopify CDN: Minification failed

Line 752:27 Expected ")" to end URL token

**/
/* Press Holder Div */
.press-holder {
  height: 1100px;
  align-items: flex-start;
}

/* Product Image Carousel */
.product-image-carousel {
  width: 100%;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: 7px;
  background-color: transparent;
  margin-bottom: 0;
  width: 100%;
  height: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.3s ease;
  width: 100%;
}

.carousel-slide {
  min-width: 100%;
  flex: 1 0 100%;
}

.carousel-image {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 550px;
  border-radius: 7px;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #e4e3c5;
  border: 1px solid #231f20;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  z-index: 5;
  color: #231f20;
}

.carousel-button:hover {
  background-color: #b3d336;
}

.carousel-button.prev {
  left: 10px;
}

.carousel-button.next {
  right: 10px;
}

/* Mobile adjustments */
@media screen and (max-width: 767px) {
  .carousel-image {
    height: 300px;
  }
  
  .carousel-button {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}

/* Product Add to Cart button specific styling */
.product-add-button {
  text-align: center;
  background-color: #231f20;
  border-radius: 6px;
  width: 100%;
  padding-top: 19px;
  padding-bottom: 19px;
  font-family: SFT-Ritam-Sans, Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  transition: color .25s cubic-bezier(.55, .055, .675, .19), background-color .25s cubic-bezier(.55, .055, .675, .19);
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: block;
}

.product-add-button:hover {
  color: #0f1f1d;
  background-color: #b3d336;
}

.product-add-button:disabled {
  background-color: #cccccc;
  color: #666666;
  cursor: not-allowed;
}

@media screen and (max-width: 767px) {
  .product-add-button {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}

/* Form elements full width styling */
.div-block-32._1 {
  background-color: #f1efd2;
  border-radius: 20px;
  width: 50%;
  padding: 25px;
  display: flex;
  flex-flow: column;
  align-items: stretch; /* Changed from flex-start to stretch */
}

.div-block-32._1 form,
.shopify-product-form {
  width: 100%;
}

.product-option {
  margin-bottom: 20px;
  width: 100%;
}

.select-wrapper {
  position: relative;
  width: 100%;
  display: block;
}

.option-select {
  appearance: none;
  -webkit-appearance: none;
  background-color: #e4e3c5;
  border: none;
  border-radius: 7px;
  width: 100%;
  padding: 14px 15px;
  font-family: SFT-Ritam-Sans, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #231f1f;
  cursor: pointer;
  display: block;
}

.select-arrow {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: #231f1f;
  pointer-events: none;
}

.quantity-wrapper {
  margin-bottom: 20px;
  width: 100%;
}

.quantity-controls {
  display: flex;
  align-items: center;
  background-color: #e4e3c5;
  border-radius: 7px;
  overflow: hidden;
  width: 100%;
}

.quantity-btn {
  background-color: #e4e3c5;
  border: none;
  width: 60px;
  height: 42px;
  font-size: 18px;
  font-weight: bold;
  color: #231f1f;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0; /* Prevent buttons from shrinking */
}

.quantity-btn:hover {
  background-color: #d8d6bc;
}

.quantity-input {
  background-color: #e4e3c5;
  border: none;
  text-align: center;
  flex: 1;
  height: 42px;
  font-family: SFT-Ritam-Sans, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #231f1f;
  -moz-appearance: textfield;
  min-width: 0; /* Allows flex to size correctly */
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Add to Cart button styling */
.button, 
.button.w-button {
  text-align: center;
  background-color: #231f20;
  border-radius: 6px;
  width: 100%;
  padding-top: 19px;
  padding-bottom: 19px;
  font-family: Sft Ritam Sans Trial, Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  transition: color .25s cubic-bezier(.55, .055, .675, .19), background-color .25s cubic-bezier(.55, .055, .675, .19);
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: block;
}

.button:hover,
.button.w-button:hover {
  color: #0f1f1d;
  background-color: #b3d336;
}

.button:disabled,
.button.w-button:disabled {
  background-color: #cccccc;
  color: #666666;
  cursor: not-allowed;
}

@media screen and (max-width: 767px) {
  .div-block-32._1 {
    width: 100%; /* Full width on mobile */
  }
  
  .quantity-btn {
    width: 50px; /* Slightly smaller on mobile */
  }
  
  /* Ensure proper spacing on mobile */
  .product-option,
  .quantity-wrapper {
    margin-bottom: 15px;
  }
  
  .button,
  .button.w-button {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}

@media screen and (max-width: 767px) {
  .div-block-32._1 {
    width: 100%; /* Full width on mobile */
  }
  
  .quantity-btn {
    width: 50px; /* Slightly smaller on mobile */
  }
  
  /* Ensure proper spacing on mobile */
  .product-option,
  .quantity-wrapper {
    margin-bottom: 15px;
  }
}

/* Better mobile styling */
@media screen and (max-width: 767px) {
  .section-13 {
    padding-top: 80px;
  }
  
  .div-block-32._2.mob {
    margin-bottom: 20px;
  }
  
  .image-16 {
    max-width: 100%;
    width: 220px;
  }
  
  .button {
    padding: 16px;
  }
}

a {
  text-decoration: none;
}

.navbar-brand-three {
  z-index: 5;
  position: absolute;
}

.navbar-logo-center-container {
  z-index: 5;
  background-color: #0000;
  width: 1030px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
}

.navbar-logo-center-container.shadow-three {
  width: 100%;
  padding: 0 30px;
}

.list-item {
  cursor: pointer;
  margin-right: 20px;
  transition: opacity .3s;
}

.list-item:hover {
  opacity: .59;
}

.list-item.pro {
  opacity: 100;
  margin-right: 0;
  transition-property: none;
}

.list-item.pro:hover {
  opacity: 100;
}

.image-6 {
  width: 22px;
}

.nav-menu-three {
  color: #153b46;
  background-color: #0000;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  font-weight: 600;
  display: flex;
}

.container-2 {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.list-item-2:hover {
  color: #ffb120;
}

.navbar-logo-center {
  z-index: 99999999;
  border-bottom: 1px solid #b3d336;
  margin-bottom: -97px;
  padding-top: 22px;
  padding-bottom: 22px;
  position: sticky;
  top: 0;
}

.navbar-logo-center:where(.w-variant-349e4997-90c2-83b1-022a-81402bee285e) {
  background-color: #fffee3;
}

.nav-link {
  color: #fff;
  letter-spacing: .25px;
  margin-left: 0;
  margin-right: 0;
  padding-top: 5px;
  padding-bottom: 5px;
  font-family: SFT-Ritam-Sans, Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
}

.nav-link:where(.w-variant-349e4997-90c2-83b1-022a-81402bee285e) {
  color: #231f1f;
}

.nav-link:hover {
  color: #ffb120;
}

.nav-link:focus-visible, .nav-link[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #153b46;
  border-radius: 4px;
  outline: 2px solid #0050bd;
  text-decoration: none;
}

.nav-link.w--current:where(.w-variant-349e4997-90c2-83b1-022a-81402bee285e) {
  color: #231f20;
}

.nav-link.w--current:hover {
  color: #ffb120;
}

.nav-menu-wrapper-three {
  background-color: #c8c8c800;
  width: 100%;
}

.nav-menu-block {
  grid-column-gap: 26px;
  grid-row-gap: 26px;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.nav-menu-block._1 {
  grid-column-gap: 33px;
  grid-row-gap: 33px;
  padding-left: 0;
}

.button-primary {
  color: #231f20;
  text-transform: none;
  background-color: #fff;
  border-radius: 5px;
  padding: 17px 25px;
  font-family: SFT-Ritam-Sans, Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 17px;
  transition: all .2s;
}

.button-primary:where(.w-variant-349e4997-90c2-83b1-022a-81402bee285e) {
  background-color: #b3d336;
}

.button-primary:hover {
  color: #231f20;
  background-color: #b3d336;
}

.button-primary:active {
  color: #efffeb;
  background-color: #153b46;
}

.navbar-wrapper-three {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.section {
  background-color: #f1fff2;
  background-image: linear-gradient(#00000047, #00000047), url('../images/HAL04307_VSCO.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  height: 100vh;
}

.section-11 {
  background-color: #efffeb;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: auto;
  display: flex;
}

.section-11.home {
  background-image: linear-gradient(#0000006b, #00000054), url('../images/HAL04307_VSCO.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  height: 100vh;
}

.section-11.find {
  background-image: linear-gradient(0deg, #0000005c, #00000061), url("{{ 'HAL04307_VSCO_1.jpg' | asset_url }}");
  background-position: 0 0, 50% 15%;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  height: 50vh;
  padding: 44px;
}

.section-11.find.hide {
  background-image: linear-gradient(0deg, #0000005c, #00000061), url('../images/HAL04307_VSCO_2.jpg');
  height: 30vh;
}

.section-11.trade {
  background-image: linear-gradient(0deg, #0000005c, #00000061), url("{{ 'HAL04307_VSCO_2.jpg' | asset_url }}");
  background-position: 0 0, 50% 40%;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  height: 50vh;
  padding: 30px;
}

.section-11.trade.hide {
  height: 30vh;
}

.section-11.ourstory {
  background-image: linear-gradient(0deg, #0000005c, #00000061), url('../images/HAL04307_VSCO_3.jpg');
  background-position: 0 0, 50% 55%;
  background-size: auto, cover;
  justify-content: flex-end;
  align-items: flex-start;
  height: 40vh;
  padding: 30px;
}

.section-11.ourstory.hide {
  background-image: linear-gradient(0deg, #0000005c, #00000061), url('../images/HAL04307_VSCO_2.jpg');
  height: 30vh;
}

.section-11.ourstory.hidden {
  display: none;
}

.heading-3 {
  color: #b3d336;
  text-align: center;
  margin-top: 55px;
  margin-bottom: 21px;
  font-family: SFT-Ritam-Sans, Arial, sans-serif;
  font-size: 150px;
  font-weight: 900;
  line-height: 130px;
}

.image-5-2 {
  width: 120px;
  display: block;
  position: absolute;
  inset: 24% 13% auto auto;
}

.image-5-3 {
  width: 70px;
  display: block;
  position: absolute;
  inset: auto 21% 36% auto;
}

.div-block-15 {
  width: 100%;
  height: 100%;
  position: absolute;
}

.spline-scene-5 {
  width: 100%;
  height: 100vh;
  display: block;
  position: absolute;
}

.header {
  color: #fff;
  text-align: center;
  width: 550px;
  font-family: Mundial, Arial, sans-serif;
  font-size: 23px;
  font-weight: 500;
  line-height: 30px;
}

.image-5-1 {
  width: 100px;
  display: block;
  position: absolute;
  bottom: 32%;
  left: 29%;
}

.image-5 {
  width: 70px;
  display: block;
  position: absolute;
  top: 15%;
  left: 24%;
}

.section-10 {
  z-index: 999;
  background-image: url("{{ 'marquee.svg' | asset_url }}");
  background-position: 0 0;
  background-size: cover;
  justify-content: center;
  align-items: center;
  height: 80px;
  margin-top: -7px;
  margin-bottom: -7px;
  display: flex;
  position: relative;
}

.marquee-horizontal {
  z-index: 200;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 500px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.track-horizontal-alt {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.track-horizontal-alt._2 {
  grid-column-gap: 23px;
  grid-row-gap: 23px;
}

.marquee-text {
  color: #231f20;
  text-transform: none;
  flex: none;
  margin-right: 5vw;
  font-family: SFT-Ritam-Sans, Arial, sans-serif;
  font-size: 23px;
  font-weight: 600;
}

.div-block-13 {
  background-color: #fffee3;
  padding-top: 73px;
  padding-bottom: 225px;
}

.div-block-6 {
  width: 100%;
  max-width: 1300px;
  margin-bottom: 55px;
  margin-left: auto;
  margin-right: auto;
}

.div-block-6.flavours {
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
  display: flex;
}

.div-block-11 {
  width: 55%;
  margin-left: auto;
  margin-right: auto;
}

.our-flavs {
  color: #b3d336;
  text-align: center;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: SFT-Ritam-Sans, Arial, sans-serif;
  font-size: 55px;
  font-weight: 900;
  line-height: 55px;
}

.flavour-sub {
  color: #231f20;
  text-align: center;
  width: 80%;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  font-family: Mundial, Arial, sans-serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 25px;
}

.waves-bottom {
  background-image: url('../images/wave-dark-blue.svg');
  background-position: -50px 0;
  background-repeat: repeat-x;
  background-size: auto;
  height: 30px;
  margin-top: -16px;
}

.waves-bottom.offwhite-bottom {
  background-image: url('../images/waves-offwhite.svg');
  background-position: 50% 100%;
  height: 50px;
  margin-top: -13px;
}

.waves-bottom.lime-bottom {
  z-index: 99;
  background-image: url("{{ 'Group-89.svg' | asset_url }}");
  background-position: 50% 100%;
  height: 50px;
  margin-top: -13px;
  position: relative;
}

.waves-bottom.off-grey-bottom {
  z-index: 99;
  background-image: url({{ 'wave-offgrey.svg' | asset_url }});
  background-position: 50% 100%;
  background-size: cover;
  height: 50px;
  margin-top: -13px;
  position: relative;
}

.section-9 {
  margin-top: -296px;
  padding-top: 34px;
  padding-bottom: 57px;
}

.div-block-12 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.div-block-14 {
  cursor: pointer;
  flex-flow: column;
  flex: none;
  justify-content: center;
  align-items: center;
  display: flex;
}

.image-4 {
  width: 320px;
}

.prod-name {
  opacity: .44;
  color: #231f20;
  text-align: center;
  margin-left: 0;
  font-family: SFT-Ritam-Sans, Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 23px;
}

.prod-name._1 {
  color: #231f20;
  margin-left: 0;
  margin-right: 0;
  font-family: SFT-Ritam-Sans, Arial, sans-serif;
  font-weight: 700;
}

.prod-name.red {
  margin-left: 0;
  margin-right: 0;
}

.icon {
  color: #153b46;
  padding: 0;
  font-size: 15px;
  font-weight: 700;
}

.image-3 {
  margin-bottom: 41px;
}

.team-block {
  background-color: #fff;
  display: flex;
}

.sci-ti {
  color: #153b46;
  font-weight: 700;
  line-height: 23px;
}

.sci-div {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: none;
}

.mask {
  width: 100%;
  min-width: 0;
  overflow: visible;
}

.science-block {
  color: #153b46;
  background-color: #f0ffeb;
  border-radius: 20px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  min-width: 250px;
  min-height: 300px;
  max-height: 300px;
  padding: 31px;
  font-weight: 500;
  display: flex;
}

.science-block._2 {
  background-color: #ffece3;
}

.science-block._3 {
  background-color: #fffee3;
  align-items: flex-start;
}

.science-block._1 {
  background-color: #f6f5ff;
}

.team-slider-nav {
  margin-top: 24px;
  font-size: 10px;
  display: none;
  position: static;
  bottom: -60px;
}

.div-block-16 {
  width: 48%;
}

.team-slider-arrow {
  background-color: #efffeb;
  border: 1px solid #173b462b;
  border-radius: 99px;
  width: 30px;
  height: 30px;
  margin-left: -10px;
  margin-right: -13px;
  transition: border .2s;
  display: flex;
  right: 2%;
}

.team-slider-arrow:hover {
  border-color: #173b46;
}

.team-slider-arrow._33 {
  background-color: #fbf9e0;
  border-color: #020202;
  margin-left: 0;
  margin-right: 0;
  inset: 0% 0% 0% auto;
}

.team-slider-arrow._44 {
  background-color: #fbf9e0;
  border-color: #020202;
  margin-left: 0;
  margin-right: 0;
  left: -1%;
  right: auto;
}

.team-slider-arrow._22 {
  margin-left: -13px;
  right: 9%;
}

.our-science {
  color: #b3d336;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: SFT-Ritam-Sans, Arial, sans-serif;
  font-size: 55px;
  font-weight: 900;
  line-height: 55px;
}

.team-member-text {
  color: #231f20;
  font-family: Mundial, Arial, sans-serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 25px;
}

.section-8 {
  margin-left: 3%;
  margin-right: 3%;
  padding-top: 50px;
  padding-bottom: 80px;
  overflow: hidden;
}

.sci-block {
  width: auto;
  margin-right: 10px;
}

.team-slider-wrapper {
  background-color: #0000;
  justify-content: flex-start;
  width: 100%;
  height: auto;
  margin-top: 0;
  display: flex;
}

.icon-2 {
  color: #153b46;
  font-size: 15px;
  font-weight: 700;
}

.div-block-17 {
  width: 100%;
  max-width: 1300px;
  margin-bottom: 55px;
  margin-left: auto;
  margin-right: auto;
}

.div-block-17.science {
  max-width: none;
  margin-bottom: 40px;
}

.div-block-18 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.div-block-19 {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0;
  background-size: auto;
  border-radius: 20px;
  width: 33%;
  height: 400px;
}

.div-block-19._1 {
  background-color: #c8d13c;
  background-image: none;
  background-position: 0 0;
  border: 4px #231f20;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  display: flex;
}

.div-block-19._2 {
  background-color: #fdf151;
  background-image: none;
  background-position: 0 0;
  background-size: auto;
  border: 4px #231f20;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  display: flex;
}

.div-block-19._3 {
  background-color: #ffc1cb;
  background-image: none;
  background-position: 0 0;
  background-size: auto;
  border: 4px #231f20;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  display: flex;
}

.heading-4 {
  color: #231f20;
  text-align: center;
  margin-top: 0;
  margin-bottom: 18px;
  font-family: SFT-Ritam-Sans, Arial, sans-serif;
  font-size: 40px;
  font-weight: 900;
  line-height: 35px;
}

.text-block {
  color: #231f20;
  text-align: center;
  font-family: SFT-Ritam-Sans, Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 25px;
}

.div-block-20 {
  width: 85%;
}

.waves {
  background-image: url('../images/wave-dark-blue.svg');
  background-position: -50px 0;
  background-repeat: repeat-x;
  background-size: auto;
  height: 30px;
  margin-top: -16px;
}

.waves.lime {
  background-image: url('../images/Group-89.svg');
  background-repeat: no-repeat;
  background-size: auto;
  margin-top: -13px;
}

.waves.green {
  z-index: 999;
  background-image: url("{{ 'Group-89.svg' | asset_url }}");
  margin-top: -13px;
  transition: opacity .6s cubic-bezier(.645, .045, .355, 1);
  position: relative;
}

.slide-nav-2 {
  display: none;
}

.icon-3 {
  color: #153b46;
  padding: 0;
  font-size: 15px;
  font-weight: 700;
}

.mask-2 {
  border-radius: 20px;
}

.div-block-10 {
  background-color: #ffbc9a;
  border: 8px solid #fbf9e0;
  border-radius: 20px;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  height: 300px;
  padding: 20px;
  text-decoration: none;
  display: flex;
}

.div-block-10._1 {
  background-color: #c9d13d;
  border: 8px solid #fbf9e0;
  padding: 20px;
  text-decoration: none;
}

.div-block-10._2 {
  background-color: pink;
  border: 8px solid #fbf9e0;
  height: 300px;
  padding: 20px;
  text-decoration: none;
}

.div-block-10._3 {
  background-color: #a0aed1;
  border: 8px solid #fbf9e0;
  justify-content: space-between;
  align-items: stretch;
  height: 300px;
  padding: 20px;
  text-decoration: none;
}

.div-block-10._6 {
  background-color: #fff9b5;
  text-decoration: none;
}

.div-block-9 {
  background-image: url('../images/8d0cd0f8022d05139d3e6d961285ca12.png');
  background-position: 50%;
  background-size: cover;
  border-radius: 28px;
  width: 860px;
  height: 500px;
}

.slider-2 {
  background-color: #ddd0;
  border-radius: 20px;
  width: 65%;
  margin-left: -23px;
  margin-right: -30px;
}

.div-block-8 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.heading-2 {
  color: #231f20;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: SFT-Ritam-Sans, Arial, sans-serif;
  font-size: 1.35em;
  font-weight: 500;
  line-height: 1.35em;
}

.heading-2.letter {
  font-family: SFT-Ritam-Sans, Arial, sans-serif;
  font-size: 1.35em;
  font-weight: 500;
  line-height: 1.5em;
}

.heading-2.b {
  color: #fefde2;
}

.heading-2.press {
  color: #231f20;
  font-size: 23px;
  font-weight: 500;
  line-height: 30px;
  height: 100px;
}

.section-7 {
  background-color: #b3d336;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 50px 3%;
  display: flex;
  overflow: hidden;
}

.team-member-text-2 {
  color: #153b46;
  font-family: Mundial, Arial, sans-serif;
  font-weight: 500;
  line-height: 18px;
}

.team-member-text-2.name {
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 12px;
}

.team-member-text-2.test {
  margin-bottom: 27px;
}

.slide-2 {
  width: 45%;
  margin-right: 15px;
}

.div-block-21, .div-block-22 {
  width: 100%;
}

.image-7 {
  filter: contrast(171%) grayscale();
  height: 40px;
  margin-bottom: 0;
}

.image-7._3 {
  height: 40px;
}

.image-7._2 {
  height: 30px;
}

.image-7.fc {
  height: 45px;
}

.image-7.bfm {
  height: 42px;
}

.marquee-wrapper {
  width: 100%;
  height: 39em;
  position: relative;
  overflow: hidden;
}

.marquee-track {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.marquee-list {
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.marquee-item {
  border-left: 1px solid #dfdfdf3b;
  flex-direction: column;
  flex: none;
  justify-content: flex-start;
  align-items: flex-start;
  width: 31em;
  padding-left: 2.5em;
  padding-right: 2.5em;
  display: flex;
}

.section-12 {
  background-color: #fcf8d6;
  margin-top: -5px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.image-8 {
  border: 2px #b8b5b4;
  border-radius: 11px;
  width: 300px;
  height: 400px;
}

.track-horizontal-alts {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.track-horizontal-alts._2 {
  grid-column-gap: 23px;
  grid-row-gap: 23px;
}

.link-block-2 {
  margin-bottom: 45px;
}

.link-copy {
  color: #707970;
  margin-left: 15px;
  margin-right: 0;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
}

.image-2 {
  width: 25px;
  height: 25px;
}

.div-block-2 {
  margin-top: 35px;
}

.section-4 {
  background-color: #b3d336;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: auto;
  padding: 35px 4% 50px;
  display: flex;
  position: relative;
}

.div-block-3 {
  margin-top: 50px;
}

.text-block-3 {
  color: #707970;
  font-size: 11px;
  font-weight: 600;
}

.link-block {
  margin-left: 13px;
  margin-right: 13px;
}

.link {
  color: #fff;
  margin-left: 15px;
  margin-right: 15px;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
}

.footer-email {
  color: #fff;
  font-size: 11px;
  font-weight: 600;
}

.text-block-4 {
  color: #edfb60;
  text-align: center;
  width: 450px;
  margin-bottom: 25px;
  font-size: 13px;
  font-weight: 500;
}

.div-block {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1300px;
  display: flex;
}

.text-block-2 {
  color: #edfb60;
  font-size: 13px;
  font-weight: 600;
}

.div-block-4 {
  border-top: 1px solid #edfb601a;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 25px;
  padding: 10px 25px;
  display: flex;
}

.image-9, .div-block-23 {
  width: 100% !important;
  max-width: 100% !important;
  display: block !important;
}

.div-block-23 img {
  width: 100% !important;
  max-width: 100% !important;
  display: block !important;
}

.div-block-24 {
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 45px;
  display: flex;
}

.footer-left {
  color: #231f20;
  text-align: left;
  width: 85%;
  margin-bottom: 20px;
  font-family: SFT-Ritam-Sans, Arial, sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 20px;
}

.footer-left._2 {
  margin-bottom: 0;
  font-size: 17px;
}

.div-block-25 {
  cursor: pointer;
  width: 30%;
}

.text-field {
  color: #231f20;
  background-color: #fcf8d6;
  border: 1px #000;
  border-radius: 8px;
  margin-bottom: 0;
  margin-left: -3px;
  margin-right: 9px;
  padding: 31px 10px 29px 14px;
  font-family: SFT-Ritam-Sans, Arial, sans-serif;
  font-size: 17px;
  font-weight: 600;
}

.text-field::placeholder {
  color: #231f2073;
  font-size: 17px;
}

.form {
  display: flex;
}

.submit-button {
  color: #fffffe;
  background-color: #231f20;
  border-radius: 8px;
  font-family: SFT-Ritam-Sans, Arial, sans-serif;
  font-size: 17px;
  font-weight: 600;
}

.link-2 {
  color: #231f20;
  text-align: left;
  font-family: SFT-Ritam-Sans, Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity .2s cubic-bezier(.645, .045, .355, 1);
}

.link-2:hover {
  opacity: .74;
}

.div-block-26 {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.div-block-27 {
  grid-column-gap: 73px;
  grid-row-gap: 73px;
  display: flex;
}

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

.find-head {
  color: #b3d336;
  text-align: center;
  width: 80%;
  margin-top: 55px;
  margin-bottom: 21px;
  font-family: SFT-Ritam-Sans, Arial, sans-serif;
  font-size: 150px;
  font-weight: 900;
  line-height: 150px;
}

.waves-bottom-cop2 {
  background-image: url('../images/wave-dark-blue.svg');
  background-position: -50px 0;
  background-repeat: repeat-x;
  background-size: auto;
  height: 30px;
  margin-top: -16px;
}

.waves-bottom-cop2.offwhite-bottom {
  background-image: url("{{ 'waves-offwhite.svg' | asset_url }}");
  background-position: 50% 100%;
  height: 50px;
  margin-top: -13px;
}

.waves-bottom-cop2.lime-bottom {
  z-index: 99;
  background-image: url("{{ 'Group-89.svg' | asset_url }}");
  background-position: 50% 100%;
  height: 50px;
  margin-top: -13px;
  position: relative;
}

.waves-bottom-cop2.offwhite-bottom-top {
  z-index: 999;
  background-image: url("{{ 'waves-offwhite.svg' | asset_url }}");
  background-position: 50% 0;
  height: 50px;
  margin-top: 0;
  position: relative;
}

.waves-bottom-copy {
  background-image: url('../images/wave-dark-blue.svg');
  background-position: -50px 0;
  background-repeat: repeat-x;
  background-size: auto;
  height: 30px;
  margin-top: -16px;
}

.waves-bottom-copy.offwhite-bottom {
  background-image: url("{{ 'waves-offwhite.svg' | asset_url }}");
  background-position: 50% 0;
  height: 50px;
  margin-top: -13px;
}

.waves-bottom-copy.lime-bottom {
  z-index: 99;
  background-image: url('../images/Group-89.svg');
  background-position: 50% 100%;
  height: 50px;
  margin-top: -13px;
  position: relative;
}

.div-block-28 {
  background-color: #fffee3;
  padding: 15px 3% 43px;
}

.rl_faq1_question {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  cursor: pointer;
  border-top: 1px #000;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  padding-top: 2px;
  padding-bottom: 2px;
  display: flex;
}

.div-block-44 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 50px;
  display: grid;
}

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

.div-block-45 {
  background-color: #f1efd2;
  border-radius: 10px;
  padding: 23px;
}

.div-block-45._2 {
  background-color: pink;
}

.div-block-45._3 {
  background-color: #a0aed1;
}

.div-block-45._4 {
  background-color: #ffe6b9;
}

.rl_faq1_question-text {
  color: #231f20;
  margin-top: 0;
  margin-bottom: 0;
  font-family: SFT-Ritam-Sans, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.rl_faq1_icon {
  color: #231f20;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
}

.rl-text-style-regular {
  color: #231f20;
  margin-top: 0;
  margin-bottom: 0;
  font-family: SFT-Ritam-Sans, Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.heading-7 {
  color: #231f20;
  margin-top: 0;
  margin-bottom: 0;
  font-family: SFT-Ritam-Sans, Arial, sans-serif;
  font-size: 15px;
  font-weight: 900;
  line-height: 20px;
}

.rl_faq1_answer {
  overflow: hidden;
}

.rl_faq1_accordion {
  cursor: pointer;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  margin-top: 0;
}

.image-14 {
  object-fit: cover;
  background-color: #00000008;
  border-radius: 10px;
  width: 100%;
  height: auto;
  margin-bottom: 15px;
  padding: 18px;
}

.rl_faq1_answer-wrapper {
  margin-bottom: 0;
}

.bodys {
  color: #153b46;
  margin-bottom: 0;
  font-family: Mundial, Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
}

.rl_faq1_icon-wrapper {
  align-self: flex-start;
}

.our-science-copy {
  color: #153b46;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: SFT-Ritam-Sans, Arial, sans-serif;
  font-size: 55px;
  font-weight: 900;
  line-height: 55px;
}

.find-title {
  color: #b3d336;
  margin-top: 0;
  margin-bottom: 4px;
  font-family: SFT-Ritam-Sans, Arial, sans-serif;
  font-size: 55px;
  font-weight: 900;
  line-height: 55px;
}

.div-block-46 {
  background-color: #00000005;
  border-radius: 28px;
  width: 100%;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  padding: 44px;
}

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

.text-field-2 {
  background-color: #fbfadf;
  border: 1px solid #171f1726;
  border-radius: 5px;
  padding: 29px 22px;
  font-family: SFT-Ritam-Sans, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.text-field-2:focus {
  color: #231f20;
  border-color: #173b466b;
}

.text-field-2::placeholder {
  color: #231f206b;
}

.text-field-2.area {
  padding-top: 16px;
  padding-bottom: 48px;
}

.form-3 {
  color: #231f2094;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 10px;
  font-family: SFT-Ritam-Sans, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 23px;
}

.submit-button-2 {
  color: #fffee3;
  text-align: left;
  background-color: #231f20;
  border-radius: 5px;
  width: 100%;
  padding-top: 16px;
  padding-bottom: 16px;
  font-family: SFT-Ritam-Sans, Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.text-block-5 {
  opacity: .58;
  color: #231f20;
  width: 100%;
  font-family: Mundial, Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  margin-top: 10px;
}

.div-block-47 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  display: flex;
}

.about-split {
  background-color: #fffee3;
  margin-top: -12px;
  padding: 67px 3% 41px;
}

.div-block-48 {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  justify-content: space-between;
  align-items: stretch;
  max-width: 1300px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.div-block-48._2 {
  margin-top: 45px;
}

.div-block-48.letter {
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  height: auto;
  margin-top: 45px;
  padding: 40px;
  position: relative;
}

.div-block-49 {
  background-color: #fdf151;
  border: 8px solid #f1efd2;
  border-radius: 18px;
  justify-content: center;
  align-items: center;
  width: 50%;
  padding: 5.3em;
  display: flex;
}

.div-block-49._2 {
  background-color: #fffd9a;
  background-image: url('../images/IMG_1409.webp');
  background-position: 0 0;
  background-size: cover;
  transform: rotate(2deg);
  box-shadow: 6px 7px 0 1px #000000d9;
}

.div-block-49.b {
  text-align: left;
  background-color: #ec5a19;
  justify-content: center;
  align-items: center;
  padding: 5.3em;
}

.div-block-49.g {
  background-color: #c8d13c;
  justify-content: center;
  align-items: center;
  padding: 5.3em;
}

.div-block-49.letter {
  background-color: #f0efd2;
  border-style: none;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 750px;
  padding: 51px;
  font-family: Mundial, Arial, sans-serif;
  font-weight: 100;
  position: relative;
  transform: rotate(-4deg);
  box-shadow: 12px 11px 0 -5px #2b2b24;
}

.div-block-49._2-copy {
  background-color: #fffd9a;
  background-image: url("{{ 'IMG_1372.webp' | asset_url }}");
  background-position: 0 0;
  background-size: cover;
  transform: rotate(-2deg);
  box-shadow: 6px 7px 0 1px #000000d9;
  margin-right: 10px;
}

.div-block-49._2-copy.mob {
  display: none;
}

.div-block-49._2-c3 {
  background-color: #fffd9a;
  background-image: url("{{ 'FCE9C13A-E681-45B8-B225-A941A66BF10E_1.webp' | asset_url }}");
  background-position: 0 0;
  background-size: cover;
  transform: rotate(3deg);
  box-shadow: 6px 7px 0 1px #000000d9;
}

.heading-8 {
  color: #231f20;
  margin-top: 13px;
  margin-bottom: 25px;
  font-family: SFT-Ritam-Sans, Arial, sans-serif;
  font-weight: 900;
}

.image-15 {
  margin-top: 15px;
  margin-left: -9px;
}

.div-block-50 {
  background-color: #ec5a19;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 60px;
  display: flex;
  position: absolute;
  inset: -3% 0% auto 8%;
  transform: rotate(0);
}

.story {
  color: #fffee3;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-family: SFT-Ritam-Sans, Arial, sans-serif;
  font-size: 20px;
  font-weight: 900;
}

.button {
  text-align: center;
  background-color: #231f20;
  border-radius: 6px;
  width: 100%;
  padding-top: 19px;
  padding-bottom: 19px;
  font-family: SFT-Ritam-Sans, Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  transition: color .25s cubic-bezier(.55, .055, .675, .19), background-color .25s cubic-bezier(.55, .055, .675, .19);
}

.button:hover {
  color: #0f1f1d;
  background-color: #b3d336;
}

.section-13 {
  background-color: #fffee3;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: auto;
  padding-bottom: 7px;
  display: flex;
}

.heading-6 {
  color: #231f20;
  text-align: left;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: SFT-Ritam-Sans, Arial, sans-serif;
  font-size: 50px;
  font-weight: 900;
  line-height: 58px;
}

.div-block-38 {
  border: 1px solid #1f434a2b;
  border-radius: 6px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 120px;
  padding: 20px;
  display: flex;
}

.div-block-38._3 {
  background-color: #ffdfe500;
  border-color: #1f27282b;
  border-radius: 6px;
}

.div-block-38._3:hover {
  border-color: #1f434a;
}

.div-block-38._1 {
  background-color: #d3ffd700;
  border-color: #1f27282b;
  text-decoration: none;
}

.div-block-38._1:hover {
  border-color: #1f434a;
}

.div-block-38._1.w--current {
  border-style: solid;
  border-color: #1f434a;
}

.div-block-38._2 {
  background-color: #ffff8f00;
  border-color: #1f27282b;
  border-radius: 6px;
  text-decoration: none;
}

.div-block-38._2:hover, .div-block-38._2.w--current {
  border-color: #1f434a;
}

.div-block-38._23 {
  padding-left: 9px;
  padding-right: 9px;
}

.image-12 {
  width: 50px;
  margin-bottom: 9px;
}

.image-12._2 {
  width: 100px;
}

.tabs {
  width: 100%;
}

.div-block-30 {
  width: 97%;
  max-width: 900px;
  height: 100%;
  padding-top: 0px;
}

.tabs-menu {
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 25px;
  display: flex;
}

.div-block-31 {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  cursor: pointer;
  justify-content: space-between;
  height: 100%;
  padding-top: 39px;
  display: flex;
}

.div-block-37 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  display: flex;
}

.image-16 {
  width: 280px;
  max-width: none;
}

.tab-link-tab-1 {
  color: #231f2082;
  background-color: #231f2026;
  border-radius: 20px;
  width: 50%;
  font-weight: 600;
}

.tab-link-tab-1.w--current {
  color: #efffeb;
  text-align: center;
  background-color: #231f20;
  border-radius: 20px;
  width: 49%;
  font-weight: 600;
}

.text-block-8 {
  color: #fffee3;
  text-align: center;
  font-family: SFT-Ritam-Sans, Arial, sans-serif;
}

.text-block-6 {
  color: #231f1f;
  text-align: left;
  margin-bottom: -3px;
  font-family: SFT-Ritam-Sans, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.text-block-6.pac {
  margin-bottom: 15px;
  font-family: SFT-Ritam-Sans, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.text-block-6.pac.star {
  letter-spacing: 5px;
  background-color: #e4e3c5;
  border-radius: 30px;
  margin-bottom: 20px;
  padding: 6px 7px 6px 9px;
  font-size: 13px;
}

.text-block-6.s {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
}

.text-block-6.feat {
  font-size: 14px;
  font-weight: 600;
}

.div-block-35 {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
  display: flex;
}

.div-block-36 {
  text-align: center;
  background-color: #e4e3c5;
  border-radius: 7px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 12px 10px;
  display: flex;
}

.div-block-36.lab {
  background-color: #e4e3c5;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 12px;
}

.text-block-9 {
  color: #231f20;
  text-align: left;
  margin-bottom: 20px;
  font-family: SFT-Ritam-Sans, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
}

.div-block-32 {
  background-color: #f1efd2;
  border-radius: 20px;
  flex-flow: column;
  align-items: flex-start;
  width: 33%;
  padding: 25px;
  display: flex;
}

.div-block-32._1 {
  background-color: #f1efd2;
  justify-content: flex-start;
  align-items: flex-start;
  width: 50%;
}

.div-block-32._2 {
  background-color: #f1efd2;
  justify-content: center;
  align-items: center;
  width: 50%;
  display: flex;
}

.div-block-32._2.mob {
  display: none;
}

.text-block-7 {
  text-align: center;
  font-family: SFT-Ritam-Sans, Arial, sans-serif;
}

.div-block-34 {
  background-color: #ffdd45;
  border: 1px solid #153b46;
  border-radius: 999px;
  min-width: 50px;
  margin-bottom: 40px;
  padding: 1px 8px 5px;
  display: none;
}

.image-11 {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

.image-10 {
  width: 12px;
  margin-right: 3px;
}

.div-block-51 {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  justify-content: flex-start;
  align-items: stretch;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-bottom: 7px;
  display: flex;
}

.section-14 {
  background-color: #fffee3;
}

.section-14.s {
  padding-top: 0;
  padding-bottom: 30px;
}

.div-block-39 {
  background-color: #f1efd2;
  border-radius: 15px;
  flex-flow: column;
  justify-content: space-between;
  width: 40%;
  margin-left: auto;
  margin-right: auto;
  padding: 25px;
  display: flex;
}

.div-block-39._124 {
  flex-flow: column;
  justify-content: space-between;
  width: 60%;
  display: flex;
}

.div-block-39._124.desc {
  width: 100%;
}

.div-block-39._2 {
  width: 90%;
}

.heading-copy {
  color: #1f434a;
  margin-top: 0;
  margin-bottom: 40px;
  font-family: SFT-Ritam-Sans, Arial, sans-serif;
  font-size: 55px;
  font-weight: 900;
  line-height: 55px;
}

.heading-copy._123 {
  color: #231f1f;
  margin-bottom: 20px;
  font-size: 25px;
  line-height: 25px;
}

.div-block-40 {
  color: #231f1f;
  border-top: 1px #00000014;
  border-bottom: 1px solid #00000014;
  justify-content: space-between;
  padding: 22px 8px;
  font-size: 18px;
  font-weight: 500;
  display: flex;
}

.div-block-40.last {
  border-bottom-style: none;
  padding-bottom: 0;
}

.div-block-40.first {
  padding-top: 13px;
}

.div-block-41 {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  background-color: #f1efd2;
  border: 1px #00000014;
  border-radius: 7px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  place-items: center;
  height: 400px;
  margin-top: 0;
  padding: 0;
  display: grid;
}

.div-block-41.text {
  justify-content: space-between;
  align-items: flex-start;
  height: auto;
  font-size: 12px;
  display: flex;
}

.image-13 {
  width: 100px;
}

.text-block-10 {
  font-family: SFT-Ritam-Sans, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.text-block-11 {
  background-color: #fbf9e0;
  border-radius: 20px;
  margin-bottom: 33px;
  padding: 21px 21px 21px 19px;
  font-size: 80px;
  line-height: 80px;
}

.div-block-52 {
  background-color: #f8f6d9;
  margin-top: -52px;
  padding-top: 151px;
  padding-bottom: 35px;
}

.find-head-copy {
  color: #b3d336;
  text-align: center;
  width: 80%;
  margin-top: 55px;
  margin-bottom: 21px;
  font-family: SFT-Ritam-Sans, Arial, sans-serif;
  font-size: 150px;
  font-weight: 900;
  line-height: 150px;
}

.trader {
  color: #b3d336;
  text-align: center;
  width: 80%;
  margin: 0 auto;
  font-family: SFT-Ritam-Sans, Arial, sans-serif;
  font-size: 150px;
  font-weight: 900;
  line-height: 150px;
}

.text-block-12 {
  margin-bottom: 15px;
  padding-right: 0;
  font-size: 35px;
  line-height: 35px;
  font-family: SFT-Ritam-Sans, Arial, sans-serif;
}

.text-block-12.ico {
  margin-bottom: 0;
  margin-right: 17px;
  padding-right: 0;
  font-size: 35px;
  line-height: 40px;
}

.icon-4 {
  color: #153b46;
  padding: 0;
  font-size: 15px;
  font-weight: 700;
}

.image-17 {
  margin-bottom: 41px;
}

.team-member-text-3 {
  color: #153b46;
  font-weight: 600;
  line-height: 23px;
}

.link-footer {
  color: #fcf8d6;
  text-decoration: none;
}

.link-footer:hover {
  color: #fdf151;
}

.div-block-53 {
  border: 1px solid #00000014;
  border-radius: 7px;
  height: 400px;
  padding: 13px;
}

.div-block-53.desc {
  height: auto;
}

.success-message {
  background-color: #ddd9c770;
  border-radius: 7px;
  font-family: SFT-Ritam-Sans, Arial, sans-serif;
  font-weight: 700;
}

.success-message-2 {
  color: #231f1f;
  background-color: #9cb43c8f;
  border-radius: 9px;
  font-family: SFT-Ritam-Sans, Arial, sans-serif;
  font-weight: 600;
}

.image-18 {
  width: 250px;
  position: absolute;
  top: 95.828px;
  right: 10%;
  transform: rotate(37deg);
}

.image-19 {
  width: 250px;
  position: absolute;
  top: 329.828px;
  left: 10%;
  transform: rotate(-42deg);
}

.card-header {
  background-image: url('../images/david-lundgren-1677087-unsplash.jpg');
  background-position: 50% 30%;
  background-size: cover;
  height: 150px;
}

.card {
  color: #b8b9c2;
  background-color: #3f4046;
  border-radius: 5px;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  box-shadow: 0 5px 2rem #0000004d;
}

.arrow-left {
  width: 35px;
  height: 35px;
  padding: 0;
  inset: 0 auto 0% 0%;
}

.carousel-slider._3 {
  right: -42%;
}

.carousel-slider._8 {
  right: -147%;
}

.carousel-slider._4 {
  right: -63%;
}

.carousel-slider._2 {
  right: -21%;
}

.carousel-slider._7 {
  right: -126%;
}

.carousel-slider._5 {
  right: -84%;
}

.carousel-slider._6 {
  right: -105%;
}

.card-body {
  height: 100%;
  padding: 30px;
}

.carousel-mask {
  width: 25%;
  overflow: visible;
}

.btn {
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #3862ec;
  border-radius: 5px;
  padding: 15px 25px;
  font-size: 1rem;
  transition: background-color .3s ease-out;
}

.btn:hover {
  background-color: #213ea0;
}

.arrow-right {
  width: 35px;
  height: 35px;
  padding: 6px;
  inset: 0 0% 0% auto;
}

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

.carousel {
  background-color: #0000;
  justify-content: flex-end;
  align-items: center;
  width: 100vw;
  height: 400px;
}

.carousel.is_contained {
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: auto;
  padding-bottom: 0;
}

.slide-nav-3 {
  display: none;
}

.icon-5 {
  color: #000;
  background-color: #fcf8d6;
  border: 1px solid #000;
  border-radius: 99px;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  padding: 6px;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.icon-6 {
  color: #020202;
  background-color: #fcf8d6;
  border: 1px solid #000;
  border-radius: 99px;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  padding: 6px;
  font-size: 20px;
  font-weight: 700;
  display: flex;
}

.rich-text-block {
  padding: 7px;
  font-family: SFT-Ritam-Sans, Arial, sans-serif;
  font-size: 12px;
}

.rich-text-block-2 {
  font-family: SFT-Ritam-Sans, Arial, sans-serif;
}

.paragraph {
  margin-bottom: 0;
}

.image-20 {
  background-color: #fcf8d6;
  border-radius: 12px;
  width: 110px;
  margin-bottom: 25px;
  padding: 13px;
}

@media screen and (max-width: 991px) {
  .navbar-brand-three {
    position: relative;
  }

  .nav-menu-three {
    background-color: #fff;
    border-radius: 50px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding: 20px;
    display: flex;
    position: relative;
    top: 59px;
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-menu-three--no-cta {
    padding-bottom: 20px;
  }

  .container-2 {
    max-width: 728px;
  }

  .navbar-logo-center {
    margin-bottom: -104px;
  }

  .nav-link {
    color: #231f1f;
    padding-left: 5px;
    padding-right: 5px;
  }

  .nav-menu-wrapper-three {
    background-color: #0000;
    top: 70px;
  }

  .nav-menu-block {
    grid-column-gap: 7px;
    grid-row-gap: 7px;
  }

  .button-primary {
    background-color: #b3d336;
  }

  .menu-button {
    color: #231f1f;
    background-color: #fffee3;
    border-radius: 9px;
    padding: 12px;
  }

  .menu-button.w--open {
    color: #231f1f;
    background-color: #b3d336;
  }

  .navbar-wrapper-three {
    justify-content: space-between;
  }

  .heading-3 {
    font-size: 75px;
    line-height: 75px;
  }

  .image-5-2 {
    top: 25%;
  }

  .image-5-3 {
    bottom: 21%;
    right: 18%;
  }

  .header {
    width: auto;
    max-width: 550px;
  }

  .image-5-1 {
    bottom: 12%;
    left: 7%;
  }

  .image-5 {
    left: 15%;
  }

  .div-block-6 {
    width: 90%;
    max-width: none;
  }

  .div-block-11 {
    text-align: center;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .div-block-12 {
    max-width: 650px;
  }

  .image-4 {
    width: 170px;
  }

  .prod-name {
    margin-left: -48px;
  }

  .prod-name.red {
    margin-right: -31px;
  }

  .mask {
    min-width: auto;
  }

  .div-block-16 {
    text-align: center;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .sci-block {
    width: 100%;
    margin-right: 3%;
  }

  .div-block-17 {
    width: 90%;
    max-width: none;
  }

  .div-block-18 {
    grid-column-gap: 7px;
    grid-row-gap: 7px;
    justify-content: space-between;
    align-items: stretch;
  }

  .div-block-19._1 {
    height: auto;
  }

  .div-block-19._2 {
    height: auto;
    padding: 10px;
  }

  .div-block-19._3 {
    height: auto;
    padding: 11px;
  }

  .heading-4 {
    font-size: 30px;
    line-height: 30px;
  }

  .text-block {
    font-size: 17px;
    line-height: 16px;
  }

  .div-block-9 {
    width: 1200px;
  }

  .slider-2 {
    margin-left: -131px;
  }

  .heading-2 {
    font-size: 1.2em;
    line-height: 1.2em;
  }

  .heading-2.letter {
    font-size: 1.2em;
    line-height: 1.4em;
  }

  .slide-2 {
    width: 80%;
  }

  .div-block-25 {
    width: 55%;
  }

  .text-field {
    line-height: 201px;
  }

  .link-2 {
    font-size: 18px;
  }

  .div-block-26, .div-block-27 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .find-head {
    font-size: 75px;
    line-height: 75px;
  }

  .div-block-44 {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .div-block-46 {
    width: 100%;
  }

  .about-split {
    overflow: hidden;
  }

  .div-block-48.letter {
    margin-top: 20px;
  }

  .div-block-49 {
    padding: 1.3em;
    font-size: 13px;
  }

  .div-block-49.b, .div-block-49.g {
    padding: 1.3em;
  }

  .div-block-49.letter {
    width: 600px;
    padding: 32px;
  }

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

  .div-block-30 {
    width: 95%;
  }

  .div-block-32._2.mob {
    display: none;
  }

  .div-block-51 {
    width: 95%;
  }

  .text-block-11 {
    font-size: 55px;
    line-height: 55px;
  }

  .div-block-52 {
    padding-top: 133px;
    padding-bottom: 0;
  }

  .find-head-copy, .trader {
    font-size: 75px;
    line-height: 75px;
  }

  .image-18 {
    width: 150px;
    right: -2%;
  }

  .image-19 {
    left: -8%;
  }

  .carousel-mask {
    width: 50%;
  }

  .image-20 {
    width: 100px;
  }
}

@media screen and (max-width: 767px) {
  .navbar-brand-three {
    padding-left: 0;
  }

  .nav-menu-three {
    border-radius: 20px;
    flex-direction: column;
    padding-bottom: 30px;
    position: relative;
    top: 60px;
    right: 3%;
  }

  .nav-menu-three--no-cta {
    padding-bottom: 20px;
  }

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

  .list-item-2 {
    text-align: left;
    background-color: #f8f8f0;
    border-radius: 9px;
    width: 100%;
    padding: 5px;
  }

  .nav-link {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .nav-menu-block {
    flex-direction: column;
    width: 100%;
  }

  .nav-menu-block._1 {
    flex-flow: row;
    justify-content: space-between;
    padding-left: 12px;
  }

  .image-5-2 {
    top: 20%;
    right: 7%;
  }

  .image-5-3 {
    bottom: 24%;
    right: 16%;
  }

  .header {
    width: 85%;
  }

  .image-5-1 {
    bottom: 9%;
    left: -1%;
  }

  .image-5 {
    top: 17%;
    left: 10%;
  }

  .marquee-horizontal {
    height: 100px;
  }

  .marquee-horizontal.insta {
    height: 550px;
  }

  .div-block-6 {
    margin-bottom: 25px;
  }

  .div-block-11 {
    text-align: center;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .our-flavs {
    font-size: 40px;
    line-height: 40px;
  }

  .flavour-sub {
    width: 100%;
  }

  .section-9 {
    margin-top: -334px;
    margin-left: 13px;
    margin-right: 13px;
  }

  .div-block-12 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: row;
    align-items: flex-start;
  }

  .div-block-14 {
    text-align: center;
    width: 33%;
  }

  .image-4 {
    width: 120px;
  }

  .prod-name {
    margin-left: 0;
  }

  .prod-name._1 {
    text-align: center;
  }

  .prod-name.red {
    margin-right: 0;
  }

  .sci-div {
    width: 90%;
    margin-left: auto;
  }

  .mask {
    min-width: auto;
  }

  .div-block-16 {
    text-align: center;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .team-slider-arrow._33 {
    margin-left: 0;
    margin-right: 0;
    bottom: -120%;
    left: 55%;
    right: auto;
  }

  .team-slider-arrow._44 {
    margin-left: 0;
    margin-right: 0;
    bottom: -120%;
    left: auto;
    right: 55%;
  }

  .team-slider-arrow._334 {
    bottom: -100%;
    left: auto;
    right: 55%;
  }

  .team-slider-arrow._22 {
    bottom: -100%;
    left: 55%;
    right: auto;
  }

  .our-science {
    font-size: 40px;
    line-height: 40px;
  }

  .section-8 {
    padding-top: 25px;
  }

  .sci-block {
    width: 100%;
    margin-right: 3%;
  }

  .div-block-17 {
    margin-bottom: 25px;
  }

  .div-block-17.science {
    width: 90%;
    max-width: none;
    margin-bottom: 20px;
  }

  .div-block-18 {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
  }

  .div-block-19._1 {
    width: 60%;
  }

  .div-block-19._2, .div-block-19._3 {
    width: 60%;
    padding: 20px;
  }

  .heading-4 {
    margin-bottom: 10px;
  }

  .div-block-9 {
    width: 95%;
    height: 350px;
    margin-bottom: 30px;
  }

  .slider-2 {
    width: 90%;
    margin-left: 0;
    margin-right: 0;
  }

  .div-block-8 {
    flex-flow: column;
  }

  .section-7 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .slide-2 {
    width: 90%;
  }

  .marquee-wrapper {
    font-size: .7em;
  }

  .section-4 {
    padding-top: 0;
    padding-bottom: 20px;
  }

  .div-block-24 {
    flex-flow: column;
    margin-bottom: 15px;
  }

  .div-block-25 {
    width: 100%;
    margin-bottom: 40px;
  }

  .div-block-27 {
    grid-column-gap: 55px;
    grid-row-gap: 55px;
    margin-bottom: 15px;
  }

  .rl_faq1_question {
    padding-top: 0;
    padding-bottom: 0;
  }

  .div-block-44 {
    grid-template-columns: 1fr 1fr;
  }

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

  .rl_faq1_icon {
    width: 1.75rem;
    height: 1.75rem;
  }

  .image-14 {
    width: 10042%;
  }

  .rl_faq1_answer-wrapper {
    margin-bottom: 0;
  }

  .rl_faq1_icon-wrapper {
    width: 1.75rem;
    height: 1.75em;
  }

  .div-block-46 {
    width: 100%;
    padding: 28px;
  }

  .div-block-48 {
    flex-flow: column;
  }

  .div-block-49 {
    width: 100%;
  }

  .div-block-49._2 {
    height: 500px;
  }

  .div-block-49.letter {
    width: auto;
  }

  .div-block-49._2-copy {
    height: 500px;
    display: none;
  }

  .div-block-49._2-copy.mob {
    margin-top: -29px;
    display: block;
  }

  .div-block-49._2-c3 {
    height: 500px;
    margin-top: -22px;
  }

  .div-block-31 {
    flex-flow: column;
  }

  .text-block-6 {
    font-size: 16px;
  }

  .div-block-32._1 {
    width: 100%;
  }

  .div-block-32._2 {
    display: none;
  }

  .div-block-32._2.mob {
    width: 100%;
    display: flex;
  }

  .div-block-39 {
    width: 50%;
    padding: 16px;
  }

  .div-block-39._124 {
    width: 50%;
  }

  .text-block-10 {
    font-size: 16px;
  }

  .text-block-11 {
    margin-bottom: 10px;
  }

  .div-block-52 {
    margin-top: -47px;
    padding-top: 131px;
    padding-bottom: 0;
  }

  .carousel-slider._3 {
    right: -18%;
  }

  .carousel-slider._8 {
    right: -63%;
  }

  .carousel-slider._4 {
    right: -27%;
  }

  .carousel-slider._2 {
    right: -9%;
  }

  .carousel-slider._7 {
    right: -54%;
  }

  .carousel-slider._5 {
    right: -36%;
  }

  .carousel-slider._6 {
    right: -45%;
  }

  .carousel-mask {
    width: 60%;
  }

  .image-20 {
    width: 80px;
  }
}

@media screen and (max-width: 479px) {
  .list-item.pro {
    margin-right: 0;
  }

  .nav-menu-three {
    z-index: 888;
    border: 1px solid #133a451c;
    border-radius: 9px;
    flex-direction: column;
    margin-right: 3%;
    position: relative;
    top: 59px;
    right: auto;
  }

  .container-2 {
    max-width: none;
  }

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

  .list-item-2 {
    color: #231f1f;
    text-align: left;
    background-color: #f8f8f0;
    border-radius: 9px;
    width: 100%;
    margin-bottom: 10px;
    padding-left: 5px;
    padding-right: 5px;
  }

  .nav-link {
    font-size: 17px;
    font-weight: 700;
  }

  .nav-menu-wrapper-three {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    top: 53px;
  }

  .nav-menu-block {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    color: #153b46;
    width: 100%;
    padding-left: 0;
  }

  .nav-menu-block._1 {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 0;
    padding-left: 5px;
  }

  .button-primary {
    font-size: 17px;
    font-weight: 700;
  }

  .menu-button {
    padding: 15px;
  }

  .menu-button.w--open {
    z-index: 999;
    color: #231f1f;
    background-color: #b3d336;
    border-radius: 9px;
    padding: 15px;
  }

  .section-11.home {
    overflow: hidden;
  }

  .heading-3 {
    font-size: 55px;
    font-weight: 800;
    line-height: 50px;
  }

  .image-5-2 {
    width: 80px;
    top: 28%;
    right: 3%;
  }

  .image-5-3 {
    bottom: 20%;
    right: 18%;
  }

  .header {
    width: 90%;
    font-size: 18px;
    line-height: 20px;
  }

  .image-5-1 {
    width: 80px;
    bottom: 13%;
    left: -7%;
  }

  .image-5 {
    top: 20%;
    left: -4%;
  }

  .section-10 {
    height: 50px;
  }

  .marquee-text {
    font-size: 16px;
  }

  .div-block-6.flavours {
    max-width: 90%;
    margin-bottom: 20px;
  }

  .div-block-11 {
    text-align: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .our-flavs {
    margin-bottom: 0;
    font-size: 35px;
    line-height: 35px;
  }

  .flavour-sub {
    font-size: 16px;
    line-height: 16px;
  }

  .section-9 {
    flex-flow: row;
    margin-top: -285px;
    display: flex;
  }

  .div-block-12 {
    grid-column-gap: 21px;
    grid-row-gap: 21px;
    flex-flow: column;
    justify-content: space-around;
    align-items: center;
  }

  .image-4 {
    width: 100px;
  }

  .prod-name {
    margin-left: 0;
    font-size: 12px;
  }

  .prod-name._1 {
    font-size: 12px;
    line-height: 12px;
  }

  .prod-name.red {
    margin-right: 0;
  }

  .sci-div {
    width: 95%;
    margin-left: auto;
  }

  .mask {
    min-width: 100%;
  }

  .div-block-16 {
    text-align: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .team-slider-arrow._33 {
    margin-left: 0;
    margin-right: 0;
    inset: auto auto -15% 55%;
  }

  .team-slider-arrow._44 {
    margin-left: 0;
    margin-right: 0;
    inset: auto 55% -15% auto;
  }

  .team-slider-arrow._334 {
    margin-left: 0;
    margin-right: 0;
    bottom: -118%;
    left: auto;
    right: 55%;
  }

  .team-slider-arrow._22 {
    margin-left: 0;
    margin-right: 0;
    bottom: -118%;
    left: 55%;
    right: auto;
  }

  .team-member-text {
    font-size: 16px;
    line-height: 16px;
  }

  .sci-block {
    width: 100%;
    margin-right: 5%;
  }

  .team-slider-wrapper {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
  }

  .div-block-17.science {
    width: 90%;
  }

  .div-block-19._1, .div-block-19._2, .div-block-19._3 {
    width: 100%;
    padding: 18px;
  }

  .div-block-10._1 {
    padding: 16px;
  }

  .div-block-9 {
    width: 90%;
    height: 300px;
    margin-bottom: 15px;
  }

  .slider-2 {
    width: 90%;
    margin-left: 0;
    margin-right: 0;
  }

  .div-block-8 {
    flex-flow: column;
  }

  .heading-2.press {
    font-size: 20px;
    line-height: 25px;
  }

  .section-7 {
    padding-top: 22px;
    padding-bottom: 22px;
    padding-left: 0%;
  }

  .slide-2 {
    width: 100%;
    margin-right: 10px;
  }

  .section-4 {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
  }

  .text-block-4 {
    width: 100%;
  }

  .div-block-4 {
    padding-left: 0;
    padding-right: 0;
  }

  .text-field {
    padding-top: 23px;
    padding-bottom: 23px;
    font-size: 14px;
  }

  .text-field::placeholder, .submit-button {
    font-size: 14px;
  }

  .find-head {
    font-size: 55px;
    font-weight: 800;
    line-height: 50px;
  }

  .rl_faq1_question {
    justify-content: space-between;
    padding-top: 0;
    padding-bottom: 0;
  }

  .div-block-44 {
    grid-column-gap: 7px;
    grid-row-gap: 7px;
    grid-template-columns: 1fr 1fr;
  }

  .div-block-45 {
    padding: 14px;
  }

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

  .rl-text-style-regular {
    font-size: 11px;
    line-height: 1.3;
  }

  .image-14 {
    width: 100%;
    padding: 7px;
  }

  .rl_faq1_answer-wrapper {
    margin-bottom: 0;
  }

  .rl_faq1_icon-wrapper {
    justify-content: flex-end;
    align-items: center;
    display: flex;
  }

  .div-block-46 {
    border-radius: 11px;
    width: 100%;
    padding: 17px;
  }

  .text-field-2 {
    padding: 23px 13px;
    font-size: 13px;
  }

  .submit-button-2 {
    font-size: 13px;
  }

  .text-block-5 {
    width: 100%;
    font-size: 11px;
    line-height: 13px;
  }

  .div-block-47 {
    grid-column-gap: 7px;
    grid-row-gap: 7px;
  }

  .about-split {
    padding-top: 53px;
  }

  .div-block-48.letter {
    margin-top: 90px;
    padding: 10px;
  }

  .div-block-49._2 {
    height: 350px;
    margin-top: -29px;
    margin-left: -5px;
  }

  .div-block-49.letter {
    padding: 22px;
    transform: rotate(-1.2deg);
  }

  .div-block-49._2-copy {
    height: 350px;
  }

  .div-block-49._2-c3 {
    height: 350px;
    margin-left: -7px;
  }

  .heading-8 {
    margin-top: 28px;
    margin-bottom: 15px;
    line-height: 32px;
  }

  .div-block-31 {
    padding-top: 5px;
  }

  .text-block-6.feat {
    text-align: center;
    font-size: 12px;
  }

  .div-block-35 {
    justify-content: space-between;
    align-items: stretch;
  }

  .div-block-36.lab {
    justify-content: center;
    align-items: center;
  }

  .div-block-51 {
    flex-flow: column;
  }

  .div-block-39, .div-block-39._124 {
    width: 100%;
  }

  .text-block-11 {
    margin-bottom: 20px;
  }

  .div-block-52 {
    margin-top: -49px;
    padding-top: 142px;
    padding-bottom: 10px;
  }

  .find-head-copy, .trader {
    font-size: 55px;
    font-weight: 800;
    line-height: 50px;
  }

  .div-block-53 {
    padding-left: 7px;
    padding-right: 7px;
  }

  .image-18, .image-19 {
    display: none;
  }

  .arrow-left {
    width: 45px;
    height: 45px;
    top: auto;
    bottom: -2%;
  }

  .carousel-slider {
    padding-left: 10px;
    padding-right: 10px;
  }

  .carousel-slider._3, .carousel-slider._8, .carousel-slider._4, .carousel-slider._2, .carousel-slider._7, .carousel-slider._5, .carousel-slider._6 {
    right: 0%;
  }

  .card-body {
    padding: 20px;
  }

  .carousel-mask {
    width: 90%;
  }

  .arrow-right {
    width: 45px;
    height: 45px;
    top: auto;
    bottom: -2%;
  }

  .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .icon-5, .icon-6 {
    width: 45px;
    height: 45px;
  }

  .image-20 {
    width: 75px;
    margin-bottom: 15px;
  }
}