@charset "UTF-8";
:root {
  --kb-color-brand-100: #fef5d0;
  --kb-color-brand-200: #fee8a2;
  --kb-color-brand-300: #fdd874;
  --kb-color-brand-400: #fcc751;
  --kb-color-brand-500: #fbad18;
  --kb-color-brand-500-rgb: 251, 173, 24;
  --kb-color-brand-600: #d78c11;
  --kb-color-brand-700: #b46e0c;
  --kb-color-brand-800: #915307;
  --kb-color-brand-900: #784004;
  --kb-color-neutral-100: #f8f8f8;
  --kb-color-neutral-200: #f1f1f1;
  --kb-color-neutral-300: #d5d5d5;
  --kb-color-neutral-400: #acacac;
  --kb-color-neutral-500: #767676;
  --kb-color-neutral-600: #5f5f5f;
  --kb-color-neutral-700: #4c4c4c;
  --kb-color-neutral-800: #2f2f2f;
  --kb-color-neutral-900: #181818;
  --kb-color-white: #fff;
  --kb-color-black: #111;
  --kb-color-black-rgb: 17, 17, 17;
}

html,
body,
.kb-text-body, .kb-richtext p, body[class*=secrets-of-the-luminara] .sotl-cevoid__body p,
body[class*=sotl-winners] .sotl-cevoid__body p {
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  html,
  body,
  .kb-text-body, .kb-richtext p, body[class*=secrets-of-the-luminara] .sotl-cevoid__body p,
  body[class*=sotl-winners] .sotl-cevoid__body p {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  html,
  body,
  .kb-text-body, .kb-richtext p, body[class*=secrets-of-the-luminara] .sotl-cevoid__body p,
  body[class*=sotl-winners] .sotl-cevoid__body p {
    font-size: 16px;
  }
}

.kbds-hero__caption p, .kb-text-large {
  font-size: 1.143rem;
}
@media screen and (min-width: 768px) {
  .kbds-hero__caption p, .kb-text-large {
    font-size: 1.125rem;
  }
}

.kb-text-small {
  font-size: 0.75rem;
}

/* -------------------------------
01: CSS Color Variables
02: General CSS
03: Text Color Utilities
04: Background Color Utilities
05: Typography
06. Custom Scrollbar
07. Utilities
08. Icons
00: Responsive
------------------------------- */
/* -------------------------------
01: CSS Color Variables
------------------------------- */
:root {
  /* Font Family Variables */
  --kb-heading-font: "Poppins", arial, helvetica, sans-serif;
  --kb-body-font: "Poppins", arial, helvetica, sans-serif;
  --kb-body-font-poppins: "Poppins", arial, helvetica, sans-serif;
  /* Darker  Colors */
  --kb-color-brand-500-darker: #c78915;
  --kb-color-brand-500-darkest: #69490c;
  /* Media Query Sizes */
  --mobile: 480px;
  --tablet: 992px;
  --desktop-sm: 1280px;
  --desktop-lg: 1440px;
  --desktop-xl: 1920px;
  --desktop-xxl: 2400px;
}

/* -------------------------------
02: General CSS
------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--kb-body-font);
  background-color: var(--kb-color-black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  right: 0;
  position: relative;
  overflow-x: hidden;
  width: 100vw;
  max-width: 100vw;
}

.app__container {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding: 0 20px;
}

.hide-mobile {
  display: none;
}

@media screen and (width >= 768px) {
  .app__container {
    max-width: 680px;
  }
}
@media screen and (width >= 992px) {
  .app__container {
    max-width: 900px;
  }
  .hide-desktop {
    display: none;
  }
  .show-desktop {
    display: block;
  }
}
@media screen and (width >= 1280px) {
  .app__container {
    max-width: 1200px;
  }
}
@media screen and (width >= 1920px) {
  .app__container {
    max-width: 1600px;
  }
}
.off-canvas-body {
  overflow: hidden;
  position: relative;
}

.overlay {
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  z-index: 9999;
}

.show-overlay {
  display: block;
  opacity: 1;
  visibility: visible;
}

.body-font {
  font-family: var(--kb-body-font);
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
}

/* -------------------------------
03: Text Color Utilities
------------------------------- */
.color-white {
  color: var(--kb-color-white);
}

.color-yellow {
  color: var(--kb-color-brand-500);
}

.color-gray-light {
  color: var(--kb-color-neutral-300);
}

.color-gray-light-1 {
  color: var(--kb-color-neutral-300);
}

.color-gray-medium {
  color: var(--kb-color-neutral-700);
}

.color-gray-dark {
  color: var(--kb-color-neutral-900);
}

.color-black {
  color: var(--kb-color-black);
}

/* -------------------------------
04: Background Color Utilities
------------------------------- */
.color-bg-white {
  background-color: var(--kb-color-white);
}

.color-bg-yellow {
  background-color: var(--kb-color-brand-500);
}

.color-bg-gray-light {
  background-color: var(--kb-color-neutral-500);
}

.color-bg-gray-medium {
  background-color: var(--kb-color-neutral-700);
}

.color-bg-gray-dark {
  background-color: var(--kb-color-neutral-900);
}

.color-bg-black {
  background-color: var(--kb-color-black);
}

/* -------------------------------
05: Typography
------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--kb-heading-font);
  line-height: 1;
  font-weight: bold;
}

h1,
.heading-1 {
  font-size: 90px;
  font-weight: bold;
  line-height: 80px;
}

h2,
.heading-2 {
  font-size: 70px;
  line-height: 60px;
  font-weight: 700;
}

h3,
.heading-3 {
  font-size: 50px;
  font-weight: bold;
  line-height: 48px;
  text-transform: uppercase;
}

h4,
.heading-4 {
  font-size: 30px;
  font-weight: bold;
  line-height: 27px;
}

h5,
.heading-5 {
  font-size: 24px;
  font-weight: 700;
  line-height: 20px;
}

p {
  font-size: 26px;
  font-weight: normal;
  line-height: 1.5;
}

.title-1,
.title-2,
.title3,
.button-1,
.body-2 {
  font-family: var(--kb-heading-font);
}

.title-1 {
  font-size: 72px;
  font-weight: 400;
  line-height: 62px;
}

.title-2 {
  font-size: 26px;
  line-height: 22px;
}

.title-3 {
  font-size: 40px;
  line-height: 40px;
  letter-spacing: 3pt;
  font-weight: 400;
}

.body-1,
.body-2,
.body-3,
.body-4,
.button-2,
.button-3 {
  font-family: var(--kb-body-font);
  font-weight: normal;
  line-height: 1;
}

.body-1 {
  font-size: 40px;
}

.body-2 {
  font-size: 32px;
  line-height: 2;
  font-family: var(--kb-body-font-poppins);
}

.body-3 {
  font-size: 26px;
  line-height: 1.5;
  font-family: var(--kb-body-font-poppins);
}

.body-4 {
  font-size: 20px;
  line-height: 1.2;
  font-family: var(--kb-body-font-poppins);
}

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

.text_gray {
  color: var(--kb-color-neutral-300);
}

.hyperlink {
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  text-decoration: underline;
  transition: all 0.2s;
  display: inline-block;
  cursor: pointer;
}

.hyperlink:hover {
  color: var(--kb-color-brand-500);
}

.button-1 {
  font-size: 19px;
  line-height: 1;
}

.button-2 {
  font-size: 16px;
  line-height: 1;
}

.button-3 {
  font-size: 17px;
  line-height: 1;
}

.view_all_link {
  text-decoration: none;
  text-transform: uppercase;
  color: var(--kb-color-brand-500);
  font-weight: 700;
}

/* -------------------------------
05: Buttons
------------------------------- */
button,
input[type=button],
input[type=submit] {
  appearance: none;
}

.kb-btn {
  border-radius: 0;
  display: inline-flex;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  color: #212529;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  height: 45px;
  line-height: 45px;
  min-width: 140px;
  background-color: var(--kb-color-neutral-500);
  border: 1px solid transparent;
  font-size: 14px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  padding: 0 40px;
  letter-spacing: 1.5px;
}

.kb-btn:hover {
  color: var(--kb-color-white);
}

.kb-btn-check:focus + .kb-btn,
.kb-btn:focus {
  outline: 0;
  box-shadow: 0 0 0 5px rgba(13, 110, 253, 0.25);
}

.kb-btn-primary {
  background-color: var(--kb-color-brand-500);
}

.kb-btn-primary:disabled {
  background-color: var(--kb-color-neutral-500);
}

.kb-btn-large {
  font-size: 17px;
  height: 80px;
  min-width: 100%;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.kb-btn-fullwidth {
  font-size: 14px;
  height: 80px;
  min-width: 100%;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.kb-btn-small {
  width: 165px !important;
  height: 45px !important;
  line-height: 47px !important;
  /* font-size: 17px; */
  font-weight: bold;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  color: var(--kb-color-brand-500);
}

.kb-btn-small:hover {
  color: var(--kb-color-white);
}

.kb-btn-small-reverse {
  color: var(--kb-color-white) !important;
}

.kb-btn-small-reverse:hover {
  color: var(--kb-color-brand-500) !important;
}

.kb-btn-bordered {
  border-color: var(--kb-color-brand-500);
  color: var(--kb-color-brand-500);
  background-color: transparent;
}

.kb-icon-btn {
  background-color: var(--kb-color-black);
  border: 1px solid var(--kb-color-white);
  display: inline-flex;
  width: 60px !important;
  height: 60px !important;
  align-items: center;
  justify-content: center;
}

.kb-btn-icon {
  padding: 0 !important;
}

.kb-btn-image {
  min-width: 6.1364rem;
  border-color: var(--kb-color-neutral-500);
  width: 40px;
}

.kb-btn-image svg {
  width: 90%;
  height: auto;
}

.kb-btn-image:hover {
  border-color: var(--kb-color-white);
}

.kb-btn-image:hover svg,
.kb-btn-image:hover svg path {
  fill: var(--kb-color-white) !important;
}

.kb-btn-star svg path {
  stroke: var(--kb-color-white);
}

.kb-btn-star:hover svg {
  fill: var(--kb-color-white);
}

.kb-btn-star-yellow {
  background-color: var(--kb-color-black);
  border: 1px solid var(--kb-color-brand-500);
}

.kb-btn-star-yellow svg path {
  stroke: var(--kb-color-brand-500);
}

.kb-btn-star-yellow:hover svg {
  fill: var(--kb-color-brand-500);
}

/* @media screen and (min-width: 767px ){
  .kb-btn {
    height: 90px;
    line-height: 90px;
    width: 300px;
    font-size: 17px;
  }
} */
/* Form Elements */
input,
textarea {
  appearance: none;
}

fieldset {
  border: none;
  margin: 0;
  padding: 0;
}

.field-cover label span {
  color: var(--kb-color-neutral-300);
  margin-top: 0;
}

.input-field-wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
}

.input-field-wrapper .form__message {
  display: block;
  width: 100%;
}

/* Checkboxes */
.kb-checkbox {
  position: absolute;
  opacity: 0;
}

.kb-checkbox + label {
  position: relative;
  cursor: pointer;
  padding: 0;
  user-select: none;
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
}

.kb-checkbox + label::before {
  content: "";
  margin-right: 20px;
  display: inline-block;
  vertical-align: text-top;
  width: 48px;
  height: 48px;
  background: #111;
  border: 2px solid var(--kb-color-neutral-500);
}

.kb-checkbox:checked + label::before {
  border-color: var(--kb-color-brand-500);
}

.kb-checkbox:disabled + label {
  color: #b8b8b8;
  cursor: auto;
}

.kb-checkbox:disabled + label::before {
  box-shadow: none;
  background: #ddd;
}

.kb-checkbox:checked + label::after {
  content: "";
  position: absolute;
  left: 12px;
  top: -3px;
  bottom: 0;
  margin: auto;
  background: transparent;
  width: 25px;
  height: 10px;
  transform: rotate(-45deg) scale(-1, 1);
  border-bottom: 4px solid var(--kb-color-brand-500);
  border-right: 4px solid var(--kb-color-brand-500);
}

/* Input Fields */
.input-field-wrapper.icon-left input {
  padding-left: 50px;
}

.input-large,
.input-medium,
.input-small,
.input-x-small,
.kb-select {
  padding: 0 15px;
  height: 45px;
  width: 100%;
  border: 1px solid var(--kb-color-neutral-500);
  font-weight: 400;
  font-style: normal;
  line-height: 45px;
  font-size: 17px;
  background-color: var(--kb-color-black);
  color: var(--kb-color-white);
  border-radius: 5px;
  font-family: var(--kb-body-font);
}

.input-large {
  font-size: 17px;
  height: 90px;
  line-height: 90px;
}

.input-small {
  font-size: 14px;
  height: 35px;
  line-height: 35px;
}

.input-small::placeholder,
.input-medium::placeholder,
.input-x-small::placeholder {
  color: var(--kb-color-neutral-300);
}

.input-x-small {
  background-color: var(--kb-color-black);
  height: 40px;
  font-size: 12px;
}

.input-focus-white:focus,
.input-focus-yellow:focus {
  border-radius: 0;
  border: 1px solid var(--kb-color-brand-500) !important;
  outline: none;
  color: var(--kb-color-white);
}

.input-focus-white:focus {
  border: 1px solid var(--kb-color-white) !important;
}

.input-focus-yellow:focus {
  border: 1px solid var(--kb-color-brand-500) !important;
}

.input-focus-white:focus + .form-btn svg path {
  fill: var(--kb-color-white);
}

.form-btn {
  position: absolute;
  top: 0;
  right: 10px;
  border: none;
  background-color: transparent;
  width: 40px;
  height: 100%;
  bottom: 0;
  margin: auto;
}

.form-btn svg {
  width: 100%;
}

.input-search-icon {
  position: absolute;
  top: 50%;
  left: 17px;
  transform: translateY(-50%);
  display: flex;
  width: 15px;
}

.input-x-small:focus {
  border-color: var(--kb-color-neutral-500);
  outline: none !important;
  color: var(--kb-color-white);
}

.input-x-small:focus + .input-search-icon svg path {
  fill: var(--kb-color-white);
}

.input-search-icon svg {
  height: 100%;
  width: 100%;
}

/* Select Dropdown */
select,
select option {
  background-color: var(--kb-color-black);
  appearance: none;
}

.select-wrapper {
  position: relative;
  display: block;
  background-color: var(--kb-color-black);
  border: 1px solid var(--kb-color-neutral-500);
}

.select-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid white;
  transform: translateY(-50%);
  pointer-events: none;
}

.kb-select {
  /* Reset */
  appearance: none;
  outline: 0;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  width: 100%;
  height: 40px;
  line-height: 40px;
  background: transparent;
  color: var(--kb-color-neutral-300);
  cursor: pointer;
  position: relative;
  border: none;
}

.kb-select option {
  font-size: 17px;
  color: inherit;
  background-color: var(--kb-color-black);
}

.kb-select:focus {
  outline: none;
}

.kb-select::-ms-expand {
  display: none;
}

/* -------------------------------
06. Custom Scrollbar
------------------------------- */
.kb-scrollbar {
  width: 100%;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: #fff #494949;
}

.kb-scrollbar::-webkit-scrollbar {
  width: 8px;
}

.kb-scrollbar::-webkit-scrollbar-track {
  background: #494949;
}

.kb-scrollbar::-webkit-scrollbar-thumb {
  background: #fff;
}

.kb-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #fff;
}

/* -------------------------------
07. Utilities
------------------------------- */
/* Text Utilities */
.text-upercase {
  text-transform: uppercase;
}

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

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

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

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

/* -------------------------------
08. Icons
------------------------------- */
.icon-single {
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-single svg,
.icon-single img {
  max-width: 50%;
  height: auto;
}

.loading-bar {
  background-image: url("loading-bar.svg");
  background-repeat: repeat-x;
  background-size: contain;
  min-width: 160px;
  height: 8px;
}

/* ------------------------------
UTILS
------------------------------ */
.py-1 {
  padding-top: 2px;
  padding-bottom: 2px;
}

.py-2 {
  padding-top: 4px;
  padding-bottom: 4px;
}

.py-3 {
  padding-top: 6px;
  padding-bottom: 6px;
}

.py-4 {
  padding-top: 8px;
  padding-bottom: 8px;
}

.py-5 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.py-6 {
  padding-top: 12px;
  padding-bottom: 12px;
}

.py-8 {
  padding-top: 16px;
  padding-bottom: 16px;
}

.py-10 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.py-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

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

.desktop-logo {
  display: block;
}

.mobile-logo {
  display: none;
}

/* -------------------------------
Temporary Styling for Demo Purposes
------------------------------- */
.uikit-cover {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 32px;
}

.ui-heading h1 {
  margin-bottom: 40px;
  color: #fff;
  font-size: 34px;
}

.color-block-content p {
  font-size: 16px;
  color: var(--kb-color-neutral-300);
}

.color-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  color: #fff;
}

.color-box {
  width: 120px;
  height: 60px;
  border: 1px solid #000;
}

.color-block-content {
  text-align: center;
  padding: 10px 0 0;
  font-size: 16px;
}

.simple-block {
  margin-bottom: 32px;
}

.simple-blocks * {
  color: #fff;
}

.simple-block span {
  color: var(--kb-color-neutral-300);
  margin-top: 16px;
  display: block;
  font-size: 14px;
}

.simple-block .field-cover label span {
  font-size: 17px !important;
  color: var(--kb-color-neutral-300);
}

.custom-scroll {
  margin-top: 40px;
  border-top: 1px solid var(--kb-color-neutral-500);
  padding-top: 40px;
}

.icons-cover {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 24px;
}

.icon-single img {
  width: 100%;
}

.angle-arrow svg {
  width: 35%;
}

.loading-bar-cover {
  margin-top: 42px;
  width: 50%;
}

/* General Animations */
.kb-scroll-fadIn-animation {
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
  transition: all 1s;
}

.kb-scroll-fadIn-animation.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.index .homepage_carousel {
  padding: 0 !important;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/* Form Errors */
.errors {
  font-size: 14px;
  color: var(--kb-color-white);
}

.errors ul {
  margin: 0;
}

.errors ul li {
  list-style-type: none;
  margin-bottom: 8px;
}

/* ------------------------------------------------------------------------
    OFF CANVAS SEARCH
------------------------------------------------------------------------ */
.off-canvas-search {
  position: fixed;
  top: 0;
  right: 0;
  max-width: none;
  width: 100%;
  background-color: var(--kb-color-black);
  height: 100vh;
  overflow: hidden;
  z-index: 999999;
  transform: translateX(100%);
  will-change: transform;
  transition: ease-in-out 0.2s;
}

.show-menu,
.show-search {
  transform: translateX(0);
}

.off-canvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 24px;
}

.close-menu,
.close-search {
  cursor: pointer;
}

.close-menu {
  position: absolute;
  top: 16px;
  right: 16px;
}

.close-menu svg,
.close-search svg {
  width: 30px;
  height: auto;
}

h2.off-canvas_title {
  font-style: normal;
  font-weight: bold;
  line-height: 3;
  letter-spacing: 1px;
  font-size: 20px;
  font-family: var(--kb-heading-font);
  text-transform: uppercase;
}

.search-modal__form .input-field-wrapper .search__input {
  background: #181818;
  height: 35px;
  line-height: 35px;
  font-size: 13px;
}

.search-modal__form .input-field-wrapper .search__input::placeholder {
  color: var(--kb-color-neutral-300);
  text-transform: capitalize;
}

.search-modal__form {
  margin: 0 30px;
}

@media screen and (width >= 680px) {
  .off-canvas-search {
    max-width: 500px;
    border-left: 1px solid var(--kb-color-neutral-500);
  }
  h2.off-canvas_title {
    font-size: 22px;
  }
  .search-modal__form .input-field-wrapper .search__input {
    height: 45px;
    line-height: 45px;
    font-size: 14px;
  }
}
@media screen and (width >= 1920px) {
  .off-canvas-search {
    height: 100vh;
  }
}
.content {
  background-color: var(--kb-color-black);
}

a {
  color: #fff;
}

.cart-section {
  margin-left: 40px;
  width: 29%;
}

.drawer__wrapper___checkout {
  background-color: var(--kb-color-neutral-900);
}

.drawer__content {
  padding: 22px;
}

.drawer__form {
  border-top: none;
  padding: 18px;
}

.cart-item-thumbnail {
  height: 100px;
  width: 100px;
  margin-right: 20px;
}

.cart-item .title,
.cart-item .price {
  color: var(--kb-color-white);
}

.step__footer__previous-link {
  display: none;
}

.section__header {
  display: none;
}

#continue-button,
#continue-button:hover {
  width: 100%;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  color: var(--kb-color-black);
  background-color: var(--kb-color-brand-500);
  margin-bottom: 20px;
}

.main .field__input {
  background: transparent;
  border-radius: 0;
  margin: 10px 0;
  border: 1px solid var(--kb-color-neutral-500);
  color: var(--kb-color-neutral-300);
}

.field__input:focus,
.field__input-wrapper--flag-focus .field__input {
  outline: none;
  border-color: var(--kb-color-brand-500);
}

.subtotal,
.subtotal-amount,
.tax {
  color: var(--kb-color-white);
  text-transform: none;
}

.subtotal span,
.tax span {
  font-weight: normal;
}

.total {
  border-bottom: none;
  text-transform: uppercase;
  color: var(--kb-color-white);
}

@media (width >= 1000px) {
  .sidebar {
    padding: 0;
    width: 43%;
  }
}
#shopify-section-footer {
  margin-top: 0;
  border-top: 1px solid #494949;
  padding-bottom: 80px;
}

.app__footer {
  display: flex;
  height: initial;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}

.footer__nav {
  width: 100%;
  padding: 40px;
  order: -1;
}

.footer__nav .footer__nav--links {
  display: grid;
  align-items: flex-start;
  justify-content: flex-start;
  list-style: none;
  flex-direction: column;
  gap: 25px;
}

.footer__nav .footer__nav--links a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 1.5px;
}

.footer__nav .footer__nav--links a:hover {
  color: var(--kb-color-brand-500);
}

/* FOOTER SOCIAL */
.footer__social {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 40px;
  flex-direction: column;
  margin-bottom: 40px;
}

.footer__social::before {
  width: 100vw;
  height: 1px;
  background: #808080;
  content: "";
  display: block;
}

.footer__social--header h2 {
  font-size: 24px;
}

.footer__social--networks {
  display: grid;
  align-items: center;
  justify-content: center;
  gap: 20px;
  grid-template-columns: repeat(8, 1fr);
}

.footer__social--networks a {
  display: block;
  text-decoration: none;
}

.footer__social--networks a svg {
  width: 20px;
  height: auto;
}

.footer__social--networks a svg * {
  fill: #808080;
  transition: fill 0.3s ease-in-out;
}

.footer__social--networks a:hover > svg * {
  fill: var(--kb-color-brand-500);
}

.footer__copyright {
  text-align: center;
  font-style: normal;
  font-weight: normal;
  padding-bottom: 30px;
}

.footer__copyright p {
  font-size: 12px;
  color: var(--kb-color-neutral-300);
  font-family: var(--kb-body-font-poppins);
}

@media screen and (width >= 600px) {
  .footer__social--networks {
    gap: 40px;
  }
  .footer__social--header h2 {
    font-size: 28px;
  }
  .footer__social--networks a svg {
    width: 30px;
  }
  .footer__copyright p {
    font-size: 14px;
  }
}
@media screen and (width >= 993px) {
  #shopify-section-footer {
    margin-top: 120px;
    border-top: none;
  }
  .app__footer {
    height: 260px;
  }
  .footer__nav {
    order: initial;
    padding: 0;
    margin: 90px 0;
  }
  .footer__social {
    flex-direction: row;
    gap: 100px;
    margin-bottom: 0;
  }
  .footer__social--networks {
    margin-bottom: initial;
  }
  .footer__social::before {
    display: none;
  }
  .footer__nav .footer__nav--links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-direction: row;
  }
  .footer__nav .footer__nav--links a {
    font-size: 14px;
    white-space: nowrap;
  }
  .footer__copyright p {
    font-size: 14px;
    color: var(--kb-color-neutral-300);
  }
}
@media screen and (width >= 1280px) {
  .footer__nav .footer__nav--links {
    gap: 50px;
    justify-content: space-between;
  }
}
@media screen and (width >= 1920px) {
  .footer__nav .footer__nav--links {
    gap: 70px;
    justify-content: space-between;
  }
}
#shopify-section-header {
  position: sticky;
  top: 0;
  background-color: var(--kb-color-black);
  border-bottom: 1px solid #494949;
  z-index: 99999;
}
#shopify-section-header ul,
#shopify-section-header li {
  list-style: none;
  line-height: 1;
}
#shopify-section-header a {
  text-decoration: none;
}

.kb-header {
  display: grid;
  grid-template-columns: 1fr auto auto;
  grid-template-areas: "logo icons mobilenav";
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  height: 6.05rem;
}
.kb-header__logo {
  grid-area: logo;
}
.kb-header__logo img {
  display: block;
  height: auto;
  width: 30px;
}
.kb-header__logo--desktop {
  display: none;
}
.kb-header__links {
  display: none;
}
.kb-header__actions {
  grid-area: icons;
  display: flex;
  align-items: stretch;
  justify-self: flex-end;
  height: 100%;
  margin-right: 25px;
}
.kb-header__action {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0 15px;
  white-space: nowrap;
}
.kb-header__action svg {
  width: 20px;
  height: 20px;
}
.kb-header__action svg path {
  transition: fill 0.5s ease;
}
.kb-header__action a {
  transition: color 0.5s ease;
}
.kb-header__action:hover a {
  color: var(--kb-color-brand-500);
}
.kb-header__action:hover svg path {
  fill: var(--kb-color-brand-500);
}
.kb-header__action--cart span {
  position: relative;
}
.kb-header__action--signin, .kb-header__action--download {
  display: none;
}
.kb-header__action .cart-bubble {
  width: 20px;
  height: 20px;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  text-align: center;
  position: absolute;
  top: -12px;
  right: -12px;
  font-size: 12px;
  letter-spacing: -1px;
  font-weight: 700;
}

.kb-mobile-nav__menu-toggle {
  display: grid;
  gap: 8px;
  flex-direction: column;
  height: 20px;
  justify-content: space-between;
  cursor: pointer;
}
.kb-mobile-nav__menu-toggle span {
  display: block;
  width: 30px;
  height: 1px;
  background-color: var(--kb-color-white);
}
.kb-mobile-nav__menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  max-width: 460px;
  padding: 25px 40px;
  background-color: rgba(0, 0, 0, 0.9);
  display: grid;
  grid-template-rows: 1fr auto;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all ease-in-out 0.2s;
}
.kb-mobile-nav__menu.show-menu {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}
.kb-mobile-nav__links {
  margin-top: 60px;
}
.kb-mobile-nav__link {
  text-transform: uppercase;
  color: white;
  letter-spacing: 1px;
  font-weight: bold;
  font-size: 13px;
}
.kb-mobile-nav__link a {
  display: flex;
  justify-content: space-between;
  padding-bottom: 40px;
}
.kb-mobile-nav__link svg {
  width: 10px;
  height: 10px;
}
.kb-mobile-nav__footer {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 70px;
}
.kb-mobile-nav__footer p {
  font-size: 13px;
  letter-spacing: 0.4px;
  text-align: center;
  color: white;
}
.kb-mobile-nav__footer .kb-btn {
  font-size: 10px;
}

@media screen and (min-width: 992px) {
  .kb-header {
    grid-template-columns: auto 4fr 1fr;
    grid-template-areas: "logo links icons";
    padding: 0 0 0 30px;
    height: 5.3rem;
  }
  .kb-header__links {
    display: flex;
    justify-content: flex-start;
    margin-left: 2.5vw;
    grid-area: links;
  }
  .kb-header__link {
    display: inline-block;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    transition: color 0.4s ease-out;
    font-weight: 700;
    padding: 25px 15px;
  }
  .kb-header__link:hover {
    color: var(--kb-color-brand-500);
  }
  .kb-header__actions {
    margin-right: 0;
  }
  .kb-header__action--signin {
    display: flex;
  }
  .kb-header__action--signin a {
    display: flex;
    align-items: center;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.085em;
    font-weight: 700;
    gap: 10px;
  }
  .kb-header__action--download {
    display: flex;
    padding: 0;
  }
  .kb-header__action--download:hover svg path {
    fill: #fff;
  }
  .kb-header__action--download .kitbash__cargo__download--button {
    height: 100%;
  }
  .kb-header__action--download .kitbash__cargo__download--button span {
    line-height: 1;
    margin-top: -2px;
  }
  .logged-in .kb-header__action--signin {
    display: none;
  }
  .kb-mobile-nav__menu, .kb-mobile-nav__menu-toggle {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .kb-header__logo--desktop {
    display: block;
  }
  .kb-header__logo--desktop img {
    width: 135px;
  }
  .kb-header__logo--mobile {
    display: none;
  }
  .kb-header__link {
    padding: 25px;
  }
  .kb-header__action:not(.kb-header__action--download, .kb-header__action--cart) a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 25px;
  }
}
.global-sale .kb-header__link[title=Kits] {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.global-sale .kb-header__link[title=Kits]::after {
  display: inline-block;
  content: "Sale!";
  color: var(--kb-color-brand-500);
  font-size: 9px;
  margin: 0 5px;
}
.global-sale .kb-mobile-nav__link a[title=Kits] span::after {
  display: inline-block;
  content: "Sale!";
  color: var(--kb-color-brand-500);
  font-size: 9px;
  margin: 0 5px;
  vertical-align: middle;
}

.feature-nav-vehicles .kb-header__link[title=Vehicles]::after {
  content: "(new)";
  color: var(--kb-color-brand-500);
  margin-left: 5px;
  vertical-align: middle;
}

.checkout--page .kb-header__nav-icons .kb-header__action--search {
  display: none !important;
}

.off-canvas_title {
  margin: 0;
  padding: 0;
}

.no_resultFound {
  padding: 10px 2rem;
}

.off-canvas-body-content {
  height: 88vh;
}

/* Search Results */
.search__results .search_criteria h3 {
  font-size: 14px;
  font-family: var(--kb-body-font);
  margin-bottom: 10px;
  text-transform: capitalize;
  font-weight: normal;
  letter-spacing: 0.5px;
}

.search__results {
  margin-top: 60px;
}

.search-modal__form {
  margin-top: 20px;
}

.search__results .search_criteria-header h3 {
  line-height: 1;
  font-size: 14px;
  color: var(--kb-color-neutral-300);
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
  letter-spacing: 1px;
  font-weight: 800;
}

.search__results .search_criteria-list .result_list-item h3 {
  line-height: 1;
  font-size: 14px;
  color: var(--kb-color-neutral-300);
  margin-bottom: 10px;
  letter-spacing: 1px;
  font-weight: 800;
  text-transform: uppercase;
}

.search__results .search_criteria-list .result_list-item .result_list-item-content p {
  margin-top: 10px;
}

.search_criteria-header {
  padding: 0 0 20px;
  margin-bottom: 44px;
  border-bottom: 1px solid var(--kb-color-neutral-500);
}

.result_list-item-img {
  width: 60px;
  height: 60px;
  overflow: hidden;
}

.result_list-item-img a {
  display: block;
}

.result_list-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#predictive-search-option-search-keywords {
  list-style: none;
}

.result_list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 35px;
}

.result_list-item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 30px;
  transition: all 0.2s;
}

.result_list-item-content h4,
.result_list-item-content p {
  margin: 0;
  padding: 0;
}

.result_list-item-content h4 {
  margin-bottom: 20px;
}

.result_list-item-content p {
  line-height: 1;
  font-size: 14px;
  color: var(--kb-color-neutral-300);
}

.result_list-item-content h3 a {
  color: var(--kb-color-white);
  text-decoration: none;
}

.result_list-item:hover .result_list-item-content h3 a {
  color: var(--kb-color-brand-500);
  display: block;
}

.result_list-item:hover .result_list-item-icon svg path {
  fill: var(--kb-color-brand-500);
}

.story_results .story_date {
  font-size: 20px;
  margin-bottom: 10px;
  display: block;
  color: var(--kb-color-white);
}

.story_results .item-title {
  margin-bottom: 10px;
}

.close-menu svg,
.close-search svg {
  width: 18px;
}

.result_list-item .result_list-item-icon svg {
  width: 15px;
}

.no-matched-results {
  margin-bottom: 40px;
  display: block;
}

/*  ----------------------------------------------------------------
    Blog Search Results
---------------------------------------------------------------- */
.post-no-results {
  padding: 20px 0;
  border-top: 1px solid #808080;
}

.post-no-results p {
  font-size: 17px;
  color: var(--kb-color-neutral-300);
}

#blog-search-results-list {
  display: grid;
  grid-template-columns: 1fr;
}

#blog-search-results-list .search__post__result {
  list-style: none;
  margin-bottom: 30px;
}

#blog-search-results-list .search__post__result a {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  width: 100%;
  align-items: center;
  text-decoration: none;
}

#blog-search-results-list .search__post__result a svg {
  width: 15px;
  margin-left: 20px;
}

#blog-search-results-list .search__post__result a figure {
  width: 100%;
}

#blog-search-results-list .search__post__result a figure img {
  object-fit: cover;
  height: 60px;
  width: 60px;
}

#blog-search-results-list .search__post__result a .content {
  margin-left: 30px;
  overflow: hidden;
  height: 100%;
}

#blog-search-results-list .search__post__result a .content small {
  color: var(--kb-color-neutral-300);
}

#blog-search-results-list .search__post__result a .content h4 {
  color: white;
  font-size: 18px;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
  overflow: hidden;
}

#blog-search-results-list .search__post__result a .content p {
  font-size: 13px;
  color: var(--kb-color-neutral-300);
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
  overflow: hidden;
  margin-top: 4px;
}

#blog-search-results-list .search__post__result a:hover > .content h4 {
  color: var(--kb-color-brand-500) !important;
}

#blog-search-results-list .search__post__result a:hover > svg path {
  fill: var(--kb-color-brand-500) !important;
}

@media screen and (width >= 500px) {
  .result_list-item {
    grid-template-columns: 100px 1fr auto;
  }
  .result_list-item-img {
    width: 100px;
    height: 100px;
  }
  /*  BLOG SEARCH RESULTS */
  #blog-search-results-list .search__post__result a {
    grid-template-columns: 100px 1fr auto;
  }
  #blog-search-results-list .search__post__result a figure img {
    height: 100px;
    width: 100px;
  }
}
@media screen and (width >= 680px) {
  .search__results .search_criteria-header h3 {
    font-size: 20px;
  }
  #blog-search-results-list .search__post__result a .content h4 {
    font-size: 24px;
  }
  #blog-search-results-list .search__post__result a .content p {
    font-size: 16px;
  }
  .result_list-item-content p {
    font-size: 16px;
  }
  .off-canvas-body-content,
  .no_resultFound {
    padding: 20px;
  }
  .close-menu svg,
  .close-search svg {
    width: 20px;
  }
  .result_list-item {
    grid-template-columns: 75px 1fr auto;
  }
  .search__results .search_criteria-list .result_list-item h3 {
    font-size: 16px;
  }
  .result_list-item-img {
    width: 75px;
    height: 75px;
  }
  /*  BLOG SEARCH RESULTS */
  #blog-search-results-list .search__post__result a {
    grid-template-columns: 75px 1fr auto;
  }
  #blog-search-results-list .search__post__result a figure img {
    height: 75px;
    width: 75px;
  }
}
module-drawer,
.kb__module__drawer {
  max-width: 600px;
  display: block;
  padding: 10px;
  height: 100%;
  right: 0;
  top: 0;
  background-color: var(--kb-color-black);
  z-index: 9999;
  border-left: 2px solid #494949;
  width: 100%;
  min-height: 100vh;
  position: absolute;
  transform: translateX(100%);
  transition: transform 0.3s;
  will-change: transform;
}

.is-active {
  width: 100%;
  display: block;
  justify-content: initial;
  align-items: initial;
  flex-direction: initial;
  max-width: initial;
  text-align: initial;
}

.kb__module__drawer.is-open {
  transform: translateX(0%);
  opacity: 1;
  visibility: visible;
}

/*  ----------------------------------------------------------------
  HEADER MODULE DRAWER
  ---------------------------------------------------------------- */
.kb__module__drawer #close-drawer {
  top: 20px !important;
  right: 20px !important;
  transform: scale(0.6);
  transform-origin: top right;
}

.kb__module__drawer .kb__kit__type {
  font-size: 14px;
  color: var(--kb-color-neutral-300);
  text-align: center;
}

.kb__module__drawer .kb__kit__owned p {
  text-align: center;
  font-size: 20px;
  margin-bottom: 10px;
}

.kb__module__drawer .kb__kit__body .kb__kit__license {
  text-align: center;
  font-size: 17px !important;
  letter-spacing: 0.5px;
  margin-bottom: 10px !important;
  text-transform: capitalize;
  color: var(--kb-color-neutral-300);
}

.kb__module__drawer .kb__kit__body .kb__kit__license span {
  display: block;
  font-size: 14px;
}

/*  ----------------------------------------------------------------
FORM MODULE DRAWER
---------------------------------------------------------------- */
.kb__module__drawer .kb__kit__download__wrapper {
  margin-top: 20px;
}

.kb__module__drawer .kb__kit__download__wrapper .kb__kit__form .sub {
  font-size: 12px;
}

.kb__module__drawer .kb__kit__select__item .kb__kit__software__select {
  padding-left: 15px;
  font-size: 13px;
  height: 50px;
  line-height: 16px;
}

.kb__module__drawer .kb__kit__select__item::after {
  top: 2px;
  right: 15px;
  width: 12px;
  height: 12px;
  background: transparent;
  margin: auto;
  border-top: 8px solid white;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid transparent;
  pointer-events: none;
}

.kb__module__drawer .kb__kit__submit {
  width: 100%;
  height: 35px;
  border-radius: 0;
  border: none;
  font-size: 10px;
  text-transform: uppercase;
  background-color: var(--kb-color-brand-500);
  font-weight: bold;
  color: var(--kb-color-black);
  cursor: pointer;
  letter-spacing: 1px;
}

.kb__module__drawer .kb__kit__submit:disabled {
  background: var(--kb-color-neutral-500);
  color: var(--kb-color-black);
  cursor: not-allowed;
}

.error__download p {
  font-size: 12px !important;
  font-weight: bold;
  margin-top: 15px;
  color: var(--kb-color-brand-500);
}

@media screen and (width >= 992px) {
  .kb__module__drawer {
    padding: 20px;
    max-width: 800px;
  }
  /*  ----------------------------------------------------------------
    HEADER MODULE DRAWER
    ---------------------------------------------------------------- */
  .kb__module__drawer #close-drawer {
    transform: scale(0.6);
  }
  .kb__user__account .kb__kit__form__owned .kb__kit__software__section {
    gap: 10px;
  }
  .kb__module__drawer .kb__kit__header {
    margin-bottom: 20px;
    border-bottom: 1px solid grey;
  }
  .kb__module__drawer .kb__kit__type {
    font-size: 20px;
    margin-bottom: 4px;
    text-align: left;
    display: block;
    font-family: var(--kb-body-font);
    letter-spacing: 1px;
  }
  .kb__module__drawer .kb__kit__body {
    margin-bottom: 30px;
  }
  .kb__module__drawer .kb__kit__owned p {
    font-weight: 800;
    font-size: 50px;
    line-height: 40px;
    color: #fff;
    margin-bottom: 29px;
    font-family: var(--kb-heading-font);
    text-align: left;
  }
  .kb__module__drawer .kb__kit__body .kb__kit__license {
    font-weight: bold;
    font-size: 17px;
    letter-spacing: 0.5px;
    color: var(--kb-color-neutral-300);
    text-transform: capitalize;
    text-align: left;
  }
  .kb__module__drawer .kb__kit__body .kb__kit__license span {
    font-size: 17px;
    letter-spacing: 0;
    display: block;
    margin: 5px 0 0;
  }
  .kb__module__drawer .kb__kit__download__wrapper .kb__kit__form .sub {
    font-size: 17px;
  }
  .kb__module__drawer .kb__kit__select__item .kb__kit__software__select {
    height: 45px;
    line-height: 45px;
    font-size: 14px;
    padding: 0 15px;
    letter-spacing: 1px;
  }
  .kb__module__drawer .kb__kit__submit {
    font-size: 14px;
    height: 45px;
    line-height: 45px;
  }
}
@media screen and (width >= 1800px) {
  .kb__module__drawer .kb__kit__body {
    margin-bottom: 60px;
  }
  .kb__module__drawer .kb__kit__owned p {
    margin-bottom: 29px;
  }
}
.step[data-step=thank_you] {
  display: none;
}

.kb__customer__order {
  padding-top: 2rem;
}

.kb__customer__order__header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-width: 75vw;
  margin: 0 auto;
  text-align: center;
}

.kb__customer__order__header svg,
.kb__customer__order__header .thumbnail {
  max-width: 160px;
  height: auto;
  margin-bottom: 35px;
}

.kb__customer__order__header h1 {
  font-weight: bold;
  font-size: 50px;
  color: white;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.kb__customer__order__header p {
  margin-top: 15px;
  font-size: 17px;
  color: var(--kb-color-neutral-500);
}

.kb__customer__order__footer {
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.kb__customer__order__footer a {
  margin: 0 10px;
}

.kb__customer__order__downloads {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.kb__customer__order__downloads .item {
  width: calc(50vw - 10px);
  padding: 0 5px;
  max-width: 300px;
}

.kb__customer__order__downloads .item img {
  width: 100%;
  cursor: pointer;
}

#close-drawer {
  width: 30px;
  position: absolute;
  top: 30px;
  right: 20px;
  cursor: pointer;
  z-index: 10;
}

.kb__customer__order__footer .kb-btn {
  font-size: 14px;
}

.kb__order__confirmation__sidebar {
  position: fixed;
  right: 0;
  top: 0;
  max-width: 800px;
  z-index: 1000;
  width: 100%;
}

.kb__order__confirmation__sidebar .kb__module__drawer {
  padding: 30px 20px;
  width: 100vw;
  max-width: inherit;
  min-height: 100vh;
  overflow: scroll;
}

.kb__order__confirmation__sidebar .kb__module__drawer .kb__kit__header {
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.kb__order__confirmation__sidebar .kb__module__drawer .kb__kit__header img {
  height: 100%;
  width: auto;
}

.kb__kit__owned .kb__kit__owned__item {
  font-size: 30px !important;
  color: white !important;
}

.is-order-confirmation .checkout__module--breadcrumbs {
  display: none;
}

.kb__user__sidebar {
  position: fixed;
  right: 0;
  top: 0;
  max-width: 500px;
  z-index: 999991000;
}

@media screen and (width >= 600px) {
  .kb__customer__order__header h1 {
    font-size: 64px;
  }
  .kb__customer__order__header p {
    font-size: 20px;
  }
  .kb__customer__order__downloads {
    display: flex;
    justify-content: center;
  }
  .kb__customer__order__downloads .item {
    width: calc(33.3333333333vw - 10px);
    padding: 0 10px;
  }
}
@media screen and (width >= 991px) {
  .kb__customer__order {
    padding-top: 60px;
  }
  .kb__customer__order__header h1 {
    font-size: 64px;
  }
  .kb__customer__order__header p {
    font-size: 20px;
    margin-top: 10px;
  }
  .kb__customer__order__downloads {
    display: flex;
    justify-content: center;
  }
  .kb__customer__order__downloads .item {
    width: calc(20vw - 10px);
  }
}
@media screen and (width >= 992px) {
  .kb__user__sidebar {
    top: 73px;
  }
  .kb__order__confirmation__sidebar .kb__module__drawer {
    padding: 50px 80px;
    width: 100vw;
    max-width: 800px;
  }
  .kb__order__confirmation__sidebar .kb__module__drawer .kb__kit__header {
    height: 200px;
    justify-content: flex-start;
  }
  .kb__kit__owned .kb__kit__owned__item {
    font-size: 50px !important;
  }
}
@media screen and (width >= 2000px) {
  .kb__customer__order__header svg,
  .kb__customer__order__header .thumbnail {
    max-width: 450px;
    height: auto;
  }
  .kb__customer__order__header h1 {
    font-size: 80px;
    margin-bottom: 0;
  }
  .kb__customer__order__header p {
    font-size: 32px;
    margin-top: 0;
  }
  .kb-btn-medium {
    font-size: 18px;
    min-width: auto;
  }
}
.kitbash--card {
  padding: 46px;
  box-sizing: border-box;
  background: #181818;
  border: 2px solid #494949;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.kitbash--card-outer-container {
  margin: 100px 0;
}
.kitbash--card-team-feature-container {
  gap: 28px;
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (width >= 992px) {
  .kitbash--card-team-feature-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
.kitbash--card-team-feature-button {
  padding-top: 50px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.kitbash--card-team-feature-link {
  margin-top: 1rem;
  color: var(--kb-color-brand-500);
  text-decoration: underline;
  cursor: pointer;
}
.kitbash--card-team-feature-image {
  position: relative;
}
.kitbash--card-team-feature-image img:first-child {
  position: absolute;
  inset: 0;
  margin: auto;
  z-index: 1;
  width: 36px;
  height: auto;
}
@media all and (width >= 992px) {
  .kitbash--card-team-feature-image img:first-child {
    width: 60px;
  }
}
.kitbash--card-team-feature-image img:last-child {
  margin: -46px -46px 0;
  width: calc(100% + 98px);
}
.kitbash--card-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 28px;
}
@media all and (width >= 992px) {
  .kitbash--card-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
.kitbash--card-team-feature-header {
  margin-top: 35px;
  margin-bottom: 25px;
}
.kitbash--card-team-feature-header h4 {
  font-style: normal;
  font-weight: 700;
  align-items: center;
  letter-spacing: -0.02em;
  color: #fff;
  font-size: 28px;
  line-height: 35px;
}
@media screen and (width >= 992px) {
  .kitbash--card-team-feature-header h4 {
    font-size: 36px;
  }
}
.kitbash--card-team-feature-body p {
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.085em;
  color: var(--kb-color-neutral-400);
  font-size: 14px;
  line-height: 150%;
}
@media screen and (width >= 992px) {
  .kitbash--card-team-feature-body p {
    font-size: 18px;
    line-height: 26px;
  }
}
.kitbash--card-studio-header h4 {
  letter-spacing: 0.02em;
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  align-items: center;
  color: #fff;
  margin-bottom: 25px;
}
.kitbash--card-studio-header hr {
  margin-top: 25px;
  margin-bottom: 25px;
  border: 1px solid #494949;
}
.kitbash--card-studio-header p {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.085em;
  text-indent: 2px;
  color: #fff;
}
.kitbash--card-studio-body p {
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.085em;
  color: #fff;
  margin-bottom: 15px;
}
.kitbash--card-studio-body ul {
  list-style-type: none;
}
.kitbash--card-studio-body ul li {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 130%;
  letter-spacing: 0.085em;
  color: #fff;
  padding-bottom: 15px;
  display: grid;
  grid-template-columns: 25px 1fr;
}
.kitbash--card-studio-body ul li svg {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}
.kitbash--card-studio-body ul li svg * {
  fill: #fbad18;
}
.kitbash--card-header-plan {
  font-weight: 700;
}
.kitbash--card-header h4 {
  text-transform: none;
  color: white;
  font-weight: 400;
  margin-bottom: 25px;
}
.kitbash--card-header h4 svg {
  vertical-align: top;
}
.kitbash--card-header hr {
  margin-top: 25px;
  margin-bottom: 25px;
  border: 1px solid #494949;
}
.kitbash--card-header p {
  font-size: 14px;
}
.kitbash--card-body p {
  font-size: 12px;
  margin-bottom: 15px;
  font-weight: 700;
}
.kitbash--card-body ul {
  list-style-type: none;
}
.kitbash--card-body ul li {
  padding-bottom: 15px;
  color: white;
  font-size: 12px;
  font-weight: 400;
}
.kitbash--card-body ul li svg {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}
.kitbash--card-body ul li svg * {
  fill: #fbad18;
}
.kitbash--card-disclaimer {
  padding-top: 10px;
}
@media screen and (width >= 992px) {
  .kitbash--card-disclaimer {
    position: absolute;
    bottom: 14px;
    left: 19px;
    right: 111px;
  }
}
.kitbash--card-disclaimer p {
  font-size: 12px;
}

.kitbash--teams-form-outer-container {
  position: relative;
  overflow: hidden;
}
.kitbash--teams-form-outer-container::after {
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 50vw;
  background-color: #262626;
  position: absolute;
  z-index: -1;
  display: none;
}
@media screen and (width >= 992px) {
  .kitbash--teams-form-outer-container::after {
    display: block;
  }
}
.kitbash--teams-form-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
  width: 100%;
  padding: 30px 0;
}
@media all and (width >= 992px) {
  .kitbash--teams-form-container {
    grid-template-columns: 0.5fr 0.5fr;
  }
}
.kitbash--teams-form {
  width: 100%;
  padding: 0 10px;
}
@media all and (width >= 992px) {
  .kitbash--teams-form {
    padding: 0 20px;
  }
}
@media all and (width >= 1280px) {
  .kitbash--teams-form {
    padding: 0 50px;
  }
}
.kitbash--teams-form .form__submit {
  margin-top: 20px;
}
.kitbash--teams-form-icon {
  padding-bottom: 20px;
}
.kitbash--teams-form .select-wrapper {
  height: 45px;
  padding-top: 3px;
}
.kitbash--teams-form h3 {
  font-family: var(--kb-heading-font);
  font-style: normal;
  font-weight: 700;
  align-items: center;
  text-align: center;
  color: #fff;
  padding-bottom: 25px;
  font-size: 36px;
  line-height: 1;
  text-transform: capitalize;
}
@media screen and (width >= 992px) {
  .kitbash--teams-form h3 {
    font-size: 42px;
    line-height: 42px;
  }
}
.kitbash--teams-form .body-4 {
  font-style: normal;
  font-weight: 400;
  font-size: 18.1539px;
  line-height: 200%;
  color: #808080;
}
.kitbash--teams-form .kb__form__control.input-field-wrapper label {
  font-style: normal;
  font-weight: 400;
  font-size: 18.1539px;
  line-height: 200%;
  color: #808080;
}
.kitbash--teams-form .input-field-wrapper.enterprise_field {
  padding-bottom: 10px;
}
.kitbash--teams-form .input-field-wrapper.enterprise_field label {
  font-style: normal;
  font-weight: 400;
  font-size: 18.1539px;
  line-height: 200%;
  color: #808080;
}
.kitbash--teams-form-description {
  order: 3;
  text-align: center;
  padding: 60px 0;
  position: relative;
  margin-top: 30px;
}
.kitbash--teams-form-description::after {
  width: 200vw;
  height: 100%;
  content: "";
  z-index: -1;
  background: #181818;
  position: absolute;
  left: -25vw;
  top: 0;
}
@media all and (width >= 992px) {
  .kitbash--teams-form-description {
    order: -1;
    padding: 0;
    text-align: left;
    margin-top: 0;
  }
  .kitbash--teams-form-description::after {
    display: none;
  }
}
.kitbash--teams-form-description h3 {
  font-family: var(--kb-heading-font);
  font-style: normal;
  font-weight: 700;
  color: #fff;
  font-size: 36px;
  line-height: 40px;
  max-width: 400px;
  margin: 0 auto;
}
@media all and (width >= 992px) {
  .kitbash--teams-form-description h3 {
    font-size: 72px;
    line-height: 75px;
    max-width: initial;
  }
}
.kitbash--teams-form-description h3 span {
  color: #fbad18;
}

.kb-teams-hero {
  color: var(--kb-color-white);
  background-size: 100% 100%;
  background-image: url("kitbash_teams_header_gradient.jpg");
  background-position: top right;
  padding: 80px 0;
}
.kb-teams-hero__wrapper {
  display: grid;
  align-items: center;
  text-align: center;
  gap: 20px;
}
@media screen and (min-width: 992px) {
  .kb-teams-hero__wrapper {
    text-align: left;
    gap: 100px;
    grid-template-columns: 0.35fr 0.65fr;
  }
}
.kb-teams-hero__title {
  margin-bottom: 1rem;
}
.kb-teams-hero__text {
  color: var(--kb-color-neutral-500);
  text-wrap: balance;
}
.kb-teams-hero img {
  display: block;
  width: 100%;
  height: auto;
}
.kb-teams-hero__ctas {
  margin: 2rem 0 0;
}

.kitbash--teams-logos {
  margin-top: 65px;
  margin-bottom: 65px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
.kitbash--teams-logos img {
  max-width: 50px;
}
@media screen and (width >= 992px) {
  .kitbash--teams-logos {
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 30px;
  }
  .kitbash--teams-logos img {
    max-width: 80px;
  }
}

.kb-cargo-self-checkout {
  padding-top: 65vw;
  background: transparent center top/100% auto no-repeat;
}
@media screen and (min-width: 768px) {
  .kb-cargo-self-checkout {
    padding: 150px 0 150px 50%;
    background: transparent -5% center/60% auto no-repeat;
  }
}
.kb-cargo-self-checkout__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .kb-cargo-self-checkout__image {
    width: 50%;
  }
}
.kb-cargo-self-checkout h2 span,
.kb-cargo-self-checkout h3 span,
.kb-cargo-self-checkout h4 span,
.kb-cargo-self-checkout p span {
  color: #fbad18;
}
.kb-cargo-self-checkout h3 {
  margin-bottom: 2rem;
}
.kb-cargo-self-checkout h5 {
  margin-top: 1.75rem;
}
.kb-cargo-self-checkout p {
  font-size: 1.1rem;
  margin: 0.5rem 0;
}
.kb-cargo-self-checkout [data-size=h2] {
  font-size: 3rem;
  font-weight: 700;
  color: var(--kb-color-white);
}

.kb-cargo-software {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 400px;
}
@media screen and (min-width: 768px) {
  .kb-cargo-software {
    gap: 2rem 3rem;
    max-width: none;
    margin: 0;
  }
}
@media screen and (min-width: 1200px) {
  .kb-cargo-software {
    gap: 2rem 6.5rem;
  }
}
.kb-cargo-software__item {
  width: 15%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .kb-cargo-software__item {
    width: 55px;
  }
}
@media screen and (min-width: 992px) {
  .kb-cargo-software__item {
    width: 65px;
  }
}
.kb-cargo-software__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero__banner {
  --banner-height: 620px;
  padding: 0;
  min-height: 500px;
  overflow: hidden;
  object-fit: cover;
  height: calc(100vh - 200px);
  max-height: var(--banner-height);
}

.hero__banner .swiper {
  height: 100%;
}

.hero__banner-cover {
  min-height: 500px;
  height: calc(100vh - 200px);
  max-height: var(--banner-height);
}

.hero__banner-cover .swiper::after {
  content: "";
  height: 80px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: block;
  z-index: 2;
  background: linear-gradient(0deg, #111 0%, rgba(0, 0, 0, 0) 100%);
}

.hero__banner-image {
  width: auto;
  min-height: 500px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(100vh - 200px);
  max-height: var(--banner-height);
}

.hero__banner-image img {
  width: auto;
  min-height: 500px;
  object-fit: cover;
  display: block;
  object-position: 200px 0;
  height: calc(100vh - 200px);
}

.hero__banner-video {
  width: 100%;
  max-height: var(--banner-height);
}

.hero__banner-video video {
  height: 100%;
  width: 100%;
  object-fit: cover;
  overflow: hidden;
  max-height: var(--banner-height);
}

.hero__banner-content {
  position: relative;
  z-index: 2;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  max-width: 500px;
  height: calc(100vh - 200px);
  max-height: var(--banner-height);
}
.hero__banner-content .hero_text {
  padding-bottom: 5.5rem;
}
@media screen and (min-width: 992px) {
  .hero__banner-content .hero_text {
    padding-bottom: 0;
  }
}
.hero__banner-content .hero__subtitle {
  text-transform: uppercase;
  color: #fff;
  font-size: 17px;
  letter-spacing: 5px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 19px;
}
.hero__banner-content .slide-description {
  font-size: 22px;
  line-height: 36px;
  letter-spacing: -0.05em;
  font-weight: 400;
  margin-bottom: 34px;
  text-wrap: balance;
}

.hero__banner-content h2 {
  margin: 0;
}

.hero__banner-image img,
.hero__banner-image svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: top center;
}

.hero__banner-content .heading-1 {
  font-size: 35px;
  margin-bottom: 30px;
  line-height: 1;
  font-weight: 700;
  font-family: var(--kb-body-font-poppins);
}

.hero__banner-content .body-3 {
  font-size: 14px;
  margin-bottom: 30px;
  font-style: normal;
  font-weight: 400;
  max-width: 400px;
}

.hero__banner-content .kb-btn {
  line-height: 50px;
  font-size: 10px;
  display: inline-block;
  width: 240px;
  height: 50px !important;
  margin: 0 0 10px;
  padding-left: 0;
  padding-right: 0;
}

.hero__banner .swiper-slide {
  overflow: hidden;
}

.hero__banner .swiper-pagination {
  top: initial !important;
  bottom: 0;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  gap: 10px;
  left: initial;
  width: 100%;
  height: 40px;
  padding: 0 20px;
  right: initial;
}

.hero__banner .swiper-pagination-bullet {
  background-color: var(--kb-color-white);
  opacity: 1;
  width: 9px;
  height: 9px;
}

.hero__banner .swiper-pagination-bullet-active {
  background-color: var(--kb-color-brand-500);
}

.hero_cta.cta_btns a:last-child {
  margin-right: 0;
}

@media screen and (min-width: 992px) {
  .hero__banner-content {
    align-items: center;
    padding-bottom: 0;
  }
  .hero__banner-cover .swiper::after {
    display: none;
  }
  .hero__banner-content .heading-1 {
    font-size: 40px;
    margin-bottom: 20px;
    line-height: 1.2;
  }
  .hero__banner-content .body-3 {
    font-size: 17px;
  }
  .hero__banner .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
  .hero__banner-content .kb-btn {
    margin-right: 20px;
    transform-origin: top left;
    height: 45px;
    line-height: 45px;
    font-size: 13px;
    min-width: 180px;
  }
  .hero__banner-image img {
    object-position: 0;
  }
  /* SWIPER PAGINATION */
  .hero__banner .swiper-pagination {
    right: 30px;
    height: 100%;
    flex-direction: column;
    gap: 15px;
    left: initial;
    width: 20px;
    justify-content: center;
    align-items: center;
    transform: initial !important;
  }
}
@media screen and (min-width: 1200px) {
  .hero__banner-image img {
    transform: scale(1);
  }
}
@media screen and (min-width: 1200px) {
  .hero__banner {
    height: 80vh;
  }
  .hero__banner-image {
    height: 80vh;
  }
  .hero__banner-image img {
    height: 80vh;
    transform: scale(1.2);
  }
  .hero__banner-video {
    width: 100%;
  }
  .hero__banner-content {
    height: 80vh;
  }
  .hero__banner-content .heading-1 {
    font-size: 48px;
    margin-bottom: 27px;
  }
  .hero__banner-content .body-3 {
    font-size: 18px;
    margin-bottom: 40px;
  }
}
.text_parallax {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

.text__parallax-cover {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 280px;
}

.text__parallax-cover .title-1 {
  font-weight: 400;
  text-align: center;
  line-height: 1.2;
  font-size: 24px;
  padding: 0 40px;
}

@media screen and (width >= 992px) {
  .text__parallax-cover {
    height: 320px;
    max-width: 800px;
    margin: 0 auto;
  }
  .text__parallax-cover .title-1 {
    line-height: 1.3;
    font-size: 40px;
  }
}
.kb__feature {
  padding-bottom: 70px;
}

.kb__feature-cover {
  display: grid;
  grid-template-columns: inherit;
  grid-auto-rows: auto;
  grid-gap: 50px;
  align-items: center;
}

#shopify-section-kb-features-3 {
  padding-bottom: 70px;
  margin-bottom: 0;
}

.kb_feature .heading-1 {
  font-size: 35px;
  line-height: 1.1;
  margin-bottom: 30px;
}

.kb_feature .body-2 {
  font-size: 17px;
}

.kb_feature .body-4 {
  font-size: 14px;
  margin-bottom: 20px;
}

.kb__feature-cover .kb__feature-image {
  order: -1;
  text-align: center;
}

.kb__feature-cover .kb__feature-content {
  order: 2;
  text-align: center;
}

.kb__feature-image a {
  display: inline-block;
}

.kb__feature-image a img {
  width: 100%;
  height: auto;
  max-width: 600px;
  margin: 0 auto;
}

.feature_left .kb__feature-content {
  order: 2;
}

.feature_left .kb__feature-image {
  order: 1;
}

.kb__feature-image iframe {
  width: 100%;
  height: 100%;
  border: none;
  background-color: var(--kb-color-black);
}

.kb__feature-video {
  height: 34rem;
  display: flex;
  align-items: center;
}

.kb__feature-video .kb__feature-image {
  display: flex;
  align-items: center;
}

.kb__feature-video.kb__feature-image video {
  width: 100%;
}

.lazyframe {
  width: 100%;
  height: auto;
  display: flex;
  border: 1px solid var(--kb-color-neutral-800);
  overflow: hidden;
}

.lazyframe--custom {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.lazyframe--custom .lazyframe__title {
  position: relative;
  width: 100%;
  display: block;
  font-size: 32px;
  color: #fff;
}

.lazyframe--custom::before {
  width: auto;
}

.lazyframe[data-vendor=youtube],
.lazyframe[data-vendor=youtube_nocookie],
.lazyframe[data-vendor=vimeo] {
  background-color: transparent;
}

.lazyframe::before {
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.lazyframe .lazyframe__title {
  display: none;
}

.lazyframe[data-vendor=youtube]::after,
.lazyframe[data-vendor=youtube_nocookie]::after,
.lazyframe[data-vendor=vimeo]::after {
  width: 2.727rem;
  height: 1.934rem;
  margin: 0 !important;
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
}

.kb_feature .kb-btn {
  margin-top: 40px;
  height: 35px;
  display: inline-block;
  line-height: 35px;
  font-size: 10px;
  padding: 0 25px;
}

@media screen and (width >= 767px) {
  .kb__feature {
    border: none;
    margin: 100px 0;
  }
  .kb_feature .heading-1 {
    font-size: 40px;
    line-height: 40px;
  }
  .kb__feature-cover {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 50px;
    align-items: center;
  }
  .kb__feature-cover .kb__feature-image,
  .kb__feature-cover .kb__feature-content {
    text-align: left;
  }
  .feature_right .kb__feature-image {
    order: 2;
  }
}
@media screen and (width >= 992px) {
  .kb__feature-cover {
    grid-gap: 150px;
  }
  .feature_right .kb__feature-image {
    text-align: right;
  }
  #shopify-section-kb-features-3,
  .kb_feature {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
  }
  .kb_feature .heading-1,
  .kb_feature .body-4 {
    margin-bottom: 40px;
  }
  .kb_feature .kb-btn {
    margin-top: 40px;
    height: 45px;
    line-height: 45px;
    min-width: 160px;
    font-size: 12px;
  }
}
@media screen and (width >= 1280px) {
  .kb__feature .app__container {
    max-width: 1200px;
  }
  .kb__feature-cover {
    grid-gap: 80px;
  }
  .kb_feature .body-2 {
    font-size: 16px;
  }
  .kb_feature .body-4 {
    font-size: 16px;
  }
}
.free_kit {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.free_kit-cover {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 50px;
  align-items: center;
}

.free_kit-cover-content {
  text-align: center;
}

.free_kit-cover-content .heading-1 {
  font-size: 35px;
  line-height: 35px;
  margin-top: 80px;
  margin-bottom: 40px;
  font-weight: 800;
  font-family: var(--kb-body-font-poppins);
}

.free_kit-cover-content .body-2 {
  font-size: 14px;
  margin-bottom: 40px;
  font-family: var(--kb-body-font);
}

.free_kit-cover-img {
  position: relative;
  z-index: 7;
  transform: scale(1.6);
  margin-top: 100px;
  transform-origin: bottom;
}

.free_kit-cover-img img {
  width: 100%;
  position: relative;
  right: 0%;
  height: auto;
}

.free_kit_field {
  max-width: 400px;
  margin: 0 auto;
}

.free_kit_field input {
  height: 40px;
  font-size: 13px;
  line-height: 40px;
}

.free_kit_field a {
  font-size: 13px !important;
  height: 50px;
  line-height: 50px;
  display: inline-block;
}

.free_kit_field button.form-btn svg {
  height: auto;
  width: 100%;
}

.newsletter__holder {
  position: relative;
}

@media screen and (width >= 580px) {
  .free_kit-cover-img {
    transform: scale(1.1);
    margin-top: 40px;
  }
}
@media screen and (width >= 680px) {
  .free_kit-cover-img {
    transform: scale(1.2);
    margin-top: 40px;
  }
}
@media screen and (width >= 992px) {
  .free_kit .top_part {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: var(--kb-color-neutral-900);
  }
  .free_kit-cover {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 200px;
  }
  .free_kit-cover-content {
    text-align: left;
  }
  .free_kit-cover-content .heading-1 {
    font-size: 34px;
    line-height: 45px;
    margin-bottom: 45px;
  }
  .free_kit_field {
    margin: 30px unset unset;
    max-width: 1000px;
  }
  .free_kit-cover-img {
    transform: scale(1);
  }
  .free_kit-cover-img img {
    width: 180%;
    position: relative;
    right: 45%;
    height: auto;
    transform: scale(1);
  }
  .free_kit_field button {
    width: 25px !important;
  }
}
@media screen and (width >= 1280px) {
  .free_kit .top_part {
    height: 100px;
  }
  .free_kit-cover-img img {
    position: relative;
    right: 7%;
    height: auto;
    width: 180%;
    transform: scale(1);
  }
  .free_kit-cover-content .body-2 {
    font-size: 16px;
  }
  .free_kit_field {
    max-width: 480px;
    margin: initial;
  }
  .free_kit-cover-content .heading-1 {
    font-size: 42px;
    line-height: 50px;
  }
  .free_kit_field input {
    height: 50px;
    font-size: 16px;
  }
  .free_kit_field button {
    width: 20px !important;
  }
}
@media screen and (width >= 1440px) {
  .free_kit-cover {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 80px;
  }
  .free_kit_field input {
    height: 60px;
    font-size: 17px;
  }
  .free_kit_field button {
    width: 22px !important;
    right: 20px !important;
    cursor: pointer;
  }
}
.qualifiers__logos-cover {
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}

.qualifiers__logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 40px);
  justify-content: space-between;
  grid-gap: 40px 20px;
  width: 80%;
}

.qualifiers__item img {
  width: 100%;
  opacity: 0.6;
  cursor: pointer;
  transition: ease-in-out 0.2s;
  height: auto;
}

.qualifiers__logos-cover .qualifiers_title {
  font-size: 35px;
  line-height: 40px;
  letter-spacing: 2px;
  font-family: var(--kb-body-font-poppins);
}

.qualifiers__logos-cover .kb-btn {
  height: 50px;
  line-height: 60px;
  width: 200px;
  font-size: 11px;
  padding: 0;
  letter-spacing: 0.5pt;
}

@media screen and (width >= 767px) {
  .qualifiers__logos-cover {
    min-height: 800px;
  }
  .qualifiers__logos-grid {
    grid-template-columns: repeat(6, 50px);
    justify-content: center;
    grid-gap: 80px;
  }
}
@media screen and (width >= 992px) {
  .qualifiers__logos-cover {
    padding: 25px 0;
    margin-bottom: -100px;
  }
  .qualifiers__logos-cover .kb-btn {
    height: 50px;
    line-height: 60px;
    width: 260px;
    font-size: 13px;
  }
  .qualifiers__logos-grid {
    grid-template-columns: repeat(6, 80px);
  }
}
@media screen and (width >= 1280px) {
  .qualifiers__logos-cover .qualifiers_title {
    font-size: 40px;
    line-height: 50px;
  }
}
.compatibility__banner {
  background-color: var(--kb-color-neutral-900);
  padding: 40px 0;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  display: flex;
}

.compatibility__banner-cover .compatibility_title {
  font-size: 35px;
  margin-bottom: 30px;
  line-height: 35px;
}

.compatibility__banner-grid {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(4, 40px);
  grid-gap: 30px;
}

.compatibility__item img {
  width: 100%;
  height: auto;
}

@media screen and (width >= 480px) {
  .compatibility__banner-grid {
    grid-template-columns: repeat(4, 60px);
    grid-gap: 30px 50px;
  }
}
@media screen and (width >= 992px) {
  .compatibility__banner-grid {
    grid-template-columns: repeat(8, 45px);
    grid-gap: 45px;
  }
  .compatibility__banner-cover .compatibility_title {
    font-size: 48px;
    margin-bottom: 60px;
    line-height: 50px;
  }
}
@media screen and (width >= 1440px) {
  .compatibility__banner-cover .compatibility_title {
    margin-bottom: 80px;
  }
  .compatibility__banner-grid {
    grid-gap: 75px;
  }
}
@media screen and (width >= 1921px) {
  .compatibility__banner-cover .compatibility_title {
    font-size: 40px;
    margin-bottom: 40px;
    line-height: 60px;
  }
}
.kb__quotes {
  padding: 0;
}

.kb_quote-single {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 0;
  align-items: center;
}
@media screen and (width >= 992px) {
  .kb_quote-single {
    padding-bottom: 40px;
  }
}

.kb_quote-single--left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.kb_quote-single--left {
  width: 100%;
  height: 300px;
  overflow: hidden;
  object-fit: cover;
  object-position: center center;
}

.kb_quote-single--right {
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100%;
  padding: 40px;
}

.kb_quote-single-content {
  position: relative;
}

.kb_quote-single-content .title-2 {
  font-size: 20px;
  line-height: 32px;
  text-align: center;
  color: var(--kb-color-neutral-300);
  margin-bottom: 30px;
}

.kb_quote-single-content .kb_quote-name {
  font-size: 28px;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.kb_quote-single-content .kb_quote-title {
  font-size: 14px;
  text-align: center;
}

.kb_quote-text {
  font-weight: 400;
  margin-bottom: 40px;
}

.kb_quote-single--left svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  fill: rgba(255, 255, 255, 0.2);
}

.kb__quotes .swiper-pagination-bullet {
  background-color: var(--kb-color-white);
  opacity: 1;
  width: 8px;
  height: 8px;
}

.kb__quotes .swiper-pagination-bullet-active {
  background-color: var(--kb-color-brand-500) !important;
}

@media screen and (width >= 992px) {
  .kb_quote-single {
    grid-template-columns: repeat(2, 1fr);
  }
  .kb_quote-single--left {
    height: auto;
    aspect-ratio: 16/9;
  }
  .kb_quote-single-content {
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
  }
  .kb_quote-single-content .title-2 {
    font-size: 22px;
    line-height: 35px;
    text-align: left;
  }
  .kb_quote-single-content .kb_quote-name {
    font-size: 30px;
    margin-bottom: 20px;
    text-align: left;
  }
  .kb_quote-single-content .kb_quote-title {
    font-size: 16px;
    text-align: left;
  }
  .kb_quote-single--right {
    padding: 0 40px;
  }
  .kb__quotes .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
  }
}
@media screen and (width >= 1600px) {
  .kb_quote-single-content .title-2 {
    font-size: 28px;
    line-height: 46px;
  }
  .kb_quote-single-content .kb_quote-name {
    font-size: 40px;
    margin-bottom: 30px;
  }
  .kb_quote-single--right {
    padding: 0 100px;
  }
}
.section__feature__container {
  margin: 0 auto;
  padding-bottom: 70px;
  max-width: 1200px;
}

.section__feature {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  margin: 0;
  padding-bottom: 70px;
  gap: 50px;
}

.section__feature .section__feature__media {
  order: -1;
}

.section__feature .heading-1 {
  font-size: 40px;
  line-height: 40px;
  margin-bottom: 40px;
  font-family: var(--kb-body-font-poppins);
}

.section__feature .body-2,
.section__feature .body-4 {
  font-size: 17px;
  font-family: var(--kb-body-font);
}

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

.section__feature--content .kb-btn {
  margin-top: 30px;
  height: 35px;
  font-size: 14px;
}

.section__feature__media--image img {
  width: 100%;
  max-width: 600px;
  height: auto;
}

.section__feature__media--video video {
  aspect-ratio: 1/1;
  max-width: 600px;
  max-height: 600px;
  width: 100%;
  height: 100%;
}

@media screen and (width >= 992px) {
  .section__feature__container {
    margin: 100px auto;
  }
  .section__feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
  .section__feature--content {
    text-align: left;
  }
  .section__feature--content .kb-btn {
    margin-top: 30px;
    font-size: 12px;
    height: 45px;
    line-height: 45px;
    min-width: 180px;
    padding-left: 0;
    padding-right: 0;
  }
  .section__feature .section__feature__media {
    order: 2;
  }
  .section__feature--right .section__feature__media {
    order: -1;
  }
}
.hero__banner-content--loggeIn,
.hero__banner-loggedIn .hero__banner-image,
.hero__banner-loggedIn .hero__banner-cover,
.hero__banner-loggedIn {
  width: 100%;
}

.hero__banner-content--loggeIn.hero__banner-content .kb-btn {
  padding: 0;
  margin-top: 20px;
  line-height: 50px;
  height: 50px;
}

.hero__banner-loggedIn .hero__banner-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transform: scale(1);
}

.slide_logo img {
  width: 100%;
  height: auto;
  max-width: 230px;
  margin: 15px 0;
}

.hero__banner-loggedIn .hero__banner-content {
  margin-left: 15px;
  max-width: 80%;
}
@media screen and (min-width: 768px) {
  .hero__banner-loggedIn .hero__banner-content {
    max-width: 500px;
  }
}

.hero__banner-loggedIn .swiper-pagination {
  padding-left: 38px;
}

.hero__banner-content--loggeIn .slide_logo {
  max-width: 291px;
}

.hero__banner-content .hero__subtitle {
  text-transform: uppercase;
  color: #fff;
  font-size: 17px;
  letter-spacing: 5px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 19px;
}
.hero__banner-content .slide-description {
  font-size: 22px;
  line-height: 36px;
  letter-spacing: -0.05em;
  font-weight: 400;
  margin-bottom: 34px;
  text-wrap: balance;
}

@media screen and (width >= 992px) {
  .hero__banner-loggedIn .hero__banner-image img {
    object-position: top center;
  }
  .hero__banner-content--loggeIn .slide_logo {
    margin: 15px 0 0;
  }
  .hero__banner-content--loggeIn .slide_logo img {
    max-width: 350px;
  }
}
@media screen and (width >= 1280px) {
  .hero__banner-content--loggeIn .slide_logo {
    max-width: 350px;
  }
}
@media screen and (width >= 1440px) {
  .hero__banner-content--loggeIn,
  .hero__banner-loggedIn .hero__banner-image,
  .hero__banner-loggedIn .hero__banner-cover,
  .hero__banner-loggedIn {
    height: 80vh;
    max-height: 80vh;
    width: 100%;
  }
  .hero__banner-content--loggeIn .heading-1,
  .hero__banner-loggedIn .hero__banner-image .heading-1,
  .hero__banner-loggedIn .hero__banner-cover .heading-1,
  .hero__banner-loggedIn .heading-1 {
    margin-bottom: 30px;
  }
  .hero__banner-content--loggeIn p.color-white,
  .hero__banner-loggedIn .hero__banner-image p.color-white,
  .hero__banner-loggedIn .hero__banner-cover p.color-white,
  .hero__banner-loggedIn p.color-white {
    margin-bottom: 17px;
  }
  .hero__banner-content--loggeIn.hero__banner-content .kb-btn {
    margin-right: 20px;
    transform-origin: top left;
    height: 50px;
    line-height: 50px;
    font-size: 13px;
    min-width: 180px;
  }
}
@media screen and (width >= 1920px) {
  .hero__banner-content--loggeIn .slide_logo {
    max-width: 500px;
  }
}
.hero_cta.cta_btns {
  margin-top: 1.5rem;
}

.collection_filters {
  padding: 47px 0;
}

.genre__section {
  padding: 45px 0;
  background-color: var(--kb-color-black);
}

.genre__title {
  margin-bottom: 26px;
}

.genre__title h2 {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0;
}

.genre__models {
  overflow: hidden;
  position: relative;
  padding-bottom: 50px;
  margin: 0 calc(50% - 50vw);
}
@media screen and (width >= 768px) {
  .genre__models {
    margin: 0;
  }
}

.genre__models .swiper-pagination-bullet {
  height: 9px;
  width: 9px;
  background: white;
  opacity: 1;
  margin: 0 8px !important;
}

.genre__models .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--kb-color-brand-500);
}

.genre__models-single .genre__models-single--img img {
  width: 100%;
  height: 100%;
  cursor: pointer;
  object-fit: contain;
}

.genre__models-single--img {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.genre__models-single--title {
  text-align: center;
}

.genre__models-single--title .body-4 {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.genre__models-single--title a {
  text-decoration: none;
  color: var(--kb-color-neutral-300);
}

.genre__models-single:hover .genre__models-single--title a {
  color: var(--kb-color-white);
}

.gerne_image {
  position: relative;
}

.gerne_image a:hover > .gerne_image-hover {
  opacity: 1;
}

.gerne_image-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 2;
  transition: 0.2s opacity ease;
}

.genre__models-single.active .genre__models-single--title a {
  color: var(--kb-color-white);
}

/* ACTIVE  */
.swiper-slide-active .genre__models-single--title {
  transform: translateY(0);
}

.swiper-slide-active .genre__models-single--title h2 a {
  color: white;
  opacity: 1;
}

.collection_filters .main_filter .swiper-slide {
  width: 12.5%;
}

.collection_filters .swiper__filter__pagination {
  text-align: center;
  margin-top: 40px;
  gap: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.collection_filters .swiper__filter__pagination .swiper-pagination-bullet {
  background: white;
  opacity: 1;
  width: 6px;
  height: 6px;
}

.collection_filters .swiper__filter__pagination .swiper-pagination-bullet-active {
  background-color: var(--kb-color-brand-500);
}

.swiper-slide.swiper-slide .genre__models-single--title {
  transition: all 0.25s ease-in-out;
  opacity: 0;
  transform: translate(0, 100px);
  position: relative;
}

.swiper-slide.swiper-slide-active .genre__models-single--title {
  opacity: 1;
  transform: translate(0, 0);
}

@supports (-webkit-touch-callout: none) {
  /* CSS specific to iOS devices */
}
@media screen and (width >= 768px) {
  .genre__models-single--img {
    margin-bottom: 20px;
  }
  .genre__models-single--title .body-4 {
    font-size: 10px;
  }
  .swiper-slide.swiper-slide .genre__models-single--title {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@media screen and (width >= 992px) {
  .genre__section {
    padding: 100px 0 50px;
    background-color: var(--kb-color-black);
  }
  .genre__title {
    margin-bottom: 60px;
  }
  .genre__models-single--title .body-4 {
    text-transform: uppercase;
    font-size: 11px;
    font-weight: bold;
  }
  .collection_filters .swiper__filter__pagination {
    display: none;
  }
}
@media screen and (width >= 1280px) {
  .genre__models .swiper-pagination {
    display: none;
  }
  .genre__title h2 {
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 0;
  }
  .genre__models-single--title .body-4 {
    text-transform: uppercase;
    font-size: 12px;
  }
}
@media screen and (width >= 1920px) {
  .genre__models-single--title .body-4 {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
  }
}
.top__charts {
  padding: 0 0 50px;
}

.top__charts-columns .swiper-slide {
  opacity: 0.3;
}

.top__charts-columns .swiper-slide-active {
  opacity: 1;
}

.top__charts-columns {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-column-gap: 0;
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
  position: relative;
}

.column__title {
  margin-bottom: 40px;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.top__cart-column-block {
  border-top: 1px solid var(--kb-color-neutral-500);
  display: grid;
  height: 100px;
  grid-template-columns: 30px 75px 1fr;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
}

.top__chart-counter {
  text-align: center;
  display: flex;
  padding-left: 5px;
  justify-content: flex-start;
  font-size: 20px;
}

.top__chart-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-left: 0;
}

.top__chart-title {
  font-size: 16px;
  font-weight: 800;
  font-family: var(--kb-heading-font);
  letter-spacing: 1px;
}

.top__chart-para {
  line-height: 1.3;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
}

.top__chart-link {
  display: none;
}

.top__chart-link svg path {
  fill: var(--kb-color-neutral-500);
}

.top__chart-link svg {
  width: 10px;
}

.top__chart-image {
  width: 60px;
  height: 60px;
  overflow: hidden;
}

.top__chart-image a {
  display: block;
}

.top__chart-image a img,
.top__chart-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: bottom;
}

.topChart__container .swiper-pagination {
  bottom: -5px;
}

.topChart__container .swiper-pagination-bullet {
  background-color: var(--kb-color-white);
  opacity: 1;
  margin: 0 8px !important;
}

.topChart__container .swiper-pagination-bullet-active {
  background-color: var(--kb-color-brand-500) !important;
}

.top__charts-column--cover {
  display: grid;
  grid-template-rows: auto;
  grid-gap: 0;
}

.top__chart-content .top__chart-title {
  line-height: 1 !important;
  margin-bottom: 10px;
}

@media screen and (width >= 992px) {
  .top__chart-link {
    display: block;
    align-items: center;
    justify-content: center;
  }
  .top__chart-content {
    margin-right: 10px;
    padding: 15px 0 10px 15px;
  }
  .top__charts-column--cover {
    display: grid;
    grid-template-rows: auto;
    grid-gap: 25px;
  }
  .top__chart-image {
    width: 60px;
    height: 60px;
    overflow: hidden;
  }
  .top__cart-column-block {
    height: 100px;
    grid-template-columns: 60px 60px 1fr 25px;
    padding-top: 20px;
  }
  .top__charts-columns {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 25px;
    width: 100%;
    overflow: hidden;
    padding: 10px 0 40px;
  }
  .top__chart-title {
    font-size: 24px;
  }
  .top__chart-para {
    font-size: 14px;
  }
}
@media screen and (width >= 1280px) {
  #chart-pagination {
    display: none;
  }
  .top__charts-columns .swiper-slide,
  .top__charts-columns .swiper-slide-active {
    opacity: 1;
  }
  .top__charts-columns .swiper-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
  }
  .top__charts-column .column__title {
    font-size: 17px;
    letter-spacing: 1px;
    font-weight: 700;
  }
  .top__chart-counter {
    padding-left: 0;
    justify-content: center;
    font-size: 20px;
  }
  .top__chart-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .top__cart-column-block {
    height: 85px;
    grid-template-columns: 60px 85px 1fr 25px;
    border: 1px solid var(--kb-color-neutral-500);
    overflow: hidden;
    padding: 0;
  }
  .top__cart-column-block:hover {
    background: #080808;
  }
  .top__cart-column-block:hover svg path,
  .top__cart-column-block:hover .top__chart-title *,
  .top__cart-column-block:hover > .top__chart-counter {
    color: var(--kb-color-brand-500);
    fill: var(--kb-color-brand-500);
  }
  .top__chart-content {
    padding: 10px 0 10px 18px;
  }
  .top__chart-title {
    font-size: 20px;
  }
  .top__chart-para {
    font-size: 10px;
  }
}
@media screen and (width >= 1440px) {
  .top__chart-title {
    font-size: 20px;
    line-height: 1;
    margin-bottom: 10px;
  }
  .top__chart-para {
    font-size: 12px;
  }
}
@media screen and (width >= 1920px) {
  .column__title {
    margin-bottom: 40px;
    font-size: 26px;
  }
  .top__cart-column-block {
    height: 110px;
    grid-template-columns: 80px 120px 1fr 30px;
  }
  .top__chart-content {
    padding: 20px 0 20px 15px;
    margin-left: 10px;
  }
  .top__chart-title {
    font-size: 26px;
    line-height: 1;
    margin-bottom: 10px;
  }
  .top__chart-para {
    line-height: 1;
    font-size: 14px;
  }
  .top__chart-image {
    width: 120px;
    overflow: hidden;
  }
}
.kit__spotlight-cover {
  position: relative;
  padding-bottom: 150px;
  padding-top: 150px;
  overflow: hidden;
}

.kit__spotlight-cover .center_part {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  max-height: none;
  position: relative;
  z-index: 2;
  flex-direction: column;
  padding-bottom: 60px;
}

.kit__spotlight .top_part {
  top: 50%;
}

.kit__spotlight .bottom_part {
  bottom: 0;
}

.kit__spotlight-cover-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.kit__spotlight-logo img {
  max-width: 400px;
  height: auto;
  margin-bottom: -10px;
}

.kit__spotlight-cover-img a img {
  max-height: 600px;
  width: auto;
}

.kit__spotlight-left .center_part .kit__spotlight-cover-img {
  order: -1;
}

.kit__spotlight .bottom_part,
.kit__spotlight .top_part {
  position: absolute;
  left: 0;
  width: 100%;
  height: 25%;
  z-index: 1;
}

.kit__spotlight-btn .kb-btn-bordered {
  min-width: 140px;
  height: 35px;
  line-height: 35px;
  letter-spacing: 2;
  font-size: 10px;
  display: inline-block;
  padding: 0;
}

/* -----------------------------------------------------------------------------------------------------
    CUSTOMIZE STYLE SECTION
----------------------------------------------------------------------------------------------------- */
/* LA  */
.la__spotlight.kit__spotlight-cover {
  padding-bottom: 10px;
  padding-top: 0;
}

.la__spotlight .kit__spotlight-cover-content {
  margin-left: 0;
  margin-top: 20px;
}

.la__spotlight .kit__spotlight-cover-img a img {
  max-height: 450px;
}

.la__spotlight .kit__spotlight-logo img {
  max-width: 320px;
  height: auto;
  margin-bottom: -10px;
}

/* STOREFRONT */
.storefront__spotlight.kit__spotlight-cover {
  padding-bottom: 0;
  padding-top: 40px;
}

.storefront__spotlight .center_part {
  flex-direction: column-reverse;
}

.storefront__spotlight .kit__spotlight-btn {
  margin-top: 30px;
}

.storefront__spotlight .kit__spotlight-cover-content {
  margin-right: 0;
}

.storefront__spotlight .kit__spotlight-logo img {
  max-width: 320px;
}

.storefront__spotlight .kit__spotlight-cover-img a img {
  max-height: 340px;
}

.storefront__spotlight .bottom_part,
.storefront__spotlight .top_part {
  height: 60%;
  top: 0;
  bottom: initial;
  background-color: #181818 !important;
}

@media screen and (width >= 992px) {
  .kit__spotlight-btn .kb-btn-bordered {
    display: inline-block;
    font-size: 13px;
    height: 45px;
    min-width: 180px;
    line-height: 45px;
    padding: 0;
  }
  .kit__spotlight .top_part {
    top: 0;
    bottom: initial;
  }
  .kit__spotlight .bottom_part {
    display: block;
    bottom: 0;
  }
  .kit__spotlight-cover .center_part {
    flex-direction: row;
  }
  .kit__spotlight-left .kit__spotlight-cover .center_part {
    flex-direction: row-reverse;
  }
  /* -----------------------------------------------------------------------------------------------------
    CUSTOMIZE STYLE SECTION
    ----------------------------------------------------------------------------------------------------- */
  /* LA */
  .la__spotlight.kit__spotlight-cover {
    padding-bottom: 50px;
    padding-top: 0;
  }
  .la__spotlight .kit__spotlight-cover-img a img {
    max-height: 650px;
  }
  .la__spotlight .kit__spotlight-logo img {
    max-width: 500px;
  }
  .la__spotlight .kit__spotlight-cover-content {
    margin-left: -200px;
    margin-top: -40px;
  }
  /* STOREFRONT */
  .storefront__spotlight.kit__spotlight-cover {
    padding-bottom: 50px;
    padding-top: 75px;
  }
  .storefront__spotlight .center_part {
    flex-direction: row;
  }
  .storefront__spotlight .kit__spotlight-btn {
    margin-top: 62px;
  }
  .storefront__spotlight .kit__spotlight-cover-content {
    margin-right: -80px;
  }
  .storefront__spotlight .kit__spotlight-logo img {
    max-width: 400px;
  }
  .storefront__spotlight .kit__spotlight-cover-img a img {
    max-height: 550px;
  }
  .storefront__spotlight .bottom_part,
  .storefront__spotlight .top_part {
    height: 30%;
  }
  .storefront__spotlight .bottom_part {
    bottom: 0;
    top: initial;
  }
}
@media screen and (width >= 1280px) {
  .storefront__spotlight .kit__spotlight-cover-content {
    margin-right: -60px;
    margin-top: 30px;
  }
}
.homepage_carousel {
  margin: 4.5rem 0;
}

.kit_carousel_wrapper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 24px;
}

.kits_carousel-cover .swiper-button-next {
  right: 20px;
  z-index: 999;
}

.kits_carousel-cover .swiper-button-prev {
  left: 20px;
  z-index: 999;
}

.kits_carousel-cover .swiper__arrows .swiper-button-next svg,
.kits_carousel-cover .swiper__arrows .swiper-button-prev svg {
  height: 10px;
}

.kits_carousel-cover .swiper-button-prev::after,
.kits_carousel-cover .swiper-button-next::after {
  content: "";
}

.kits_carousel-cover .swiper-pointer-events {
  position: relative;
}

.kits_carousel-cover .swiper__arrows .swiper-button-next,
.kits_carousel-cover .swiper__arrows .swiper-button-prev {
  position: relative;
  width: 25px;
  height: 25px;
}

.swiper__arrows > div:not(:last-child) {
  margin-right: 10px;
}

.kits_carousel-cover .swiper__arrows .swiper-button-next {
  right: 0;
}

.kits_carousel-cover .swiper__arrows .swiper-button-prev {
  left: 0;
}

.swiper__arrows {
  display: flex;
  align-items: center;
  position: relative;
}

.kits_carousel-cover .swiper-pointer-events::after {
  left: initial;
  right: 0;
  background: linear-gradient(to right, rgba(17, 17, 17, 0) 0%, rgb(17, 17, 17) 99%, rgb(17, 17, 17) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00111111", endColorstr="#111111", GradientType=1);
}

.kits_carousel-cover--button {
  padding: 75px 0;
  display: flex;
  justify-content: center;
}

.kits_carousel-cover--button .kb-btn {
  font-size: 10px;
  height: 35px;
  line-height: 35px;
  padding-left: 0;
  padding-right: 0;
  min-width: 140px;
}

.kb_carousel_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
}

.product__label .label {
  position: absolute;
  top: 15px;
  left: 0;
  height: 24px;
  line-height: 1;
  width: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 10px;
  padding-top: 2px;
  letter-spacing: 1px;
  box-sizing: border-box;
}
.product__label .label--vehicle {
  text-align: center;
  top: auto;
  bottom: 0;
  font-size: inherit;
  padding: 1rem;
  width: 100%;
  height: auto;
  flex-wrap: wrap;
  text-transform: none;
  gap: 0.25rem;
}
.product__label .label__title {
  display: block;
  width: 100%;
}
.product__label .label__discount {
  display: flex;
  gap: 0.25rem;
  align-items: center;
  justify-content: center;
}

.onSale__label {
  color: var(--kb-color-black);
  background-color: var(--kb-color-brand-500);
  z-index: 1;
}

.owned__label {
  background: rgb(24, 24, 24);
  color: var(--kb-color-white);
  z-index: 2;
}

.kitsCarousel .swiper-slide a {
  display: block;
}

.swiper-slide .swiper-lazy {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Animations  */
.kitsCarousel .swiper-slide {
  overflow: hidden;
}

.kitsCarousel .swiper-slide a img {
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.kitsCarousel .swiper-slide a:hover img {
  transform: scale(1.04);
}

.kitsCarousel .swiper-button-next,
.kitsCarousel .swiper-button-prev,
.homepageCarousel .swiper-button-prev,
.homepageCarousel .swiper-button-next {
  display: none !important;
}

.filter-title .body-4 {
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 800;
}

.viewAll_kits {
  display: block;
}

.viewAll_kits a {
  display: block;
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  color: var(--kb-color-brand-500);
  text-decoration: none;
}

/* .collection_filters > .app__container + .app__container {
    padding: 0;
} */
.homepage_carousel:last-child {
  margin-bottom: 40px;
}

.kitsCarousel,
.homepageCarousel {
  display: none;
}

.show_kitCarousel {
  display: block;
}

.swiper__arrows .swiper-button-prev svg path,
.swiper__arrows .swiper-button-next svg path {
  fill: var(--kb-color-white);
}

@media screen and (width <= 992px) {
  .swiper__arrows {
    display: none;
  }
}
@media screen and (width >= 992px) {
  .viewAll_kits {
    display: none;
  }
  .kitsCarousel .swiper-button-next,
  .kitsCarousel .swiper-button-prev,
  .homepageCarousel .swiper-button-prev,
  .homepageCarousel .swiper-button-next {
    display: block !important;
  }
  .kitsCarousel .swiper-button-next svg path,
  .kitsCarousel .swiper-button-prev svg path,
  .homepageCarousel .swiper-button-prev svg path,
  .homepageCarousel .swiper-button-next svg path {
    fill: var(--kb-color-white);
  }
  .kits_carousel-cover .swiper-button-next {
    right: 30px;
    z-index: 999;
  }
  .kits_carousel-cover .swiper-button-prev {
    left: 30px;
    z-index: 999;
  }
  .kit_carousel_wrapper {
    grid-template-columns: repeat(6, 1fr);
  }
  .swiper__arrows .kits_carousel-cover .swiper-button-next,
  .swiper__arrows .kits_carousel-cover .swiper-button-prev {
    position: relative;
    width: 32px;
    height: 32px;
  }
  .swiper__arrows .kits_carousel-cover .swiper-button-next {
    right: 80px;
  }
  .swiper__arrows .kits_carousel-cover .swiper-button-prev {
    left: 80px;
  }
  .swiper__arrows {
    position: relative;
  }
  .swiper-button-prev svg,
  .swiper-button-next svg {
    height: 35px;
  }
  .kits_carousel-cover--button .kb-btn {
    font-size: 12px;
    height: 45px;
    line-height: 45px;
    padding-left: 0;
    padding-right: 0;
    min-width: 180px;
  }
}
@media screen and (width >= 1920px) {
  .filter-title .body-4 {
    font-size: 17px;
    letter-spacing: 1px;
  }
  .homepage_carousel {
    padding: 40px 0 60px;
  }
}
@media screen and (width >= 2800px) {
  .kits_carousel-cover .swiper-button-next {
    right: 120px;
    z-index: 999;
  }
  .kits_carousel-cover .swiper-button-prev {
    left: 120px;
    z-index: 999;
  }
  .swiper-button-prev svg,
  .swiper-button-next svg {
    height: 84px;
  }
  .filter-title .body-4 {
    font-size: 20px;
  }
}
.kb-pdp-sidebar {
  padding: 30px;
  box-sizing: border-box;
  display: flex;
  transition: all 0.5s ease;
  overflow: hidden;
}
.kb-pdp-sidebar__wrapper {
  display: grid;
  width: 100%;
  align-items: flex-start;
  gap: 40px;
  height: fit-content;
}
.kb-pdp-sidebar__wrapper.is-not-owned {
  max-height: 1000px;
}
.kb-pdp-sidebar__license-info {
  font-size: 17px;
  padding-bottom: 25px;
  font-weight: bold;
}
.kb-pdp-sidebar__license-status {
  font-family: var(--kb-heading-font);
  font-size: 30px;
  line-height: 40px;
  color: #fff;
  margin-bottom: 10px;
}
.kb-pdp-sidebar__license-dd {
  font-size: 17px;
  font-weight: bold;
  color: var(--kb-color-neutral-300);
}
.kb-pdp-sidebar__license-dt {
  color: var(--kb-color-brand-500);
  margin: 5px 0 0;
}

.kb-pdp-sidebar__wrapper .kb-pdp-sidebar__header {
  display: grid;
  grid-template-rows: 30px 65% 1fr;
}

.kb__kit__strikethrough {
  color: var(--kb-color-brand-500);
  text-decoration: line-through;
}
@media screen and (min-width: 992px) {
  .kb__kit__strikethrough {
    margin-right: 10px;
  }
}

.kb__kit__sale__price,
.kb__kit__price {
  font-family: var(--kb-heading-font);
  font-size: 35px;
  color: #fff;
  line-height: 1;
}

.global-sale .kb__kit__type,
.kb-pdp-sidebar__header .kb__kit__type {
  font-size: 26px;
  text-transform: uppercase;
  color: var(--kb-color-neutral-300);
  letter-spacing: 1px;
  font-family: var(--kb-body-font);
  font-weight: bold;
}

.global-sale .kb__kit__type {
  color: var(--kb-color-brand-500);
}

.global-sale .kb__kit__buy .kb__kit__price {
  color: var(--kb-color-brand-500);
  position: relative;
  text-decoration: line-through;
}

.kb-pdp-sidebar__header .kb__kit__header img {
  width: 100%;
  height: 100%;
  max-width: initial;
  object-fit: contain;
  object-position: left;
}

/* ----------------------------------------------
    LICENSE TYPE
-----------------------------------------------  */
.kb__kit__license {
  text-transform: uppercase;
  font-size: 25px;
  color: white;
  font-weight: bold;
}

.kb__kit__license span {
  font-size: 17px;
  text-transform: capitalize;
  margin-left: 5px;
  color: var(--kb-color-brand-500);
}

.kb__kit__which__am {
  margin-bottom: 25px;
}

.kb__kit__which__am button {
  color: var(--kb-color-neutral-300);
  font-size: 24px;
  text-decoration-line: underline;
  background: transparent;
  border: none;
  padding: 0;
  font-family: var(--kb-body-font-poppins);
  cursor: pointer;
}

.kb__kit__form__radio__set {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.kb__kit__form__radio__set .kb__kit__radio__item span {
  pointer-events: none;
}

.kb__kit__form__radio__set .kb__kit__radio__item {
  border: 1px solid white;
  height: 50px;
  line-height: 50px;
  font-size: 17px;
  font-weight: bold;
  letter-spacing: 1px;
  text-align: center;
  color: var(--kb-color-neutral-300);
  text-transform: uppercase;
  cursor: pointer;
  align-content: flex-start;
  max-width: 180px;
}

.kb__kit__form__radio__set .kb__kit__radio__item.active {
  border-color: var(--kb-color-brand-500);
  color: white;
}

/* ----------------------------------------------
    OWNED TYPE
-----------------------------------------------  */
.kb__kit__owned .kb__kit__owned__item {
  font-weight: 800;
  font-size: 50px;
  line-height: 40px;
  color: #fff;
  margin-bottom: 30px;
  font-family: var(--kb-heading-font);
}

.kb__kit__license.is-owned {
  font-weight: bold;
  font-size: 17px;
  letter-spacing: 0.5px;
  color: var(--kb-color-neutral-300);
  text-transform: capitalize;
}

.kb__kit__license.is-owned span {
  margin-left: 0;
}

.kb__kit__form__owned .kb__kit__software__section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.kb__kit__form__owned .kb__kit__software__section fieldset {
  border: none;
}

.kb__kit__form__owned .kb__kit__software__section p {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.1;
  letter-spacing: 1px;
  margin-bottom: 17px;
}

.kb__kit__form__owned .kb__kit__software__section p.detail_text {
  text-transform: inherit !important;
  font-weight: 400 !important;
  font-size: 13px !important;
  line-height: 2 !important;
  letter-spacing: 1px !important;
  margin-bottom: 20px !important;
}

.kb__kit__download__action {
  margin-top: 10px;
}

/* ----------------------------------------------
    SOFTWARE SELECTION
-----------------------------------------------  */
.kb__kit__software__section {
  border: none;
  padding: 0;
}

.kb__kit__software__section .sub {
  font-style: normal;
  font-weight: bold;
  font-size: 25px;
  line-height: 1.8;
  letter-spacing: 2px;
  color: #fff;
}

.kb__kit__software__section .details {
  font-style: normal;
  font-weight: normal;
  font-size: 26px;
  line-height: 2;
  color: var(--kb-color-neutral-300);
  font-family: var(--kb-body-font-poppins);
}

.kb__kit__select__item select {
  height: 70px;
  line-height: 70px;
  font-size: 17px;
  font-weight: bold;
  font-family: var(--kb-body-font);
  padding-left: 35px;
}

select option {
  color: white;
  font-family: var(--kb-body-font);
}

.kb__kit__select__item {
  position: relative;
  margin-bottom: 0;
}

.kb__kit__select__item::after {
  opacity: 0.5;
  box-sizing: border-box;
  content: "";
  display: block;
  position: absolute;
  top: 12px;
  right: 30px;
  bottom: 0;
  width: 24px;
  height: 24px;
  background: transparent;
  margin: auto;
  border-top: 12px solid white;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid transparent;
  pointer-events: none;
}

select::-ms-expand {
  display: none;
}

.kb__kit__software__select {
  appearance: none;
  width: 100%;
  padding: 0 16px;
  border: 1px solid #494949;
  background: transparent;
  color: white;
  text-transform: uppercase;
  margin: 0;
}

.kb__kit__software__select option {
  background-color: var(--kb-color-black);
}

.kb__kit__submit {
  margin-top: 20px;
}

@media screen and (width >= 1024px) {
  .kb-pdp-sidebar {
    padding: 30px;
  }
  .kb-pdp-sidebar__wrapper {
    align-content: flex-start;
    gap: 20px;
  }
  .kb__kit__download__action {
    margin-top: 10px;
  }
  .top__fixed .kb-pdp-sidebar {
    height: calc(100vh - 100px);
    overflow: scroll;
    overflow-x: hidden;
  }
  /* ----------------------------------------------
      HEADER
  -----------------------------------------------  */
  .kb-pdp-sidebar__header {
    gap: 0;
  }
  .global-sale .kb__kit__type,
  .kb-pdp-sidebar__header .kb__kit__type {
    font-size: 20px;
  }
  /* ----------------------------------------------
      LICENSE TYPE
  -----------------------------------------------  */
  .kb__kit__license {
    font-size: 15px;
    letter-spacing: 1px;
  }
  .kb__kit__license span {
    font-size: 17px;
    letter-spacing: 0;
    display: block;
    margin: 5px 0 0;
  }
  .kb__kit__which__am {
    margin-bottom: 10px;
  }
  .kb__kit__which__am button {
    font-size: 15px;
    font-family: var(--kb-body-font-poppins);
  }
  .kb__kit__form__radio__set {
    gap: 10px;
  }
  .kb__kit__form__radio__set .kb__kit__radio__item {
    font-size: 10px;
    width: 100%;
    height: 30px;
    line-height: 30px;
    letter-spacing: 1px;
  }
  /* ----------------------------------------------
      SOFTWARE SELECTION
  -----------------------------------------------  */
  .kb__kit__software__section .sub {
    font-size: 14px;
    letter-spacing: 1px;
  }
  .kb__kit__software__section .details {
    font-size: 13px;
    line-height: 2;
    margin-bottom: 20px;
    font-family: var(--kb-body-font-poppins);
  }
  .kb__kit__select__item select {
    height: 45px;
    line-height: 45px;
    font-size: 14px;
    padding: 0 15px;
    letter-spacing: 1px;
  }
  .kb__kit__select__item::after {
    top: 9px;
    right: 18px;
    bottom: 0;
    width: 18px;
    height: 18px;
    border-top: 9px solid white;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 9px solid transparent;
  }
}
@media screen and (width >= 1280px) {
  .kb-pdp-sidebar {
    padding: 40px;
  }
}
@media screen and (width >= 992px) {
  .kb-pdp-sidebar {
    padding: 20px 30px 60px;
  }
  .kb-pdp-sidebar__header {
    gap: 0;
    padding-bottom: 10px;
  }
  .kb-pdp-sidebar__wrapper {
    align-content: flex-start;
    gap: 10px;
  }
  .kb__kit__download__action {
    margin-top: 10px;
  }
  .top__fixed .kb-pdp-sidebar {
    height: calc(100vh - 100px);
  }
  /* ----------------------------------------------
      HEADER
  -----------------------------------------------  */
  .kb-pdp-sidebar__header .kb__kit__header {
    height: 140px;
  }
  .global-sale .kb__kit__type,
  .kb-pdp-sidebar__header .kb__kit__type {
    font-size: 17px;
  }
  /* ----------------------------------------------
      OWNED TYPE
  -----------------------------------------------  */
  .kb__kit__owned .kb__kit__owned__item {
    margin-bottom: 10px;
    font-size: 30px;
  }
  .kb__kit__software__section .sub {
    margin-top: 15px;
  }
  .kb__kit__form__owned .kb__kit__software__section {
    gap: 10px;
  }
  .kb__kit__select__item {
    margin-bottom: 10px;
  }
}
@media screen and (width <= 768px) {
  .kb__kit__select__item::after {
    top: 10px;
    right: 10px;
    width: 12px;
    height: 12px;
    border-top: 6px solid white;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid transparent;
  }
  /* .province__wrapper.kb__kit__select__item::after {
    display: none;
  } */
  .module__user__modal form select,
  .module__user__modal form input {
    max-height: 40px;
    font-size: 11px;
    font-weight: 400;
  }
  .module__user__modal--actions #close-modal,
  .module__user__modal--actions button[type=submit] {
    height: 40px;
    font-size: 11px;
  }
}
@media screen and (width >= 1920px) {
  .kb-pdp-sidebar {
    padding: 40px 30px;
  }
}
.kb__single__product__license {
  display: block;
  position: fixed;
  width: 100%;
  inset: 0;
  z-index: 99999999;
  background: var(--kb-color-black);
  padding: 0;
  margin: auto;
}

.kb__enterprise__licensing {
  display: none;
  height: inherit;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}

/* ------------------------------------------------
  HEADER SECTION
------------------------------------------------ */
.kb__enterprise__licensing__header {
  border-bottom: 2px solid #808080;
  position: relative;
  width: 100%;
  padding: 0 0 10px;
  text-transform: uppercase;
  z-index: 10;
}

.kb__enterprise__licensing__header p {
  color: #fff;
  font-style: normal;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 1px;
  font-size: 20px;
  font-family: var(--kb-heading-font);
  text-transform: uppercase;
}

.kb__enterprise__module__description {
  font-size: 14px;
  color: var(--kb-color-neutral-300);
  margin: 20px 0;
}

/* ------------------------------------------------
  INPUTS SECTION
------------------------------------------------ */
.kb__enterprise__user__info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.kb__form__control label {
  font-size: 13px;
  line-height: 2;
  color: var(--kb-color-neutral-300);
  display: block;
}

.kb__form__control {
  margin-bottom: 25px;
}

.kb__form__control textarea {
  padding: 15px;
  resize: none;
  width: 100%;
  border: 1px solid var(--kb-color-neutral-500);
  font-weight: 400;
  font-style: normal;
  line-height: 15px;
  font-size: 13px;
  background-color: var(--kb-color-black);
  color: var(--kb-color-white);
  height: 100px;
  font-family: var(--kb-body-font);
  letter-spacing: 1px;
}

.kb__form__control .input-medium {
  height: 40px;
  font-size: 13px;
  font-family: var(--kb-body-font);
  letter-spacing: 1px;
}

.select__focused {
  box-shadow: 0 0 3px 0 var(--kb-color-brand-500);
}

.kb__form__control .kb__kit__software__select {
  font-size: 13px;
  height: 40px;
  padding: 0 0 0 10px;
  text-transform: capitalize;
  color: var(--kb-color-neutral-300);
  font-weight: normal;
  font-family: var(--kb-body-font);
  line-height: 40px;
}

.select-wrapper select:not([data-chosen=""]),
.kb__form__control select:not([data-chosen=""]) {
  color: white;
}

.kb__form__control .kb__kit__select__item::after {
  top: 3px;
  right: 15px;
  bottom: 0;
  width: 12px;
  height: 12px;
  border-top: 8px solid white;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.kb__form__control .kb__kit__submit {
  height: 50px;
  font-size: 14px;
  margin-top: 15px;
}

/* ------------------------------------------------
  SENT MESSAGE SECTION
------------------------------------------------ */
.kb__enterprise__module__message__sent {
  text-align: left;
  padding: 60px 20px 0;
}

.kb__enterprise__module__message__sent h3 {
  color: white;
  font-size: 40px;
  margin-bottom: 20px;
  font-weight: bolder;
}

.kb__enterprise__module__message__sent p {
  font-size: 18px;
  margin-bottom: 50px;
  color: var(--kb-color-neutral-300);
}

.kb__enterprise__sent__close {
  text-transform: uppercase;
  background: transparent;
  color: var(--kb-color-brand-500);
  border: 2px solid var(--kb-color-brand-500);
  height: 50px;
  letter-spacing: 0.5pt;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
}

/* ------------------------------------------------
  SIDEBAR FORM SECTION
------------------------------------------------ */
.kb-pdp-sidebar .kb__enterprise__licensing {
  box-sizing: border-box;
}

@media screen and (width >= 1024px) {
  .kb-pdp-sidebar .kb__enterprise__licensing {
    margin: -80px -60px;
    width: calc(100% + 120px);
  }
  .kb__enterprise__licensing__header h2 {
    letter-spacing: 1px;
  }
  .kb_single_product .kb__single__product__license {
    display: none !important;
  }
  .kb__enterprise__module__message__sent {
    padding: 24px;
    margin-top: 80px;
  }
  .kb-pdp-sidebar .kb__enterprise__form {
    padding: 55px 35px 0;
  }
  .kb__form__control label {
    font-size: 14px;
  }
  .kb__form__control .kb__kit__software__select,
  .kb__form__control .input-medium {
    height: 45px;
    line-height: 45px;
    font-size: 14px;
  }
}
@media screen and (width >= 1280px) {
  .kb-pdp-sidebar .kb__enterprise__licensing {
    margin: -60px -60px 0;
    width: calc(100% + 120px);
  }
  .kb__enterprise__licensing__header {
    margin: 0 0 20px;
  }
}
@media screen and (width >= 1920px) {
  .kb__enterprise__licensing__header {
    top: 0;
  }
}
.three__up__feature--container {
  margin: 100px 0;
}

.three__up__feature--container .app__container {
  padding: 0 0 0 20px;
}

.threeUp__feature-header {
  margin-bottom: 20px;
  padding-right: 20px;
  display: flex;
  justify-content: space-between;
}

.threeUp__feature-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}

.threeUp__feature-single {
  display: flex;
  flex-direction: column;
}

.threeUp__feature-single--img {
  width: 100%;
  margin-bottom: 26px;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.threeUp__feature-single--img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.threeUp_content_icon {
  margin-right: 0;
}

.threeUp_content_icon svg {
  height: 15px;
  width: 10px;
  margin-right: 10px;
  display: flex;
}

.threeUp_content_icon svg path {
  fill: var(--kb-color-brand-500);
}

.threeUp_content_title h3 {
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 14px;
  line-height: 1.1;
}

.threeUp_content_title h3 span {
  color: var(--kb-color-neutral-300);
}

.threeUp__feature-single--content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.threeUp_content_desc p {
  position: relative;
}

.threeUp__feature-single:hover .threeUp_content_title h3 a img {
  transition: color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.threeUp__feature-single:hover .threeUp_content_icon,
.threeUp__feature-single .threeUp__feature-single--img {
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.threeUp__feature-single:hover .threeUp_content_title h3 a {
  color: var(--kb-color-brand-500);
}

.threeUp__feature-single:hover .threeUp__feature-single--img {
  transform: scale(1.03);
}

.threeUp_slider .swiper-slide:last-child .threeUp__feature-single {
  margin-right: 0;
}

.threeUp__feature-header h2 {
  font-size: 14px;
  letter-spacing: 0.5px;
}

.threeUp__feature-header .view_all_link {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
}

@media screen and (width >= 992px) {
  .three__up__feature--container .app__container {
    padding: 0 20px;
  }
  .threeUp_slider .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  .threeUp_content_title h3 {
    font-size: 20px;
  }
  .threeUp_content_icon svg {
    margin-right: 20px;
  }
  .threeUp__feature-header .view_all_link {
    font-size: 14px;
  }
  .threeUp__feature-header h2 {
    font-size: 17px;
    letter-spacing: 1px;
    font-weight: 700;
  }
  .threeUp__feature-header {
    margin-bottom: 25px;
    padding-right: 0;
  }
}
@media screen and (width >= 1280px) {
  .threeUp__feature-single--img {
    aspect-ratio: 16/9;
  }
}
@media screen and (width >= 1920px) {
  .threeUp__feature-single--img {
    aspect-ratio: 16/9;
  }
}
.featured__grid {
  padding: 120px 0;
}

.featured__grid .app__container {
  padding: 0 0 0 20px;
}

.featured__grid-cover {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
}

.secondary__feature {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-gap: 40px;
}

.featured_content-subheading {
  line-height: 2;
  font-size: 14px;
  margin-bottom: 10px;
}

.featured_content-heading {
  margin-bottom: 0;
  font-size: 28px;
  line-height: 0.85;
}

.primary__feature,
.secondary__feature {
  position: relative;
}

.featured_content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  padding-right: 30px;
  animation-duration: 0.2s !important;
}

.primary__feature .featured_image {
  height: 100%;
  position: relative;
}

.secondary__feature-single {
  height: 100%;
  overflow: hidden;
  position: relative;
}

.secondary__feature-single .featured_image {
  height: 100%;
}

.primary__feature .featured_image img,
.primary__feature .featured_image svg,
.secondary__feature-single .featured_image img,
.secondary__feature-single .featured_image svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.primary__feature .featured_image svg path,
.secondary__feature-single .featured_image svg path {
  fill: var(--kb-color-neutral-700);
}

.featured_image > a {
  display: block;
  width: 100%;
  height: 100%;
}

/* Animations */
.featured_image {
  overflow: hidden;
  cursor: pointer;
  height: 100%;
}

.featured_image a img,
.featured_content {
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.featured_content-btn {
  display: none;
}

.featuredGrid_slider.swiper-initialized {
  height: 336px;
}

.featuredGrid_slider.swiper-initialized .featured_image {
  width: 100%;
  height: 100%;
}

.featuredGrid_slider.swiper-initialized .featured_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (width >= 992px) {
  .featured_image:hover a img {
    transform: scale(1.05);
  }
  .featured_image:hover .featured_content {
    transform: translateY(-30px);
  }
  .featured__grid .app__container {
    padding: 0 20px;
  }
  .featured_content-heading {
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 1.1;
  }
  .featuredGrid_slider .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-gap: 30px;
    align-items: stretch;
  }
  .featuredGrid_slider .swiper-wrapper .swiper-slide:nth-child(1) {
    grid-row: 1/span 2;
    height: 100%;
  }
  .featuredGrid_slider .swiper-wrapper .swiper-slide {
    height: 100%;
  }
  .featuredGrid_slider .featured_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .featured_content-btn {
    display: inline-block;
    font-size: 13px;
    height: 45px;
    min-width: 180px;
    line-height: 45px;
    padding: 0;
  }
  .featured_content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding-right: 20px;
  }
}
@media screen and (width >= 1280px) {
  .featured_content-heading {
    margin-bottom: 20px;
    font-size: 30px;
  }
  .featured_content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    padding-right: 40px;
  }
}
@media screen and (width >= 1920px) {
  .featured_content-heading {
    font-size: 40px;
  }
  .featured_content-subheading {
    line-height: 2;
    font-size: 17px;
    margin-bottom: 10px;
  }
}
.story__spotlight {
  margin: 50px 0;
}

.story_cover {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 10px;
  align-items: center;
}

.story_cover-image {
  margin: 0 -20px;
  overflow: hidden;
}

.story_cover-image > a {
  display: block;
  width: 100%;
  height: 100%;
}

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

.section_title {
  margin-bottom: 25px;
  font-weight: bold;
}

.story_cover-content .story_sub_title {
  font-size: 12px;
  color: var(--kb-color-neutral-300);
  letter-spacing: 4px;
  font-weight: 800;
}

.story_cover-content .story_title {
  font-size: 35px;
  line-height: 35px;
  margin-bottom: 20px;
  font-weight: 800;
}

.story_cover-content .story_description {
  margin-bottom: 30px;
  font-size: 14px;
  line-height: 2;
}

.story_cover-content .kb-btn {
  min-width: 140px;
  height: 35px;
  line-height: 35px;
  letter-spacing: 2;
  font-size: 10px;
  display: inline-block;
  padding: 0;
}

/* Animations */
/* Zoom in and out */
.kb_zoomInOut {
  transition: all 200ms ease-in;
  transform: scale(1);
}

.kb_zoomInOut:hover {
  transition: all 200ms ease-in;
  transform: scale(1.03);
}

.section_title h2 {
  font-size: 14px;
  font-weight: 800;
}

@media screen and (width >= 768px) {
  .story_cover-image {
    margin: 0;
  }
}
@media screen and (width >= 992px) {
  .section_title h2 {
    font-size: 17px;
    font-weight: bold;
    letter-spacing: 1pt;
  }
  .story_cover-content .story_sub_title {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 20px;
  }
  .story_cover-content .story_description {
    margin-bottom: 40px;
    font-size: 20px;
  }
  .story_cover {
    display: grid;
    grid-template-columns: 3fr 2.4fr;
    grid-gap: 30px;
    align-items: flex-start;
  }
  .story_cover-image {
    margin: 0;
  }
  .story_cover-content .story_title {
    font-size: 60px;
    line-height: 50px;
    margin-bottom: 45px;
  }
  .story_cover-content .kb-btn {
    height: 45px;
    line-height: 45px;
    font-size: 13px;
    min-width: 180px;
  }
}
@media screen and (width >= 1280px) {
  .story_cover {
    align-items: center;
  }
}
.hero_blog .hero_metadata {
  font-size: 17px;
  font-family: var(--kb-body-font);
  margin-bottom: 25px;
  font-weight: 700;
  letter-spacing: 3px;
}

.hero_blog .blog_sub_title {
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 8px;
  margin: 0 0 25px !important;
  padding: 0;
}

.hero_blog .slide_logo {
  margin-bottom: 25px;
}

.hero_blog .author_name {
  margin-right: 60px;
}

.brand_hero,
.brand_hero-cover,
.brand_featured_image,
.brand_hero-content {
  /* height: calc(81vh - 80px); */
  height: 428px;
}

.brand_hero {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.brand_hero-cover .brand_featured_image svg,
.brand_hero-cover .brand_featured_image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand_hero-cover {
  width: 100%;
}

.brand_featured_image {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.brand_hero-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* justify-content: flex-end; */
  justify-content: center;
  text-align: left;
  max-width: 742px;
  position: relative;
  z-index: 999;
  /* padding-bottom: 80px; */
}

.brand_topHeading {
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 2px;
  margin-bottom: 27px;
}

.brand_hero-content .brand_heading1 {
  font-weight: 400;
}

.brand_heading {
  font-size: 35px;
  line-height: 1;
  font-weight: 400;
}

.small_heading {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  display: block;
}

@media screen and (width >= 480px) {
  .brand_hero,
  .brand_hero-cover,
  .brand_featured_image,
  .brand_hero-content {
    height: 50vh;
  }
}
@media screen and (width >= 992px) {
  .brand_heading {
    font-size: 40px;
    line-height: 36px;
  }
  .small_heading {
    font-size: 40px;
    line-height: 36px;
  }
  .brand_hero-content {
    max-width: 600px;
  }
  /* .brand_hero,
        .brand_hero-cover,
        .brand_featured_image,
        .brand_hero-content {
            height: 50vh;
        } */
}
@media screen and (width >= 1920px) {
  .brand_heading {
    font-size: 60px;
    line-height: 55px;
    /* font-size: 50px;
            line-height: 45px; */
  }
  .small_heading {
    font-size: 60px;
    line-height: 55px;
    /* font-size: 50px;
            line-height: 45px; */
  }
  .brand_hero,
  .brand_hero-cover,
  .brand_featured_image,
  .brand_hero-content {
    height: 800px;
  }
  .brand_hero-content {
    max-width: 800px;
  }
  .brand_topHeading {
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 40px;
  }
}
@media screen and (width >= 2400px) {
  .brand_hero,
  .brand_hero-cover,
  .brand_featured_image,
  .brand_hero-content {
    height: 950px;
  }
}
@media screen and (width >= 2800px) {
  .brand_hero,
  .brand_hero-cover,
  .brand_featured_image,
  .brand_hero-content {
    height: 1027px;
  }
}
.brand_community-cover {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 0;
  max-height: 600px;
}

.brand_community {
  overflow: hidden;
  position: relative;
}

.brand_community-content {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  max-height: 600px;
}

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

.brand_community-content h3 {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 4px;
  margin-bottom: 25px;
  line-height: 17px;
}

.brand_communit-text p {
  font-size: 14px;
  font-family: var(--kb-body-font);
  font-weight: normal;
  line-height: 28px;
}

.community_social--networks {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(7, auto);
  justify-content: start;
  grid-gap: 20px;
  align-items: center;
}

.community_social--networks a {
  display: block;
  text-decoration: none;
}

.community_social--networks a svg {
  height: 14px;
  width: 100%;
}

.community_social--networks a svg * {
  fill: #808080;
  transition: fill 0.3s ease-in-out;
}

.community_social--networks a:hover > svg * {
  fill: var(--kb-color-brand-500);
}

.brand_community-content-cover {
  width: 100%;
  padding: 50px 30px;
}

.brand_community:last-child .brand_community-content-cover {
  width: 100%;
}

@media screen and (width >= 680px) {
  .brand_community-cover {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (width >= 992px) {
  .brand_community-content-cover {
    padding: 80px;
  }
  .brand_community-content h3 {
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 60px;
    letter-spacing: 6px;
  }
  .brand_communit-text p {
    font-size: 20px;
    line-height: 40px;
  }
}
@media screen and (width >= 1025px) {
  .brand_community-content-cover,
  .brand_community:last-child .brand_community-content-cover {
    width: 80%;
    margin: 0 auto;
    padding: 30px;
  }
}
@media screen and (width >= 1400px) {
  .brand_community-content-cover,
  .brand_community:last-child .brand_community-content-cover {
    width: 700px;
    margin: 0 auto;
    padding: 80px;
  }
}
@media screen and (width >= 2000px) {
  .brand_community-content h3 {
    font-size: 26px;
  }
  .brand_communit-text p {
    font-size: 18px;
  }
  .community_social--networks a svg {
    height: 20px;
    width: 100%;
  }
  .community_social--networks {
    grid-template-columns: repeat(10, auto);
  }
}
.brand_parallax {
  width: 100%;
  height: 240px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

@media screen and (width >= 992px) {
  .brand_parallax {
    height: 400px;
  }
}
@media screen and (width >= 1920px) {
  .brand_parallax {
    height: 500px;
  }
}
@media screen and (width >= 2400px) {
  .brand_parallax {
    height: 600px;
  }
}
@media screen and (width >= 2800px) {
  .brand_parallax {
    height: 860px;
  }
}
@media screen and (width <= 992px) {
  .brand_parallax {
    background-attachment: unset;
  }
}
/*
@media screen and (min-width: 2400px) {
    .brand_parallax {
        height: 600px;
    }
}
@media screen and (min-width: 2800px) {
    .brand_parallax {
        height: 860px;
    }
} */
.brand_ourMission {
  padding: 40px 0;
}

.brand_ourMission-cover-content {
  /* column-count: 1;
    row-gap: 60px; */
  width: 100%;
  overflow: hidden;
}

.ourmission_sub_title {
  margin-bottom: 20px;
}

.ourmission_sub_title p {
  font-family: var(--kb-heading-font);
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 2px;
}

.brand_ourMission-cover-content p:first-child {
  color: #fff;
}

.brand_ourMission-cover-content p {
  font-size: 14px;
  line-height: 28px;
  color: var(--kb-color-neutral-300);
  font-weight: 400;
  margin-bottom: 30px;
  font-family: var(--kb-body-font-poppins);
}

@media screen and (width >= 767px) {
  .ourmission_sub_title {
    margin-bottom: 80px;
  }
  .brand_ourMission-cover-content {
    height: auto;
  }
}
@media screen and (width >= 992px) {
  .brand_ourMission {
    padding: 171px 0 96px;
  }
  .ourmission_sub_title {
    margin-bottom: 40px;
  }
  .brand_ourMission-cover {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
  }
  .ourmission_sub_title p {
    font-size: 16px;
    letter-spacing: 2px;
    line-height: 28px;
  }
  .brand_ourMission-cover-content p {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 30px;
    font-family: var(--kb-body-font-poppins);
  }
}
@media screen and (width >= 1280px) {
  .ourmission_sub_title {
    margin-bottom: 50px;
  }
  .ourmission_sub_title p {
    font-size: 20px;
    letter-spacing: 2px;
    line-height: 40px;
  }
  .brand_ourMission-cover-content p {
    font-size: 20px;
    line-height: 40px;
    margin-bottom: 30px;
    font-family: var(--kb-body-font-poppins);
  }
}
@media screen and (width >= 1920px) {
  .ourmission_sub_title {
    margin-bottom: 60px;
  }
  /* .brand_ourMission-cover-content {
        height: 440px;
    } */
  /* .ourmission_sub_title p {
        font-size: 20px;
        letter-spacing: 2px;
    }

    .brand_ourMission-cover-content p {
        font-size: 20px;
        line-height: 40px;
        margin-bottom: 30px;
    } */
}
.brand_stats-number {
  margin-bottom: 12px;
}

.brand_stats-cover {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 60px 80px;
  justify-content: space-between;
}

.brand__status--item h3 {
  font-size: 50px;
  line-height: 55px;
}

.brand__status--title {
  font-size: 14px;
  margin-top: 16px;
  font-family: var(--kb-body-font);
  line-height: 20px;
}

.brand_stats {
  padding: 51px 0 50px;
}

@media screen and (width >= 767px) {
  .brand_stats-cover {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 20px;
    justify-content: space-between;
  }
}
@media screen and (width >= 992px) {
  .brand__status--item h3 {
    font-size: 64px;
    margin-bottom: 36px;
  }
  .brand__status--title {
    font-size: 17px;
    margin-top: 0;
    font-family: var(--kb-heading-font);
  }
}
@media screen and (width >= 1440px) {
  .brand__status--item h3 {
    font-size: 80px;
  }
  .brand_stats {
    padding: 80px 0;
  }
}
@media screen and (width >= 1920px) {
  .brand__status--item h3 {
    font-size: 100px;
    margin-bottom: 36px;
    line-height: 1;
  }
  .brand__status--title {
    font-size: 30px;
    line-height: 25px;
    margin-top: 0;
    font-family: var(--kb-heading-font);
    font-weight: 800;
  }
  .brand_stats {
    padding: 112px 0 110px;
  }
}
.story_timline-cover {
  display: none;
  position: relative;
  overflow: hidden;
}

.brand_story {
  padding: 50px 0;
}

.brand__module--intro,
.brand_ourMission-cover-title {
  max-width: 1100px;
  margin: 0 auto;
}

.story_timline-cover .app__container {
  position: relative;
  display: grid;
  grid-template-rows: repeat(2, auto);
  grid-gap: 30px;
}

.brand__module--products h3,
.brand__module--story h3 {
  font-size: 24px;
  margin-bottom: 40px;
  text-transform: capitalize !important;
}

.brand__module--products p,
.brand__module--story p {
  font-size: 17px;
  line-height: 1;
  color: var(--kb-color-neutral-300);
}

.brand__module--products .bran_story_title h3 {
  text-transform: uppercase;
  color: white;
  font-size: 32px;
}

/*  -------------------------------------------------------
    TIMELINE
 ------------------------------------------------------- */
.app__module--timeline--section {
  display: grid;
  grid-template-columns: 100%;
  padding-bottom: 0;
  order: 2;
}

.app__module--timeline--image {
  position: relative;
  right: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  order: 1;
}

.app__module--timeline--image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top right;
  max-width: 350px;
}

/*  -------------------------------------------------------
    TIMELINE
 ------------------------------------------------------- */
.brand__module--timeline {
  display: flex;
  flex-wrap: wrap;
  max-width: 1400px;
  align-items: center;
}

.timeline__item {
  padding: 0 20px;
  position: relative;
}

.timeline__item:last-child {
  position: relative;
}

.timeline__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -15px;
  width: 2px;
  height: 100%;
  background-color: var(--kb-color-brand-500);
}

.brand__module--timeline-heading {
  grid-area: heading;
  text-align: center;
  color: white;
  margin: 0 0 45px;
  position: relative;
}

.brand__module--timeline-heading h3 {
  font-size: 35px;
}

.brand__module--timeline-heading::after {
  content: "";
  display: none;
  height: 2px;
  background: var(--kb-color-brand-500);
  position: absolute;
  bottom: -34px;
  right: -40px;
  width: 100px;
}

/*  -------------------------------------------------------
    TIMELINE ITEMS
 ------------------------------------------------------- */
.timeline__item-1,
.timeline__item-2,
.timeline__item-3,
.timeline__item-4,
.timeline__item-5,
.timeline__item-6 {
  grid-area: initial;
}

.timeline__item:nth-child(odd) {
  text-align: right;
}

.timeline__item:nth-child(even) {
  text-align: left;
  position: relative;
  left: 9px;
  padding-left: 10px;
}

.timeline__item:nth-child(odd)::before {
  left: -6px;
}

/*  -------------------------------------------------------
    TIMELINE INNER
 ------------------------------------------------------- */
.timeline__item--year {
  position: relative;
  margin-bottom: 40px;
}

.timeline__item .timeline__item--year h4 {
  font-size: 60px;
  line-height: 1.2;
  text-align: left;
}

.timeline__item:nth-child(odd) .timeline__item--year h4 {
  text-align: left;
}

.timeline__item--year::before,
.timeline__item--year::after {
  content: "";
  display: block;
  width: 100px;
  height: 2px;
  background: var(--kb-color-brand-500);
  position: absolute;
  bottom: 0;
}

.timeline__item--year::before {
  width: 11px;
  height: 11px;
  border-radius: 100px;
  bottom: -5px;
}

.timeline__item:nth-child(even) .timeline__item--year::after,
.timeline__item:nth-child(even) .timeline__item--year::before {
  left: -30px;
}

.timeline__item:nth-child(odd) .timeline__item--year::after,
.timeline__item:nth-child(odd) .timeline__item--year::before {
  left: -30px;
}

.timeline__item--detail ul {
  line-height: 2;
  color: var(--kb-color-neutral-300);
  font-size: 17px;
  text-align: left;
}

.timeline__item--detail ul li {
  margin-bottom: 35px;
  list-style: none;
}

.timeline__item--detail ul li p {
  display: flex;
  gap: 0;
  justify-content: flex-start;
  align-items: flex-start;
}

.timeline__item--detail ul li p::before {
  content: "• ";
  display: inline-block;
  margin-right: 5px;
}

.timeline__item:nth-child(even) .timeline__item--detail p {
  justify-content: flex-start;
  text-align: left;
}

.timeline__item:nth-child(odd) .timeline__item--detail p {
  justify-content: flex-start;
}

.timeline__item:last-child .timeline__item--detail p {
  justify-content: flex-start !important;
}

.brand__module--products p,
.brand__module--story p,
.timeline__item--detail p {
  font-size: 14px;
  line-height: 28px;
  font-family: var(--kb-body-font);
  color: var(--kb-color-neutral-300);
  font-weight: 400;
  margin-bottom: 30px;
}

.brand__module--story,
.brand__module--products {
  width: 100%;
}

.bran_story_content_image {
  position: relative;
  margin-bottom: 20px;
}

.bran_story_content_image img {
  width: 100%;
  height: auto;
}

.bran_story_content_para {
  margin-bottom: 25px;
}

.bran_story_content_image_title {
  padding: 10px 0;
  text-align: right;
  position: absolute;
  bottom: -34px;
  right: 10px;
}

.bran_story_content_image_title p {
  font-size: 11px !important;
  color: white;
}

.bran_story_content_tagline {
  margin-bottom: 30px;
}

.bran_story_content_heading h3 {
  font-size: 30px;
  line-height: 28px;
}

.bran_story_content.bran_product_contnet {
  margin-bottom: 60px;
}

.brand__module--intro {
  margin-bottom: 100px;
}

@media screen and (width >= 767px) {
  .brand__module--intro {
    gap: 40px;
  }
  .timeline__item .timeline__item--year h4 {
    font-size: 40px;
  }
  .brand__module--products p,
  .brand__module--story p {
    font-size: 17px;
  }
}
@media screen and (width >= 992px) {
  .brand__module--products p,
  .brand__module--story p,
  .timeline__item--detail p {
    font-size: 16px;
  }
  .app__module--timeline--section {
    grid-template-columns: 5fr 2fr;
    padding-bottom: 80px;
  }
  .brand__module--timeline-heading {
    grid-area: heading;
    text-align: right;
    margin-bottom: 0;
    margin-right: 45px;
  }
  .brand__module--timeline-heading h3 {
    font-size: 45px;
  }
  .brand__module--timeline-heading::after {
    display: block;
  }
  .brand__module--timeline {
    display: grid;
    grid-template-areas: "heading item--1" "item--2 item--1" "item--2 item--3" "item--4 item--3" "item--4 item--5" "item--4 item--5" "item--6 item--5";
    gap: 0;
  }
  /*  -------------------------------------------------------
        TIMELINE ITEMS
    ------------------------------------------------------- */
  .timeline__item-1 {
    grid-area: item--1;
    padding-top: 70px;
  }
  .timeline__item-2 {
    grid-area: item--2;
    padding-top: 90px;
  }
  .timeline__item-3 {
    grid-area: item--3;
  }
  .timeline__item-4 {
    grid-area: item--4;
  }
  .timeline__item-5 {
    grid-area: item--5;
  }
  .timeline__item-6 {
    grid-area: item--6;
  }
  .timeline__item:nth-child(odd) {
    text-align: right;
    padding-left: 40px;
  }
  /*  -------------------------------------------------------
        TIMELINE INNER
    ------------------------------------------------------- */
  .timeline__item .timeline__item--year h4 {
    font-size: 60px;
  }
  .timeline__item:nth-child(odd) .timeline__item--year h4 {
    text-align: right;
  }
  .timeline__item--detail ul {
    text-align: initial;
  }
  .timeline__item--detail ul li {
    margin-bottom: 50px;
    text-align: right;
  }
  .timeline__item:nth-child(even) {
    text-align: right;
    position: relative;
    right: -9px;
    padding-right: 40px;
  }
  .timeline__item:nth-child(odd) .timeline__item--year::after,
  .timeline__item:nth-child(odd) .timeline__item--year::before {
    left: initial;
    right: -40px;
  }
  .timeline__item:nth-child(even) .timeline__item--year::after,
  .timeline__item:nth-child(even) .timeline__item--year::before {
    left: -30px;
  }
  .timeline__item:nth-child(odd)::before {
    right: 4px;
    left: initial;
  }
  .story_timline-cover .app__container {
    display: block;
    grid-template-rows: repeat(2, 1fr);
    grid-gap: 30px;
  }
  .app__module--timeline--image {
    position: absolute;
  }
  .timeline__item {
    padding-left: 40px;
    padding-right: 40px;
    position: relative;
  }
  .app__module--timeline--image img {
    max-width: none;
  }
  .bran_story_content_heading h3 {
    font-size: 24px;
  }
  .brand_story {
    padding: 8% 0 0;
  }
}
@media screen and (width >= 1024px) {
  .timeline__item-1 {
    padding-top: 82px;
  }
  .timeline__item .timeline__item--year h4 {
    font-size: 80px;
  }
}
@media screen and (width >= 1280px) {
  .timeline__item-1 {
    padding-top: 95px;
  }
  .timeline__item .timeline__item--year h4 {
    font-size: 70px;
  }
  .app__module--timeline--image {
    right: -30% !important;
  }
  .brand__module--products p,
  .brand__module--story p,
  .timeline__item--detail p {
    font-size: 20px;
    line-height: 40px;
  }
  .timeline__item--detail ul li p {
    display: flex;
    gap: 20px;
  }
  .app__module--timeline--section {
    grid-template-columns: 5fr 3fr;
  }
  .bran_story_content_heading h3 {
    font-size: 26px;
  }
  .bran_story_content_image_title {
    position: relative;
  }
  .bran_story_content_image_title p {
    font-size: 16px !important;
  }
}
@media screen and (width >= 1920px) {
  .timeline__item-1 {
    padding-top: 70px;
  }
  .timeline__item-2 {
    padding-top: 90px;
  }
  .timeline__item .timeline__item--year h4 {
    font-size: 90px;
  }
  .app__module--timeline--image {
    right: 0 !important;
  }
  .app__module--timeline--section {
    grid-template-columns: 3fr 3fr;
    padding-bottom: 120px;
  }
  .bran_story_content_heading h3 {
    font-size: 30px;
    line-height: 1.3;
  }
}
.module__user__info {
  display: flex;
  flex-direction: column;
  background: var(--kb-color-neutral-900);
  padding: 50px 20px;
  margin-top: 50px;
}

.module__user__info--header h1 {
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  color: #fff;
  letter-spacing: 1px;
  border-bottom: 1px solid #808080;
  margin-bottom: 31px;
  padding-bottom: 20px;
  font-family: var(--kb-body-font);
}

.module__user__info--body {
  display: grid;
  flex-direction: column;
  gap: 40px;
  grid-template-columns: 100%;
  grid-template-rows: 1fr;
  grid-template-areas: initial;
}

.module__user__info--body div[class^=module__user__info] {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  height: 100%;
}

.module__user__info--body div[class^=module__user__info] .label {
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--kb-color-neutral-300);
  font-family: var(--kb-body-font-poppins);
}

.module__user__info--body .boxed {
  background: #181818;
  border: 1px solid var(--kb-color-neutral-500);
  box-sizing: border-box;
  width: 100%;
  padding: 4px 20px;
  color: white;
  font-size: 14px;
  line-height: 2;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 75px;
  font-family: var(--kb-body-font-poppins);
}

.module__user__info--body .boxed .edit {
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--kb-color-brand-500);
  margin: auto;
  cursor: pointer;
  font-size: 14px;
  font-family: var(--kb-body-font-poppins);
}

.module__user__info--body .module__user__info--email .boxed {
  cursor: not-allowed;
  border: 1px solid var(--kb-color-neutral-800);
}
.module__user__info--body .module__user__info--email .boxed #customer-email {
  pointer-events: none;
  opacity: 0.5;
}
.module__user__info--body .module__user__info--email .boxed #customer-email::selection {
  background: none;
}

.module__user__info--name,
.module__user__info--email,
.module__user__info--pass,
.module__user__info--software,
.module__user__info--billing,
.module__user__info--renderer,
.module__user__info--news {
  grid-area: initial;
}

.module__user__info--name {
  order: -5;
}

.module__user__info--email {
  order: -4;
}

.module__user__info--pass {
  order: -3;
}

.module__user__info--billing {
  order: -1;
  height: 100%;
}

.module__user__info--renderer {
  order: 1;
}

.module__user__info--software {
  order: 1;
}

.module__user__info--news {
  order: -2;
  line-height: 2;
  justify-content: center;
}

.module__user__info--billing .boxed {
  justify-content: flex-start;
  align-items: center;
  display: flex;
  height: 100%;
}

.module__user__info--pass .boxed p {
  font-size: 21px;
  position: relative;
  top: 7px;
  margin: 0;
}

.module__user__info--body .boxed select {
  position: relative;
  height: 100%;
  padding-left: 6px 20px 6px 32px;
  box-sizing: border-box;
  border: none;
  appearance: none;
  background: transparent;
  color: white;
  line-height: 2;
  font-size: 14px;
  margin: 0;
  width: 100%;
  font-family: var(--kb-body-font-poppins);
}

.module__user__info--body .select-box {
  position: relative;
}

.module__user__info--software .boxed,
.module__user__info--renderer .boxed {
  padding: 0;
}

.module__user__info--body .select-box::after {
  box-sizing: border-box;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 16px;
  bottom: 0;
  width: 16px;
  height: 16px;
  background: transparent;
  margin: auto;
  transform: translate(0, 4px);
  border-top: 8px solid var(--kb-color-neutral-500);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid transparent;
  font-family: var(--kb-body-font-poppins);
  pointer-events: none;
}

.module__user__info--body .boxed select:focus {
  outline: none;
}

.module__user__info--news .field-cover {
  padding: 0;
  margin-bottom: 0;
}

.module__user__info--news .field-cover label {
  display: grid;
  grid-template-columns: 50px 1fr;
  margin-bottom: 0;
}

.module__user__info--body .field-cover label span {
  font-size: 14px;
  color: white;
  font-family: var(--kb-body-font-poppins);
}

.module__user__info--news .field-cover .kb-checkbox + label::before {
  border-color: var(--kb-color-brand-500);
  width: 15px;
  height: 15px;
}

.module__user__info--news .field-cover .kb-checkbox:checked + label::after {
  width: 6px;
  height: 15px;
  left: 5px;
}

.module__user__info--company .placeholder,
.module__user__info--vat .placeholder {
  font-size: 13px;
}

form[data-type=resetPassword] fieldset {
  display: none;
}

@media screen and (width >= 992px) {
  .module__user__info {
    padding: 85px 110px;
    margin-top: 60px;
  }
}
@media screen and (width >= 1024px) {
  .module__user__info--body .boxed {
    background: #181818;
    border: 1px solid #808080;
    box-sizing: border-box;
    width: 100%;
    padding: 16px 32px 16px 16px;
    color: white;
    font-size: 14px;
    line-height: 2;
    position: relative;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 75px;
    font-family: var(--kb-body-font-poppins);
  }
  .module__user__info--body .boxed select {
    padding: 0;
  }
  .module__user__info--body .boxed .edit {
    font-size: 14px;
    font-family: var(--kb-body-font-poppins);
  }
}
@media screen and (width >= 1100px) {
  .module__user__info--email #customer-email {
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 96%;
    display: block;
  }
  .module__user__info--body .boxed {
    background: #181818;
    border: 1px solid var(--kb-color-neutral-500);
    box-sizing: border-box;
    width: 100%;
    padding: 0 20px;
    color: white;
    position: relative;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 75px;
    height: 45px;
    line-height: 45px;
    font-family: var(--kb-body-font-poppins);
  }
  .module__user__info--billing .boxed {
    height: auto;
    line-height: 2;
    padding: 10px 20px;
  }
  .module__user__info--body .boxed select {
    padding: 0;
    height: 45px;
  }
}
@media screen and (width >= 1280px) {
  .module__user__info--body {
    display: grid;
    gap: 30px;
    grid-template: "name     billing" 1fr "email    billing" 1fr "password software" 1fr "company  renderer" 1fr "vat      news" 1fr/1fr 1fr;
  }
  .module__user__info--name {
    grid-area: name;
  }
  .module__user__info--email {
    grid-area: email;
  }
  .module__user__info--pass {
    grid-area: password;
  }
  .module__user__info--news {
    grid-area: news;
  }
  .module__user__info--software {
    grid-area: software;
  }
  .module__user__info--billing {
    grid-area: billing;
  }
  .module__user__info--renderer {
    grid-area: renderer;
  }
  .module__user__info {
    padding: 45px 60px;
  }
  .module__user__info--body div[class^=module__user__info] .label {
    font-size: 16px;
    font-family: var(--kb-body-font-poppins);
  }
  .module__user__info--pass .boxed p {
    font-size: 16px;
    position: relative;
    top: 15px;
  }
  .module__user__info--body .boxed {
    font-size: 16px;
    font-family: var(--kb-body-font-poppins);
  }
  .module__user__info--body .field-cover label span {
    font-size: 16px;
    font-family: var(--kb-body-font-poppins);
  }
  .module__user__info--body .boxed .edit {
    font-size: 16px;
    font-family: var(--kb-body-font-poppins);
  }
  .module__user__info--body .boxed select {
    padding: 7px 20px;
    font-size: 16px;
    font-family: var(--kb-body-font-poppins);
  }
  .boxed.select-box {
    padding: 0;
  }
  .module__user__info--body .select-box::after {
    width: 16px;
    height: 16px;
    border-top: 8px solid white;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid transparent;
    right: 16px;
    font-family: var(--kb-body-font-poppins);
  }
  .module__user__info--news .field-cover .kb-checkbox + label::before {
    width: 24px;
    height: 24px;
  }
  .module__user__info--news .field-cover .kb-checkbox:checked + label::after {
    width: 12px;
    height: 23px;
    left: 6px;
  }
  .module__user__info--news .field-cover label {
    grid-template-columns: 55px 1fr;
  }
}
/*
@media screen and (min-width: 1920px) {
  .module__user__info {
    padding: 40px 60px;
  }
}

@media screen and (min-width: 2000px) {
  .module__user__info--body div[class^="module__user__info"] .label {
    font-size: 22px
  }

  .module__user__info--body .boxed {
    font-size: 22px;
  }

  .module__user__info--pass .boxed p {
    font-size: 24px;
  }

  .module__user__info--body .field-cover label span {
    font-size: 20px;
  }

  .module__user__info--body .boxed .edit {
    font-size: 20px;
  }

  .module__user__info--body .boxed select {
    padding: 32px 50px;
    font-size: 20px;
  }
  .module__user__info--body .boxed {
    border: 2px solid #808080;
    padding: 16px 32px;
  }
}


@media screen and (min-width: 2400px) {
  .module__user__info {
    padding: 94px 127px;
  }

  .module__user__info--body {
    gap: 40px 50px;
  }

  .module__user__info--body div[class^="module__user__info"] .label {
    font-size: 22px
  }

  .module__user__info--body .boxed {
    font-size: 22px;
  }

  .module__user__info--pass .boxed p {
    font-size: 24px;
  }

  .module__user__info--body .field-cover label span {
    font-size: 22px;
  }

  .module__user__info--body .boxed .edit {
    font-size: 22px;
  }

  .module__user__info--body .boxed select {
    padding: 0;
    font-size: 22px;
  }
  .boxed.select-box {
    padding: 16px 40px !important;
  }
  .module__user__info--body .boxed {
    border: 2px solid #808080;
    padding: 20px 40px;
  }
  .module__user__info--body .select-box:after {
    width: 26px;
    height: 26px;
    border-top: 13px solid white;
    border-left: 13px solid transparent;
    border-right: 13px solid transparent;
    border-bottom: 13px solid transparent;
    right: 30px;
  }
  .module__user__info--news .field-cover .kb-checkbox+label:before {
    width: 48px;
    height: 48px;
  }
  .module__user__info--news .field-cover .kb-checkbox:checked+label::after {
    width: 20px;
    height: 40px;
    left: 14px;
  }
  .module__user__info--news .field-cover label {
    grid-template-columns: 75px 1fr;
  }
  .module__user__info--header h1 {
    font-size: 36px;
    line-height: 36px;
    margin-bottom: 88px;
    padding-bottom: 44px;
  }
}

*/
.module__user__kits {
  display: flex;
  flex-direction: column;
  background: var(--kb-color-neutral-900);
  padding: 50px 20px;
  margin-top: 50px;
}

.module__user__kits--header h1 {
  font-weight: bold;
  font-size: 14px;
  line-height: 14px;
  color: #fff;
  letter-spacing: 1px;
  border-bottom: 1px solid #808080;
  margin-bottom: 20px;
  padding-bottom: 20px;
  font-family: var(--kb-body-font);
}

.module__user__kits--empty {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-direction: column;
  text-align: center;
}

.module__user__kits--empty h3 {
  font-family: var(--kb-body-font);
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 1.6;
  color: var(--kb-color-neutral-300);
  margin-top: 20px;
  text-transform: initial;
}

.module__user__kits--empty a {
  line-height: 48px;
  font-size: 13px;
  padding: 0;
  min-width: 185px;
  text-align: center;
  display: inline-block;
  background: var(--kb-color-brand-500);
  text-transform: uppercase;
  color: black;
  text-decoration: none;
  white-space: nowrap;
  font-weight: bold;
  margin-top: 20px;
}

.module__user__kits--body {
  display: grid;
  grid-gap: 15px 10px;
  grid-template-columns: repeat(3, 1fr);
  padding-bottom: 0;
}

.module__user__kits .item {
  cursor: pointer;
}

.module__user__kits .item:nth-child(0n+5) {
  padding-right: 0;
}

.module__user__kits .item img {
  width: 100%;
  vertical-align: middle;
}

.kb-checkbox:checked + label::after {
  content: "";
  position: absolute;
  left: 8px;
  top: -2px;
  bottom: 0;
  margin: auto;
  background: transparent;
  height: var(--height);
  width: var(--width);
  border-bottom: 4px solid var(--kb-color-brand-500);
  border-right: 4px solid var(--kb-color-brand-500);
  transform: rotate(-45deg) scale(-1, 1);
}

.module__user__kits--count {
  color: var(--kb-color-neutral-300);
}

.kb__user__sidebar {
  position: fixed;
  right: 0;
  top: 0;
  max-width: 500px;
  z-index: 999991000;
}

@media screen and (width >= 992px) {
  .kb__user__sidebar {
    top: 73px;
  }
  .module__user__kits--empty {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-direction: row;
    text-align: initial;
  }
  .module__user__kits--empty h3 {
    margin-top: 20px;
    line-height: 1.2;
    font-size: 20px;
  }
  .module__user__kits {
    padding: 85px 110px;
    margin-top: 60px;
  }
  .module__user__kits--header h1 {
    font-weight: normal;
    font-size: 20px;
    line-height: 20px;
    color: #fff;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  .module__user__kits--body {
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (width >= 1280px) {
  .module__user__kits {
    padding: 45px 60px;
  }
  .module__user__kits--body {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (width >= 1460px) {
  .module__user__kits--body {
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
  }
  .kb__user__sidebar {
    top: 73px;
  }
}
@media screen and (width >= 1920px) {
  .kb__user__sidebar {
    top: 100px;
  }
}
/*
@media screen and (min-width: 1920px){
  .module__user__kits {
    padding: 40px 60px;
    margin-top: 80px;
  }

  .module__user__kits--body {
    gap: 30px;
  }
}
@media screen and (min-width: 1280px) {
  .module__user__kits--header h1{
    padding-bottom: 40px;
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 2400px){
  .module__user__kits {
    padding: 80px 127px;
    margin-top: 150px;
  }
  .module__user__kits--body {
    gap: 30px;
  }
  .module__user__kits--header h1{
    font-size: 36px;
    line-height: 36px;
    padding-bottom: 44px;
    margin-bottom: 88px;
  }
}


@media screen and (max-width: 992px) {
  .module__user__kits--header h1 {
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: 20px !important;
  }
  .module__user__kits {
    padding: 40px 20px 20px 20px !important;
  }
} */
.module__order__history {
  display: flex;
  flex-direction: column;
  background: var(--kb-color-neutral-900);
  padding: 50px 20px;
  margin-top: 50px;
}

.module__order__history--header h1 {
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  /* letter-spacing: 3px !important; */
  color: #fff;
  letter-spacing: 1px;
  border-bottom: 1px solid #808080;
  margin-bottom: 20px;
  padding-bottom: 20px;
  font-family: var(--kb-body-font);
}

.module__order__history .user__order__history {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.module__order__history--grid {
  gap: 20px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}

.module__order__history--row time {
  order: -1;
  font-size: 16px;
  font-weight: 400;
}

.user__order__history .module__order__history--header {
  display: none;
}

.module__order__history--header p {
  color: var(--kb-color-neutral-300);
}

.module__order__history--row,
.module__order__history--row p {
  font-size: 15px;
  line-height: 1;
  font-family: var(--kb-body-font-poppins);
}

.module__order__history--row p:nth-child(3) {
  display: none;
}

.module__order__history--row {
  color: #fff;
  padding: 38px 0;
  border-bottom: 1px solid #494949;
}

.module__order__history--row:last-child {
  border: none;
}

.module__order__history--row a {
  font-family: var(--kb-body-font);
  color: var(--kb-color-brand-500);
  text-decoration: none;
  font-weight: bold;
  font-size: 10px;
}

.module__order__history--pagination {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.module__order__history--pagination a {
  text-transform: uppercase;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  border: 1px solid var(--kb-color-brand-500);
  color: var(--kb-color-brand-500);
  background-color: transparent;
  margin: 0;
  font-size: 10px;
  height: 35px;
  line-height: 35px;
  min-width: 135px;
  letter-spacing: 1.5px;
  text-align: center;
}

@media screen and (width >= 992px) {
  .module__order__history {
    padding: 85px 110px;
    margin-top: 60px;
  }
  .module__order__history--header h1 {
    font-weight: normal;
    font-size: 20px;
    line-height: 20px;
    color: #fff;
    margin-bottom: 60px;
    padding-bottom: 30px;
  }
  .user__order__history .module__order__history--header {
    display: grid;
  }
  .module__order__history--row time {
    order: initial;
    font-weight: normal;
  }
  .module__order__history--grid {
    gap: 20px;
    display: grid;
    grid-template-columns: 70px 3fr 2fr 2fr 2fr;
    border-bottom: 1px solid #808080;
    padding-bottom: 10px;
  }
  .module__order__history--header p {
    font-size: 17px;
    color: var(--kb-color-neutral-300);
  }
  .module__order__history--body {
    padding: 0;
  }
  .module__order__history--row,
  .module__order__history--row p {
    font-size: 16px;
    line-height: 1.4;
    font-family: var(--kb-body-font-poppins);
  }
  .module__order__history--row p:nth-child(3) {
    display: block;
  }
  .module__order__history--row p span {
    display: none;
    font-family: var(--kb-body-font-poppins);
  }
  .module__order__history--row {
    color: #fff;
    padding: 40px 0;
    border-bottom: 1px solid #494949;
  }
  .module__order__history--row:last-child {
    border: none;
    padding-bottom: 0;
  }
  .module__order__history--grid p:last-child {
    text-align: center;
  }
  .module__order__history--row a {
    color: var(--kb-color-brand-500);
    text-decoration: none;
    text-align: center;
    font-size: 14px;
  }
}
@media screen and (width >= 1280px) {
  .module__order__history {
    padding: 45px 60px;
  }
}
.kb-modal-content {
  display: none;
  height: 100%;
  overflow: auto;
}

.kb__modal__container {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: initial;
  align-items: initial;
  z-index: 999999999999999;
  backdrop-filter: blur(0);
  background-color: rgba(0, 0, 0, 0);
  transition: backdrop-filter 250ms ease, background 250ms ease;
}
.kb__modal__container--active {
  backdrop-filter: blur(2px);
  background-color: rgba(0, 0, 0, 0.45);
  transition: backdrop-filter 500ms ease, background 500ms ease;
}
.kb__modal__container--active .kb__modal {
  opacity: 1;
  transform: translateY(0);
  transition: transform 500ms ease 150ms, opacity 500ms ease 150ms;
}

.kb__modal {
  padding: 20px;
  background: var(--kb-color-neutral-900);
  border: 2px solid #1d1d1d;
  box-sizing: border-box;
  position: relative;
  border-radius: 10px;
  width: 100%;
  max-height: 90vh;
  overflow: auto;
  box-shadow: 0 0 25px rgb(0, 0, 0);
  opacity: 0;
  transform: translateY(10px);
  transition: transform 500ms ease 0ms, opacity 200ms ease 0ms;
}

.kb__modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.kb__modal__close:hover::before, .kb__modal__close:hover::after {
  background-color: var(--kb-color-white);
}

.kb__modal__close::before,
.kb__modal__close::after {
  content: "";
  display: block;
  height: 25px;
  width: 4px;
  background-color: var(--kb-color-neutral-700);
  margin: auto;
  position: absolute;
  inset: 0;
  transition: background 250ms ease;
}

.kb__modal__close::before {
  transform: rotate(45deg);
}

.kb__modal__close::after {
  transform: rotate(-45deg);
}

.loading__modal .kb__modal__close {
  display: none;
}

.success__modal .kb__modal__close {
  display: none;
}

@media screen and (min-width: 992px) {
  .kb__modal__container {
    justify-content: center;
    align-items: center;
  }
  .kb__modal {
    max-width: 680px;
    padding: 40px;
  }
}
@media screen and (max-width: 768px) {
  .modal__text {
    margin-top: 15px;
    margin-bottom: 20px;
    font-size: 11px;
  }
  .kb__modal {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    /* background-color: rgba(0,0,0,0.5); */
  }
  .module__user__modal {
    padding: 30px;
    min-width: 360px;
    aspect-ratio: 3/1;
    background-color: #181818;
  }
}
.collection_filters .app__container {
  padding: 0;
}

.collection_filters .app__container .filter-title {
  padding: 0 20px;
}

.collection_filters-panCover .genre__models {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: center;
}

.collection_filters-panCover .genre__models .gerne_image {
  max-width: 250px !important;
}

.collection_filters .filter-tabs li.filter-active {
  color: var(--kb-color-brand-500);
  border-bottom: none;
}

.collection_filters .content-section .filter-content {
  display: none;
  opacity: 0;
  animation: display-none-transition 1s ease;
}

.collection_filters-navCover {
  border-bottom: 2px solid var(--kb-color-neutral-700);
}

.collection_filters-panCover.openPane {
  border-bottom: 2px solid var(--kb-color-neutral-700);
  padding: 40px;
  min-height: 200px;
}

.collection_filters-panCover {
  position: relative;
}

.close_filter-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  display: none;
}

.close_filter-btn svg {
  width: 16px;
  height: 16px;
}

.filter-title .body-4 {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

@keyframes display-none-transition {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
  }
  100% {
    opacity: 1;
  }
}
@keyframes display-none-transition {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
  }
  100% {
    opacity: 1;
  }
}
.collection_filters .content-section .filter-active {
  display: block;
  opacity: 1;
}

.collection_filters .filter-tabs {
  padding: 10px 0;
}

.collection_filters .filter-tabs li {
  list-style: none;
  display: inline-block;
  margin-right: -4px;
  text-align: center;
  cursor: pointer;
}

.collection_filters .filter-tabs li:not(:last-child) {
  margin-right: 30px;
}

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

.collection_filters-nav .filter-title {
  width: auto;
  margin-right: 24px;
}

.collection_filters-nav .filter-tabs {
  flex: 1;
}

.filter-title span {
  font-weight: 700;
}

@media screen and (width >= 992px) {
  .collection_filters .app__container {
    padding: 0 20px;
  }
  .collection_filters .app__container .filter-title {
    padding: 0;
  }
}
/* @media screen and (max-width: 767px) {
    .collection_filters .filter-tabs li:not(:last-child) {
        margin-right: 18px;
    }

    .collection_filters-nav .filter-title {
        margin-right:  18px;
    }
}

@media screen and (max-width: 320px) {

    .collection_filters .filter-tabs li,
    .filter-title span {
        font-size: 12px;
    }
} */
.section__date--container {
  padding: 4rem 0;
}

.section__date--counter {
  display: flex;
  justify-content: center;
  background-color: #111;
  height: 200px;
  padding: 20px 0;
  margin-bottom: 20px;
  align-items: center;
  flex-direction: column;
  text-transform: uppercase;
}
.section__date--counter .section__date--counter--header {
  font-size: 32px;
  margin: 0;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--kb-color-neutral-300);
}
.section__date--counter .date__counter {
  font-family: var(--kb-heading-font);
  font-weight: 800;
  display: grid;
  grid-template-columns: 60px 25px 60px 25px 60px 25px 60px;
  gap: 1px;
  align-items: center;
  text-align: center;
  justify-content: center;
  letter-spacing: 0.1em;
  color: #fbad18;
}
.section__date--counter .date__counter .date__days,
.section__date--counter .date__counter .date__hours,
.section__date--counter .date__counter .date__minutes {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section__date--counter .date__counter .date__divs {
  align-self: flex-start;
  color: white;
}
.section__date--counter .date__counter .date__divs,
.section__date--counter .date__counter .timer {
  font-size: 2rem;
  width: fit-content;
}
.section__date--counter .date__counter .label {
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  color: white;
}

@media screen and (width >= 650px) {
  .section__date--counter .date__counter {
    grid-template-columns: 100px 25px 100px 25px 100px 25px 100px;
    gap: 10px;
  }
  .section__date--counter .date__counter .date__divs,
  .section__date--counter .date__counter .timer {
    font-size: 80px;
    width: fit-content;
  }
  .section__date--counter .date__counter .label {
    font-size: 20px;
  }
}
.cargo__pdp--download-header {
  display: grid;
  margin-bottom: 20px;
  gap: 15px;
  align-items: center;
  grid-template-columns: 40px 1fr;
}
@media screen and (width >= 992px) {
  .cargo__pdp--download-header {
    grid-template-columns: 46px 1fr;
  }
}
.cargo__pdp--download-header p {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.05em;
  color: var(--kb-color-neutral-400);
  text-align: left;
}
.cargo__pdp--download-header p:first-child {
  margin-bottom: 5px;
}
.cargo__pdp--download-header p strong {
  color: white;
  font-weight: 800;
}
.cargo__pdp--download button {
  width: 100%;
  max-width: 100%;
}

.cargo__pdp--add-cart {
  border-bottom: 1px solid #808080;
  padding-bottom: 30px;
}
.cargo__pdp--add-cart-header {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.cargo__pdp--add-cart-header p {
  margin: 0;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.05em;
  color: var(--kb-color-neutral-400);
}
.cargo__pdp--add-cart-header p strong {
  color: white;
  font-weight: 800;
}
.cargo__pdp--add-cart button {
  width: 100%;
  max-width: 100%;
}

.cargo__pdp--license-dropdown {
  font-weight: bold;
  font-family: var(--kb-body-font);
  height: 45px;
  line-height: 45px;
  font-size: 14px;
  letter-spacing: 1px;
  appearance: none;
  width: 100%;
  padding: 0 16px;
  border: 1px solid #494949;
  background: transparent;
  color: white;
  text-transform: uppercase;
  margin: 0;
}
.cargo__pdp--license-dropdown-container {
  position: relative;
}
.cargo__pdp--license-dropdown-container::after {
  opacity: 0.5;
  box-sizing: border-box;
  content: "";
  display: block;
  position: absolute;
  top: 18px;
  right: 18px;
  bottom: 0;
  width: 18px;
  height: 18px;
  border-top: 9px solid white;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid transparent;
}

.cargo__pdp--price {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.085em;
  color: #808080;
  margin-bottom: 8px;
  margin-top: 10px;
}

.cargo__pdp--license-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cargo__pdp--license-title p {
  margin-top: 0 !important;
}
.cargo__pdp--license-button {
  cursor: pointer;
  background: transparent;
  border: none;
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  line-height: 15px;
  letter-spacing: 0.085em;
  color: #fbad18;
}

.kb__kit__select__item.engine,
.is-not-owned .cargo__pdp--download {
  display: none;
}

.hp-industry-projects {
  --gap: 1.6rem;
  overflow: hidden;
  margin: 5.5rem 0 3.5rem;
}
.hp-industry-projects h2 {
  font-size: 3rem;
  line-height: 1.2;
}
.hp-industry-projects__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin: 0 auto;
  text-wrap: balance;
}
.hp-industry-projects__subtitle {
  max-width: 700px;
}
.hp-industry-projects__wrapper {
  display: flex;
  width: max-content;
  gap: var(--gap);
  animation: industry-projects 45s linear infinite;
}
.hp-industry-projects__items {
  display: flex;
  gap: var(--gap);
  list-style: none;
  padding: 6.5rem 0 2rem;
  user-select: none;
}
.hp-industry-projects__item {
  width: 325px;
  height: auto;
  flex-shrink: 0;
}
.hp-industry-projects__poster {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 3.25px 20.34px 0 #000;
}
@keyframes industry-projects {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - var(--gap) / 2));
  }
}

.custom-ortto-form {
  color-scheme: dark;
  width: 100%;
}
.custom-ortto-form #hide-when-submitted {
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .custom-ortto-form {
    max-width: 500px;
  }
}
.custom-ortto-form .ap3w-embeddable-form-content {
  width: 100%;
  padding: 0;
}
.custom-ortto-form label {
  display: block;
  color: var(--kb-color-neutral-400);
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 700;
}
.custom-ortto-form .ap3w-form-input {
  margin-bottom: 25px;
}
.custom-ortto-form .ap3w-form-input input,
.custom-ortto-form .ap3w-form-input-select-unstyled {
  width: 100%;
  border: 1px solid #494949;
  border-radius: 6px !important;
}
.custom-ortto-form .ap3w-form-input-select-unstyled {
  position: relative;
  padding: 1rem;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' height='10px' width='15px'%3E%3Ctext x='0' y='10' fill='gray'%3E%E2%96%BE%3C/text%3E%3C/svg%3E") calc(100% - 1rem) center no-repeat;
}
.custom-ortto-form .ap3w-form-input-select-unstyled::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  right: 1rem;
  background: red;
  z-index: 1;
}

#shopify-section-module-identity-register,
#shopify-section-module-identity-login,
#shopify-section-module-identity-confirm-email,
#shopify-section-module-identity-reset-password,
#shopify-section-module-identity-verify-account {
  width: 100%;
}
#shopify-section-module-identity-register input::-webkit-outer-spin-button,
#shopify-section-module-identity-register input::-webkit-inner-spin-button,
#shopify-section-module-identity-login input::-webkit-outer-spin-button,
#shopify-section-module-identity-login input::-webkit-inner-spin-button,
#shopify-section-module-identity-confirm-email input::-webkit-outer-spin-button,
#shopify-section-module-identity-confirm-email input::-webkit-inner-spin-button,
#shopify-section-module-identity-reset-password input::-webkit-outer-spin-button,
#shopify-section-module-identity-reset-password input::-webkit-inner-spin-button,
#shopify-section-module-identity-verify-account input::-webkit-outer-spin-button,
#shopify-section-module-identity-verify-account input::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}
#shopify-section-module-identity-register .register_form_errors,
#shopify-section-module-identity-register .confirm_form_errors,
#shopify-section-module-identity-register .login_form_errors,
#shopify-section-module-identity-register .form_reset_password_errors,
#shopify-section-module-identity-login .register_form_errors,
#shopify-section-module-identity-login .confirm_form_errors,
#shopify-section-module-identity-login .login_form_errors,
#shopify-section-module-identity-login .form_reset_password_errors,
#shopify-section-module-identity-confirm-email .register_form_errors,
#shopify-section-module-identity-confirm-email .confirm_form_errors,
#shopify-section-module-identity-confirm-email .login_form_errors,
#shopify-section-module-identity-confirm-email .form_reset_password_errors,
#shopify-section-module-identity-reset-password .register_form_errors,
#shopify-section-module-identity-reset-password .confirm_form_errors,
#shopify-section-module-identity-reset-password .login_form_errors,
#shopify-section-module-identity-reset-password .form_reset_password_errors,
#shopify-section-module-identity-verify-account .register_form_errors,
#shopify-section-module-identity-verify-account .confirm_form_errors,
#shopify-section-module-identity-verify-account .login_form_errors,
#shopify-section-module-identity-verify-account .form_reset_password_errors {
  margin-bottom: 20px;
}
#shopify-section-module-identity-register .register_form_errors p,
#shopify-section-module-identity-register .register_form_errors li,
#shopify-section-module-identity-register .confirm_form_errors p,
#shopify-section-module-identity-register .confirm_form_errors li,
#shopify-section-module-identity-register .login_form_errors p,
#shopify-section-module-identity-register .login_form_errors li,
#shopify-section-module-identity-register .form_reset_password_errors p,
#shopify-section-module-identity-register .form_reset_password_errors li,
#shopify-section-module-identity-login .register_form_errors p,
#shopify-section-module-identity-login .register_form_errors li,
#shopify-section-module-identity-login .confirm_form_errors p,
#shopify-section-module-identity-login .confirm_form_errors li,
#shopify-section-module-identity-login .login_form_errors p,
#shopify-section-module-identity-login .login_form_errors li,
#shopify-section-module-identity-login .form_reset_password_errors p,
#shopify-section-module-identity-login .form_reset_password_errors li,
#shopify-section-module-identity-confirm-email .register_form_errors p,
#shopify-section-module-identity-confirm-email .register_form_errors li,
#shopify-section-module-identity-confirm-email .confirm_form_errors p,
#shopify-section-module-identity-confirm-email .confirm_form_errors li,
#shopify-section-module-identity-confirm-email .login_form_errors p,
#shopify-section-module-identity-confirm-email .login_form_errors li,
#shopify-section-module-identity-confirm-email .form_reset_password_errors p,
#shopify-section-module-identity-confirm-email .form_reset_password_errors li,
#shopify-section-module-identity-reset-password .register_form_errors p,
#shopify-section-module-identity-reset-password .register_form_errors li,
#shopify-section-module-identity-reset-password .confirm_form_errors p,
#shopify-section-module-identity-reset-password .confirm_form_errors li,
#shopify-section-module-identity-reset-password .login_form_errors p,
#shopify-section-module-identity-reset-password .login_form_errors li,
#shopify-section-module-identity-reset-password .form_reset_password_errors p,
#shopify-section-module-identity-reset-password .form_reset_password_errors li,
#shopify-section-module-identity-verify-account .register_form_errors p,
#shopify-section-module-identity-verify-account .register_form_errors li,
#shopify-section-module-identity-verify-account .confirm_form_errors p,
#shopify-section-module-identity-verify-account .confirm_form_errors li,
#shopify-section-module-identity-verify-account .login_form_errors p,
#shopify-section-module-identity-verify-account .login_form_errors li,
#shopify-section-module-identity-verify-account .form_reset_password_errors p,
#shopify-section-module-identity-verify-account .form_reset_password_errors li {
  color: red;
  font-size: 14px;
  margin-bottom: 15px;
}
#shopify-section-module-identity-register .register_form_errors li,
#shopify-section-module-identity-login .register_form_errors li,
#shopify-section-module-identity-confirm-email .register_form_errors li,
#shopify-section-module-identity-reset-password .register_form_errors li,
#shopify-section-module-identity-verify-account .register_form_errors li {
  list-style-position: inside;
}
#shopify-section-module-identity-register #reset-password-submit,
#shopify-section-module-identity-login #reset-password-submit,
#shopify-section-module-identity-confirm-email #reset-password-submit,
#shopify-section-module-identity-reset-password #reset-password-submit,
#shopify-section-module-identity-verify-account #reset-password-submit {
  width: 100%;
}
#shopify-section-module-identity-register .input-field-wrapper input,
#shopify-section-module-identity-login .input-field-wrapper input,
#shopify-section-module-identity-confirm-email .input-field-wrapper input,
#shopify-section-module-identity-reset-password .input-field-wrapper input,
#shopify-section-module-identity-verify-account .input-field-wrapper input {
  font-size: 16px !important;
  height: 50px;
}

.no-top-pad-mar {
  padding-top: 0;
  margin-top: 0;
}

.no-h-pad {
  padding-left: 0;
  padding-right: 0;
}

.kb__single__product__with__sidebar {
  display: flex;
  border-top: 2px solid #494949;
}

.kb__single__product__with__sidebar .kb_single_product {
  width: 100vw;
}

.kb__single__product__with__sidebar .kb-pdp-sidebar__container {
  width: 27vw;
  position: relative;
  border-left: 2px solid #494949;
  overflow: hidden;
}

.kb__product__sidebar {
  transition: all 0.5s ease;
}

.top__fixed {
  position: fixed;
  top: 73px;
  width: inherit;
  bottom: initial;
}

.bottom__fixed {
  position: absolute;
  bottom: 0;
  width: inherit;
  top: initial;
}

/* ----------------------------------------------
    HEADER MOBILE
-----------------------------------------------  */
/* Hiding Mobile Elements */
.kb_single_product .kb__single__product__header {
  display: block;
  padding: 0 20px;
  margin: 0 auto;
}

.kb_single_product .kb__enterprise__licensing,
.kb__single__product__with__sidebar .kb-pdp-sidebar__container {
  display: none;
}

.kb_single_product .kb__single__product__header .kb-pdp-sidebar__header {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.global-sale.kb_single_product .kb__single__product__header .kb-pdp-sidebar__header .kb__kit__buy {
  justify-content: center;
}

.global-sale .kb_single_product .kb__single__product__header .kb__kit__type,
.kb_single_product .kb__single__product__header .kb-pdp-sidebar__header .kb__kit__type {
  font-size: 16px;
}

.kb_single_product .kb__single__product__header .kb__kit__header {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  padding: 0 20px;
}

.kb_single_product .kb__single__product__header .kb__kit__header img {
  width: 100%;
  height: auto;
}

.kb_single_product .kb__single__product__header .kb__kit__buy * {
  font-size: 28px;
}

/* ----------------------------------------------
  LICENSE TYPE IN MOBILE
  -----------------------------------------------  */
.kb__single__product__with__sidebar .kb_single_product .kb-pdp-sidebar__header {
  border-bottom: none;
}

.kb_single_product .kb__single__product__form {
  margin-top: 25px;
}

.kb_single_product .kb__single__product__form .kb__kit__body {
  display: flex;
  flex-direction: column;
}

.kb_single_product .kb__single__product__form .kb__kit__license {
  font-size: 12px;
  line-height: 2;
  letter-spacing: 1px;
}

.kb_single_product .kb__single__product__form .kb__kit__license span {
  display: block;
  margin: 0;
  font-size: 12px;
}

.kb_single_product .kb__single__product__form .kb__kit__which__am {
  order: 2;
  margin-bottom: 0;
  margin-top: 15px;
}

.kb_single_product .kb__single__product__form .kb__kit__which__am button {
  font-size: 11px;
  font-family: var(--kb-body-font-poppins);
}

.kb_single_product .kb__single__product__form .kb__kit__form__radio__set {
  order: 1;
  margin-top: 15px;
}

.kb_single_product .kb__single__product__form .kb__kit__form__radio__set .kb__kit__radio__item {
  height: 30px;
  line-height: 30px;
  font-size: 10px;
}

.kb_single_product .kb__single__product__form .kb__kit__software__section {
  margin-top: 30px;
}

.kb_single_product .kb__single__product__form .kb__kit__software__section .sub,
.kb_single_product .kb__single__product__form .kb__kit__software__section .details {
  font-size: 12px;
  font-family: var(--kb-body-font-poppins);
}

.kb_single_product .kb__single__product__form .kb__kit__software__section .sub {
  font-size: 12px;
  letter-spacing: 1px;
}

.kb_single_product .kb__single__product__form .kb__kit__software__section .details {
  margin-bottom: 30px;
  font-family: var(--kb-body-font-poppins);
}

.kb_single_product .kb__single__product__form .kb__kit__select__item .kb__kit__software__select {
  font-size: 10px;
  letter-spacing: 1px;
  height: 40px;
  line-height: 40px;
  position: relative;
  padding: 0 8px;
}

.kb_single_product .kb__single__product__form .kb__kit__select__item::after {
  top: 2px;
  right: 15px;
  width: 16px;
  height: 16px;
  border-top: 8px solid white;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.kb_single_product .kb__single__product__form .kb__kit__submit {
  height: 35px;
  line-height: 35px;
  font-size: 10px;
}

.kb-pdp-sidebar__cart-cta .kb-btn {
  height: 35px;
  line-height: 35px;
  font-size: 10px;
  width: 250px;
  background-color: var(--kb-color-brand-500);
  text-transform: uppercase;
}

/* ----------------------------------------------
    GALLERY SECTION
-----------------------------------------------  */
.kb__single__gallery {
  padding: 0;
  height: auto;
  overflow: hidden;
  margin-bottom: 1rem;
  position: relative;
  cursor: grab;
}

.kb__single__pagination,
.kb__single__gallery {
  margin-bottom: 10px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 15px;
  color: white;
}

.kb__single__pagination .swiper-gallery-prev,
.kb__single__pagination .swiper-gallery-next {
  display: none;
}

.kb__single__pagination:hover > .swiper-gallery-prev,
.kb__single__pagination:hover > .swiper-gallery-next {
  transform: translate(0, 0);
}

.swiper-gallery-prev {
  left: 10px;
  transform: translate(-100px, 0);
}

.swiper-gallery-next {
  right: 10px;
  transform: translate(100px, 0);
}

.swiper-gallery-next,
.swiper-gallery-prev {
  position: absolute;
  width: 40px;
  height: 100px;
  z-index: 100;
  margin: auto;
  bottom: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
  cursor: pointer;
}
.swiper-gallery-next svg,
.swiper-gallery-prev svg {
  height: 20px;
}
.swiper-gallery-next svg path,
.swiper-gallery-prev svg path {
  fill: var(--kb-color-white);
}

.kb__single__gallery .swiper-slide img {
  width: 100%;
}

.kb__single__pagination {
  padding: 0;
  position: relative;
  overflow: hidden;
}

.kb__single__pagination--slide {
  cursor: pointer;
}

.kb__single__thumbnail.swiper-slide-thumb-active > img {
  border: 2px solid var(--kb-color-brand-500);
}

.kb__single__thumbnail img {
  width: 100%;
  border: 2px solid #494949;
}

/* ----------------------------------------------
    TECHNICAL SPECIFICATIONS SECTION
-----------------------------------------------  */
.kb_tech_specs {
  margin-top: 50px;
  padding: 0;
}

.kb_tech_specs_content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column-reverse;
}

.kb_tech_specs_image {
  padding: 0;
  margin: 0;
  z-index: 10;
  width: 100%;
  overflow: hidden;
}

.kb_tech_specs_image img {
  width: 100%;
}

.kb_tech_specs_details {
  border-top: 1px solid var(--kb-color-neutral-400);
  border-bottom: 1px solid var(--kb-color-neutral-400);
  padding-top: 30px;
  padding-bottom: 30px;
}
.kb_tech_specs_details details {
  position: relative;
}
.kb_tech_specs_details details::after {
  content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTciIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAxNyAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTguNDY4NDMgNy4yODk3Mkw3LjEzNTM3IDUuOTgyMTRMMS45MzY0NCAwLjY4NzQ5OUwtNi41MTk0OWUtMDcgMi42NTk1OUw4LjUwMzUxIDExLjMxMjVMMTcgMi42NTk1OUwxNS4wNjM2IDAuNjg3NUw5Ljg3MTY1IDUuOTgyMTQiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=");
  display: block;
  position: absolute;
  top: 5px;
  right: 40px;
}
.kb_tech_specs_details details[open]::after {
  transform: rotate(180deg);
}
.kb_tech_specs_details details summary {
  cursor: pointer;
  list-style: none;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.085em;
  color: #fbad18;
}
.kb_tech_specs_details details summary::-webkit-details-marker {
  display: none;
}
.kb_tech_specs_details details article {
  margin-top: 30px;
}
.kb_tech_specs_details details article .kb_tech_meta {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  align-items: center;
  margin-bottom: 10px;
}
.kb_tech_specs_details details article .kb_tech_meta p {
  text-transform: capitalize;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 180%;
  color: #fff;
}
.kb_tech_specs_details details article .kb_tech_meta svg {
  width: 20px;
  margin: 0;
}
.kb_tech_specs_details details article .kb_tech_meta svg * {
  fill: white;
}

.kb_tech_specs_content h4 {
  text-transform: uppercase;
  color: #fff;
  font-size: 28px;
}

.kb_tech_specs_content h4 svg {
  display: inline-block;
  width: 20px;
  height: 20px;
  transform: rotate(90deg);
  margin-right: 10px;
  position: relative;
  top: 2px;
}

.kb_tech_specs_content h4 svg path {
  fill: var(--kb-color-brand-500);
}

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

.kb_tech_specs_content .kb_tech_meta svg {
  margin-bottom: 10px;
  max-width: 25px;
  max-height: 25px;
}

.kb_tech_specs_content .kb_tech_meta svg path {
  fill: #808080;
}

.kb_tech_specs_content .kb_tech_meta h3 {
  color: #fff;
  font-size: 25px;
  line-height: 25px;
  margin-bottom: 10px;
}

.kb_tech_specs_content .kb_tech_meta p {
  color: var(--kb-color-neutral-700);
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
}

.kb_tech_specs_description {
  color: #fff;
}
.kb_tech_specs_description h3 {
  text-transform: none;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.kb_tech_specs_description p {
  margin-bottom: 32px;
  line-height: 2;
  font-size: 14px;
  font-family: var(--kb-body-font-poppins);
}

.kb_tech_specs_description_gray {
  color: var(--kb-color-neutral-400);
}

/* Single Page Footer */
.v-bottom {
  vertical-align: bottom;
}

.kb__single__product__header {
  display: flex;
  justify-content: center;
}

.kb__single__product__form {
  padding: 0 1rem 2rem;
  display: block;
}

.kb__kit__form__radio__icon {
  height: 110px;
}

/* ----------------------------------------------
HERO SECTION
-----------------------------------------------  */
.kb_single_hero_image .container {
  padding: 0;
}

.kb_single_hero {
  align-items: center;
  display: grid;
  grid-template-areas: "left right";
  grid-template-columns: repeat(2, 1fr);
  max-height: 900px;
  min-height: initial;
  position: relative;
  z-index: 10;
  padding: 50px 0 20px;
}

.kb_single_hero_image--mobile {
  display: block;
}

.kb_single_hero_image--mobile img {
  width: 100%;
}

.kb_single_hero_image {
  align-items: center;
  display: flex;
  width: 100%;
  height: auto;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: bottom center;
  position: relative;
  min-height: initial;
}

.kb_single_hero_image::after {
  width: 100%;
  height: 100%;
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  z-index: 1;
}

.kb_single_hero_image.left::after {
  display: none;
  background: linear-gradient(180deg, rgb(17, 17, 17) 50%, rgba(0, 0, 0, 0) 100%);
}

.kb_single_hero_image.right::after {
  background: linear-gradient(90deg, rgb(17, 17, 17) 0%, rgb(0, 0, 0) 100%);
}

.left {
  grid-area: left;
}

.right {
  grid-area: right;
}

.kb_single_hero .kb_single_hero_content {
  max-width: 800px;
}

.kb_single_hero .kb_single_hero_content h1 {
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0;
  font-size: 35px;
  line-height: 30px;
}

.kb_single_hero .kb_single_hero_content p {
  font-size: 14px;
  color: #fff;
  margin-top: 20px;
  line-height: 2;
  font-family: var(--kb-body-font-poppins);
}

.kb_single_hero_image.left .kb_single_hero {
  grid-template-columns: 2fr 0fr;
}

.kb_single_hero_image.right .kb_single_hero {
  grid-template-columns: 0fr 2fr;
}

/* ----------------------------------------------
FOOTER
-----------------------------------------------  */
.kb_single_product .footer {
  padding-top: 80px;
}

.footer__image {
  width: 100%;
}

.kb_single_product .footer .footer__title {
  max-width: 750px;
  margin: 0 auto;
  padding: 0 20px 40px;
}

.kb_single_product .footer .footer__title h3 {
  color: white;
  margin-bottom: 32px;
  line-height: 0.8;
  font-size: 35px;
}

.kb_single_product .footer .footer__title p {
  color: var(--kb-color-neutral-300);
  font-size: 14px;
  font-family: var(--kb-body-font-poppins);
}

.footer__meta__container {
  padding: 48px 0;
  box-sizing: border-box;
}
.footer__meta__container .footer__meta {
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}
@media screen and (width >= 1520px) {
  .footer__meta__container .footer__meta {
    grid-template-columns: 1fr 1fr;
    padding: 40px;
  }
}
.footer__meta__container .footer__meta h4 {
  text-align: left;
  font-style: normal;
  font-weight: 700;
  font-size: 38px;
  line-height: 58px;
  color: #fff;
  margin-bottom: 20px;
}
@media screen and (width >= 1520px) {
  .footer__meta__container .footer__meta h4 {
    font-size: 48px;
    line-height: 58px;
    text-align: center;
    margin-bottom: 0;
  }
}
.footer__meta__container .footer__meta--credits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media screen and (width >= 1520px) {
  .footer__meta__container .footer__meta--credits {
    grid-template-columns: 350px 350px;
    gap: 40px;
  }
}
.footer__meta__container .footer__meta--credits div {
  margin-bottom: 10px;
}
.footer__meta__container .footer__meta--credits div p {
  text-align: left;
}
.footer__meta__container .footer__meta--credits div p:first-child {
  font-weight: 700;
}

.footer .footer__meta p {
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
}

.footer__meta p span {
  color: var(--kb-color-neutral-700);
}

.footer__meta p span span {
  color: white;
  text-decoration: none;
  margin-left: 4px;
}

/* ----------------------------------------------
FIXED ADD CART BUTTON
-----------------------------------------------  */
.kb-pdp-sidebar__cart-cta {
  position: fixed;
  bottom: -100px;
  width: 100%;
  height: 70px;
  z-index: 9999;
  border-top: 1px solid #808080;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--kb-color-black);
  transition: all 0.5s ease;
}

.kb-pdp-sidebar__cart-cta.is-present {
  bottom: 0;
}

/* ----------------------------------------------
CEVOID SECTION
-----------------------------------------------  */
.product .module__cevoid__app header {
  margin: 80px auto 40px;
  font-style: normal;
  font-weight: 800;
  color: #fff;
  justify-content: flex-start;
  text-align: left;
  display: flex;
  gap: 20px;
  max-width: 1920px;
}

.product .module__cevoid__app header h2 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--kb-color-neutral-300);
}

.product .module__cevoid__app header span {
  font-weight: normal;
  font-size: 15px;
  letter-spacing: 0.5px;
  margin-top: 5px;
  line-height: 1.5;
  color: var(--kb-color-neutral-300);
}

@media screen and (width >= 560px) {
  .kb__single__product__form .kb__kit__form__radio__set .kb__kit__radio__item {
    max-width: none;
  }
}
@media screen and (width >= 728px) {
  /* ----------------------------------------------
    TECHNICAL SPECIFICATIONS SECTION
  -----------------------------------------------  */
  .kb_tech_specs_content .kb_tech_meta svg {
    max-width: 30px;
    max-height: 30px;
  }
  .kb_tech_specs_content .kb_tech_meta h3 {
    font-size: 35px;
    line-height: 35px;
  }
  .kb_tech_specs_content .kb_tech_meta p {
    font-size: 14px;
  }
}
@media screen and (width >= 1024px) {
  .top__fixed {
    top: 100px;
  }
  .kb_single_hero_image--mobile {
    display: none;
  }
  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 40px;
  }
  /* Hiding Mobile Elements */
  .kb_single_product .kb__single__product__form,
  .kb_single_product .kb__single__product__header {
    display: none;
  }
  .kb__single__pagination .swiper-gallery-prev,
  .kb__single__pagination .swiper-gallery-next {
    display: flex;
  }
  .kb__single__product__with__sidebar .kb_single_product {
    width: calc(100vw - 400px);
    height: fit-content;
  }
  .kb__single__product__with__sidebar .kb-pdp-sidebar__container {
    width: 400px;
    display: block;
  }
  /* ----------------------------------------------
  HERO SECTION
  -----------------------------------------------  */
  .kb-pdp-sidebar__cart-cta.is-present,
  .kb-pdp-sidebar__cart-cta {
    bottom: -300px;
  }
  /* ----------------------------------------------
  HERO SECTION
  -----------------------------------------------  */
  .kb_single_hero {
    max-height: 900px;
    min-height: 650px;
    padding: 0;
  }
  .kb_single_hero_image {
    max-height: 850px;
    height: 100%;
    background-position: center center;
    background-size: cover;
  }
  .kb_single_hero_image.left::after {
    display: block;
    background: linear-gradient(90deg, rgb(17, 17, 17) 0%, rgba(17, 17, 17, 0) 100%);
  }
  .kb_single_hero .kb_single_hero_content h1 {
    font-size: 68px;
    line-height: 0.8;
  }
  .kb_single_hero .kb_single_hero_content p {
    font-size: 17px;
    margin-top: 14px;
    line-height: 2;
    font-family: var(--kb-body-font-poppins);
  }
  /* ----------------------------------------------
  FOOTER SECTION
  -----------------------------------------------  */
  .kb_single_product .footer {
    padding-top: 20px;
  }
  .kb_single_product .footer .footer__title h3 {
    font-size: 60px;
  }
  .kb_single_product .footer .footer__title p {
    font-size: 20px;
    font-family: var(--kb-body-font-poppins);
  }
  .footer .footer__meta p {
    font-size: 16px;
    line-height: 2;
    display: block;
  }
  .footer__meta p span span {
    display: inline-block;
  }
  .footer__meta p span:not(:last-child)::after {
    content: "|";
    margin: 0 10px;
    display: inline-block;
  }
}
@media screen and (width >= 1280px) {
  .kb__single__product__with__sidebar .kb_single_product {
    width: calc(100vw - 500px);
    height: fit-content;
  }
  .kb__single__product__with__sidebar .kb-pdp-sidebar__container {
    width: 500px;
    display: block;
  }
  /* ----------------------------------------------
    HERO SECTION
  -----------------------------------------------  */
  .kb_single_hero .kb_single_hero_content {
    max-width: 600px;
  }
  /* ----------------------------------------------
    TECHNICAL SPECIFICATIONS SECTION
  -----------------------------------------------  */
  .kb_tech_specs {
    margin: 40px 0;
    position: relative;
    z-index: 10;
  }
  .kb_tech_specs_content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
  .kb_tech_specs_details {
    align-self: flex-end;
    margin: 40px 0 75px;
    grid-template-columns: repeat(3, 1fr);
  }
  .kb_tech_specs_content h4 {
    text-transform: uppercase;
    color: #fff;
  }
  .kb_tech_specs_content .kb_tech_meta svg {
    margin-bottom: 10px;
    max-width: 30px;
    max-height: 30px;
  }
  .kb_tech_specs_content .kb_tech_meta h3 {
    font-size: 35px;
    line-height: 35px;
  }
  .kb_tech_specs_content .kb_tech_meta p {
    font-size: 14px;
  }
  .kb_tech_specs_description {
    color: #fff;
  }
  .kb_tech_specs_description p {
    margin-bottom: 32px;
    line-height: 2;
    font-size: 17px;
    font-family: var(--kb-body-font-poppins);
  }
}
@media screen and (width >= 1600px) {
  .kb__single__product__with__sidebar .kb_single_product {
    width: calc(100vw - 500px);
  }
  .kb__single__product__with__sidebar .kb-pdp-sidebar__container {
    width: 500px;
  }
  /* ----------------------------------------------
  HERO SECTION
  -----------------------------------------------  */
  .kb_single_hero_image {
    background-position: left center;
    height: 1200px;
  }
  .kb_single_hero .kb_single_hero_content h1 {
    font-size: 90px;
    line-height: 0.8;
  }
  .kb_single_hero .kb_single_hero_content p {
    font-size: 20px;
    margin-top: 14px;
    line-height: 2;
    font-family: var(--kb-body-font-poppins);
  }
  /* ----------------------------------------------
    TECHNICAL SPECIFICATIONS SECTION
  -----------------------------------------------  */
  .kb_tech_specs {
    margin: -60px 0 50px;
  }
  .kb_tech_specs_content {
    padding-top: 80px;
  }
  .kb_tech_specs_details {
    margin: 30px 0 20px;
  }
  .kb_tech_specs_content_details {
    padding-left: 30px;
  }
  .kb_tech_specs_content h4 {
    font-size: 38px;
  }
  .kb_tech_specs_content h4 svg {
    width: 25px;
    height: 25px;
    margin-right: 25px;
  }
  .kb_tech_specs_content .kb_tech_meta svg {
    max-width: 40px;
    max-height: 40px;
  }
  .kb_tech_specs_content .kb_tech_meta h3 {
    font-size: 30px;
    line-height: 30px;
  }
  .kb_tech_specs_content .kb_tech_meta p {
    font-size: 20px;
    font-weight: 400;
  }
  .kb_tech_specs_description p {
    margin-bottom: 32px;
    line-height: 2;
    font-size: 17px;
    font-family: var(--kb-body-font-poppins);
  }
  /* ----------------------------------------------
  FOOTER SECTION
  -----------------------------------------------  */
  .kb_single_product .footer {
    padding-top: 80px;
  }
  .kb_single_product .footer .footer__title h3 {
    font-size: 90px;
  }
  .kb_single_product .footer .footer__title p {
    font-size: 26px;
    font-family: var(--kb-body-font-poppins);
  }
  .footer .footer__meta p {
    font-size: 16px;
    line-height: 2;
  }
}
@media screen and (width >= 1920px) {
  /* ----------------------------------------------
  HERO SECTION
  -----------------------------------------------  */
  .kb_single_hero .kb_single_hero_content p {
    font-size: 20px;
    font-family: var(--kb-body-font-poppins);
  }
  /* ----------------------------------------------
    TECHNICAL SPECIFICATIONS SECTION
  -----------------------------------------------  */
  .kb_tech_specs {
    margin: 0 0 50px;
  }
  .kb_tech_specs_content {
    padding-top: 30px;
  }
  .kb_tech_specs_details {
    margin: 40px 0 75px;
  }
  .kb_tech_specs_content_details {
    margin-bottom: 75px;
  }
  .kb_tech_specs_content h4 {
    font-size: 38px;
    margin-bottom: 75px;
  }
  .kb_tech_specs_content .kb_tech_meta h3 {
    margin-bottom: 10px;
  }
}
@media screen and (width >= 2400px) {
  .kb_tech_specs,
  .kb_single_hero_image {
    max-width: 1920px;
    margin: 0 auto;
  }
  /* ----------------------------------------------
    TECHNICAL SPECIFICATIONS SECTION
  -----------------------------------------------  */
  .kb_tech_specs_content h4 svg {
    width: 30px;
    height: 30px;
    margin-right: 25px;
  }
  .kb_tech_specs_content .kb_tech_meta svg {
    max-width: 40px;
    max-height: 40px;
  }
  .kb_tech_specs_content .kb_tech_meta h3 {
    font-size: 40px;
    line-height: 40px;
  }
  .kb_tech_specs_content .kb_tech_meta p {
    font-size: 20px;
    font-weight: 400;
  }
  .kb_tech_specs_description p {
    margin-bottom: 32px;
    line-height: 2;
    font-size: 20px;
    font-family: var(--kb-body-font-poppins);
  }
  /* ----------------------------------------------
  FOOTER SECTION
  -----------------------------------------------  */
  .kb_single_product .footer .footer__title {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }
  .kb_single_product .footer .footer__title h3 {
    font-size: 80px;
    line-height: 0.8;
  }
  .kb_single_product .footer .footer__title p {
    font-size: 20px;
    font-family: var(--kb-body-font-poppins);
  }
}
@media screen and (width >= 2500px) {
  .swiper-button-prev {
    left: 108px;
  }
  .swiper-button-next {
    right: 108px;
  }
}
.kb-pdp-breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9375rem;
  margin-bottom: 1.5rem;
  color: var(--kb-color-white);
}
@media screen and (width >= 1024px) {
  .kb-pdp-breadcrumbs {
    justify-content: flex-start;
    margin: 0;
  }
}
.kb-pdp-breadcrumbs a {
  text-decoration: none;
  transition: color 250ms ease;
  color: var(--kb-color-neutral-300);
}
.kb-pdp-breadcrumbs a:hover {
  color: var(--kb-color-brand-500);
}
.kb-pdp-breadcrumbs__arrow {
  display: inline-block;
  width: 7.5px;
  height: auto;
}
.kb-pdp-breadcrumbs__arrow svg {
  display: block;
  width: 100%;
  height: 100%;
}
.kb-pdp-breadcrumbs__arrow svg path {
  fill: #fff;
}

.app__not__found {
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("./image_background_404.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}

.app__not__found::before,
.app__not__found::after {
  width: 100%;
  height: 100px;
  position: absolute;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(17, 17, 17) 100%);
  z-index: 2;
  content: "";
}

.app__not__found::after {
  left: 0;
  bottom: 0;
}

.app__not__found::before {
  top: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgb(17, 17, 17) 100%);
}

.app__not__found article {
  text-align: center;
  max-width: 420px;
  margin: 0 auto;
  color: #fff;
}

.app__not__found .app__404__graphic {
  max-width: 350px;
  margin: 40px auto 0;
}

.app__not__found .app__404__graphic img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.app__not__found article h3 {
  font-size: 32px;
  line-height: 1.2;
}

.app__not__found article a {
  margin-top: 30px;
  height: 35px;
  padding: 0;
  line-height: 35px;
  display: inline-block;
  width: 165px;
  background-color: var(--kb-color-brand-500);
  font-size: 10px;
}

#shopify-section-footer {
  border-top: none !important;
  padding-bottom: 0 !important;
}

@media screen and (width >= 992px) {
  .app__not__found {
    height: calc(100vh - 60px - 260px);
  }
  .app__not__found .app__404__graphic {
    max-width: 550px;
  }
  .app__not__found article h3 {
    font-size: 36px;
    line-height: 1.2;
  }
  .app__not__found article a {
    height: 45px;
    line-height: 45px;
    width: 185px;
    font-size: 13px;
  }
}
.not-logged-in .kb-header .nav_icons li:first-child::after {
  display: none;
}

.step__footer {
  display: flex;
  flex-direction: column !important;
}

.step__footer > div {
  width: 100%;
}

.step__footer #continue-button {
  width: 100%;
  text-transform: uppercase;
  border-radius: 0;
  height: 50px;
  line-height: 12px;
  font-size: 14px;
  padding: 0;
}

.step__footer #continue-button::after {
  display: block;
}

.step[data-step=payment_method] .step__footer #continue-button span {
  display: none;
}

.step[data-step=payment_method] .step__footer #continue-button::after {
  content: "Complete Order";
}

.step[data-step=contact_information] .step__footer #continue-button span {
  display: block;
}

.field__input {
  border: 1px solid #808080;
  border-radius: 0;
}

.field input.field__input,
.field select {
  border-radius: 0;
  height: 65px;
  border: 1px solid #808080;
  padding: 24px 10px 10px !important;
  font-size: 16px;
  color: white;
}

.field select option {
  color: white;
}

.field input.field__input:focus {
  border-color: var(--kb-color-brand-500);
  outline: none !important;
  box-shadow: none !important;
}

.field__input-wrapper p.body-4:last-child {
  margin: 4rem 0;
}

[id^=payment-gateway] {
  display: none;
}

/*
DYNAMIC CHECKOUT
*/
.dynamic-checkout__title {
  text-align: left;
  font-size: 20px;
  margin: 0;
  display: inline-block;
  font-family: var(--kb-heading-font);
}

.dynamic-checkout__title::after,
.dynamic-checkout__title::before {
  display: none;
}

.dynamic-checkout__content {
  border: none !important;
  padding: 0;
}

.dynamic-checkout__buttons .shopify-cleanslate ul {
  display: grid;
  grid-template-columns: 80px 80px 80px;
  gap: 65px;
}

.alternative-payment-separator {
  margin-bottom: 2.5em;
}

.input-checkbox:checked:hover,
.input-radio:checked:hover {
  border-color: var(--kb-color-brand-500) !important;
}

.logged-in-customer-information__paragraph {
  font-size: 16px;
}

/* CART CHECKOUT */
.module__custom__checkout {
  background: #181818;
  padding: 15px;
  margin-bottom: 20px;
}

.field__label {
  display: none;
}

.order-summary__sections {
  height: fit-content;
  visibility: visible !important;
}

.module__custom__checkout--title {
  text-transform: capitalize;
  font-weight: 700;
  font-size: 22px;
  font-family: var(--kb-body-font);
  color: white;
}

.product-thumbnail__wrapper {
  border-radius: 0;
}

.field__input-btn {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.4pt;
  border-radius: 0;
}

.product-thumbnail {
  background: transparent;
  border-radius: 0;
  height: 120px;
  width: 100px;
}

.product-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
  border-radius: 0;
}

.product {
  box-shadow: 0 0 2px gray;
  box-sizing: border-box;
}

.product-thumbnail__quantity {
  display: none;
}

.order-summary__section {
  color: white;
}

.product__description__name {
  color: white;
  font-size: 20px;
  margin: 10px 0;
}

.product__description__variant {
  color: var(--kb-color-brand-500);
  font-weight: bold;
}

.product__price span {
  color: white;
  font-size: 20px;
  padding: 0;
  text-align: left;
  display: block;
}

/* REMEMBER ME */
.content-box__row--tight-spacing-vertical {
  padding: 0;
}

.product-thumbnail__quantity,
.step__footer__previous-link {
  display: none;
}

.reduction-code__text {
  color: #757575;
  font-weight: 700;
}

.section__text {
  font-size: 14px;
  color: var(--kb-color-neutral-300);
}

.section--payment-method {
  padding: 0;
  margin-top: 0;
}

#continue-button {
  font-weight: bold;
}

.section--remember-me {
  padding-top: 0;
  order: 3;
  margin-top: 30px;
}

.section {
  padding-top: 0;
}

h2.section__title,
.section--remember-me h2,
.section--payment-method h2 {
  font-size: 36px;
  line-height: 1;
  color: white;
}

.content-box {
  border: none !important;
}

[data-remember-me] .content-box label {
  color: var(--kb-color-neutral-300);
}

[data-remember-me] .content-box #section-remember-me-phone {
  background: transparent;
}

#remember-me-opt-in-description {
  font-size: 14px;
  font-family: var(--kb-body-font);
  line-height: 1.8;
  color: var(--kb-color-neutral-300);
}

[data-remember-me] .content-box .field--half {
  width: 100%;
}

.radio__label__primary {
  color: white;
}

*[data-credit-card-fields] .field__input {
  border: 1px solid #808080;
  height: 45px;
  font-size: 13px;
  padding-top: 13px;
  display: flex;
  align-items: center;
  background: #fff;
}

*[data-credit-card-fields] .field__label {
  color: #363636;
  font-weight: 400;
}

#section-remember-me-phone {
  padding: 0;
}

.section--remember-me h2 {
  display: none;
}

.edit_checkout {
  display: grid;
  padding-top: 20px;
}

.tag .edit_checkout {
  padding-top: 0;
}

.section--billing-address h2,
.section.section--contact-information h2 {
  display: none;
}

.step__sections {
  display: grid;
}

.section--reductions {
  order: 2;
  display: none;
}

[data-gateway-group=amazon_payments],
[data-gateway-group=express],
.content-box > [data-gateway-name=credit_card],
.section--remember-me .content-box__row {
  padding-left: 0;
}

.step__sections .section:first-child .content-box {
  margin-bottom: 0;
}

.module__custom__checkout #order-summary {
  height: auto;
}

/* Product Table */
.product-table .product .product__quantity {
  display: none;
}

.product-table tbody {
  width: 100%;
  display: table-caption;
  max-width: initial;
}

.product-table .product {
  display: grid;
  width: 100%;
  align-items: center;
  grid-template-columns: 110px 1fr 1fr;
  grid-template-areas: "image decription decription" "image price price";
}

.product__image {
  grid-area: image;
}

.product__description {
  grid-area: decription;
  text-align: left;
  padding-top: 12px;
  padding-left: 0;
  grid-column: span 4;
}

.product__price {
  grid-area: price;
  text-align: left;
  padding-left: 0;
  grid-column: span 2;
}

.blank-slate__icon {
  display: none;
}

@media screen and (width >= 440px) {
  .product-table .product {
    grid-template-columns: 110px 1fr 170px;
    grid-template-areas: "image decription price" "image decription price";
  }
  .product-thumbnail {
    width: 100px;
    height: 100px;
  }
  .product__price span {
    padding: 0 9px 0 10px;
  }
}
@media screen and (width >= 1000px) {
  .module__custom__checkout {
    padding: 30px;
  }
  [data-gateway-group=amazon_payments],
  [data-gateway-group=express],
  .content-box > [data-gateway-name=credit_card],
  .section--remember-me .content-box__row {
    padding: 1.1429em;
  }
  .step__sections .section:first-child .content-box {
    margin-bottom: 1em;
  }
  .product-table tbody {
    display: table-row-group;
  }
  .product-table .product {
    display: table-row;
  }
  .product__description {
    padding-left: 20px;
  }
  .section--remember-me {
    margin-top: 0;
  }
}
.address-fields .field label {
  display: block !important;
}

.address-fields .field input::placeholder {
  opacity: 0;
}

.input-placeholder-color--lvl-22::placeholder {
  color: transparent;
}

label[for=checkout_billing_address_id] {
  color: transparent;
}

label[for=checkout_billing_address_id]::after {
  content: "Saved Address";
  display: inline-block;
  color: #545454;
  margin-left: -10px;
}

.notice__text {
  font-size: 16px;
}

.notice__text strong {
  font-weight: bold;
}

.logged-in-customer-information__avatar-wrapper {
  padding-left: 0;
  margin-left: 0;
  display: none !important;
}

.logged-in-customer-information__avatar {
  display: none;
}

/* ---------------------------------------------------------------------------
    BREADCRUMBS
--------------------------------------------------------------------------- */
.breadcrumbs {
  width: 100%;
}

.breadcrumb {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 40px;
  background: #181818;
}

.checkout__module--breadcrumbs {
  margin-bottom: 60px;
  background-color: #181818;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 120px;
}

.breadcrumb__chevron-icon,
.breadcrumb__item:first-child {
  display: none;
}

.breadcrumb__item:nth-child(2n)::before {
  content: "01";
}

.breadcrumb__item:first-child::after,
.breadcrumb__item:nth-child(2n)::after {
  content: "→";
  padding: 16px;
  color: #fff;
  font-size: 16px;
  letter-spacing: -4px;
}

.breadcrumb__item:nth-child(3n)::before {
  content: "02";
}

.breadcrumb__item:nth-child(2n)::before,
.breadcrumb__item:nth-child(3n)::before {
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  color: #181818;
  padding: 5px;
  word-break: keep-all;
}

.breadcrumb__item--completed span,
.breadcrumb__item--blank span,
.breadcrumb__link {
  font-size: 13px;
  color: var(--kb-color-neutral-300);
  font-weight: bold;
  white-space: nowrap;
}

.breadcrumb__link:hover {
  color: var(--kb-color-brand-500);
}

.breadcrumb__item--completed::before,
.breadcrumb__item--blank::before {
  background: #808080;
}

.breadcrumb__item--current span {
  font-size: 14px;
  white-space: nowrap;
  color: #fbad18;
  font-weight: bold;
}

.breadcrumb__item--current::before {
  background: #fbad18;
}

@media screen and (width >= 768px) {
  .breadcrumb__item:nth-child(2n)::before,
  .breadcrumb__item:nth-child(3n)::before {
    margin-right: 20px;
  }
  .breadcrumb__item:first-child::after,
  .breadcrumb__item:nth-child(2n)::after {
    padding: 16px 24px;
  }
}
/* ---------------------------------------------------------------------------
    CART
--------------------------------------------------------------------------- */
.checkout__module--cart {
  padding: 0;
}

.checkout__module--cart .drawer__wrapper___checkout {
  background: none;
}

.checkout__module--cart .drawer__wrapper___checkout .drawer__content {
  padding: 0;
}

.checkout__module--cart .drawer__wrapper___checkout .drawer__content > p {
  font-size: 20px;
  margin-bottom: 25px;
}

.checkout__module--cart .drawer__wrapper___checkout .drawer__content .cart-item {
  display: grid;
  grid-template-columns: 1fr 30px;
}

.checkout__module--cart .drawer__wrapper___checkout .drawer__content .cart-item .cart-item-content {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 15px;
}

.cart-item-desc {
  max-width: none;
}

.checkout__module--cart .drawer__wrapper___checkout .drawer__content .cart-item-content .cart-item-desc .title {
  line-height: 1;
  margin-bottom: 3px;
  margin-top: 6px;
}

.checkout__module--cart .drawer__wrapper___checkout .drawer__content .cart-item-content .cart-item-desc .color-yellow {
  font-size: 14px;
}

.checkout__module--cart .drawer__wrapper___checkout .drawer__content .cart-item-content .cart-item-desc .body-3 {
  font-size: 20px;
  line-height: 1.5;
  color: white;
  font-weight: bold;
}

.checkout__module--cart .drawer__wrapper___checkout .subtotal span,
.tax span {
  font-size: 20px;
}

.total span {
  font-size: 28px;
}

/* ---------------------------------------------------------------------------
    INPUT FIELDS
--------------------------------------------------------------------------- */
.address-fields .field {
  padding: 0 !important;
}

.floating-labels .field__label {
  opacity: 1 !important;
}

.section.section--billing-address {
  padding: 0 !important;
}

.step[data-step=contact_information] .step__sections {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

.step[data-step=contact_information] .step__sections .fieldset {
  margin: 0 !important;
}

.step[data-step=contact_information] .step__sections .field {
  padding: 0;
  margin: 10px 0;
}

.step[data-step=contact_information] .step__sections .section--contact-information {
  margin-bottom: -16px;
}

.step[data-step=contact_information] .step__sections .section--billing-address {
  padding-top: 0;
}

.field.field--required.field--third.field--show-floating-label {
  width: calc(33.3333333333% - 10px);
}

.step[data-step=contact_information] .step__sections .address-fields .field[data-address-field=first_name],
.step[data-step=contact_information] .step__sections .address-fields .field[data-address-field=last_name] {
  display: block !important;
  width: 100%;
  margin-right: 0;
}

.step[data-step=contact_information] .step__sections .address-fields .field[data-address-field=country],
.step[data-step=contact_information] .step__sections .address-fields .field[data-address-field=province] {
  margin-right: 15px;
}

.step[data-step=contact_information] .step__sections .field__additional-info {
  line-height: 1;
  margin: 20px 0;
  color: #ca4242;
  font-size: 16px;
  text-align: left;
}

.step[data-step=contact_information] .step__footer {
  margin-top: 20px;
}

.field__message--error {
  display: none;
  color: var(--kb-color-brand-500);
  font-size: 13px;
  line-height: 2;
}

/* ---------------------------------------------------------------------------
    PAYMENT SCREEN
--------------------------------------------------------------------------- */
.step__sections .section .content-box__row .review-block__inner .review-block__label {
  padding: 0 !important;
  color: white;
  display: none;
}

.step__sections .section .content-box__row .review-block__inner .review-block__content {
  color: var(--kb-color-brand-500);
}

/* ---------------------------------------------------------------------------
    CUSTOM PAYMENT METHODS
--------------------------------------------------------------------------- */
[data-step=payment_method] .content-box {
  border-radius: 0 !important;
  margin-bottom: 40px;
}

[data-step=payment_method] .content-box h3 {
  font-size: 24px;
}

[data-step=payment_method] .blank-slate p {
  font-size: 12px;
}

@media (width >= 992px) {
  .page-checkout .checkout-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .step__sections .section .content-box__row .review-block__inner .review-block__label {
    display: block;
  }
  /* ---------------------------------------------------------------------------
    BILLING ADDRESS FORM
  --------------------------------------------------------------------------- */
  .step[data-step=contact_information] .step__sections .address-fields .field[data-address-field=first_name] {
    width: 48%;
    margin-right: 4%;
  }
  .step[data-step=contact_information] .step__sections .address-fields .field[data-address-field=last_name] {
    width: 48%;
  }
  /* ---------------------------------------------------------------------------
        CART
    --------------------------------------------------------------------------- */
  .checkout__module--cart .drawer__wrapper___checkout {
    background: #181818;
    padding: 25px 35px;
  }
  .checkout__module--cart .drawer__form {
    padding: 0;
    margin-top: 40px;
  }
}
/* ----------------------------------------------------------------
  ADDED MAX WIDTH TO  OVERWRITE SHOPIFY'S STYLES ON MOBILE ONLY
---------------------------------------------------------------- */
@media screen and (width <= 769px) {
  [data-shopify-buttoncontainer] {
    gap: 10px !important;
  }
  .alternative-payment-separator {
    padding-bottom: 0 !important;
  }
  [data-step=contact_information] .edit_checkout {
    padding-top: 0;
  }
  [data-step=contact_information] .field.field--required.field--third.field--show-floating-label {
    width: 100%;
  }
  .section--billing-address .section__content {
    overflow: hidden;
  }
}
@media screen and (width <= 999px) {
  #shopify-section-header + aside[role=complementary] {
    display: none;
  }
}
/* ----------------------------------------------------------------
  ADDED NEW STYLES TO FIX BUG WITH WIDTH ON DESKTOP NEW ADDRESS INPUT
---------------------------------------------------------------- */
[data-address-field=zip] {
  width: 100% !important;
  margin-left: 0 !important;
}

@media screen and (width >= 768px) {
  [data-address-field=zip] {
    width: calc(33.333% - 10px) !important;
    box-sizing: border-box;
    margin-left: 0 !important;
  }
}
/* ----------------------------------------------------------------
  CUSTOM CHECKOUT STYLES TO REPLACE THE {{ content_for_order_summary }} TAG
---------------------------------------------------------------- */
.checkout__list {
  display: flex;
  flex-direction: column;
}

.checkout__list .checkout__item {
  display: grid;
  grid-template-columns: 120px 1fr 0.6fr;
  gap: 10px;
  margin: 8px 0;
  justify-content: center;
  align-items: center;
  border: 2px solid #545454;
}

.checkout__list .checkout__item--image {
  overflow: hidden;
  width: 100px;
  height: 100px;
}

.checkout__list .checkout__item--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
}

.checkout__list .checkout__item--desc {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.checkout__item--remove {
  width: 20px;
  height: 20px;
  place-self: center flex-end;
  margin-right: 15px;
  cursor: pointer;
}

.checkout__item--remove svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.checkout__item--remove svg * {
  fill: #545454;
}

.checkout__list .checkout__item--desc p:first-child {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5pt;
}

.checkout__list .checkout__item--desc p:nth-child(2) {
  color: var(--kb-color-brand-500);
  font-weight: 700;
  font-size: 14px;
}

.checkout__list .checkout__item--owned {
  color: var(--kb-gray) !important;
  font-weight: normal !important;
  font-size: 20px !important;
  padding: 0;
}

.checkout__list .checkout__item--price {
  color: #fff;
  font-size: 20px;
  padding: 0;
}

.product_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 12px;
}

.product_grid-single {
  position: relative;
}

.product_grid-single .product-card {
  display: block;
  overflow: hidden;
}

.product_grid-single .product-card img {
  width: 100%;
  height: 100%;
}

@media screen and (width >= 767px) {
  .product_grid {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 24px;
  }
}
@media screen and (width >= 992px) {
  .product_grid {
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 17px;
  }
}
.kb-page-licenses .kb-licenses-hero {
  padding-bottom: 4rem;
  background: linear-gradient(to bottom, rgba(var(--kb-color-black-rgb), 1) 0%, rgba(var(--kb-color-black-rgb), 0.5) 30%, rgba(var(--kb-color-black-rgb), 0.7) 98%, rgba(var(--kb-color-black-rgb), 1) 100%), url("./2025_03_licensing__grid.png") center bottom -50px/auto 60% no-repeat;
}
@media screen and (min-width: 992px) {
  .kb-page-licenses .kb-licenses-hero {
    background: linear-gradient(to bottom, rgba(var(--kb-color-black-rgb), 1) 0%, rgba(var(--kb-color-black-rgb), 0.5) 30%, rgba(var(--kb-color-black-rgb), 0.7) 98%, rgba(var(--kb-color-black-rgb), 1) 100%), url("./2025_03_licensing__grid.png") center bottom -100px/150% auto no-repeat;
  }
}
@media screen and (min-width: 1200px) {
  .kb-page-licenses .kb-licenses-hero {
    background: linear-gradient(to bottom, rgba(var(--kb-color-black-rgb), 1) 0%, rgba(var(--kb-color-black-rgb), 0.5) 30%, rgba(var(--kb-color-black-rgb), 0.7) 98%, rgba(var(--kb-color-black-rgb), 1) 100%), url("./2025_03_licensing__grid.png") center bottom -200px/120% auto no-repeat;
  }
}
.kb-page-licenses .kb-licenses-hero__intro {
  padding: 6rem 0;
  margin: 0 auto;
}
.kb-page-licenses .kb-licenses-hero__subheading {
  max-width: 768px;
  margin: 0 auto;
}
.kb-page-licenses .kb-licenses-hero__divider {
  margin: 1.5rem 0;
}
.kb-page-licenses .kb-licenses-hero__licenses {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .kb-page-licenses .kb-licenses-hero__licenses {
    grid-template-columns: repeat(2, 1fr);
  }
}
.kb-page-licenses .kb-licenses-hero__license-intro {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.kb-page-licenses .kb-licenses-hero__list-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.kb-page-licenses .kb-licenses-hero__list-item {
  position: relative;
  padding-left: 2rem;
}
.kb-page-licenses .kb-licenses-hero__list-item::before {
  content: "";
  position: absolute;
  top: 0.25rem;
  left: 0.25rem;
  width: 1rem;
  height: 1rem;
  background: url('data:image/svg+xml,<svg viewBox="0 0 20 21" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="Icons - Utility"><path id="Vector (Stroke)" fill-rule="evenodd" clip-rule="evenodd" d="M17.1429 6.40863L8.16402 16.2143L2.85718 11.6219L5.20838 9.76451L7.87678 12.0737L14.5503 4.78571L17.1429 6.40863Z" fill="%23FBAD18"/></g></svg>') no-repeat center center;
}
@media screen and (min-width: 992px) {
  .kb-page-licenses .kb-licenses-hero__list-item::before {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.kb-page-licenses .kb-licenses-hero__list-item--dont::before {
  width: 0.75rem;
  height: 0.75rem;
  background: url('data:image/svg+xml,<svg viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.5 1.91769L14.5823 0L8.49422 6.08809L2.41769 0L0.5 1.91769L6.58809 7.99422L0.5 14.0823L2.41769 16L8.49422 9.91191L14.5823 16L16.5 14.0823L10.4119 7.99422L16.5 1.91769Z" fill="%23FB4E18"/></svg>') no-repeat center center;
}
@media screen and (min-width: 992px) {
  .kb-page-licenses .kb-licenses-hero__list-item--dont::before {
    width: 0.9rem;
    height: 0.9rem;
  }
}
.kb-page-licenses .kb-licenses-hero__license-cta {
  margin-top: 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.kb-page-licenses .kb-licenses-commercial-work {
  background: var(--kb-color-neutral-900);
}
.kb-page-licenses .kb-licenses-commercial-work__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
  padding: 4rem 0;
  align-items: center;
}
@media screen and (min-width: 992px) {
  .kb-page-licenses .kb-licenses-commercial-work__content {
    grid-template-columns: 0.4fr 0.6fr;
  }
}
@media screen and (min-width: 1200px) {
  .kb-page-licenses .kb-licenses-commercial-work__content {
    grid-template-columns: 0.35fr 0.65fr;
  }
}
.kb-page-licenses .kb-licenses-commercial-work__text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}
.kb-page-licenses .kb-licenses-commercial-work__images {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
@media screen and (min-width: 992px) {
  .kb-page-licenses .kb-licenses-commercial-work__images {
    max-width: none;
  }
}
.kb-page-licenses .kb-licenses-commercial-work__images.kb-animate--active .kb-licenses-commercial-work__image:nth-child(2) {
  transform: translateX(-95%);
}
.kb-page-licenses .kb-licenses-commercial-work__images.kb-animate--active .kb-licenses-commercial-work__image:nth-child(3) {
  transform: translateX(-5%);
}
.kb-page-licenses .kb-licenses-commercial-work__images.kb-animate--active .kb-licenses-commercial-work__image:nth-child(4) {
  transform: translateX(-150%);
}
.kb-page-licenses .kb-licenses-commercial-work__images.kb-animate--active .kb-licenses-commercial-work__image:nth-child(5) {
  transform: translateX(50%);
}
@media screen and (min-width: 768px) {
  .kb-page-licenses .kb-licenses-commercial-work__images.kb-animate--active .kb-licenses-commercial-work__image:nth-child(2) {
    transform: translateX(-95%);
  }
  .kb-page-licenses .kb-licenses-commercial-work__images.kb-animate--active .kb-licenses-commercial-work__image:nth-child(3) {
    transform: translateX(-5%);
  }
  .kb-page-licenses .kb-licenses-commercial-work__images.kb-animate--active .kb-licenses-commercial-work__image:nth-child(4) {
    transform: translateX(-150%);
  }
  .kb-page-licenses .kb-licenses-commercial-work__images.kb-animate--active .kb-licenses-commercial-work__image:nth-child(5) {
    transform: translateX(50%);
  }
}
@media screen and (min-width: 1200px) {
  .kb-page-licenses .kb-licenses-commercial-work__images.kb-animate--active .kb-licenses-commercial-work__image:nth-child(2) {
    transform: translateX(-120%);
  }
  .kb-page-licenses .kb-licenses-commercial-work__images.kb-animate--active .kb-licenses-commercial-work__image:nth-child(3) {
    transform: translateX(20%);
  }
  .kb-page-licenses .kb-licenses-commercial-work__images.kb-animate--active .kb-licenses-commercial-work__image:nth-child(4) {
    transform: translateX(-175%);
  }
  .kb-page-licenses .kb-licenses-commercial-work__images.kb-animate--active .kb-licenses-commercial-work__image:nth-child(5) {
    transform: translateX(75%);
  }
}
.kb-page-licenses .kb-licenses-commercial-work__image {
  --image-width: 42%;
  display: block;
  width: var(--image-width);
  height: auto;
  aspect-ratio: 262/466;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 50%;
  box-shadow: 0 2.54px 15.86px 0 #000;
  transform: translateX(-50%);
  transition: transform 500ms ease;
}
@media screen and (min-width: 1200px) {
  .kb-page-licenses .kb-licenses-commercial-work__image {
    --image-width: 33%;
  }
}
.kb-page-licenses .kb-licenses-commercial-work__image:nth-child(1) {
  position: relative;
  z-index: 10;
}
.kb-page-licenses .kb-licenses-commercial-work__image:nth-child(2), .kb-page-licenses .kb-licenses-commercial-work__image:nth-child(3) {
  top: 9%;
  width: calc(var(--image-width) * 0.85);
  transform: translateX(-50%);
  z-index: 9;
  transition-delay: 0.2s;
}
.kb-page-licenses .kb-licenses-commercial-work__image:nth-child(4), .kb-page-licenses .kb-licenses-commercial-work__image:nth-child(5) {
  top: 14%;
  width: calc(var(--image-width) * 0.75);
  transform: translateX(-50%);
  z-index: 8;
  transition-delay: 0.3s;
}
.kb-page-licenses .kb-licenses-size {
  padding: 5rem 0;
}
.kb-page-licenses .kb-licenses-size__intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .kb-page-licenses .kb-licenses-size__intro {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 992px) {
  .kb-page-licenses .kb-licenses-size__intro {
    grid-template-columns: repeat(3, 1fr);
  }
  .kb-page-licenses .kb-licenses-size__intro > *:nth-child(1) {
    grid-column: span 2;
  }
  .kb-page-licenses .kb-licenses-size__intro > *:nth-child(2) {
    padding: 0 0.5rem;
  }
}
.kb-page-licenses .kb-licenses-size__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .kb-page-licenses .kb-licenses-size__content {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 992px) {
  .kb-page-licenses .kb-licenses-size__content {
    grid-template-columns: repeat(3, 1fr);
  }
}
.kb-page-licenses .kb-licenses-size__licence-type {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .kb-page-licenses .kb-licenses-size__licence-type:last-child:nth-child(2n+1) {
    grid-column: 1/3;
  }
}
@media screen and (min-width: 992px) {
  .kb-page-licenses .kb-licenses-size__licence-type:last-child:nth-child(2n+1) {
    grid-column: auto;
  }
}
.kb-page-licenses .kb-licenses-custom-license {
  background: var(--kb-color-neutral-900);
  padding: 5rem 0;
}
.kb-page-licenses .kb-licenses-custom-license__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  flex: 1 1 auto;
  gap: 2rem;
  align-items: stretch;
}
@media screen and (min-width: 992px) {
  .kb-page-licenses .kb-licenses-custom-license__content {
    flex-direction: row;
    gap: 5.25rem;
  }
}
@media screen and (min-width: 1200px) {
  .kb-page-licenses .kb-licenses-custom-license__content {
    gap: 7.25rem;
  }
}
.kb-page-licenses .kb-licenses-custom-license__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 1rem;
}
@media screen and (min-width: 992px) {
  .kb-page-licenses .kb-licenses-custom-license__image {
    width: 45%;
  }
}
@media screen and (min-width: 1200px) {
  .kb-page-licenses .kb-licenses-custom-license__image {
    width: 55%;
  }
}
.kb-page-licenses .kb-licenses-custom-license__text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.kb-page-licenses .kb-licenses-custom-license__cta {
  margin-top: 2rem;
  align-self: flex-start;
}
.kb-page-licenses .kb-licenses-guidelines {
  margin: 8rem 0;
}
.kb-page-licenses .kb-licenses-guidelines__title {
  margin-bottom: 1rem;
}
.kb-page-licenses .kb-licenses-guidelines__commandments {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .kb-page-licenses .kb-licenses-guidelines__commandments {
    grid-template-columns: repeat(2, 1fr);
  }
}
.kb-page-licenses .kb-licenses-guidelines__divider {
  margin: 2.25rem 0 2rem;
}
.kb-page-licenses .kb-licenses-cta {
  background: var(--kb-color-neutral-900);
  margin: 8rem 0;
  padding: 8rem 0;
}
.kb-page-licenses .kb-licenses-cta__title {
  margin-bottom: 2rem;
}

/* -------------------------------------------------------------------------------------------
    Drop In Blog CUSTOM STYLES
------------------------------------------------------------------------------------------- */
#dib-template-1 .dib-heading {
  display: none;
}

.dib-post-content.dib-highlight h3 a {
  text-decoration: none;
  color: var(--kb-color-brand-500);
}

.dib__posts__container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  padding-top: 50px;
}

.dib__post .dib__post--image {
  padding: 0;
  margin: 0;
  height: 200px;
  margin-bottom: 30px;
}

.dib__post .dib__post--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.dib__post .dib__post--title {
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
}

.dib__post .dib__post--title a {
  color: #fff;
  text-decoration: none;
}

.dib__post .dib__post--summary {
  color: var(--kb-color-neutral-300);
  font-size: 14px;
  margin-top: 20px;
  line-height: 1.8;
}

/* -------------------------------------------------------------------------------------------
    Drop In Blog  SINGLE POST CUSTOM STYLES
------------------------------------------------------------------------------------------- */
.dib__single__post__container {
  color: white;
  padding-top: 50px;
}

.dib__single__post__container .single__post-featured-image {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  margin-bottom: 50px;
}

.dib__single__post__container .single__post-featured-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.dib__single__post__container .single__post--meta {
  display: grid;
  justify-content: center;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  padding: 20px 0;
  gap: 60px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.dib__single__post__container .single__post--meta span:first-child {
  text-align: right;
}

.dib__single__post__container .single__post--title {
  text-transform: capitalize;
  font-size: 58px;
  text-align: center;
  margin: 50px 0;
}

.dib__single__post__container .single__post--content img {
  width: 100%;
  display: block;
  max-width: none;
  height: auto;
}

.dib__single__post__container p,
.dib__single__post__container li,
.dib__single__post__container ul,
.dib__single__post__container ol,
.dib__single__post__container span {
  font-size: 16px;
  line-height: 2;
  color: var(--kb-color-neutral-300);
  margin-bottom: 40px;
}

.dib__single__post__container h3 {
  margin-bottom: 20px;
}

.dib__single__post__container p a {
  color: var(--kb-color-brand-500);
}

.dib__single__post__container p.highlight {
  color: var(--kb-color-brand-500);
}

.single__post--author {
  margin-top: 250px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background-color: var(--kb-color-brand-500);
  text-align: center;
  padding-bottom: 50px;
  margin-bottom: 100px;
}

.single__post--author figure {
  border-radius: 1000px;
  width: 200px;
  height: 200px;
  overflow: hidden;
  margin-top: -100px;
  margin-bottom: 40px;
}

.single__post--author figure img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

.single__post--author--meta h4 {
  text-transform: uppercase;
  font-weight: 400;
}

.single__post--author--meta h3 {
  font-size: 26px;
}

@media screen and (width >= 992px) {
  .dib__posts__container {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* -------------------------------------------------------------------------------------------
  GRID POST
------------------------------------------------------------------------------------------- */
#dib-template-1 .dib-homepage-title {
  display: none;
}

#dib-template-1,
#dib-template-1 .dib-post-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 20px;
  padding: 50px 20px 0;
  max-width: 1100px;
  margin: 0 auto;
  width: 100vw;
}

#dib-template-1 .dib-pagination-prev,
#dib-template-1 .dib-pagination-next {
  display: inline-flex;
  justify-content: space-between;
  height: 30px;
  align-items: center;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.5px;
}

#dib-template-1 .dib-pagination-prev {
  justify-content: flex-start;
  align-items: center;
}

#dib-template-1 .dib-pagination-next {
  justify-content: flex-end;
  align-items: center;
  float: right;
}

#dib-template-1 .dib-pagination {
  grid-column-start: span 3;
  width: 100%;
}

#dib-template-1 .dib-pagination-next::after,
#dib-template-1 .dib-pagination-prev::before {
  width: 14px;
  height: 14px;
  content: "";
  display: inline-block;
  margin-right: 10px;
  border-top: 4px solid var(--kb-color-brand-500);
  border-right: 4px solid var(--kb-color-brand-500);
}

#dib-template-1 .dib-pagination-prev::before {
  transform: rotate(-135deg);
  position: relative;
  top: -2px;
}

#dib-template-1 .dib-pagination-next::after {
  transform: rotate(45deg);
  position: relative;
  top: -2px;
}

#dib-template-1 > h3 {
  display: none;
}

#dib-template-1 .dib-post {
  display: grid;
  grid-template-areas: "image image" "author date" "title title" "summary summary";
  grid-template-rows: 220px 40px auto 1fr;
  grid-column-start: span 3;
}

#dib-template-1 .dib-post .dib-post-title {
  text-align: left;
  padding: 0;
  text-transform: uppercase;
  line-height: 1;
  grid-area: title;
  font-size: 28px;
}

.dib-post a.dib-post-title-link {
  text-decoration: none;
  color: #fff;
  transition: color 250ms ease;
}

#dib-template-1 .dib-post:hover .dib-post-title a {
  color: var(--kb-color-brand-500);
}

#dib-template-1 .dib-post .dib-post-featured-image {
  height: 210px;
  grid-area: image;
}

#dib-template-1 .dib-post .dib-post-featured-image img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  height: 100%;
}

#dib-template-1 .dib-post-content {
  grid-area: summary;
  padding: 0;
  font-size: 17px;
  line-height: 1.4;
  margin: 20px 0 0;
  color: var(--kb-color-neutral-300);
}

#dib-template-1 .dib-post .dib-post-author,
#dib-template-1 .dib-post .dib-post-date {
  font-size: 14px;
  margin: 10px 0;
  font-weight: 700;
  letter-spacing: 0.5pt;
  height: 40px;
}

#dib-template-1 .dib-post .dib-post-date {
  grid-area: unset !important;
  color: var(--kb-color-neutral-300);
  text-align: right;
}

#dib-template-1 .dib-post .dib-post-author {
  grid-area: author;
}

#dib-template-1 .dib-post .dib-post-author a {
  color: var(--kb-color-neutral-300);
  text-decoration: none;
}

#dib-template-1 .dib-post .dib-post-author a::before {
  content: "By ";
  display: inline-block;
}

#dib-template-1 > h3,
#dib-template-1 > ul,
.dib-more,
.dib-cat-menu {
  display: none;
}

#dib-post-single h1,
#dib-post-single h2,
#dib-post-single h3,
#dib-post-single h4,
#dib-post-single h5,
#dib-post-single h6 {
  color: white;
  margin-bottom: 20px;
}

.dib-cat-menu,
.dib-post-back-link,
#dib-post-single .dib-post-date {
  display: none;
}

#dib-post-single {
  display: grid;
  grid-template-areas: "image" "title" "social" "content" "author";
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 80px;
}

#dib-post-single .dib-sharing {
  grid-area: social;
  text-align: center;
}

#dib-post-single .dib-post-featured-image {
  grid-area: image;
  max-height: 700px;
  overflow: hidden;
  margin-bottom: 80px;
}

#dib-post-single .dib-post-featured-image img {
  width: 100%;
  object-fit: cover;
  object-position: center center;
  height: 100%;
}

#dib-post-single .dib-post-title {
  grid-area: title;
  max-width: 1100px;
  margin: 0 auto 70px;
  font-size: 30px;
  text-transform: uppercase;
  line-height: 1;
  text-align: center;
  padding: 0 20px;
  width: 100vw;
}

#dib-post-single .dib-post-content {
  grid-area: content;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  width: 100vw;
}

#dib-post-single .dib-post-content p,
#dib-post-single .dib-post-content span {
  font-size: 16px;
  line-height: 2;
  color: #d8d8d8 !important;
  margin-bottom: 40px;
  font-family: var(--kb-body-font-poppins);
}

#dib-post-single .dib-post-content li,
#dib-post-single .dib-post-content ul,
#dib-post-single .dib-post-content ol {
  font-size: 16px;
  line-height: 1.6;
  color: var(--kb-color-neutral-300);
}

#dib-post-single .dib-post-content p img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  max-width: 100%;
}

#dib-post-single .dib-post-content img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

#dib-post-single .dib-post-content p {
  font-size: 17px;
  line-height: 2;
  color: #d8d8d8 !important;
  margin-bottom: 40px;
}

#dib-post-single .dib-post-content h3 {
  margin-bottom: 20px;
}

#dib-post-single .dib-post-content p a {
  color: var(--kb-color-brand-500);
}

#dib-post-single .dib-post-content p.highlight {
  color: var(--kb-color-brand-500);
}

#dib-post-single .dib-post-content p img.fullwidth {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: relative;
  margin-left: -50vw;
  margin-right: -50vw;
  max-width: 100vw;
  left: 50%;
  right: 50%;
  max-height: none;
}

#dib-post-single .dib-post-author-photo {
  display: flex;
  justify-content: center;
  padding: 0;
  background: var(--kb-color-brand-500);
  margin: 150px 0 -20px;
}

#dib-post-single .dib-post-author-photo img {
  width: 150px;
  height: 150px;
  border-radius: 100px;
  margin-top: -75px;
}

#dib-post-single .dib-post-author {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  background: var(--kb-color-brand-500);
  text-transform: uppercase;
  font-size: 34px;
  flex-direction: column;
}

#dib-post-single .dib-post-author::before {
  content: "Meet the artist";
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 400;
  line-height: 1;
}

#dib-post-single .dib-post-author a {
  text-decoration: none;
  color: var(--kb-color-black);
  font-weight: 800;
  font-family: var(--kb-heading-font);
  line-height: 1;
}

#dib-template-1 > .dib-author-name {
  display: none;
}

#dib-template-1 > .dib-author {
  grid-column-start: span 3;
  width: 100%;
  margin-top: 80px;
  text-align: center;
  background: var(--kb-color-brand-500);
  padding: 0 50px 50px;
  font-family: var(--kb-body-font);
}

.dib-author-bio .author-name {
  text-transform: uppercase;
  font-size: 25px;
  letter-spacing: 0.5pt;
}

#dib-template-1 > .dib-author .dib-author-photo {
  width: 100px;
  height: 100px;
  margin: -50px auto 0;
  border-radius: 100px;
  overflow: hidden;
  object-fit: cover;
  object-position: center;
}

.dib-post-author-link {
  pointer-events: none;
}

.dib-related-posts {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.dib-related .dib-related-posts .dib-related-post {
  background: transparent;
  border: none;
  border-radius: 0;
}

#dib-posts .dib-related-posts .dib-related-post .dib-post-text {
  padding: 0;
}

.dib-related-posts .dib-related-post .dib-post-text .dib-post-title {
  line-height: 1;
  text-transform: uppercase;
  text-align: left;
}

.dib-related .dib-post-title {
  margin-top: 0.5rem;
}

#dib-posts .dib-related .dib-related-post h2 a.dib-post-title-link {
  color: var(--kb-color-white) !important;
  transition: color 250ms ease;
}

.dib .dib-related .dib-related-post .dib-post-featured-image img {
  border-radius: 0 !important;
  height: 230px;
  object-fit: cover;
}

.dib-related .dib-related-post:hover {
  box-shadow: none !important;
  background: transparent !important;
}

.dib-related-posts .dib-related-post .dib-post-text {
  padding: 0;
}

#dib-posts .dib-related .dib-related-post:hover h2 a.dib-post-title-link {
  color: var(--kb-color-brand-500) !important;
}

@media screen and (width >= 992px) {
  #dib-template-1 {
    grid-template-columns: repeat(3, 1fr);
  }
  #dib-template-1 .dib-post {
    grid-column-start: initial;
  }
  #dib-post-single .dib-post-title {
    font-size: 60px;
  }
  #dib-post-single .dib-post-content p {
    margin-bottom: 100px;
  }
  #dib-post-single .dib-post-author-photo img {
    width: 226px;
    height: 226px;
    border-radius: 300px;
    margin-top: -113px;
  }
}
.eula__cover {
  color: #fff;
  padding-top: 40px;
}

.eula__cover h1 {
  font-size: 35px;
  line-height: 40px;
  margin-bottom: 50px;
}

.eula__cover .page__content p {
  margin: 32px 0;
  font-size: 12px;
}

@media screen and (width >= 992px) {
  .eula__cover h1 {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 80px;
  }
  .eula__cover .page__content p {
    font-size: 14px;
  }
  .eula__cover {
    color: #fff;
    padding-top: 70px;
  }
}
@media screen and (width >= 1920px) {
  .eula__cover .page__content p {
    font-size: 20px;
  }
  .eula__cover h1 {
    font-size: 60px;
    line-height: 55px;
    margin-bottom: 132px;
  }
  .eula__cover {
    color: #fff;
    padding-top: 100px;
  }
}
.privacy__page-wrapper {
  overflow: hidden;
}

.privacy__page-wrapper .page__title {
  color: var(--kb-color-white);
  font-size: 35px;
  line-height: 35px;
}

.privacy__page-wrapper .page__content ul,
.page__content ol {
  margin-bottom: 40px;
  padding-left: 40px;
  line-height: 2;
}

.privacy__page-wrapper .page__content ul li,
.page__content ol li {
  font-style: normal;
  font-weight: normal;
  font-size: 26px;
  line-height: 1.5;
  padding-bottom: 0;
  color: var(--kb-color-neutral-300);
}

.privacy__page-wrapper .page__content ul li a,
.privacy__page-wrapper .page__content p a,
.privacy__page-wrapper .page__content ol a,
.page__content ol p a {
  color: var(--kb-color-brand-500);
  font-family: var(--kb-body-font-poppins);
}

.privacy__page-wrapper .page__content p,
.privacy__page-wrapper .page__content ul li {
  max-width: inherit;
  font-family: var(--kb-body-font-poppins);
}

.privacy__page-wrapper .page__content h1,
.privacy__page-wrapper .page__content h2,
.privacy__page-wrapper .page__content h4,
.privacy__page-wrapper .page__content h5,
.page__content h6 {
  color: var(--kb-color-white) !important;
}

.privacy__page-wrapper .page__content h3,
.privacy__page-wrapper .page__content .heading-4 {
  color: var(--kb-color-white) !important;
}

.privacy__page-wrapper .page__content p {
  font-size: 26px;
  line-height: 1.5;
  color: var(--kb-color-neutral-300);
  margin-bottom: 30px;
  margin-top: 30px;
  font-family: var(--kb-body-font-poppins);
}

.privacy__page-wrapper .page__content table tbody tr:first-child td,
.privacy__page-wrapper .page__content table tbody tr td {
  border: 1px solid var(--kb-color-neutral-500);
  padding: 20px 20px 20px 40px;
  vertical-align: top;
}

.privacy__page-wrapper .page__content table tbody tr td {
  background-color: transparent;
  font-size: 36px;
  line-height: 1.5;
  vertical-align: top;
}

.privacy__page-wrapper .page__content table {
  border-spacing: 0;
}

.privacy__page-wrapper .page__content table tbody tr td,
.privacy__page-wrapper .page__content table tbody tr td p,
.privacy__page-wrapper .page__content table tbody tr td ul li {
  color: var(--kb-color-neutral-300);
  font-size: 14px;
  line-height: 1.5;
}

.privacy__page-wrapper .page__content table tbody tr td ul {
  padding: 0;
}

.page__title {
  padding: 0;
  margin: 30px 0 60px;
}

.privacy__page-wrapper p,
.privacy__page-wrapper ul li,
.privacy__page-wrapper ol li {
  color: var(--kb-color-neutral-300);
}

.privacy__page-wrapper .page__content table tbody tr td p {
  margin: 0 0 30px;
}

.privacy__page-wrapper .page__content h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

.privacy__page-wrapper .page__content h3 {
  font-size: 25px;
  margin-bottom: 15px;
}

.privacy__page-wrapper .page__content h4 {
  font-size: 20px;
  margin-bottom: 15px;
}

.privacy__page-wrapper .page__content h5 {
  font-size: 16px;
  margin-bottom: 28px;
}

.privacy__page-wrapper .page__content p,
.privacy__page-wrapper .page__content ul li,
.page__content ol li {
  font-size: 14px;
  font-family: var(--kb-body-font-poppins);
}

.table_wrapper {
  overflow-x: scroll;
}

@media screen and (width >= 1024px) {
  .privacy__page-wrapper .page__content ul,
  .page__content ol {
    padding-left: 100px;
  }
  .privacy__page-wrapper .page__title {
    margin: 40px 0;
    font-size: 40px;
  }
}
@media screen and (width >= 1280px) {
  .privacy__page-wrapper .page__content h2 {
    font-size: 40px;
    margin-bottom: 30px;
  }
  .privacy__page-wrapper .page__content h3 {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .privacy__page-wrapper .page__content h4 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .privacy__page-wrapper .page__content h5 {
    font-size: 18px;
    margin-bottom: 28px;
  }
  .privacy__page-wrapper .page__content p,
  .privacy__page-wrapper .page__content ul li,
  .page__content ol li {
    font-size: 16px;
    font-family: var(--kb-body-font-poppins);
  }
  .privacy__page-wrapper .page__content table tbody tr td,
  .privacy__page-wrapper .page__content table tbody tr td p,
  .privacy__page-wrapper .page__content table tbody tr td ul li {
    font-size: 16px;
  }
  .privacy__page-wrapper .page__title {
    margin: 50px 0;
    font-size: 50px;
  }
}
@media screen and (width >= 2400px) {
  .privacy__page-wrapper .page__content h2 {
    font-size: 50px;
    margin-bottom: 40px;
  }
  .privacy__page-wrapper .page__content h3 {
    font-size: 40px;
    margin-bottom: 30px;
  }
  .privacy__page-wrapper .page__content h4 {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .privacy__page-wrapper .page__content h5 {
    font-size: 26px;
    margin-bottom: 36px;
  }
  .privacy__page-wrapper .page__content p,
  .privacy__page-wrapper .page__content ul li,
  .page__content ol li {
    font-size: 22px;
    font-family: var(--kb-body-font-poppins);
  }
  .privacy__page-wrapper .page__content table tbody tr td,
  .privacy__page-wrapper .page__content table tbody tr td p,
  .privacy__page-wrapper .page__content table tbody tr td ul li {
    font-size: 22px;
  }
  .privacy__page-wrapper .page__title {
    margin: 70px 0;
    font-size: 70px;
  }
}
@media screen and (width >= 2800px) {
  .privacy__page-wrapper .page__content h2 {
    font-size: 60px;
    margin-bottom: 50px;
  }
  .privacy__page-wrapper .page__content h3 {
    font-size: 50px;
    margin-bottom: 40px;
  }
  .privacy__page-wrapper .page__content h4 {
    font-size: 40px;
    margin-bottom: 30px;
  }
  .privacy__page-wrapper .page__content h5 {
    font-size: 36px;
    margin-bottom: 40px;
  }
  .privacy__page-wrapper .page__content table tbody tr td,
  .privacy__page-wrapper .page__content table tbody tr td p,
  .privacy__page-wrapper .page__content table tbody tr td ul li {
    font-size: 26px;
  }
  .privacy__page-wrapper .page__title {
    margin: 100px 0;
    font-size: 90px;
  }
}
.account__mobile__title h1 {
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
}

.account__page__navigation {
  padding-top: 0;
  background-color: transparent;
  height: 120px;
  border-top: 1px solid #494949;
  border-bottom: 1px solid #494949;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 25px;
  position: relative;
}

.account__page__navigation .app__navigation {
  display: flex;
  justify-content: center;
  align-items: center;
}

.account__page__navigation .app__navigation .customer__nav {
  list-style: none;
  padding: 0;
  display: flex;
}

.account__page__navigation .app__navigation .customer__nav li {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-transform: uppercase;
  cursor: pointer;
  margin: 0 15px;
  font-size: 10px;
  letter-spacing: 1px;
  font-weight: bold;
  color: var(--kb-color-neutral-300);
  text-align: center;
  font-family: var(--font-body-family);
}

.account__page__navigation .app__navigation .customer__nav li.active svg * {
  fill: var(--kb-color-brand-500);
}

.account__page__navigation .app__navigation .customer__nav li.active {
  color: var(--kb-color-brand-500);
}

.account__page__navigation .app__navigation .customer__nav li svg {
  height: 20px;
  width: 20px;
  margin-bottom: 20px;
}

.kb__user__account {
  padding-top: 0;
  margin-bottom: 60px;
}

.module__user__panel {
  background: var(--kb-color-neutral-900);
  padding: 35px 20px;
  margin-top: 50px;
}

.module__user__panel--logout {
  display: flex;
  align-items: center;
  justify-content: center;
}

.log-out {
  display: inline-block;
  margin: 0;
  font-size: 10px;
  height: 35px;
  line-height: 35px;
  min-width: 135px;
  letter-spacing: 1.5px;
  padding: 0;
}

/* OLD CSS BELOW demo */
.kb__user__account aside,
.kb__user__account article {
  width: 100%;
  box-sizing: border-box;
  padding: 0;
}

.kb__user__content {
  padding-right: 2.5rem;
}

.log-out a {
  text-decoration: none;
  color: var(--kb-color-brand-500);
}

/* MODAL  */
.customers .account .kb__modal {
  width: 100%;
  max-width: 600px;
}

.module__user__modal {
  padding: 30px;
  min-width: 360px;
  aspect-ratio: 3/1;
}

.module__user__modal h3 {
  text-transform: uppercase;
  color: white;
  text-align: center;
  margin-bottom: 40px;
  font-size: 50px;
}

.module__user__modal form select,
.module__user__modal form input {
  appearance: none;
  width: 100%;
  height: 45px;
  border: 1px solid #494949;
  background: transparent;
  color: white;
  margin: 10px 0;
  font-size: 14px;
  line-height: 45px;
  padding: 0 15px;
  font-family: var(--kb-body-font);
}

.module__user__modal form select option {
  background-color: var(--kb-color-black);
}

.modal__text {
  color: var(--kb-color-neutral-300);
  font-size: 16px;
  margin-bottom: 40px;
}

.module__user__modal .kb__kit__select__item::after {
  right: 15px;
}

.error__download p {
  font-size: 14px;
  color: var(--kb-color-brand-500);
  line-height: 1.4;
}

/* INPUT TEXTAREA */
.module__user__modal textarea {
  appearance: none;
  resize: none;
  width: 100%;
  padding: 0.8rem 1.5rem 0.8rem 0.5rem;
  border: 1px solid #494949;
  background: transparent;
  color: white;
  margin: 8px 0;
  height: 80px;
}

.module__user__modal select:focus,
.module__user__modal input:focus,
.module__user__modal textarea:focus {
  outline: none;
  border-color: var(--kb-color-brand-500) !important;
}

.module__user__modal--fields {
  border: none;
  margin-bottom: 20px;
  font-size: 16px;
}

.module__user__modal--actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.module__user__modal--actions #close-modal,
.module__user__modal--actions button[type=submit] {
  height: 35px;
  line-height: 35px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1pt;
  font-weight: 700;
  cursor: pointer;
  border: none;
  background: var(--kb-color-brand-500);
}

.module__user__modal--actions #cancel-edit {
  height: 35px;
  line-height: 35px;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid var(--kb-color-brand-500);
  color: var(--kb-color-brand-500);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ----------------------------------------------------------------------
  SUCCESS MODAL
---------------------------------------------------------------------- */
.success__modal {
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  padding: 20px;
  text-align: center;
}

.success__modal .kb__modal {
  max-width: 600px;
}

.success__modal h3 {
  text-transform: uppercase;
  color: white;
  text-align: center;
  font-size: 30px;
  line-height: 1;
}

.success__modal p {
  margin-top: 20px;
}

.success__modal a {
  color: var(--kb-color-brand-500);
  text-decoration: none;
}

.success__modal .kb__modal button {
  text-align: center;
  border: 2px solid var(--kb-color-brand-500);
  border-radius: 0;
  color: var(--kb-color-brand-500);
  text-transform: uppercase;
  background: transparent;
  font-weight: bold;
  margin-top: 10px;
  cursor: pointer;
  font-size: 13px;
  height: 35px;
  width: 165px;
}

/* ----------------------------------------------------------------------
  LOADING MODAL
---------------------------------------------------------------------- */
.loading__modal .kb__modal {
  max-width: 300px;
}

.loading__modal .kb__modal h3 {
  color: white;
  font-size: 26px;
  text-align: center;
}

/* ----------------------------------------------------------------------
  ERROR MODAL
---------------------------------------------------------------------- */
.error__modal .kb__modal {
  text-align: center;
}

.error__modal .kb__modal h3 {
  color: white;
  font-size: 26px;
  text-align: center;
}

.error__modal .kb__modal a {
  color: var(--kb-color-brand-500);
}

.error__modal .kb__modal button {
  text-align: center;
  border: 2px solid var(--kb-color-brand-500);
  border-radius: 0;
  color: var(--kb-color-brand-500);
  text-transform: uppercase;
  background: transparent;
  font-weight: bold;
  margin-top: 10px;
  cursor: pointer;
  font-size: 13px;
  height: 35px;
  width: 165px;
}

.kb__user__sidebar .kb__module__drawer {
  padding: 30px 20px;
  width: 100vw;
  max-width: 100vw;
  min-height: 100vh;
  overflow: scroll;
}

.kb__user__sidebar .kb__module__drawer .kb__kit__header {
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.kb__user__sidebar .kb__module__drawer .kb__kit__header img {
  height: 100%;
  max-width: fit-content;
  object-fit: contain;
  width: 100%;
}

.kb__kit__owned .kb__kit__owned__item {
  font-size: 30px !important;
  color: white !important;
}

.account__page__navigation.account__mobile__title {
  display: flex;
  justify-content: space-between;
}

.module__user__panel--logout.navigation_logout {
  display: none;
}

.kb__modal {
  height: fit-content;
  width: fit-content;
  margin: auto 1.5rem;
}

.email__taken {
  font-size: 14px;
  color: var(--kb-color-neutral-300);
  line-height: 1.4;
  letter-spacing: 0.3px;
}

.email__taken a {
  color: var(--kb-color-brand-500);
  text-decoration: none;
}

@media all and (width >= 440px) {
  .account__page__navigation .app__navigation .customer__nav li {
    margin: 0 30px;
  }
  .account__page__navigation .app__navigation .customer__nav li svg {
    height: 30px;
    width: 30px;
    margin-bottom: 20px;
  }
}
@media screen and (width >= 992px) {
  .kb__user__account {
    margin-bottom: 0;
    padding-top: 99px;
  }
  .header_logout {
    display: none;
  }
  .module__user__panel--logout {
    position: absolute;
    right: 50px;
  }
  .module__user__panel--logout.navigation_logout {
    display: block;
  }
  .module__user__panel {
    padding: 40px 80px;
    margin: 60px 0;
    background: var(--kb-color-neutral-900);
  }
  .module__user__modal--actions #close-modal,
  .module__user__modal--actions button[type=submit],
  .module__user__modal--actions #cancel-edit,
  .module__user__panel .kb-btn {
    height: 45px;
    line-height: 45px;
    display: inline-block;
    text-align: center;
    font-size: 13px;
    min-width: 180px;
  }
  .module__user__modal--fields {
    font-size: 26px;
  }
  .modal__text {
    color: var(--kb-color-neutral-300);
    font-size: 16px;
    margin-bottom: 40px;
  }
  .success__modal .kb__modal button {
    height: 45px;
    font-size: 13px;
  }
  .success__modal h3 {
    font-size: 36px;
  }
  .account__mobile__title {
    display: none !important;
  }
  .account__page__navigation {
    padding-top: 0;
    background-color: #181818;
    height: 100px;
    border-top: 1px solid #494949;
    border-bottom: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    position: sticky;
    width: 100%;
    top: 69px;
    z-index: 999;
  }
  .account__page__navigation .app__navigation .customer__nav li {
    flex-direction: row;
    margin: 0 50px;
    font-size: 14px;
    font-weight: bold;
    color: var(--kb-color-neutral-300);
  }
  .account__page__navigation .app__navigation .customer__nav li svg {
    margin-right: 30px;
    margin-bottom: 0;
  }
  .kb__user__sidebar .kb__module__drawer {
    padding: 80px 40px 130px;
    width: 100vw;
    max-width: 500px;
  }
  .kb__user__sidebar .kb__module__drawer .kb__kit__header {
    height: 120px;
    justify-content: flex-start;
  }
  .kb__kit__owned .kb__kit__owned__item {
    font-size: 30px !important;
  }
  .account__page__navigation + .app__container {
    margin-top: 160px;
  }
  .module__user__modal form select {
    font-weight: 400;
  }
}
@media screen and (width >= 992px) {
  .kb__user__sidebar .kb__module__drawer {
    padding: 60px 53px 130px 60px;
    max-width: 495px;
  }
  .kb__module__drawer .kb__kit__type {
    font-size: 17px;
    margin-bottom: 14px;
  }
  .kb__module__drawer .kb__kit__owned p {
    margin-bottom: 10px;
  }
  .kb__kit__form__owned .kb__kit__software__section p {
    margin-bottom: 0;
  }
  .kb__module__drawer .kb__kit__body {
    margin-bottom: 65px;
  }
  .kb__kit__form__owned .kb__kit__software__section p.detail_text {
    margin-bottom: 30px !important;
  }
  .kb__kit__download__wrapper .kb__kit__software__section p.detail_text {
    margin-bottom: 40px !important;
  }
  .kb__module__drawer .kb__kit__download__wrapper .kb__kit__form .sub {
    margin-bottom: 0 !important;
    margin-top: 20px !important;
  }
  .kb__user__sidebar .kb__module__drawer .kb__kit__header {
    height: 150px !important;
    border: none;
    position: relative;
    margin-bottom: 130px;
  }
  .kb__user__sidebar .kb__module__drawer .kb__kit__header::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: grey;
    position: absolute;
    bottom: -69px;
    left: 0;
  }
  .kb__kit__download__wrapper .kb__kit__select__item {
    margin-bottom: 10px !important;
  }
  .kb__kit__download__wrapper .kb__kit__software__section {
    margin-top: 0 !important;
  }
}
@media screen and (width >= 1920px) {
  .module__user__panel {
    padding: 85px 110px;
    margin-top: 60px;
    background: var(--kb-color-neutral-900);
  }
  .log-out {
    display: inline-block;
    margin: 0;
    font-size: 10px;
    height: 40px;
    line-height: 40px;
    width: 200px;
  }
  .kb__user__account {
    padding-top: 99px;
  }
  .module__user__modal form select,
  .module__user__modal form input {
    appearance: none;
    width: 100%;
    padding: 15px;
    border: 1px solid #494949;
    background: transparent;
    color: white;
    margin: 10px 0;
    font-size: 16px;
    line-height: 1.64rem;
    max-height: 50px;
  }
  .module__user__modal form select {
    padding: 10px 15px !important;
    font-weight: 400;
  }
  .module__user__panel--logout {
    padding-right: 80px;
  }
  .account__page__navigation {
    top: 84px;
  }
}
.page__activate--account {
  min-height: 600px;
}

.page__activate--account .app__container {
  min-height: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page__activate--account form {
  display: flex;
  place-content: center center;
  flex-direction: column;
  width: 100%;
  max-width: 480px;
  padding: 0 10px;
  box-sizing: border-box;
}

.page__activate--account .title {
  margin-bottom: 25px;
  text-align: center;
}

.page__activate--account .heading-2 {
  text-transform: uppercase;
  font-size: 28px;
  line-height: 40px;
  margin-bottom: 15px;
}

.page__activate--account p {
  font-size: 15px;
}

.password,
.password_confirm {
  display: flex;
  flex-direction: column;
}

.password input,
.password_confirm input {
  margin-bottom: 30px;
  height: 35px;
}

.page__activate--account input::placeholder {
  font-size: 13px;
}

.page__activate--account .submit input {
  width: 100%;
}

.page__activate--account .form__errors {
  margin-bottom: 20px;
}

.page__activate--account .form__errors li {
  list-style: none;
  margin-bottom: 4px;
}

.page__activate--account .form__errors li a {
  list-style: none;
  color: var(--kb-color-brand-500);
  text-decoration: none;
  font-size: 13px;
  pointer-events: none;
}

@media screen and (width >= 992px) {
  .page__activate--account {
    min-height: calc(100vh - 75px);
    display: flex;
  }
  .page__activate--account .title {
    margin-bottom: 35px;
  }
  .page__activate--account .heading-2 {
    font-size: 40px;
    margin-bottom: 15px;
  }
  .password input,
  .password_confirm input {
    height: 45px;
  }
}
[class*="page.spring-sale"] .hero__banner-content--loggeIn,
[class*="page.spring-sale"] .hero__banner-loggedIn,
[class*="page.spring-sale"] .hero__banner-loggedIn .hero__banner-cover,
[class*="page.spring-sale"] .hero__banner-loggedIn .hero__banner-image {
  max-height: 70vh !important;
  height: 70vh !important;
}

/* **********************************************
  GENERAL STYLES FOR PAGE
********************************************** */
[class*=cargo-landing] .page__title,
[class*=cargo-landing] #shopify-section-header,
[class*=cargo-landing] #shopify-section-footer {
  display: none;
}

[class*=cargo-landing] button {
  cursor: pointer;
  background: #fbad18;
  width: 140px;
  height: 32px;
  font-family: var(--kb-body-font);
  font-style: normal;
  font-weight: 700;
  font-size: 10px;
  line-height: 24px;
  text-align: center;
  letter-spacing: 1px;
  color: #111;
  text-transform: uppercase;
  border: none;
  display: inline-block;
  margin-top: 24px;
}
[class*=cargo-landing] button:disabled {
  cursor: not-allowed;
  background: #808080;
}
@media screen and (width >= 2000px) {
  [class*=cargo-landing] button {
    width: 170px;
    height: 40px;
    font-size: 12px;
    margin-top: 36px;
  }
}
@media screen and (width >= 2800px) {
  [class*=cargo-landing] button {
    width: 190px;
    height: 44px;
    font-size: 14px;
    margin-top: 50px;
  }
}
[class*=cargo-landing] button.bordered {
  background: transparent;
  border: 1px solid #fbad18;
  color: #fbad18;
}

[class*=cargo-landing] main {
  overflow: hidden;
}

.color__gray {
  color: var(--kb-color-neutral-300) !important;
}

/* **********************************************
  GENERAL STYLES
********************************************** */
[class*=cargo-landing] h1 {
  font-family: Poppins, sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 35px;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media screen and (width >= 1440px) {
  [class*=cargo-landing] h1 {
    font-size: 36px;
  }
}
@media screen and (width >= 2400px) {
  [class*=cargo-landing] h1 {
    font-size: 50px;
  }
}
@media screen and (width >= 2800px) {
  [class*=cargo-landing] h1 {
    font-size: 76px;
    margin-bottom: 50px;
  }
}
[class*=cargo-landing] p {
  font-size: 14px;
  font-family: var(--kb-body-font);
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
}
@media screen and (width >= 1440px) {
  [class*=cargo-landing] p {
    font-size: 16px;
  }
}
@media screen and (width >= 2400px) {
  [class*=cargo-landing] p {
    font-size: 18px;
  }
}
@media screen and (width >= 2800px) {
  [class*=cargo-landing] p {
    font-size: 25px;
  }
}

/* **********************************************
  LANDING PAGE HERO MODAL
********************************************** */
.landing__modal {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (width <= 1280px) {
  .landing__video {
    max-height: 450px;
  }
}
@media screen and (width <= 800px) {
  .landing__video {
    max-height: 350px;
  }
}
/* **********************************************
  LANDING PAGE HERO SECTION STYLES
********************************************** */
.landing__hero {
  height: 100vh;
  min-height: 600px;
  width: 100vw;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  padding-bottom: 240px;
  overflow: hidden;
  background-size: cover;
  background-position: top center;
  max-height: 1200px;
}
@media screen and (width >= 972px) {
  .landing__hero {
    align-items: center;
    padding-bottom: 0;
  }
}
@media screen and (width >= 1440px) {
  .landing__hero {
    max-height: none;
  }
}
.landing__hero .landing__background__video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.landing__hero .landing__background__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.landing__hero .lading__hero--background {
  position: absolute;
  left: 0;
  top: 0;
  width: inherit;
  height: inherit;
  object-fit: cover;
  object-position: center center;
  z-index: -1;
}
.landing__hero--content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 80%;
  padding-left: 20px;
  gap: 25px;
  width: 100%;
  margin: 0;
  position: relative;
  z-index: 10;
}
.landing__hero--content .landing__hero--caption {
  height: fit-content;
}
.landing__hero--content p {
  max-width: 450px;
  line-height: 2;
}
@media screen and (width >= 620px) {
  .landing__hero--content {
    max-width: 580px;
    margin: 0 auto 45px;
  }
  .landing__hero--content p {
    line-height: 2;
  }
}
@media screen and (width >= 980px) {
  .landing__hero--content {
    max-width: 800px;
  }
  .landing__hero--content .landing__hero--caption {
    margin-top: -50px;
  }
  .landing__hero--content p {
    line-height: 2.2;
  }
}
@media screen and (width >= 1440px) {
  .landing__hero--content {
    padding: 20px 20px 0;
    gap: 60px;
    max-width: 1100px;
  }
  .landing__hero--content .landing__hero--caption {
    margin-top: -60px;
    margin-bottom: -30px;
  }
  .landing__hero--content p {
    max-width: 600px;
  }
}
@media screen and (width >= 2000px) {
  .landing__hero--content {
    max-width: 1700px;
  }
}
@media screen and (width >= 2800px) {
  .landing__hero--content {
    max-width: 2400px;
  }
  .landing__hero--content .landing__hero--caption {
    margin-top: -20px;
    margin-bottom: -10px;
  }
  .landing__hero--content p {
    line-height: 2;
    max-width: 730px;
  }
}
.landing__hero--content h4 {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #fff;
}
@media screen and (width >= 1024px) {
  .landing__hero--content h4 {
    margin-bottom: -30px;
  }
}
@media screen and (width >= 1280px) {
  .landing__hero--content h4 {
    font-size: 20px;
    margin-bottom: -50px;
  }
}
@media screen and (width >= 2000px) {
  .landing__hero--content h4 {
    font-size: 28px;
  }
}
@media screen and (width >= 2800px) {
  .landing__hero--content h4 {
    font-size: 36px;
    margin-bottom: -10px;
  }
}
.landing__hero--content .landing__cargoLogo {
  display: flex;
  justify-content: flex-start;
  max-width: 320px;
}
@media screen and (width >= 980px) {
  .landing__hero--content .landing__cargoLogo {
    width: 380px;
    max-width: none;
  }
}
@media screen and (width >= 1440px) {
  .landing__hero--content .landing__cargoLogo {
    width: 400px;
  }
}
@media screen and (width >= 2000px) {
  .landing__hero--content .landing__cargoLogo {
    width: 480px;
  }
}
@media screen and (width >= 2800px) {
  .landing__hero--content .landing__cargoLogo {
    width: 700px;
  }
}
.landing__hero--content .landing__cargoLogo svg {
  width: 100%;
  height: 80px;
}
@media screen and (width >= 980px) {
  .landing__hero--content .landing__cargoLogo svg {
    height: 175px;
  }
}
.landing__hero--actions {
  display: flex;
  gap: 16px;
}
@media screen and (width >= 972px) {
  .landing__hero--actions {
    gap: 30px;
  }
}
.landing__hero--actions button {
  margin-top: 0;
}

/* **********************************************
  LANDING PAGE CARGO UI SECTION STYLES
********************************************** */
.landing__cargoUi {
  margin-top: -200px;
}
.landing__cargoUi--content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 100px;
}
@media screen and (width >= 620px) {
  .landing__cargoUi--content {
    width: max-content;
  }
}
@media screen and (width >= 2000px) {
  .landing__cargoUi--content {
    max-width: 1920px;
    margin: 0 auto 200px;
  }
}
@media screen and (width >= 2800px) {
  .landing__cargoUi--content {
    max-width: 2800px;
  }
}
.landing__cargoUi--content .ui {
  width: 100%;
  max-width: 90%;
  margin: 0 40px;
  background: hsla(0, 0%, 100%, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  padding: 3px 3px 0;
  border-radius: 4px 4px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 0;
}
@media screen and (width >= 620px) {
  .landing__cargoUi--content .ui {
    max-width: 580px;
  }
}
@media screen and (width >= 980px) {
  .landing__cargoUi--content .ui {
    padding: 10px 10px 0;
    max-width: 800px;
  }
}
@media screen and (width >= 1440px) {
  .landing__cargoUi--content .ui {
    padding: 20px 20px 0;
    max-width: 1100px;
  }
}
@media screen and (width >= 2000px) {
  .landing__cargoUi--content .ui {
    max-width: 1700px;
  }
}
@media screen and (width >= 2800px) {
  .landing__cargoUi--content .ui {
    max-width: 2400px;
  }
}
.landing__cargoUi--content .inspector {
  position: absolute;
  top: -30px;
  right: 20px;
  margin: auto;
  background: linear-gradient(45deg, rgb(17, 17, 17) 0%, rgba(255, 255, 255, 0.1) 100%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  border: none;
  padding: 2px;
  border-radius: 3px;
  max-width: 80px;
}
@media screen and (width >= 570px) {
  .landing__cargoUi--content .inspector {
    max-width: 100px;
  }
}
@media screen and (width >= 620px) {
  .landing__cargoUi--content .inspector {
    max-width: 120px;
  }
}
@media screen and (width >= 980px) {
  .landing__cargoUi--content .inspector {
    max-width: 180px;
    right: -55px;
    padding: 10px;
    top: -50px;
    border-radius: 10px;
  }
}
@media screen and (width >= 1280px) {
  .landing__cargoUi--content .inspector {
    right: -100px;
  }
}
@media screen and (width >= 1440px) {
  .landing__cargoUi--content .inspector {
    max-width: 250px;
    right: -50px;
    top: -110px;
  }
}
@media screen and (width >= 2000px) {
  .landing__cargoUi--content .inspector {
    max-width: 340px;
    right: -25px;
  }
}
@media screen and (width >= 2800px) {
  .landing__cargoUi--content .inspector {
    max-width: 460px;
    right: -80px;
  }
}
@media screen and (width >= 3200px) {
  .landing__cargoUi--content .inspector {
    max-width: 520px;
    right: -150px;
  }
}
.landing__cargoUi--content .card {
  bottom: 0;
  left: 10px;
  position: absolute;
  background: linear-gradient(-36deg, rgb(17, 17, 17) 0%, rgba(255, 255, 255, 0.1) 100%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  border: none;
  padding: 2px;
  border-radius: 3px;
  max-width: 100px;
  width: 100%;
}
@media screen and (width >= 570px) {
  .landing__cargoUi--content .card {
    max-width: 100px;
  }
}
@media screen and (width >= 620px) {
  .landing__cargoUi--content .card {
    max-width: 120px;
  }
}
@media screen and (width >= 980px) {
  .landing__cargoUi--content .card {
    max-width: 180px;
    right: -100px;
    padding: 10px;
    border-radius: 10px;
  }
}
@media screen and (width >= 1440px) {
  .landing__cargoUi--content .card {
    max-width: 250px;
    right: -50px;
  }
}
@media screen and (width >= 2000px) {
  .landing__cargoUi--content .card {
    left: -100px;
    max-width: 400px;
    bottom: -100px;
    padding: 10px;
    border-radius: 10px;
  }
}
@media screen and (width >= 2800px) {
  .landing__cargoUi--content .card {
    max-width: 520px;
    left: -200px;
  }
}

/* **********************************************
  HEADER FOR EACH SECTIONS.
********************************************** */
.landing__transferKits article,
.landing__cargoCarousel article,
.landing__getCargo {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  flex-direction: column;
}
.landing__transferKits article h1,
.landing__cargoCarousel article h1,
.landing__getCargo h1 {
  align-items: center;
  text-align: center;
}
.landing__transferKits article p,
.landing__cargoCarousel article p,
.landing__getCargo p {
  line-height: 1.6;
  max-width: 700px;
}

.landing__getCargo {
  max-width: 370px;
  margin: 0 auto;
  gap: 14px;
  padding-top: 60px;
}
@media screen and (width >= 972px) {
  .landing__getCargo {
    max-width: 800px;
    margin: 0 auto;
    gap: 25px;
  }
}
@media screen and (width >= 1440px) {
  .landing__getCargo {
    max-width: none;
    margin: 0 auto;
  }
}

/* **********************************************
  MATERIAL SLIDERS STYLES
********************************************** */
.carousel__container {
  background: hsla(0, 0%, 0%, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px;
  border-radius: 5px;
}
@media screen and (width >= 680px) {
  .carousel__container {
    padding: 15px;
    border-radius: 10px;
  }
}
@media screen and (width >= 1920px) {
  .carousel__container {
    padding: 50px;
    border-radius: 20px;
  }
}
.carousel__container .carousel__outside {
  padding: 15px;
  background-color: #111;
}
@media screen and (width >= 1920px) {
  .carousel__container .carousel__outside {
    padding: 50px;
  }
}
.carousel__container .carousel img {
  max-width: 380px;
  aspect-ratio: 1/1;
}

.landing__modelSlider,
.landing__materialSlider {
  align-items: center;
  position: relative;
  display: grid;
  flex-direction: row;
  grid-template-columns: 1fr;
  height: 800px;
  width: auto;
  margin: 100px 0;
  justify-content: center;
}
@media screen and (width >= 800px) {
  .landing__modelSlider,
  .landing__materialSlider {
    height: 600px;
    width: auto;
    grid-template-columns: 1fr 1fr;
    margin: 0;
    justify-content: initial;
  }
}
@media screen and (width >= 1280px) {
  .landing__modelSlider,
  .landing__materialSlider {
    height: 700px;
  }
}
@media screen and (width >= 1920px) {
  .landing__modelSlider,
  .landing__materialSlider {
    height: 900px;
  }
}
@media screen and (width >= 2400px) {
  .landing__modelSlider,
  .landing__materialSlider {
    height: 1100px;
  }
}
@media screen and (width >= 2800px) {
  .landing__modelSlider,
  .landing__materialSlider {
    height: 1600px;
  }
}
@media screen and (width >= 800px) {
  .landing__modelSlider .texture__rellax,
  .landing__materialSlider .texture__rellax {
    max-height: 600px;
    width: auto;
    top: initial;
  }
}
.landing__modelSlider .texture__rellax,
.landing__modelSlider .asset__rellax,
.landing__materialSlider .texture__rellax,
.landing__materialSlider .asset__rellax {
  z-index: -1;
  position: absolute;
  max-width: fit-content;
  max-height: 480px;
  width: auto;
  top: -70px;
}
@media screen and (width >= 800px) {
  .landing__modelSlider .texture__rellax,
  .landing__modelSlider .asset__rellax,
  .landing__materialSlider .texture__rellax,
  .landing__materialSlider .asset__rellax {
    max-height: 450px;
    width: auto;
    top: initial;
  }
}
@media screen and (width >= 1280px) {
  .landing__modelSlider .texture__rellax,
  .landing__modelSlider .asset__rellax,
  .landing__materialSlider .texture__rellax,
  .landing__materialSlider .asset__rellax {
    max-height: 700px;
  }
}
@media screen and (width >= 1920px) {
  .landing__modelSlider .texture__rellax,
  .landing__modelSlider .asset__rellax,
  .landing__materialSlider .texture__rellax,
  .landing__materialSlider .asset__rellax {
    max-height: 900px;
  }
}
@media screen and (width >= 2400px) {
  .landing__modelSlider .texture__rellax,
  .landing__modelSlider .asset__rellax,
  .landing__materialSlider .texture__rellax,
  .landing__materialSlider .asset__rellax {
    max-height: 1200px;
  }
}
@media screen and (width >= 2800px) {
  .landing__modelSlider .texture__rellax,
  .landing__modelSlider .asset__rellax,
  .landing__materialSlider .texture__rellax,
  .landing__materialSlider .asset__rellax {
    max-width: fit-content;
    max-height: none;
  }
}
.landing__modelSlider article,
.landing__materialSlider article {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  justify-self: center;
  padding: 0 20px;
  text-align: center;
  max-width: 90%;
  margin-top: 100px;
}
@media screen and (width >= 800px) {
  .landing__modelSlider article,
  .landing__materialSlider article {
    align-items: flex-start;
    text-align: initial;
    padding: 0 20px;
    width: fit-content;
    margin-top: 0;
    max-width: 550px;
  }
}
@media screen and (width >= 2800px) {
  .landing__modelSlider article,
  .landing__materialSlider article {
    max-width: 90%;
  }
}
.landing__modelSlider article p,
.landing__materialSlider article p {
  line-height: 1.6;
  max-width: 700px;
}
.landing__modelSlider .carousel__container,
.landing__materialSlider .carousel__container {
  max-width: 420px;
}
.landing__modelSlider .carousel__container .swiper-slide img,
.landing__materialSlider .carousel__container .swiper-slide img {
  max-width: 90px;
}
@media screen and (width >= 570px) {
  .landing__modelSlider .carousel__container,
  .landing__materialSlider .carousel__container {
    max-width: 400px;
  }
  .landing__modelSlider .carousel__container .swiper-slide img,
  .landing__materialSlider .carousel__container .swiper-slide img {
    max-width: 75px;
  }
}
@media screen and (width >= 680px) {
  .landing__modelSlider .carousel__container,
  .landing__materialSlider .carousel__container {
    max-width: 450px;
  }
  .landing__modelSlider .carousel__container .swiper-slide img,
  .landing__materialSlider .carousel__container .swiper-slide img {
    max-width: 80px;
  }
}
@media screen and (width >= 800px) {
  .landing__modelSlider .carousel__container,
  .landing__materialSlider .carousel__container {
    max-width: 530px;
  }
  .landing__modelSlider .carousel__container .swiper-slide img,
  .landing__materialSlider .carousel__container .swiper-slide img {
    max-width: 100px;
  }
}
@media screen and (width >= 1024px) {
  .landing__modelSlider .carousel__container,
  .landing__materialSlider .carousel__container {
    max-width: 600px;
  }
  .landing__modelSlider .carousel__container .swiper-slide img,
  .landing__materialSlider .carousel__container .swiper-slide img {
    max-width: 120px;
  }
}
@media screen and (width >= 1280px) {
  .landing__modelSlider .carousel__container,
  .landing__materialSlider .carousel__container {
    max-width: 700px;
  }
  .landing__modelSlider .carousel__container .swiper-slide img,
  .landing__materialSlider .carousel__container .swiper-slide img {
    max-width: 135px;
  }
}
@media screen and (width >= 1440px) {
  .landing__modelSlider .carousel__container,
  .landing__materialSlider .carousel__container {
    max-width: 850px;
  }
  .landing__modelSlider .carousel__container .swiper-slide img,
  .landing__materialSlider .carousel__container .swiper-slide img {
    max-width: 170px;
  }
}
@media screen and (width >= 1920px) {
  .landing__modelSlider .carousel__container,
  .landing__materialSlider .carousel__container {
    max-width: 1200px;
  }
  .landing__modelSlider .carousel__container .swiper-slide img,
  .landing__materialSlider .carousel__container .swiper-slide img {
    max-width: 240px;
  }
}
@media screen and (width >= 2400px) {
  .landing__modelSlider .carousel__container,
  .landing__materialSlider .carousel__container {
    max-width: 1400px;
  }
  .landing__modelSlider .carousel__container .swiper-slide img,
  .landing__materialSlider .carousel__container .swiper-slide img {
    max-width: 280px;
  }
}
@media screen and (width >= 2800px) {
  .landing__modelSlider .carousel__container,
  .landing__materialSlider .carousel__container {
    max-width: 2000px;
  }
  .landing__modelSlider .carousel__container .swiper-slide img,
  .landing__materialSlider .carousel__container .swiper-slide img {
    max-width: none;
  }
}
.landing__modelSlider .carousel__container .carousel__outside header h4,
.landing__materialSlider .carousel__container .carousel__outside header h4 {
  font-family: var(--kb-body-font);
  font-style: normal;
  font-weight: 400;
  font-size: 9px;
  line-height: 33px;
  display: flex;
  align-items: center;
  letter-spacing: 1px;
  color: #fff;
  text-transform: uppercase;
  gap: 10px;
  padding-bottom: 2px;
  margin-bottom: 10px;
}
@media screen and (width >= 1280px) {
  .landing__modelSlider .carousel__container .carousel__outside header h4,
  .landing__materialSlider .carousel__container .carousel__outside header h4 {
    margin-bottom: 20px;
  }
}
@media screen and (width >= 1580px) {
  .landing__modelSlider .carousel__container .carousel__outside header h4,
  .landing__materialSlider .carousel__container .carousel__outside header h4 {
    padding-bottom: 13px;
    margin-bottom: 30px;
    border-bottom: 1px solid #808080;
    justify-content: flex-end;
    gap: 20px;
    font-size: 12px;
  }
}
@media screen and (width >= 1920px) {
  .landing__modelSlider .carousel__container .carousel__outside header h4,
  .landing__materialSlider .carousel__container .carousel__outside header h4 {
    font-size: 16px;
    margin-bottom: 50px;
  }
}
.landing__modelSlider .carousel__container .carousel__outside header h4 svg,
.landing__materialSlider .carousel__container .carousel__outside header h4 svg {
  width: 13px;
}
@media screen and (width >= 1580px) {
  .landing__modelSlider .carousel__container .carousel__outside header h4 svg,
  .landing__materialSlider .carousel__container .carousel__outside header h4 svg {
    width: 27px;
  }
}

.landing__materialSlider article {
  order: 2;
}
.landing__materialSlider .carousel__container {
  position: relative;
  left: -51px;
}
.landing__materialSlider .carousel__container .swiper-slide {
  display: flex;
  justify-content: flex-end;
}
.landing__materialSlider .carousel__container header {
  display: flex;
  justify-content: flex-end;
}
.landing__materialSlider .carousel__container header h4 {
  border-bottom: 1px solid #808080;
  padding-left: 40px;
  justify-content: flex-end;
  gap: 20px;
}

.landing__modelSlider article {
  order: 2;
}
@media screen and (width >= 800px) {
  .landing__modelSlider article {
    order: 1;
  }
}
.landing__modelSlider .asset__rellax {
  right: 0;
}
.landing__modelSlider .carousel__container {
  position: relative;
  right: -30px;
  justify-self: flex-end;
}
@media screen and (width >= 800px) {
  .landing__modelSlider .carousel__container {
    order: 1;
    justify-self: initial;
    right: -51px;
  }
}
.landing__modelSlider .carousel__container .carousel__outside header {
  display: flex;
  justify-content: flex-start;
}
.landing__modelSlider .carousel__container .carousel__outside header h4 {
  border-bottom: 1px solid #808080;
  justify-content: flex-end;
  padding-right: 40px;
}

/* **********************************************
  Cargo UI Video Carousel
********************************************** */
.landing__cargoCarousel article {
  max-width: 90%;
  margin: 0 auto;
}
@media screen and (width >= 680px) {
  .landing__cargoCarousel article {
    max-width: initial;
    margin: initial;
  }
}
.landing__cargoCarousel .carousel__wrapper {
  margin-top: 40px;
}
.landing__cargoCarousel .carousel__wrapper--inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.landing__cargoCarousel .carousel__wrapper--inner .video__carousel {
  max-width: 80vw;
  overflow: hidden;
  width: 100%;
  position: relative;
}
.landing__cargoCarousel .carousel__wrapper--inner .video__carousel::before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  content: "";
}
@media screen and (width >= 767px) {
  .landing__cargoCarousel .carousel__wrapper--inner .video__carousel::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0) 90%, rgb(17, 17, 17) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#111111",endColorstr="#111111",GradientType=1);
  }
}
.landing__cargoCarousel .carousel__wrapper--inner .video__carousel::after {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  content: "";
}
@media screen and (width >= 767px) {
  .landing__cargoCarousel .carousel__wrapper--inner .video__carousel::after {
    background: linear-gradient(90deg, rgb(17, 17, 17) 0%, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0) 90%, rgb(17, 17, 17) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#111111", endColorstr="#111111", GradientType=1);
  }
}
@media screen and (width >= 1280px) {
  .landing__cargoCarousel .carousel__wrapper--inner .video__carousel {
    max-width: 880px;
  }
}
@media screen and (width >= 1600px) {
  .landing__cargoCarousel .carousel__wrapper--inner .video__carousel {
    max-width: 1280px;
  }
}
@media screen and (width >= 1920px) {
  .landing__cargoCarousel .carousel__wrapper--inner .video__carousel {
    max-width: 1440px;
  }
}
@media screen and (width >= 2400px) {
  .landing__cargoCarousel .carousel__wrapper--inner .video__carousel {
    max-width: 1920px;
  }
}
.landing__cargoCarousel .carousel__wrapper--inner .video__carousel .video__wrapper {
  aspect-ratio: 16/9;
}
.landing__cargoCarousel .carousel__wrapper--inner .video__carousel .video__wrapper video {
  width: 100%;
}
.landing__cargoCarousel .carousel__wrapper--inner .carousel--controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  background: #181818;
  padding: 50px;
  width: 100%;
}
@media screen and (width >= 972px) {
  .landing__cargoCarousel .carousel__wrapper--inner .carousel--controls {
    gap: 100px;
    padding: 100px;
  }
}
.landing__cargoCarousel .carousel__wrapper--inner .carousel--controls .control {
  width: 65px;
  cursor: pointer;
  background: transparent;
  filter: grayscale(100);
  border: none;
  opacity: 0.5;
  height: auto;
  margin: 0;
}
@media screen and (width >= 972px) {
  .landing__cargoCarousel .carousel__wrapper--inner .carousel--controls .control {
    width: 65px;
  }
}
.landing__cargoCarousel .carousel__wrapper--inner .carousel--controls .control.active {
  filter: grayscale(0);
  opacity: 1;
}
.landing__cargoCarousel .carousel__wrapper--inner .carousel--controls .control img {
  width: 100%;
}

/* **********************************************
  PRICING SECTION STYLES
********************************************** */
.landing__cargoPricing {
  margin: 100px auto;
  padding: 0;
  align-items: center;
  overflow: hidden;
  max-width: 1900px;
}
@media screen and (width >= 972px) {
  .landing__cargoPricing {
    gap: 80px;
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    padding: 0 50px;
  }
}
@media screen and (width >= 1920px) {
  .landing__cargoPricing {
    max-width: 80vw;
  }
}
@media screen and (width >= 2400px) {
  .landing__cargoPricing {
    gap: 160px;
  }
}
.landing__cargoPricing--logo {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
@media screen and (width >= 972px) {
  .landing__cargoPricing--logo {
    flex-direction: row;
    align-items: initial;
    justify-content: flex-end;
  }
}
.landing__cargoPricing--logo figure {
  display: block;
  background: linear-gradient(-36deg, rgb(17, 17, 17) 0%, rgba(255, 255, 255, 0.1) 100%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  border: none;
  padding: 8px;
  border-radius: 3px;
  margin: 40px -70px 40px 0;
  width: 100%;
}
.landing__cargoPricing--logo figure img {
  width: 100%;
  vertical-align: bottom;
}
@media screen and (width >= 972px) {
  .landing__cargoPricing--logo figure {
    display: none;
  }
}
.landing__cargoPricing--logo svg {
  width: 100%;
  max-width: 450px;
  padding: 0 35px;
}
@media screen and (width >= 2000px) {
  .landing__cargoPricing--logo svg {
    max-width: 580px;
  }
}
@media screen and (width >= 2400px) {
  .landing__cargoPricing--logo svg {
    max-width: 600px;
  }
}
@media screen and (width >= 2800px) {
  .landing__cargoPricing--logo svg {
    max-width: 700px;
  }
}
.landing__cargoPricing--content {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}
@media screen and (width >= 972px) {
  .landing__cargoPricing--content {
    align-items: flex-start;
    gap: 60px;
    max-width: 800px;
  }
}
.landing__cargoPricing--content p,
.landing__cargoPricing--content h1 {
  text-align: center;
}
@media screen and (width >= 972px) {
  .landing__cargoPricing--content p,
  .landing__cargoPricing--content h1 {
    text-align: left;
  }
}
.landing__cargoPricing--content p {
  line-height: 2;
}
.landing__cargoPricing--content button {
  margin-top: 0;
}
.landing__cargoPricing--content h3 {
  color: #fff;
  font-weight: 400;
  font-size: 35px;
  line-height: 1;
}
@media screen and (width >= 972px) {
  .landing__cargoPricing--content h3 {
    text-align: left;
  }
}
@media screen and (width >= 2800px) {
  .landing__cargoPricing--content h3 {
    font-size: 45px;
  }
}
.landing__cargoPricing .divider {
  width: 1px;
  height: 100%;
  background: #808080;
  max-height: 400px;
}

/* **********************************************
  TRANSFER KITS SECTION STYLES
********************************************** */
.landing__transferKits {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.landing__transferKits figure {
  display: none;
  background: hsla(0, 0%, 0%, 0.2);
  border-radius: 16px 16px 0 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 20px 20px 0;
  border-bottom: 0;
  margin: 0 40px;
}
@media screen and (width >= 972px) {
  .landing__transferKits figure {
    display: block;
    max-width: 1240px;
  }
}
@media screen and (width >= 1920px) {
  .landing__transferKits figure {
    max-width: 1440px;
  }
}
@media screen and (width >= 2400px) {
  .landing__transferKits figure {
    max-width: 1900px;
  }
}
.landing__transferKits figure img {
  width: 100%;
  vertical-align: bottom;
  max-width: max-content;
}
.landing__transferKits article {
  padding: 160px 40px;
  width: 100%;
  background: #181818;
}
.landing__transferKits article button {
  margin-top: 0;
}

.newsletter__signup {
  min-height: 100vh;
}
.newsletter__signup-content {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  height: 100%;
}
.newsletter__signup-content .title-1 {
  font-size: 36px !important;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 15px;
}
.newsletter__signup-form {
  align-self: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.newsletter__signup-form .newsletter__form-cover {
  max-width: 50%;
}
.newsletter__signup-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media screen and (width <= 768px) {
  .newsletter__signup .newsletter__para {
    font-size: 14px !important;
    line-height: 24px !important;
    margin-bottom: 15px;
  }
}
@media screen and (width >= 768px) {
  .newsletter__signup-content {
    grid-template-columns: repeat(2, 1fr);
  }
  .newsletter__signup-content .title-1 {
    font-size: 30px !important;
    line-height: 1.1;
  }
  .newsletter__signup .newsletter__para {
    font-size: 16px !important;
    line-height: 28px !important;
    margin-bottom: 20px;
  }
}
@media screen and (width >= 992px) {
  .newsletter__signup-content .title-1 {
    font-size: 36px !important;
    line-height: 1.1;
  }
  .newsletter__signup .newsletter__para {
    font-size: 16px !important;
    line-height: 28px !important;
    margin-bottom: 20px;
  }
}
@media screen and (width >= 1300px) {
  .newsletter__signup-content .title-1 {
    font-size: 40px !important;
    line-height: 1.1;
  }
  .newsletter__signup .newsletter__para {
    font-size: 18px !important;
    line-height: 28px !important;
    margin-bottom: 25px;
  }
}
@media screen and (width >= 1800px) {
  .newsletter__signup-content .title-1 {
    font-size: 48px !important;
    line-height: 1.1;
  }
  .newsletter__signup .newsletter__para {
    font-size: 22px !important;
    line-height: 30px !important;
    margin-bottom: 30px;
  }
}
@media screen and (width >= 2000px) {
  .newsletter__signup-content .title-1 {
    font-size: 60px !important;
    line-height: 1.1;
  }
  .newsletter__signup .newsletter__para {
    font-size: 24px !important;
    line-height: 36px !important;
    margin-bottom: 30px;
  }
}
@media screen and (width >= 2400px) {
  .newsletter__signup-content .title-1 {
    font-size: 72px !important;
    line-height: 1.1;
  }
  .newsletter__signup .newsletter__para {
    font-size: 30px !important;
    line-height: 55px !important;
    margin-bottom: 50px;
  }
}
.ap3w-embeddable-form-62550cd46b12e7518bd08fdf {
  box-sizing: content-box;
  width: 100%;
  font-size: 16px;
  max-width: 900px;
  max-height: 100%;
  overflow: auto;
  background-color: #111;
  border: 2px solid transparent;
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0);
}

.ap3w-embeddable-form-62550cd46b12e7518bd08fdf-contained {
  max-width: 300px;
}

.ap3w-embeddable-form-62550cd46b12e7518bd08fdf::before {
  content: " ";
  display: block;
  position: absolute;
  pointer-events: none;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.ap3w-embeddable-form-content {
  margin: auto;
  padding: 32px;
}

.ap3w-embeddable-form-62550cd46b12e7518bd08fdf-top {
  top: 0;
}

.ap3w-embeddable-form-62550cd46b12e7518bd08fdf-bottom {
  bottom: 0;
}

.ap3w-embeddable-form-62550cd46b12e7518bd08fdf-rounded {
  border-radius: 12px;
}

.ap3w-embeddable-form-62550cd46b12e7518bd08fdf .ap3w-text {
  margin-bottom: 16px;
}

.ap3w-embeddable-form-62550cd46b12e7518bd08fdf .ap3w-text * {
  padding-bottom: 5px;
}

.ap3w-embeddable-form-62550cd46b12e7518bd08fdf .ap3w-video {
  margin-bottom: 28px;
}

.ap3w-embeddable-form-62550cd46b12e7518bd08fdf .ap3w-video.ap3w-video--fill {
  margin: 0 -32px;
  margin-bottom: 28px;
}

.ap3w-embeddable-form-62550cd46b12e7518bd08fdf .ap3w-video.ap3w-video--fill.ap3w-video--first {
  margin: -32px;
  margin-bottom: 28px;
}

.ap3w-embeddable-form-62550cd46b12e7518bd08fdf .ap3w-video.ap3w-video--fill.ap3w-video--last {
  margin: -32px;
  margin-top: 20px;
}

.ap3w-embeddable-form-62550cd46b12e7518bd08fdf .ap3w-image {
  margin-bottom: 28px;
}

.ap3w-embeddable-form-62550cd46b12e7518bd08fdf .ap3w-image.ap3w-image--fill {
  margin: 0 -32px;
  margin-bottom: 28px;
}

.ap3w-embeddable-form-62550cd46b12e7518bd08fdf .ap3w-image.ap3w-image--fill.ap3w-image--first {
  margin: -32px;
  margin-bottom: 28px;
}

.ap3w-embeddable-form-62550cd46b12e7518bd08fdf .ap3w-image.ap3w-image--fill.ap3w-image--last {
  margin: -32px;
  margin-top: 20px;
}

.ap3w-embeddable-form-62550cd46b12e7518bd08fdf .ap3w-reaction {
  margin-bottom: 16px;
}

.ap3w-embeddable-form-62550cd46b12e7518bd08fdf .ap3w-form {
  margin-bottom: 16px;
}

.ap3w-embeddable-form-62550cd46b12e7518bd08fdf .ap3w-form .ap3w-input input[type=text],
.ap3w-embeddable-form-62550cd46b12e7518bd08fdf .ap3w-form .ap3w-input input[type=email] {
  margin-bottom: 12px;
}

.ap3w-embeddable-form-tcpa-wrapper {
  text-align: center;
  margin-top: 12px;
}

.ap3w-embeddable-form-tcpa__text {
  color: #fff;
  margin: 0;
  font-size: 11px;
  line-height: 14px;
}

.ap3-form-br {
  flex-basis: 100%;
  height: 0;
}

.ap3w-text-62550cd46b12e7518bd08fdf {
  position: relative;
  margin: 0;
  margin-bottom: 16px;
}

.ap3w-text-62550cd46b12e7518bd08fdf.ap3w-text--last {
  margin-bottom: 0 !important;
}

.ap3w-text-62550cd46b12e7518bd08fdf * {
  margin: 0;
  padding-bottom: 8px;
}

.ap3w-text-62550cd46b12e7518bd08fdf *:last-child {
  padding-bottom: 0 !important;
}

.ap3w-text-62550cd46b12e7518bd08fdf a {
  color: #fbad18;
  text-decoration: underline;
}

.ap3w-text-62550cd46b12e7518bd08fdf h1,
.ap3w-text-62550cd46b12e7518bd08fdf h2,
.ap3w-text-62550cd46b12e7518bd08fdf h3,
.ap3w-text-62550cd46b12e7518bd08fdf h4,
.ap3w-text-62550cd46b12e7518bd08fdf h5,
.ap3w-text-62550cd46b12e7518bd08fdf h6,
.ap3w-text-62550cd46b12e7518bd08fdf p,
.ap3w-text-62550cd46b12e7518bd08fdf div > ul {
  text-transform: unset;
  text-decoration: unset;
  text-indent: unset;
}

.ap3w-text-62550cd46b12e7518bd08fdf h1 {
  font-size: 34px;
  line-height: 1;
  color: #fff;
  font-weight: 700;
  font-style: normal;
}

.ap3w-text-62550cd46b12e7518bd08fdf h2 {
  font-size: 24px;
  line-height: 1;
  color: #fff;
  font-weight: 700;
  font-style: normal;
}

.ap3w-text-62550cd46b12e7518bd08fdf h3 {
  font-size: 15px;
  line-height: 1;
  color: #fff;
  font-weight: 400;
  font-style: normal;
}

.ap3w-text-62550cd46b12e7518bd08fdf h4 {
  font-size: 12px;
  line-height: 1;
  color: #fff;
  font-weight: 400;
  font-style: normal;
}

.ap3w-text-62550cd46b12e7518bd08fdf h5 {
  font-size: 11px;
  line-height: 1;
  color: #fff;
  font-weight: 400;
  font-style: normal;
}

.ap3w-text-62550cd46b12e7518bd08fdf h6 {
  font-size: 11px;
  line-height: 1;
  color: #fff;
  font-weight: 400;
  font-style: normal;
}

.ap3w-text-62550cd46b12e7518bd08fdf p {
  font-size: 12px;
  line-height: 1;
  color: #fff;
  font-weight: 400;
  font-style: normal;
}

.ap3w-text-62550cd46b12e7518bd08fdf p[data-size=large] {
  font-size: 15px;
  line-height: 1;
  color: #fff;
  font-weight: 400;
  font-style: normal;
}

.ap3w-text-62550cd46b12e7518bd08fdf p[data-size=small] {
  font-size: 11px;
  line-height: 1;
  color: #fff;
  font-weight: 400;
  font-style: normal;
}

.ap3w-text-62550cd46b12e7518bd08fdf div > ul {
  font-size: 12px;
  line-height: 1;
  color: #fff;
  font-weight: 400;
  font-style: normal;
}

.ap3w-form-input-62550cd46b12e7518bd08fdf {
  margin-bottom: 20px;
}

.ap3w-form-input-62550cd46b12e7518bd08fdf input,
.ap3w-form-input-62550cd46b12e7518bd08fdf textarea {
  margin-top: 8px;
  box-sizing: border-box;
  width: 100%;
  background-color: #fff;
  border: 1px solid #000;
  color: #fff;
  outline: none;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  line-height: 1;
  padding: 10px 16px;
  resize: none;
}

.ap3w-form-input-62550cd46b12e7518bd08fdf input[type=datetime-local],
.ap3w-form-input-62550cd46b12e7518bd08fdf input[type=date] {
  padding: 8px 16px;
}

.ap3w-checkbox {
  overflow: hidden;
  margin-top: 24px;
  display: flex;
  align-items: center;
}

.ap3w-checkbox__inner {
  position: relative;
  display: flex;
  max-width: 100%;
  align-items: center;
}

.ap3w-checkbox input[type=checkbox] {
  margin: 0;
  padding: 0;
  opacity: 0;
  cursor: pointer;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.ap3w-checkbox input[type=checkbox] + span {
  position: absolute;
  box-sizing: border-box;
  left: 0;
  width: 30px;
  height: 30px;
  border-radius: 1px;
  border: 2px solid #fbad18;
  pointer-events: none;
}

.ap3w-checkbox input[type=checkbox] + span svg {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  fill: #fbad18;
  width: 20px;
  transform: translate(-50%, -50%);
}

.ap3w-checkbox input[type=checkbox]:checked + span svg {
  opacity: 1;
}

.ap3w-checkbox__text,
.ap3w-checkbox__text p,
.ap3w-checkbox__text a,
.ap3w-checkbox__text h4 {
  font-weight: 400;
  font-style: normal;
  color: #fff;
  margin: 0;
}

.ap3w-form-input input {
  background-color: var(--kb-color-black);
  height: 70px;
  line-height: 50px;
  margin-bottom: 0 !important;
  padding: 0 20px !important;
  font-size: 24px !important;
  color: var(--kb-color-white);
}

.ap3w-text h1 {
  font-size: 72px !important;
  line-height: 84px;
  margin-bottom: 30px !important;
  display: none;
}

.ap3w-form-input-62550cd46b12e7518bd08fdf .ap3w-form-input-label {
  font-weight: 400;
  color: #fff;
  font-size: 24px !important;
  line-height: 1;
  display: block;
}

.ap3w-form-button-62550cd46b12e7518bd08fdf button {
  cursor: pointer;
  font-weight: bold;
  outline: none;
  margin-left: 3px;
  border: 2px solid transparent;
  color: #111;
  background-color: #fbad18;
  line-height: 1;
  flex: 1;
}

.ap3w-checkbox__text {
  padding-left: 10px;
  font-size: 24px;
  line-height: 24px;
}

.ap3w-form-button {
  margin-top: 40px;
}

@media screen and (width <= 2400px) {
  .ap3w-embeddable-form-62550cd46b12e7518bd08fdf {
    max-width: 600px;
  }
}
@media screen and (width <= 1920px) {
  .ap3w-embeddable-form-62550cd46b12e7518bd08fdf {
    max-width: 600px;
  }
  .ap3w-form-input input {
    height: 50px;
    font-size: 18px !important;
  }
  .ap3w-text h1 {
    font-size: 54px !important;
    line-height: 64px;
  }
  .ap3w-form-input-62550cd46b12e7518bd08fdf .ap3w-form-input-label {
    font-size: 16px !important;
  }
  .ap3w-checkbox__text {
    padding-left: 10px;
    font-size: 20px;
    line-height: 20px;
  }
}
@media screen and (width <= 992px) {
  .ap3w-embeddable-form-62550cd46b12e7518bd08fdf {
    max-width: 500px;
  }
  .ap3w-form-input input {
    height: 40px;
    font-size: 16px !important;
  }
  .ap3w-text h1 {
    font-size: 40px !important;
    line-height: 54px;
  }
  .ap3w-form-input-62550cd46b12e7518bd08fdf .ap3w-form-input-label {
    font-size: 18px !important;
  }
  .ap3w-checkbox__text {
    padding-left: 10px;
    font-size: 18px;
    line-height: 18px;
  }
}
@media screen and (width <= 767px) {
  .ap3w-embeddable-form-62550cd46b12e7518bd08fdf {
    max-width: 450px;
  }
  .ap3w-form-input input {
    height: 36px;
    font-size: 14px !important;
  }
  .ap3w-text h1 {
    font-size: 36px !important;
    line-height: 48px;
  }
  .ap3w-form-input-62550cd46b12e7518bd08fdf .ap3w-form-input-label {
    font-size: 14px !important;
  }
  .ap3w-checkbox__text {
    padding-left: 10px;
    font-size: 14px;
    line-height: 14px;
  }
  .ap3w-checkbox input[type=checkbox],
  .ap3w-checkbox input[type=checkbox] + span {
    width: 20px;
    height: 20px;
  }
}
#main-content .shopify-policy__container {
  padding-top: 50px;
}
#main-content .shopify-policy__container .shopify-policy__title {
  display: none;
}
@media screen and (width >= 768px) {
  #main-content .shopify-policy__container {
    max-width: 680px;
  }
}
@media screen and (width >= 992px) {
  #main-content .shopify-policy__container {
    max-width: 760px;
  }
}
@media screen and (width >= 1280px) {
  #main-content .shopify-policy__container {
    max-width: 1200px;
  }
}
@media screen and (width >= 1920px) {
  #main-content .shopify-policy__container {
    max-width: 1600px;
  }
}
#main-content .shopify-policy__container p {
  font-size: 16px;
  font-family: var(--kb-body-font-poppins);
}

[class*=mission-to-minerva] {
  background: #000;
}
[class*=mission-to-minerva] #shopify-section-footer {
  background: #111;
}
[class*=mission-to-minerva] #shopify-section-footer .app__footer {
  height: initial;
  padding: 80px 0;
  overflow: hidden;
}
[class*=mission-to-minerva] #shopify-section-header {
  position: relative;
  z-index: 1000;
}

.page__mtm {
  /* **********************************************
    HEADER PARALLAX SECTION STYLES
  ********************************************** */
  /* **********************************************
    PHASES SECTION STYLES
  ********************************************** */
  /* **********************************************
    TRAININGS SECTION STYLES
  ********************************************** */
  /* **********************************************
    JUDGES STYLES
  ********************************************** */
  /* **********************************************
    DIVIDER STYLES
  ********************************************** */
  /* **********************************************
    PRIZES STYLES
  ********************************************** */
  /* **********************************************
    SPONSORS STYLES
  ********************************************** */
  /* **********************************************
    BLOG POSTS STYLES
  ********************************************** */
  /* **********************************************
    FAQ STYLES
  ********************************************** */
}
.page__mtm--parallax {
  position: relative;
  overflow: hidden;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 60px;
}
@media screen and (width >= 992px) {
  .page__mtm--parallax {
    padding-top: 200px;
  }
}
.page__mtm--parallax-center-line {
  display: none;
  width: 1px;
  height: 0;
  opacity: 0.2;
  background: linear-gradient(178deg, #808080, white);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 10;
}
@media all and (width >= 992px) {
  .page__mtm--parallax-center-line {
    display: block;
  }
}
.page__mtm--parallax-center-line .page__mtm--parallax-orbit-end {
  position: absolute;
  bottom: -75px;
  left: -37px;
  right: 0;
  margin: auto;
  width: 75px;
  height: 75px;
}
.page__mtm--parallax .planet {
  position: absolute;
  width: fit-content;
  z-index: 2;
}
.page__mtm--parallax .planet-small {
  width: 300px;
  left: -50px;
  top: 200px;
}
.page__mtm--parallax .planet-medium {
  width: 400px;
  right: -50px;
  top: 500px;
}
.page__mtm--parallax .planet-large {
  width: 1200px;
  left: -70%;
  bottom: initial;
  top: 650px;
}
@media all and (width >= 960px) {
  .page__mtm--parallax .planet-small {
    width: 300px;
    left: 20px;
    top: 200px;
  }
  .page__mtm--parallax .planet-medium {
    width: 400px;
    right: 20px;
    top: 500px;
  }
  .page__mtm--parallax .planet-large {
    width: 1200px;
    left: -50%;
    bottom: 15%;
  }
}
@media all and (width >= 1200px) {
  .page__mtm--parallax .planet-small {
    width: 300px;
    left: 200px;
    top: 200px;
  }
  .page__mtm--parallax .planet-medium {
    width: 400px;
    right: 200px;
    top: 500px;
  }
  .page__mtm--parallax .planet-large {
    width: 1200px;
    left: -25%;
    bottom: 15%;
  }
}
@media all and (width >= 1600px) {
  .page__mtm--parallax .planet-large {
    width: 1400px;
  }
}
@media all and (width >= 1800px) {
  .page__mtm--parallax .planet-small {
    width: 400px;
    left: 300px;
    top: 200px;
  }
  .page__mtm--parallax .planet-medium {
    width: 500px;
    right: 200px;
    top: 500px;
  }
  .page__mtm--parallax .planet-large {
    width: 1920px;
    left: -35%;
    bottom: 14%;
  }
}
@media all and (width >= 2400px) {
  .page__mtm--parallax .planet-small {
    width: 400px;
    left: 400px;
    top: 200px;
  }
  .page__mtm--parallax .planet-medium {
    width: 500px;
    right: 100px;
    top: 600px;
  }
  .page__mtm--parallax .planet-large {
    width: 2600px;
    left: -40%;
    bottom: 18%;
  }
}
@media all and (width >= 2800px) {
  .page__mtm--parallax .planet-large {
    left: -30%;
    bottom: 18%;
  }
}
.page__mtm--parallax-info {
  z-index: 10;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  height: auto;
  position: relative;
}
@media screen and (width >= 992px) {
  .page__mtm--parallax-info-header {
    padding-top: 65px;
  }
}
.page__mtm--parallax-info-header .logo {
  max-width: 280px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}
.page__mtm--parallax-info-header .beacon {
  height: 80px;
  width: 80px;
  border-radius: 1000px;
  border: 1px solid var(--kb-color-brand-500);
  position: relative;
  box-shadow: 0 0 20px 0 #fcad17;
  margin: 30px auto;
}
@media screen and (width >= 992px) {
  .page__mtm--parallax-info-header .beacon {
    margin: 60px auto;
  }
}
.page__mtm--parallax-info-header .beacon::after {
  content: "";
  border-radius: 100px;
  position: absolute;
  inset: 0;
  height: 25px;
  width: 25px;
  margin: auto;
  background: var(--kb-color-brand-500);
}
.page__mtm--parallax-info-free p {
  cursor: pointer;
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 10px;
  text-align: center;
  letter-spacing: 0.2em;
  color: #fff;
}
.page__mtm--parallax-info-free p:hover {
  color: var(--kb-color-brand-500);
}
.page__mtm--parallax-info-free p:hover svg path {
  fill: var(--kb-color-brand-500) !important;
}
.page__mtm--parallax-info-details {
  padding: 0 30px;
  margin: 300px auto 0;
  max-width: 780px;
}
.page__mtm--parallax-info-details h6 {
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  text-align: center;
  letter-spacing: 0.3em;
  color: #fbad18;
  margin-bottom: 20px;
}
.page__mtm--parallax-info-details h2 {
  font-style: normal;
  font-weight: 800;
  font-size: 35px;
  text-align: center;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}
.page__mtm--parallax-info-details p {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 180%;
  text-align: center;
  color: #fff;
}
@media screen and (width >= 800px) {
  .page__mtm--parallax-info {
    height: fit-content;
    position: relative;
    z-index: 10;
  }
}
.page__mtm--parallax-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  display: none;
}
.page__mtm--parallax-background-mobile {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (width >= 800px) {
  .page__mtm--parallax-background {
    position: initial;
    z-index: initial;
    display: block;
  }
  .page__mtm--parallax-background-mobile {
    display: none;
  }
}
.page__mtm--parallax-orbit {
  position: absolute;
  left: -92px;
  top: -290px;
  right: 0;
  margin: auto;
  z-index: 5;
  opacity: 0.5;
  transform: translateX(84px);
  width: 520px;
}
@media screen and (width >= 800px) {
  .page__mtm--parallax-orbit {
    top: -283px;
    right: -26px;
    width: 700px;
  }
}
@media screen and (width >= 1800px) {
  .page__mtm--parallax-orbit {
    top: -105px;
    right: -94px;
    width: 1200px;
  }
}
.page__mtm--parallax-textBox h6 {
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  margin-bottom: 20px;
  letter-spacing: 0.3em;
  color: #fbad18;
}
.page__mtm--parallax-textBox h2 {
  font-style: normal;
  font-weight: 800;
  font-size: 35px;
  line-height: 1.3;
  color: #fff;
}
.page__mtm--parallax-textBox p {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #fff;
}
.page__mtm--parallax-video {
  margin-top: 100px;
  gap: 20px;
  display: grid;
  padding: 0;
  align-items: center;
  grid-template-columns: 1fr minmax(0, 640px) 1fr;
  grid-column: 2/3;
  margin-bottom: 70px;
}
.page__mtm--parallax-video-iframe {
  border: 3px solid white;
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
}
@media screen and (width >= 992px) {
  .page__mtm--parallax-video {
    padding: 0;
    margin-bottom: 0;
    margin-top: 200px;
    grid-template-columns: 1fr 860px 1fr;
  }
}
@media screen and (width >= 1280px) {
  .page__mtm--parallax-video {
    grid-template-columns: 1fr 1160px 1fr;
  }
}
@media screen and (width >= 1600px) {
  .page__mtm--parallax-video {
    grid-template-columns: 1fr 1400px 1fr;
  }
}
@media screen and (width >= 1920px) {
  .page__mtm--parallax-video {
    grid-template-columns: 1fr 1560px 1fr;
  }
}
@media screen and (width >= 2400px) {
  .page__mtm--parallax-video {
    grid-template-columns: 1fr 2160px 1fr;
  }
}
.page__mtm--parallax-video-holder {
  position: relative;
  cursor: pointer;
}
.page__mtm--parallax-video-holder img {
  border: 3px solid white;
}
.page__mtm--parallax-video-holder svg {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 80px;
  height: 80px;
  fill: white;
  display: none;
}
.page__mtm--parallax-video-holder:hover svg {
  fill: var(--kb-color-brand-500);
}
.page__mtm--parallax-video .page__mtm--parallax-textBox {
  gap: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  text-align: center;
  align-items: center;
  grid-column: 1/5;
}
@media screen and (width >= 992px) {
  .page__mtm--parallax-video .page__mtm--parallax-textBox {
    grid-column: 2/3;
  }
}
.page__mtm--parallax-video .page__mtm--parallax-textBox .page__mtm--parallax-video-holder {
  grid-column: 1/6;
  padding: 0 30px;
  order: -4;
  margin-bottom: 40px;
}
@media screen and (width >= 992px) {
  .page__mtm--parallax-video .page__mtm--parallax-textBox .page__mtm--parallax-video-holder {
    grid-column: 1/3;
    padding: 0;
    margin-bottom: 0;
    order: initial;
  }
}
.page__mtm--parallax-video .page__mtm--parallax-textBox .page__mtm--parallax-video-holder img {
  width: 100%;
}
.page__mtm--parallax-video .page__mtm--parallax-textBox-content {
  padding: 0 30px;
  grid-column: 1/6;
  order: -2;
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (width >= 992px) {
  .page__mtm--parallax-video .page__mtm--parallax-textBox-content {
    margin: initial;
    order: initial;
    padding: 0;
    text-align: left;
    grid-column: 4/-1;
  }
}
@media screen and (width >= 1280px) {
  .page__mtm--parallax-video .page__mtm--parallax-textBox-content {
    grid-column: 4/-1;
  }
}
@media screen and (width >= 2400px) {
  .page__mtm--parallax-video .page__mtm--parallax-textBox-content {
    max-width: 800px;
  }
}
.page__mtm--parallax-cargoShip {
  gap: 20px;
  display: grid;
  padding: 0;
  align-items: center;
  grid-template-columns: 1fr minmax(0, 640px) 1fr;
}
@media screen and (width >= 992px) {
  .page__mtm--parallax-cargoShip {
    padding: 0;
    grid-template-columns: 1fr 860px 1fr;
  }
}
@media screen and (width >= 1280px) {
  .page__mtm--parallax-cargoShip {
    grid-template-columns: 1fr 1160px 1fr;
  }
}
@media screen and (width >= 1600px) {
  .page__mtm--parallax-cargoShip {
    grid-template-columns: 1fr 1400px 1fr;
  }
}
@media screen and (width >= 1920px) {
  .page__mtm--parallax-cargoShip {
    grid-template-columns: 1fr 1560px 1fr;
  }
}
@media screen and (width >= 2400px) {
  .page__mtm--parallax-cargoShip {
    grid-template-columns: 1fr 2160px 1fr;
  }
}
.page__mtm--parallax-cargoShip .page__mtm--parallax-textBox {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-column: 1/5;
  text-align: center;
  align-items: center;
}
@media screen and (width >= 992px) {
  .page__mtm--parallax-cargoShip .page__mtm--parallax-textBox {
    grid-column: 2/5;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  }
}
.page__mtm--parallax-cargoShip .page__mtm--parallax-textBox-content {
  padding: 0 30px;
  grid-column: 1/7;
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (width >= 992px) {
  .page__mtm--parallax-cargoShip .page__mtm--parallax-textBox-content {
    margin: initial;
    padding: 0;
    text-align: left;
    grid-column: 1/3;
  }
}
@media screen and (width >= 2400px) {
  .page__mtm--parallax-cargoShip .page__mtm--parallax-textBox-content {
    max-width: 800px;
  }
}
.page__mtm--parallax-cargoShip figure {
  grid-column: 1/6;
}
@media screen and (width >= 992px) {
  .page__mtm--parallax-cargoShip figure {
    grid-column: 3/7;
  }
}
@media screen and (width >= 1280px) {
  .page__mtm--parallax-cargoShip figure {
    grid-column: 3/7;
  }
}
.page__mtm--parallax-cargoShip figure img {
  width: 100%;
}
@media all and (width >= 1500px) {
  .page__mtm--parallax-info .logo {
    max-width: 350px;
  }
  .page__mtm--parallax-info-details {
    max-width: 900px;
  }
}
.page__mtm--phase {
  display: grid;
  gap: 20px;
  align-items: center;
  margin-bottom: 30px;
  grid-column: 1/5;
  grid-template-columns: 1fr;
}
@media screen and (width >= 992px) {
  .page__mtm--phase {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
}
.page__mtm--phase-container {
  overflow: hidden;
  gap: 20px;
  display: grid;
  grid-column: 1/-1;
  grid-template-columns: 1fr minmax(0, 640px) 1fr;
}
@media screen and (width >= 992px) {
  .page__mtm--phase-container {
    grid-template-columns: 1fr 860px 1fr;
    grid-column: 2/-1;
  }
  .page__mtm--phase-container.right {
    grid-column: 1/5;
  }
}
@media screen and (width >= 1280px) {
  .page__mtm--phase-container {
    grid-template-columns: 1fr 1160px 1fr;
  }
}
@media screen and (width >= 1600px) {
  .page__mtm--phase-container {
    grid-template-columns: 1fr 1400px 1fr;
  }
}
@media screen and (width >= 1920px) {
  .page__mtm--phase-container {
    grid-template-columns: 1fr 1560px 1fr;
  }
}
@media screen and (width >= 2400px) {
  .page__mtm--phase-container {
    grid-template-columns: 1fr 2160px 1fr;
  }
}
.page__mtm--phase-container.left .page__mtm--phase-image img {
  transform: scale(1.2);
}
.page__mtm--phase-content {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  grid-column: 1/3;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (width >= 992px) {
  .page__mtm--phase-content {
    margin: initial;
  }
}
@media screen and (width >= 2400px) {
  .page__mtm--phase-content {
    max-width: 800px;
  }
}
.page__mtm--phase-content article {
  margin-bottom: 40px;
  max-width: 900px;
  min-width: 300px;
  order: -1;
}
.page__mtm--phase-content article h4 {
  text-transform: uppercase;
  color: var(--kb-color-brand-500);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}
.page__mtm--phase-content article h1 {
  text-transform: uppercase;
  font-style: normal;
  font-weight: 800;
  font-size: 40px;
  line-height: 1;
  color: #fff;
  margin-bottom: 20px;
}
.page__mtm--phase-content article p {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: #fff;
}
.page__mtm--phase-image {
  grid-column: 3/-1;
}
.page__mtm--phase-image img {
  position: relative;
  width: 100%;
  height: auto;
}
.page__mtm--phase-social {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
.page__mtm--phase-social a {
  cursor: pointer;
}
.page__mtm--phase-social a img {
  width: 32px;
}
@media all and (width >= 992px) {
  .page__mtm--phase-content {
    text-align: left;
    padding: 0;
  }
  .page__mtm--phase-content article {
    margin-bottom: 40px;
    order: -1;
  }
  .page__mtm--phase-social {
    justify-content: flex-start;
  }
  .page__mtm--phase-container.right .page__mtm--phase-content {
    order: 3;
    grid-column: 4/6;
  }
  .page__mtm--phase-container.right .page__mtm--phase-image {
    grid-column: 1/4;
  }
}
.page__mtm--training-content {
  margin: 50px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.page__mtm--training-content header {
  margin-bottom: 40px;
  max-width: 650px;
  min-width: 300px;
}
@media screen and (width >= 992px) {
  .page__mtm--training-content header {
    text-align: center;
  }
}
.page__mtm--training-content header h4 {
  text-transform: uppercase;
  color: var(--kb-color-brand-500);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}
.page__mtm--training-content header h1 {
  text-transform: uppercase;
  font-style: normal;
  font-weight: 800;
  font-size: 40px;
  line-height: 1;
  color: #fff;
  margin-bottom: 20px;
}
.page__mtm--training-content header p {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: #fff;
}
.page__mtm--training-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 70px;
}
@media screen and (width >= 920px) {
  .page__mtm--training-list {
    grid-template-columns: 1fr 1fr;
    gap: 70px;
  }
}
.page__mtm--training-list .page__mtm--training figure {
  max-width: 800px;
  margin: auto;
  position: relative;
}
.page__mtm--training-list .page__mtm--training figure svg {
  position: absolute;
  bottom: -45px;
  right: 29px;
  width: 45px;
  fill: white;
}
.page__mtm--training-list .page__mtm--training figure svg .line {
  stroke-width: 3px;
  stroke: white;
}
@media screen and (width >= 992px) {
  .page__mtm--training-list .page__mtm--training figure svg {
    width: 75px;
    bottom: -25px;
    right: 15px;
  }
}
.page__mtm--training-list .page__mtm--training figure:hover svg {
  fill: var(--kb-color-brand-500);
}
.page__mtm--training-list .page__mtm--training figure:hover svg .line {
  stroke: var(--kb-color-brand-500);
}
.page__mtm--training-list .page__mtm--training figure img {
  width: 100%;
  height: 100%;
}
.page__mtm--judges {
  margin: 40px 0 100px;
  overflow: hidden;
}
.page__mtm--judges-disclaimer {
  margin: 40px 0 0;
}
.page__mtm--judges-disclaimer p {
  font-weight: 400;
  font-size: 12px;
  color: #808080;
}
.page__mtm--judges-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
@media screen and (width >= 992px) {
  .page__mtm--judges-content {
    text-align: center;
  }
}
.page__mtm--judges-content header {
  margin-bottom: 40px;
  max-width: 900px;
  min-width: 300px;
}
.page__mtm--judges-content header h4 {
  text-transform: uppercase;
  color: var(--kb-color-brand-500);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}
.page__mtm--judges-content header h1 {
  text-transform: uppercase;
  font-style: normal;
  font-weight: 800;
  font-size: 40px;
  line-height: 1;
  color: #fff;
  margin-bottom: 20px;
}
.page__mtm--judges-content header p {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: #fff;
}
.page__mtm--judges .page__mtm--judge-list {
  width: 100%;
  display: flex;
  justify-content: center;
  max-width: fit-content;
}
.page__mtm--judges .page__mtm--judge-list .judges-carousel {
  width: 100%;
}
.page__mtm--judges .page__mtm--judge-list .judges-carousel .swiper__arrows {
  display: flex;
  justify-content: flex-end;
  gap: 5px;
  margin-bottom: 30px;
  cursor: pointer;
}
@media all and (width >= 1280px) {
  .page__mtm--judges .page__mtm--judge-list .judges-carousel .swiper__arrows {
    display: none;
  }
}
.page__mtm--judges .page__mtm--judge-list .judges-carousel .swiper__arrows .judge-button-prev,
.page__mtm--judges .page__mtm--judge-list .judges-carousel .swiper__arrows .judge-button-next {
  border: 1px solid white;
  width: 30px;
  height: 30px;
  display: flex;
  place-content: center;
  place-items: center;
}
.page__mtm--judges .page__mtm--judge-list .judges-carousel .swiper__arrows .judge-button-prev.swiper-button-disabled,
.page__mtm--judges .page__mtm--judge-list .judges-carousel .swiper__arrows .judge-button-next.swiper-button-disabled {
  opacity: 0.2;
}
.page__mtm--judges .page__mtm--judge-list .judges-carousel .swiper__arrows .judge-button-prev svg,
.page__mtm--judges .page__mtm--judge-list .judges-carousel .swiper__arrows .judge-button-next svg {
  width: 15px;
  height: 15px;
}
.page__mtm--judges .page__mtm--judge-list .page__mtm--judge {
  border: 1px solid #494949;
  background: linear-gradient(0deg, rgb(0, 0, 0) 50%, #111 51%);
  text-align: center;
  height: fit-content;
}
.page__mtm--judges .page__mtm--judge-list .page__mtm--judge-company {
  max-width: 120px;
}
.page__mtm--judges .page__mtm--judge-list .page__mtm--judge figure {
  position: relative;
  width: fit-content;
}
.page__mtm--judges .page__mtm--judge-list .page__mtm--judge figure::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 120px;
  left: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(255, 255, 255, 0) 100%);
}
.page__mtm--judges .page__mtm--judge-list .page__mtm--judge figure img {
  width: 100%;
  aspect-ratio: 209/281;
  object-fit: cover;
  object-position: center;
}
.page__mtm--judges .page__mtm--judge-list .page__mtm--judge-details {
  position: relative;
  padding: 10px 10px 30px;
  background: black;
}
.page__mtm--judges .page__mtm--judge-list .page__mtm--judge-details h3 {
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  line-height: 1.5;
  color: #fff;
  position: relative;
  z-index: 2;
}
.page__mtm--judges .page__mtm--judge-list .page__mtm--judge-details p {
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  line-height: 1.5;
  color: #fbad18;
  position: relative;
  z-index: 2;
}
@media screen and (width >= 920px) {
  .page__mtm--judges .page__mtm--judge-list .page__mtm--judge-details {
    padding: 30px 10px;
  }
  .page__mtm--judges .page__mtm--judge-list .page__mtm--judge-details h3 {
    font-size: 13px;
  }
  .page__mtm--judges .page__mtm--judge-list .page__mtm--judge-details p {
    font-size: 12px;
  }
}
@media screen and (width >= 1280px) {
  .page__mtm--judges .page__mtm--judge-list .page__mtm--judge-details {
    padding: 30px 10px;
  }
  .page__mtm--judges .page__mtm--judge-list .page__mtm--judge-details h3 {
    font-size: 13px;
  }
  .page__mtm--judges .page__mtm--judge-list .page__mtm--judge-details p {
    font-size: 10px;
  }
}
@media screen and (width >= 1600px) {
  .page__mtm--judges .page__mtm--judge-list .page__mtm--judge-details {
    padding: 10px 10px 30px;
  }
  .page__mtm--judges .page__mtm--judge-list .page__mtm--judge-details h3 {
    font-size: 13px;
  }
  .page__mtm--judges .page__mtm--judge-list .page__mtm--judge-details p {
    font-size: 10px;
  }
}
@media screen and (width >= 1920px) {
  .page__mtm--judges .page__mtm--judge-list .page__mtm--judge-details {
    padding: 10px 10px 30px;
  }
  .page__mtm--judges .page__mtm--judge-list .page__mtm--judge-details h3 {
    font-size: 18px;
  }
  .page__mtm--judges .page__mtm--judge-list .page__mtm--judge-details p {
    font-size: 16px;
  }
}
.page__mtm--divider-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.page__mtm--divider-content::before, .page__mtm--divider-content::after {
  content: "";
  height: 1px;
  width: calc(50% - 40px);
  background: white;
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 0;
  margin: 0 auto;
}
.page__mtm--divider-content::before {
  right: 0;
  left: initial;
}
.page__mtm--divider-content::after {
  left: 0;
  right: initial;
}
.page__mtm--divider-content header h1 {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.2em;
  color: #fff;
  text-transform: uppercase;
}
@media all and (width >= 800px) {
  .page__mtm--divider-content::before, .page__mtm--divider-content::after {
    top: 30px;
    width: calc(50% - 60px);
  }
}
.page__mtm--divider-signal {
  height: 40px;
  width: 40px;
  border-radius: 1000px;
  border: 1px solid var(--kb-color-brand-500);
  position: relative;
}
.page__mtm--divider-signal::after {
  content: "";
  border-radius: 100px;
  position: absolute;
  inset: 0;
  height: 15px;
  width: 15px;
  margin: auto;
  background: var(--kb-color-brand-500);
}
@media all and (width >= 800px) {
  .page__mtm--divider-signal {
    height: 60px;
    width: 60px;
  }
  .page__mtm--divider-signal::after {
    height: 20px;
    width: 20px;
  }
}
.page__mtm--divider header {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.2em;
  color: #fff;
}
.page__mtm--prizes {
  margin: 60px 0;
}
.page__mtm--prizes-content {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  align-items: center;
}
.page__mtm--prizes .page__mtm--prize-main {
  gap: 20px;
  display: grid;
  padding: 0 20px;
  grid-template-columns: 1fr minmax(0, 640px) 1fr;
}
@media screen and (width >= 992px) {
  .page__mtm--prizes .page__mtm--prize-main {
    padding: 0;
    grid-template-columns: 1fr 860px 1fr;
  }
}
@media screen and (width >= 1280px) {
  .page__mtm--prizes .page__mtm--prize-main {
    grid-template-columns: 1fr 1160px 1fr;
  }
}
@media screen and (width >= 1600px) {
  .page__mtm--prizes .page__mtm--prize-main {
    grid-template-columns: 1fr 1400px 1fr;
  }
}
@media screen and (width >= 1920px) {
  .page__mtm--prizes .page__mtm--prize-main {
    grid-template-columns: 1fr 1560px 1fr;
  }
}
@media screen and (width >= 2400px) {
  .page__mtm--prizes .page__mtm--prize-main {
    grid-template-columns: 1fr 2160px 1fr;
  }
}
.page__mtm--prizes .page__mtm--prize-main-info {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 30px;
  grid-column: 1/5;
}
@media screen and (width >= 992px) {
  .page__mtm--prizes .page__mtm--prize-main-info {
    grid-column-start: 2;
  }
}
@media screen and (width >= 1920px) {
  .page__mtm--prizes .page__mtm--prize-main-info {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.page__mtm--prizes .page__mtm--prize-main-info-details {
  grid-column: 1/6;
}
@media screen and (width >= 992px) {
  .page__mtm--prizes .page__mtm--prize-main-info-details {
    text-align: left;
    grid-column: 1/3;
  }
}
@media screen and (width >= 1280px) {
  .page__mtm--prizes .page__mtm--prize-main-info-details {
    grid-column: 1/3;
  }
}
@media screen and (width >= 1920px) {
  .page__mtm--prizes .page__mtm--prize-main-info-details {
    grid-column: 1/2;
  }
}
.page__mtm--prizes .page__mtm--prize-main-info-details article {
  margin-left: 10px;
}
@media screen and (width >= 992px) {
  .page__mtm--prizes .page__mtm--prize-main-info-details article {
    margin: 0;
  }
}
.page__mtm--prizes .page__mtm--prize-main-info-details article strong {
  margin-right: 10px;
}
.page__mtm--prizes .page__mtm--prize-main-info-details article h3 {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.8;
  color: #fbad18;
  text-transform: uppercase;
}
.page__mtm--prizes .page__mtm--prize-main-info-details article ul {
  list-style-position: outside;
  margin-left: 20px;
}
.page__mtm--prizes .page__mtm--prize-main-info-details article ul,
.page__mtm--prizes .page__mtm--prize-main-info-details article li,
.page__mtm--prizes .page__mtm--prize-main-info-details article p {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 2;
  color: #fff;
}
.page__mtm--prizes .page__mtm--prize-main-info figure {
  grid-column: 1/6;
}
@media screen and (width >= 992px) {
  .page__mtm--prizes .page__mtm--prize-main-info figure {
    grid-column: 3/6;
  }
}
@media screen and (width >= 1280px) {
  .page__mtm--prizes .page__mtm--prize-main-info figure {
    grid-column: 3/6;
  }
}
@media screen and (width >= 1920px) {
  .page__mtm--prizes .page__mtm--prize-main-info figure {
    grid-column: 2/5;
  }
}
.page__mtm--prizes .page__mtm--prize-main-info figure .page__mtm--prize-image {
  width: 100%;
}
.page__mtm--prizes .page__mtm--prize-main header {
  margin-bottom: 40px;
}
.page__mtm--prizes .page__mtm--prize-main header h4 {
  text-transform: uppercase;
  color: var(--kb-color-brand-500);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}
.page__mtm--prizes .page__mtm--prize-main header h1 {
  text-transform: uppercase;
  font-style: normal;
  font-weight: 800;
  font-size: 40px;
  line-height: 1;
  color: #fff;
  margin-bottom: 20px;
}
.page__mtm--prizes .page__mtm--prize-main header p {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  color: #fff;
}
.page__mtm--prizes .page__mtm--prize-list {
  display: grid;
  gap: 20px;
  grid-column: 1/3;
  grid-template-columns: 1fr;
}
@media screen and (width >= 992px) {
  .page__mtm--prizes .page__mtm--prize-list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.page__mtm--prizes .page__mtm--prize-list .page__mtm--prize {
  border: 1px solid #808080;
  padding: 20px;
}
@media screen and (width >= 992px) {
  .page__mtm--prizes .page__mtm--prize-list .page__mtm--prize {
    padding: 40px;
  }
}
.page__mtm--prizes .page__mtm--prize-list .page__mtm--prize strong {
  margin-right: 10px;
}
.page__mtm--prizes .page__mtm--prize-list .page__mtm--prize h3 {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.2em;
  color: #fbad18;
  margin-bottom: 20px;
}
@media screen and (width >= 2200px) {
  .page__mtm--prizes .page__mtm--prize-list .page__mtm--prize h3 {
    font-size: 20px;
  }
}
.page__mtm--prizes .page__mtm--prize-list .page__mtm--prize ul {
  list-style-position: outside;
  margin-left: 20px;
}
.page__mtm--prizes .page__mtm--prize-list .page__mtm--prize ul,
.page__mtm--prizes .page__mtm--prize-list .page__mtm--prize li,
.page__mtm--prizes .page__mtm--prize-list .page__mtm--prize p {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: #fff;
}
@media screen and (width >= 920px) {
  .page__mtm--prizes-content {
    text-align: left;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    justify-content: space-between;
  }
  .page__mtm--prizes-content header {
    margin-bottom: 0;
    width: 100%;
    min-width: 300px;
  }
  .page__mtm--prizes .page__mtm--prize-list {
    min-width: 500px;
  }
}
@media screen and (width >= 1280px) {
  .page__mtm--prizes .page__mtm--prize-list {
    overflow: visible;
    min-width: initial;
  }
}
.page__mtm--sponsors {
  background: #181818;
  padding: 50px 0;
}
.page__mtm--sponsors-content header {
  text-align: center;
}
.page__mtm--sponsors-content header h3 {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  text-align: center;
  letter-spacing: 0.2em;
  color: #d8d8d8;
}
.page__mtm--sponsors-content article {
  margin-top: 55px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: center;
}
.page__mtm--sponsors-content article img {
  width: 120px;
}
@media screen and (width >= 920px) {
  .page__mtm--sponsors-content article img {
    width: 120px;
  }
}
@media screen and (width >= 1600px) {
  .page__mtm--sponsors-content article {
    margin: 55px auto 0;
    gap: 50px;
  }
}
@media screen and (width >= 2400px) {
  .page__mtm--sponsors-content article {
    gap: 60px 100px;
  }
  .page__mtm--sponsors-content article img {
    width: 160px;
  }
}
.page__mtm--blog {
  padding: 60px 20px;
}
.page__mtm--blog-content header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.page__mtm--blog-content header h3 {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #808080;
}
.page__mtm--blog-content header a {
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  line-height: 2;
  letter-spacing: 0.1em;
  color: #fbad18;
  text-transform: uppercase;
  text-decoration: none;
  display: none;
}
.page__mtm--blog-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media all and (width >= 800px) {
  .page__mtm--blog-list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.page__mtm--blog-post img {
  width: 100%;
  aspect-ratio: 25/14;
  object-position: center;
  object-fit: cover;
  margin-bottom: 20px;
}
.page__mtm--blog-post a {
  display: inline;
  gap: 0;
  text-decoration: none;
  align-items: center;
  font-weight: bold;
}
.page__mtm--blog-post a .threeUp_content_icon {
  display: inline-block;
  vertical-align: baseline;
}
.page__mtm--blog-post a .threeUp_content_icon svg {
  margin-right: 6px;
  position: relative;
  top: 2px;
}
.page__mtm--blog-post a span {
  color: #808080;
  margin-left: 3px;
}
.page__mtm--blog-post a:hover {
  color: var(--kb-color-brand-500);
}
@media all and (width >= 460px) {
  .page__mtm--blog-content header a {
    display: block;
  }
}
@media all and (width >= 972px) {
  .page__mtm--blog {
    padding: 120px 0;
  }
  .page__mtm--blog-list {
    gap: 40px;
  }
}
.page__mtm--faq .kbds-faq {
  padding: 0;
  min-width: initial;
}
.page__mtm--faq .kbds-faq--title {
  text-align: center;
}
.page__mtm--faq .kbds-faq--title h1 {
  font-size: 35px;
  line-height: 0.9;
  font-weight: 800;
  text-align: center;
}
.page__mtm--faq .kbds-faq--title ul,
.page__mtm--faq .kbds-faq--title li,
.page__mtm--faq .kbds-faq--title p {
  font-size: 12px;
  text-align: center;
}
@media all and (width >= 972px) {
  .page__mtm--faq .kbds-faq--title h1 {
    font-size: 45px;
    text-align: left;
  }
  .page__mtm--faq .kbds-faq--title ul,
  .page__mtm--faq .kbds-faq--title li,
  .page__mtm--faq .kbds-faq--title p {
    color: white;
    font-size: 18px;
    text-align: left;
  }
}
@media all and (width >= 1600px) {
  .page__mtm--faq .kbds-faq--title h1 {
    font-size: 45px;
  }
}

/* ******************************************
    GENERAL SECTION
 ****************************************** */
.small-subtitle {
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  color: #fbad18;
  letter-spacing: 0.5px;
}

.big-title {
  font-family: Poppins, sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 30px;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}

.paragraph {
  font-family: var(--kb-body-font), sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  color: #fff;
}

/* ******************************************
    HEADER SECTION
 ****************************************** */
.section__minerva__header {
  min-height: calc(100vh - 60px);
  margin-bottom: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center center;
}
.section__minerva__header--logo {
  max-width: 220px;
  width: 100%;
  margin-bottom: 30px;
}
.section__minerva__header .app__container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.section__minerva__header--actions {
  display: flex;
  gap: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section__minerva__header--actions a {
  font-size: 11px;
  white-space: nowrap;
}
.section__minerva__header--actions a.kb-btn-primary {
  color: #212529;
}

@media screen and (width >= 768px) {
  .section__minerva__header {
    min-height: calc(100vh - 100px);
    margin-bottom: 100px;
  }
  .section__minerva__header--logo {
    max-width: 350px;
  }
  .section__minerva__header--actions {
    flex-direction: row;
  }
}
@media screen and (width >= 1280px) {
  .section__minerva__header--logo {
    max-width: 450px;
  }
}
/* ******************************************
    WINNERS STATIC SECTION
 ****************************************** */
.section__minerva__winners--header {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 30px;
}
.section__minerva__winners--header * {
  margin-bottom: 0 !important;
  line-height: 1 !important;
}
.section__minerva__winners--grid {
  margin-bottom: 10px;
}
.section__minerva__winners--grid-item {
  position: relative;
}
.section__minerva__winners--grid-item .grid-item-details {
  position: absolute;
  bottom: 20px;
  left: 20px;
}
.section__minerva__winners--grid-item h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.section__minerva__winners--grid-item span {
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #fbad18;
}
.section__minerva__winners--grid-item figure {
  height: 250px;
}
.section__minerva__winners--grid-item figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section__minerva__winners--two-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.section__minerva__winners--two-cols article {
  max-width: 600px;
  padding: 20px 0;
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section__minerva__winners--two-cols article h2 {
  font-size: 30px;
}
.section__minerva__winners--two-cols article.content {
  order: -1;
}
.section__minerva__winners--two-cols article img {
  width: 100%;
}

.section__minerva__finalist--grid-item {
  margin-bottom: 2rem;
}
.section__minerva__finalist--grid-item img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  object-position: center center;
}
.section__minerva__finalist--grid-item div {
  display: grid;
  grid-template-columns: 25px 1fr;
  margin-top: 10px;
}
.section__minerva__finalist--grid-item div svg {
  width: 15px;
  height: 20px;
}
.section__minerva__finalist--grid-item div p {
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}
.section__minerva__finalist--grid-item div p span:last-child {
  opacity: 0.5;
  display: block;
}

@media screen and (width >= 768px) {
  .section__minerva__winners--header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 30px;
    align-items: flex-end;
  }
  .section__minerva__winners--grid {
    display: grid;
    grid-template: "first second" 1fr "first third" 1fr/1fr 1fr;
    gap: 10px;
  }
  .section__minerva__winners--grid-item.first-place {
    aspect-ratio: 1/1;
    grid-area: first;
  }
  .section__minerva__winners--grid-item.second-place {
    grid-area: second;
  }
  .section__minerva__winners--grid-item.third-place {
    grid-area: third;
  }
  .section__minerva__winners--grid-item figure {
    height: 100%;
    overflow: hidden;
  }
  .section__minerva__winners--grid-item figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .section__minerva__winners--grid-item h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 42px;
    color: #fff;
  }
  .section__minerva__winners--grid-item span {
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.1em;
    color: #fbad18;
  }
  .section__minerva__winners--grid-item img {
    width: 100%;
    height: auto;
  }
  .section__minerva__finalist--grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
  }
  .section__minerva__finalist--grid article img {
    width: 100%;
  }
  .section__minerva__finalist--grid article div {
    display: grid;
    grid-template-columns: 16px 1fr;
    margin-top: 10px;
  }
  .section__minerva__finalist--grid article div svg {
    width: 8px;
    height: 20px;
  }
  .section__minerva__finalist--grid article div p {
    font-style: normal;
    font-weight: 700;
    font-size: 9px;
    color: #fff;
  }
  .section__minerva__finalist--grid article div p span:last-child {
    opacity: 0.5;
    display: block;
  }
}
@media screen and (width >= 992px) {
  .section__minerva__winners--header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 30px;
    align-items: flex-end;
  }
  .section__minerva__winners--grid {
    gap: 20px;
    margin-bottom: 20px;
  }
  .section__minerva__finalist--grid {
    gap: 20px;
  }
  .section__minerva__finalist--grid article div p {
    font-size: 12px;
  }
}
@media screen and (width >= 1280px) {
  .section__minerva__finalist--grid article div {
    grid-template-columns: 25px 1fr;
  }
  .section__minerva__finalist--grid article div svg {
    width: 12px;
    height: 20px;
  }
  .section__minerva__finalist--grid article div p {
    font-size: 14px;
  }
}
/* ******************************************
    WINNERS IN MOTION SECTION
 ****************************************** */
.in--motion {
  margin: 120px 0;
}
.in--motion .section__minerva__winners--grid .section__minerva__winners--inmotion--grid-item {
  position: relative;
  height: fit-content;
  cursor: pointer;
  margin-bottom: 2rem;
}
.in--motion .section__minerva__winners--grid .section__minerva__winners--inmotion--grid-item figure {
  height: 250px;
}
.in--motion .section__minerva__winners--grid .section__minerva__winners--inmotion--grid-item figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.in--motion .section__minerva__winners--grid .section__minerva__winners--inmotion--grid-item:first-child {
  grid-column: 1/3;
}
.in--motion .section__minerva__winners--grid .section__minerva__winners--inmotion--grid-item .grid-item-details {
  position: absolute;
  bottom: 20px;
  left: 20px;
}
.in--motion .section__minerva__winners--grid .section__minerva__winners--inmotion--grid-item .grid-item-details h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.in--motion .section__minerva__winners--grid .section__minerva__winners--inmotion--grid-item .grid-item-details span {
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #fbad18;
}
.in--motion .section__minerva__finalist--grid-item {
  cursor: pointer;
}

@media screen and (width >= 768px) {
  .in--motion {
    margin: 120px 0;
  }
  .in--motion .section__minerva__winners--grid {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .in--motion .section__minerva__winners--grid .section__minerva__winners--inmotion--grid-item {
    position: relative;
    height: fit-content;
    cursor: pointer;
    margin-bottom: 0;
  }
  .in--motion .section__minerva__winners--grid .section__minerva__winners--inmotion--grid-item figure {
    height: 350px;
  }
  .in--motion .section__minerva__winners--grid .section__minerva__winners--inmotion--grid-item figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .in--motion .section__minerva__winners--grid .section__minerva__winners--inmotion--grid-item:first-child {
    grid-column: 1/3;
  }
  .in--motion .section__minerva__winners--grid .section__minerva__winners--inmotion--grid-item .grid-item-details h2 {
    font-size: 34px;
  }
  .in--motion .section__minerva__winners--grid .section__minerva__winners--inmotion--grid-item .grid-item-details span {
    font-size: 15px;
  }
  .in--motion .section__minerva__finalist--grid-item {
    cursor: pointer;
  }
}
@media screen and (width >= 992px) {
  .in--motion .section__minerva__winners--grid {
    gap: 20px;
    margin-bottom: 20px;
  }
}
@media screen and (width >= 1280px) {
  .section__minerva__finalist--grid article div {
    grid-template-columns: 25px 1fr;
  }
  .section__minerva__finalist--grid article div svg {
    width: 12px;
    height: 20px;
  }
  .section__minerva__finalist--grid article div p {
    font-size: 16px;
  }
  .in--motion .section__minerva__winners--grid .section__minerva__winners--inmotion--grid-item .grid-item-details h2 {
    font-size: 42px;
  }
}
/* ******************************************
    WINNERS CONTENT SECTION
 ****************************************** */
.section__minerva__winners--content {
  margin: 40px 0;
}
.section__minerva__winners--content--social a {
  color: transparent;
}
.section__minerva__winners--content--social a img {
  width: 25px;
  margin: 5px;
}
.section__minerva__winners--content article {
  text-align: left;
}
.section__minerva__winners--content article h4 {
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  margin-bottom: 20px;
  letter-spacing: 0.3em;
  color: #fbad18;
  text-transform: uppercase;
}
.section__minerva__winners--content article h2 {
  font-style: normal;
  font-weight: 800;
  font-size: 30px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 20px;
}
.section__minerva__winners--content article p {
  font-family: var(--kb-body-font);
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #fff;
}

@media screen and (width >= 768px) {
  .section__minerva__winners--content {
    margin: 120px 0;
  }
  .section__minerva__winners--content article {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
  }
  .section__minerva__winners--content h2 {
    font-size: 40px;
  }
}
/* ******************************************
    WINNERS TWO COLUMNS CONTENT SECTION
 ****************************************** */
@media screen and (width >= 1024px) {
  .section__minerva__winners--two-cols {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .section__minerva__winners--two-cols article {
    padding: 0;
    max-width: none;
  }
  .section__minerva__winners--two-cols article h2 {
    font-size: 40px;
  }
  .section__minerva__winners--two-cols article.content {
    order: initial;
  }
  .section__minerva__winners--two-cols.left article {
    text-align: left;
  }
  .section__minerva__winners--two-cols.right {
    grid-column: revert;
  }
  .section__minerva__winners--two-cols.right article {
    text-align: right;
  }
}
/* ******************************************
    OVERWRITES
 ****************************************** */
@media screen and (width <= 768px) {
  [class*=minerva-winners] .page__mtm--phase-content article h1,
  [class*=minerva-winners] #training-section h1 {
    font-size: 30px;
  }
}
@media screen and (width >= 920px) {
  [class*=minerva-winners] .page__mtm--training-list {
    gap: 30px;
  }
}

.kbds-docs {
  margin: 50px;
}
.kbds-docs__intro {
  margin-bottom: 2rem;
}
.kbds-docs__intro h1 {
  margin-bottom: 1rem;
}
.kbds-docs__subsection {
  margin: 2rem 0;
  padding: 2rem;
  background: var(--kb-color-neutral-900);
  border-radius: 15px;
}
.kbds-docs__subsection h3 {
  margin-bottom: 1rem;
}

.kbds-doc-typography {
  margin: 0 0 20px;
}
.kbds-doc-typography__variants {
  margin: 2rem 0;
}
.kbds-doc-typography__variants--modifiers {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.kbds-doc-typography__variant {
  margin: 0 0 2rem;
  list-style: none;
}
.kbds-doc-typography__computed {
  font-size: 11px;
  display: flex;
  gap: 0.5rem;
}
.kbds-doc-typography__computed li {
  --inactive: rgb(255 255 255 / 30%);
  --active: var(--kb-color-white);
  list-style: none;
  color: var(--inactive);
  transition: color 300ms ease;
}
.kbds-doc-typography__computed li:nth-child(1)::before {
  content: "Desktop: ";
}
.kbds-doc-typography__computed li:nth-child(2)::before {
  content: "Tablet: ";
}
.kbds-doc-typography__computed li:nth-child(3) {
  color: var(--active);
  font-weight: bold;
}
.kbds-doc-typography__computed li:nth-child(3)::before {
  content: "Mobile: ";
}
@media screen and (min-width: 768px) {
  .kbds-doc-typography__computed li:nth-child(3) {
    color: var(--inactive);
    font-weight: normal;
  }
  .kbds-doc-typography__computed li:nth-child(2) {
    color: var(--active);
    font-weight: bold;
  }
}
@media screen and (min-width: 992px) {
  .kbds-doc-typography__computed li:nth-child(2) {
    color: var(--inactive);
    font-weight: normal;
  }
  .kbds-doc-typography__computed li:nth-child(1) {
    color: var(--active);
    font-weight: bold;
  }
}

.kbds-doc-buttons__items {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}
.kbds-doc-buttons__item {
  flex-grow: 1;
  margin: 1rem 0;
}

.kbds-doc-tokens__colors {
  margin: 1rem 0 5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.kbds-doc-tokens__swatch {
  padding: 0.75rem;
  border-radius: 10px;
  background: linear-gradient(45deg, var(--kb-color-neutral-800) 25%, transparent 0), linear-gradient(45deg, transparent 75%, var(--kb-color-neutral-800) 0), linear-gradient(45deg, transparent 75%, var(--kb-color-neutral-800) 0), linear-gradient(45deg, var(--kb-color-neutral-800) 25%, transparent 0);
  background-size: 8px 8px;
  background-position: 0 0, 0 0, -4px -4px, 4px 4px;
  margin-bottom: 0.5rem;
}
.kbds-doc-tokens__render {
  display: block;
  width: 100%;
  height: 50px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.kbds-doc-tokens__render div {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  background: rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  font-weight: bold;
  color: #fff;
  transition: opacity 200ms ease;
}
.kbds-doc-tokens__render:hover div {
  opacity: 1;
}

.kbds-doc-cards__demo {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.kb-code {
  background: rgba(0, 0, 0, 0.9);
  color: var(--kb-color-white);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  margin: 2rem 0;
  padding: 1.5rem 2rem;
}
.kb-code code {
  margin: 0;
  padding: 0;
}

.force-css-update {
  border: 1px solid red;
}

.kb-ugc-gallery {
  padding: 50px 0;
}
@media screen and (min-width: 992px) {
  .kb-ugc-gallery {
    padding: 100px 0;
  }
}
.kb-ugc-gallery__title {
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 992px) {
  .kb-ugc-gallery__title {
    margin-bottom: 3.5rem;
  }
}
.kb-ugc-gallery .cevoid-filter-button.cevoid-active {
  font-weight: bold;
}
.kb-ugc-gallery #cevoid-container .cevoid-filter-button {
  align-items: center;
  justify-content: center;
  appearance: none;
  background: none;
  border: 1px solid var(--kb-color-brand-500);
  border-radius: 6px;
  padding: 1rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  color: var(--kb-color-brand-500);
  transition: background 250ms ease, color 250ms ease;
}
.kb-ugc-gallery #cevoid-container .cevoid-filter-button:hover, .kb-ugc-gallery #cevoid-container .cevoid-filter-button.cevoid-active {
  background: var(--kb-color-brand-500);
  color: var(--kb-color-black);
}
.kb-ugc-gallery #cevoid-container .cevoid-filter-button:hover div, .kb-ugc-gallery #cevoid-container .cevoid-filter-button.cevoid-active div {
  background-color: var(--kb-color-black);
}
.kb-ugc-gallery #cevoid-container .cevoid-filter-button:hover div span, .kb-ugc-gallery #cevoid-container .cevoid-filter-button.cevoid-active div span {
  color: var(--kb-color-brand-500);
}
.kb-ugc-gallery #cevoid-container .cevoid-filter-button div {
  background-color: var(--kb-color-brand-500);
  min-width: 0;
  padding: 0;
  width: 25px;
  height: 16px;
  transition: background 250ms ease, color 250ms ease;
}
.kb-ugc-gallery #cevoid-container .cevoid-filter-button div span {
  display: inline-block;
  font-size: 0.7rem;
  line-height: 0.7rem;
  transition: background 250ms ease, color 250ms ease;
}
.kb-ugc-gallery #cevoid-container .cevoid-load-more-button {
  --cevoid-load-more-button-color: var(--kb-color-brand-500);
  background: none;
  border: 1px solid var(--kb-color-brand-500);
  border-radius: 6px;
  padding: 1rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  height: auto;
  text-transform: uppercase;
  transition: background 250ms ease, color 250ms ease;
}
.kb-ugc-gallery #cevoid-container .cevoid-load-more-button:hover, .kb-ugc-gallery #cevoid-container .cevoid-load-more-button.cevoid-active {
  opacity: 1;
  background: var(--kb-color-brand-500);
  --cevoid-load-more-button-color: var(--kb-color-black);
}

.hp-section-callout {
  --accent-offset: 110px;
  --collection-offset: 100px;
  position: relative;
  background: transparent center/cover no-repeat;
}
.hp-section-callout--has-accent-image {
  margin-top: 100px;
  margin-bottom: 75px;
}
@media screen and (min-width: 768px) {
  .hp-section-callout--has-accent-image {
    margin-top: calc(150px + var(--accent-offset));
    margin-bottom: calc(150px + var(--accent-offset));
  }
}
.hp-section-callout__backdrop {
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .hp-section-callout__backdrop {
    position: absolute;
    inset: 0;
  }
}
.hp-section-callout__backdrop img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.hp-section-callout__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .hp-section-callout__overlay {
    background: radial-gradient(farthest-side at center -150%, transparent 80%, var(--kb-color-black) 125%), linear-gradient(to top, var(--kb-color-black) 0, var(--kb-color-black) 10%, transparent 40%);
  }
}
.hp-section-callout__accent-wrapper {
  position: absolute;
  inset: 0;
}
.hp-section-callout__accent {
  position: absolute;
  top: 0;
  right: 5%;
  width: 90%;
  height: auto;
  object-fit: cover;
  z-index: 1;
  transform: translateY(-50px);
}
@media screen and (min-width: 768px) {
  .hp-section-callout__accent {
    top: auto;
    bottom: 0;
    right: 0;
    width: 600px;
    height: 600px;
  }
}
.hp-section-callout__inner {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .hp-section-callout__inner {
    text-align: left;
    text-shadow: 0 0 30px var(--kb-color-black), 0 0 40px var(--kb-color-black), 0 0 50px var(--kb-color-black);
  }
}
.hp-section-callout__intro {
  display: block;
}
.hp-section-callout__title {
  margin: 7px 0;
}
@media screen and (min-width: 768px) {
  .hp-section-callout__title {
    margin: 20px 0;
  }
}
.hp-section-callout__items {
  margin: 25px calc(50% - 50vw) 0 !important;
}
@media screen and (min-width: 768px) {
  .hp-section-callout__items {
    transform: translateY(var(--collection-offset));
  }
}
@media screen and (min-width: 992px) {
  .hp-section-callout__items {
    margin: inherit !important;
  }
}
.hp-section-callout__item {
  aspect-ratio: 1/1;
  border-radius: 3px;
  overflow: hidden;
  transition: border var(--hp-hover-animation-duration) ease;
  transition-property: border, transform !important;
}
.hp-section-callout__item--static {
  border: 1px solid var(--kb-color-neutral-700);
}
.hp-section-callout__item--static:hover {
  border: 1px solid var(--kb-color-brand-500);
}
.hp-section-callout__item img {
  object-fit: cover;
  object-position: center bottom;
}
@media screen and (min-width: 768px) {
  .hp-section-callout__item img {
    transition: transform var(--hp-hover-animation-duration) ease;
  }
  .hp-section-callout__item:hover img {
    transform: scale(var(--hp-hover-scale-amount));
  }
}

.hp-cargo-callout {
  text-align: center;
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .hp-cargo-callout {
    margin-top: 100px;
  }
}
.hp-cargo-callout__text {
  margin: 0 0 30px;
}
.hp-cargo-callout__title {
  margin: 0 0 10px;
}
.hp-cargo-callout__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.hp-cta-callout {
  text-align: center;
  margin: 50px 0;
}
@media screen and (min-width: 768px) {
  .hp-cta-callout {
    margin: 100px 0;
  }
}
.hp-cta-callout__title {
  margin-bottom: 2.25rem;
}
.hp-cta-callout__title span {
  display: block;
  margin-bottom: 1rem;
}
.hp-cta-callout__cta {
  display: inline-flex;
  align-items: center;
  background: var(--kb-color-brand-500);
  color: var(--kb-color-black);
  text-decoration: none;
  padding: 15px 50px;
  gap: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  line-height: 1;
  border-radius: 4px;
  transition: color 250ms ease, background 250ms ease;
}
.hp-cta-callout__cta:hover {
  color: var(--kb-color-white);
  background: var(--kb-color-brand-500-darker);
}

.hp-cevoid {
  --hp-cevoid-gradient-color: var(--kb-color-black);
  position: relative;
  margin: 50px auto 0;
  text-wrap: balance;
  max-height: 800px;
  overflow: hidden;
}
.hp-cevoid::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 300px;
  background: linear-gradient(to bottom, transparent 0%, var(--hp-cevoid-gradient-color) 90%);
  z-index: 10;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .hp-cevoid {
    margin: 100px auto;
    max-height: 1300px;
  }
}
.hp-cevoid__title {
  margin: 0.5rem 0 3rem;
}
.hp-cevoid__gallery {
  position: relative;
  margin: 5rem 0 0.5rem;
}
.hp-cevoid__cta {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 20;
}

#cevoid-upload-portal .modal-close-button {
  color: black;
}

body.index {
  --hp-hover-animation-duration: 300ms;
  --hp-hover-scale-amount: 1.03;
}

.kb-user-flows {
  max-width: 320px;
  margin: 7rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.kb-user-flows > * {
  width: 100%;
}
.kb-user-flows__intro-text {
  color: var(--kb-color-white);
  text-wrap: balance;
}
.kb-user-flows__intro-text::after {
  content: "";
  display: block;
  background: var(--kb-color-neutral-700);
  width: 70%;
  height: 2px;
  margin: 2rem auto 0;
}
.kb-user-flows__form-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.kb-user-flows__form-link {
  font-weight: bold;
  text-decoration: none;
  color: var(--kb-color-neutral-400);
  padding-bottom: 7px;
  transition: color 250ms ease;
}
.kb-user-flows__form-link:hover {
  color: var(--kb-color-white);
}
.kb-user-flows.sign-up .kb-user-flows__form-link--sign-up {
  color: var(--kb-color-white);
  border-bottom: 1px solid var(--kb-color-brand-500);
}

.kb-user-flows.sign-in .kb-user-flows__form-link--sign-in {
  color: var(--kb-color-white);
  border-bottom: 1px solid var(--kb-color-brand-500);
}

.kb-user-flows__form-errors {
  margin-top: 1rem;
  color: rgb(185, 0, 0);
}
.kb-user-flows__form-errors p {
  color: rgb(185, 0, 0);
  font-size: 0.875rem;
}
.kb-user-flows__form-errors ul {
  margin-left: 1rem;
  font-size: 0.75rem;
}

.kb-user-flows-form__input-codes {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.kb-user-flows-form__input-code {
  background: none;
  height: 45px;
  width: 45px;
  border: 1px solid var(--kb-color-neutral-700);
  font-size: 16px;
  text-align: center;
  color: var(--kb-color-white);
  transition: border 250ms ease;
}
.kb-user-flows-form__input-code:focus {
  outline: none;
  border-color: var(--kb-color-brand-500);
}
.kb-user-flows-form--sign-up, .kb-user-flows-form--sign-in {
  display: none;
}
.kb-user-flows.sign-up .kb-user-flows-form--sign-up {
  display: block;
}

.kb-user-flows.sign-in .kb-user-flows-form--sign-in {
  display: block;
}

.kb-user-flows-form__fields {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.kb-user-flows-form__field {
  font-family: var(--kb-font);
  width: 100%;
  border: 1px solid var(--kb-color-neutral-700);
  border-radius: 5px;
  background: transparent;
  padding: 0.625rem;
  color: var(--kb-color-white);
  transition: border 250ms ease;
}
.kb-user-flows-form__field:focus {
  outline: none;
  border-color: var(--kb-color-brand-500);
}
.kb-user-flows-form__field::placeholder {
  color: var(--kb-color-white);
}
.kb-user-flows-form__field--checkbox {
  display: flex;
  color: var(--kb-color-white);
  align-items: center;
}
.kb-user-flows-form__field--checkbox input {
  position: relative;
}
.kb-user-flows-form__field--checkbox input::before {
  content: "";
  display: inline-block;
  vertical-align: text-top;
  width: 17px;
  height: 17px;
  border: 1px solid var(--kb-color-neutral-700);
  border-radius: 5px;
  background: transparent;
  transition: background 250ms ease;
}
.kb-user-flows-form__field--checkbox input::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 3px;
  bottom: 0;
  width: 4px;
  height: 9px;
  background: transparent;
  border-bottom: 2px solid var(--kb-color-black);
  border-right: 2px solid var(--kb-color-black);
  transform: rotate(45deg);
}
.kb-user-flows-form__field--checkbox input:checked::before {
  background: var(--kb-color-brand-500);
}
.kb-user-flows-form__field--checkbox label {
  margin-left: 0.875rem;
}
.kb-user-flows-form__button-subtext {
  cursor: pointer;
  margin-top: 0.5rem;
  padding: 0.5rem 0;
  color: var(--kb-color-neutral-500);
  transition: color 250ms ease;
}
.kb-user-flows-form__button-subtext:hover {
  color: var(--kb-color-white);
}

.kb-cargo-download {
  position: relative;
  background: radial-gradient(circle at center 60%, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.15) 20%, rgba(0, 0, 0, 0) 50%);
}
@media screen and (min-width: 768px) {
  .kb-cargo-download::after {
    content: "";
    display: block;
    width: 100%;
    height: 50px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, var(--kb-color-black) 100%);
  }
}
.kb-cargo-download__intro {
  padding-top: 100px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-direction: column;
}
@media screen and (min-width: 992px) {
  .kb-cargo-download__intro {
    flex-direction: row;
    align-items: center;
    padding-top: 200px;
  }
}
.kb-cargo-download__heading {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--kb-color-neutral-700);
}
@media screen and (min-width: 992px) {
  .kb-cargo-download__heading {
    flex-basis: 0;
    margin: 0;
    border-bottom: 0;
    border-right: 2px solid var(--kb-color-neutral-700);
    padding-right: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .kb-cargo-download__heading {
    padding-right: 100px;
  }
}
.kb-cargo-download__ctas {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .kb-cargo-download__ctas {
    flex-direction: row;
  }
}
@media screen and (min-width: 992px) {
  .kb-cargo-download__ctas {
    padding-left: 50px;
    gap: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .kb-cargo-download__ctas {
    padding-left: 75px;
  }
}
.kb-cargo-download__cta {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex-basis: 100%;
}
.kb-cargo-download__cta svg {
  margin-right: 0.75rem;
  width: 15px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .kb-cargo-download__cta {
    padding: 27px 0;
    max-width: 300px;
  }
}
.kb-cargo-download__cta--windows .kb-cargo-download__cta-subheading {
  color: var(--kb-color-neutral-400);
}
.kb-cargo-download__cta--mac .kb-cargo-download__cta-subheading {
  color: var(--kb-color-brand-500);
}
.kb-cargo-download__hero-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.homepage-features-blocks {
  max-width: 1310px;
  margin: 0 auto;
}

.homepage-features-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  color: var(--kb-color-white);
  padding: 40px 20px;
  text-align: center;
}
@media screen and (width >= 992px) {
  .homepage-features-block {
    flex-direction: row;
    text-align: left;
    gap: 160px;
    padding: 40px 80px;
  }
}
.homepage-features-block__heading {
  text-transform: capitalize;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  font-family: var(--kb-font-header);
  line-height: 1.2;
}
@media screen and (width >= 1200px) {
  .homepage-features-block__heading {
    font-size: 48px;
  }
}
.homepage-features-block__description {
  margin: 20px 0 40px;
  font-size: 16px;
  line-height: 1.8;
}
@media screen and (width >= 992px) {
  .homepage-features-block__description {
    margin: 40px 0;
  }
}
.homepage-features-block__video {
  order: 1;
  width: 100%;
}
@media screen and (width >= 992px) {
  .homepage-features-block__video {
    width: 42%;
  }
}
.homepage-features-block__text {
  order: 2;
  text-wrap: balance;
}
@media screen and (width >= 992px) {
  .homepage-features-block:nth-child(odd) .homepage-features-block__text {
    order: 1;
  }
  .homepage-features-block:nth-child(odd) .homepage-features-block__video {
    order: 2;
  }
}

.homepage-customer-slider {
  position: relative;
  background: var(--kb-color-black);
  overflow: hidden;
  padding: 20px 0;
  user-select: none;
  --logo-count: 12;
  --logo-width: 70px;
  --logo-height: 35px;
  --gap: 15px;
  --total-width: var(--logo-width) * var(--logo-count);
  --gap-compensation: var(--logo-count) * var(--gap);
  --offset: calc((-1 * var(--total-width)) - (var(--gap-compensation)));
}
@media screen and (min-width: 768px) {
  .homepage-customer-slider {
    padding: 40px 0;
    --logo-width: 100px;
    --logo-height: 55px;
    --gap: 40px;
  }
}
@media screen and (min-width: 992px) {
  .homepage-customer-slider {
    padding: 65px 0;
    --logo-width: 125px;
    --logo-height: 65px;
    --gap: 85px;
  }
}
.homepage-customer-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--kb-color-black) 0%, transparent 15%, transparent 85%, var(--kb-color-black) 100%);
}
.homepage-customer-slider__intro-text {
  margin-bottom: 2rem;
  padding: 0 2rem;
}
.homepage-customer-slider__items {
  display: flex;
  align-items: center;
  gap: var(--gap);
  color: var(--kb-color-white);
  list-style: none;
  animation: customer-slider 30s linear infinite;
}
@keyframes customer-slider {
  0% {
    transform: translate(0);
  }
  100% {
    transform: translate(var(--offset));
  }
}
.homepage-customer-slider__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: var(--logo-width);
  height: var(--logo-height);
  transition: width 200ms ease, height 200ms ease;
}
.homepage-customer-slider__item img {
  display: block;
  width: auto;
  height: 100%;
}

.hp-kit-genres {
  margin: 5rem 0;
}
.hp-kit-genres__cta {
  margin-top: 1rem;
}
.hp-kit-genres__items {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
  list-style: none;
  justify-content: center;
}
@media screen and (min-width: 992px) {
  .hp-kit-genres__items {
    gap: 2rem;
  }
}
.hp-kit-genres__items:hover .hp-kit-genres__item {
  opacity: 0.5;
}
.hp-kit-genres__items:hover .hp-kit-genres__item:hover {
  opacity: 1;
}
.hp-kit-genres__items:hover .hp-kit-genres__item:hover::before {
  transform: scale(0.9);
}
.hp-kit-genres__items:hover .hp-kit-genres__item:hover .hp-kit-genres__image {
  transform: translateY(-10px);
}
.hp-kit-genres__items:hover .hp-kit-genres__item:hover .hp-kit-genres__image-overlay::after {
  opacity: 1;
}
.hp-kit-genres__items:hover .hp-kit-genres__item:hover .hp-kit-genres__title {
  transform: translateY(-15px);
}
.hp-kit-genres__item {
  position: relative;
  aspect-ratio: 1/1;
  transition: opacity 300ms ease;
  width: 45%;
}
@media screen and (min-width: 768px) {
  .hp-kit-genres__item {
    width: 25%;
  }
}
@media screen and (min-width: 992px) {
  .hp-kit-genres__item {
    width: calc(16.6% - 2rem);
  }
}
.hp-kit-genres__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(0.99);
  border: 1px solid var(--kb-color-brand-500);
  transition: transform 500ms ease;
}
.hp-kit-genres__image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hp-kit-genres__image-overlay::before, .hp-kit-genres__image-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 500ms linear;
}
.hp-kit-genres__image-overlay::before {
  background: linear-gradient(to bottom, rgba(24, 24, 24, 0) 0%, rgba(24, 24, 24, 0.8) 80%, rgb(24, 24, 24) 95%);
  opacity: 1;
}
.hp-kit-genres__image-overlay::after {
  background: linear-gradient(to bottom, rgba(var(--kb-color-black-rgb), 0%) 0%, rgba(var(--kb-color-black-rgb), 80%) 80%, rgba(var(--kb-color-black-rgb), 100%) 95%);
  opacity: 0;
}
.hp-kit-genres__link {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
}
.hp-kit-genres__image {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  object-position: center top;
  object-fit: cover;
  width: 100%;
  height: calc(100% + 20px);
  transform: translateY(0);
  transition: transform 600ms ease;
}
.hp-kit-genres__title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0.75rem;
  text-align: center;
  transition: transform 700ms ease 100ms;
  z-index: 2;
}

.hp-supported-software {
  position: relative;
  margin: 8rem 0;
  background: url("./homepage-software-grid-bg.png") center bottom/cover no-repeat;
  z-index: 1;
}
.hp-supported-software::before {
  position: absolute;
  inset: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, var(--kb-color-black) 60%);
}
.hp-supported-software > * {
  position: relative;
  z-index: 1;
}
.hp-supported-software__items {
  margin-top: 6rem;
  padding-bottom: 6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  justify-content: center;
  align-items: center;
  list-style: none;
}
@media screen and (min-width: 768px) {
  .hp-supported-software__items {
    gap: 3.8rem 5rem;
  }
}
.hp-supported-software__image {
  display: block;
  width: auto;
  height: 40px;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .hp-supported-software__image {
    height: 59px;
  }
}

.hp-testimonials {
  --line-spacer: 4.5rem;
  padding: 5rem 0;
  background: var(--kb-color-neutral-900);
}
.hp-testimonials__quote {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0 0 4rem;
}
.hp-testimonials__quote:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 992px) {
  .hp-testimonials__quote {
    display: grid;
    grid-template-columns: auto 1fr;
    padding: 2rem;
    margin: 0;
  }
}
.hp-testimonials__source {
  position: relative;
  padding-top: 1.25rem;
}
.hp-testimonials__source::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 1px;
  background: var(--kb-color-neutral-600);
}
@media screen and (min-width: 992px) {
  .hp-testimonials__source {
    padding: 0;
    padding-right: var(--line-spacer);
  }
  .hp-testimonials__source::before {
    left: auto;
    right: 0;
    width: 1px;
    height: 100%;
  }
}
.hp-testimonials__text {
  order: -1;
  padding-bottom: 1.25rem;
  text-wrap: initial !important;
  color: var(--kb-color-neutral-400) !important;
}
@media screen and (min-width: 992px) {
  .hp-testimonials__text {
    order: initial;
    padding: 0;
    padding-left: var(--line-spacer);
  }
}

.hp-email-capture {
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  .hp-email-capture {
    display: flex;
    align-items: center;
    min-height: 885px;
  }
  .hp-email-capture::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(60% 60% at 80% 50%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgb(0, 0, 0) 90%);
    z-index: 2;
  }
}
.hp-email-capture #show-when-submitted {
  display: none;
  margin-top: 2rem;
  max-width: 500px;
}
.hp-email-capture__content {
  position: relative;
  z-index: 2;
}
.hp-email-capture__title {
  max-width: 650px;
  margin-bottom: 1.5rem;
}
.hp-email-capture__description {
  max-width: 500px;
}
.hp-email-capture__image {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 62%;
  background: transparent center/cover no-repeat;
  z-index: 1;
}
.hp-email-capture__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: url("./hp-email-capture--active.png") center/cover no-repeat;
  animation: flicker 5s linear infinite;
}
@media screen and (min-width: 992px) {
  .hp-email-capture__image {
    position: absolute;
    bottom: 0;
    left: 5%;
    height: 100%;
    padding: 0;
    background-position: center left;
  }
  .hp-email-capture__image::after {
    background-position: center left;
  }
}
@media screen and (min-width: 1200px) {
  .hp-email-capture__image {
    left: 15%;
  }
}
.hp-email-capture__input {
  display: inline-block;
  margin-top: 2rem;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 400px;
  padding: 0;
}
.hp-email-capture__input .kb-input {
  padding-right: 3rem;
}
.hp-email-capture__input input {
  height: auto;
  font-size: inherit !important;
  background: none;
}
.hp-email-capture__input .ap3w-form-button {
  margin: 0;
}
.hp-email-capture__submit {
  content: "";
  background: transparent url('data:image/svg+xml,<svg width="22" height="19" viewBox="0 0 22 19" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12.9944 1.50049L11.1715 3.32331L16.0611 8.2129H1V10.787H16.0611L11.1715 15.6766L12.9944 17.4994L21 9.50612L12.9944 1.50049Z" fill="%23AAAAAA" stroke="%23AAAAAA" stroke-width="0.933272"/></svg>') center/cover no-repeat;
  position: absolute;
  top: 50%;
  right: 1rem;
  display: block;
  border: 0;
  appearance: none;
  width: 1rem;
  height: 1rem;
  transform: translateY(-50%);
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.hp-email-capture__submit:hover {
  opacity: 0.8;
}
@keyframes flicker {
  0%, 19.999%, 22%, 44.999%, 47%, 62.999%, 64%, 64.999%, 70%, 100% {
    opacity: 1;
  }
  20%, 21.999%, 45%, 46.999%, 63%, 63.999%, 65%, 69.999% {
    opacity: 0;
  }
}

.lazyframe {
  position: relative;
  background-color: currentColor;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.lazyframe__title {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  padding: 15px 17px;
  z-index: 3;
}

.lazyframe__title::after {
  z-index: -1;
}

.lazyframe:hover {
  cursor: pointer;
}

.lazyframe::before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 100%;
}

.lazyframe[data-ratio="16:9"]::before {
  padding-top: 56.25%;
}

.lazyframe[data-ratio="4:3"]::before {
  padding-top: 75%;
}

.lazyframe[data-ratio="1:1"]::before {
  padding-top: 100%;
}

.lazyframe iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
}

.lazyframe[data-vendor=youtube], .lazyframe[data-vendor=youtube_nocookie] {
  background-color: #e52d27;
  font-family: Roboto, Arial, Helvetica, sans-serif;
}

.lazyframe[data-vendor=youtube] .lazyframe__title, .lazyframe[data-vendor=youtube_nocookie] .lazyframe__title {
  color: #eee;
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: 18px;
  text-shadow: rgba(0, 0, 0, 0.498039) 0 0 2px;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  transition: color 0.1s cubic-bezier(0.4, 0, 1, 1);
}

.lazyframe[data-vendor=youtube] .lazyframe__title:hover, .lazyframe[data-vendor=youtube_nocookie] .lazyframe__title:hover {
  color: #fff;
}

.lazyframe[data-vendor=youtube] .lazyframe__title::before, .lazyframe[data-vendor=youtube_nocookie] .lazyframe__title::before {
  content: "";
  display: block;
  background: linear-gradient(rgba(0, 0, 0, 0.2), transparent);
  height: 98px;
  width: 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.lazyframe[data-vendor=youtube]::before, .lazyframe[data-vendor=youtube_nocookie]::before {
  padding-top: 56.25%;
}

.lazyframe[data-vendor=youtube]::after, .lazyframe[data-vendor=youtube_nocookie]::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 68px;
  height: 48px;
  margin-left: -34px;
  margin-top: -24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%231F1F1F' d='M255.7 446.3c-53.3.3-106.6-.4-159.8-3.3-17.4-1-34.7-2.5-50.4-11C35 426.3 27 418.4 22 407.2 13.2 388.6 10.5 369 9 349c-3.4-41.3-3.6-82.6-1.8-123.8 1-22 1.6-44 6.8-65.5 2-8.4 5-16.6 8.8-24.4C32 117 48 108 67.3 104c16.2-3 32.8-3 49.3-3.7 56-2.3 112-3.5 168-3 43 .6 86.2 1.7 129.3 4 13.2.6 26.6.8 39.3 5.5 17.2 6.4 30 17.2 37 34.7 6.6 16.8 9.2 34.2 10.6 52 3.8 48.7 4 97.3.7 146-1 16.3-2.2 32.7-6.5 48.8-9.7 37-32.8 51.5-66.7 53.8-36.2 2.5-72.5 3.8-108.8 4.3-21.3.2-42.7 0-64 0zM203.2 344L348 264.7l-144.8-79.3V344z'/%3E%3Cpath fill='%23FEFDFD' d='M203.2 344V185.5L348 264.8 203.2 344z'/%3E%3C/svg%3E");
  background-position: center center;
  background-size: 100%;
  background-repeat: no-repeat;
  opacity: 0.81;
  border: none;
  z-index: 4;
}

.lazyframe[data-vendor=youtube]:hover::after, .lazyframe[data-vendor=youtube_nocookie]:hover::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23DD2C28' d='M255.7 446.3c-53.3.3-106.6-.4-159.8-3.3-17.4-1-34.7-2.5-50.4-11C35 426.3 27 418.4 22 407.2 13.2 388.6 10.5 369 9 349c-3.4-41.3-3.6-82.6-1.8-123.8 1-22 1.6-44 6.8-65.5 2-8.4 5-16.6 8.8-24.4C32 117 48 108 67.3 104c16.2-3 32.8-3 49.3-3.7 56-2.3 112-3.5 168-3 43 .6 86.2 1.7 129.3 4 13.2.6 26.6.8 39.3 5.5 17.2 6.4 30 17.2 37 34.7 6.6 16.8 9.2 34.2 10.6 52 3.8 48.7 4 97.3.7 146-1 16.3-2.2 32.7-6.5 48.8-9.7 37-32.8 51.5-66.7 53.8-36.2 2.5-72.5 3.8-108.8 4.3-21.3.2-42.7 0-64 0zM203.2 344L348 264.7l-144.8-79.3V344z'/%3E%3Cpath fill='%23FEFDFD' d='M203.2 344V185.5L348 264.8 203.2 344z'/%3E%3C/svg%3E");
  opacity: 1;
}

.lazyframe[data-vendor=vimeo] {
  background-color: #00adef;
}

.lazyframe[data-vendor=vimeo] .lazyframe__title {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #00adef;
  font-size: 20px;
  font-weight: 700;
  text-rendering: optimizeLegibility;
  user-select: none;
  -webkit-font-smoothing: auto;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0.5);
}

.lazyframe[data-vendor=vimeo]::before {
  padding-top: 48.25%;
}

.lazyframe[data-vendor=vimeo]::after {
  content: "";
  height: 40px;
  width: 65px;
  display: block;
  bottom: 10px;
  left: 10px;
  z-index: 3;
  background-color: rgba(0, 0, 0, 0.5);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' baseProfile='tiny' viewBox='0 0 24 24'%3E%3Cpath fill='%23FFF' d='M7.765 16.89l8.47-4.89-8.47-4.89'/%3E%3C/svg%3E");
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  border-radius: 5px;
  position: relative;
}

.lazyframe[data-vendor=vimeo]:hover::after {
  background-color: #00adef;
}

/**
 * Swiper 11.1.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2024 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: April 9, 2024
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color:#007aff;
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide, .swiper-ios .swiper-slide, .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide {
  transform-style: preserve-3d;
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden, .swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next, .swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next svg, .swiper-button-prev svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
}

.swiper-rtl .swiper-button-next svg, .swiper-rtl .swiper-button-prev svg {
  transform: rotate(180deg);
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-lock {
  display: none;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

.glightbox-container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999 !important;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  outline: 0;
}

.glightbox-container.inactive {
  display: none;
}

.glightbox-container .gcontainer {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: hidden;
}

.glightbox-container .gslider {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.glightbox-container .gslide {
  width: 100%;
  position: absolute;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
}

.glightbox-container .gslide.current {
  opacity: 1;
  z-index: 99999;
  position: relative;
}

.glightbox-container .gslide.prev {
  opacity: 1;
  z-index: 9999;
}

.glightbox-container .gslide-inner-content {
  width: 100%;
}

.glightbox-container .ginner-container {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 100%;
  margin: auto;
  height: 100vh;
}

.glightbox-container .ginner-container.gvideo-container {
  width: 100%;
}

.glightbox-container .ginner-container.desc-bottom, .glightbox-container .ginner-container.desc-top {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.glightbox-container .ginner-container.desc-left, .glightbox-container .ginner-container.desc-right {
  max-width: 100% !important;
}

.gslide iframe, .gslide video {
  outline: 0 !important;
  border: none;
  min-height: 165px;
  -webkit-overflow-scrolling: touch;
  -ms-touch-action: auto;
  touch-action: auto;
}

.gslide:not(.current) {
  pointer-events: none;
}

.gslide-image {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.gslide-image img {
  max-height: 100vh;
  display: block;
  padding: 0;
  float: none;
  outline: 0;
  border: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  max-width: 100vw;
  width: auto;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -ms-touch-action: none;
  touch-action: none;
  margin: auto;
  min-width: 200px;
}

.desc-bottom .gslide-image img, .desc-top .gslide-image img {
  width: auto;
}

.desc-left .gslide-image img, .desc-right .gslide-image img {
  width: auto;
  max-width: 100%;
}

.gslide-image img.zoomable {
  position: relative;
}

.gslide-image img.dragging {
  cursor: -webkit-grabbing !important;
  cursor: grabbing !important;
  -webkit-transition: none;
  transition: none;
}

.gslide-video {
  position: relative;
  max-width: 100vh;
  width: 100% !important;
}

.gslide-video .plyr__poster-enabled.plyr--loading .plyr__poster {
  display: none;
}

.gslide-video .gvideo-wrapper {
  width: 100%;
  margin: auto;
}

.gslide-video::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 0, 0, 0.34);
  display: none;
}

.gslide-video.playing::before {
  display: none;
}

.gslide-video.fullscreen {
  max-width: 100% !important;
  min-width: 100%;
  height: 75vh;
}

.gslide-video.fullscreen video {
  max-width: 100% !important;
  width: 100% !important;
}

.gslide-inline {
  background: #fff;
  text-align: left;
  max-height: calc(100vh - 40px);
  overflow: auto;
  max-width: 100%;
  margin: auto;
}

.gslide-inline .ginlined-content {
  padding: 20px;
  width: 100%;
}

.gslide-inline .dragging {
  cursor: -webkit-grabbing !important;
  cursor: grabbing !important;
  -webkit-transition: none;
  transition: none;
}

.ginlined-content {
  overflow: auto;
  display: block !important;
  opacity: 1;
}

.gslide-external {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-width: 100%;
  background: #fff;
  padding: 0;
  overflow: auto;
  max-height: 75vh;
  height: 100%;
}

.gslide-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: auto;
}

.zoomed .gslide-media {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.desc-bottom .gslide-media, .desc-top .gslide-media {
  margin: 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.gslide-description {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 100%;
  flex: 1 0 100%;
}

.gslide-description.description-left, .gslide-description.description-right {
  max-width: 100%;
}

.gslide-description.description-bottom, .gslide-description.description-top {
  margin: 0 auto;
  width: 100%;
}

.gslide-description p {
  margin-bottom: 12px;
}

.gslide-description p:last-child {
  margin-bottom: 0;
}

.zoomed .gslide-description {
  display: none;
}

.glightbox-button-hidden {
  display: none;
}

.glightbox-mobile .glightbox-container .gslide-description {
  height: auto !important;
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 19px 11px;
  max-width: 100vw !important;
  -webkit-box-ordinal-group: 3 !important;
  -ms-flex-order: 2 !important;
  order: 2 !important;
  max-height: 78vh;
  overflow: auto !important;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.75)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.75) 100%);
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
  padding-bottom: 50px;
}

.glightbox-mobile .glightbox-container .gslide-title {
  color: #fff;
  font-size: 1em;
}

.glightbox-mobile .glightbox-container .gslide-desc {
  color: #a1a1a1;
}

.glightbox-mobile .glightbox-container .gslide-desc a {
  color: #fff;
  font-weight: 700;
}

.glightbox-mobile .glightbox-container .gslide-desc * {
  color: inherit;
}

.glightbox-mobile .glightbox-container .gslide-desc .desc-more {
  color: #fff;
  opacity: 0.4;
}

.gdesc-open .gslide-media {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 0.4;
}

.gdesc-open .gdesc-inner {
  padding-bottom: 30px;
}

.gdesc-closed .gslide-media {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 1;
}

.greset {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.gabsolute {
  position: absolute;
}

.grelative {
  position: relative;
}

.glightbox-desc {
  display: none !important;
}

.glightbox-open {
  overflow: hidden;
}

.gloader {
  height: 25px;
  width: 25px;
  -webkit-animation: lightboxLoader 0.8s infinite linear;
  animation: lightboxLoader 0.8s infinite linear;
  border: 2px solid #fff;
  border-right-color: transparent;
  border-radius: 50%;
  position: absolute;
  display: block;
  z-index: 9999;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 47%;
}

.goverlay {
  width: 100%;
  height: calc(100vh + 1px);
  position: fixed;
  top: -1px;
  left: 0;
  background: #000;
  will-change: opacity;
}

.glightbox-mobile .goverlay {
  background: #000;
}

.gclose, .gnext, .gprev {
  z-index: 99999;
  cursor: pointer;
  width: 26px;
  height: 44px;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.gclose svg, .gnext svg, .gprev svg {
  display: block;
  width: 25px;
  height: auto;
  margin: 0;
  padding: 0;
}

.gclose.disabled, .gnext.disabled, .gprev.disabled {
  opacity: 0.1;
}

.gclose .garrow, .gnext .garrow, .gprev .garrow {
  stroke: #fff;
}

.gbtn.focused {
  outline: 2px solid #0f3d81;
}

iframe.wait-autoplay {
  opacity: 0;
}

.glightbox-closing .gclose, .glightbox-closing .gnext, .glightbox-closing .gprev {
  opacity: 0 !important;
}

.glightbox-clean .gslide-description {
  background: #fff;
}

.glightbox-clean .gdesc-inner {
  padding: 22px 20px;
}

.glightbox-clean .gslide-title {
  font-size: 1em;
  font-weight: 400;
  font-family: arial;
  color: #000;
  margin-bottom: 19px;
  line-height: 1.4em;
}

.glightbox-clean .gslide-desc {
  font-size: 0.86em;
  margin-bottom: 0;
  font-family: arial;
  line-height: 1.4em;
}

.glightbox-clean .gslide-video {
  background: #000;
}

.glightbox-clean .gclose, .glightbox-clean .gnext, .glightbox-clean .gprev {
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 4px;
}

.glightbox-clean .gclose path, .glightbox-clean .gnext path, .glightbox-clean .gprev path {
  fill: #fff;
}

.glightbox-clean .gprev {
  position: absolute;
  top: -100%;
  left: 30px;
  width: 40px;
  height: 50px;
}

.glightbox-clean .gnext {
  position: absolute;
  top: -100%;
  right: 30px;
  width: 40px;
  height: 50px;
}

.glightbox-clean .gclose {
  width: 35px;
  height: 35px;
  top: 15px;
  right: 10px;
  position: absolute;
}

.glightbox-clean .gclose svg {
  width: 18px;
  height: auto;
}

.glightbox-clean .gclose:hover {
  opacity: 1;
}

.gfadeIn {
  -webkit-animation: gfadeIn 0.5s ease;
  animation: gfadeIn 0.5s ease;
}

.gfadeOut {
  -webkit-animation: gfadeOut 0.5s ease;
  animation: gfadeOut 0.5s ease;
}

.gslideOutLeft {
  -webkit-animation: gslideOutLeft 0.3s ease;
  animation: gslideOutLeft 0.3s ease;
}

.gslideInLeft {
  -webkit-animation: gslideInLeft 0.3s ease;
  animation: gslideInLeft 0.3s ease;
}

.gslideOutRight {
  -webkit-animation: gslideOutRight 0.3s ease;
  animation: gslideOutRight 0.3s ease;
}

.gslideInRight {
  -webkit-animation: gslideInRight 0.3s ease;
  animation: gslideInRight 0.3s ease;
}

.gzoomIn {
  -webkit-animation: gzoomIn 0.5s ease;
  animation: gzoomIn 0.5s ease;
}

.gzoomOut {
  -webkit-animation: gzoomOut 0.5s ease;
  animation: gzoomOut 0.5s ease;
}

@-webkit-keyframes lightboxLoader {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes lightboxLoader {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes gfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes gfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes gfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes gfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes gslideInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
  }
  to {
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes gslideInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
  }
  to {
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes gslideOutLeft {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes gslideOutLeft {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
    visibility: hidden;
  }
}
@-webkit-keyframes gslideInRight {
  from {
    opacity: 0;
    visibility: visible;
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes gslideInRight {
  from {
    opacity: 0;
    visibility: visible;
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes gslideOutRight {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
    opacity: 0;
  }
}
@keyframes gslideOutRight {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
    opacity: 0;
  }
}
@-webkit-keyframes gzoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }
}
@keyframes gzoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes gzoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes gzoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@media (min-width: 769px) {
  .glightbox-container .ginner-container {
    width: auto;
    height: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .glightbox-container .ginner-container.desc-top .gslide-description {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .glightbox-container .ginner-container.desc-top .gslide-image, .glightbox-container .ginner-container.desc-top .gslide-image img {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .glightbox-container .ginner-container.desc-left .gslide-description {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .glightbox-container .ginner-container.desc-left .gslide-image {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .gslide-image img {
    max-height: 97vh;
    max-width: 100%;
  }
  .gslide-image img.zoomable {
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
  }
  .zoomed .gslide-image img.zoomable {
    cursor: -webkit-grab;
    cursor: grab;
  }
  .gslide-inline {
    max-height: 95vh;
  }
  .gslide-external {
    max-height: 100vh;
  }
  .gslide-description.description-left, .gslide-description.description-right {
    max-width: 275px;
  }
  .glightbox-open {
    height: auto;
  }
  .goverlay {
    background: rgba(0, 0, 0, 0.92);
  }
  .glightbox-clean .gslide-media {
    -webkit-box-shadow: 1px 2px 9px 0 rgba(0, 0, 0, 0.65);
    box-shadow: 1px 2px 9px 0 rgba(0, 0, 0, 0.65);
  }
  .glightbox-clean .description-left .gdesc-inner, .glightbox-clean .description-right .gdesc-inner {
    position: absolute;
    height: 100%;
    overflow-y: auto;
  }
  .glightbox-clean .gclose, .glightbox-clean .gnext, .glightbox-clean .gprev {
    background-color: rgba(0, 0, 0, 0.32);
  }
  .glightbox-clean .gclose:hover, .glightbox-clean .gnext:hover, .glightbox-clean .gprev:hover {
    background-color: rgba(0, 0, 0, 0.7);
  }
  .glightbox-clean .gprev {
    top: 45%;
  }
  .glightbox-clean .gnext {
    top: 45%;
  }
}
@media (min-width: 992px) {
  .glightbox-clean .gclose {
    opacity: 0.7;
    right: 20px;
  }
}
@media screen and (max-height: 420px) {
  .goverlay {
    background: #000;
  }
}
.pdp-hero {
  display: grid;
  grid-template-columns: 100%;
  overflow: hidden;
}
.pdp-hero .swiper-button-next,
.pdp-hero .swiper-button-prev {
  display: none;
}
@media screen and (min-width: 992px) {
  .pdp-hero .swiper-button-next,
  .pdp-hero .swiper-button-prev {
    display: flex;
  }
}
@media screen and (min-width: 992px) {
  .pdp-hero {
    border-bottom-left-radius: 4rem;
    border-bottom-right-radius: 4rem;
    grid-template-columns: calc(100% - 500px) 500px;
  }
}
.pdp-hero__gallery {
  position: relative;
  border-bottom-left-radius: 4rem;
  border-bottom-right-radius: 4rem;
  overflow: hidden;
}
.pdp-hero__gallery:hover .pdp-hero__thumbnails.swiper-initialized {
  opacity: 1;
  transform: translateY(0);
}
.pdp-hero__slide {
  position: relative;
  aspect-ratio: 4/3;
}
@media screen and (min-width: 992px) {
  .pdp-hero__slide {
    aspect-ratio: 16/9;
  }
}
.pdp-hero__slide img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.pdp-hero__gallery-thumbnail-image {
  cursor: pointer;
}
.pdp-hero__slider {
  height: 100%;
}
.pdp-hero__thumbnails {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  z-index: 1;
  padding: 5px 1rem;
  opacity: 0;
  padding-right: 2px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.pdp-hero__thumbnails.swiper-initialized {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .pdp-hero__thumbnails {
    transform: translateY(200%);
    bottom: 45px;
  }
}
.pdp-hero__thumbnails .pdp-hero__gallery-thumbnail-image {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--kb-color-neutral-800);
  transform-origin: center bottom;
  transition: border 0.3s ease, transform 0.3s ease;
}
.pdp-hero__thumbnails .swiper-slide-thumb-active .pdp-hero__gallery-thumbnail-image {
  border-color: var(--kb-color-brand-500);
  transform: translateY(-5px);
}

.kb-pdp-details {
  display: flex;
  flex-direction: column;
  padding: 2rem 0;
  border-top: 1px solid var(--kb-color-neutral-800);
  gap: 1rem;
}
@media screen and (min-width: 992px) {
  .kb-pdp-details {
    flex-direction: row;
    align-items: flex-start;
    padding: 5rem 0;
    border-top: none;
    gap: 5rem;
  }
}
.kb-pdp-details h1 {
  display: block;
  font-size: 40px;
  line-height: 1.1;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}
@media screen and (min-width: 992px) {
  .kb-pdp-details h1 {
    font-size: 60px;
    width: 50%;
    flex-shrink: 0;
  }
}
.kb-pdp-details * {
  color: var(--kb-color-neutral-400);
  font-size: 1rem;
}

.pdp-collapsible-section {
  --spacing: 2.5rem;
  border-top: 1px solid var(--kb-color-neutral-800);
}
.pdp-collapsible-section:last-of-type {
  border-bottom: 1px solid var(--kb-color-neutral-800);
}
.pdp-collapsible-section.active .pdp-collapsible-section__title::after {
  transform: rotate(45deg) translateY(-50%);
}
.pdp-collapsible-section.active .pdp-collapsible-section__content {
  height: auto;
  opacity: 1;
  padding-bottom: var(--spacing);
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.pdp-collapsible-section__title {
  position: relative;
  padding: var(--spacing) 0;
  padding-right: 60px;
  cursor: pointer;
  transition: color 0.3s ease;
}
.pdp-collapsible-section__title:hover {
  color: var(--kb-color-brand-500);
}
.pdp-collapsible-section__title::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0;
  font-size: 1.75rem;
  font-weight: normal;
  transform: rotate(0deg) translateY(-50%);
  transform-origin: center top;
  transition: transform 500ms ease;
}
.pdp-collapsible-section__content {
  width: 100%;
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  flex: 1 1 auto;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
@media screen and (min-width: 992px) {
  .pdp-collapsible-section__content {
    width: 75%;
    flex-wrap: nowrap;
  }
}
.pdp-collapsible-section--tech-spec .pdp-collapsible-section__content-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .pdp-collapsible-section--tech-spec .pdp-collapsible-section__content-item {
    width: auto;
  }
}
.pdp-collapsible-section--tech-spec .pdp-collapsible-section__content-item p {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.pdp-collapsible-section--tech-spec .pdp-collapsible-section__content-item svg {
  width: auto;
  height: 20px;
}
.pdp-collapsible-section--software .pdp-collapsible-section__content {
  flex-wrap: wrap;
  gap: 4rem;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 992px) {
  .pdp-collapsible-section--software .pdp-collapsible-section__content {
    justify-content: flex-start;
    gap: 5rem;
  }
}
.pdp-collapsible-section--software .pdp-collapsible-section__content-item img {
  display: block;
  width: auto;
  height: 35px;
  object-fit: contain;
}
@media screen and (min-width: 992px) {
  .pdp-collapsible-section--software .pdp-collapsible-section__content-item img {
    height: 45px;
  }
}
.pdp-collapsible-section--credits .pdp-collapsible-section__content-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 45%;
}

.pdp-sticky-cta {
  --nav-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: var(--nav-height);
  left: 2%;
  width: 96%;
  background: rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid var(--kb-color-neutral-800);
  border-bottom-left-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
  overflow: hidden;
  backdrop-filter: blur(5px);
  padding: 1rem 1.5rem;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  z-index: 2;
}
@media screen and (min-width: 992px) {
  .pdp-sticky-cta {
    --nav-height: 63px;
  }
}
@media screen and (min-width: 1400px) {
  .pdp-sticky-cta {
    --nav-height: 75px;
  }
}
.pdp-sticky-cta__logo {
  display: none;
}
.pdp-sticky-cta__price {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}
.pdp-sticky-cta .kb__kit__submit {
  margin-top: 0;
}
.pdp-sticky-cta.active {
  transform: translateY(0);
}
.pdp-sticky-cta__dropdown--desktop {
  display: none;
}
.pdp-sticky-cta__dropdown--mobile {
  display: block;
  margin-left: auto;
}
@media screen and (min-width: 992px) {
  .pdp-sticky-cta {
    left: 5%;
    width: 90%;
    padding: 1.75rem 2rem;
  }
  .pdp-sticky-cta__logo {
    display: block;
    width: auto;
    height: 2rem;
  }
  .pdp-sticky-cta__price {
    width: auto;
  }
  .pdp-sticky-cta__dropdown--desktop {
    display: block;
  }
  .pdp-sticky-cta__dropdown--mobile {
    display: none;
  }
}

.pdp-sidebar {
  position: relative;
  padding: 3rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  z-index: 9;
}
@media screen and (min-width: 992px) {
  .pdp-sidebar {
    justify-content: space-between;
    padding: 3rem 4rem 1rem;
  }
}
.pdp-sidebar__enterprise-form {
  width: 100%;
  gap: 1.5rem;
  margin: 2rem 0 0;
  padding: 0;
}
.pdp-sidebar__enterprise-form .ap3w-form-button {
  margin-top: 0;
}
.pdp-sidebar__enterprise-form .d-flex {
  gap: 1.5rem;
}
.pdp-sidebar__gameready {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.pdp-sidebar__gameready ul {
  margin: 0.5rem 1rem;
}
.pdp-vehicle .pdp-sidebar::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 15%;
  height: 100%;
  background: linear-gradient(to right, transparent, black);
  transform: translateX(-100%);
  z-index: 1;
  pointer-events: none;
}
@media screen and (min-width: 992px) {
  .pdp-vehicle .pdp-sidebar {
    background: #000;
  }
}
.pdp-sidebar__title {
  margin-bottom: 1rem;
}
.pdp-sidebar__kit-logo {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: auto;
  margin-bottom: 1rem;
}
.pdp-sidebar__price {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
.pdp-sidebar__dropdown-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pdp-sidebar__dropdown-title {
  margin-bottom: 0.5rem;
  color: var(--kb-color-neutral-400);
}
.pdp-sidebar__dropdown-modal-trigger {
  appearance: none;
  border: none;
  background: none;
  color: var(--kb-color-brand-500);
  cursor: pointer;
  transition: color 0.3s ease;
}
.pdp-sidebar__dropdown-modal-trigger:hover {
  color: var(--kb-color-brand-600);
}
.pdp-sidebar__dropdown {
  position: relative;
}
.pdp-sidebar__dropdown::after {
  content: "";
  display: block;
  position: absolute;
  top: 20px;
  right: 18px;
  width: 18px;
  height: 18px;
  border: 9px solid transparent;
  border-top: 9px solid var(--kb-color-neutral-400);
}
.pdp-sidebar__dropdown-input {
  appearance: none;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 16px 50px 16px 16px;
  border: 1px solid #494949;
  border-radius: 6px;
  color: white;
  text-transform: uppercase;
  margin: 0;
  min-width: 200px;
  width: 100%;
}
.pdp-sidebar__ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.pdp-sidebar__cta {
  margin-top: 2rem;
}

.pdp-recommended {
  display: none;
  margin: 4rem 0;
  padding: 1rem 0;
}
.pdp-recommended__title {
  margin-bottom: 2rem;
}
.pdp-recommended__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media screen and (min-width: 576px) {
  .pdp-recommended__items {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .pdp-recommended__items {
    grid-template-columns: repeat(6, 1fr);
  }
}
.pdp-recommended__item img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 0 3.4px 21.23px 0 #000;
  transition: transform 0.4s ease;
}
.pdp-recommended__item:hover img {
  transform: translateY(-5px);
}

.pdp-community-spotlight {
  margin: 4rem 0;
}
.pdp-community-spotlight__header {
  margin-bottom: 1.5rem;
  display: flex;
  gap: 1rem;
  flex-direction: column;
}
@media screen and (min-width: 992px) {
  .pdp-community-spotlight__header {
    display: flex;
    gap: 1.5rem;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
  }
  .pdp-community-spotlight__header p {
    text-align: right;
    max-width: 300px;
  }
}

.pdp-vehicle #vehicle-gallery-thumbnails {
  bottom: 5px;
  width: 250px;
  left: calc(50% - 125px);
}
@media screen and (min-width: 768px) {
  .pdp-vehicle #vehicle-gallery-thumbnails {
    bottom: 20px;
    width: 470px;
    left: calc(50% - 235px);
  }
}
.pdp-vehicle .pdp-vehicle-accent-images {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 2rem 0;
}
@media screen and (min-width: 992px) {
  .pdp-vehicle .pdp-vehicle-accent-images {
    gap: 2rem;
  }
}
.pdp-vehicle .pdp-vehicle-accent-images .pdp-vehicle-accent-image {
  width: 100%;
}
.pdp-vehicle .pdp-vehicle-accent-images .pdp-vehicle-accent-image img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 992px) {
  .pdp-vehicle .pdp-vehicle-accent-images .pdp-vehicle-accent-image {
    width: auto;
  }
  .pdp-vehicle .pdp-vehicle-accent-images .pdp-vehicle-accent-image:not(:first-child) {
    width: calc(50% - 1rem);
  }
}
.pdp-vehicle .pdp-vehicle-accent-images:has(.pdp-vehicle-accent-image:nth-child(2):last-child) .pdp-vehicle-accent-image:first-child {
  width: calc(50% - 0.5rem);
}
@media screen and (min-width: 992px) {
  .pdp-vehicle .pdp-vehicle-accent-images:has(.pdp-vehicle-accent-image:nth-child(2):last-child) .pdp-vehicle-accent-image:first-child {
    width: calc(50% - 1rem);
  }
}
.kb__modal .kb__enterprise__licensing .kb__close__enterprise {
  display: none;
}

.pdp-vehicle .error--item__in__cart {
  margin-top: 1rem;
  text-align: center;
  color: red !important;
}

.pdp-models {
  background-color: var(--kb-color-neutral-900);
  margin: 3rem 0;
  padding: 3rem 0;
}
.pdp-models .swiper-button-next,
.pdp-models .swiper-button-prev {
  display: none;
}
@media screen and (min-width: 992px) {
  .pdp-models .swiper-button-next,
  .pdp-models .swiper-button-prev {
    display: flex;
  }
}
.pdp-models .swiper-slide .pdp-models__asset-img {
  display: block;
  width: auto;
  height: calc(100% - 1.5rem);
  margin: 0 auto;
}
.pdp-models__title {
  margin-bottom: 2rem;
}
.pdp-models__asset {
  cursor: pointer;
  background: var(--kb-color-neutral-900);
  aspect-ratio: 1/1;
  box-shadow: inset 0 0 1px 1px var(--kb-color-neutral-800);
  transition: box-shadow 250ms ease;
}
.pdp-models__asset:hover {
  box-shadow: inset 0 0 1px 1px var(--kb-color-brand-500);
}
.pdp-models__asset-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: var(--kb-color-neutral-300);
  text-align: center;
  line-height: 1;
  white-space: nowrap;
  padding: 0.5rem 1rem 1rem;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
}
.pdp-models__asset-modal-image {
  display: block;
  width: 100%;
  height: auto;
}
.pdp-models__asset-modal-title {
  display: block;
  margin-top: 1rem;
}

.kb-cargo .kb-cargo-hero {
  background: linear-gradient(to bottom, var(--kb-color-neutral-900), var(--kb-color-black));
  padding: 6.5rem 0 0;
  text-align: center;
}
.kb-cargo .kb-cargo-hero__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 735px;
  margin: 0 auto;
}
.kb-cargo .kb-cargo-hero__ctas {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
.kb-cargo .kb-cargo-hero__ctas span {
  display: none;
}
@media screen and (min-width: 768px) {
  .kb-cargo .kb-cargo-hero__ctas span {
    display: inline-block;
  }
}
.kb-cargo .kb-cargo-hero-grid-bg {
  position: relative;
  margin: 5rem 0;
  background: linear-gradient(to bottom, rgba(var(--kb-color-black-rgb), 1) 0%, rgba(var(--kb-color-black-rgb), 0.5) 25%, rgba(var(--kb-color-black-rgb), 0.5) 75%, rgba(var(--kb-color-black-rgb), 0.8) 90%, rgba(var(--kb-color-black-rgb), 1) 100%), url("./2025_03_cargo__hero-video-bg.png") center/auto 250% no-repeat;
}
.kb-cargo .kb-cargo-hero-grid-bg__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.kb-cargo .kb-cargo-hero-grid-bg__content .kb-cargo-software {
  order: 2;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .kb-cargo .kb-cargo-hero-grid-bg__content .kb-cargo-software {
    order: initial;
  }
}
.kb-cargo .kb-cargo-video {
  position: relative;
  cursor: pointer;
  max-width: 1400px;
  margin: 3rem auto 0;
}
.kb-cargo .kb-cargo-video iframe {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.8);
  transition: opacity 1.5s ease;
}
.kb-cargo .kb-cargo-video.is-active iframe {
  opacity: 1;
  pointer-events: auto;
}
.kb-cargo .kb-cargo-video.is-active .kb-cargo-video__poster {
  opacity: 0;
}
.kb-cargo .kb-cargo-video:hover .kb-cargo-video__icon {
  color: var(--kb-color-brand-500);
}
.kb-cargo .kb-cargo-video__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12%;
  height: auto;
  transform: translate(-50%, -50%);
  color: white;
  transition: color 0.3s ease;
}
.kb-cargo .kb-cargo-video__icon svg {
  width: 100%;
  height: 100%;
}
.kb-cargo .kb-cargo-video__poster {
  display: block;
  width: 100%;
  height: auto;
  opacity: 1;
  transition: opacity 1.5s ease;
}
.kb-cargo .kb-cargo-features {
  margin: 8rem 0;
}
.kb-cargo .kb-cargo-features__cards {
  display: grid;
  justify-items: center;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}
@media screen and (min-width: 992px) {
  .kb-cargo .kb-cargo-features__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .kb-cargo .kb-cargo-features__cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 992px) {
  .kb-cargo .kb-cargo-features__card:last-child:nth-child(2n+1) {
    grid-column: 1/3;
  }
}
@media screen and (min-width: 1200px) {
  .kb-cargo .kb-cargo-features__card:last-child:nth-child(2n+1) {
    grid-column: auto;
  }
}
.kb-cargo .kb-cargo-features__title {
  margin-bottom: 1rem;
}
.kb-cargo .kb-cargo-pros {
  margin: 7rem 0;
}
.kb-cargo .kb-cargo-pros__cards {
  display: grid;
  justify-items: center;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  max-width: 400px;
  margin: 2rem auto;
}
@media screen and (min-width: 768px) {
  .kb-cargo .kb-cargo-pros__cards {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
    margin: 4rem auto;
  }
}
@media screen and (min-width: 1200px) {
  .kb-cargo .kb-cargo-pros__cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
.kb-cargo .kb-cargo-pros__card {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.kb-cargo .kb-cargo-pros__card-accent {
  display: block;
  width: 100%;
  height: 135px;
  object-fit: cover;
}
.kb-cargo .kb-cargo-pros__card-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 2rem 2.5rem;
  height: 100%;
}
.kb-cargo .kb-cargo-pros__logo {
  width: auto;
  height: 50px;
  object-fit: contain;
}
.kb-cargo .kb-cargo-pros__author {
  margin-top: auto;
}
.kb-cargo .kb-cargo-cta {
  padding: 4rem 0;
  background: radial-gradient(30% 80% at 50% 100%, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 50%, rgba(255, 255, 255, 0) 90%), linear-gradient(to bottom, rgba(var(--kb-color-black-rgb), 1) 0%, rgba(var(--kb-color-black-rgb), 0.9) 30%, rgba(var(--kb-color-black-rgb), 0.7) 95%, rgba(var(--kb-color-black-rgb), 1) 100%), url("./2025_03_cargo__hero-video-bg.png") center/auto 400% no-repeat;
}
.kb-cargo .kb-cargo-cta__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  max-width: 775px;
  margin: 0 auto;
}
.kb-cargo .kb-cargo-cta__logo {
  width: 66px;
  height: auto;
}
.kb-cargo .kb-cargo-cta__buttons {
  display: flex;
  gap: 1rem;
  align-items: stretch;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .kb-cargo .kb-cargo-cta__buttons {
    align-items: center;
    flex-direction: row;
  }
}

.kb-enterprise-hero {
  display: flex;
  padding: 3rem 0 13rem;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}
@media screen and (min-width: 768px) {
  .kb-enterprise-hero {
    padding: 15rem 0;
  }
}
.kb-enterprise-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(var(--kb-color-black-rgb), 0) 0%, rgba(var(--kb-color-black-rgb), 0) 100px, rgba(var(--kb-color-black-rgb), 1) 200px);
}
@media screen and (min-width: 768px) {
  .kb-enterprise-hero::after {
    background: linear-gradient(to right, rgba(var(--kb-color-black-rgb), 1) 0%, rgba(var(--kb-color-black-rgb), 1) 20%, rgba(var(--kb-color-black-rgb), 0) 100%);
  }
}
.kb-enterprise-hero__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: url("./2025_03_enterprise__hero.jpg") center bottom/100% auto no-repeat;
}
@media screen and (min-width: 768px) {
  .kb-enterprise-hero__hero-image {
    left: 20%;
    width: 80%;
    background-size: cover;
  }
}
.kb-enterprise-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 950px;
  gap: 2rem;
}
.kb-enterprise-hero__subheading {
  max-width: 620px;
}

.kb-enterprise-slider {
  background: var(--kb-color-neutral-900);
}
.kb-enterprise-slider__text {
  position: relative;
  margin: 8rem 0 0;
  z-index: 2;
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .kb-enterprise-slider__text {
    grid-template-columns: 0.6fr 0.4fr;
  }
}
@media screen and (min-width: 992px) {
  .kb-enterprise-slider__text {
    grid-template-columns: 0.7fr 0.3fr;
  }
}

.kb-enterprise-why {
  padding: 5rem 0;
}
.kb-enterprise-why__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 2rem 0;
}
@media screen and (min-width: 992px) {
  .kb-enterprise-why__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .kb-enterprise-why__items {
    grid-template-columns: repeat(3, 1fr);
  }
}
.kb-enterprise-why__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.kb-enterprise-why__icon {
  width: 21px;
  height: 21px;
  background: url('data:image/svg+xml,<svg viewBox="0 0 29 28" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M27.8916 14.0296C27.8916 20.7778 22.0116 26.3632 14.6117 26.3632C7.21171 26.3632 1.33177 20.7778 1.33177 14.0296C1.33177 7.28142 7.21171 1.69603 14.6117 1.69603C22.0116 1.69603 27.8916 7.28142 27.8916 14.0296Z" stroke="%23FBAD18" stroke-width="1.99947"/><path fill-rule="evenodd" clip-rule="evenodd" d="M22.001 10.1791L12.5732 19.9847L7.00098 15.3923L9.46974 13.535L12.2716 15.8441L19.2787 8.55615L22.001 10.1791Z" fill="%23FBAD18"/></svg>') center no-repeat;
  border-radius: 50%;
}
.kb-enterprise-why__cta {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  grid-column: 1;
}
@media screen and (min-width: 992px) {
  .kb-enterprise-why__cta {
    grid-column: 1/3;
  }
}
@media screen and (min-width: 1200px) {
  .kb-enterprise-why__cta {
    grid-column: 2/3;
  }
}

.kb-enterprise-cta {
  background: var(--kb-color-neutral-900);
  padding: 5rem 0;
}
.kb-enterprise-cta__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media screen and (min-width: 992px) {
  .kb-enterprise-cta__content {
    grid-template-columns: 0.5fr 0.5fr;
  }
}
.kb-enterprise-cta .kb-enterprise__email-capture-input {
  justify-content: center;
}
.kb-enterprise-cta .kb-enterprise__email-capture-submit {
  flex-grow: 0;
}

.kb-enterprise-form {
  padding: 4rem 0;
}
.kb-enterprise-form .show-when-submitted {
  display: none;
}
.kb-enterprise-form .hide-when-submitted {
  width: 100%;
}
.kb-enterprise-form__content {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}
@media screen and (min-width: 992px) {
  .kb-enterprise-form__content {
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
  }
}
.kb-enterprise-form__text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.kb-enterprise-form__wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem 0 !important;
}
.kb-enterprise-form__wrapper .ap3w-form-input input {
  background: none;
  line-height: 1;
  padding: 1rem 1.5rem !important;
  color: inherit;
  height: auto;
  font-size: inherit !important;
}

.kb-enterprise .show-when-submitted {
  display: none;
}
.kb-enterprise .hide-when-submitted {
  width: 100%;
}
.kb-enterprise__email-capture-input {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
  justify-content: center;
  margin: 0;
  max-width: 500px;
  padding: 0 !important;
}
.kb-enterprise__email-capture-input input {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .kb-enterprise__email-capture-input {
    max-width: none;
    flex-direction: row;
    justify-content: flex-start;
  }
  .kb-enterprise__email-capture-input > * {
    flex-grow: 1;
    flex-shrink: 1;
  }
}
.kb-enterprise .ap3w-form-input input {
  background: none;
  line-height: 1;
  padding: 1rem 1.5rem !important;
  color: inherit;
  height: auto;
  font-size: inherit !important;
}
.kb-enterprise__email-capture-submit {
  margin: 0 !important;
}

.kb-unlimited-hero {
  padding: 5rem 0;
  background: linear-gradient(to bottom, rgba(var(--kb-color-black-rgb), 1) 0%, rgba(var(--kb-color-black-rgb), 0.5) 25%, rgba(var(--kb-color-black-rgb), 0.5) 75%, rgba(var(--kb-color-black-rgb), 0.8) 90%, rgba(var(--kb-color-black-rgb), 1) 100%), url("./2025_03_cargo__hero-video-bg.png") center/auto 250% no-repeat;
}
.kb-unlimited-hero__title {
  margin-bottom: 2rem;
}
.kb-unlimited-hero__subtitle {
  max-width: 700px;
  margin: 0 auto;
}

.kb-unlimited-plans {
  margin: 4rem 0;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .kb-unlimited-plans {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .kb-unlimited-plans {
    grid-template-columns: repeat(3, 1fr);
  }
}

.kb-unlimited-plan {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .kb-unlimited-plan:last-child:nth-child(2n+1) {
    grid-column: 1/3;
  }
}
@media screen and (min-width: 1200px) {
  .kb-unlimited-plan:last-child:nth-child(2n+1) {
    grid-column: auto;
  }
}
.kb-unlimited-plan__description {
  margin-bottom: 1rem;
}
.kb-unlimited-plan__cta {
  margin-top: auto;
}

.kb-unlimited-trusted-by {
  background: var(--kb-color-neutral-900);
  padding: 4rem 0;
}
.kb-unlimited-trusted-by__content {
  display: grid;
}
.kb-unlimited-trusted-by__companies {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin-top: 3rem;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .kb-unlimited-trusted-by__companies {
    margin-top: 2rem;
    gap: 4rem;
  }
}
.kb-unlimited-trusted-by__company {
  height: 40px;
  opacity: 0.6;
}
@media screen and (min-width: 768px) {
  .kb-unlimited-trusted-by__company {
    height: 64px;
    opacity: 1;
  }
}
.kb-unlimited-trusted-by__company img {
  display: block;
  width: auto;
  height: 100%;
  object-fit: contain;
}

.kb-unlimited-features {
  padding: 8rem 0;
  background: linear-gradient(to bottom, rgba(var(--kb-color-black-rgb), 0.8) 0%, rgba(var(--kb-color-black-rgb), 0.8) 100%), url("./2025_03_cargo__hero-video-bg.png") center/auto 250% no-repeat;
}
.kb-unlimited-features__slider-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: stretch;
}
@media (min-width: 992px) {
  .kb-unlimited-features__slider-wrapper {
    grid-template-columns: 0.6fr 0.4fr;
  }
}
@media (min-width: 1200px) {
  .kb-unlimited-features__slider-wrapper {
    grid-template-columns: 0.75fr 0.3fr;
  }
}
.kb-unlimited-features__slider {
  width: 100%;
  aspect-ratio: 596/313;
}
@media (min-width: 992px) {
  .kb-unlimited-features__slider {
    min-height: 450px;
  }
}
@media (min-width: 1200px) {
  .kb-unlimited-features__slider {
    min-height: 500px;
  }
}
.kb-unlimited-features__slider-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.kb-unlimited-features__slider-item img {
  display: block;
  width: 100%;
  height: auto;
}
.kb-unlimited-features__slider-thumbs-item.swiper-slide-thumb-active .kb-unlimited-features__slider-thumbs-item-content div {
  opacity: 1;
  padding-left: 1.5rem;
}
.kb-unlimited-features__slider-thumbs-item.swiper-slide-thumb-active .kb-unlimited-features__slider-thumbs-item-content div::after {
  height: 100%;
  opacity: 1;
  transition: height 3000ms linear, opacity 0.3s ease-in-out;
}
.kb-unlimited-features__slider-thumbs-item-content {
  cursor: pointer;
  padding: 1rem 0 1.75rem;
}
@media (min-width: 992px) {
  .kb-unlimited-features__slider-thumbs-item-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.kb-unlimited-features__slider-thumbs-item-content div {
  position: relative;
  opacity: 0.5;
  padding-left: 0;
  transition: opacity 0.3s ease-in-out, padding-left 0.3s ease-in-out;
}
.kb-unlimited-features__slider-thumbs-item-content div::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0%;
  background: var(--kb-color-white);
  opacity: 0;
  transition: opacity 0.3s ease-in-out, height 250ms linear 0.3s;
}
.kb-unlimited-features__slider-thumb-title {
  margin-bottom: 0.5rem;
}

.kb-unlimited-mini-hero {
  margin: 5rem 0;
  padding: 2rem 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .kb-unlimited-mini-hero {
    grid-template-columns: 0.4fr 0.6fr;
  }
}
@media screen and (min-width: 768px) {
  .kb-unlimited-mini-hero--reverse {
    border: 0;
    grid-template-columns: 0.6fr 0.4fr;
  }
}
.kb-unlimited-mini-hero__text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
  order: -1;
}
@media screen and (min-width: 768px) {
  .kb-unlimited-mini-hero__text {
    order: initial;
  }
}
.kb-unlimited-mini-hero img {
  display: block;
  width: 100%;
  height: auto;
}

.kb-kit-launch-teaser {
  --kb-nav-height: 64px;
  position: relative;
}
@media screen and (width >= 1400px) {
  .kb-kit-launch-teaser {
    --kb-nav-height: 76px;
  }
}
.kb-kit-launch-teaser__hero-video {
  position: relative;
  height: 100vh;
  pointer-events: none;
  overflow: hidden;
}
.kb-kit-launch-teaser__hero-video-iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.kb-kit-launch-teaser__text-overlay {
  position: absolute;
  top: 5vh;
  left: 5vw;
  width: 90vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1vh;
  z-index: 1;
}
@media (min-width: 768px) {
  .kb-kit-launch-teaser__text-overlay {
    left: 20vw;
    width: 60vw;
  }
}
.kb-kit-launch-teaser__logo {
  display: block;
  aspect-ratio: 16/9;
  object-fit: contain;
  width: 100%;
}
@media (min-width: 768px) {
  .kb-kit-launch-teaser__logo {
    height: 45vh;
  }
}
.kb-kit-launch-teaser__tag-line {
  font-size: 2vw;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 5.7px;
  margin: 0 0 2vh;
  color: #f0e4c4;
  text-wrap: balance;
}
@media (min-width: 768px) {
  .kb-kit-launch-teaser__tag-line {
    font-size: 1.25vw;
  }
}
.kb-kit-launch-teaser__countdown--time {
  font-family: Cinzel, serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 11vw;
  line-height: 1;
  color: #b18748;
  background: linear-gradient(#fff2df, #784f00);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .kb-kit-launch-teaser__countdown--time {
    font-size: 6vw;
  }
}
.kb-kit-launch-teaser__countdown--time span {
  display: inline-block;
  min-width: 16vw;
  text-align: center;
}
@media (min-width: 768px) {
  .kb-kit-launch-teaser__countdown--time span {
    min-width: 10vw;
  }
}
.kb-kit-launch-teaser__countdown--time span:last-of-type {
  text-align: left;
  padding-left: 1vw;
}
@media (min-width: 768px) {
  .kb-kit-launch-teaser__countdown--time span:last-of-type {
    padding-left: 1.25vw;
  }
}
.kb-kit-launch-teaser__form .ap3w-form-input input {
  background: none;
  border-radius: 8px;
  padding: 16px 50px 16px 24px !important;
  border: 1px solid var(--kb-color-neutral-700);
  font-size: 16px !important;
  font-weight: 400;
  line-height: 1;
  width: 100%;
  height: auto;
  transition: border 250ms ease;
}
.kb-kit-launch-teaser__form .ap3w-form-input input:focus {
  border-color: #fff;
  outline: none;
}
.kb-kit-launch-teaser__form .ap3w-form-input input::placeholder {
  color: var(--kb-color-neutral-400);
}
.kb-kit-launch-teaser__form .ap3w-form-button {
  margin: 0;
}
.kb-kit-launch-teaser__form--email {
  position: relative;
  width: 25vw;
  min-width: 320px;
}
.kb-kit-launch-teaser__form--email:focus-within .kb-kit-launch-teaser__form--email-submit {
  color: #fff;
}
.kb-kit-launch-teaser__form--email-submit {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: 0;
  color: var(--kb-color-neutral-400);
  transition: color 250ms ease;
  cursor: pointer;
}
.kb-kit-launch-teaser__form--thank-you {
  padding: 0;
  max-width: 20vw;
  text-align: center;
}
.kb-kit-launch-teaser__form--thank-you p {
  text-wrap: balance;
  font-size: 1rem;
}

body[class*=secrets-of-the-luminara],
body[class*=sotl-winners] {
  --sotl-color-accent: #b4a280;
  --sotl-color-text: #f0e4c4;
  --sotl-color-accent-dark: #773f1d;
  --animation-picture-curve: cubic-bezier(0.21, 0.88, 0.68, 0.95);
  --sotl-animation-launch-duration: 2.5s;
  background: #000 url("sotl__page-accent.png") left top/contain fixed no-repeat;
  color: var(--sotl-color-text);
  /* stylelint-disable-next-line selector-id-pattern */
}
body[class*=secrets-of-the-luminara] .app__container.app__footer.color-bg-black,
body[class*=sotl-winners] .app__container.app__footer.color-bg-black {
  background: black;
}
body[class*=secrets-of-the-luminara] #MainContent,
body[class*=sotl-winners] #MainContent {
  overflow: hidden visible;
}
body[class*=secrets-of-the-luminara] .sotl-font,
body[class*=secrets-of-the-luminara] .kbds-faq__title,
body[class*=sotl-winners] .sotl-font,
body[class*=sotl-winners] .kbds-faq__title {
  font-family: "Cinzel Decorative", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  color: var(--sotl-color-accent);
}
body[class*=secrets-of-the-luminara] .sotl-hero,
body[class*=sotl-winners] .sotl-hero {
  position: relative;
  display: flex;
  width: 100%;
  height: 80vh;
  align-items: center;
  transform: translateY(200%);
  justify-content: center;
  animation: page-reveal-in var(--sotl-animation-launch-duration) ease forwards;
}
body[class*=secrets-of-the-luminara] .sotl-hero::before,
body[class*=sotl-winners] .sotl-hero::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  z-index: 1;
}
body[class*=secrets-of-the-luminara] .sotl-hero__bg,
body[class*=sotl-winners] .sotl-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}
body[class*=secrets-of-the-luminara] .sotl-hero__title,
body[class*=sotl-winners] .sotl-hero__title {
  position: relative;
  z-index: 3;
  text-align: center;
}
body[class*=secrets-of-the-luminara] .sotl-hero__title .sotl-font,
body[class*=sotl-winners] .sotl-hero__title .sotl-font {
  background-clip: text;
  -moz-text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAAAXNSR0IArs4c6QAAHyhJREFUeF7t3WdvHel1B/AZkaIoiqJE9bI9DvLCcYIkduA4MRADKd8hthEERuwUOAUIDASBv2nWu+tV7yIpik2a4HnO+T3DvRQlSqJadvnm4pK8M3Pnf+r/lOl/9aOPh67rutnZQ103dN3a+kZ52z1cX6+vt+8v19cLp07U17nDs/X10o1b9fXQzMH6urW1VV/PLB6vr5dv3qmvh2dn6utU39fXB2tx3FPHFurro8eP87VeRndweiqOe3C6vt5ZivPfX1mtr67Dee+tPKi/nzt0qL5euRXn7fN87505Vd/fuHsvjj8Vxz+Z519ejeP6/61HcT1+5vP7Psz7cmx+rv7p9v2l+jrEZXfHj87X1wcP1+rrUh7XP5zO+3IgbkM73628v2fz730DJL/QKwGk77qp7sUAub20XD/5tQHk13/zexXjz69dr8jNHAyJn03Jn5SUSzduh6RNhwTPpCSfO7lY319LCT1+9Eh9P5USubn1qL6fzvePH3sfx0mBbhJ+4ujR+vurt0PiL5w+WV9v3rtfXw/kB7wePRKSu765WV8JFo3YfBTnO5Tfz3Vvpmb7PneXi8YN3ccXztX/f5Sf29jcKgake/DwYf39amrMTGr0iYW4XppE07YmznskNe7Lazfr/8+mBVnfCMvU7wpIufBUr/KPVPdFAClfZOudAWSl3pgnAVJ+v/KqAfmHPzpZNeRI8SHF9j0ICThyON5Dnu2vv6w+4UB95SNWHhZb3HcbmyGJ96ukdd3FM+F7HHf2UPgUEnHq+LGQrPQtbPrW4zDOJH3qQJzv4pnQlNX8/4W50Iy7y+FrTqRvKBJdP5+SVx1k13WP87i37oUPmJ87XP80Pxe+sb7fponH8vjX0wfNH46/Px7C1/B5d5cCyMWF8CV+WIbDM/G9D+T3uL8S/08zWZL+qYAMXbd47GhVlGcDEkA+DyDlFp3eAUg5ztA9NyDF+fd7BaTvbqXpAwALsBOQAkDfvTwgRcCHZwPyj989XUWHJvRpp77MKOrcifANc0Vjhq67fudufS8qGTLMYLshffFUSLLohs1+nP+/9CCim4unIwry9+X8PckTNdEkNnw6fdjRlNjlNCVLy3nc1My7yyGJNIYE+54AWFkNgSpRW7khjitaWpw/UgG/eSc065OL4WPcj0f5vY6mpi2vRrR1OjX2TtHgqomhYSsZjc2lZZpOzen3DEh+8J0DpJiGoTj7rSpq2wGpN94N2gZIuWFMUwMkg5QXBiTD9ycCMpRgJ0xy/+PfP1Y1hISub0SUcjht/YEMnEUZ76VEs9lzh8L2bmS0MmlDRV0PHkb+wQfQLHkIn3DmROQxv7l8rb5+dP5Mfb2f+QYNnM1oyXnZdCaTpN5MXyE+ocluuOsV/X12Jc4raqNx9ZfVx4RvPVY0puu65ZT0E5mHPEoftZk+7NZSaNRCAi/K40tcPw1+LkDqDX0qIH23eOwI/1kv5HkAKTft9NsCSEkAh6577YD89A+OVw15lBmqzFY05Iay4TLn4ykhJYooB3g8RHRFpc+eDEnfyLyABKwmA3D+ZERfd9LGX8w844trN+rvF9NE3EufQCKnUmP5IlEYiZNJf3k9mAQZOSd+9sTxarqErz4nk5Z3XLoZ+VbNc4aue//c6fr+bpoemjBk9DYzHfnbwpHwEZM+9lZm9jSE1BYLU66HD+z3Akj5wMmMhp4ESAX0RQEp4WJfNC+CgJcFZGF+rn7BpwFSziM42BMgXde9f/bVAVKuh4D0v/zBe1VDFo/NV9AepcQ/XF+r2JN4GWW1vf3ICRWJKf9HMlAcMv1evpJx+OpG+JLpA8Ep+RENLaYtBvz5ZABu3I0MnUSy+TRZ1HTqeHBk8pxDeV6+YSrP+zg5ND7tdvqag8k8iLL4uOnMyDED8iqcFsuCSZDXReY/RrFr5fv3XTc/G5rk7yzCCEgmNDLq1fUI254IyLaEyI3bP0AKBTE0UvGVAVISu2EMMl4rINuiuB2A/PP3z1cNWc4MfWRbwyYK02ScayVD7gu7GVEGCfz00tX6fozPg12VcBWSsPzMZfQmOpvKcM95xecyc+9pknwJF/ZwPaLCFrVsBidEAzaSssFZCXPXMpqUB4jyNjYiw184GgzAkdmIIuVHZyc4u/WMLoeMrt4/G3lVudHFdCYZ3HwiAXZ+vvvkseDC+ucFpNDy5UTfABKk59MAIUTllUl6JiD/89e/W0HkTEUHx+eDkyF5jx6F5OBeSLSTisfZ8lIfKcAdzWjsWrK2H50/+5Xj8jm30kfMHgrNpJF8xJnF4Lz4GnUI+ZN6DI1g62n+oTzuqZREErqcCaHzHE021ve8mdeFjZ45mPWd1GwSfjiPT9NKVFhurOiSr0EVibrkfafz+/WvEpCq+g2QEkb23dcJkKpBmSDuBkgRjJp/AeRfvn+hagg2snIuT6gbTErS4ZlD9UDY3s8uX6sS8TvvnQ9bmCIlj6Ha72V4S7N+ez3qAvKaO8mazhwsUVjfbWxsxnEvxnFFWf5PNHftdnBsJybYVpk9iZex30/OjEQLHvxeRu96HWfpQURNEewMXZ8clM/zfaK1z6/EfVHLuHAquMHLN8LkYdVpYP+igMzNBIUAEFTH/gEShSsqvW+ApKfdH0C6rs9EdTdAhNt7BuQn34lMXXT0+ZWoHIp+ZJaPssJX3w9dt5p1Bpm4aKRyUUPJwEPT2HrRlRry+7Wu0XdY5Q8yE8a68gFKiRI5tfSjWae4l3E+k3Aso7+TWcG7nBn3wpGICm8vLYVvy89PVhiFRSTX392HyUpo0bxyvE+Te+O8F7KC+fnVYB5Em3oOrtwKJmCm+J6h6wh4/0KAbCthPhGQbc0JIyBRDxgBifDw+QDpu0MzoTkvCsidJPv2E5ByPSzEcwOSpfIGCPr95EJkuMKyc9llom5BYkU/WODVtUgg/RzJ+oT3KoHyifN5XBJ9NustKmgye76A7+KTvMfmrk3kIVhV519LLu3mncj0W2aeedHJ9DnX70TepHvE98UIYI3PLMZ9ch90mYjuLp4Ojm4l2W1dJjXfGUrvQmgMX4OlXsweglYP2Q5IUcGz3wBSb9y+AlKaSdKE7QrIz/74VPUh/uFwZqb30geI8ysbWriu9CUkXvx/NtnbB1kpu5aVRSpcuJ+IyiIY0Pd1rkQdQ6kshgRjceVBh1Olb2TJVfYr814s+VI/1t7Z/A/ORh3lXtauHY/tVhDCNOCs5EWumy9FIdG886kJLMpscmYYgofpY9VJMpHvVteiMgloTAPN6vcMyPGg03cD5NzJE9Em8xRAyudRFQ2QCfLwWYC4IQ2QJCPR8O88IP/6Z5GH+AkWc+iwrq2PKPMFFUNF//EGRT1EJXAu+434iKuZJ0ynUVVf8Xk2+lhGJyQWByZPEYW1Gn2KngRsrE8Em3wsoyvBhLqKuolM+mpGPXwgSZewychVStVPdK/wXeo9NMD1q62zLHwVTk43TL8TkGgSeN2AlC9WJONFANlOUbzzgPz421lTz3CysJnFTtcKW18qidlzm9zNmYyKSJDo57PLkb9MT0exfmsr+pYupK0VhfR9HE/eQjNolJq4uoa86MDUgXpdOgE1sl1PzdOmVKKvcgZ5yOdXIqrBZUngSLY6B8k9ldHmWrLGjRXOVls+Q4+xvi9hNF/86eVgv2miCiMOkMa7PhXWfhKQ4gtqvpBOtB3oDQPCue4FkHIj0PQvBUhpPs+wWdi6E5BScOtbXvTSgMhDNlOixfe63ie7SNh8X1imjONRbxBVnCpxe+nnSklW4759P6Kq0r9UJP+T5KruJ1fk/Liq6uyHrsMG661VA289uxmVsemiJhp5N6MuGkRDdYmgQo6kDxQVTk9FRs4nqBBKCD9MpoFP0o8mr+K7DqZgLyXLLBhxvJaHPBmQvltcCMph8mfPgGRJ9WmAlGPjqp4KyLYm8NcNyMGpYAheOSCoE9zLwlzpgui7IbstLt+K7g08vowWIGy/UuTpBGCyjiBPwS2Jz3FTMl6s6nJqim58NvpyRkPyD75MH5njzGU+JTxmSnRCfnAu8hRMBDZY3iM4kB+ZZxFF+pxo6XJOBRyYCj5ZxycNGzU18jD9WI7Tauo7ASnF96HQmPWDl2++pYBk/vE6AanhyEQr7L4D8vPvnvlK56LucV0bfMRisqfi/5vZDV6jlGGsLEbC13ckU/fFbEYpM9mT+0VSCFhVvbo6FD/J+YytZAZ0l5NkpOZKJqLmUzRniOpUGm8kV0XTOWuA6mQUdf0moyS+jcmenCfRFCKh1WrreL6PvEonpq4VFdCPL0QltX9pQHIAR6nXwMrLAFILUtsB6bvu7v2vtu8/DZDyeeTfOwfIr/+2TFAN3dKDYG2rUx3GGT/xuYoWOl0cLv6/lx2IogVRj2hiPudNhI2njkWN3Izgg2SN3Wi+w6zhVEY5WGZs8cfnowt9Yyu6T66lJqg/iPs55cY55XxH8XXF6qvvHE5N9nm+yczkuWx1xVTU2cbShZOl6tvLK/V4ZirbPMhydNU3S5N9XpO+pA9AxoEaKuZGvEpAyomd71mAlLCz/Lw4IFESfhIg5bjIwOcGJMnSVoJOwZwEZIfp3w2Qn/1JzIeYT2D7VPxoAslrteecitVtcTtr4f5fV4Xj6n01M4gLIulMi6hL1KLPSe3bDVOLVzcxhVs1su+6Os9RydBgBu5mYcrchpq36IaPKr2/9X6kAEhItabKV6ZrzX/sRdC/xie4T1dz5pLvdX9X0iLwab/NmcO+ArJtPmEnIKUo3zdT8CxASgGqUi/ZXPxGANnWB/VWA9KXgZ4w3Q2Qf/+LD6oIkVS19Tt5Q9l40Yb/0/vKlhbNKAdqNeysWTNFmqlVEJmeAxlel1p37aJPiZbPOJ4ox//zDSqGOg3lNzJwEr6UGv1h5h9b2Wd2IHt9sb0tGEhNkZ99cTW4Oj8yb2y4aIsg6u73PZl+rPHkvLs8qd9PQMrFXiqJ21AGVKIVc8+ALC9lASxMzKsEpGjw5tsKiDYgiFGd93MDAv4fVfFBtuXb5MAk8CUkiOlTkcNdcaokT+1ZZa+JYIZzojGFLRyR9yadZNCcJ0GQ4euyJdk03XWIHvUImDM3FXwiWWDMhF7e+7mxQV+bOshkMGSCzH01WUVjcHKtL8tcxWsHpDRvD2Op9fUDUpz/0NqVnhuQMg4+cO5DCwZeGJD/+OH71UbcvBuzcJExD935rHvwIVhcmTLfwfbJlCEtE61R07Y2cOxt43ayl7YxAzlLKJ9Bt+tMHG24nSPR/1XrI9sSyDu5Q+SD8zFoI0oS7ajjtKgwyw2+n+4WCS7fNTm1y7KwBFdzxwtOSz4l6rMrRgOd6FDDYb8TkAjn9hWQbc5wJyDBne0LIDW8jYz+nQXkF987WzVEtIBrkkGKOthgPkBCZ2qWzRX9oFA0M6hHyEPY/OIDygUsZxTExqtX2FFCsnFSzvu/X16pAMgfMAc0FkAbWQHEAmOnRVs6Cmkki6BQ57rkJziwEh2WnyjsdZ08RYb+5Y3oXZb5L61E14kNF1aV0Nh+BKTQwn33JgApFygs/foAEvndDkD+/g8XU0Ni5k1GjLuanBX0e/WQ0KC+08dlEkhdQ0VNJs566R4xroAlFcWJ3vgOvb8KXTRYaVVt2/mv3b5XXdf57LbHoel+p8nYXT6Nz5A3reVE1UpGU1p0aHjzITk3bz6GJcB16VFGqeC0Lt+6U68T99c/NyDljpadIknHM2nIxTcCyLYlNdsBKZdqrdMbAyS5ricDMnRXbsUYRQPEFC5TJbNls8cJqui78iMPYXvV1OcPR/Rj2pbE8DkmlU7ULvW+u5JRydzhmEzSryXzpZHyFbaYrVdnEO3JU+QnmpjvZQXS5wGke4VlMEV7NgdodJ3oUhkHjkLX2H4CyTe5f211R258UB9y3RiPmewFaFO4XwWk72JgZvtI234DEiNz3wASrqIBYj2TeJwG6ARcyrxA9wlJEq/rEsee+jy29qOshEk4zfiJx/2//AUHxXcJh813iKKGrGdgBNh0vkTU6HvYLIdrEoXRdPmCXuUPcxayRHW1vmE5TKqsWjjT7TpsZCD5egBwbGr0Y3Qagk5z276sbwD56jLP7YCUG9a29WwHZCj7uWKc+WmAFEB1gj4TkH/789jkwNZN2kAagaPhK04mbSwqEZfzOWxqAzq/yNj1HfPkjkfjSC7NkWeoe8h3XK9oC5npc6I2ml37pYauwyHZ6KB5XAauMMf3uV4+sO4Nq9tNo2CGjf7W+xfqexyXHZbux4W6P6xQK+EKaBjf1wB/qwAZuq6OJ2z72VdAttVpXhiQEjXV1SJ7AaRvFU6C+UxAfvKd6O3VUQg5Nq3OVfSlgBI9sljRkhmXD6qQsb26L7CsWFe+xn7aS9lepPRJQ3SDHMnatm4U0c+kacUIkEwcG/q+RGO1lp1tQzRX7X49d0TSDBVLN671e+WOR5SM/MV5/L/6zFT2Zwlrab7j2Sp0KOfe2xTuMwHJLzIJCKc0AlKaDPo2cPM2AVIESf/UWw/IL74XfVlrOeAu/td5V/uctjkvcXcbhM+NzKIkPbmszjgTGOEdjRB90Ey+CBekfqB7Xni8MB/H8WOzAk7K581Iui6Zf6mEFie7ljtK7IbU82vg6GJWQK/mJBjNlsCFIA5tLzFfIG/B4VnrZF6fT5mcD7mXXF7/8++dGeoFPhGQvltdDzKsLclM3XrdgJQ2nHKddesQ/qOuJoyE8nkAKZ8XDu8GCNO4OyBB+6OI9gbI6FN2BUQe0kqmuWGABJr7xj2dT6erh1bUw/aiUsx3qEWrb/Aps7l4wHnkFWrqMl2b3dwgbC9KpGS8BR8LBphQJKWM+FbWe/Ts6noRPTn+uG4qVvwt133EZc4jEtnJuozjifJUTs0OSritTMeh7TT5sUum5SHvKiDC7ZcGpAwWlYUHOS6ttKuE+1KA9ONDDawm3xUQNXVRDlvO9vqgrndcTK0kDmOzQJPglEQnFiXRGBJOI0pHYjU5adNJ9qhxITl+XKeZRZU4XeZ6hi1UM6fi+BgFvmYrN8vJ9J0HUyDfsZvEVlL9XeowosAkEDq+jg/V7cLE2S/WnuKQrHSrqb8QILWHNm7Y/3tArt+J1Xy5JrYCMnSdUbR9ByS6OIZudS0y6HGPb7yPTLIUsIoTLRlnX+N7NljmTsUn+5s+/TJm7j66YC4jggVcFU0kqToTSZbtP/6fU9bZSOLvVu5tqDsdy/UJRjQvECAmCGt8JXei8JmTm97kUfIwQQ2fgDvDxQn7nU9ZQAWybSHKDeBtkwWTNbnqbicgkfJrCZX4vJ2AjIsQ3llA0O2TS13YYtHRUIPkAkwApL6hy0QFjS3mi0i8SSQkm3kJTtmEE27JmDTOyOhb2+GYBSD7fHV/qFTSOD28oi7BwNGcY9fyqg+NbxufrhDfqPXs5sykKEqP7mdXYzO2GjtfhAFx3rbzPX2o7p7mQ3YD5OiRwzWs3DdASsNZP67SeNcAKRRIuR+Cin0H5Jc/uBgTVNPTsRojnzKwmJ16bCuuReZJkmX06gW/uRQS4v3ktpvGpuYBi8SU8/IROB+9tlXCivPMZTh2Q9q/pRvedfMNGtVMFbP9fJw8xKQUX8Xm47h8Hvc17hcO2h13h0tbWo2Nc6ZvWRJPT6BJ8hmcYdMQgIiy9gJIkZBSnK+qmQ11LwoIE/JUQEqbT7bZvHuAROPhngExH8K26Q7RhWFuGwdlrlo0IQMXhbTu+HwaQNs8nRohqsF5mSfnE8T9qAWzjHqLbVowYDO5jZRgoDJEM7r6Adq60/O6ZNyiIFGTDdzyoubjsuOy7TVO6snyG9+Tpugz+yy76EWHpgxobMyHbFs8vBsgJWGrnFc+DOutBKQfOnWOtwuQvquL0vqu+yxXKO4KiIeCiYrsOGlbPFOC1vKpBlNTpdRZ5KnsMunbOialTJsMxiUwkYmbW69RVl/IwNiFIorhHEkc30VTNnOGkI8QlbXnIOZ4wcpq7JZ/72ws98eNlfMUyVNqFf3RYEyEaE2GjcnUL6bfql2vJ/xk39ZURp+PPd0tN2vzjUUjynXYkqRbv/iS8vv2lLYGSK682B2QuMFuOLp6z4DkYoE3AUi5buuX3iQg5Tos8QEIE9n/6kefRPd7dn/bfU7C5Av2ZHkEENs6dhAGDY7j4RvY9LFWH/mLfEfhS1yu9/X0iRj10r3Ravu5bYhtHjcxOG7US8YNCfNfYRT4SteDRBTMaG7weYkv5sE8+efpC9RJcGl8EM123ZM756URulFEXS8JSN/GkQ2yvHFASr2kPBknFyW7MW7sfgFSnHPdTZkFun0DRD1EPExi9CupFaNSxP3Xb8cWz5PVBA3N2evy0ERslyBJUQNvrahpaz19QGUPO0xz1KBRNzgkcx8f5rOqbt6L63IctSxRDE2QwT/0zK3sHHR9oiUdkEw6jksUhXnQ7+V8WOvJXgBMAuZB5t+GPl8ekEiQRF/vNiB9W865X4CU5Z0FpPGhymHadwXkP38YU7iiG/z85XyO4cWcNTQ9K1/QCVg1py9P9ozKGsmmQea5aaCM2WYHNejJvrDJnYe63knqZH7j80zmbG7I05HIhIkWcVjYY6ZNvcbxmCJRovuk/cYztNRFaOyp4yGoojHO23W3km8uSGvPMdwXQLY9zfkbQGJ70nMDUsobZQmTKKs9lTk5Iyq1fcq11q4zIyWput91CtbnC/blOYjR4WdyquzL3T6HLmzeyr6oWJTWt52KfIc+Jmyx45JQFUDdIEwNJ86Wm6QqAlO+hx0s2Gl5Dd9Qul7K/x3LNig9Bf7enjeS4992SbIA8h/XIS2YnALwPTxxaM+A+OBOQEqn4dAeQYpungRE248LfTIgmTD24wPrXwUgEZ5HgexpgJS/M2UvAkgRQM3qewbEImWdfZDXP4R1xe/jcuyhrTN2pa1mPUq5oh222Q4UPgGnwxfJnNUhxv1a8eyn6P0ddszw4bYcD+eGrcXFYZcJEpbYHq7JuQ9cnL4wGigqM2Op1xj76/thmQnmJCc2PnMrEmy+zTRu22z9UoDUUuyrBKQUfKLnV6l2vwApT2crkmwQ56UBKUtlyrLODKOrye7HxwQ+E5D//qtv1ShrsjcWe6v/SZTjgPqOxtm/oONFL6IZKi8vscnA5gY23tYcJkq0p0uD7S2cUrlgc96uExXTnoOSmTQTia2lUX7vgY4Ess2zZ5Q2+cxclUj5Go7NbnlRI403tSsfM+FFgKUJbeTuXQNEgWxPgPRd9zgXQb+dgAxtoVkDxBLMj3NiSPQREjk0trSUcssP2yoKUoHjxNvwYqasbfdgzvghLUVpKmp1H9fQdTTO30kc52jySuaPC2r9VsmuypNEf+bdJWic+r0Hq9GimtHSGJ3FrGTbXJGb6piisfMxFhXQBC2tNIjvaluFcopAhZLv+TJ367cn7DwZkPEBja8ckKRiXjcgnkVVAakJbpRgRV+vD5Ay7tF3/d99e6H6kOOlgDKMHYSeIxI2uvRrRZ1B+Oa9KIXN19uKS6r7dbuuu5Ec0+g8o1lZJZKmtadAJ8ekBn0pNyLY20WiVCxxb3yBjFo/WN2wvS1zxj2NGxtiI4PJKc8HkXe03SeZh7H9vrfnu4tC9Znpghf1ifJ8XlQmfxkByQRISXQEJIzHN4BE3iLKexWAFNHv/+lPz1UNoZqcCxsX3RB9dz+XO87MRHfKmSw0Qdb8RpvnyCYIeQ2uhu9RArYzXV9XeyZuJm7mPDwlYXIXPZvu+SAEynXpGNTja+cJ38SHmfL1/I/ZickmeRmNkSjac4wNF4Up0V7NxQDH89m6ng/f6j/pW0WbewRktK0FkPKjW/7dBaS0yJbW2ChshdMt8zBhmt8YIP/1lx9XDZEH6FRUkQuJK4+ri7Fhmaf5EBKrnrH5KOY1bA9qj5nI6MeuENEFdlbN2uY5JhPLrDLpc8JfE19txUc+/cB51vMpbjZFeOLOg7zx8i+a/DC3hRpg4lMmM3OTX3py+cz2nMLsFdY0YqurJ4d6PonKq96Afm+AjI/pboBkRrodkHITFHC+ASQeHPl8gPRde+QRp80mq+iJojxHXFdJ0YgCgChicjA+bPLQqXvwEebCdY/IE5xPvC4KkmdonxEV2aZDQu1mbBly7phXh1AWwLFhoT39bb22N/UdTZLJq5jaXY9J0C82n/mLjF/+Y+6c78IQuF/RpT8+CahwZbXrxDOoGiBJnz8LEKTY7oBEYvVuANJ3AUj3RgGpYXcrUGV/0cajzWptAITl5FMq+VYy6qxhs+kkic/gY0QjnCWgSZoxZf1PNER9RgZM9Z0vgvGuMwGl20MlznHs5RXlqXGfOxkbrMterXqcrO3zGZ5Z5fuLwuRLJF5FUf2obSnKvrOvdrkPLZrdraK5E5BsSNsBSHlM9TAuXPZAlBcBpDh9TvTrA0hEc5XiqWxwRKuTJeZeszVWVh7SnuSZFT35Ba4H/e354LZ2hoYM3Re5yzy4rb5OXJUfTdN8kQxc1DL5nEJRkV5emmFPrs0PjTvKJ2zWvGQYn5rg+HyIusZkl4mOwnEbarDYsatk7HafXJGhUmljnOvVjK72biaSD+F7W1/WqwGk6zQ1Ixs5udcKSHmMRTYRPBGQYXwqghv66gApVFHfHhKwGyD/B698RkL4lao5AAAAAElFTkSuQmCC");
}
body[class*=secrets-of-the-luminara] .sotl-hero__title-img,
body[class*=sotl-winners] .sotl-hero__title-img {
  display: block;
  width: 600px;
  height: auto;
  object-fit: contain;
  opacity: 0;
  max-width: 85%;
  margin: 0 auto;
}
body[class*=secrets-of-the-luminara] .sotl-hero__title-img.sotl-animate--active,
body[class*=sotl-winners] .sotl-hero__title-img.sotl-animate--active {
  animation: fade-in 2.75s ease forwards;
}
body[class*=secrets-of-the-luminara] .sotl-hero__subtitle,
body[class*=sotl-winners] .sotl-hero__subtitle {
  opacity: 0;
}
body[class*=secrets-of-the-luminara] .sotl-hero__subtitle.sotl-animate--active,
body[class*=sotl-winners] .sotl-hero__subtitle.sotl-animate--active {
  animation: fade-in-up 2s ease 0.5s forwards;
}
body[class*=secrets-of-the-luminara] .sotl-hero__date,
body[class*=sotl-winners] .sotl-hero__date {
  margin-top: 0.25rem;
  opacity: 0;
}
body[class*=secrets-of-the-luminara] .sotl-hero__date.sotl-animate--active,
body[class*=sotl-winners] .sotl-hero__date.sotl-animate--active {
  animation: fade-in-up 1.75s ease 1s forwards;
}
body[class*=secrets-of-the-luminara] .sotl-hero__drop-frame,
body[class*=sotl-winners] .sotl-hero__drop-frame {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translateX(-50%);
  overflow: hidden;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  body[class*=secrets-of-the-luminara] .sotl-hero__drop-frame,
  body[class*=sotl-winners] .sotl-hero__drop-frame {
    max-width: 768px;
    overflow: visible;
  }
}
@media screen and (min-width: 992px) {
  body[class*=secrets-of-the-luminara] .sotl-hero__drop-frame,
  body[class*=sotl-winners] .sotl-hero__drop-frame {
    max-width: 992px;
  }
}
@media screen and (min-width: 1200px) {
  body[class*=secrets-of-the-luminara] .sotl-hero__drop-frame,
  body[class*=sotl-winners] .sotl-hero__drop-frame {
    max-width: 1200px;
  }
}
@media screen and (min-width: 1400px) {
  body[class*=secrets-of-the-luminara] .sotl-hero__drop-frame,
  body[class*=sotl-winners] .sotl-hero__drop-frame {
    max-width: 1400px;
  }
}
body[class*=secrets-of-the-luminara] .sotl-hero__drop-1, body[class*=secrets-of-the-luminara] .sotl-hero__drop-2, body[class*=secrets-of-the-luminara] .sotl-hero__drop-3, body[class*=secrets-of-the-luminara] .sotl-hero__drop-4,
body[class*=sotl-winners] .sotl-hero__drop-1,
body[class*=sotl-winners] .sotl-hero__drop-2,
body[class*=sotl-winners] .sotl-hero__drop-3,
body[class*=sotl-winners] .sotl-hero__drop-4 {
  position: absolute;
  opacity: 0;
  bottom: 0;
  width: 225px;
  transition: width 300ms ease;
}
body[class*=secrets-of-the-luminara] .sotl-hero__drop-1 img, body[class*=secrets-of-the-luminara] .sotl-hero__drop-2 img, body[class*=secrets-of-the-luminara] .sotl-hero__drop-3 img, body[class*=secrets-of-the-luminara] .sotl-hero__drop-4 img,
body[class*=sotl-winners] .sotl-hero__drop-1 img,
body[class*=sotl-winners] .sotl-hero__drop-2 img,
body[class*=sotl-winners] .sotl-hero__drop-3 img,
body[class*=sotl-winners] .sotl-hero__drop-4 img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  body[class*=secrets-of-the-luminara] .sotl-hero__drop-1, body[class*=secrets-of-the-luminara] .sotl-hero__drop-2, body[class*=secrets-of-the-luminara] .sotl-hero__drop-3, body[class*=secrets-of-the-luminara] .sotl-hero__drop-4,
  body[class*=sotl-winners] .sotl-hero__drop-1,
  body[class*=sotl-winners] .sotl-hero__drop-2,
  body[class*=sotl-winners] .sotl-hero__drop-3,
  body[class*=sotl-winners] .sotl-hero__drop-4 {
    width: 450px;
  }
}
@media screen and (min-width: 992px) {
  body[class*=secrets-of-the-luminara] .sotl-hero__drop-1, body[class*=secrets-of-the-luminara] .sotl-hero__drop-2, body[class*=secrets-of-the-luminara] .sotl-hero__drop-3, body[class*=secrets-of-the-luminara] .sotl-hero__drop-4,
  body[class*=sotl-winners] .sotl-hero__drop-1,
  body[class*=sotl-winners] .sotl-hero__drop-2,
  body[class*=sotl-winners] .sotl-hero__drop-3,
  body[class*=sotl-winners] .sotl-hero__drop-4 {
    width: 500px;
  }
}
@media screen and (min-width: 1200px) {
  body[class*=secrets-of-the-luminara] .sotl-hero__drop-1, body[class*=secrets-of-the-luminara] .sotl-hero__drop-2, body[class*=secrets-of-the-luminara] .sotl-hero__drop-3, body[class*=secrets-of-the-luminara] .sotl-hero__drop-4,
  body[class*=sotl-winners] .sotl-hero__drop-1,
  body[class*=sotl-winners] .sotl-hero__drop-2,
  body[class*=sotl-winners] .sotl-hero__drop-3,
  body[class*=sotl-winners] .sotl-hero__drop-4 {
    width: 550px;
  }
}
@media screen and (min-width: 1400px) {
  body[class*=secrets-of-the-luminara] .sotl-hero__drop-1, body[class*=secrets-of-the-luminara] .sotl-hero__drop-2, body[class*=secrets-of-the-luminara] .sotl-hero__drop-3, body[class*=secrets-of-the-luminara] .sotl-hero__drop-4,
  body[class*=sotl-winners] .sotl-hero__drop-1,
  body[class*=sotl-winners] .sotl-hero__drop-2,
  body[class*=sotl-winners] .sotl-hero__drop-3,
  body[class*=sotl-winners] .sotl-hero__drop-4 {
    width: 650px;
  }
}
body[class*=secrets-of-the-luminara] .sotl-hero__drop-1,
body[class*=sotl-winners] .sotl-hero__drop-1 {
  left: 0;
}
body[class*=secrets-of-the-luminara] .sotl-hero__drop-1.sotl-animate--active,
body[class*=sotl-winners] .sotl-hero__drop-1.sotl-animate--active {
  animation: drop-item-1 1550ms var(--animation-picture-curve) 2s forwards;
}
body[class*=secrets-of-the-luminara] .sotl-hero__drop-2,
body[class*=sotl-winners] .sotl-hero__drop-2 {
  left: 0;
}
body[class*=secrets-of-the-luminara] .sotl-hero__drop-2.sotl-animate--active,
body[class*=sotl-winners] .sotl-hero__drop-2.sotl-animate--active {
  animation: drop-item-2 1800ms var(--animation-picture-curve) 2.5s forwards;
}
body[class*=secrets-of-the-luminara] .sotl-hero__drop-3,
body[class*=sotl-winners] .sotl-hero__drop-3 {
  right: 0;
}
body[class*=secrets-of-the-luminara] .sotl-hero__drop-3.sotl-animate--active,
body[class*=sotl-winners] .sotl-hero__drop-3.sotl-animate--active {
  animation: drop-item-3 1600ms var(--animation-picture-curve) 3.3s forwards;
}
body[class*=secrets-of-the-luminara] .sotl-hero__drop-4,
body[class*=sotl-winners] .sotl-hero__drop-4 {
  right: 0;
}
body[class*=secrets-of-the-luminara] .sotl-hero__drop-4::after,
body[class*=sotl-winners] .sotl-hero__drop-4::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url("./sotl__accent-right-top--needle.png") center/cover no-repeat;
  animation: compass 15s ease infinite;
}
body[class*=secrets-of-the-luminara] .sotl-hero__drop-4.sotl-animate--active,
body[class*=sotl-winners] .sotl-hero__drop-4.sotl-animate--active {
  animation: drop-item-4 2000ms ease-out 3.7s forwards;
}
body[class*=secrets-of-the-luminara] .sotl-hero__cta-primary, body[class*=secrets-of-the-luminara] .sotl-hero__cta-secondary,
body[class*=sotl-winners] .sotl-hero__cta-primary,
body[class*=sotl-winners] .sotl-hero__cta-secondary {
  opacity: 0;
}
body[class*=secrets-of-the-luminara] .sotl-hero__cta-primary.sotl-animate--active, body[class*=secrets-of-the-luminara] .sotl-hero__cta-secondary.sotl-animate--active,
body[class*=sotl-winners] .sotl-hero__cta-primary.sotl-animate--active,
body[class*=sotl-winners] .sotl-hero__cta-secondary.sotl-animate--active {
  animation: fade-in 2s ease 0.5s forwards;
}
body[class*=secrets-of-the-luminara] .sotl-hero__cta-primary,
body[class*=sotl-winners] .sotl-hero__cta-primary {
  margin-right: 1rem;
}
body[class*=secrets-of-the-luminara] .sotl-hero__cta-primary.sotl-animate--active,
body[class*=sotl-winners] .sotl-hero__cta-primary.sotl-animate--active {
  animation-delay: 0.5s;
}
body[class*=secrets-of-the-luminara] .sotl-hero__cta-secondary.sotl-animate--active,
body[class*=sotl-winners] .sotl-hero__cta-secondary.sotl-animate--active {
  animation-delay: 0.95s;
}
body[class*=secrets-of-the-luminara] .sotl-sponsors,
body[class*=sotl-winners] .sotl-sponsors {
  margin: 2rem auto;
  --logo-width: 70px;
  --logo-height: 35px;
  --gap: 15px;
}
@media screen and (width >= 768px) {
  body[class*=secrets-of-the-luminara] .sotl-sponsors,
  body[class*=sotl-winners] .sotl-sponsors {
    --logo-width: 100px;
    --logo-height: 55px;
    --gap: 40px;
  }
}
@media screen and (width >= 1200px) {
  body[class*=secrets-of-the-luminara] .sotl-sponsors,
  body[class*=sotl-winners] .sotl-sponsors {
    --logo-width: 125px;
    --logo-height: 65px;
    --gap: 85px;
  }
}
body[class*=secrets-of-the-luminara] .sotl-sponsors__items,
body[class*=sotl-winners] .sotl-sponsors__items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 2.5rem;
  list-style: none;
  gap: 25px var(--gap);
}
body[class*=secrets-of-the-luminara] .sotl-sponsors__item,
body[class*=sotl-winners] .sotl-sponsors__item {
  width: var(--logo-width);
  height: var(--logo-height);
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}
body[class*=secrets-of-the-luminara] .sotl-sponsors__item img,
body[class*=sotl-winners] .sotl-sponsors__item img {
  display: block;
  width: 100%;
  height: auto;
}
body[class*=secrets-of-the-luminara] .sotl-sponsors--animate,
body[class*=sotl-winners] .sotl-sponsors--animate {
  position: relative;
  z-index: -1;
  margin: 0 auto;
  --logo-count: 9;
  --total-width: var(--logo-width) * var(--logo-count);
  --gap-compensation: var(--logo-count) * var(--gap);
  --offset: calc((-1 * var(--total-width)) - (var(--gap-compensation)));
}
body[class*=secrets-of-the-luminara] .sotl-sponsors--animate::after,
body[class*=sotl-winners] .sotl-sponsors--animate::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #000 0%, transparent 15%, transparent 85%, #000 100%);
}
body[class*=secrets-of-the-luminara] .sotl-sponsors--animate .sotl-sponsors__items,
body[class*=sotl-winners] .sotl-sponsors--animate .sotl-sponsors__items {
  flex-wrap: nowrap;
  animation: customer-slider 21s linear infinite;
}
@keyframes customer-slider {
  0% {
    transform: translate(0);
  }
  100% {
    transform: translate(var(--offset));
  }
}
body[class*=secrets-of-the-luminara] .sotl-video-embed,
body[class*=sotl-winners] .sotl-video-embed {
  margin: 3.5rem auto;
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 15px;
  overflow: hidden;
  color: #fff;
}
body[class*=secrets-of-the-luminara] .sotl-video-embed:hover .sotl-video-embed__icon,
body[class*=sotl-winners] .sotl-video-embed:hover .sotl-video-embed__icon {
  transform: scale(1.1);
}
body[class*=secrets-of-the-luminara] .sotl-video-embed__poster, body[class*=secrets-of-the-luminara] .sotl-video-embed__iframe,
body[class*=sotl-winners] .sotl-video-embed__poster,
body[class*=sotl-winners] .sotl-video-embed__iframe {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
body[class*=secrets-of-the-luminara] .sotl-video-embed__poster img,
body[class*=sotl-winners] .sotl-video-embed__poster img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
body[class*=secrets-of-the-luminara] .sotl-video-embed__iframe,
body[class*=sotl-winners] .sotl-video-embed__iframe {
  display: none;
}
body[class*=secrets-of-the-luminara] .sotl-video-embed__icon,
body[class*=sotl-winners] .sotl-video-embed__icon {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: transform 500ms ease;
}
body[class*=secrets-of-the-luminara] .sotl-video-embed__icon svg,
body[class*=sotl-winners] .sotl-video-embed__icon svg {
  transition: color 500ms ease;
  width: 10%;
  height: auto;
}
@media screen and (min-width: 768px) {
  body[class*=secrets-of-the-luminara] .sotl-section,
  body[class*=sotl-winners] .sotl-section {
    position: relative;
    display: flex;
    gap: 4.5rem;
    justify-content: space-between;
    padding-bottom: 9rem;
  }
}
body[class*=secrets-of-the-luminara] .sotl-section--callout,
body[class*=sotl-winners] .sotl-section--callout {
  margin: 2rem auto;
  padding: 4rem 0;
  background: var(--kb-color-black);
}
body[class*=secrets-of-the-luminara] .sotl-section--callout .container,
body[class*=sotl-winners] .sotl-section--callout .container {
  display: flex;
  gap: 0 4.5rem;
  justify-content: space-between;
  flex-wrap: wrap;
}
body[class*=secrets-of-the-luminara] .sotl-section--callout .sotl-section__left,
body[class*=sotl-winners] .sotl-section--callout .sotl-section__left {
  flex-grow: 1;
}
body[class*=secrets-of-the-luminara] .sotl-section--callout .sotl-section__right,
body[class*=sotl-winners] .sotl-section--callout .sotl-section__right {
  max-width: 575px;
}
body[class*=secrets-of-the-luminara] .sotl-section--has-accent-image,
body[class*=sotl-winners] .sotl-section--has-accent-image {
  position: relative;
  min-height: 500px;
  margin-top: 10%;
}
body[class*=secrets-of-the-luminara] .sotl-section--has-accent-image .sotl-section__left,
body[class*=sotl-winners] .sotl-section--has-accent-image .sotl-section__left {
  align-self: flex-end;
}
body[class*=secrets-of-the-luminara] .sotl-section--jeep .sotl-animate--active::after,
body[class*=sotl-winners] .sotl-section--jeep .sotl-animate--active::after {
  animation: flicker 5s linear infinite;
}
body[class*=secrets-of-the-luminara] .sotl-section--jeep .sotl-section__image::after,
body[class*=sotl-winners] .sotl-section--jeep .sotl-section__image::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("./sotl__step-1-active.png") center bottom/auto 100% no-repeat;
}
@media screen and (min-width: 768px) {
  body[class*=secrets-of-the-luminara] .sotl-section--jeep .sotl-section__image::after,
  body[class*=sotl-winners] .sotl-section--jeep .sotl-section__image::after {
    position: absolute;
    top: 0;
    left: 0;
  }
}
body[class*=secrets-of-the-luminara] .sotl-section--forest .sotl-animate--active::after,
body[class*=sotl-winners] .sotl-section--forest .sotl-animate--active::after {
  animation: forest 7s ease-out forwards;
}
body[class*=secrets-of-the-luminara] .sotl-section--forest .sotl-section__image::after,
body[class*=sotl-winners] .sotl-section--forest .sotl-section__image::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("./sotl__step-3-active.png") center bottom/auto 100% no-repeat;
}
@media screen and (min-width: 768px) {
  body[class*=secrets-of-the-luminara] .sotl-section--forest .sotl-section__image::after,
  body[class*=sotl-winners] .sotl-section--forest .sotl-section__image::after {
    position: absolute;
    top: 0;
    left: 0;
  }
}
body[class*=secrets-of-the-luminara] .sotl-section--temple .sotl-animate--active::after,
body[class*=sotl-winners] .sotl-section--temple .sotl-animate--active::after {
  animation: forest 7s ease-out forwards;
}
body[class*=secrets-of-the-luminara] .sotl-section--temple .sotl-section__image::after,
body[class*=sotl-winners] .sotl-section--temple .sotl-section__image::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("./sotl__step-2-active.png") center bottom/auto 100% no-repeat;
}
@media screen and (min-width: 768px) {
  body[class*=secrets-of-the-luminara] .sotl-section--temple .sotl-section__image::after,
  body[class*=sotl-winners] .sotl-section--temple .sotl-section__image::after {
    position: absolute;
    top: 0;
    left: 0;
  }
}
body[class*=secrets-of-the-luminara] .sotl-section__left,
body[class*=sotl-winners] .sotl-section__left {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  body[class*=secrets-of-the-luminara] .sotl-section__left,
  body[class*=sotl-winners] .sotl-section__left {
    width: 525px;
  }
}
body[class*=secrets-of-the-luminara] .sotl-section__right,
body[class*=sotl-winners] .sotl-section__right {
  max-width: 590px;
}
body[class*=secrets-of-the-luminara] .sotl-section__image,
body[class*=sotl-winners] .sotl-section__image {
  --image-offset: 50px;
  width: 180%;
  height: auto;
  margin-left: -40%;
  aspect-ratio: 1920/836;
  background: center bottom/auto 100% no-repeat;
}
@media screen and (min-width: 768px) {
  body[class*=secrets-of-the-luminara] .sotl-section__image,
  body[class*=sotl-winners] .sotl-section__image {
    position: absolute;
    bottom: 0;
    width: calc(100% + var(--image-offset));
    margin-left: 0%;
    --image-offset: 200px;
    left: 30%;
  }
}
@media screen and (min-width: 992px) {
  body[class*=secrets-of-the-luminara] .sotl-section__image,
  body[class*=sotl-winners] .sotl-section__image {
    --image-offset: 350px;
    left: 24%;
  }
}
@media screen and (min-width: 1200px) {
  body[class*=secrets-of-the-luminara] .sotl-section__image,
  body[class*=sotl-winners] .sotl-section__image {
    left: 18%;
  }
}
@media screen and (min-width: 1400px) {
  body[class*=secrets-of-the-luminara] .sotl-section__image,
  body[class*=sotl-winners] .sotl-section__image {
    --image-offset: 550px;
    left: 15%;
  }
}
body[class*=secrets-of-the-luminara] .sotl-section__subtitle,
body[class*=sotl-winners] .sotl-section__subtitle {
  color: var(--kb-color-brand-500);
}
body[class*=secrets-of-the-luminara] .sotl-section__title,
body[class*=sotl-winners] .sotl-section__title {
  margin-top: 2rem;
}
body[class*=secrets-of-the-luminara] .sotl-section__body,
body[class*=sotl-winners] .sotl-section__body {
  color: var(--sotl-color-text);
}
body[class*=secrets-of-the-luminara] .sotl-section__body p,
body[class*=sotl-winners] .sotl-section__body p {
  margin: 2rem 0;
  line-height: 2;
}
body[class*=secrets-of-the-luminara] .sotl-section__ctas,
body[class*=sotl-winners] .sotl-section__ctas {
  display: flex;
  gap: 2.5rem;
}
body[class*=secrets-of-the-luminara] .sotl-carousel,
body[class*=sotl-winners] .sotl-carousel {
  --sotl-carousel-button-size: 30px;
}
@media screen and (min-width: 768px) {
  body[class*=secrets-of-the-luminara] .sotl-carousel,
  body[class*=sotl-winners] .sotl-carousel {
    --sotl-carousel-button-size: 40px;
  }
}
@media screen and (min-width: 992px) {
  body[class*=secrets-of-the-luminara] .sotl-carousel,
  body[class*=sotl-winners] .sotl-carousel {
    --sotl-carousel-button-size: 50px;
  }
}
@media screen and (min-width: 1200px) {
  body[class*=secrets-of-the-luminara] .sotl-carousel,
  body[class*=sotl-winners] .sotl-carousel {
    --sotl-carousel-button-size: 80px;
  }
}
body[class*=secrets-of-the-luminara] .sotl-carousel__slide,
body[class*=sotl-winners] .sotl-carousel__slide {
  aspect-ratio: 16/9;
}
body[class*=secrets-of-the-luminara] .sotl-carousel__slide img,
body[class*=sotl-winners] .sotl-carousel__slide img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
body[class*=secrets-of-the-luminara] .sotl-carousel .swiper-button-prev,
body[class*=secrets-of-the-luminara] .sotl-carousel .swiper-button-next,
body[class*=sotl-winners] .sotl-carousel .swiper-button-prev,
body[class*=sotl-winners] .sotl-carousel .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid white;
  margin: 0;
  padding: 0;
  display: flex;
  background: rgba(255, 255, 255, 0.1);
  align-items: center;
  justify-content: center;
  border-radius: var(--sotl-carousel-button-size);
  width: var(--sotl-carousel-button-size);
  height: var(--sotl-carousel-button-size);
  transition: background 0.3s ease;
}
body[class*=secrets-of-the-luminara] .sotl-carousel .swiper-button-prev:hover,
body[class*=secrets-of-the-luminara] .sotl-carousel .swiper-button-next:hover,
body[class*=sotl-winners] .sotl-carousel .swiper-button-prev:hover,
body[class*=sotl-winners] .sotl-carousel .swiper-button-next:hover {
  background: rgba(255, 255, 255, 0.2);
}
body[class*=secrets-of-the-luminara] .sotl-carousel .swiper-button-prev.swiper-button-disabled,
body[class*=secrets-of-the-luminara] .sotl-carousel .swiper-button-next.swiper-button-disabled,
body[class*=sotl-winners] .sotl-carousel .swiper-button-prev.swiper-button-disabled,
body[class*=sotl-winners] .sotl-carousel .swiper-button-next.swiper-button-disabled {
  display: none;
}
body[class*=secrets-of-the-luminara] .sotl-carousel .swiper-button-prev svg,
body[class*=secrets-of-the-luminara] .sotl-carousel .swiper-button-next svg,
body[class*=sotl-winners] .sotl-carousel .swiper-button-prev svg,
body[class*=sotl-winners] .sotl-carousel .swiper-button-next svg {
  display: block;
  width: 18.75%;
  height: auto;
}
body[class*=secrets-of-the-luminara] .sotl-carousel .swiper-button-prev svg path,
body[class*=secrets-of-the-luminara] .sotl-carousel .swiper-button-next svg path,
body[class*=sotl-winners] .sotl-carousel .swiper-button-prev svg path,
body[class*=sotl-winners] .sotl-carousel .swiper-button-next svg path {
  fill: var(--kb-color-white);
}
body[class*=secrets-of-the-luminara] .sotl-carousel .swiper-button-prev::after,
body[class*=secrets-of-the-luminara] .sotl-carousel .swiper-button-next::after,
body[class*=sotl-winners] .sotl-carousel .swiper-button-prev::after,
body[class*=sotl-winners] .sotl-carousel .swiper-button-next::after {
  display: none;
}
body[class*=secrets-of-the-luminara] .sotl-carousel .swiper-button-prev,
body[class*=sotl-winners] .sotl-carousel .swiper-button-prev {
  left: 30px;
}
body[class*=secrets-of-the-luminara] .sotl-carousel .swiper-button-prev svg,
body[class*=sotl-winners] .sotl-carousel .swiper-button-prev svg {
  transform: translateX(-2px);
}
body[class*=secrets-of-the-luminara] .sotl-carousel .swiper-button-next,
body[class*=sotl-winners] .sotl-carousel .swiper-button-next {
  right: 30px;
}
body[class*=secrets-of-the-luminara] .sotl-carousel .swiper-button-next svg,
body[class*=sotl-winners] .sotl-carousel .swiper-button-next svg {
  transform: translateX(2px);
}
body[class*=secrets-of-the-luminara] .sotl-three-up,
body[class*=sotl-winners] .sotl-three-up {
  position: relative;
  z-index: 2;
  padding: 5.3rem 0 7.5rem;
  background: var(--kb-color-black);
}
body[class*=secrets-of-the-luminara] .sotl-three-up__items,
body[class*=sotl-winners] .sotl-three-up__items {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 2.8rem;
}
body[class*=secrets-of-the-luminara] .sotl-three-up__item,
body[class*=sotl-winners] .sotl-three-up__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.6rem;
}
@media screen and (min-width: 768px) {
  body[class*=secrets-of-the-luminara] .sotl-three-up__item,
  body[class*=sotl-winners] .sotl-three-up__item {
    max-width: 383px;
  }
}
body[class*=secrets-of-the-luminara] .sotl-three-up__image,
body[class*=sotl-winners] .sotl-three-up__image {
  display: block;
  width: 40px;
  height: 40px;
}
body[class*=secrets-of-the-luminara] .sotl-three-up__image img,
body[class*=sotl-winners] .sotl-three-up__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
body[class*=secrets-of-the-luminara] .sotl-three-up__body,
body[class*=sotl-winners] .sotl-three-up__body {
  text-wrap: balance;
}
body[class*=secrets-of-the-luminara] .sotl-judges,
body[class*=sotl-winners] .sotl-judges {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  body[class*=secrets-of-the-luminara] .sotl-judges,
  body[class*=sotl-winners] .sotl-judges {
    text-align: center;
  }
}
body[class*=secrets-of-the-luminara] .sotl-judges__title,
body[class*=sotl-winners] .sotl-judges__title {
  margin: 1.5rem 0;
}
body[class*=secrets-of-the-luminara] .sotl-judges__body,
body[class*=sotl-winners] .sotl-judges__body {
  color: var(--sotl-color-text);
  max-width: 750px;
  margin: 0 auto;
}
body[class*=secrets-of-the-luminara] .sotl-judges__items,
body[class*=sotl-winners] .sotl-judges__items {
  display: flex;
  gap: 1rem;
  margin: 3rem auto 0;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  body[class*=secrets-of-the-luminara] .sotl-judges__items,
  body[class*=sotl-winners] .sotl-judges__items {
    gap: 2rem 1rem;
  }
}
body[class*=secrets-of-the-luminara] .sotl-judges__item,
body[class*=sotl-winners] .sotl-judges__item {
  position: relative;
  list-style: none;
  max-width: 43%;
}
@media screen and (min-width: 768px) {
  body[class*=secrets-of-the-luminara] .sotl-judges__item,
  body[class*=sotl-winners] .sotl-judges__item {
    max-width: 275px;
  }
}
body[class*=secrets-of-the-luminara] .sotl-judges__item img,
body[class*=sotl-winners] .sotl-judges__item img {
  display: block;
  width: 100%;
  height: auto;
}
body[class*=secrets-of-the-luminara] .sotl-judges__item::after,
body[class*=sotl-winners] .sotl-judges__item::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: url("sotl__judge-hover.png") center top/100% auto no-repeat;
  transition: opacity 500ms ease;
}
body[class*=secrets-of-the-luminara] .sotl-judges__item:hover::after,
body[class*=sotl-winners] .sotl-judges__item:hover::after {
  opacity: 1;
}
body[class*=secrets-of-the-luminara] .sotl-tutorials,
body[class*=sotl-winners] .sotl-tutorials {
  margin: 6rem auto;
}
body[class*=secrets-of-the-luminara] .sotl-tutorials__text,
body[class*=sotl-winners] .sotl-tutorials__text {
  max-width: 920px;
  margin: 0 auto;
  text-wrap: balance;
}
@media screen and (min-width: 768px) {
  body[class*=secrets-of-the-luminara] .sotl-tutorials__text,
  body[class*=sotl-winners] .sotl-tutorials__text {
    text-align: center;
  }
}
body[class*=secrets-of-the-luminara] .sotl-tutorials__image img,
body[class*=sotl-winners] .sotl-tutorials__image img {
  object-fit: cover;
  display: block;
  width: 100%;
  height: 100%;
  transition: transform 800ms ease;
}
body[class*=secrets-of-the-luminara] .sotl-tutorials__items,
body[class*=sotl-winners] .sotl-tutorials__items {
  display: grid;
  place-items: center;
  gap: 1rem;
  grid-template-columns: 1;
}
@media screen and (min-width: 768px) {
  body[class*=secrets-of-the-luminara] .sotl-tutorials__items,
  body[class*=sotl-winners] .sotl-tutorials__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
body[class*=secrets-of-the-luminara] .sotl-tutorials__item,
body[class*=sotl-winners] .sotl-tutorials__item {
  display: block;
  list-style: none;
  border: 1px solid var(--kb-color-neutral-700);
  transition: border 300ms ease;
  aspect-ratio: 16/9;
  overflow: hidden;
}
body[class*=secrets-of-the-luminara] .sotl-tutorials__item:hover,
body[class*=sotl-winners] .sotl-tutorials__item:hover {
  border: 1px solid var(--sotl-color-accent);
}
body[class*=secrets-of-the-luminara] .sotl-tutorials__item:hover .sotl-tutorials__image img,
body[class*=sotl-winners] .sotl-tutorials__item:hover .sotl-tutorials__image img {
  transform: scale(1.05);
}
body[class*=secrets-of-the-luminara] .sotl-tutorials__item:last-child:nth-child(2n-1),
body[class*=sotl-winners] .sotl-tutorials__item:last-child:nth-child(2n-1) {
  grid-column: span 2;
}
@media screen and (min-width: 576px) {
  body[class*=secrets-of-the-luminara] .sotl-tutorials__item:last-child:nth-child(2n-1),
  body[class*=sotl-winners] .sotl-tutorials__item:last-child:nth-child(2n-1) {
    grid-column: span 2;
  }
}
body[class*=secrets-of-the-luminara] .sotl-news,
body[class*=sotl-winners] .sotl-news {
  margin: 6rem auto;
}
body[class*=secrets-of-the-luminara] .sotl-news__subtitle,
body[class*=sotl-winners] .sotl-news__subtitle {
  display: block;
  margin-bottom: 2.5rem;
}
body[class*=secrets-of-the-luminara] .sotl-news__title,
body[class*=sotl-winners] .sotl-news__title {
  margin: 1.5rem 0;
}
body[class*=secrets-of-the-luminara] .sotl-news__intro,
body[class*=sotl-winners] .sotl-news__intro {
  text-wrap: balance;
}
body[class*=secrets-of-the-luminara] .sotl-news__items,
body[class*=sotl-winners] .sotl-news__items {
  width: 100%;
}
body[class*=secrets-of-the-luminara] .sotl-news__items img,
body[class*=sotl-winners] .sotl-news__items img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
body[class*=secrets-of-the-luminara] .sotl-news__item,
body[class*=sotl-winners] .sotl-news__item {
  text-decoration: none;
}
body[class*=secrets-of-the-luminara] .sotl-news__item:hover .sotl-news__image,
body[class*=sotl-winners] .sotl-news__item:hover .sotl-news__image {
  border: 1px solid var(--sotl-color-accent);
}
body[class*=secrets-of-the-luminara] .sotl-news__item:hover .sotl-news__image img,
body[class*=sotl-winners] .sotl-news__item:hover .sotl-news__image img {
  transform: scale(1.05);
}
body[class*=secrets-of-the-luminara] .sotl-news__image,
body[class*=sotl-winners] .sotl-news__image {
  border: 1px solid var(--kb-color-neutral-700);
  overflow: hidden;
  transition: border 300ms ease;
}
body[class*=secrets-of-the-luminara] .sotl-news__image img,
body[class*=sotl-winners] .sotl-news__image img {
  object-fit: cover;
  transition: transform 800ms ease;
}
body[class*=secrets-of-the-luminara] .sotl-news__item-title,
body[class*=sotl-winners] .sotl-news__item-title {
  margin: 0.9rem 0 0.5rem;
}
body[class*=secrets-of-the-luminara] .sotl-cevoid,
body[class*=sotl-winners] .sotl-cevoid {
  margin: 6rem auto;
}
@media screen and (min-width: 768px) {
  body[class*=secrets-of-the-luminara] .sotl-cevoid,
  body[class*=sotl-winners] .sotl-cevoid {
    text-align: center;
  }
}
body[class*=secrets-of-the-luminara] .sotl-cevoid__title,
body[class*=sotl-winners] .sotl-cevoid__title {
  margin: 1rem 0;
}
body[class*=secrets-of-the-luminara] .sotl-cevoid__body,
body[class*=sotl-winners] .sotl-cevoid__body {
  margin: 1rem auto;
  max-width: 650px;
}
body[class*=secrets-of-the-luminara] .sotl-cevoid__gallery,
body[class*=sotl-winners] .sotl-cevoid__gallery {
  margin-top: 4rem;
}

.sotl-winners__section {
  margin: 120px auto;
}
.sotl-winners__section-header {
  margin-bottom: 2rem;
}
.sotl-winners__section-header .big-title {
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .sotl-winners__section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
  }
}

@media screen and (min-width: 768px) {
  .sotl-winners-gamers-grid {
    display: grid;
    gap: 2.125rem;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.sotl-winners-gamers-grid__item:hover img {
  transform: scale(1.05);
}
.sotl-winners-gamers-grid__item figure {
  aspect-ratio: 16/9;
  width: 100%;
  overflow: hidden;
  cursor: pointer;
}
.sotl-winners-gamers-grid__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}
.sotl-winners-gamers-grid__details {
  margin-top: 1rem;
}
.sotl-winners-gamers-grid__details h4 span {
  display: block;
}

.sotl-divider {
  margin: 6rem 0;
}
.sotl-divider__content {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.sotl-divider__content::before, .sotl-divider__content::after {
  content: "";
  height: 1px;
  width: calc(50% - 35px);
  background: #b4a280;
  position: absolute;
  left: 0;
  top: 34px;
  margin: 0 auto;
}
.sotl-divider__content::before {
  right: 0;
  left: initial;
}
.sotl-divider__content::after {
  left: 0;
}
@media all and (width >= 800px) {
  .sotl-divider__content::before, .sotl-divider__content::after {
    top: 49px;
    width: calc(50% - 47px);
  }
}
.sotl-divider__accent {
  position: relative;
  height: 70px;
  width: 70px;
  background: url("./sotl__divider-off.png") center/cover no-repeat;
}
.sotl-divider__accent.sotl-animate--active::after {
  animation: fade-in 5s ease forwards;
}
.sotl-divider__accent::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: url("./sotl__divider-on.png") center/100% no-repeat;
  z-index: 1;
}
@media all and (width >= 800px) {
  .sotl-divider__accent {
    height: 100px;
    width: 100px;
  }
}

.section__minerva__winners--inmotion--grid-item figure,
.section__minerva__finalist--grid-item figure {
  overflow: hidden;
}
.section__minerva__winners--inmotion--grid-item img,
.section__minerva__finalist--grid-item img {
  transition: transform 450ms ease;
}
.section__minerva__winners--inmotion--grid-item:hover img,
.section__minerva__finalist--grid-item:hover img {
  transform: scale(1.05);
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade-in-up {
  0% {
    opacity: 0;
    transform: translateY(10px);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0.5px);
  }
}
@keyframes flicker {
  0%, 19.999%, 22%, 44.999%, 47%, 62.999%, 64%, 64.999%, 70%, 100% {
    opacity: 1;
  }
  20%, 21.999%, 45%, 46.999%, 63%, 63.999%, 65%, 69.999% {
    opacity: 0;
  }
}
@keyframes compass {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(30deg);
  }
  20% {
    transform: rotate(-500deg);
  }
  30% {
    transform: rotate(90deg);
  }
  40% {
    transform: rotate(-60deg);
  }
  50% {
    transform: rotate(220deg);
  }
  60% {
    transform: rotate(-30deg);
  }
  70% {
    transform: rotate(450deg);
  }
  80% {
    transform: rotate(-120deg);
  }
  90% {
    transform: rotate(150deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes forest {
  0% {
    transform: scale(1);
    filter: blur(1px);
  }
  100% {
    transform: scale(1.1);
    filter: blur(5px);
  }
}
@keyframes drop-item-1 {
  0% {
    transform: translate(50%, 120%) rotate(25deg);
    opacity: 1;
  }
  100% {
    transform: translate(-40%, -5%) rotate(0deg);
    opacity: 1;
  }
}
@keyframes drop-item-2 {
  0% {
    transform: translate(50%, 120%) rotate(5deg);
    opacity: 1;
  }
  100% {
    transform: translate(-30%, 30%) rotate(10deg);
    opacity: 1;
  }
}
@keyframes drop-item-3 {
  0% {
    transform: translate(-50%, 120%) rotate(-10deg);
    opacity: 1;
  }
  100% {
    transform: translate(20%, 30%) rotate(0deg);
    opacity: 1;
  }
}
@keyframes drop-item-4 {
  0% {
    transform: translate(100%, 20%) rotate(2deg);
    opacity: 1;
  }
  100% {
    transform: translate(50%, 20%) rotate(0deg);
    opacity: 1;
  }
}
@keyframes page-reveal-in {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(1000%);
  }
  2% {
    opacity: 1;
    transform: translateY(0%);
  }
  100% {
    filter: blur(0);
    transform: translateY(0%);
  }
}
@keyframes page-reveal-out {
  0% {
    height: 0;
    width: 10px;
  }
  35% {
    height: 100%;
    width: 10px;
  }
  60% {
    height: 100%;
    width: 10px;
  }
  90% {
    height: 100%;
    width: 50%;
  }
  100% {
    height: 100%;
    width: 50%;
  }
}
/*!
 * Bootstrap Grid v4.1.3 (https://getbootstrap.com/)
 * Copyright 2011-2018 The Bootstrap Authors
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
.container {
  width: 100%;
  padding-right: 8px;
  padding-left: 8px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1328px;
  }
}

.container-fluid {
  width: 100%;
  padding-right: 8px;
  padding-left: 8px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -8px;
  margin-left: -8px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-xxl,
.col-xxl-auto, .col-xxl-12, .col-xxl-11, .col-xxl-10, .col-xxl-9, .col-xxl-8, .col-xxl-7, .col-xxl-6, .col-xxl-5, .col-xxl-4, .col-xxl-3, .col-xxl-2, .col-xxl-1, .col-xl,
.col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg,
.col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md,
.col-md-auto, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm,
.col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col,
.col-auto, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 8px;
  padding-left: 8px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.col-1 {
  flex: 0 0 0.0833333333;
  max-width: 0.0833333333;
}

.col-2 {
  flex: 0 0 0.1666666667;
  max-width: 0.1666666667;
}

.col-3 {
  flex: 0 0 0.25;
  max-width: 0.25;
}

.col-4 {
  flex: 0 0 0.3333333333;
  max-width: 0.3333333333;
}

.col-5 {
  flex: 0 0 0.4166666667;
  max-width: 0.4166666667;
}

.col-6 {
  flex: 0 0 0.5;
  max-width: 0.5;
}

.col-7 {
  flex: 0 0 0.5833333333;
  max-width: 0.5833333333;
}

.col-8 {
  flex: 0 0 0.6666666667;
  max-width: 0.6666666667;
}

.col-9 {
  flex: 0 0 0.75;
  max-width: 0.75;
}

.col-10 {
  flex: 0 0 0.8333333333;
  max-width: 0.8333333333;
}

.col-11 {
  flex: 0 0 0.9166666667;
  max-width: 0.9166666667;
}

.col-12 {
  flex: 0 0 1;
  max-width: 1;
}

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

.offset-1 {
  margin-left: 0.0833333333;
}

.offset-2 {
  margin-left: 0.1666666667;
}

.offset-3 {
  margin-left: 0.25;
}

.offset-4 {
  margin-left: 0.3333333333;
}

.offset-5 {
  margin-left: 0.4166666667;
}

.offset-6 {
  margin-left: 0.5;
}

.offset-7 {
  margin-left: 0.5833333333;
}

.offset-8 {
  margin-left: 0.6666666667;
}

.offset-9 {
  margin-left: 0.75;
}

.offset-10 {
  margin-left: 0.8333333333;
}

.offset-11 {
  margin-left: 0.9166666667;
}

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-sm-1 {
    flex: 0 0 0.0833333333;
    max-width: 0.0833333333;
  }
  .col-sm-2 {
    flex: 0 0 0.1666666667;
    max-width: 0.1666666667;
  }
  .col-sm-3 {
    flex: 0 0 0.25;
    max-width: 0.25;
  }
  .col-sm-4 {
    flex: 0 0 0.3333333333;
    max-width: 0.3333333333;
  }
  .col-sm-5 {
    flex: 0 0 0.4166666667;
    max-width: 0.4166666667;
  }
  .col-sm-6 {
    flex: 0 0 0.5;
    max-width: 0.5;
  }
  .col-sm-7 {
    flex: 0 0 0.5833333333;
    max-width: 0.5833333333;
  }
  .col-sm-8 {
    flex: 0 0 0.6666666667;
    max-width: 0.6666666667;
  }
  .col-sm-9 {
    flex: 0 0 0.75;
    max-width: 0.75;
  }
  .col-sm-10 {
    flex: 0 0 0.8333333333;
    max-width: 0.8333333333;
  }
  .col-sm-11 {
    flex: 0 0 0.9166666667;
    max-width: 0.9166666667;
  }
  .col-sm-12 {
    flex: 0 0 1;
    max-width: 1;
  }
  .order-sm-first {
    order: -1;
  }
  .order-sm-last {
    order: 13;
  }
  .order-sm-0 {
    order: 0;
  }
  .order-sm-1 {
    order: 1;
  }
  .order-sm-2 {
    order: 2;
  }
  .order-sm-3 {
    order: 3;
  }
  .order-sm-4 {
    order: 4;
  }
  .order-sm-5 {
    order: 5;
  }
  .order-sm-6 {
    order: 6;
  }
  .order-sm-7 {
    order: 7;
  }
  .order-sm-8 {
    order: 8;
  }
  .order-sm-9 {
    order: 9;
  }
  .order-sm-10 {
    order: 10;
  }
  .order-sm-11 {
    order: 11;
  }
  .order-sm-12 {
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 0.0833333333;
  }
  .offset-sm-2 {
    margin-left: 0.1666666667;
  }
  .offset-sm-3 {
    margin-left: 0.25;
  }
  .offset-sm-4 {
    margin-left: 0.3333333333;
  }
  .offset-sm-5 {
    margin-left: 0.4166666667;
  }
  .offset-sm-6 {
    margin-left: 0.5;
  }
  .offset-sm-7 {
    margin-left: 0.5833333333;
  }
  .offset-sm-8 {
    margin-left: 0.6666666667;
  }
  .offset-sm-9 {
    margin-left: 0.75;
  }
  .offset-sm-10 {
    margin-left: 0.8333333333;
  }
  .offset-sm-11 {
    margin-left: 0.9166666667;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-md-1 {
    flex: 0 0 0.0833333333;
    max-width: 0.0833333333;
  }
  .col-md-2 {
    flex: 0 0 0.1666666667;
    max-width: 0.1666666667;
  }
  .col-md-3 {
    flex: 0 0 0.25;
    max-width: 0.25;
  }
  .col-md-4 {
    flex: 0 0 0.3333333333;
    max-width: 0.3333333333;
  }
  .col-md-5 {
    flex: 0 0 0.4166666667;
    max-width: 0.4166666667;
  }
  .col-md-6 {
    flex: 0 0 0.5;
    max-width: 0.5;
  }
  .col-md-7 {
    flex: 0 0 0.5833333333;
    max-width: 0.5833333333;
  }
  .col-md-8 {
    flex: 0 0 0.6666666667;
    max-width: 0.6666666667;
  }
  .col-md-9 {
    flex: 0 0 0.75;
    max-width: 0.75;
  }
  .col-md-10 {
    flex: 0 0 0.8333333333;
    max-width: 0.8333333333;
  }
  .col-md-11 {
    flex: 0 0 0.9166666667;
    max-width: 0.9166666667;
  }
  .col-md-12 {
    flex: 0 0 1;
    max-width: 1;
  }
  .order-md-first {
    order: -1;
  }
  .order-md-last {
    order: 13;
  }
  .order-md-0 {
    order: 0;
  }
  .order-md-1 {
    order: 1;
  }
  .order-md-2 {
    order: 2;
  }
  .order-md-3 {
    order: 3;
  }
  .order-md-4 {
    order: 4;
  }
  .order-md-5 {
    order: 5;
  }
  .order-md-6 {
    order: 6;
  }
  .order-md-7 {
    order: 7;
  }
  .order-md-8 {
    order: 8;
  }
  .order-md-9 {
    order: 9;
  }
  .order-md-10 {
    order: 10;
  }
  .order-md-11 {
    order: 11;
  }
  .order-md-12 {
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 0.0833333333;
  }
  .offset-md-2 {
    margin-left: 0.1666666667;
  }
  .offset-md-3 {
    margin-left: 0.25;
  }
  .offset-md-4 {
    margin-left: 0.3333333333;
  }
  .offset-md-5 {
    margin-left: 0.4166666667;
  }
  .offset-md-6 {
    margin-left: 0.5;
  }
  .offset-md-7 {
    margin-left: 0.5833333333;
  }
  .offset-md-8 {
    margin-left: 0.6666666667;
  }
  .offset-md-9 {
    margin-left: 0.75;
  }
  .offset-md-10 {
    margin-left: 0.8333333333;
  }
  .offset-md-11 {
    margin-left: 0.9166666667;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-lg-1 {
    flex: 0 0 0.0833333333;
    max-width: 0.0833333333;
  }
  .col-lg-2 {
    flex: 0 0 0.1666666667;
    max-width: 0.1666666667;
  }
  .col-lg-3 {
    flex: 0 0 0.25;
    max-width: 0.25;
  }
  .col-lg-4 {
    flex: 0 0 0.3333333333;
    max-width: 0.3333333333;
  }
  .col-lg-5 {
    flex: 0 0 0.4166666667;
    max-width: 0.4166666667;
  }
  .col-lg-6 {
    flex: 0 0 0.5;
    max-width: 0.5;
  }
  .col-lg-7 {
    flex: 0 0 0.5833333333;
    max-width: 0.5833333333;
  }
  .col-lg-8 {
    flex: 0 0 0.6666666667;
    max-width: 0.6666666667;
  }
  .col-lg-9 {
    flex: 0 0 0.75;
    max-width: 0.75;
  }
  .col-lg-10 {
    flex: 0 0 0.8333333333;
    max-width: 0.8333333333;
  }
  .col-lg-11 {
    flex: 0 0 0.9166666667;
    max-width: 0.9166666667;
  }
  .col-lg-12 {
    flex: 0 0 1;
    max-width: 1;
  }
  .order-lg-first {
    order: -1;
  }
  .order-lg-last {
    order: 13;
  }
  .order-lg-0 {
    order: 0;
  }
  .order-lg-1 {
    order: 1;
  }
  .order-lg-2 {
    order: 2;
  }
  .order-lg-3 {
    order: 3;
  }
  .order-lg-4 {
    order: 4;
  }
  .order-lg-5 {
    order: 5;
  }
  .order-lg-6 {
    order: 6;
  }
  .order-lg-7 {
    order: 7;
  }
  .order-lg-8 {
    order: 8;
  }
  .order-lg-9 {
    order: 9;
  }
  .order-lg-10 {
    order: 10;
  }
  .order-lg-11 {
    order: 11;
  }
  .order-lg-12 {
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 0.0833333333;
  }
  .offset-lg-2 {
    margin-left: 0.1666666667;
  }
  .offset-lg-3 {
    margin-left: 0.25;
  }
  .offset-lg-4 {
    margin-left: 0.3333333333;
  }
  .offset-lg-5 {
    margin-left: 0.4166666667;
  }
  .offset-lg-6 {
    margin-left: 0.5;
  }
  .offset-lg-7 {
    margin-left: 0.5833333333;
  }
  .offset-lg-8 {
    margin-left: 0.6666666667;
  }
  .offset-lg-9 {
    margin-left: 0.75;
  }
  .offset-lg-10 {
    margin-left: 0.8333333333;
  }
  .offset-lg-11 {
    margin-left: 0.9166666667;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xl-1 {
    flex: 0 0 0.0833333333;
    max-width: 0.0833333333;
  }
  .col-xl-2 {
    flex: 0 0 0.1666666667;
    max-width: 0.1666666667;
  }
  .col-xl-3 {
    flex: 0 0 0.25;
    max-width: 0.25;
  }
  .col-xl-4 {
    flex: 0 0 0.3333333333;
    max-width: 0.3333333333;
  }
  .col-xl-5 {
    flex: 0 0 0.4166666667;
    max-width: 0.4166666667;
  }
  .col-xl-6 {
    flex: 0 0 0.5;
    max-width: 0.5;
  }
  .col-xl-7 {
    flex: 0 0 0.5833333333;
    max-width: 0.5833333333;
  }
  .col-xl-8 {
    flex: 0 0 0.6666666667;
    max-width: 0.6666666667;
  }
  .col-xl-9 {
    flex: 0 0 0.75;
    max-width: 0.75;
  }
  .col-xl-10 {
    flex: 0 0 0.8333333333;
    max-width: 0.8333333333;
  }
  .col-xl-11 {
    flex: 0 0 0.9166666667;
    max-width: 0.9166666667;
  }
  .col-xl-12 {
    flex: 0 0 1;
    max-width: 1;
  }
  .order-xl-first {
    order: -1;
  }
  .order-xl-last {
    order: 13;
  }
  .order-xl-0 {
    order: 0;
  }
  .order-xl-1 {
    order: 1;
  }
  .order-xl-2 {
    order: 2;
  }
  .order-xl-3 {
    order: 3;
  }
  .order-xl-4 {
    order: 4;
  }
  .order-xl-5 {
    order: 5;
  }
  .order-xl-6 {
    order: 6;
  }
  .order-xl-7 {
    order: 7;
  }
  .order-xl-8 {
    order: 8;
  }
  .order-xl-9 {
    order: 9;
  }
  .order-xl-10 {
    order: 10;
  }
  .order-xl-11 {
    order: 11;
  }
  .order-xl-12 {
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 0.0833333333;
  }
  .offset-xl-2 {
    margin-left: 0.1666666667;
  }
  .offset-xl-3 {
    margin-left: 0.25;
  }
  .offset-xl-4 {
    margin-left: 0.3333333333;
  }
  .offset-xl-5 {
    margin-left: 0.4166666667;
  }
  .offset-xl-6 {
    margin-left: 0.5;
  }
  .offset-xl-7 {
    margin-left: 0.5833333333;
  }
  .offset-xl-8 {
    margin-left: 0.6666666667;
  }
  .offset-xl-9 {
    margin-left: 0.75;
  }
  .offset-xl-10 {
    margin-left: 0.8333333333;
  }
  .offset-xl-11 {
    margin-left: 0.9166666667;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xxl-1 {
    flex: 0 0 0.0833333333;
    max-width: 0.0833333333;
  }
  .col-xxl-2 {
    flex: 0 0 0.1666666667;
    max-width: 0.1666666667;
  }
  .col-xxl-3 {
    flex: 0 0 0.25;
    max-width: 0.25;
  }
  .col-xxl-4 {
    flex: 0 0 0.3333333333;
    max-width: 0.3333333333;
  }
  .col-xxl-5 {
    flex: 0 0 0.4166666667;
    max-width: 0.4166666667;
  }
  .col-xxl-6 {
    flex: 0 0 0.5;
    max-width: 0.5;
  }
  .col-xxl-7 {
    flex: 0 0 0.5833333333;
    max-width: 0.5833333333;
  }
  .col-xxl-8 {
    flex: 0 0 0.6666666667;
    max-width: 0.6666666667;
  }
  .col-xxl-9 {
    flex: 0 0 0.75;
    max-width: 0.75;
  }
  .col-xxl-10 {
    flex: 0 0 0.8333333333;
    max-width: 0.8333333333;
  }
  .col-xxl-11 {
    flex: 0 0 0.9166666667;
    max-width: 0.9166666667;
  }
  .col-xxl-12 {
    flex: 0 0 1;
    max-width: 1;
  }
  .order-xxl-first {
    order: -1;
  }
  .order-xxl-last {
    order: 13;
  }
  .order-xxl-0 {
    order: 0;
  }
  .order-xxl-1 {
    order: 1;
  }
  .order-xxl-2 {
    order: 2;
  }
  .order-xxl-3 {
    order: 3;
  }
  .order-xxl-4 {
    order: 4;
  }
  .order-xxl-5 {
    order: 5;
  }
  .order-xxl-6 {
    order: 6;
  }
  .order-xxl-7 {
    order: 7;
  }
  .order-xxl-8 {
    order: 8;
  }
  .order-xxl-9 {
    order: 9;
  }
  .order-xxl-10 {
    order: 10;
  }
  .order-xxl-11 {
    order: 11;
  }
  .order-xxl-12 {
    order: 12;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 0.0833333333;
  }
  .offset-xxl-2 {
    margin-left: 0.1666666667;
  }
  .offset-xxl-3 {
    margin-left: 0.25;
  }
  .offset-xxl-4 {
    margin-left: 0.3333333333;
  }
  .offset-xxl-5 {
    margin-left: 0.4166666667;
  }
  .offset-xxl-6 {
    margin-left: 0.5;
  }
  .offset-xxl-7 {
    margin-left: 0.5833333333;
  }
  .offset-xxl-8 {
    margin-left: 0.6666666667;
  }
  .offset-xxl-9 {
    margin-left: 0.75;
  }
  .offset-xxl-10 {
    margin-left: 0.8333333333;
  }
  .offset-xxl-11 {
    margin-left: 0.9166666667;
  }
}
.debug-bp {
  border: 10px solid red;
}
@media screen and (min-width: 0) {
  .debug-bp {
    border-color: orange;
  }
}
@media screen and (min-width: 576px) {
  .debug-bp {
    border-color: yellow;
  }
}
@media screen and (min-width: 768px) {
  .debug-bp {
    border-color: green;
  }
}
@media screen and (min-width: 992px) {
  .debug-bp {
    border-color: blue;
  }
}
@media screen and (min-width: 1200px) {
  .debug-bp {
    border-color: purple;
  }
}
@media screen and (min-width: 1400px) {
  .debug-bp {
    border-color: white;
  }
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1400px) {
  .d-xxl-none {
    display: none !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
}
.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1400px) {
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    align-content: center !important;
  }
  .align-content-xxl-between {
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    align-self: auto !important;
  }
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
}
.align-middle {
  vertical-align: middle !important;
}

@media (min-width: 576px) {
  .align-sm-middle {
    vertical-align: middle !important;
  }
}
@media (min-width: 768px) {
  .align-md-middle {
    vertical-align: middle !important;
  }
}
@media (min-width: 992px) {
  .align-lg-middle {
    vertical-align: middle !important;
  }
}
@media (min-width: 1200px) {
  .align-xl-middle {
    vertical-align: middle !important;
  }
}
@media (min-width: 1400px) {
  .align-xxl-middle {
    vertical-align: middle !important;
  }
}
.gap-0 {
  gap: 0 !important;
}

.gap-x-0 {
  column-gap: 0 !important;
}

.gap-y-0 {
  row-gap: 0 !important;
}

.gap-1 {
  gap: 0.25rem !important;
}

.gap-x-1 {
  column-gap: 0.25rem !important;
}

.gap-y-1 {
  row-gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-x-2 {
  column-gap: 0.5rem !important;
}

.gap-y-2 {
  row-gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-x-3 {
  column-gap: 1rem !important;
}

.gap-y-3 {
  row-gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.gap-x-4 {
  column-gap: 1.5rem !important;
}

.gap-y-4 {
  row-gap: 1.5rem !important;
}

.gap-5 {
  gap: 3rem !important;
}

.gap-x-5 {
  column-gap: 3rem !important;
}

.gap-y-5 {
  row-gap: 3rem !important;
}

.gap-6 {
  gap: 4rem !important;
}

.gap-x-6 {
  column-gap: 4rem !important;
}

.gap-y-6 {
  row-gap: 4rem !important;
}

.gap-7 {
  gap: 5rem !important;
}

.gap-x-7 {
  column-gap: 5rem !important;
}

.gap-y-7 {
  row-gap: 5rem !important;
}

.gap-8 {
  gap: 6rem !important;
}

.gap-x-8 {
  column-gap: 6rem !important;
}

.gap-y-8 {
  row-gap: 6rem !important;
}

.gap-9 {
  gap: 8rem !important;
}

.gap-x-9 {
  column-gap: 8rem !important;
}

.gap-y-9 {
  row-gap: 8rem !important;
}

.gap-10 {
  gap: 10rem !important;
}

.gap-x-10 {
  column-gap: 10rem !important;
}

.gap-y-10 {
  row-gap: 10rem !important;
}

.gap-0 {
  gap: 0 !important;
}

.gap-x-0 {
  column-gap: 0 !important;
}

.gap-y-0 {
  row-gap: 0 !important;
}

.gap-1 {
  gap: 0.25rem !important;
}

.gap-x-1 {
  column-gap: 0.25rem !important;
}

.gap-y-1 {
  row-gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-x-2 {
  column-gap: 0.5rem !important;
}

.gap-y-2 {
  row-gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-x-3 {
  column-gap: 1rem !important;
}

.gap-y-3 {
  row-gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.gap-x-4 {
  column-gap: 1.5rem !important;
}

.gap-y-4 {
  row-gap: 1.5rem !important;
}

.gap-5 {
  gap: 3rem !important;
}

.gap-x-5 {
  column-gap: 3rem !important;
}

.gap-y-5 {
  row-gap: 3rem !important;
}

.gap-6 {
  gap: 4rem !important;
}

.gap-x-6 {
  column-gap: 4rem !important;
}

.gap-y-6 {
  row-gap: 4rem !important;
}

.gap-7 {
  gap: 5rem !important;
}

.gap-x-7 {
  column-gap: 5rem !important;
}

.gap-y-7 {
  row-gap: 5rem !important;
}

.gap-8 {
  gap: 6rem !important;
}

.gap-x-8 {
  column-gap: 6rem !important;
}

.gap-y-8 {
  row-gap: 6rem !important;
}

.gap-9 {
  gap: 8rem !important;
}

.gap-x-9 {
  column-gap: 8rem !important;
}

.gap-y-9 {
  row-gap: 8rem !important;
}

.gap-10 {
  gap: 10rem !important;
}

.gap-x-10 {
  column-gap: 10rem !important;
}

.gap-y-10 {
  row-gap: 10rem !important;
}

@media (min-width: 576px) {
  .gap-sm-0 {
    gap: 0 !important;
  }
  .gap-x-sm-0 {
    column-gap: 0 !important;
  }
  .gap-y-sm-0 {
    row-gap: 0 !important;
  }
  .gap-sm-1 {
    gap: 0.25rem !important;
  }
  .gap-x-sm-1 {
    column-gap: 0.25rem !important;
  }
  .gap-y-sm-1 {
    row-gap: 0.25rem !important;
  }
  .gap-sm-2 {
    gap: 0.5rem !important;
  }
  .gap-x-sm-2 {
    column-gap: 0.5rem !important;
  }
  .gap-y-sm-2 {
    row-gap: 0.5rem !important;
  }
  .gap-sm-3 {
    gap: 1rem !important;
  }
  .gap-x-sm-3 {
    column-gap: 1rem !important;
  }
  .gap-y-sm-3 {
    row-gap: 1rem !important;
  }
  .gap-sm-4 {
    gap: 1.5rem !important;
  }
  .gap-x-sm-4 {
    column-gap: 1.5rem !important;
  }
  .gap-y-sm-4 {
    row-gap: 1.5rem !important;
  }
  .gap-sm-5 {
    gap: 3rem !important;
  }
  .gap-x-sm-5 {
    column-gap: 3rem !important;
  }
  .gap-y-sm-5 {
    row-gap: 3rem !important;
  }
  .gap-sm-6 {
    gap: 4rem !important;
  }
  .gap-x-sm-6 {
    column-gap: 4rem !important;
  }
  .gap-y-sm-6 {
    row-gap: 4rem !important;
  }
  .gap-sm-7 {
    gap: 5rem !important;
  }
  .gap-x-sm-7 {
    column-gap: 5rem !important;
  }
  .gap-y-sm-7 {
    row-gap: 5rem !important;
  }
  .gap-sm-8 {
    gap: 6rem !important;
  }
  .gap-x-sm-8 {
    column-gap: 6rem !important;
  }
  .gap-y-sm-8 {
    row-gap: 6rem !important;
  }
  .gap-sm-9 {
    gap: 8rem !important;
  }
  .gap-x-sm-9 {
    column-gap: 8rem !important;
  }
  .gap-y-sm-9 {
    row-gap: 8rem !important;
  }
  .gap-sm-10 {
    gap: 10rem !important;
  }
  .gap-x-sm-10 {
    column-gap: 10rem !important;
  }
  .gap-y-sm-10 {
    row-gap: 10rem !important;
  }
}
@media (min-width: 768px) {
  .gap-md-0 {
    gap: 0 !important;
  }
  .gap-x-md-0 {
    column-gap: 0 !important;
  }
  .gap-y-md-0 {
    row-gap: 0 !important;
  }
  .gap-md-1 {
    gap: 0.25rem !important;
  }
  .gap-x-md-1 {
    column-gap: 0.25rem !important;
  }
  .gap-y-md-1 {
    row-gap: 0.25rem !important;
  }
  .gap-md-2 {
    gap: 0.5rem !important;
  }
  .gap-x-md-2 {
    column-gap: 0.5rem !important;
  }
  .gap-y-md-2 {
    row-gap: 0.5rem !important;
  }
  .gap-md-3 {
    gap: 1rem !important;
  }
  .gap-x-md-3 {
    column-gap: 1rem !important;
  }
  .gap-y-md-3 {
    row-gap: 1rem !important;
  }
  .gap-md-4 {
    gap: 1.5rem !important;
  }
  .gap-x-md-4 {
    column-gap: 1.5rem !important;
  }
  .gap-y-md-4 {
    row-gap: 1.5rem !important;
  }
  .gap-md-5 {
    gap: 3rem !important;
  }
  .gap-x-md-5 {
    column-gap: 3rem !important;
  }
  .gap-y-md-5 {
    row-gap: 3rem !important;
  }
  .gap-md-6 {
    gap: 4rem !important;
  }
  .gap-x-md-6 {
    column-gap: 4rem !important;
  }
  .gap-y-md-6 {
    row-gap: 4rem !important;
  }
  .gap-md-7 {
    gap: 5rem !important;
  }
  .gap-x-md-7 {
    column-gap: 5rem !important;
  }
  .gap-y-md-7 {
    row-gap: 5rem !important;
  }
  .gap-md-8 {
    gap: 6rem !important;
  }
  .gap-x-md-8 {
    column-gap: 6rem !important;
  }
  .gap-y-md-8 {
    row-gap: 6rem !important;
  }
  .gap-md-9 {
    gap: 8rem !important;
  }
  .gap-x-md-9 {
    column-gap: 8rem !important;
  }
  .gap-y-md-9 {
    row-gap: 8rem !important;
  }
  .gap-md-10 {
    gap: 10rem !important;
  }
  .gap-x-md-10 {
    column-gap: 10rem !important;
  }
  .gap-y-md-10 {
    row-gap: 10rem !important;
  }
}
@media (min-width: 992px) {
  .gap-lg-0 {
    gap: 0 !important;
  }
  .gap-x-lg-0 {
    column-gap: 0 !important;
  }
  .gap-y-lg-0 {
    row-gap: 0 !important;
  }
  .gap-lg-1 {
    gap: 0.25rem !important;
  }
  .gap-x-lg-1 {
    column-gap: 0.25rem !important;
  }
  .gap-y-lg-1 {
    row-gap: 0.25rem !important;
  }
  .gap-lg-2 {
    gap: 0.5rem !important;
  }
  .gap-x-lg-2 {
    column-gap: 0.5rem !important;
  }
  .gap-y-lg-2 {
    row-gap: 0.5rem !important;
  }
  .gap-lg-3 {
    gap: 1rem !important;
  }
  .gap-x-lg-3 {
    column-gap: 1rem !important;
  }
  .gap-y-lg-3 {
    row-gap: 1rem !important;
  }
  .gap-lg-4 {
    gap: 1.5rem !important;
  }
  .gap-x-lg-4 {
    column-gap: 1.5rem !important;
  }
  .gap-y-lg-4 {
    row-gap: 1.5rem !important;
  }
  .gap-lg-5 {
    gap: 3rem !important;
  }
  .gap-x-lg-5 {
    column-gap: 3rem !important;
  }
  .gap-y-lg-5 {
    row-gap: 3rem !important;
  }
  .gap-lg-6 {
    gap: 4rem !important;
  }
  .gap-x-lg-6 {
    column-gap: 4rem !important;
  }
  .gap-y-lg-6 {
    row-gap: 4rem !important;
  }
  .gap-lg-7 {
    gap: 5rem !important;
  }
  .gap-x-lg-7 {
    column-gap: 5rem !important;
  }
  .gap-y-lg-7 {
    row-gap: 5rem !important;
  }
  .gap-lg-8 {
    gap: 6rem !important;
  }
  .gap-x-lg-8 {
    column-gap: 6rem !important;
  }
  .gap-y-lg-8 {
    row-gap: 6rem !important;
  }
  .gap-lg-9 {
    gap: 8rem !important;
  }
  .gap-x-lg-9 {
    column-gap: 8rem !important;
  }
  .gap-y-lg-9 {
    row-gap: 8rem !important;
  }
  .gap-lg-10 {
    gap: 10rem !important;
  }
  .gap-x-lg-10 {
    column-gap: 10rem !important;
  }
  .gap-y-lg-10 {
    row-gap: 10rem !important;
  }
}
@media (min-width: 1200px) {
  .gap-xl-0 {
    gap: 0 !important;
  }
  .gap-x-xl-0 {
    column-gap: 0 !important;
  }
  .gap-y-xl-0 {
    row-gap: 0 !important;
  }
  .gap-xl-1 {
    gap: 0.25rem !important;
  }
  .gap-x-xl-1 {
    column-gap: 0.25rem !important;
  }
  .gap-y-xl-1 {
    row-gap: 0.25rem !important;
  }
  .gap-xl-2 {
    gap: 0.5rem !important;
  }
  .gap-x-xl-2 {
    column-gap: 0.5rem !important;
  }
  .gap-y-xl-2 {
    row-gap: 0.5rem !important;
  }
  .gap-xl-3 {
    gap: 1rem !important;
  }
  .gap-x-xl-3 {
    column-gap: 1rem !important;
  }
  .gap-y-xl-3 {
    row-gap: 1rem !important;
  }
  .gap-xl-4 {
    gap: 1.5rem !important;
  }
  .gap-x-xl-4 {
    column-gap: 1.5rem !important;
  }
  .gap-y-xl-4 {
    row-gap: 1.5rem !important;
  }
  .gap-xl-5 {
    gap: 3rem !important;
  }
  .gap-x-xl-5 {
    column-gap: 3rem !important;
  }
  .gap-y-xl-5 {
    row-gap: 3rem !important;
  }
  .gap-xl-6 {
    gap: 4rem !important;
  }
  .gap-x-xl-6 {
    column-gap: 4rem !important;
  }
  .gap-y-xl-6 {
    row-gap: 4rem !important;
  }
  .gap-xl-7 {
    gap: 5rem !important;
  }
  .gap-x-xl-7 {
    column-gap: 5rem !important;
  }
  .gap-y-xl-7 {
    row-gap: 5rem !important;
  }
  .gap-xl-8 {
    gap: 6rem !important;
  }
  .gap-x-xl-8 {
    column-gap: 6rem !important;
  }
  .gap-y-xl-8 {
    row-gap: 6rem !important;
  }
  .gap-xl-9 {
    gap: 8rem !important;
  }
  .gap-x-xl-9 {
    column-gap: 8rem !important;
  }
  .gap-y-xl-9 {
    row-gap: 8rem !important;
  }
  .gap-xl-10 {
    gap: 10rem !important;
  }
  .gap-x-xl-10 {
    column-gap: 10rem !important;
  }
  .gap-y-xl-10 {
    row-gap: 10rem !important;
  }
}
@media (min-width: 1400px) {
  .gap-xxl-0 {
    gap: 0 !important;
  }
  .gap-x-xxl-0 {
    column-gap: 0 !important;
  }
  .gap-y-xxl-0 {
    row-gap: 0 !important;
  }
  .gap-xxl-1 {
    gap: 0.25rem !important;
  }
  .gap-x-xxl-1 {
    column-gap: 0.25rem !important;
  }
  .gap-y-xxl-1 {
    row-gap: 0.25rem !important;
  }
  .gap-xxl-2 {
    gap: 0.5rem !important;
  }
  .gap-x-xxl-2 {
    column-gap: 0.5rem !important;
  }
  .gap-y-xxl-2 {
    row-gap: 0.5rem !important;
  }
  .gap-xxl-3 {
    gap: 1rem !important;
  }
  .gap-x-xxl-3 {
    column-gap: 1rem !important;
  }
  .gap-y-xxl-3 {
    row-gap: 1rem !important;
  }
  .gap-xxl-4 {
    gap: 1.5rem !important;
  }
  .gap-x-xxl-4 {
    column-gap: 1.5rem !important;
  }
  .gap-y-xxl-4 {
    row-gap: 1.5rem !important;
  }
  .gap-xxl-5 {
    gap: 3rem !important;
  }
  .gap-x-xxl-5 {
    column-gap: 3rem !important;
  }
  .gap-y-xxl-5 {
    row-gap: 3rem !important;
  }
  .gap-xxl-6 {
    gap: 4rem !important;
  }
  .gap-x-xxl-6 {
    column-gap: 4rem !important;
  }
  .gap-y-xxl-6 {
    row-gap: 4rem !important;
  }
  .gap-xxl-7 {
    gap: 5rem !important;
  }
  .gap-x-xxl-7 {
    column-gap: 5rem !important;
  }
  .gap-y-xxl-7 {
    row-gap: 5rem !important;
  }
  .gap-xxl-8 {
    gap: 6rem !important;
  }
  .gap-x-xxl-8 {
    column-gap: 6rem !important;
  }
  .gap-y-xxl-8 {
    row-gap: 6rem !important;
  }
  .gap-xxl-9 {
    gap: 8rem !important;
  }
  .gap-x-xxl-9 {
    column-gap: 8rem !important;
  }
  .gap-y-xxl-9 {
    row-gap: 8rem !important;
  }
  .gap-xxl-10 {
    gap: 10rem !important;
  }
  .gap-x-xxl-10 {
    column-gap: 10rem !important;
  }
  .gap-y-xxl-10 {
    row-gap: 10rem !important;
  }
}
.gap-0 {
  gap: 0 !important;
}

.gap-auto {
  gap: auto !important;
}

.gap-auto {
  gap: auto !important;
}

@media (min-width: 576px) {
  .gap-sm-auto {
    gap: auto !important;
  }
}
@media (min-width: 768px) {
  .gap-md-auto {
    gap: auto !important;
  }
}
@media (min-width: 992px) {
  .gap-lg-auto {
    gap: auto !important;
  }
}
@media (min-width: 1200px) {
  .gap-xl-auto {
    gap: auto !important;
  }
}
@media (min-width: 1400px) {
  .gap-xxl-auto {
    gap: auto !important;
  }
}
.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.m-6 {
  margin: 4rem !important;
}

.mt-6,
.my-6 {
  margin-top: 4rem !important;
}

.mr-6,
.mx-6 {
  margin-right: 4rem !important;
}

.mb-6,
.my-6 {
  margin-bottom: 4rem !important;
}

.ml-6,
.mx-6 {
  margin-left: 4rem !important;
}

.m-7 {
  margin: 5rem !important;
}

.mt-7,
.my-7 {
  margin-top: 5rem !important;
}

.mr-7,
.mx-7 {
  margin-right: 5rem !important;
}

.mb-7,
.my-7 {
  margin-bottom: 5rem !important;
}

.ml-7,
.mx-7 {
  margin-left: 5rem !important;
}

.m-8 {
  margin: 6rem !important;
}

.mt-8,
.my-8 {
  margin-top: 6rem !important;
}

.mr-8,
.mx-8 {
  margin-right: 6rem !important;
}

.mb-8,
.my-8 {
  margin-bottom: 6rem !important;
}

.ml-8,
.mx-8 {
  margin-left: 6rem !important;
}

.m-9 {
  margin: 8rem !important;
}

.mt-9,
.my-9 {
  margin-top: 8rem !important;
}

.mr-9,
.mx-9 {
  margin-right: 8rem !important;
}

.mb-9,
.my-9 {
  margin-bottom: 8rem !important;
}

.ml-9,
.mx-9 {
  margin-left: 8rem !important;
}

.m-10 {
  margin: 10rem !important;
}

.mt-10,
.my-10 {
  margin-top: 10rem !important;
}

.mr-10,
.mx-10 {
  margin-right: 10rem !important;
}

.mb-10,
.my-10 {
  margin-bottom: 10rem !important;
}

.ml-10,
.mx-10 {
  margin-left: 10rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.p-6 {
  padding: 4rem !important;
}

.pt-6,
.py-6 {
  padding-top: 4rem !important;
}

.pr-6,
.px-6 {
  padding-right: 4rem !important;
}

.pb-6,
.py-6 {
  padding-bottom: 4rem !important;
}

.pl-6,
.px-6 {
  padding-left: 4rem !important;
}

.p-7 {
  padding: 5rem !important;
}

.pt-7,
.py-7 {
  padding-top: 5rem !important;
}

.pr-7,
.px-7 {
  padding-right: 5rem !important;
}

.pb-7,
.py-7 {
  padding-bottom: 5rem !important;
}

.pl-7,
.px-7 {
  padding-left: 5rem !important;
}

.p-8 {
  padding: 6rem !important;
}

.pt-8,
.py-8 {
  padding-top: 6rem !important;
}

.pr-8,
.px-8 {
  padding-right: 6rem !important;
}

.pb-8,
.py-8 {
  padding-bottom: 6rem !important;
}

.pl-8,
.px-8 {
  padding-left: 6rem !important;
}

.p-9 {
  padding: 8rem !important;
}

.pt-9,
.py-9 {
  padding-top: 8rem !important;
}

.pr-9,
.px-9 {
  padding-right: 8rem !important;
}

.pb-9,
.py-9 {
  padding-bottom: 8rem !important;
}

.pl-9,
.px-9 {
  padding-left: 8rem !important;
}

.p-10 {
  padding: 10rem !important;
}

.pt-10,
.py-10 {
  padding-top: 10rem !important;
}

.pr-10,
.px-10 {
  padding-right: 10rem !important;
}

.pb-10,
.py-10 {
  padding-bottom: 10rem !important;
}

.pl-10,
.px-10 {
  padding-left: 10rem !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

.m-n6 {
  margin: -4rem !important;
}

.mt-n6,
.my-n6 {
  margin-top: -4rem !important;
}

.mr-n6,
.mx-n6 {
  margin-right: -4rem !important;
}

.mb-n6,
.my-n6 {
  margin-bottom: -4rem !important;
}

.ml-n6,
.mx-n6 {
  margin-left: -4rem !important;
}

.m-n7 {
  margin: -5rem !important;
}

.mt-n7,
.my-n7 {
  margin-top: -5rem !important;
}

.mr-n7,
.mx-n7 {
  margin-right: -5rem !important;
}

.mb-n7,
.my-n7 {
  margin-bottom: -5rem !important;
}

.ml-n7,
.mx-n7 {
  margin-left: -5rem !important;
}

.m-n8 {
  margin: -6rem !important;
}

.mt-n8,
.my-n8 {
  margin-top: -6rem !important;
}

.mr-n8,
.mx-n8 {
  margin-right: -6rem !important;
}

.mb-n8,
.my-n8 {
  margin-bottom: -6rem !important;
}

.ml-n8,
.mx-n8 {
  margin-left: -6rem !important;
}

.m-n9 {
  margin: -8rem !important;
}

.mt-n9,
.my-n9 {
  margin-top: -8rem !important;
}

.mr-n9,
.mx-n9 {
  margin-right: -8rem !important;
}

.mb-n9,
.my-n9 {
  margin-bottom: -8rem !important;
}

.ml-n9,
.mx-n9 {
  margin-left: -8rem !important;
}

.m-n10 {
  margin: -10rem !important;
}

.mt-n10,
.my-n10 {
  margin-top: -10rem !important;
}

.mr-n10,
.mx-n10 {
  margin-right: -10rem !important;
}

.mb-n10,
.my-n10 {
  margin-bottom: -10rem !important;
}

.ml-n10,
.mx-n10 {
  margin-left: -10rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }
  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }
  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }
  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }
  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important;
  }
  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important;
  }
  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }
  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }
  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }
  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }
  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }
  .m-sm-6 {
    margin: 4rem !important;
  }
  .mt-sm-6,
  .my-sm-6 {
    margin-top: 4rem !important;
  }
  .mr-sm-6,
  .mx-sm-6 {
    margin-right: 4rem !important;
  }
  .mb-sm-6,
  .my-sm-6 {
    margin-bottom: 4rem !important;
  }
  .ml-sm-6,
  .mx-sm-6 {
    margin-left: 4rem !important;
  }
  .m-sm-7 {
    margin: 5rem !important;
  }
  .mt-sm-7,
  .my-sm-7 {
    margin-top: 5rem !important;
  }
  .mr-sm-7,
  .mx-sm-7 {
    margin-right: 5rem !important;
  }
  .mb-sm-7,
  .my-sm-7 {
    margin-bottom: 5rem !important;
  }
  .ml-sm-7,
  .mx-sm-7 {
    margin-left: 5rem !important;
  }
  .m-sm-8 {
    margin: 6rem !important;
  }
  .mt-sm-8,
  .my-sm-8 {
    margin-top: 6rem !important;
  }
  .mr-sm-8,
  .mx-sm-8 {
    margin-right: 6rem !important;
  }
  .mb-sm-8,
  .my-sm-8 {
    margin-bottom: 6rem !important;
  }
  .ml-sm-8,
  .mx-sm-8 {
    margin-left: 6rem !important;
  }
  .m-sm-9 {
    margin: 8rem !important;
  }
  .mt-sm-9,
  .my-sm-9 {
    margin-top: 8rem !important;
  }
  .mr-sm-9,
  .mx-sm-9 {
    margin-right: 8rem !important;
  }
  .mb-sm-9,
  .my-sm-9 {
    margin-bottom: 8rem !important;
  }
  .ml-sm-9,
  .mx-sm-9 {
    margin-left: 8rem !important;
  }
  .m-sm-10 {
    margin: 10rem !important;
  }
  .mt-sm-10,
  .my-sm-10 {
    margin-top: 10rem !important;
  }
  .mr-sm-10,
  .mx-sm-10 {
    margin-right: 10rem !important;
  }
  .mb-sm-10,
  .my-sm-10 {
    margin-bottom: 10rem !important;
  }
  .ml-sm-10,
  .mx-sm-10 {
    margin-left: 10rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }
  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }
  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }
  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }
  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }
  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }
  .p-sm-6 {
    padding: 4rem !important;
  }
  .pt-sm-6,
  .py-sm-6 {
    padding-top: 4rem !important;
  }
  .pr-sm-6,
  .px-sm-6 {
    padding-right: 4rem !important;
  }
  .pb-sm-6,
  .py-sm-6 {
    padding-bottom: 4rem !important;
  }
  .pl-sm-6,
  .px-sm-6 {
    padding-left: 4rem !important;
  }
  .p-sm-7 {
    padding: 5rem !important;
  }
  .pt-sm-7,
  .py-sm-7 {
    padding-top: 5rem !important;
  }
  .pr-sm-7,
  .px-sm-7 {
    padding-right: 5rem !important;
  }
  .pb-sm-7,
  .py-sm-7 {
    padding-bottom: 5rem !important;
  }
  .pl-sm-7,
  .px-sm-7 {
    padding-left: 5rem !important;
  }
  .p-sm-8 {
    padding: 6rem !important;
  }
  .pt-sm-8,
  .py-sm-8 {
    padding-top: 6rem !important;
  }
  .pr-sm-8,
  .px-sm-8 {
    padding-right: 6rem !important;
  }
  .pb-sm-8,
  .py-sm-8 {
    padding-bottom: 6rem !important;
  }
  .pl-sm-8,
  .px-sm-8 {
    padding-left: 6rem !important;
  }
  .p-sm-9 {
    padding: 8rem !important;
  }
  .pt-sm-9,
  .py-sm-9 {
    padding-top: 8rem !important;
  }
  .pr-sm-9,
  .px-sm-9 {
    padding-right: 8rem !important;
  }
  .pb-sm-9,
  .py-sm-9 {
    padding-bottom: 8rem !important;
  }
  .pl-sm-9,
  .px-sm-9 {
    padding-left: 8rem !important;
  }
  .p-sm-10 {
    padding: 10rem !important;
  }
  .pt-sm-10,
  .py-sm-10 {
    padding-top: 10rem !important;
  }
  .pr-sm-10,
  .px-sm-10 {
    padding-right: 10rem !important;
  }
  .pb-sm-10,
  .py-sm-10 {
    padding-bottom: 10rem !important;
  }
  .pl-sm-10,
  .px-sm-10 {
    padding-left: 10rem !important;
  }
  .m-sm-n1 {
    margin: -0.25rem !important;
  }
  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -0.25rem !important;
  }
  .m-sm-n2 {
    margin: -0.5rem !important;
  }
  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -0.5rem !important;
  }
  .m-sm-n3 {
    margin: -1rem !important;
  }
  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -1rem !important;
  }
  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -1rem !important;
  }
  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -1rem !important;
  }
  .m-sm-n4 {
    margin: -1.5rem !important;
  }
  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -1.5rem !important;
  }
  .m-sm-n5 {
    margin: -3rem !important;
  }
  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -3rem !important;
  }
  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -3rem !important;
  }
  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -3rem !important;
  }
  .m-sm-n6 {
    margin: -4rem !important;
  }
  .mt-sm-n6,
  .my-sm-n6 {
    margin-top: -4rem !important;
  }
  .mr-sm-n6,
  .mx-sm-n6 {
    margin-right: -4rem !important;
  }
  .mb-sm-n6,
  .my-sm-n6 {
    margin-bottom: -4rem !important;
  }
  .ml-sm-n6,
  .mx-sm-n6 {
    margin-left: -4rem !important;
  }
  .m-sm-n7 {
    margin: -5rem !important;
  }
  .mt-sm-n7,
  .my-sm-n7 {
    margin-top: -5rem !important;
  }
  .mr-sm-n7,
  .mx-sm-n7 {
    margin-right: -5rem !important;
  }
  .mb-sm-n7,
  .my-sm-n7 {
    margin-bottom: -5rem !important;
  }
  .ml-sm-n7,
  .mx-sm-n7 {
    margin-left: -5rem !important;
  }
  .m-sm-n8 {
    margin: -6rem !important;
  }
  .mt-sm-n8,
  .my-sm-n8 {
    margin-top: -6rem !important;
  }
  .mr-sm-n8,
  .mx-sm-n8 {
    margin-right: -6rem !important;
  }
  .mb-sm-n8,
  .my-sm-n8 {
    margin-bottom: -6rem !important;
  }
  .ml-sm-n8,
  .mx-sm-n8 {
    margin-left: -6rem !important;
  }
  .m-sm-n9 {
    margin: -8rem !important;
  }
  .mt-sm-n9,
  .my-sm-n9 {
    margin-top: -8rem !important;
  }
  .mr-sm-n9,
  .mx-sm-n9 {
    margin-right: -8rem !important;
  }
  .mb-sm-n9,
  .my-sm-n9 {
    margin-bottom: -8rem !important;
  }
  .ml-sm-n9,
  .mx-sm-n9 {
    margin-left: -8rem !important;
  }
  .m-sm-n10 {
    margin: -10rem !important;
  }
  .mt-sm-n10,
  .my-sm-n10 {
    margin-top: -10rem !important;
  }
  .mr-sm-n10,
  .mx-sm-n10 {
    margin-right: -10rem !important;
  }
  .mb-sm-n10,
  .my-sm-n10 {
    margin-bottom: -10rem !important;
  }
  .ml-sm-n10,
  .mx-sm-n10 {
    margin-left: -10rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }
  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }
  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }
  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }
  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }
  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important;
  }
  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }
  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important;
  }
  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }
  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }
  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }
  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }
  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }
  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }
  .m-md-6 {
    margin: 4rem !important;
  }
  .mt-md-6,
  .my-md-6 {
    margin-top: 4rem !important;
  }
  .mr-md-6,
  .mx-md-6 {
    margin-right: 4rem !important;
  }
  .mb-md-6,
  .my-md-6 {
    margin-bottom: 4rem !important;
  }
  .ml-md-6,
  .mx-md-6 {
    margin-left: 4rem !important;
  }
  .m-md-7 {
    margin: 5rem !important;
  }
  .mt-md-7,
  .my-md-7 {
    margin-top: 5rem !important;
  }
  .mr-md-7,
  .mx-md-7 {
    margin-right: 5rem !important;
  }
  .mb-md-7,
  .my-md-7 {
    margin-bottom: 5rem !important;
  }
  .ml-md-7,
  .mx-md-7 {
    margin-left: 5rem !important;
  }
  .m-md-8 {
    margin: 6rem !important;
  }
  .mt-md-8,
  .my-md-8 {
    margin-top: 6rem !important;
  }
  .mr-md-8,
  .mx-md-8 {
    margin-right: 6rem !important;
  }
  .mb-md-8,
  .my-md-8 {
    margin-bottom: 6rem !important;
  }
  .ml-md-8,
  .mx-md-8 {
    margin-left: 6rem !important;
  }
  .m-md-9 {
    margin: 8rem !important;
  }
  .mt-md-9,
  .my-md-9 {
    margin-top: 8rem !important;
  }
  .mr-md-9,
  .mx-md-9 {
    margin-right: 8rem !important;
  }
  .mb-md-9,
  .my-md-9 {
    margin-bottom: 8rem !important;
  }
  .ml-md-9,
  .mx-md-9 {
    margin-left: 8rem !important;
  }
  .m-md-10 {
    margin: 10rem !important;
  }
  .mt-md-10,
  .my-md-10 {
    margin-top: 10rem !important;
  }
  .mr-md-10,
  .mx-md-10 {
    margin-right: 10rem !important;
  }
  .mb-md-10,
  .my-md-10 {
    margin-bottom: 10rem !important;
  }
  .ml-md-10,
  .mx-md-10 {
    margin-left: 10rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }
  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }
  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }
  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }
  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }
  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }
  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }
  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }
  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }
  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }
  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }
  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }
  .p-md-6 {
    padding: 4rem !important;
  }
  .pt-md-6,
  .py-md-6 {
    padding-top: 4rem !important;
  }
  .pr-md-6,
  .px-md-6 {
    padding-right: 4rem !important;
  }
  .pb-md-6,
  .py-md-6 {
    padding-bottom: 4rem !important;
  }
  .pl-md-6,
  .px-md-6 {
    padding-left: 4rem !important;
  }
  .p-md-7 {
    padding: 5rem !important;
  }
  .pt-md-7,
  .py-md-7 {
    padding-top: 5rem !important;
  }
  .pr-md-7,
  .px-md-7 {
    padding-right: 5rem !important;
  }
  .pb-md-7,
  .py-md-7 {
    padding-bottom: 5rem !important;
  }
  .pl-md-7,
  .px-md-7 {
    padding-left: 5rem !important;
  }
  .p-md-8 {
    padding: 6rem !important;
  }
  .pt-md-8,
  .py-md-8 {
    padding-top: 6rem !important;
  }
  .pr-md-8,
  .px-md-8 {
    padding-right: 6rem !important;
  }
  .pb-md-8,
  .py-md-8 {
    padding-bottom: 6rem !important;
  }
  .pl-md-8,
  .px-md-8 {
    padding-left: 6rem !important;
  }
  .p-md-9 {
    padding: 8rem !important;
  }
  .pt-md-9,
  .py-md-9 {
    padding-top: 8rem !important;
  }
  .pr-md-9,
  .px-md-9 {
    padding-right: 8rem !important;
  }
  .pb-md-9,
  .py-md-9 {
    padding-bottom: 8rem !important;
  }
  .pl-md-9,
  .px-md-9 {
    padding-left: 8rem !important;
  }
  .p-md-10 {
    padding: 10rem !important;
  }
  .pt-md-10,
  .py-md-10 {
    padding-top: 10rem !important;
  }
  .pr-md-10,
  .px-md-10 {
    padding-right: 10rem !important;
  }
  .pb-md-10,
  .py-md-10 {
    padding-bottom: 10rem !important;
  }
  .pl-md-10,
  .px-md-10 {
    padding-left: 10rem !important;
  }
  .m-md-n1 {
    margin: -0.25rem !important;
  }
  .mt-md-n1,
  .my-md-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -0.25rem !important;
  }
  .m-md-n2 {
    margin: -0.5rem !important;
  }
  .mt-md-n2,
  .my-md-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -0.5rem !important;
  }
  .m-md-n3 {
    margin: -1rem !important;
  }
  .mt-md-n3,
  .my-md-n3 {
    margin-top: -1rem !important;
  }
  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -1rem !important;
  }
  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -1rem !important;
  }
  .m-md-n4 {
    margin: -1.5rem !important;
  }
  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1.5rem !important;
  }
  .m-md-n5 {
    margin: -3rem !important;
  }
  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important;
  }
  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important;
  }
  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important;
  }
  .m-md-n6 {
    margin: -4rem !important;
  }
  .mt-md-n6,
  .my-md-n6 {
    margin-top: -4rem !important;
  }
  .mr-md-n6,
  .mx-md-n6 {
    margin-right: -4rem !important;
  }
  .mb-md-n6,
  .my-md-n6 {
    margin-bottom: -4rem !important;
  }
  .ml-md-n6,
  .mx-md-n6 {
    margin-left: -4rem !important;
  }
  .m-md-n7 {
    margin: -5rem !important;
  }
  .mt-md-n7,
  .my-md-n7 {
    margin-top: -5rem !important;
  }
  .mr-md-n7,
  .mx-md-n7 {
    margin-right: -5rem !important;
  }
  .mb-md-n7,
  .my-md-n7 {
    margin-bottom: -5rem !important;
  }
  .ml-md-n7,
  .mx-md-n7 {
    margin-left: -5rem !important;
  }
  .m-md-n8 {
    margin: -6rem !important;
  }
  .mt-md-n8,
  .my-md-n8 {
    margin-top: -6rem !important;
  }
  .mr-md-n8,
  .mx-md-n8 {
    margin-right: -6rem !important;
  }
  .mb-md-n8,
  .my-md-n8 {
    margin-bottom: -6rem !important;
  }
  .ml-md-n8,
  .mx-md-n8 {
    margin-left: -6rem !important;
  }
  .m-md-n9 {
    margin: -8rem !important;
  }
  .mt-md-n9,
  .my-md-n9 {
    margin-top: -8rem !important;
  }
  .mr-md-n9,
  .mx-md-n9 {
    margin-right: -8rem !important;
  }
  .mb-md-n9,
  .my-md-n9 {
    margin-bottom: -8rem !important;
  }
  .ml-md-n9,
  .mx-md-n9 {
    margin-left: -8rem !important;
  }
  .m-md-n10 {
    margin: -10rem !important;
  }
  .mt-md-n10,
  .my-md-n10 {
    margin-top: -10rem !important;
  }
  .mr-md-n10,
  .mx-md-n10 {
    margin-right: -10rem !important;
  }
  .mb-md-n10,
  .my-md-n10 {
    margin-bottom: -10rem !important;
  }
  .ml-md-n10,
  .mx-md-n10 {
    margin-left: -10rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }
  .m-lg-6 {
    margin: 4rem !important;
  }
  .mt-lg-6,
  .my-lg-6 {
    margin-top: 4rem !important;
  }
  .mr-lg-6,
  .mx-lg-6 {
    margin-right: 4rem !important;
  }
  .mb-lg-6,
  .my-lg-6 {
    margin-bottom: 4rem !important;
  }
  .ml-lg-6,
  .mx-lg-6 {
    margin-left: 4rem !important;
  }
  .m-lg-7 {
    margin: 5rem !important;
  }
  .mt-lg-7,
  .my-lg-7 {
    margin-top: 5rem !important;
  }
  .mr-lg-7,
  .mx-lg-7 {
    margin-right: 5rem !important;
  }
  .mb-lg-7,
  .my-lg-7 {
    margin-bottom: 5rem !important;
  }
  .ml-lg-7,
  .mx-lg-7 {
    margin-left: 5rem !important;
  }
  .m-lg-8 {
    margin: 6rem !important;
  }
  .mt-lg-8,
  .my-lg-8 {
    margin-top: 6rem !important;
  }
  .mr-lg-8,
  .mx-lg-8 {
    margin-right: 6rem !important;
  }
  .mb-lg-8,
  .my-lg-8 {
    margin-bottom: 6rem !important;
  }
  .ml-lg-8,
  .mx-lg-8 {
    margin-left: 6rem !important;
  }
  .m-lg-9 {
    margin: 8rem !important;
  }
  .mt-lg-9,
  .my-lg-9 {
    margin-top: 8rem !important;
  }
  .mr-lg-9,
  .mx-lg-9 {
    margin-right: 8rem !important;
  }
  .mb-lg-9,
  .my-lg-9 {
    margin-bottom: 8rem !important;
  }
  .ml-lg-9,
  .mx-lg-9 {
    margin-left: 8rem !important;
  }
  .m-lg-10 {
    margin: 10rem !important;
  }
  .mt-lg-10,
  .my-lg-10 {
    margin-top: 10rem !important;
  }
  .mr-lg-10,
  .mx-lg-10 {
    margin-right: 10rem !important;
  }
  .mb-lg-10,
  .my-lg-10 {
    margin-bottom: 10rem !important;
  }
  .ml-lg-10,
  .mx-lg-10 {
    margin-left: 10rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }
  .p-lg-6 {
    padding: 4rem !important;
  }
  .pt-lg-6,
  .py-lg-6 {
    padding-top: 4rem !important;
  }
  .pr-lg-6,
  .px-lg-6 {
    padding-right: 4rem !important;
  }
  .pb-lg-6,
  .py-lg-6 {
    padding-bottom: 4rem !important;
  }
  .pl-lg-6,
  .px-lg-6 {
    padding-left: 4rem !important;
  }
  .p-lg-7 {
    padding: 5rem !important;
  }
  .pt-lg-7,
  .py-lg-7 {
    padding-top: 5rem !important;
  }
  .pr-lg-7,
  .px-lg-7 {
    padding-right: 5rem !important;
  }
  .pb-lg-7,
  .py-lg-7 {
    padding-bottom: 5rem !important;
  }
  .pl-lg-7,
  .px-lg-7 {
    padding-left: 5rem !important;
  }
  .p-lg-8 {
    padding: 6rem !important;
  }
  .pt-lg-8,
  .py-lg-8 {
    padding-top: 6rem !important;
  }
  .pr-lg-8,
  .px-lg-8 {
    padding-right: 6rem !important;
  }
  .pb-lg-8,
  .py-lg-8 {
    padding-bottom: 6rem !important;
  }
  .pl-lg-8,
  .px-lg-8 {
    padding-left: 6rem !important;
  }
  .p-lg-9 {
    padding: 8rem !important;
  }
  .pt-lg-9,
  .py-lg-9 {
    padding-top: 8rem !important;
  }
  .pr-lg-9,
  .px-lg-9 {
    padding-right: 8rem !important;
  }
  .pb-lg-9,
  .py-lg-9 {
    padding-bottom: 8rem !important;
  }
  .pl-lg-9,
  .px-lg-9 {
    padding-left: 8rem !important;
  }
  .p-lg-10 {
    padding: 10rem !important;
  }
  .pt-lg-10,
  .py-lg-10 {
    padding-top: 10rem !important;
  }
  .pr-lg-10,
  .px-lg-10 {
    padding-right: 10rem !important;
  }
  .pb-lg-10,
  .py-lg-10 {
    padding-bottom: 10rem !important;
  }
  .pl-lg-10,
  .px-lg-10 {
    padding-left: 10rem !important;
  }
  .m-lg-n1 {
    margin: -0.25rem !important;
  }
  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -0.25rem !important;
  }
  .m-lg-n2 {
    margin: -0.5rem !important;
  }
  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -0.5rem !important;
  }
  .m-lg-n3 {
    margin: -1rem !important;
  }
  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -1rem !important;
  }
  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -1rem !important;
  }
  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -1rem !important;
  }
  .m-lg-n4 {
    margin: -1.5rem !important;
  }
  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1.5rem !important;
  }
  .m-lg-n5 {
    margin: -3rem !important;
  }
  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important;
  }
  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important;
  }
  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important;
  }
  .m-lg-n6 {
    margin: -4rem !important;
  }
  .mt-lg-n6,
  .my-lg-n6 {
    margin-top: -4rem !important;
  }
  .mr-lg-n6,
  .mx-lg-n6 {
    margin-right: -4rem !important;
  }
  .mb-lg-n6,
  .my-lg-n6 {
    margin-bottom: -4rem !important;
  }
  .ml-lg-n6,
  .mx-lg-n6 {
    margin-left: -4rem !important;
  }
  .m-lg-n7 {
    margin: -5rem !important;
  }
  .mt-lg-n7,
  .my-lg-n7 {
    margin-top: -5rem !important;
  }
  .mr-lg-n7,
  .mx-lg-n7 {
    margin-right: -5rem !important;
  }
  .mb-lg-n7,
  .my-lg-n7 {
    margin-bottom: -5rem !important;
  }
  .ml-lg-n7,
  .mx-lg-n7 {
    margin-left: -5rem !important;
  }
  .m-lg-n8 {
    margin: -6rem !important;
  }
  .mt-lg-n8,
  .my-lg-n8 {
    margin-top: -6rem !important;
  }
  .mr-lg-n8,
  .mx-lg-n8 {
    margin-right: -6rem !important;
  }
  .mb-lg-n8,
  .my-lg-n8 {
    margin-bottom: -6rem !important;
  }
  .ml-lg-n8,
  .mx-lg-n8 {
    margin-left: -6rem !important;
  }
  .m-lg-n9 {
    margin: -8rem !important;
  }
  .mt-lg-n9,
  .my-lg-n9 {
    margin-top: -8rem !important;
  }
  .mr-lg-n9,
  .mx-lg-n9 {
    margin-right: -8rem !important;
  }
  .mb-lg-n9,
  .my-lg-n9 {
    margin-bottom: -8rem !important;
  }
  .ml-lg-n9,
  .mx-lg-n9 {
    margin-left: -8rem !important;
  }
  .m-lg-n10 {
    margin: -10rem !important;
  }
  .mt-lg-n10,
  .my-lg-n10 {
    margin-top: -10rem !important;
  }
  .mr-lg-n10,
  .mx-lg-n10 {
    margin-right: -10rem !important;
  }
  .mb-lg-n10,
  .my-lg-n10 {
    margin-bottom: -10rem !important;
  }
  .ml-lg-n10,
  .mx-lg-n10 {
    margin-left: -10rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }
  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }
  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }
  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }
  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }
  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }
  .m-xl-6 {
    margin: 4rem !important;
  }
  .mt-xl-6,
  .my-xl-6 {
    margin-top: 4rem !important;
  }
  .mr-xl-6,
  .mx-xl-6 {
    margin-right: 4rem !important;
  }
  .mb-xl-6,
  .my-xl-6 {
    margin-bottom: 4rem !important;
  }
  .ml-xl-6,
  .mx-xl-6 {
    margin-left: 4rem !important;
  }
  .m-xl-7 {
    margin: 5rem !important;
  }
  .mt-xl-7,
  .my-xl-7 {
    margin-top: 5rem !important;
  }
  .mr-xl-7,
  .mx-xl-7 {
    margin-right: 5rem !important;
  }
  .mb-xl-7,
  .my-xl-7 {
    margin-bottom: 5rem !important;
  }
  .ml-xl-7,
  .mx-xl-7 {
    margin-left: 5rem !important;
  }
  .m-xl-8 {
    margin: 6rem !important;
  }
  .mt-xl-8,
  .my-xl-8 {
    margin-top: 6rem !important;
  }
  .mr-xl-8,
  .mx-xl-8 {
    margin-right: 6rem !important;
  }
  .mb-xl-8,
  .my-xl-8 {
    margin-bottom: 6rem !important;
  }
  .ml-xl-8,
  .mx-xl-8 {
    margin-left: 6rem !important;
  }
  .m-xl-9 {
    margin: 8rem !important;
  }
  .mt-xl-9,
  .my-xl-9 {
    margin-top: 8rem !important;
  }
  .mr-xl-9,
  .mx-xl-9 {
    margin-right: 8rem !important;
  }
  .mb-xl-9,
  .my-xl-9 {
    margin-bottom: 8rem !important;
  }
  .ml-xl-9,
  .mx-xl-9 {
    margin-left: 8rem !important;
  }
  .m-xl-10 {
    margin: 10rem !important;
  }
  .mt-xl-10,
  .my-xl-10 {
    margin-top: 10rem !important;
  }
  .mr-xl-10,
  .mx-xl-10 {
    margin-right: 10rem !important;
  }
  .mb-xl-10,
  .my-xl-10 {
    margin-bottom: 10rem !important;
  }
  .ml-xl-10,
  .mx-xl-10 {
    margin-left: 10rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }
  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }
  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }
  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }
  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }
  .p-xl-6 {
    padding: 4rem !important;
  }
  .pt-xl-6,
  .py-xl-6 {
    padding-top: 4rem !important;
  }
  .pr-xl-6,
  .px-xl-6 {
    padding-right: 4rem !important;
  }
  .pb-xl-6,
  .py-xl-6 {
    padding-bottom: 4rem !important;
  }
  .pl-xl-6,
  .px-xl-6 {
    padding-left: 4rem !important;
  }
  .p-xl-7 {
    padding: 5rem !important;
  }
  .pt-xl-7,
  .py-xl-7 {
    padding-top: 5rem !important;
  }
  .pr-xl-7,
  .px-xl-7 {
    padding-right: 5rem !important;
  }
  .pb-xl-7,
  .py-xl-7 {
    padding-bottom: 5rem !important;
  }
  .pl-xl-7,
  .px-xl-7 {
    padding-left: 5rem !important;
  }
  .p-xl-8 {
    padding: 6rem !important;
  }
  .pt-xl-8,
  .py-xl-8 {
    padding-top: 6rem !important;
  }
  .pr-xl-8,
  .px-xl-8 {
    padding-right: 6rem !important;
  }
  .pb-xl-8,
  .py-xl-8 {
    padding-bottom: 6rem !important;
  }
  .pl-xl-8,
  .px-xl-8 {
    padding-left: 6rem !important;
  }
  .p-xl-9 {
    padding: 8rem !important;
  }
  .pt-xl-9,
  .py-xl-9 {
    padding-top: 8rem !important;
  }
  .pr-xl-9,
  .px-xl-9 {
    padding-right: 8rem !important;
  }
  .pb-xl-9,
  .py-xl-9 {
    padding-bottom: 8rem !important;
  }
  .pl-xl-9,
  .px-xl-9 {
    padding-left: 8rem !important;
  }
  .p-xl-10 {
    padding: 10rem !important;
  }
  .pt-xl-10,
  .py-xl-10 {
    padding-top: 10rem !important;
  }
  .pr-xl-10,
  .px-xl-10 {
    padding-right: 10rem !important;
  }
  .pb-xl-10,
  .py-xl-10 {
    padding-bottom: 10rem !important;
  }
  .pl-xl-10,
  .px-xl-10 {
    padding-left: 10rem !important;
  }
  .m-xl-n1 {
    margin: -0.25rem !important;
  }
  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -0.25rem !important;
  }
  .m-xl-n2 {
    margin: -0.5rem !important;
  }
  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -0.5rem !important;
  }
  .m-xl-n3 {
    margin: -1rem !important;
  }
  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -1rem !important;
  }
  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -1rem !important;
  }
  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -1rem !important;
  }
  .m-xl-n4 {
    margin: -1.5rem !important;
  }
  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -1.5rem !important;
  }
  .m-xl-n5 {
    margin: -3rem !important;
  }
  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -3rem !important;
  }
  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -3rem !important;
  }
  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -3rem !important;
  }
  .m-xl-n6 {
    margin: -4rem !important;
  }
  .mt-xl-n6,
  .my-xl-n6 {
    margin-top: -4rem !important;
  }
  .mr-xl-n6,
  .mx-xl-n6 {
    margin-right: -4rem !important;
  }
  .mb-xl-n6,
  .my-xl-n6 {
    margin-bottom: -4rem !important;
  }
  .ml-xl-n6,
  .mx-xl-n6 {
    margin-left: -4rem !important;
  }
  .m-xl-n7 {
    margin: -5rem !important;
  }
  .mt-xl-n7,
  .my-xl-n7 {
    margin-top: -5rem !important;
  }
  .mr-xl-n7,
  .mx-xl-n7 {
    margin-right: -5rem !important;
  }
  .mb-xl-n7,
  .my-xl-n7 {
    margin-bottom: -5rem !important;
  }
  .ml-xl-n7,
  .mx-xl-n7 {
    margin-left: -5rem !important;
  }
  .m-xl-n8 {
    margin: -6rem !important;
  }
  .mt-xl-n8,
  .my-xl-n8 {
    margin-top: -6rem !important;
  }
  .mr-xl-n8,
  .mx-xl-n8 {
    margin-right: -6rem !important;
  }
  .mb-xl-n8,
  .my-xl-n8 {
    margin-bottom: -6rem !important;
  }
  .ml-xl-n8,
  .mx-xl-n8 {
    margin-left: -6rem !important;
  }
  .m-xl-n9 {
    margin: -8rem !important;
  }
  .mt-xl-n9,
  .my-xl-n9 {
    margin-top: -8rem !important;
  }
  .mr-xl-n9,
  .mx-xl-n9 {
    margin-right: -8rem !important;
  }
  .mb-xl-n9,
  .my-xl-n9 {
    margin-bottom: -8rem !important;
  }
  .ml-xl-n9,
  .mx-xl-n9 {
    margin-left: -8rem !important;
  }
  .m-xl-n10 {
    margin: -10rem !important;
  }
  .mt-xl-n10,
  .my-xl-n10 {
    margin-top: -10rem !important;
  }
  .mr-xl-n10,
  .mx-xl-n10 {
    margin-right: -10rem !important;
  }
  .mb-xl-n10,
  .my-xl-n10 {
    margin-bottom: -10rem !important;
  }
  .ml-xl-n10,
  .mx-xl-n10 {
    margin-left: -10rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }
  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }
  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1400px) {
  .m-xxl-0 {
    margin: 0 !important;
  }
  .mt-xxl-0,
  .my-xxl-0 {
    margin-top: 0 !important;
  }
  .mr-xxl-0,
  .mx-xxl-0 {
    margin-right: 0 !important;
  }
  .mb-xxl-0,
  .my-xxl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xxl-0,
  .mx-xxl-0 {
    margin-left: 0 !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .mt-xxl-1,
  .my-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xxl-1,
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xxl-1,
  .my-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xxl-1,
  .mx-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .mt-xxl-2,
  .my-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xxl-2,
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xxl-2,
  .my-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xxl-2,
  .mx-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .mt-xxl-3,
  .my-xxl-3 {
    margin-top: 1rem !important;
  }
  .mr-xxl-3,
  .mx-xxl-3 {
    margin-right: 1rem !important;
  }
  .mb-xxl-3,
  .my-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xxl-3,
  .mx-xxl-3 {
    margin-left: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .mt-xxl-4,
  .my-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xxl-4,
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xxl-4,
  .my-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xxl-4,
  .mx-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 3rem !important;
  }
  .mt-xxl-5,
  .my-xxl-5 {
    margin-top: 3rem !important;
  }
  .mr-xxl-5,
  .mx-xxl-5 {
    margin-right: 3rem !important;
  }
  .mb-xxl-5,
  .my-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .ml-xxl-5,
  .mx-xxl-5 {
    margin-left: 3rem !important;
  }
  .m-xxl-6 {
    margin: 4rem !important;
  }
  .mt-xxl-6,
  .my-xxl-6 {
    margin-top: 4rem !important;
  }
  .mr-xxl-6,
  .mx-xxl-6 {
    margin-right: 4rem !important;
  }
  .mb-xxl-6,
  .my-xxl-6 {
    margin-bottom: 4rem !important;
  }
  .ml-xxl-6,
  .mx-xxl-6 {
    margin-left: 4rem !important;
  }
  .m-xxl-7 {
    margin: 5rem !important;
  }
  .mt-xxl-7,
  .my-xxl-7 {
    margin-top: 5rem !important;
  }
  .mr-xxl-7,
  .mx-xxl-7 {
    margin-right: 5rem !important;
  }
  .mb-xxl-7,
  .my-xxl-7 {
    margin-bottom: 5rem !important;
  }
  .ml-xxl-7,
  .mx-xxl-7 {
    margin-left: 5rem !important;
  }
  .m-xxl-8 {
    margin: 6rem !important;
  }
  .mt-xxl-8,
  .my-xxl-8 {
    margin-top: 6rem !important;
  }
  .mr-xxl-8,
  .mx-xxl-8 {
    margin-right: 6rem !important;
  }
  .mb-xxl-8,
  .my-xxl-8 {
    margin-bottom: 6rem !important;
  }
  .ml-xxl-8,
  .mx-xxl-8 {
    margin-left: 6rem !important;
  }
  .m-xxl-9 {
    margin: 8rem !important;
  }
  .mt-xxl-9,
  .my-xxl-9 {
    margin-top: 8rem !important;
  }
  .mr-xxl-9,
  .mx-xxl-9 {
    margin-right: 8rem !important;
  }
  .mb-xxl-9,
  .my-xxl-9 {
    margin-bottom: 8rem !important;
  }
  .ml-xxl-9,
  .mx-xxl-9 {
    margin-left: 8rem !important;
  }
  .m-xxl-10 {
    margin: 10rem !important;
  }
  .mt-xxl-10,
  .my-xxl-10 {
    margin-top: 10rem !important;
  }
  .mr-xxl-10,
  .mx-xxl-10 {
    margin-right: 10rem !important;
  }
  .mb-xxl-10,
  .my-xxl-10 {
    margin-bottom: 10rem !important;
  }
  .ml-xxl-10,
  .mx-xxl-10 {
    margin-left: 10rem !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .pt-xxl-0,
  .py-xxl-0 {
    padding-top: 0 !important;
  }
  .pr-xxl-0,
  .px-xxl-0 {
    padding-right: 0 !important;
  }
  .pb-xxl-0,
  .py-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xxl-0,
  .px-xxl-0 {
    padding-left: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .pt-xxl-1,
  .py-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xxl-1,
  .px-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xxl-1,
  .py-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xxl-1,
  .px-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .pt-xxl-2,
  .py-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xxl-2,
  .px-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xxl-2,
  .py-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xxl-2,
  .px-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .pt-xxl-3,
  .py-xxl-3 {
    padding-top: 1rem !important;
  }
  .pr-xxl-3,
  .px-xxl-3 {
    padding-right: 1rem !important;
  }
  .pb-xxl-3,
  .py-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xxl-3,
  .px-xxl-3 {
    padding-left: 1rem !important;
  }
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .pt-xxl-4,
  .py-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xxl-4,
  .px-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xxl-4,
  .py-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xxl-4,
  .px-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .p-xxl-5 {
    padding: 3rem !important;
  }
  .pt-xxl-5,
  .py-xxl-5 {
    padding-top: 3rem !important;
  }
  .pr-xxl-5,
  .px-xxl-5 {
    padding-right: 3rem !important;
  }
  .pb-xxl-5,
  .py-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xxl-5,
  .px-xxl-5 {
    padding-left: 3rem !important;
  }
  .p-xxl-6 {
    padding: 4rem !important;
  }
  .pt-xxl-6,
  .py-xxl-6 {
    padding-top: 4rem !important;
  }
  .pr-xxl-6,
  .px-xxl-6 {
    padding-right: 4rem !important;
  }
  .pb-xxl-6,
  .py-xxl-6 {
    padding-bottom: 4rem !important;
  }
  .pl-xxl-6,
  .px-xxl-6 {
    padding-left: 4rem !important;
  }
  .p-xxl-7 {
    padding: 5rem !important;
  }
  .pt-xxl-7,
  .py-xxl-7 {
    padding-top: 5rem !important;
  }
  .pr-xxl-7,
  .px-xxl-7 {
    padding-right: 5rem !important;
  }
  .pb-xxl-7,
  .py-xxl-7 {
    padding-bottom: 5rem !important;
  }
  .pl-xxl-7,
  .px-xxl-7 {
    padding-left: 5rem !important;
  }
  .p-xxl-8 {
    padding: 6rem !important;
  }
  .pt-xxl-8,
  .py-xxl-8 {
    padding-top: 6rem !important;
  }
  .pr-xxl-8,
  .px-xxl-8 {
    padding-right: 6rem !important;
  }
  .pb-xxl-8,
  .py-xxl-8 {
    padding-bottom: 6rem !important;
  }
  .pl-xxl-8,
  .px-xxl-8 {
    padding-left: 6rem !important;
  }
  .p-xxl-9 {
    padding: 8rem !important;
  }
  .pt-xxl-9,
  .py-xxl-9 {
    padding-top: 8rem !important;
  }
  .pr-xxl-9,
  .px-xxl-9 {
    padding-right: 8rem !important;
  }
  .pb-xxl-9,
  .py-xxl-9 {
    padding-bottom: 8rem !important;
  }
  .pl-xxl-9,
  .px-xxl-9 {
    padding-left: 8rem !important;
  }
  .p-xxl-10 {
    padding: 10rem !important;
  }
  .pt-xxl-10,
  .py-xxl-10 {
    padding-top: 10rem !important;
  }
  .pr-xxl-10,
  .px-xxl-10 {
    padding-right: 10rem !important;
  }
  .pb-xxl-10,
  .py-xxl-10 {
    padding-bottom: 10rem !important;
  }
  .pl-xxl-10,
  .px-xxl-10 {
    padding-left: 10rem !important;
  }
  .m-xxl-n1 {
    margin: -0.25rem !important;
  }
  .mt-xxl-n1,
  .my-xxl-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-xxl-n1,
  .mx-xxl-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-xxl-n1,
  .my-xxl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xxl-n1,
  .mx-xxl-n1 {
    margin-left: -0.25rem !important;
  }
  .m-xxl-n2 {
    margin: -0.5rem !important;
  }
  .mt-xxl-n2,
  .my-xxl-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-xxl-n2,
  .mx-xxl-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-xxl-n2,
  .my-xxl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-xxl-n2,
  .mx-xxl-n2 {
    margin-left: -0.5rem !important;
  }
  .m-xxl-n3 {
    margin: -1rem !important;
  }
  .mt-xxl-n3,
  .my-xxl-n3 {
    margin-top: -1rem !important;
  }
  .mr-xxl-n3,
  .mx-xxl-n3 {
    margin-right: -1rem !important;
  }
  .mb-xxl-n3,
  .my-xxl-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-xxl-n3,
  .mx-xxl-n3 {
    margin-left: -1rem !important;
  }
  .m-xxl-n4 {
    margin: -1.5rem !important;
  }
  .mt-xxl-n4,
  .my-xxl-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-xxl-n4,
  .mx-xxl-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-xxl-n4,
  .my-xxl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-xxl-n4,
  .mx-xxl-n4 {
    margin-left: -1.5rem !important;
  }
  .m-xxl-n5 {
    margin: -3rem !important;
  }
  .mt-xxl-n5,
  .my-xxl-n5 {
    margin-top: -3rem !important;
  }
  .mr-xxl-n5,
  .mx-xxl-n5 {
    margin-right: -3rem !important;
  }
  .mb-xxl-n5,
  .my-xxl-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-xxl-n5,
  .mx-xxl-n5 {
    margin-left: -3rem !important;
  }
  .m-xxl-n6 {
    margin: -4rem !important;
  }
  .mt-xxl-n6,
  .my-xxl-n6 {
    margin-top: -4rem !important;
  }
  .mr-xxl-n6,
  .mx-xxl-n6 {
    margin-right: -4rem !important;
  }
  .mb-xxl-n6,
  .my-xxl-n6 {
    margin-bottom: -4rem !important;
  }
  .ml-xxl-n6,
  .mx-xxl-n6 {
    margin-left: -4rem !important;
  }
  .m-xxl-n7 {
    margin: -5rem !important;
  }
  .mt-xxl-n7,
  .my-xxl-n7 {
    margin-top: -5rem !important;
  }
  .mr-xxl-n7,
  .mx-xxl-n7 {
    margin-right: -5rem !important;
  }
  .mb-xxl-n7,
  .my-xxl-n7 {
    margin-bottom: -5rem !important;
  }
  .ml-xxl-n7,
  .mx-xxl-n7 {
    margin-left: -5rem !important;
  }
  .m-xxl-n8 {
    margin: -6rem !important;
  }
  .mt-xxl-n8,
  .my-xxl-n8 {
    margin-top: -6rem !important;
  }
  .mr-xxl-n8,
  .mx-xxl-n8 {
    margin-right: -6rem !important;
  }
  .mb-xxl-n8,
  .my-xxl-n8 {
    margin-bottom: -6rem !important;
  }
  .ml-xxl-n8,
  .mx-xxl-n8 {
    margin-left: -6rem !important;
  }
  .m-xxl-n9 {
    margin: -8rem !important;
  }
  .mt-xxl-n9,
  .my-xxl-n9 {
    margin-top: -8rem !important;
  }
  .mr-xxl-n9,
  .mx-xxl-n9 {
    margin-right: -8rem !important;
  }
  .mb-xxl-n9,
  .my-xxl-n9 {
    margin-bottom: -8rem !important;
  }
  .ml-xxl-n9,
  .mx-xxl-n9 {
    margin-left: -8rem !important;
  }
  .m-xxl-n10 {
    margin: -10rem !important;
  }
  .mt-xxl-n10,
  .my-xxl-n10 {
    margin-top: -10rem !important;
  }
  .mr-xxl-n10,
  .mx-xxl-n10 {
    margin-right: -10rem !important;
  }
  .mb-xxl-n10,
  .my-xxl-n10 {
    margin-bottom: -10rem !important;
  }
  .ml-xxl-n10,
  .mx-xxl-n10 {
    margin-left: -10rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mt-xxl-auto,
  .my-xxl-auto {
    margin-top: auto !important;
  }
  .mr-xxl-auto,
  .mx-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-auto,
  .my-xxl-auto {
    margin-bottom: auto !important;
  }
  .ml-xxl-auto,
  .mx-xxl-auto {
    margin-left: auto !important;
  }
}
html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

.container {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  height: 100%;
  max-width: 1700px;
}
@media screen and (min-width: 768px) {
  .container {
    padding: 0 50px;
  }
}

.kb-text-h1, .kb-text-h2, .kb-text-h3, .kb-text-h4, .kb-text-h5 {
  line-height: 1.2;
  color: var(--kb-color-white);
  text-wrap: balance;
  letter-spacing: 0;
  text-transform: inherit;
}
.kb-text-h1 {
  font-size: 2.5rem;
  font-weight: 800;
}
.kb-text-h2 {
  font-size: 2rem;
  font-weight: 800;
}
.kb-text-h3 {
  font-size: 1.5rem;
  font-weight: 700;
}
.kb-text-h4 {
  font-size: 1.25rem;
  font-weight: 700;
}
.kb-text-h5 {
  font-size: 1rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .kb-text-h1 {
    font-size: 3rem;
  }
  .kb-text-h2 {
    font-size: 2rem;
  }
  .kb-text-h3 {
    font-size: 1.5rem;
  }
  .kb-text-h4 {
    font-size: 1.3rem;
  }
  .kb-text-h5 {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 992px) {
  .kb-text-h1 {
    font-size: 3.75rem;
  }
  .kb-text-h2 {
    font-size: 3rem;
  }
  .kb-text-h3 {
    font-size: 2rem;
  }
  .kb-text-h4 {
    font-size: 1.75rem;
  }
  .kb-text-h5 {
    font-size: 1.25rem;
  }
}

a {
  text-decoration: none;
}

.kb-richtext h1 {
  line-height: 1.2;
  color: var(--kb-color-white);
  text-wrap: balance;
  letter-spacing: 0;
  text-transform: inherit;
}
@media screen and (min-width: 768px) {
  .kb-richtext h1 {
    font-size: 3rem;
  }
}
@media screen and (min-width: 992px) {
  .kb-richtext h1 {
    font-size: 3.75rem;
  }
}

.kb-text--uppercase {
  text-transform: uppercase !important;
  letter-spacing: 0.0625em !important;
}
.kb-text--airy {
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
}
.kb-text--lowercase {
  text-transform: lowercase !important;
}
.kb-text--capitalize {
  text-transform: capitalize !important;
}
.kb-text--nowrap {
  white-space: nowrap !important;
}
.kb-text--left {
  text-align: left !important;
}
.kb-text--right {
  text-align: right !important;
}
.kb-text--center {
  text-align: center !important;
}
.kb-text--balance {
  text-wrap: balance !important;
}
.kb-text--justify {
  text-align: justify !important;
}
.kb-text--normal {
  font-weight: 400 !important;
}
.kb-text--bold {
  font-weight: 700 !important;
}
.kb-text--strike {
  text-decoration: line-through !important;
}
.kb-text--title {
  font-family: "Big Shoulders", sans-serif;
  font-weight: 700;
  letter-spacing: -0.035rem !important;
}
strong,
b {
  font-weight: 700 !important;
}

.kb-text--italic {
  font-style: italic !important;
}
em,
i {
  font-style: italic !important;
}

.kb-text--underline {
  text-decoration: underline !important;
}
u {
  text-decoration: underline !important;
}

.kb-text-color--brand {
  color: var(--kb-color-brand-500) !important;
}
.kb-text-color--white {
  color: var(--kb-color-white) !important;
}
.kb-text-color--light-gray {
  color: var(--kb-color-neutral-400) !important;
}
.kb-text-color--black {
  color: var(--kb-color-black) !important;
}
.kb-text-color--error {
  color: red !important;
}

.kb-beta-btn {
  font-family: var(--kb-body-font);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  appearance: none;
  background: var(--kb-color-brand-500);
  border: 1px solid var(--kb-color-brand-500);
  border-radius: 6px;
  padding: 1rem 1.5rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  color: var(--kb-color-black);
  text-shadow: 0 0 0 var(--kb-color-black);
  transition: background 250ms ease, color 250ms ease, text-shadow 250ms ease;
}
.kb-beta-btn:hover {
  color: var(--kb-color-white);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5), 0 1px 1px rgba(0, 0, 0, 0.3);
}
.kb-beta-btn--full-width {
  width: 100%;
}
.kb-beta-btn--disabled, .kb-beta-btn:disabled {
  background: var(--kb-color-neutral-700);
  color: var(--kb-color-neutral-500);
  border-color: var(--kb-color-neutral-700);
}
.kb-beta-btn--disabled:hover, .kb-beta-btn:disabled:hover {
  cursor: not-allowed;
  color: var(--kb-color-neutral-500);
  background: var(--kb-color-neutral-700);
  text-shadow: 0 0 0 var(--kb-color-black);
}
.kb-beta-btn--sm {
  padding: 0.9em 1rem;
  font-size: 0.75rem;
}
.kb-beta-btn--lg {
  padding: 1.25rem 1.75rem;
  font-size: 1.25rem;
}
.kb-beta-btn--secondary {
  background: transparent;
  color: var(--kb-color-brand-500);
}
.kb-beta-btn--secondary:hover {
  background: transparent;
}
.kb-beta-btn--secondary.kb-beta-btn--disabled, .kb-beta-btn--secondary:disabled {
  color: var(--kb-color-neutral-500);
  border-color: var(--kb-color-neutral-700);
}
.kb-beta-btn--secondary.kb-beta-btn--disabled:hover, .kb-beta-btn--secondary:disabled:hover {
  cursor: not-allowed;
  color: var(--kb-color-neutral-500);
  text-shadow: 0 0 0 var(--kb-color-black);
}
.kb-beta-btn--tertiary {
  background: none;
  border: 0;
  color: var(--kb-color-brand-500);
  padding: 0;
  transition: color 250ms ease;
}
.kb-beta-btn--tertiary::after {
  content: " →";
  display: inline-block;
  margin-left: 0.3rem;
  transition: transform 250ms ease;
}
.kb-beta-btn--tertiary:hover {
  background: none;
  color: var(--kb-color-white);
}
.kb-beta-btn--tertiary:hover::after {
  transform: translateX(2px);
}
.kb-beta-btn--tertiary.kb-beta-btn--disabled, .kb-beta-btn--tertiary:disabled {
  color: var(--kb-color-neutral-500);
}
.kb-beta-btn--tertiary.kb-beta-btn--disabled:hover, .kb-beta-btn--tertiary:disabled:hover {
  cursor: not-allowed;
  color: var(--kb-color-neutral-500);
}

.kbds-faq {
  display: flex;
  flex-direction: column;
  margin: 150px 0;
  color: var(--kb-color-white);
}
.kbds-faq__intro {
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (min-width: 992px) {
  .kbds-faq__intro {
    text-align: left;
    margin-bottom: 0;
    max-width: 300px;
  }
}
.kbds-faq__intro a {
  color: var(--kb-color-brand-500);
}
@media screen and (min-width: 992px) {
  .kbds-faq {
    flex-direction: row;
    justify-content: space-around;
    gap: 80px;
  }
}
.kbds-faq__title {
  position: relative;
  margin-bottom: 30px;
}
@media screen and (min-width: 992px) {
  .kbds-faq__title {
    margin-bottom: 50px;
  }
}
.kbds-faq__title::after {
  content: "";
  display: block;
  width: 80px;
  height: 1px;
  margin: 30px auto 0;
  background: #808080;
}
@media screen and (min-width: 992px) {
  .kbds-faq__title::after {
    margin: 50px 0 0;
  }
}
.kbds-faq__items {
  width: 100%;
}
.kbds-faq__item {
  border-bottom: 1px solid var(--kb-color-neutral-500);
}
.kbds-faq__item.active .kbds-faq__answer {
  height: auto;
  display: block;
  opacity: 1;
  transform: translateY(0);
  margin-bottom: 1rem;
}
.kbds-faq__item.active .kbds-faq__question {
  color: var(--kb-color-brand-500);
}
.kbds-faq__item.active .kbds-faq__question::after {
  transform: rotate(45deg);
}
.kbds-faq__question {
  position: relative;
  transition: color 250ms ease;
  cursor: pointer;
  padding: 20px;
  text-transform: none;
  line-height: inherit;
  padding-right: 60px;
}
.kbds-faq__question::after {
  content: "+";
  position: absolute;
  top: 13px;
  right: 20px;
  font-size: 1.75rem;
  transform: rotate(0deg);
  transition: transform 500ms ease;
}
.kbds-faq__answer {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(15px);
  padding: 0 20px;
  color: var(--kb-color-neutral-300);
  transition: transform 550ms ease, opacity 550ms ease;
}
.kbds-faq__answer p {
  margin: 0 0 1rem;
  line-height: 1.6;
  letter-spacing: 0;
  font-weight: 400;
  font-size: 1.143rem;
}
.kbds-faq__answer a {
  color: #fbad18;
}
.kbds-faq__answer ul {
  margin: 1rem 0;
}
.kbds-faq__answer ul li {
  list-style: inherit;
  margin-left: 1.5rem;
}

.kb-separator {
  height: 1px;
  background: var(--kb-color-neutral-700);
  border: none;
}

.kbds-four-up-blocks {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  gap: 2rem;
  margin: 8rem 0 0;
}
@media screen and (min-width: 1200px) {
  .kbds-four-up-blocks {
    grid-template-columns: 1fr 1fr;
  }
}

.kbds-four-up-block {
  padding: 0;
  overflow: hidden;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
@media screen and (min-width: 1200px) {
  .kbds-four-up-block {
    background-color: var(--kb-color-neutral-900);
    padding: 3.3rem 4.3rem;
  }
  .kbds-four-up-block:nth-child(3) {
    order: 4;
  }
  .kbds-four-up-block:nth-child(4) {
    order: 3;
  }
}
.kbds-four-up-block__title h2 {
  font-size: 3rem;
  line-height: 1.2;
}
.kbds-four-up-block__description {
  margin: 2rem 0;
}
.kbds-four-up-block__description p {
  font-size: 1.25rem;
}
.kbds-four-up-block--image {
  margin-bottom: 3rem;
  padding: 0;
}
@media screen and (min-width: 1200px) {
  .kbds-four-up-block--image {
    margin-bottom: 0;
  }
}
.kbds-four-up-block__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.kb-input {
  appearance: none;
  background: none;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--kb-color-neutral-700);
  color: white;
  transition: border-color 0.2s ease-in-out;
}
.kb-input:hover {
  border-color: var(--kb-color-neutral-500);
}
.kb-input::placeholder {
  color: var(--kb-color-neutral-400);
}
.kb-input:focus {
  outline: none;
  border-color: var(--kb-color-brand-500);
}
.kb-input--full {
  width: 100%;
}
.kb-input--select {
  font-size: 1rem;
  color: var(--kb-color-neutral-400);
}
.kb-input--select:has(option:checked:not([value=""])) {
  color: white;
}

.kb-card {
  --radius: 0.7rem;
  position: relative;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(to bottom, var(--kb-color-neutral-800) 0%, var(--kb-color-neutral-900) 100%);
  transition: background 0.3s ease;
}
@media screen and (min-width: 768px) {
  .kb-card {
    padding: 3.5rem 3.25rem;
  }
}
.kb-card::before {
  position: absolute;
  top: 1px;
  left: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background: var(--kb-color-neutral-900);
  content: "";
  border-radius: var(--radius);
  z-index: 2;
}
.kb-card > * {
  position: relative;
  z-index: 3;
}
.kb-card--minimal {
  padding: 0;
}
.kb-card--alt {
  --bigger-radius: 4rem;
  border-radius: var(--radius) var(--bigger-radius);
}
.kb-card--alt::before {
  border-radius: var(--radius) var(--bigger-radius);
}
@media screen and (min-width: 768px) {
  .kb-card--alt {
    --bigger-radius: 6.25rem;
  }
}
.kb-card--has-hover {
  cursor: pointer;
  transition: transform 0.4s ease;
}
.kb-card--has-hover::after {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, var(--kb-color-neutral-700) 0%, var(--kb-color-neutral-900) 100%);
  content: "";
  border-radius: var(--radius);
  z-index: 1;
  transition: opacity 0.3s ease;
}
.kb-card--has-hover:hover {
  transform: translateY(-2px);
}
.kb-card--has-hover:hover::after {
  opacity: 1;
}

.tooltip__trigger {
  position: relative;
  cursor: help;
}
.tooltip__container {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  width: 170px;
  padding: 8px 12px;
  border-radius: 4px;
  background: var(--kb-color-neutral-900);
  z-index: var(--kb-zindex-tooltip);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 150ms ease-in-out, transform 150ms ease-in-out, visibility 150ms ease-in-out;
}
.tooltip__container::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--kb-color-neutral-900);
}
.tooltip__trigger:hover .tooltip__container, .tooltip__trigger.tooltip--active .tooltip__container {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.tooltip__trigger:focus {
  outline: 2px solid var(--kb-color-brand-500);
  outline-offset: 2px;
}

.kbds-banner {
  position: relative;
  margin: 3.5rem 0;
  background: var(--kb-color-black);
  border-radius: 1rem;
  overflow: hidden;
}
.kbds-banner__title {
  max-width: 600px;
}
.kbds-banner__intro-image {
  width: auto;
  height: 40px;
  max-width: 100%;
}
.kbds-banner__image {
  position: relative;
  width: 100%;
  aspect-ratio: 1.18/1;
}
.kbds-banner__image img {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  transition: transform 0.4s ease-out;
}
.kbds-banner__image::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(to top, rgb(17, 17, 17) 0%, rgba(17, 17, 17, 0) 18%);
}
.kbds-banner__image--parallax {
  transform: scale(1.05);
  transition: transform 0.4s ease-out;
}
.kbds-banner__image--parallax::after {
  box-shadow: inset 0 0 50px 45px rgba(17, 17, 17, 0.5);
}
.kbds-banner__image--mobile {
  display: flex;
}
.kbds-banner__image--desktop {
  display: none;
}
.kbds-banner__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  height: 100%;
  padding: 2rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .kbds-banner__content {
    text-align: left;
  }
}
.kbds-banner__title-image {
  display: block;
  width: 150px;
  height: auto;
  max-width: 100%;
  flex-grow: 0;
  flex-shrink: 1;
}
@media screen and (min-width: 768px) {
  .kbds-banner {
    --gradient-width: 100px;
    height: 400px;
  }
  .kbds-banner__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    aspect-ratio: unset;
  }
  .kbds-banner__image--mobile {
    display: none;
  }
  .kbds-banner__image--desktop {
    display: flex;
  }
  .kbds-banner__image::after {
    background: linear-gradient(to right, #111111 0%, #111111 var(--gradient-width), rgba(17, 17, 17, 0) calc(var(--gradient-width) + 18vw));
  }
  .kbds-banner__image img {
    object-position: center right;
    height: 100%;
    width: calc(100% - var(--gradient-width));
    left: var(--gradient-width);
  }
  .kbds-banner__content {
    padding: 10rem 0;
    align-items: flex-start;
    gap: 2.5rem;
  }
}
@media screen and (min-width: 992px) {
  .kbds-banner {
    --gradient-width: 100px;
    height: 500px;
  }
  .kbds-banner__title-image {
    width: 280px;
  }
}
@media screen and (min-width: 1200px) {
  .kbds-banner__title-image {
    width: 365px;
  }
}

:root {
  --swiper-pagination-right: 40px;
}

.swiper.kbds-hero.swiper-vertical {
  transition: height 250ms ease;
}
.swiper.kbds-hero.swiper-vertical .swiper-pagination {
  margin-top: -45px;
}
.swiper .swiper-pagination-bullet {
  height: 9px;
  width: 9px;
  background: white;
  opacity: 0.8;
}
.swiper .swiper-pagination-bullet-active {
  background-color: var(--kb-color-brand-500);
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  background: var(--kb-color-neutral-800);
  border-radius: 100%;
  width: 40px;
  height: 40px;
  transition: background 250ms ease;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: var(--kb-color-neutral-700);
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  background: var(--kb-color-neutral-900);
  opacity: 0.8;
  cursor: not-allowed;
}
.swiper-button-prev.swiper-button-disabled svg path,
.swiper-button-next.swiper-button-disabled svg path {
  fill: var(--kb-color-neutral-600);
}
.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}
.swiper-button-prev svg,
.swiper-button-next svg {
  height: 20px;
}
.swiper-button-prev svg path,
.swiper-button-next svg path {
  fill: var(--kb-color-white);
}

.swiper-button-prev {
  left: 3rem;
}

.swiper-button-next {
  right: 3rem;
}

.kbds-collection-banner {
  position: relative;
  aspect-ratio: 6/5;
  overflow: hidden;
  margin-bottom: 5.5rem;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}
@media screen and (min-width: 768px) {
  .kbds-collection-banner {
    aspect-ratio: 21/6;
  }
}
.kbds-collection-banner__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.kbds-collection-banner__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.kbds-collection-banner__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 1rem;
  height: 100%;
  padding: 1.75rem 2.25rem;
}
@media screen and (min-width: 768px) {
  .kbds-collection-banner__content {
    padding: 2.25rem 3rem;
  }
}

.kbds-countdown {
  padding: 3rem 0;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .kbds-countdown {
    text-align: left;
  }
}
.kbds-countdown__content {
  display: flex;
}
.kbds-countdown__intro-icon {
  display: inline-block;
  height: 15px;
  width: auto;
}
.kbds-countdown__intro-icon svg {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .kbds-countdown__intro-icon {
    height: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .kbds-countdown__intro-icon {
    height: 30px;
  }
}
.kbds-countdown__title {
  margin: 1.125rem 0;
}
.kbds-countdown__timer {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 9vw;
  font-weight: 600;
  line-height: 1;
  color: var(--kb-color-neutral-400);
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
  transition: font-size 0.25s ease-in-out;
}
@media screen and (min-width: 1200px) {
  .kbds-countdown__timer {
    font-size: 5rem;
    gap: 0.5rem;
  }
}
@media screen and (min-width: 1400px) {
  .kbds-countdown__timer {
    gap: 1rem;
    font-size: 6rem;
  }
}
.kbds-countdown__timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
@media screen and (min-width: 768px) {
  .kbds-countdown__timer-unit {
    gap: 0.5rem;
  }
}
.kbds-countdown__timer-unit:last-child {
  text-align: left;
}
.kbds-countdown__digits-wrapper {
  display: flex;
  align-items: center;
}
.kbds-countdown__unit-label {
  font-weight: 600;
  color: var(--kb-color-neutral-700);
}
.kbds-countdown__digit-container {
  display: flex;
  position: relative;
}
.kbds-countdown__digit-flip {
  position: relative;
  text-align: center;
}
.kbds-countdown__digit-flip--animate .kbds-countdown__digit--current {
  opacity: 0;
  animation: flip-out 0.2s ease-in forwards;
}
.kbds-countdown__digit-flip--animate .kbds-countdown__digit--next {
  opacity: 0;
  animation: flip-in 0.35s ease-out forwards;
  animation-delay: 0.25s;
}
.kbds-countdown__digit {
  color: var(--kb-color-brand-500);
  display: block;
  width: 1.1ch;
}
@media screen and (min-width: 1400px) {
  .kbds-countdown__digit {
    width: 1.2ch;
  }
}
.kbds-countdown__digit--current {
  position: relative;
  z-index: 2;
}
.kbds-countdown__digit--next {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
}
.kbds-countdown__digit--pad {
  color: var(--kb-color-neutral-400);
}
.kbds-countdown__digit--value {
  opacity: 1;
}
@keyframes flip-out {
  0% {
    top: 0;
    opacity: 1;
  }
  30% {
    top: -3%;
    opacity: 1;
  }
  100% {
    top: 10%;
    opacity: 0;
  }
}
@keyframes flip-in {
  0% {
    opacity: 0;
    transform: translateY(-10%);
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}

.kbds-hero__content {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .kbds-hero__content {
    aspect-ratio: 1920/720;
    min-height: 350px;
  }
}
@media screen and (min-width: 992px) {
  .kbds-hero__content {
    min-height: 520px;
  }
}
.kbds-hero__caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 2rem;
  text-align: center;
  text-wrap: balance;
}
@media screen and (min-width: 768px) {
  .kbds-hero__caption {
    align-items: flex-start;
    text-align: left;
    width: 450px;
    background: linear-gradient(to right, rgba(var(--kb-color-black-rgb), 1) 0%, rgba(var(--kb-color-black-rgb), 1) 250px, rgba(var(--kb-color-black-rgb), 0) 450px);
  }
}
@media screen and (min-width: 992px) {
  .kbds-hero__caption {
    width: 730px;
    background: linear-gradient(to right, rgba(var(--kb-color-black-rgb), 1) 0%, rgba(var(--kb-color-black-rgb), 1) 250px, rgba(var(--kb-color-black-rgb), 0) 730px);
  }
}
@media screen and (min-width: 768px) {
  .kbds-hero__image {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    object-fit: cover;
    object-position: center left;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
}
.kbds-hero__image--mobile {
  margin: 0 -3.5rem;
  width: calc(100% + 7rem);
  height: auto;
}
.kbds-hero__intro-image {
  display: block;
  width: auto;
  height: 70px;
}
.kbds-hero__title-image {
  display: block;
  width: auto;
  height: 60px;
  transition: width 0.3s ease, height 0.3s ease;
}
@media screen and (min-width: 768px) {
  .kbds-hero__title-image {
    height: 70px;
  }
}
@media screen and (min-width: 992px) {
  .kbds-hero__title-image {
    height: 100px;
  }
}
.kbds-hero__ctas {
  margin: 1.25rem 0 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .kbds-hero__ctas {
    margin: 0;
  }
}

.kbds-ribbon {
  position: sticky;
  top: 5.105rem;
  background: var(--kb-color-brand-500);
  color: var(--kb-color-neutral-900);
  width: 100%;
  z-index: 1000;
}
@media screen and (min-width: 768px) {
  .kbds-ribbon {
    top: 4.4rem;
  }
}
@media screen and (min-width: 992px) {
  .kbds-ribbon {
    top: 4.05rem;
  }
}
@media screen and (min-width: 1400px) {
  .kbds-ribbon {
    top: 4.8rem;
  }
}
.kbds-ribbon__wrapper {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: 1fr 1fr;
}
@media screen and (min-width: 768px) {
  .kbds-ribbon__wrapper {
    gap: 2rem;
  }
}
.kbds-ribbon__text {
  padding: 1.5rem 0;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .kbds-ribbon__text {
    padding: 1rem 0;
    flex-direction: row;
    gap: 2rem;
    align-items: center;
  }
  .kbds-ribbon__text > * {
    white-space: nowrap;
  }
}
.kbds-ribbon__image-title {
  width: 60%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .kbds-ribbon__image-title {
    width: 250px;
    height: auto;
  }
}
.kbds-ribbon__image-primary {
  height: 100%;
}
.kbds-ribbon__image-primary img {
  display: block;
  width: auto;
  height: 100%;
  object-fit: contain;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .kbds-ribbon__image-primary img {
    max-width: 600px;
  }
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 80px;
}
@media screen and (width >= 992px) {
  [id] {
    scroll-margin-top: 100px;
  }
}

body {
  color: white;
}

div:focus-visible,
section:focus-visible,
main:focus-visible {
  outline: none;
}

/*# sourceMappingURL=bundle.min.css.map */
