@charset "UTF-8";
/*-------------------------------
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
-------------------------------*/
@import url("https://p.typekit.net/p.css?s=1&k=qaq1joy&ht=tk&f=26963.26964.26965.26966.26969.26970.26979.26980.26983.26984.26993.26994.26997.26998&a=4907746&app=typekit&e=css");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;800;900&display=swap");
:root {
  /* Color Variables */
  --kb-white: hsl(0, 0%, 100%);
  --kb-yellow: #fbad18;
  --kb-gray-light: #767676;
  --kb-gray-light-1: #808080;
  --kb-gray-medium: #494949;
  --kb-gray-dark: #181818;
  --kb-gray-dar-1: #2f2f2f;
  --kb-black: #111111;
  --kb-yellow-rgb: 251, 173, 24;
  --kb-text-gray-light: #d8d8d8;
  /* Font Family Variables */
  --kb-heading-font: "Blender Pro", Arial, Helvetica, sans-serif;
  --kb-body-font: "objektiv-mk1", Arial, Helvetica, sans-serif;
  --kb-body-font-poppins: "poppins", Arial, Helvetica, sans-serif;
  /* Darker  Colors*/
  --kb-yellow-darker: #c78915;
  --kb-yellow-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;
}

html {
  font-size: 100%;
}

body {
  font-family: var(--kb-body-font);
  background-color: var(--kb-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 (min-width: 768px) {
  .app__container {
    max-width: 680px;
  }
}
@media screen and (min-width: 992px) {
  .app__container {
    max-width: 900px;
  }
  .hide-desktop {
    display: none;
  }
  .show-desktop {
    display: block;
  }
}
@media screen and (min-width: 1280px) {
  .app__container {
    max-width: 1200px;
  }
}
@media screen and (min-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-white);
}

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

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

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

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

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

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

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

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

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

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

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

.color-bg-black {
  background-color: var(--kb-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-text-gray-light);
}

.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-yellow);
}

.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-yellow);
  font-weight: 700;
}

/*-------------------------------
05: Buttons
-------------------------------*/
button,
input[type=button],
input[type=submit] {
  border-radius: 0px;
  -webkit-appearance: none;
}

.kb-btn {
  border-radius: 0px;
  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;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  height: 45px;
  line-height: 45px;
  min-width: 140px;
  background-color: var(--kb-gray-light);
  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-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.disabled,
.kb-btn:disabled,
fieldset:disabled .kb-btn {
  /*
  pointer-events: none;
  cursor: not-allowed !important;
  */
}

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

.kb-btn-primary:disabled {
  background-color: var(--kb-gray-light);
}

.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-yellow);
}

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

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

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

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

.kb-icon-btn {
  background-color: var(--kb-black);
  border: 1px solid var(--kb-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.136363rem;
  border-color: var(--kb-gray-light-1);
}

.kb-btn-image {
  width: 40px;
}

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

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

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

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

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

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

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

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

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

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

.field-cover label span {
  color: var(--kb-text-gray-light);
  margin-top: 0;
}

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

.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;
  -webkit-user-select: none;
  -moz-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: #111111;
  border: 2px solid var(--kb-gray-light-1);
}

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

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

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

.kb-checkbox:checked + label:after {
  --borderWidth: 4px;
  --borderColor: var(--kb-yellow);
  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: var(--borderWidth) solid var(--borderColor);
  border-right: var(--borderWidth) solid var(--borderColor);
}

/* Input Fields */
.input-field-wrapper {
  position: relative;
}

.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%;
  background-color: transparent;
  border: 1px solid var(--kb-gray-light-1);
  font-weight: 400;
  font-style: normal;
  line-height: 45px;
  font-size: 17px;
  background-color: var(--kb-black);
  color: var(--kb-white);
  border-radius: 0;
  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-text-gray-light);
}

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

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

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

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

.input-focus-white:focus + .form-btn svg path {
  fill: var(--kb-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-gray-light-1);
  outline: none !important;
  color: var(--kb-white);
}

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

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

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

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

.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 */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: 0;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  width: 100%;
  height: 100px;
  height: 40px;
  line-height: 40px;
  background: transparent;
  color: var(--kb-text-gray-light);
  cursor: pointer;
  position: relative;
  border: none;
}

.kb-select option {
  font-size: 17px;
  color: inherit;
  background-color: var(--kb-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: #ffffff #494949;
}

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

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

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

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

/*-------------------------------
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: #ffffff;
  font-size: 34px;
}

.color-block-content p {
  font-size: 16px;
  color: var(--kb-text-gray-light);
}

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

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

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

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

.simple-block span {
  font-size: 14px;
}

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

.simple-block span {
  color: var(--kb-text-gray-light);
  margin-top: 16px;
  display: block;
}

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

.custom-scroll {
  margin-top: 40px;
  border-top: 1px solid var(--kb-gray-light-1);
  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(0px);
}

.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-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-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;
}

.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;
}

.off-canvas-header {
  padding: 2px 24px;
}

.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-text-gray-light);
  text-transform: capitalize;
}

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

@media screen and (min-width: 680px) {
  .off-canvas-search {
    max-width: 500px;
    border-left: 1px solid var(--kb-gray-light-1);
  }
  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 (min-width: 1920px) {
  .off-canvas-search {
    height: 100vh;
  }
}
@font-face {
  font-family: "Blender Pro";
  src: url("BlenderPro-Medium.eot");
  src: url("BlenderPro-Medium.eot?#iefix") format("embedded-opentype"), url("BlenderPro-Medium.woff2") format("woff2"), url("BlenderPro-Medium.woff") format("woff"), url("BlenderPro-Medium.ttf") format("truetype"), url("BlenderPro-Medium.svg#BlenderPro-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Blender Pro Book";
  src: url("BlenderPro-Book.eot");
  src: url("BlenderPro-Book.eot?#iefix") format("embedded-opentype"), url("BlenderPro-Book.woff2") format("woff2"), url("BlenderPro-Book.woff") format("woff"), url("BlenderPro-Book.ttf") format("truetype"), url("BlenderPro-Book.svg#BlenderPro-Book") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Blender Pro";
  src: url("BlenderPro-Bold.eot");
  src: url("BlenderPro-Bold.eot?#iefix") format("embedded-opentype"), url("BlenderPro-Bold.woff2") format("woff2"), url("BlenderPro-Bold.woff") format("woff"), url("BlenderPro-Bold.ttf") format("truetype"), url("BlenderPro-Bold.svg#BlenderPro-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Blender Pro";
  src: url("BlenderPro-Heavy.eot");
  src: url("BlenderPro-Heavy.eot?#iefix") format("embedded-opentype"), url("BlenderPro-Heavy.woff2") format("woff2"), url("BlenderPro-Heavy.woff") format("woff"), url("BlenderPro-Heavy.ttf") format("truetype"), url("BlenderPro-Heavy.svg#BlenderPro-Heavy") format("svg");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Blender Pro";
  src: url("BlenderPro-Thin.eot");
  src: url("BlenderPro-Thin.eot?#iefix") format("embedded-opentype"), url("BlenderPro-Thin.woff2") format("woff2"), url("BlenderPro-Thin.woff") format("woff"), url("BlenderPro-Thin.ttf") format("truetype"), url("BlenderPro-Thin.svg#BlenderPro-Thin") format("svg");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Blender Pro Book";
  src: url("BlenderPro-BookItalic.eot");
  src: url("BlenderPro-BookItalic.eot?#iefix") format("embedded-opentype"), url("BlenderPro-BookItalic.woff2") format("woff2"), url("BlenderPro-BookItalic.woff") format("woff"), url("BlenderPro-BookItalic.ttf") format("truetype"), url("BlenderPro-BookItalic.svg#BlenderPro-BookItalic") format("svg");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Blender Pro";
  src: url("BlenderPro-MediumItalic.eot");
  src: url("BlenderPro-MediumItalic.eot?#iefix") format("embedded-opentype"), url("BlenderPro-MediumItalic.woff2") format("woff2"), url("BlenderPro-MediumItalic.woff") format("woff"), url("BlenderPro-MediumItalic.ttf") format("truetype"), url("BlenderPro-MediumItalic.svg#BlenderPro-MediumItalic") format("svg");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Blender Pro";
  src: url("BlenderPro-BoldItalic.eot");
  src: url("BlenderPro-BoldItalic.eot?#iefix") format("embedded-opentype"), url("BlenderPro-BoldItalic.woff2") format("woff2"), url("BlenderPro-BoldItalic.woff") format("woff"), url("BlenderPro-BoldItalic.ttf") format("truetype"), url("BlenderPro-BoldItalic.svg#BlenderPro-BoldItalic") format("svg");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
/* Objective MK */
@font-face {
  font-family: "Objektiv Mk1";
  src: url("ObjektivMk1_W_Bd.eot");
  src: url("ObjektivMk1_W_Bd.eot?#iefix") format("embedded-opentype"), url("ObjektivMk1_W_Bd.woff2") format("woff2"), url("ObjektivMk1_W_Bd.woff") format("woff");
  font-weight: bold;
  font-display: swap;
}
@font-face {
  font-family: "Objektiv Mk1";
  src: url("ObjektivMk1_W_Rg.eot");
  src: url("ObjektivMk1_W_Rg.eot?#iefix") format("embedded-opentype"), url("ObjektivMk1_W_Rg.woff2") format("woff2"), url("ObjektivMk1_W_Rg.woff") format("woff");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Objektiv Mk2";
  src: url("ObjektivMk2_W_Bd.eot");
  src: url("ObjektivMk2_W_Bd.eot?#iefix") format("embedded-opentype"), url("ObjektivMk2_W_Bd.woff2") format("woff2"), url("ObjektivMk2_W_Bd.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Objektiv Mk2";
  src: url("ObjektivMk2_W_Rg.eot");
  src: url("ObjektivMk2_W_Rg.eot?#iefix") format("embedded-opentype"), url("ObjektivMk2_W_Rg.woff2") format("woff2"), url("ObjektivMk2_W_Rg.woff") format("woff");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Objektiv Mk3";
  src: url("ObjektivMk3_W_Bd.eot");
  src: url("ObjektivMk3_W_Bd.eot?#iefix") format("embedded-opentype"), url("ObjektivMk3_W_Bd.woff2") format("woff2"), url("ObjektivMk3_W_Bd.woff") format("woff");
  font-weight: bold;
  font-display: swap;
}
@font-face {
  font-family: "Objektiv Mk3";
  src: url("ObjektivMk3_W_Rg.eot");
  src: url("ObjektivMk3_W_Rg.eot?#iefix") format("embedded-opentype"), url("ObjektivMk3_W_Rg.woff2") format("woff2"), url("ObjektivMk3_W_Rg.woff") format("woff");
  font-weight: 500;
  font-display: swap;
}
/* Generated by Font Squirrel (http://www.fontsquirrel.com) on February 17, 2016 */
@font-face {
  font-family: "poppinsbold";
  src: url("poppins-bold-webfont.eot");
  src: url("poppins-bold-webfont.eot?#iefix") format("embedded-opentype"), url("poppins-bold-webfont.woff2") format("woff2"), url("poppins-bold-webfont.woff") format("woff"), url("poppins-bold-webfont.ttf") format("truetype"), url("poppins-bold-webfont.svg#poppinsbold") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "poppinslight";
  src: url("poppins-light-webfont.eot");
  src: url("poppins-light-webfont.eot?#iefix") format("embedded-opentype"), url("poppins-light-webfont.woff2") format("woff2"), url("poppins-light-webfont.woff") format("woff"), url("poppins-light-webfont.ttf") format("truetype"), url("poppins-light-webfont.svg#poppinslight") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "poppinsmedium";
  src: url("poppins-medium-webfont.eot");
  src: url("poppins-medium-webfont.eot?#iefix") format("embedded-opentype"), url("poppins-medium-webfont.woff2") format("woff2"), url("poppins-medium-webfont.woff") format("woff"), url("poppins-medium-webfont.ttf") format("truetype"), url("poppins-medium-webfont.svg#poppinsmedium") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "poppins";
  src: url("poppins-regular-webfont.eot");
  src: url("poppins-regular-webfont.eot?#iefix") format("embedded-opentype"), url("poppins-regular-webfont.woff2") format("woff2"), url("poppins-regular-webfont.woff") format("woff"), url("poppins-regular-webfont.ttf") format("truetype"), url("poppins-regular-webfont.svg#poppinsregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "poppinssemibold";
  src: url("poppins-semibold-webfont.eot");
  src: url("poppins-semibold-webfont.eot?#iefix") format("embedded-opentype"), url("poppins-semibold-webfont.woff2") format("woff2"), url("poppins-semibold-webfont.woff") format("woff"), url("poppins-semibold-webfont.ttf") format("truetype"), url("poppins-semibold-webfont.svg#poppinssemibold") format("svg");
  font-weight: normal;
  font-style: normal;
}
/*
 * The Typekit service used to deliver this font or fonts for use on websites
 * is provided by Adobe and is subject to these Terms of Use
 * http://www.adobe.com/products/eulas/tou_typekit. For font license
 * information, see the list below.
 *
 * objektiv-mk1:
 *   - http://typekit.com/eulas/00000000000000007735b56f
 *   - http://typekit.com/eulas/00000000000000007735b571
 *   - http://typekit.com/eulas/00000000000000007735b575
 *   - http://typekit.com/eulas/00000000000000007735b578
 *   - http://typekit.com/eulas/00000000000000007735b588
 *   - http://typekit.com/eulas/00000000000000007735b583
 * objektiv-mk2:
 *   - http://typekit.com/eulas/00000000000000007735b573
 *   - http://typekit.com/eulas/00000000000000007735b576
 *   - http://typekit.com/eulas/00000000000000007735b581
 *   - http://typekit.com/eulas/00000000000000007735b582
 * objektiv-mk3:
 *   - http://typekit.com/eulas/00000000000000007735b577
 *   - http://typekit.com/eulas/00000000000000007735b57a
 *   - http://typekit.com/eulas/00000000000000007735b580
 *   - http://typekit.com/eulas/00000000000000007735b584
 *
 * © 2009-2021 Adobe Systems Incorporated. All Rights Reserved.
 */
/*{"last_published":"2021-09-17 16:20:38 UTC"}*/
@font-face {
  font-family: "objektiv-mk1";
  src: url("https://use.typekit.net/af/2a735d/00000000000000007735b56f/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n3&v=3") format("woff2"), url("https://use.typekit.net/af/2a735d/00000000000000007735b56f/30/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n3&v=3") format("woff"), url("https://use.typekit.net/af/2a735d/00000000000000007735b56f/30/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n3&v=3") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 300;
}
@font-face {
  font-family: "objektiv-mk1";
  src: url("https://use.typekit.net/af/10de34/00000000000000007735b571/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i3&v=3") format("woff2"), url("https://use.typekit.net/af/10de34/00000000000000007735b571/30/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i3&v=3") format("woff"), url("https://use.typekit.net/af/10de34/00000000000000007735b571/30/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i3&v=3") format("opentype");
  font-display: swap;
  font-style: italic;
  font-weight: 300;
}
@font-face {
  font-family: "objektiv-mk1";
  src: url("https://use.typekit.net/af/17af94/00000000000000007735b575/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i4&v=3") format("woff2"), url("https://use.typekit.net/af/17af94/00000000000000007735b575/30/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i4&v=3") format("woff"), url("https://use.typekit.net/af/17af94/00000000000000007735b575/30/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i4&v=3") format("opentype");
  font-display: swap;
  font-style: italic;
  font-weight: 400;
}
@font-face {
  font-family: "objektiv-mk1";
  src: url("https://use.typekit.net/af/6a3e44/00000000000000007735b578/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff2"), url("https://use.typekit.net/af/6a3e44/00000000000000007735b578/30/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff"), url("https://use.typekit.net/af/6a3e44/00000000000000007735b578/30/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: "objektiv-mk1";
  src: url("https://use.typekit.net/af/a371b0/00000000000000007735b588/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff2"), url("https://use.typekit.net/af/a371b0/00000000000000007735b588/30/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff"), url("https://use.typekit.net/af/a371b0/00000000000000007735b588/30/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}
@font-face {
  font-family: "objektiv-mk1";
  src: url("https://use.typekit.net/af/37c75f/00000000000000007735b583/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i7&v=3") format("woff2"), url("https://use.typekit.net/af/37c75f/00000000000000007735b583/30/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i7&v=3") format("woff"), url("https://use.typekit.net/af/37c75f/00000000000000007735b583/30/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i7&v=3") format("opentype");
  font-display: swap;
  font-style: italic;
  font-weight: 700;
}
@font-face {
  font-family: "objektiv-mk2";
  src: url("https://use.typekit.net/af/84659b/00000000000000007735b573/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i4&v=3") format("woff2"), url("https://use.typekit.net/af/84659b/00000000000000007735b573/30/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i4&v=3") format("woff"), url("https://use.typekit.net/af/84659b/00000000000000007735b573/30/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i4&v=3") format("opentype");
  font-display: swap;
  font-style: italic;
  font-weight: 400;
}
@font-face {
  font-family: "objektiv-mk2";
  src: url("https://use.typekit.net/af/986a34/00000000000000007735b576/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff2"), url("https://use.typekit.net/af/986a34/00000000000000007735b576/30/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff"), url("https://use.typekit.net/af/986a34/00000000000000007735b576/30/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: "objektiv-mk2";
  src: url("https://use.typekit.net/af/069915/00000000000000007735b581/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff2"), url("https://use.typekit.net/af/069915/00000000000000007735b581/30/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff"), url("https://use.typekit.net/af/069915/00000000000000007735b581/30/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}
@font-face {
  font-family: "objektiv-mk2";
  src: url("https://use.typekit.net/af/fec100/00000000000000007735b582/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i7&v=3") format("woff2"), url("https://use.typekit.net/af/fec100/00000000000000007735b582/30/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i7&v=3") format("woff"), url("https://use.typekit.net/af/fec100/00000000000000007735b582/30/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i7&v=3") format("opentype");
  font-display: swap;
  font-style: italic;
  font-weight: 700;
}
@font-face {
  font-family: "objektiv-mk3";
  src: url("https://use.typekit.net/af/090e98/00000000000000007735b577/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i4&v=3") format("woff2"), url("https://use.typekit.net/af/090e98/00000000000000007735b577/30/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i4&v=3") format("woff"), url("https://use.typekit.net/af/090e98/00000000000000007735b577/30/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i4&v=3") format("opentype");
  font-display: swap;
  font-style: italic;
  font-weight: 400;
}
@font-face {
  font-family: "objektiv-mk3";
  src: url("https://use.typekit.net/af/6be5ea/00000000000000007735b57a/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff2"), url("https://use.typekit.net/af/6be5ea/00000000000000007735b57a/30/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff"), url("https://use.typekit.net/af/6be5ea/00000000000000007735b57a/30/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: "objektiv-mk3";
  src: url("https://use.typekit.net/af/62297c/00000000000000007735b580/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i7&v=3") format("woff2"), url("https://use.typekit.net/af/62297c/00000000000000007735b580/30/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i7&v=3") format("woff"), url("https://use.typekit.net/af/62297c/00000000000000007735b580/30/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i7&v=3") format("opentype");
  font-display: swap;
  font-style: italic;
  font-weight: 700;
}
@font-face {
  font-family: "objektiv-mk3";
  src: url("https://use.typekit.net/af/600363/00000000000000007735b584/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff2"), url("https://use.typekit.net/af/600363/00000000000000007735b584/30/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff"), url("https://use.typekit.net/af/600363/00000000000000007735b584/30/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}
.tk-objektiv-mk1 {
  font-family: "objektiv-mk1", sans-serif;
}

.tk-objektiv-mk2 {
  font-family: "objektiv-mk2", sans-serif;
}

.tk-objektiv-mk3 {
  font-family: "objektiv-mk3", sans-serif;
}

p {
  color: var(--kb-text-gray-light);
}

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

a {
  color: #ffffff;
}

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

.drawer__wrapper___checkout {
  background-color: var(--kb-gray-dark);
}

.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-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-black);
  background-color: var(--kb-yellow);
  margin-bottom: 20px;
}

.main .field__input {
  background: transparent;
  border-radius: 0;
  margin: 10px 0;
  border: 1px solid var(--kb-gray-light-1);
  color: var(--kb-text-gray-light);
}

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

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

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

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

@media (min-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-yellow);
}

/* 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(7, 1fr);
}

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

.footer__social--networks a svg {
  width: 18px;
  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-yellow);
}

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

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

@media screen and (min-width: 480px) {
  .footer__social--networks {
    gap: 40px;
  }
  .footer__social--header h2 {
    font-size: 28px;
  }
  .footer__social--networks a svg {
    width: 32px;
  }
  .footer__social--networks {
    gap: 40px;
  }
  .footer__copyright p {
    font-size: 14px;
  }
}
@media screen and (min-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-text-gray-light);
  }
}
@media screen and (min-width: 1280px) {
  .footer__nav .footer__nav--links {
    gap: 50px;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1920px) {
  .footer__nav .footer__nav--links {
    gap: 70px;
    justify-content: space-between;
  }
}
#shopify-section-header {
  position: sticky;
  top: 0;
  background-color: var(--kb-black);
  border-bottom: 1px solid #494949;
  z-index: 99999;
}
#shopify-section-header ul,
#shopify-section-header li {
  list-style: none;
}
#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: 15px;
}
.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-yellow);
}
.kb-header__action:hover svg path {
  fill: var(--kb-yellow);
}
.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: 16px;
  font-weight: 700;
  font-family: var(--kb-heading-font);
  letter-spacing: -1pt;
}

.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-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;
  }
  .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-yellow);
  }
  .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) {
    padding: 0 25px;
  }
}
@media screen and (min-width: 1920px) {
  .kb-header__link {
    font-size: 16px;
    padding: 30px;
  }
}
.global-sale .kb-header__link[title=Cargo], .global-sale .kb-header__link[title=Kits] {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.global-sale .kb-header__link[title=Cargo]:after, .global-sale .kb-header__link[title=Kits]:after {
  display: inline-block;
  content: "Sale!";
  color: var(--kb-yellow);
  font-size: 9px;
  margin: 0 5px;
}

* {
  box-sizing: border-box;
}

.drawer {
  display: none;
}

.drawer__header {
  padding: 19px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer__close {
  margin: 0;
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
  width: 20px;
  height: 20px;
}

.drawer__wrapper {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 99999999999;
  overflow: auto;
  transition: transform 0.3s;
  will-change: transform;
  display: flex;
  flex-direction: column;
  -webkit-transform: translateX(103%);
  transform: translateX(100%);
  -webkit-overflow-scrolling: touch;
  /* enables momentum scrolling in iOS overflow elements */
  font-family: var(--kb-body-font);
  background-color: var(--kb-black);
  color: var(--kb-white);
}

.drawer__title {
  font-style: normal;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 1px;
  font-size: 20px;
  font-family: var(--kb-heading-font);
}

.drawer__content {
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  flex-grow: 1;
  padding: 25px;
}

.cart__empty {
  font-size: 17px;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 24px 0;
  border: 1px solid var(--kb-gray-light-1);
}

.cart-item-desc {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 5px;
  gap: 6px;
}

.cart-item-content {
  display: grid;
  align-items: center;
  grid-template-columns: 100px 2fr 40px;
  gap: 0 10px;
  width: 100%;
}

.drawer__wrapper .cart-item-content {
  grid-template-columns: 100px 2fr 0;
}

.cart-item-thumbnail {
  width: 100px;
  height: 100px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
}

.cart-item .title {
  line-height: 1;
  margin-bottom: 3px;
  margin-top: 6px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 12px;
}

.cart-item .color-yellow {
  font-size: 12px;
  text-transform: capitalize;
}

.cart-item .body-3 {
  font-size: 14px;
  line-height: 1.5;
  color: white;
  font-weight: bold;
}

.cart-item-remove {
  background: transparent;
  cursor: pointer;
  border: none;
  opacity: 0.5;
  width: 15px;
  height: 15px;
  margin-right: 20px;
}

.notice {
  display: flex;
  align-items: center;
}

.notice svg {
  width: 20px;
  margin-right: 10px;
}

.notice span {
  font-weight: bold;
  line-height: 35px;
  letter-spacing: 1px;
}

.cart-items-listing {
  overflow-y: auto;
  overflow-x: hidden;
}

.drawer__form {
  padding: 35px;
}

.drawer__form .input-small {
  height: 40px;
  line-height: 45px;
  font-size: 13px;
  border-color: #494949;
  font-weight: bold;
  letter-spacing: 1px;
}

.drawer__form .input-small::placeholder {
  text-transform: uppercase;
  letter-spacing: 2px !important;
  font-size: 10px;
  font-weight: bold;
}

.subtotal > span:first-child {
  letter-spacing: 2px;
}

.subtotal,
.tax,
.total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 35px;
  font-weight: bold;
  text-transform: uppercase;
  border-bottom: 1px solid var(--kb-gray-light-1);
  margin: 30px 0;
}

.subtotal span,
.tax span,
.total span {
  line-height: 35px;
  font-weight: 700;
  font-size: 12px;
}

.subtotal:last-child {
  color: var(--kb-yellow);
}

.checkout {
  width: 100%;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  text-decoration: none;
  color: var(--kb-black);
  display: flex;
  font-size: 10px;
  line-height: 43px;
  height: 40px;
  justify-content: center;
}

.drawer.is-active {
  display: block;
  padding: 0;
}

.drawer.is-visible .drawer__wrapper {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.drawer.is-visible .drawer__overlay {
  opacity: 0.5;
}

/* Style the background overlay when the drawer is opened. */
.drawer__overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  opacity: 0;
  transition: opacity 0.3s;
  will-change: opacity;
  background-color: #000;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--kb-gray-medium);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--kb-white);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--kb-gray-light-1);
}

@media (min-width: 680px) {
  .drawer__wrapper {
    max-width: 450px;
    border-left: 1px solid var(--kb-gray-light-1);
  }
}
@media (min-width: 992px) {
  .drawer__header {
    padding: 2px 24px;
  }
  .drawer__title {
    line-height: 3;
  }
  .cart-item-desc {
    margin-left: 20px;
  }
  .drawer__wrapper .checkout {
    height: 45px;
    line-height: 45px;
    font-size: 13px;
    min-width: 180px;
  }
  .subtotal span,
  .tax span,
  .total span {
    font-size: 17px;
  }
  .drawer__form .input-small {
    height: 45px;
    line-height: 45px;
    font-size: 14px;
  }
  .cart-item .title {
    line-height: 1;
    margin-bottom: 3px;
    margin-top: 6px;
    font-size: 16px;
  }
  .cart-item .color-yellow {
    font-size: 15px;
  }
  .cart-item .body-3 {
    font-size: 17px;
  }
}
@media (min-width: 1280px) {
  .drawer__wrapper {
    max-width: 500px;
  }
  .drawer__title {
    font-size: 22px;
  }
  .drawer__wrapper .cart-item-content {
    grid-template-columns: 120px 2fr 40px;
  }
  .drawer__wrapper .cart-item-thumbnail {
    width: 120px;
  }
}
.full-page-overlay__text a {
  color: var(--kb-text-gray-light);
  text-decoration: underline;
}

.full-page-overlay__text a:hover {
  color: var(--kb-yellow);
}

.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-text-gray-light);
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
  letter-spacing: 1px;
  font-weight: 900;
}

.search__results .search_criteria-list .result_list-item h3 {
  line-height: 1;
  font-size: 14px;
  color: var(--kb-text-gray-light);
  margin-bottom: 0;
  margin-bottom: 10px;
  letter-spacing: 1px;
  font-weight: 900;
  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 0;
  margin-bottom: 44px;
  border-bottom: 1px solid var(--kb-gray-light-1);
}

.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-text-gray-light);
}

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

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

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

.story_results .story_date {
  font-size: 20px;
  margin-bottom: 10px;
  display: block;
  color: var(--kb-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-text-gray-light);
}

#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 {
  width: 100%;
  height: 100%;
  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-text-gray-light);
}

#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-text-gray-light);
  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-yellow) !important;
}

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

@media screen and (min-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 (min-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;
  }
}
.kb__module__drawer {
  max-width: 600px;
  width: 100%;
  display: block;
  padding: 10px;
  height: 100%;
  position: initial;
  right: 0;
  top: 0;
  background-color: var(--kb-black);
  z-index: 9999;
  /* display: none; */
  border-left: 2px solid #494949;
}

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

.kb__module__drawer {
  width: 100%;
  min-height: 100vh;
  position: absolute;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  transition: transform 0.3s;
  will-change: transform;
}

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

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

/*  ----------------------------------------------------------------
  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-text-gray-light);
  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-text-gray-light);
}

.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-yellow);
  font-weight: bold;
  color: var(--kb-black);
  cursor: pointer;
  letter-spacing: 1px;
}

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

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

@media screen and (min-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: 900;
    font-size: 50px;
    line-height: 40px;
    color: #ffffff;
    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-text-gray-light);
    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 (min-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-gray-light);
}

.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 (min-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 (min-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 (min-width: 992px) {
  .kb__user__sidebar {
    top: 60px;
  }
  .kb__order__confirmation__sidebar .kb__module__drawer {
    padding: 100px 80px;
  }
  .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;
  }
  .kb__order__confirmation__sidebar .kb__module__drawer {
    padding: 50px 80px;
    width: 100vw;
    max-width: 800px;
  }
}
@media screen and (min-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: 1px solid #494949;
  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 (min-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;
  justify-content: center;
}
.kitbash--card-team-feature-image {
  position: relative;
}
.kitbash--card-team-feature-image img:first-child {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
  width: 36px;
  height: auto;
}
@media all and (min-width: 992px) {
  .kitbash--card-team-feature-image img:first-child {
    width: 60px;
  }
}
.kitbash--card-team-feature-image img:last-child {
  margin: -46px -46px 0 -46px;
  width: calc(100% + 98px);
}
.kitbash--card-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 28px;
}
@media all and (min-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-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  align-items: center;
  letter-spacing: -0.02em;
  color: #ffffff;
  font-size: 28px;
  line-height: 35px;
}
@media screen and (min-width: 992px) {
  .kitbash--card-team-feature-header h4 {
    font-size: 36px;
  }
}
.kitbash--card-team-feature-body p {
  font-family: "Objektiv Mk1";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.085em;
  color: #aaaaaa;
  font-size: 14px;
  line-height: 150%;
}
@media screen and (min-width: 992px) {
  .kitbash--card-team-feature-body p {
    font-size: 18px;
    line-height: 26px;
  }
}
.kitbash--card-studio-header h4 {
  letter-spacing: 0.02em;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  align-items: center;
  color: #ffffff;
  margin-bottom: 25px;
}
.kitbash--card-studio-header hr {
  margin-top: 25px;
  margin-bottom: 25px;
  border: 1px solid #494949;
}
.kitbash--card-studio-header p {
  font-family: "Objektiv Mk1";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.085em;
  text-indent: 2px;
  color: #ffffff;
}
.kitbash--card-studio-body p {
  font-family: "Objektiv Mk1";
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.085em;
  color: #ffffff;
  margin-bottom: 15px;
}
.kitbash--card-studio-body ul {
  list-style-type: none;
}
.kitbash--card-studio-body ul li {
  font-family: "Objektiv Mk1";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 130%;
  letter-spacing: 0.085em;
  color: #ffffff;
  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 {
  font-family: "Objektiv Mk1";
  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-family: "Objektiv Mk1";
  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 (min-width: 992px) {
  .kitbash--card-disclaimer {
    position: absolute;
    bottom: 14px;
    left: 19px;
    right: 111px;
  }
}
.kitbash--card-disclaimer p {
  font-size: 12px;
}

.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 (min-width: 992px) {
  .kitbash--teams-logos {
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 30px;
  }
  .kitbash--teams-logos img {
    max-width: 80px;
  }
}
.kitbash--talk-to-us-button {
  display: flex;
  justify-content: center;
  align-items: center;
}
.kitbash--description {
  position: relative;
}
.kitbash--description-easy-header {
  text-align: center;
  margin-bottom: 15px;
}
@media screen and (min-width: 992px) {
  .kitbash--description-easy-header {
    text-align: left;
    margin-bottom: 10px;
  }
}
.kitbash--description-easy-header h4 {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  align-items: center;
  color: #ffffff;
  font-size: 28px;
  line-height: 35px;
}
@media screen and (min-width: 992px) {
  .kitbash--description-easy-header h4 {
    font-size: 48px;
    line-height: 1.7;
  }
}
.kitbash--description-teams-header {
  margin-bottom: 34px;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .kitbash--description-teams-header {
    text-align: left;
  }
}
.kitbash--description-teams-header h4 {
  font-size: 36px;
  line-height: 110%;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  align-items: center;
  color: #ffffff;
}
@media screen and (min-width: 992px) {
  .kitbash--description-teams-header h4 {
    text-align: left;
    font-size: 48px;
  }
}
.kitbash--description-questions-header {
  margin-bottom: 60px;
}
.kitbash--description-questions-header h4 {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 35px;
  color: #ffffff;
  letter-spacing: -0.02em;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .kitbash--description-questions-header h4 {
    font-size: 48px;
    line-height: 1.7;
  }
}
.kitbash--description-work-header {
  margin-bottom: 35px;
  padding: 40px 0;
}
.kitbash--description-work-header h4 {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 58px;
  color: #ffffff;
}
.kitbash--description-header {
  margin-bottom: 35px;
  text-align: left;
}
.kitbash--description-header h4 {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  color: #ffffff;
  font-size: 28px;
  line-height: 35px;
}
@media screen and (min-width: 992px) {
  .kitbash--description-header h4 {
    font-size: 48px;
    line-height: 58px;
  }
}
.kitbash--description-image {
  display: flex;
  align-items: flex-end;
}
.kitbash--description-image.licensing__header img {
  transform: scale(1.3);
}
@media all and (min-width: 992px) {
  .kitbash--description-image.licensing__header img {
    transform: scale(1.3);
    max-width: 100%;
  }
}
.kitbash--description-image img {
  max-width: 100%;
}
.kitbash--description-button {
  margin: 35px auto;
  display: flex;
}
@media all and (min-width: 992px) {
  .kitbash--description-button {
    display: inline-block;
    margin: 35px initial;
  }
}
.kitbash--description-text p {
  font-family: "Objektiv Mk1";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.085em;
  color: #aaaaaa;
  font-size: 14px;
  line-height: 150%;
}
@media screen and (min-width: 992px) {
  .kitbash--description-text p {
    font-size: 18px;
    line-height: 26px;
    text-align: left;
  }
}
.kitbash--description-work-text {
  max-width: 1280px;
  margin: 0 auto;
}
.kitbash--description-work-text p {
  font-family: "Objektiv Mk1";
  font-style: normal;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.085em;
  color: #ffffff;
  font-size: 14px;
  line-height: 21px;
}
@media all and (min-width: 992px) {
  .kitbash--description-work-text p {
    font-size: 18px;
    line-height: 26px;
  }
}
.kitbash--description-outer-container {
  padding: 65px 0;
  overflow: hidden;
}
.kitbash--description-outer-container.teams-header {
  background-size: 100% 100%;
  background-image: url("kitbash_teams_header_gradient.jpg");
  background-position: top right;
  padding: 80px 0px;
}
.kitbash--description-outer-container.teams-header .kitbash--description {
  background: transparent;
}
.kitbash--description-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
}
@media all and (min-width: 992px) {
  .kitbash--description-container {
    grid-template-columns: 0.4fr 0.6fr;
  }
}
.kitbash--description-otp-container {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 77px;
}
@media screen and (min-width: 992px) {
  .kitbash--description-otp-container {
    align-items: center;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
  }
}
.kitbash--description-otp-container .cargo-otp-image-desktop {
  display: none;
}
@media screen and (min-width: 992px) {
  .kitbash--description-otp-container .cargo-otp-image-desktop {
    display: block;
  }
}
.kitbash--description-otp-container .cargo-otp-image-mobile {
  display: block;
  width: 100vw;
  position: relative;
  transform: initial;
}
.kitbash--description-otp-container .cargo-otp-image-mobile img {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .kitbash--description-otp-container .cargo-otp-image-mobile {
    display: none;
  }
}
.kitbash--description-otp-container .cargo-otp-image-mobile .kitbash--description-text p {
  margin-bottom: 20px;
}
.kitbash--description-otp-container .kitbash--description-image {
  order: -1;
}
@media all and (min-width: 992px) {
  .kitbash--description-otp-container {
    grid-template-columns: 0.5fr 0.5fr;
  }
  .kitbash--description-otp-container .kitbash--description-image {
    order: 2;
  }
}

.kitbash--teams-form .form__submit {
  margin-top: 20px;
}
.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 (min-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 (min-width: 992px) {
  .kitbash--teams-form-container {
    grid-template-columns: 0.5fr 0.5fr;
  }
}
.kitbash--teams-form {
  width: 100%;
  padding: 0 10px;
}
@media all and (min-width: 992px) {
  .kitbash--teams-form {
    padding: 0 20px;
  }
}
@media all and (min-width: 1280px) {
  .kitbash--teams-form {
    padding: 0 50px;
  }
}
.kitbash--teams-form-icon {
  padding-bottom: 20px;
}
.kitbash--teams-form .select-wrapper {
  height: 45px;
  padding-top: 3px;
}
.kitbash--teams-form h3 {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  align-items: center;
  text-align: center;
  color: #ffffff;
  padding-bottom: 25px;
  font-size: 36px;
  line-height: 1;
  text-transform: capitalize;
}
@media screen and (min-width: 992px) {
  .kitbash--teams-form h3 {
    font-size: 42px;
    line-height: 42px;
  }
}
.kitbash--teams-form .body-4 {
  font-family: "Objektiv Mk1";
  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-family: "Objektiv Mk1";
  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-family: "Objektiv Mk1";
  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 (min-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: "Poppins";
  font-style: normal;
  font-weight: 700;
  color: #ffffff;
  font-size: 36px;
  line-height: 40px;
  max-width: 400px;
  margin: 0 auto;
}
@media all and (min-width: 992px) {
  .kitbash--teams-form-description h3 {
    font-size: 72px;
    line-height: 75px;
    max-width: initial;
  }
}
.kitbash--teams-form-description h3 span {
  color: #fbad18;
}

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

.hero__banner .swiper {
  height: 100%;
}

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

.hero__banner-cover .swiper::after {
  content: "";
  height: 80px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: block;
  z-index: 2;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, #111111 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: 1300px;
}

.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: 1300px;
}

.hero__banner-video video {
  height: 100%;
  width: 100%;
  object-fit: cover;
  overflow: hidden;
  max-height: 1300px;
}

.hero__banner-content {
  position: relative;
  z-index: 2;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 90px;
  max-width: 500px;
  height: calc(100vh - 200px);
  max-height: 1300px;
}

.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-family: "Objektiv Mk1";
  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 0;
  padding-left: 0;
  padding-right: 0;
  font-family: "Objektiv Mk1";
}

.hero__banner .swiper {
  height: 100%;
}

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

.hero__banner .swiper-pagination {
  top: initial !important;
}

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

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

.hero__banner .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
}

.hero__banner .swiper-pagination {
  top: initial;
  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_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: 1280px) {
  .hero__banner-image img {
    transform: scale(1);
  }
}
@media screen and (min-width: 1440px) {
  .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;
  }
}
.hero__banner-content .hero__subtitle {
  text-transform: uppercase;
  color: #fff;
  font-size: 17px;
  letter-spacing: 5px;
  font-weight: 900;
  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;
}

.text_parallax {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

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

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

@media screen and (min-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;
}

.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-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;
}

.lazyframe--custom {
  display: -webkit-box;
  display: -ms-flexbox;
  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;
  font-family: Arial;
  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 {
  display: flex;
  border: 1px solid var(--kb-gray-dar-1);
  overflow: hidden;
}

.lazyframe .lazyframe__title {
  display: none;
}

.lazyframe[data-vendor=youtube]::after,
.lazyframe[data-vendor=youtube_nocookie]::after,
.lazyframe[data-vendor=vimeo]::after {
  width: 2.7272727273rem;
  height: 1.934090909rem;
  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;
}

.kb_feature .heading-1 {
  margin-bottom: 30px;
}

@media screen and (min-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 (min-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 (min-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: 900;
  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 (min-width: 580px) {
  .free_kit-cover-img {
    transform: scale(1.1);
    margin-top: 40px;
  }
}
@media screen and (min-width: 680px) {
  .free_kit-cover-img {
    transform: scale(1.2);
    margin-top: 40px;
  }
}
@media screen and (min-width: 992px) {
  .free_kit .top_part {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: var(--kb-gray-dark);
  }
  .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 (min-width: 1280px) {
  .free_kit .top_part {
    height: 100px;
  }
  .free_kit-cover-img img {
    width: 250%;
    position: relative;
    right: 7%;
    height: auto;
    transform: scale(1.1);
  }
  .free_kit-cover-img img {
    width: 180%;
    position: relative;
    right: 7%;
    height: auto;
    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-cover-content .body-2 {
    font-size: 16px;
  }
  .free_kit_field input {
    height: 50px;
    font-size: 16px;
  }
  .free_kit_field button {
    width: 20px !important;
  }
}
@media screen and (min-width: 1440px) {
  .free_kit-cover {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 80px;
  }
  .free_kit_field input {
    height: 60px;
    font-size: 28px;
  }
  .free_kit_field button {
    width: 22px !important;
    right: 20px !important;
    cursor: pointer;
  }
  .free_kit_field input {
    font-size: 17px;
  }
}
.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 (min-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 (min-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 (min-width: 1280px) {
  .qualifiers__logos-cover .qualifiers_title {
    font-size: 40px;
    line-height: 50px;
  }
}
/*
@media screen and (min-width: 1921px) {
    .qualifiers__logos-cover {
        min-height: 1200px;
    }

    .qualifiers__logos-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-gap: 150px 200px;
    }


}

@media screen and (min-width: 2000px) {
    .qualifiers__logos-cover .qualifiers_title {
        font-size: 60px;
        line-height: 60px;
    }
}

@media screen and (min-width: 2400px) {
    .qualifiers__logos-cover .qualifiers_title {
        font-size: 70px;
        line-height: 70px;
    }
}

@media screen and (min-width: 2800px) {
    .qualifiers__logos-cover .qualifiers_title {
        font-size: 80px;
        line-height: 80px;
    }
}

@media screen and (min-width: 2400px) {} */
.compatibility__banner {
  height: 300px;
  background-color: var(--kb-gray-dark);
  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 30px;
}

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

@media screen and (min-width: 480px) {
  .compatibility__banner-grid {
    grid-template-columns: repeat(4, 60px);
    grid-gap: 30px 50px;
  }
}
@media screen and (min-width: 992px) {
  .compatibility__banner-grid {
    grid-template-columns: repeat(8, 45px);
    grid-gap: 45px;
  }
  .compatibility__banner-cover .compatibility_title {
    font-size: 50px;
    margin-bottom: 60px;
    line-height: 50px;
  }
}
@media screen and (min-width: 1440px) {
  .compatibility__banner-cover .compatibility_title {
    font-size: 50px;
    margin-bottom: 80px;
  }
  .compatibility__banner-grid {
    grid-gap: 75px;
  }
}
@media screen and (min-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;
}

.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%;
}

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

.kb_quote-single-content .title-2 {
  font-size: 20px;
  line-height: 32px;
  text-align: center;
  color: var(--kb-text-gray-light);
  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: 300;
  margin-bottom: 40px;
}

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

.kb_quote-single--right {
  padding: 40px;
}

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

.kb__quotes .swiper-pagination {
  gap: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
}

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

.kb__quotes .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
}

.kb__quotes .swiper-pagination {
  width: 100%;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

@media screen and (min-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;
  }
  /* SWIPER  */
  .kb__quotes .swiper-pagination {
    gap: 24px;
    margin-top: 30px;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .kb__quotes .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
  }
}
@media screen and (min-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;
  }
  .kb__quotes .swiper-pagination {
    margin-top: 50px;
  }
}
.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 (min-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 {
  min-height: 500px;
  width: 100%;
}

.hero__banner-content--loggeIn.hero__banner-content .kb-btn {
  padding: 0;
}

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

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

.hero__banner-loggedIn .hero__banner-content {
  margin-left: 15px;
}

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

.hero__banner-loggedIn .hero__banner-image img {
  transform: scale(1);
}

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

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

.hero__banner-content .hero__subtitle {
  text-transform: uppercase;
  color: #fff;
  font-size: 17px;
  letter-spacing: 5px;
  font-weight: 900;
  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 (min-width: 992px) {
  .hero__banner-loggedIn .hero__banner-image img {
    object-position: top center;
  }
  .hero__banner-content--loggeIn .slide_logo {
    margin: 15px 0 0 0;
  }
  .hero__banner-content--loggeIn .slide_logo img {
    max-width: 350px;
  }
}
@media screen and (min-width: 1280px) {
  .hero__banner-content--loggeIn .slide_logo {
    max-width: 350px;
  }
}
@media screen and (min-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 (min-width: 1920px) {
  .hero__banner-content--loggeIn .slide_logo {
    max-width: 500px;
  }
}
.collection_filters {
  padding: 47px 0;
}

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

.genre__title {
  margin-bottom: 26px;
}

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

.genre__models {
  overflow: hidden;
  position: relative;
  padding-bottom: 50px;
}

.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-yellow);
}

.genre__models-single .genre__models-single--img img {
  width: 80%;
  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: 900;
  letter-spacing: 1.5px;
}

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

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

.gerne_image {
  /* max-width: 80%; */
  margin: 0 auto;
}

.gerne_image a {
  display: flex;
  justify-content: center;
}

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

.gerne_image-hover {
  opacity: 0;
  position: absolute;
  text-align: center;
  z-index: 2;
  transition: 0.2s opacity ease;
}

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

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

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

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

.genre__mainCover .app__container:nth-child(2) {
  padding: 0;
}

.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-yellow);
}

.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 (min-width: 768px) {
  .genre__models-single--img {
    margin-bottom: 20px;
  }
  .genre__models-single--title .body-4 {
    font-size: 10px;
  }
}
@media screen and (min-width: 992px) {
  .genre__section {
    padding: 100px 0 50px 0;
    background-color: var(--kb-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;
  }
  .swiper-slide.swiper-slide .genre__models-single--title {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@media screen and (min-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 (min-width: 1920px) {
  .genre__models-single--title .body-4 {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
  }
}
.top__charts {
  padding: 0 0 50px 0;
}

.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 10px;
  position: relative;
}

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

.top__cart-column-block {
  border-top: 1px solid var(--kb-gray-light-1);
  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: 900;
  font-family: var(--kb-heading-font);
  letter-spacing: 1px;
}

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

.top__chart-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.top__chart-link svg path {
  fill: var(--kb-gray-light-1);
}

.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-white);
  opacity: 1;
  margin: 0 8px !important;
}

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

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

.top__chart-link {
  display: none;
}

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

@media screen and (min-width: 992px) {
  .top__chart-link {
    display: block;
  }
  .top__chart-content {
    margin-right: 10px;
  }
  .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 {
    padding: 60px 0;
  }
  .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-content {
    padding: 15px 0 10px 15px;
  }
  .top__chart-title {
    font-size: 24px;
  }
  .top__chart-para {
    font-size: 14px;
  }
}
@media screen and (min-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-gray-light-1);
    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-yellow);
    fill: var(--kb-yellow);
  }
  .top__chart-content {
    padding: 10px 0 10px 18px;
  }
  .top__chart-title {
    font-size: 20px;
  }
  .top__chart-para {
    font-size: 10px;
  }
}
@media screen and (min-width: 1440px) {
  .top__chart-title {
    font-size: 20px;
    line-height: 1;
    margin-bottom: 10px;
  }
  .top__chart-para {
    font-size: 12px;
  }
}
@media screen and (min-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;
  }
  .top__chart-title {
    font-size: 26px;
    line-height: 1;
    margin-bottom: 10px;
  }
  .top__chart-para {
    line-height: 1;
    font-size: 14px;
  }
  .top__chart-content {
    margin-left: 10px;
  }
  .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: 0px;
  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 (min-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 (min-width: 1280px) {
  .storefront__spotlight .kit__spotlight-cover-content {
    margin-right: -60px;
    margin-top: 30px;
  }
}
.homepage_carousel {
  padding: 40px 0 0 0;
}

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

.kitsCarousel-slide img {
  width: 100%;
  height: auto;
}

.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: 15px;
}

.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;
  border: 1px solid var(--kb-white);
  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: -moz-linear-gradient(left, rgba(17, 17, 17, 0) 0%, rgb(17, 17, 17) 99%, rgb(17, 17, 17) 100%);
  background: -webkit-linear-gradient(left, rgba(17, 17, 17, 0) 0%, rgb(17, 17, 17) 99%, rgb(17, 17, 17) 100%);
  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;
}

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

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

.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;
}

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

.owned__label {
  background: rgba(24, 24, 24, 0.8);
  color: var(--kb-white);
}

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

.kitsCarousel .swiper-slide a img {
  max-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: 12px;
}

.viewAll_kits {
  display: block;
}

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

.filter-title .body-4,
.kb_carousel_header h2 {
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 900;
}

/* .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-white);
}

@media screen and (max-width: 992px) {
  .swiper__arrows {
    display: none;
  }
}
@media screen and (min-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-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;
    border: 1px solid var(--kb-white);
    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;
  }
  .product__label .label {
    top: 22px;
    height: 30px;
    line-height: 30px;
    width: 140px;
    font-size: 12px;
  }
  .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 (min-width: 1920px) {
  .product__label .label {
    top: 30px;
    height: 40px;
    line-height: 40px;
    width: 150px;
    font-size: 14px;
    padding-top: 4px;
  }
  .filter-title .body-4,
  .kb_carousel_header h2 {
    font-size: 17px;
    letter-spacing: 1px;
  }
  .homepage_carousel {
    padding: 40px 0 60px 0;
  }
}
@media screen and (min-width: 2400px) {
  .kits_carousel-cover .swiper__arrows .swiper-button-next,
  .kits_carousel-cover .swiper__arrows .swiper-button-prev {
    position: relative;
    border: 1px solid var(--kb-white);
    width: 32px;
    height: 32px;
  }
  .product__label .label {
    top: 30px;
    height: 40px;
    line-height: 40px;
    width: 150px;
    font-size: 13px;
    padding-top: 4px;
  }
}
@media screen and (min-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__module__pdp__sidebar {
  padding: 30px;
  box-sizing: border-box;
  display: flex;
  transition: all 0.5s ease;
  overflow: hidden;
}

.kb__basic__plans {
  display: grid;
  width: 100%;
  align-items: flex-start;
  gap: 40px;
  height: fit-content;
}

.kb__basic__plans.is-not-owned {
  max-height: 1000px;
}

.kb__pdp__sidebar__header {
  display: grid;
  grid-template-rows: 30px 65% 1fr;
}

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

.kb__kit__on__sale,
.kb__pdp__sidebar__header .kb__kit__type {
  font-size: 26px;
  text-transform: uppercase;
  color: var(--kb-text-gray-light);
  letter-spacing: 1px;
  font-family: var(--kb-body-font);
  font-weight: bold;
}

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

.kb__pdp__sidebar__header-on-sale .kb__kit__buy {
  display: flex;
  gap: 20px;
  font-weight: bold;
}

.kb__pdp__sidebar__header-on-sale .kb__kit__buy .kb__kit__price {
  color: var(--kb-yellow);
  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-yellow);
}

.kb__kit__which__am {
  margin-bottom: 25px;
}

.kb__kit__which__am button {
  color: var(--kb-text-gray-light);
  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-text-gray-light);
  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-yellow);
  color: white;
}

/* ----------------------------------------------
    OWNED TYPE
-----------------------------------------------  */
.kb__kit__owned .kb__kit__owned__item {
  font-weight: 900;
  font-size: 50px;
  line-height: 40px;
  color: #ffffff;
  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-text-gray-light);
  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: #ffffff;
}

.kb__kit__software__section .details {
  font-style: normal;
  font-weight: normal;
  font-size: 26px;
  line-height: 2;
  color: var(--kb-text-gray-light);
  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 {
  -webkit-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-black);
}

.kb__kit__submit {
  margin-top: 20px;
}

@media screen and (min-width: 1024px) {
  .kb__module__pdp__sidebar {
    padding: 30px;
  }
  .kb__basic__plans {
    align-content: flex-start;
    gap: 20px;
  }
  .kb__kit__download__action {
    margin-top: 10px;
  }
  .top__fixed .kb__module__pdp__sidebar {
    height: calc(100vh - 100px);
    overflow: scroll;
    overflow-x: hidden;
  }
  /* ----------------------------------------------
      HEADER
  -----------------------------------------------  */
  .kb__pdp__sidebar__header {
    gap: 0;
  }
  .kb__kit__on__sale,
  .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;
  }
  .kb__kit__submit {
    height: 50px !important;
    line-height: 50px !important;
  }
}
@media screen and (min-width: 1280px) {
  .kb__module__pdp__sidebar {
    padding: 40px;
  }
}
@media screen and (min-width: 992px) {
  .kb__module__pdp__sidebar {
    padding: 20px 30px 60px 30px;
  }
  .kb__pdp__sidebar__header {
    gap: 0px;
    padding-bottom: 10px;
  }
  .kb__basic__plans {
    align-content: flex-start;
    gap: 12px;
  }
  .kb__kit__download__action {
    margin-top: 10px;
  }
  .top__fixed .kb__module__pdp__sidebar {
    height: calc(100vh - 100px);
  }
  /* ----------------------------------------------
      HEADER
  -----------------------------------------------  */
  .kb__pdp__sidebar__header .kb__kit__header {
    height: 140px;
  }
  .kb__kit__on__sale,
  .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 (max-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: 500;
  }
  .module__user__modal--actions #close__modal,
  .module__user__modal--actions button[type=submit] {
    height: 40px;
    font-size: 11px;
  }
}
@media screen and (min-width: 1920px) {
  .kb__module__pdp__sidebar {
    padding: 40px 30px;
  }
}
.kb__single__product__license {
  display: block;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999999;
  background: var(--kb-black);
  padding: 0;
  margin: auto;
}

.kb__enterprise__module__content {
  padding: 30px;
  overflow: scroll;
  overflow-x: hidden;
}

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

/* ------------------------------------------------
  HEADER SECTION
------------------------------------------------ */
.kb__enterprise__licensing__header {
  position: relative;
  border: 2px solid #808080;
  margin: -20px -20px 0;
  padding: 19px 24px;
}

.kb__enterprise__licensing__header {
  position: absolute;
  top: -40px;
  left: -4px;
  width: 100%;
  right: 0;
  margin: auto;
  z-index: 10;
  background: #111111;
}

.kb__enterprise__licensing__header h2 {
  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__close__enterprise {
  height: 24px;
  width: 24px;
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  cursor: pointer;
}

.kb__close__enterprise:before,
.kb__close__enterprise:after {
  content: "";
  display: block;
  height: 100%;
  width: 4px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  left: 0;
  background-color: white;
  margin: auto;
}

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

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

.kb__enterprise__module__description {
  font-size: 14px;
  color: var(--kb-text-gray-light);
  margin: 20px 0 20px;
}

/* ------------------------------------------------
  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-text-gray-light);
  display: block;
}

.kb__form__control {
  margin-bottom: 25px;
}

.kb__form__control textarea {
  padding: 15px;
  resize: none;
  width: 100%;
  background-color: transparent;
  border: 1px solid var(--kb-gray-light-1);
  font-weight: 400;
  font-style: normal;
  line-height: 15px;
  font-size: 13px;
  background-color: var(--kb-black);
  color: var(--kb-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 0px var(--kb-yellow);
}

.kb__form__control .kb__kit__software__select {
  font-size: 13px;
  height: 40px;
  padding: 0 0 0 10px;
  text-transform: capitalize;
  color: var(--kb-text-gray-light);
  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 {
  font-weight: 400;
  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-text-gray-light);
}

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

/* ------------------------------------------------
  SIDEBAR FORM SECTION
------------------------------------------------ */
.kb__module__pdp__sidebar .kb__enterprise__licensing {
  box-sizing: border-box;
}

@media screen and (min-width: 1024px) {
  .kb__module__pdp__sidebar .kb__enterprise__licensing {
    margin: -80px -60px;
    width: calc(100% + 120px);
  }
  .kb__enterprise__licensing__header {
    margin: 0;
    padding: 20px 50px;
    text-transform: uppercase;
  }
  .kb__enterprise__licensing__header h2 {
    letter-spacing: 1px;
  }
  .kb__close__enterprise {
    right: 50px;
  }
  .kb_single_product .kb__single__product__license {
    display: none !important;
  }
  .kb__enterprise__module__message__sent {
    padding: 24px;
    margin-top: 80px;
  }
  .kb__module__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 (min-width: 1280px) {
  .kb__module__pdp__sidebar .kb__enterprise__licensing {
    margin: -60px -60px 0 -60px;
    width: calc(100% + 120px);
  }
  .kb__enterprise__licensing__header {
    margin: 0px 2px 20px;
  }
}
@media screen and (min-width: 1920px) {
  .kb__enterprise__licensing__header {
    top: 0;
  }
}
.kb-related-products {
  margin-top: 40px;
}

.kb-related-products header {
  display: flex;
  align-items: center;
}

.kb-related-products svg {
  display: inline;
  height: 17px;
  width: 17px;
  transform: rotate(90deg);
  margin-right: 17px;
  position: relative;
  top: 2px;
}

.kb-related-products svg path {
  fill: var(--kb-yellow);
}

.kb-related-products header img {
  margin-right: 20px;
}

.kb-related-products header h3 {
  text-transform: uppercase;
  color: #fff;
  font-size: 28px;
  margin-bottom: 44px;
}

.kb-related-products-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.kb-related-products-content a img {
  width: 100%;
}

.kb-related-products {
  margin: 60px 20px 0;
}

@media screen and (min-width: 480px) {
  .kb-related-products {
    margin: 60px 50px 0;
  }
}
@media screen and (min-width: 768px) {
  .kb-related-products {
    margin: 60px 20px 0;
    padding: 0;
  }
  .kb-related-products-content {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}
@media screen and (min-width: 992px) {
  .kb-related-products {
    max-width: 1500px;
    margin: 100px auto 0;
    padding: 0 20px;
  }
  .kb-related-products-content {
    gap: 37px;
  }
  .kb-related-products header h3 {
    font-size: 38px;
  }
  .kb-related-products header h3 svg {
    width: 30px;
    height: 30px;
    margin-right: 25px;
  }
}
@media screen and (min-width: 3000px) {
  .kb-related-products header {
    margin-bottom: 60px;
  }
  .kb-related-products header h3 {
    font-size: 50px;
  }
  .kb-related-products svg {
    width: 30px;
    height: 30px;
    margin-right: 40px;
  }
}
.kb-related-products-content-item {
  position: relative;
}
.kb-related-products-content-item__sale-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;
  color: var(--kb-black);
  background-color: var(--kb-yellow);
}

.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;
}

.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%;
  overflow: hidden;
  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-yellow);
}

.threeUp_content_title h3 {
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 1px;
}

.threeUp_content_title h3 span {
  color: var(--kb-text-gray-light);
}

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

.threeUp_content_desc p {
  position: relative;
}

.threeUp__feature-header {
  display: flex;
  justify-content: space-between;
}

.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-yellow);
}

.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_content_title h3 {
  font-size: 14px;
  line-height: 1.1;
}

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

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

@media screen and (min-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__feature-single {
    /* margin-right: 30px; */
  }
  .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 (min-width: 1280px) {
  .threeUp__feature-single--img {
    aspect-ratio: 16/9;
  }
}
@media screen and (min-width: 1920px) {
  .threeUp__feature-single--img {
    aspect-ratio: 16/9;
  }
}
.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;
}

.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-gray-medium);
}

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

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

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

.featured_content {
  -webkit-animation-duration: 0.2s !important;
  -moz-animation-duration: 0.2s !important;
  animation-duration: 0.2s !important;
}

.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;
  -o-object-fit: cover;
}

@media screen and (min-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 (min-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 (min-width: 1920px) {
  .featured_content-heading {
    font-size: 40px;
  }
  .featured_content-subheading {
    line-height: 2;
    font-size: 17px;
    margin-bottom: 10px;
  }
}
/*

@media screen and (max-width: 1279px) {
    .featured_content-btn {
        font-size: 12px;
        height: 35px;
        line-height: 35px;
    }
    .featured_content {
        position: absolute;
        bottom: 15px;
        left: 15px;
        padding-right: 15px;
    }
    .featured_image:hover .featured_content {
        transform: translateY(-10px);
    }
}
@media screen and (max-width: 767px) {
    .featuredGrid_slider .swiper-wrapper {
        display: flex;
        flex-wrap: nowrap;
    }
    .secondary__feature-single .featured_image,
    .featured_image {
        height: 370px;
    }
    .featured_image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }
    .featured__gridmain .app__container {
        padding: 0 0 0 20px;
    }

    .featured_image:hover .featured_content {
        transform: translateY(0);
    }

    .featured_image a img,
    .featured_content {
    -webkit-transition: unset;
    -moz-transition: unset;
    -ms-transition: unset;
    transition: unset;
    }

    .featured_content {
    -webkit-animation-duration: unset !important;
    -moz-animation-duration: unset !important;
    animation-duration: unset !important;
    }
}
 */
.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;
}

.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-text-gray-light);
  letter-spacing: 4px;
  font-weight: 900;
}

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

.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 */
.story_cover-image {
  overflow: hidden;
}

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

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

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

@media screen and (min-width: 768px) {
  .story_cover-image {
    margin: 0;
  }
}
@media screen and (min-width: 992px) {
  .section_title h2 {
    font-size: 17px;
    font-weight: bold;
    letter-spacing: 1pt;
  }
  .story_cover-content .story_sub_title {
    font-size: 18px;
  }
  .story_cover-content .story_description {
    margin-bottom: 30px;
  }
  .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_sub_title {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 20px;
  }
  .story_cover-content .story_title {
    font-size: 60px;
    line-height: 50px;
    margin-bottom: 45px;
  }
  .story_cover-content .story_description {
    margin-bottom: 40px;
    font-size: 20px;
  }
  .story_cover-content .kb-btn {
    height: 45px;
    line-height: 45px;
    font-size: 13px;
    min-width: 180px;
  }
}
@media screen and (min-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: 500;
  letter-spacing: 8px;
  margin: 0 0 25px 0 !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: 500;
}

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

@media screen and (min-width: 480px) {
  .brand_hero,
  .brand_hero-cover,
  .brand_featured_image,
  .brand_hero-content {
    height: 50vh;
  }
}
@media screen and (min-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 (min-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 (min-width: 2400px) {
  .brand_hero,
  .brand_hero-cover,
  .brand_featured_image,
  .brand_hero-content {
    height: 950px;
  }
}
@media screen and (min-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 {
  justify-content: flex-start;
  margin-top: 60px;
}

.community_social--networks {
  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-yellow);
}

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

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

@media screen and (min-width: 680px) {
  .brand_community-cover {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-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 (min-width: 1025px) {
  .brand_community-content-cover,
  .brand_community:last-child .brand_community-content-cover {
    width: 80%;
    margin: 0 auto;
    padding: 30px;
  }
}
@media screen and (min-width: 1400px) {
  .brand_community-content-cover,
  .brand_community:last-child .brand_community-content-cover {
    width: 700px;
    margin: 0 auto;
    padding: 80px;
  }
}
@media screen and (min-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 (min-width: 992px) {
  .brand_parallax {
    height: 400px;
  }
}
@media screen and (min-width: 1920px) {
  .brand_parallax {
    height: 500px;
  }
}
@media screen and (min-width: 2400px) {
  .brand_parallax {
    height: 600px;
  }
}
@media screen and (min-width: 2800px) {
  .brand_parallax {
    height: 860px;
  }
}
@media screen and (max-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;
  font-family: var(--kb-body-font);
  color: var(--kb-text-gray-light);
  font-weight: 400;
  margin-bottom: 30px;
  font-family: var(--kb-body-font-poppins);
}

@media screen and (min-width: 767px) {
  .ourmission_sub_title {
    margin-bottom: 80px;
  }
  .brand_ourMission-cover-content {
    height: auto;
  }
}
@media screen and (min-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 (min-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 (min-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-row-gap: 60px;
  grid-column-gap: 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 0;
}

@media screen and (min-width: 767px) {
  .brand_stats-cover {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 20px;
    justify-content: space-between;
  }
}
@media screen and (min-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 (min-width: 1440px) {
  .brand__status--item h3 {
    font-size: 80px;
  }
  .brand_stats {
    padding: 80px 0;
  }
}
@media screen and (min-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: 900;
  }
  .brand_stats {
    padding: 112px 0 110px 0;
  }
}
.story_timline-cover {
  display: none;
}

.brand_story {
  padding: 50px 0;
}

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

.story_timline-cover {
  position: relative;
  overflow: hidden;
}

.story_timline-cover .app__container {
  position: relative;
}

.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-text-gray-light);
}

.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;
}

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

.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-yellow);
}

.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-yellow);
  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-yellow);
  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-text-gray-light);
  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-text-gray-light);
  font-weight: 400;
  margin-bottom: 30px;
}

.app__module--timeline--image {
  position: relative;
}

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

.app__module--timeline--section {
  order: 2;
}

.app__module--timeline--image {
  order: 1;
}

.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 (min-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 (min-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;
  }
  .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 {
    gap: 10px;
    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: 0px;
  }
  /*  -------------------------------------------------------
        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;
  }
  /*  -------------------------------------------------------
        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: 20px;
  }
  .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:nth-child(even) {
    padding-right: 40px;
  }
  .timeline__item:nth-child(odd) {
    padding-left: 40px;
  }
  .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 0;
  }
  .app__module--timeline--section {
    padding-bottom: 80px;
  }
}
@media screen and (min-width: 1024px) {
  .timeline__item-1 {
    padding-top: 82px;
  }
  .timeline__item .timeline__item--year h4 {
    font-size: 80px;
  }
}
@media screen and (min-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 (min-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;
  }
  .app__module--timeline--section {
    grid-template-columns: 3fr 3fr;
  }
  .app__module--timeline--image {
    right: 0 !important;
  }
  .bran_story_content_heading h3 {
    font-size: 30px;
    line-height: 1.3;
  }
  .app__module--timeline--section {
    padding-bottom: 120px;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
  .app__module--timeline--image {
    right: 0;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
  .app__module--timeline--image {
    right: 0;
  }
}
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) {
  .app__module--timeline--image {
    right: -15% !important;
  }
}
.module__user__info {
  display: flex;
  flex-direction: column;
  background: var(--kb-gray-dark);
  padding: 50px 20px;
  margin-top: 50px;
}

.module__user__info--header h1 {
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  color: #ffffff;
  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-text-gray-light);
  font-family: var(--kb-body-font-poppins);
}

.module__user__info--body .boxed {
  background: #181818;
  border: 1px solid var(--kb-gray-light-1);
  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-yellow);
  margin: auto;
  cursor: pointer;
  font-size: 14px;
  font-family: var(--kb-body-font-poppins);
}

.module__user__info--name,
.module__user__info--email,
.module__user__info--pass,
.module__user__info--news,
.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;
}

.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;
  width: 115%;
  height: 100%;
  margin: 0 -30px;
  padding-left: 32px;
  box-sizing: content-box;
  border: none;
  -webkit-appearance: none;
  background: transparent;
  color: white;
  line-height: 2;
  font-size: 14px;
  font-family: var(--kb-body-font-poppins);
}

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

.module__user__info--body .boxed select {
  padding: 6px 20px;
  box-sizing: border-box;
  font-size: 14px;
  margin: 0;
  width: 100%;
  font-family: var(--kb-body-font-poppins);
}

.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-gray-light-1);
  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;
}

/* Custom Checkbox  */
.module__user__info--news {
  justify-content: center;
}

.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-yellow);
  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 (min-width: 992px) {
  .module__user__info {
    padding: 85px 110px;
    margin-top: 60px;
  }
}
@media screen and (min-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 (min-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-gray-light-1);
    box-sizing: border-box;
    width: 100%;
    padding: 0 20px;
    color: white;
    line-height: 2;
    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 (min-width: 1280px) {
  .module__user__info--body {
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: "name billing" "email billing" "password software" "company renderer" "vat news";
  }
  .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 {
    gap: 30px 30px;
  }
  .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;
  }
  .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);
  }
  .module__user__info--pass .boxed p {
    position: relative;
    top: 15px;
  }
  .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-gray-dark);
  padding: 50px 20px;
  margin-top: 50px;
}

.module__user__kits--header h1 {
  font-weight: bold;
  font-size: 14px;
  line-height: 14px;
  color: #ffffff;
  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-text-gray-light);
  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-yellow);
  text-transform: uppercase;
  color: black;
  text-decoration: none;
  white-space: nowrap;
  font-weight: bold;
  margin-top: 20px;
}

.module__user__kits--body {
  display: grid;
  grid-row-gap: 15px;
  grid-column-gap: 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;
  width: 18px;
  height: 18px;
  transform: rotate(45deg);
  height: var(--height);
  width: var(--width);
  border-bottom: 4px solid var(--kb-yellow);
  border-right: 4px solid var(--kb-yellow);
  transform: rotate(-45deg) scale(-1, 1);
}

.module__user__kits--count {
  color: var(--kb-text-gray-light);
}

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

@media screen and (min-width: 992px) {
  .kb__user__sidebar {
    top: 60px;
  }
  .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: #ffffff;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  .module__user__kits--body {
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1280px) {
  .module__user__kits {
    padding: 45px 60px;
  }
  .module__user__kits--body {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 1460px) {
  .module__user__kits--body {
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
  }
  .kb__user__sidebar {
    top: 60px;
  }
}
@media screen and (min-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-gray-dark);
  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: #ffffff;
  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-text-gray-light);
}

.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 {
  color: var(--kb-yellow);
  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;
  color: white;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.5pt;
  font-weight: bold;
  display: inline-block;
  border: 1px solid var(--kb-yellow);
  color: var(--kb-yellow);
  background-color: transparent;
  margin: 0;
  font-size: 10px;
  height: 35px;
  line-height: 35px;
  min-width: 135px;
  letter-spacing: 1.5px;
  text-align: center;
}

.module__order__history--row a {
  font-family: var(--kb-body-font);
}

@media screen and (min-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: #ffffff;
    margin-bottom: 60px;
    padding-bottom: 30px;
  }
  .user__order__history .module__order__history--header {
    display: grid;
  }
  .module__order__history--row time {
    order: initial;
  }
  .module__order__history--grid {
    gap: 20px;
    display: grid;
    grid-template-columns: 70px 3fr 2fr 2fr 2fr;
  }
  .module__order__history--grid {
    border-bottom: 1px solid #808080;
    padding-bottom: 10px;
  }
  .module__order__history--header p {
    font-size: 17px;
    color: var(--kb-text-gray-light);
  }
  .module__order__history--body {
    padding: 0;
  }
  .module__order__history--row time {
    font-weight: normal;
  }
  .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-yellow);
    text-decoration: none;
    text-align: center;
    font-size: 14px;
  }
}
@media screen and (min-width: 1280px) {
  .module__order__history {
    padding: 45px 60px;
  }
}
.kb__modal__container {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: initial;
  align-items: initial;
  z-index: 999999999999999;
  background-color: rgba(0, 0, 0, 0.45);
}

.kb__modal {
  padding: 20px;
  background: #181818;
  border: 2px solid #615b5b;
  box-sizing: border-box;
  position: relative;
  width: 100%;
  overflow: auto;
}

.kb__modal__close {
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: absolute;
  right: 20px;
  top: 20px;
}

.kb__modal__close:before,
.kb__modal__close:after {
  content: "";
  display: block;
  height: 30px;
  width: 4px;
  background-color: #fff;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}

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

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

.kb__modal .kb__license__details h2 {
  font-size: 2rem !important;
}

.kb__modal .kb__license__details h4 {
  font-size: 1.4rem !important;
}

.kb__modal .kb__license__details p {
  font-size: 1rem !important;
}

.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: 600px;
  }
}
@media screen and (max-width: 768px) {
  .modal__text {
    margin-bottom: 20px;
  }
  .kb__modal {
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: rgba(0,0,0,0.5); */
  }
  .module__user__modal {
    padding: 30px;
    min-width: 360px;
    aspect-ratio: 3/1;
    background-color: #181818;
  }
  .modal__text {
    font-size: 11px;
    margin-top: 15px;
  }
}
.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-yellow);
  border-bottom: none;
}

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

.collection_filters-navCover {
  border-bottom: 2px solid var(--kb-gray-medium);
}

.collection_filters-panCover.openPane {
  border-bottom: 2px solid var(--kb-gray-medium);
  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: 900;
  letter-spacing: 0;
}

@keyframes display-none-transition {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-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 (min-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;
    }
} */
.collection_banner-cover {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  align-items: flex-end;
  height: 100%;
  position: relative;
}

.collection_banner-content {
  padding-bottom: 40px;
}

.collection_banner {
  height: calc(90vh - 150px);
  overflow: hidden;
}

.collection_banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

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

.collection_banner-text {
  max-width: 500px;
}

.collection_banner-text .explore_text,
.collection_banner-text .collection_title {
  margin-bottom: 25px;
}

.collection_banner-text .explore_text {
  font-size: 14px;
  letter-spacing: 4pt;
}

.collection_banner-text .collection_title {
  font-size: 48px;
  line-height: 1.2;
}

.collection_banner-text p {
  font-size: 14px;
}

.back__kitsPage {
  display: flex;
  align-items: center;
  font-family: var(--kb-heading-font);
  font-weight: 900;
}

.collection_banner-text {
  margin-bottom: 25px;
}

.back__kitsPage svg {
  width: 15px;
  height: 25px;
  margin-right: 15px;
}

.back__kitsPage svg path {
  fill: var(--kb-gray-light-1);
}

.back__kitsPage span {
  display: block;
  padding-top: 3px;
}

@media screen and (min-width: 1440px) {
  .explore_text,
  .collection_title {
    margin-bottom: 50px;
  }
  .collection_banner-text {
    margin-bottom: 50px;
  }
  .back__kitsPage svg {
    margin-right: 15px;
  }
  .collection_banner-cover {
    align-items: center;
  }
  .collection_banner-text .explore_text {
    font-size: 20px;
    letter-spacing: 4px;
  }
  .collection_banner-text .collection_title {
    font-size: 60px;
    line-height: 55px;
  }
  .collection_banner-text p {
    font-size: 16px;
  }
  .back__kitsPage span {
    font-size: 20px;
  }
}
@media screen and (min-width: 1920px) {
  .collection_banner {
    height: 850px;
    overflow: hidden;
  }
  .collection_banner-text {
    max-width: 600px;
  }
}
.section__date--counter {
  display: flex;
  justify-content: center;
  background-color: #111111;
  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-text-gray-light);
}
.section__date--counter .date__counter {
  font-family: var(--kb-heading-font);
  font-weight: 900;
  display: grid;
  grid-template-columns: 100px 25px 100px 25px 100px;
  gap: 10px;
  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: 55px;
  width: fit-content;
}
.section__date--counter .date__counter .label {
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  color: white;
}

@media screen and (min-width: 992px) {
  .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;
  }
}
#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 {
  -webkit-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 .confirm_form_errors p,
#shopify-section-module-identity-register .login_form_errors p,
#shopify-section-module-identity-register .form_reset_password_errors p,
#shopify-section-module-identity-login .register_form_errors p,
#shopify-section-module-identity-login .confirm_form_errors p,
#shopify-section-module-identity-login .login_form_errors p,
#shopify-section-module-identity-login .form_reset_password_errors p,
#shopify-section-module-identity-confirm-email .register_form_errors p,
#shopify-section-module-identity-confirm-email .confirm_form_errors p,
#shopify-section-module-identity-confirm-email .login_form_errors p,
#shopify-section-module-identity-confirm-email .form_reset_password_errors p,
#shopify-section-module-identity-reset-password .register_form_errors p,
#shopify-section-module-identity-reset-password .confirm_form_errors p,
#shopify-section-module-identity-reset-password .login_form_errors p,
#shopify-section-module-identity-reset-password .form_reset_password_errors p,
#shopify-section-module-identity-verify-account .register_form_errors p,
#shopify-section-module-identity-verify-account .confirm_form_errors p,
#shopify-section-module-identity-verify-account .login_form_errors p,
#shopify-section-module-identity-verify-account .form_reset_password_errors p {
  color: red;
  font-size: 14px;
  margin-bottom: 20px;
}
#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;
}
#shopify-section-module-identity-register .code__field,
#shopify-section-module-identity-login .code__field,
#shopify-section-module-identity-confirm-email .code__field,
#shopify-section-module-identity-reset-password .code__field,
#shopify-section-module-identity-verify-account .code__field {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-bottom: 25px;
}
#shopify-section-module-identity-register .code__field input,
#shopify-section-module-identity-login .code__field input,
#shopify-section-module-identity-confirm-email .code__field input,
#shopify-section-module-identity-reset-password .code__field input,
#shopify-section-module-identity-verify-account .code__field input {
  height: 50px;
  width: 50px;
  font-size: 16px !important;
  text-align: center;
  padding: 0 !important;
  margin: 0 auto;
}

.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__module__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: 60px;
  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__with__sidebar .kb_single_product {
  width: 100vw;
}

.kb_single_product .kb__enterprise__licensing,
.kb__single__product__with__sidebar .kb__module__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;
}

.kb_single_product .kb__single__product__header .kb__pdp__sidebar__header-on-sale .kb__kit__buy {
  justify-content: center;
}

.kb_single_product .kb__single__product__header .kb__kit__on__sale,
.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__fixed__addToCart .kb-btn {
  height: 35px;
  line-height: 35px;
  width: 250px;
  font-size: 10px;
  background-color: var(--kb-yellow);
  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;
}

.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 {
  transform: translate(-100px, 0);
}

.swiper-gallery-next {
  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-prev::after,
.swiper-gallery-next::after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
  color: #fff;
  font-size: 24px;
}

.swiper-gallery-prev::after {
  content: "prev";
}

.swiper-gallery-next::after {
  content: "next";
}

.swiper-gallery-prev {
  left: 10px;
}

.swiper-gallery-next {
  right: 10px;
}

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

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

.kb__single__pagination--slide {
  cursor: pointer;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  color: white;
}

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

.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 #aaa;
  border-bottom: 1px solid #aaa;
  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-family: "Objektiv Mk1";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.085em;
  color: #fbad18;
}
.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-family: "Objektiv Mk1";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 180%;
  color: #ffffff;
}
.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-yellow);
}

.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-gray-medium);
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 600;
}

.kb_tech_specs_description {
  color: #fff;
}

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

.kb_tech_thumbnails {
  gap: 10px;
  justify-content: center;
  align-items: center;
  display: flex;
  width: calc(100% + 40px);
  margin: 0 -20px;
}

.kb_tech_thumbnails figure {
  overflow: hidden;
}

.kb_tech_thumbnails figure img {
  border: 1px solid #808080;
  width: 100%;
}

/* Single Page Footer */
.v-bottom {
  vertical-align: bottom;
}

.kb__single__product__with__sidebar .kb_single_product {
  width: 100vw;
}

.kb__single__product__header {
  display: flex;
  justify-content: center;
}

.kb__single__product__form {
  padding: 0rem 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-text-gray-light);
  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 (min-width: 1520px) {
  .footer__meta__container .footer__meta {
    grid-template-columns: 1fr 1fr;
    padding: 40px;
  }
}
.footer__meta__container .footer__meta h1 {
  text-align: left;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-size: 38px;
  line-height: 58px;
  color: #ffffff;
  margin-bottom: 20px;
}
@media screen and (min-width: 1520px) {
  .footer__meta__container .footer__meta h1 {
    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 (min-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-gray-medium);
}

.footer__meta p span span {
  color: white;
  text-decoration: none;
  margin-left: 4px;
}

/* ----------------------------------------------
FIXED ADD CART BUTTON
-----------------------------------------------  */
.kb__pdp__fixed__addToCart {
  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-black);
  transition: all 0.5s ease;
}

.kb__pdp__fixed__addToCart.is-present {
  bottom: 0px;
}

.kb__pdp__fixed__addToCart .kb-btn {
  width: 250px;
  background-color: var(--kb-yellow);
  text-transform: uppercase;
}

/* ----------------------------------------------
CEVOID SECTION
-----------------------------------------------  */
.product .module__cevoid__app header {
  margin: 80px auto 40px;
  font-family: "objektiv-mk1", Arial, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 800;
  color: #ffffff;
  justify-content: flex-start;
  text-align: left;
  display: flex;
  gap: 20px;
  max-width: 1920px;
}

.product .module__cevoid__app header h2 {
  font-family: "objektiv-mk1", Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--kb-text-gray-light);
}

.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-text-gray-light);
}

@media screen and (min-width: 428px) {
  /* ----------------------------------------------
  HERO SECTION
  -----------------------------------------------  */
}
@media screen and (min-width: 560px) {
  .kb__single__product__form .kb__kit__form__radio__set .kb__kit__radio__item {
    max-width: none;
  }
}
@media screen and (min-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 (min-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__module__pdp__sidebar__container {
    width: 400px;
    display: block;
  }
  /* ----------------------------------------------
  HERO SECTION
  -----------------------------------------------  */
  .kb__pdp__fixed__addToCart.is-present,
  .kb__pdp__fixed__addToCart {
    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_content {
    margin-left: 10px;
  }
  .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);
  }
  .kb_single_hero .kb_single_hero_content p:last-child {
    /* color: var(--kb-text-gray-light); */
  }
  /* ----------------------------------------------
  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 (min-width: 1280px) {
  .kb__single__product__with__sidebar .kb_single_product {
    width: calc(100vw - 500px);
    height: fit-content;
  }
  .kb__single__product__with__sidebar .kb__module__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);
  }
  .kb_tech_thumbnails {
    gap: 10px;
    justify-content: center;
    align-items: center;
    display: flex;
    width: calc(100% + 40px);
    margin: 0 -20px;
  }
  .kb_tech_thumbnails figure {
    overflow: hidden;
  }
  .kb_tech_thumbnails figure img {
    border: 1px solid #808080;
    width: 100%;
  }
}
@media screen and (min-width: 1600px) {
  .kb__single__product__with__sidebar .kb_single_product {
    width: calc(100vw - 500px);
  }
  .kb__single__product__with__sidebar .kb__module__pdp__sidebar__container {
    width: 500px;
  }
  /* ----------------------------------------------
  HERO SECTION
  -----------------------------------------------  */
  .kb_single_hero_image {
    background-position: left center;
    height: 1200px;
  }
  .kb_single_hero_content {
    margin-left: 20px;
  }
  .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 {
    align-self: flex-end;
    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);
  }
  .kb_tech_thumbnails {
    gap: 20px;
    width: 100%;
    margin: 0;
  }
  /* ----------------------------------------------
  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 (min-width: 1920px) {
  /* ----------------------------------------------
  HERO SECTION
  -----------------------------------------------  */
  .kb_single_hero_content {
    margin-left: 75px;
  }
  .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 {
    align-self: flex-end;
    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;
  }
  /* ----------------------------------------------
  FOOTER SECTION
  -----------------------------------------------  */
}
@media screen and (min-width: 2400px) {
  .module__related__products,
  .kb_tech_specs,
  .kb_single_product .footer,
  .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);
  }
  /* ----------------------------------------------
  HERO SECTION
  -----------------------------------------------  */
  .kb_single_hero_content {
    margin-left: 200px;
  }
  /* ----------------------------------------------
  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 (min-width: 2500px) {
  .swiper-button-prev {
    left: 108px;
  }
  .swiper-button-next {
    right: 108px;
  }
  /* ----------------------------------------------
    TECHNICAL SPECIFICATIONS SECTION
  -----------------------------------------------  */
}
.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: rgba(0, 0, 0, 0);
  background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(17, 17, 17) 100%);
  background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(17, 17, 17) 100%);
  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: rgba(0, 0, 0, 0);
  background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgb(17, 17, 17) 100%);
  background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgb(17, 17, 17) 100%);
  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-yellow);
  font-size: 10px;
}

#shopify-section-footer {
  border-top: none !important;
  padding-bottom: 0 !important;
}

@media screen and (min-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;
  }
}
.customer__signin-title h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

/* General */
.customer__formField input::placeholder,
.customer__formField input::-moz-placeholder,
.customer__formField input::-webkit-input-placeholder {
  font-size: 13px;
}

.checkbox__cover {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}

.customer__formField .kb-checkbox + label,
.checkbox__cover .kb-checkbox + label {
  grid-template-columns: 30px 1fr;
}

.customer__formField label::before,
.checkbox__cover label::before {
  margin-right: 10px !important;
  width: 14px !important;
  height: 14px !important;
}

.customer__formField label::after,
.checkbox__cover label::after {
  border-width: 2px !important;
  width: 8px !important;
  height: 4px !important;
  left: 4px !important;
}

.customer__formField .checkboxLabel,
.checkbox__cover .checkboxLabel {
  font-size: 12px;
}

.checkbox__cover .forgot_password span {
  font-size: 12px !important;
  text-align: right;
}

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

.customer__signin-form .customer__formField input {
  padding: 0 12px;
}

.input-field-wrapper input,
.kb-select,
.or_login span {
  font-size: 14px !important;
}

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

.register_link span {
  margin-bottom: 12px;
  font-size: 14px;
}

.register_link span + a {
  font-size: 14px;
}

.customer__signup-form .input-large,
.customer__signup-form .input-medium,
.customer__signup-form .input-small,
.customer__signup-form .input-x-small,
.customer__signup-form .kb-select,
.customer__signup-form .kb-btn {
  height: 40px;
  line-height: 35px;
  font-size: 14px;
  font-weight: 500;
}

.kb-select {
  text-transform: initial;
}

/* Sign in Form */
.customer__signin-cover {
  padding-top: 60px;
}

.customer__signin {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
}

.customer__signin .form_errors {
  font-size: 15px;
  line-height: 2;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.customer__signin-cover {
  max-width: 400px;
  width: 100%;
  margin: 0 0 80px 0;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
}

/* .recover_link-cover {
    width: 25.45454545rem;
} */
.customer__signin-title {
  text-align: center;
  margin-bottom: 20px;
  width: 100%;
  font-size: 90px;
}

.customer__signin-form {
  width: 100%;
}

.customer__signup-form {
  display: grid;
  grid-template-areas: "name name, email email, password password, software software, news news, submit submit";
  gap: 30px;
}

.forgot_password span {
  font-size: 18px;
  letter-spacing: 1px;
}

.forgot_password span:hover {
  color: var(--kb-yellow);
}

.form__submit input[type=submit],
.form__submit button {
  display: block;
  width: 100%;
}

.checkbox__cover {
  margin-bottom: 10px;
}

.or_login {
  position: relative;
  margin: 20px 0;
  text-align: center;
}

.or_login::before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: var(--kb-gray-light-1);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-2px);
}

.or_login span {
  display: inline-block;
  background-color: var(--kb-black);
  position: relative;
  padding: 0 16px;
  font-weight: 700;
}

.google_login {
  margin-top: 30px;
}

.google_login a {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.690909rem 2.181818rem 0.570909rem 2.181818rem;
  font-size: 0.5909090909rem;
}

.google_login-btn {
  display: flex;
  align-items: center;
}

.google_icon {
  width: 1.19090909rem;
  height: 1.19090909rem;
  margin-right: 0.45454545rem;
}

.google_icon svg {
  width: 100%;
  height: 100%;
}

.google_login-btn svg path {
  fill: var(--kb-yellow);
}

.google_login-btn:hover svg path {
  fill: var(--kb-white);
}

.google_icon span {
  display: block;
  padding-top: 0.2272727272rem;
}

.form_errors {
  text-align: left;
  width: 100%;
  margin-bottom: 1rem;
  font-size: 0.685454rem;
  color: var(--kb-yellow);
}

.success_notification {
  letter-spacing: 2px;
  line-height: 1.5;
  border: 1px solid var(--kb-gray-light);
  padding: 0.5rem;
  width: 100%;
  text-align: center;
  margin-bottom: 1.5rem;
}

.register_link {
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  font-size: 14px;
  margin-top: 40px;
}

/* Recover Form */
.reset_buttons {
  display: flex;
  justify-content: space-between;
}

.reset_buttons button,
.reset_buttons input {
  width: 49% !important;
  display: inline-block !important;
  min-width: auto;
}

.reset_notification {
  margin: 1rem 0 0 0;
}

#recover {
  opacity: 0;
  overflow: hidden;
  transform: translateY(20%);
  height: 0;
  transition: all 500ms cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

#recover.show_recoverForm {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  height: auto;
}

.hide_loginForm {
  display: none;
}

.recoverSuccess__message-title {
  margin-bottom: 24px;
}

#forgotPass {
  cursor: pointer;
}

.form_errors > div ul li a {
  color: var(--kb-white);
  text-decoration: none;
}

.half_fields-cover {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}

.checkboxLabel {
  font-size: 17px;
}

.recoverSuccess__message-content .content_1 {
  margin-bottom: 1.5rem;
  display: block;
}

.recoverSuccess__message-content span {
  display: block;
}

/* Register Page */
.half_fields-cover {
  flex-wrap: wrap;
}

.half_fields-cover .input-field-wrapper {
  width: 100%;
}

/* Recovery Message */
.recoverSuccess__message .heading-4 {
  font-size: 40px;
}

.recoverSuccess__message-content {
  font-size: 14px;
}

.customer__signin-form input {
  font-size: 14px;
}

/*  My account page */
.my_account {
  padding: 2.5rem 0;
}

.form_mobile-logo {
  margin-bottom: 30px;
  width: 45px;
  height: 45px;
}

.form_mobile-logo img {
  width: 100%;
  height: auto;
}

.customer__signin-form input {
  padding: 0 20px !important;
  margin-bottom: 30px;
}

.customer__signin .form__submit .kb-btn {
  line-height: 1;
}

/* GOOGLE STYLES */
.abcRioButton {
  width: 100% !important;
  height: 40px !important;
  margin-top: 30px;
  border: 1px solid var(--kb-yellow) !important;
  color: var(--kb-yellow) !important;
  background-color: transparent !important;
  text-align: center !important;
  text-decoration: none !important;
  vertical-align: middle !important;
  cursor: pointer !important;
}

.abcRioButtonContentWrapper {
  display: flex !important;
  align-items: center !important;
  justify-content: center;
  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;
}

.abcRioButtonIconImage .abcRioButtonSvg g path:not(:last-child) {
  fill: var(--kb-yellow);
}

.abcRioButton:hover {
  color: var(--kb-white) !important;
}

.abcRioButton:hover .abcRioButtonSvg g path:not(:last-child) {
  fill: var(--kb-white) !important;
}

.abcRioButtonContents {
  font-size: 14px !important;
  font-weight: bold !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
}

.abcRioButtonIconImage {
  margin-right: 10px !important;
}

.abcRioButtonIconImage,
.abcRioButtonIconImage .abcRioButtonSvg {
  width: 19px;
  height: 19px;
}

/* ---------------------------------------------------------------------------
FORM ERRORS
--------------------------------------------------------------------------- */
.customer__signin .form_errors p {
  font-size: 15px;
}

.customer__signin .form_errors ul {
  font-size: 13px;
  line-height: 2;
  list-style: disc;
  list-style-position: inside;
}

.customer__signup-form .form__message {
  margin: 10px 0 0 0;
  line-height: 1;
  font-size: 13px;
}

@media screen and (min-width: 767px) {
  .customer__signin-title h2 {
    font-size: 40px;
    /* margin-bottom: 31px; */
  }
}
@media screen and (min-width: 992px) {
  .customer__signin-cover {
    padding: 0;
  }
  .customer__signin-title h2 {
    font-size: 48px;
    /* margin-bottom: 30px; */
  }
  .checkbox__cover {
    flex-direction: row;
  }
  .half_fields-cover {
    gap: 30px;
  }
  .customer__signup-form {
    gap: 30px 0;
    width: 100%;
  }
  .recoverSuccess__message-content {
    font-size: 17px;
  }
  .customer__signin-form input {
    font-size: 13px !important;
  }
  .customer__signin .form__submit .kb-btn {
    font-size: 13px;
  }
  .input-field-wrapper input,
  .kb-select,
  .or_login span {
    font-size: 13px !important;
  }
  .register_link span + a,
  .register_link span {
    font-size: 13px;
  }
  .recoverSuccess__message-content {
    font-size: 17px;
  }
  .customer__signin-form input {
    font-size: 13px;
  }
  .customer__signin .form__submit .kb-btn {
    font-size: 13px;
  }
  .customer__signin-cover {
    margin: 0 30px;
  }
  .checkbox__cover .kb-checkbox + label,
  .customer__formField .kb-checkbox + label {
    grid-template-columns: 40px 1fr;
  }
  .customer__signup-form select,
  .customer__signup-form input {
    height: 45px;
    padding: 0 20px !important;
    text-transform: capitalize;
  }
  .customer__signup-form input {
    text-transform: none;
  }
  .customer__signup-form .select-wrapper::after {
    right: 17px;
  }
  .customer__signup-form option {
    text-transform: capitalize;
  }
  .customer__signin-form input {
    height: 50px;
    line-height: 50px;
    padding: 0 20px !important;
    margin-bottom: 30px;
  }
  .customer__signup-form input,
  .customer__formField input,
  .customer__formField input::placeholder,
  .customer__formField input::-moz-placeholder,
  .customer__formField input::-webkit-input-placeholder {
    font-size: 13px;
  }
  .customer__formField label::before,
  .checkbox__cover label::before {
    width: 20px !important;
    height: 20px !important;
  }
  .customer__formField label::after,
  .checkbox__cover label::after {
    border-width: 2px !important;
    width: 10px !important;
    height: 4px !important;
    left: 6px !important;
  }
  .customer__formField .checkboxLabel,
  .checkbox__cover .checkboxLabel {
    font-size: 13px;
    line-height: 1.6;
  }
  .checkbox__cover .forgot_password span {
    font-size: 13px !important;
    text-align: right;
  }
  .register_link {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
  }
  .register_link span {
    margin: 0 10px 0 0;
  }
  .form__submit .kb-btn {
    height: 45px !important;
  }
  .half_fields-cover {
    flex-wrap: nowrap;
  }
  .half_fields-cover {
    grid-template-columns: 1fr 1fr;
  }
  /* GOOGLE STYLES */
  .abcRioButtonContents {
    font-size: 13px !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
  }
  .abcRioButtonIconImage {
    width: 20px !important;
    height: 40px !important;
    margin-right: 0 !important;
  }
  .abcRioButtonIconImage .abcRioButtonSvg {
    width: 20px !important;
    height: 40px !important;
  }
  .google_login {
    /* margin-top: 60px; */
  }
  .abcRioButton {
    height: 45px !important;
  }
  .confirmation_msg p {
    font-size: 17px;
  }
  .confirmation_msg {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 992px) {
  .abcRioButton {
    height: 70px !important;
  }
}
@media screen and (max-width: 767px) {
  .abcRioButton {
    height: 40px !important;
  }
}
@media screen and (min-height: 800px) and (min-width: 992px) {
  .customer__signin-cover {
    height: calc(100vh - 75px);
  }
}
.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 {
  /* content: "Place Order"; */
  display: block;
}

.step__footer #continue_button span {
  /* display: none; */
}

.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-yellow);
  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-yellow) !important;
}

.logged-in-customer-information__paragraph {
  font-size: 16px;
}

.content-box .content-box__row--secondary {
  /* display: none; */
}

/* CART CHECKOUT */
.module__custom__checkout {
  background: #181818;
  padding: 15px;
}

.field__label {
  display: none;
}

.order-summary__sections {
  height: fit-content;
}

.module__custom__checkout--title {
  text-transform: capitalize;
  font-weight: 600;
  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: 600;
  letter-spacing: 0.4pt;
  border-radius: 0px;
}

.product-thumbnail {
  background: transparent;
  border-radius: 0px;
  height: 120px;
  width: 100px;
}

.product-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
  border-radius: 0;
}

.product {
  box-shadow: 0px 0px 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-yellow);
  font-weight: bold;
}

.product__price span {
  color: white;
  font-size: 20px;
  padding: 0;
}

/* 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: 600;
}

.section__text {
  font-size: 14px;
  color: var(--kb-text-gray-light);
}

.section--payment-method {
  padding: 0;
}

#continue_button {
  font-weight: bold;
}

.section--payment-method {
  margin-top: 0;
  padding-top: 0;
}

.section--remember-me {
  padding-top: 0;
  margin-top: 0;
}

.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-text-gray-light);
}

[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-text-gray-light);
}

[data-remember-me] .content-box .field--half {
  width: 100%;
}

.radio__label__primary {
  color: white;
}

*[data-credit-card-fields] .field__input {
  display: none;
}

*[data-credit-card-fields] .field__input {
  border: 1px solid #808080;
  height: 45px;
  font-size: 13px;
  padding-top: 13px;
  display: flex;
  align-items: center;
  background: #ffffff;
}

*[data-credit-card-fields] .field__label {
  color: #363636;
  font-weight: 500;
}

#section--remember-me__phone {
  padding: 0;
}

#checkout_vault_phone {
  padding-left: 45px !important;
}

.section--remember-me h2 {
  display: none;
}

.edit_checkout {
  display: grid;
  padding-top: 20px;
}

.tag .edit_checkout {
  padding-top: 0;
}

.section--remember-me {
  order: 3;
  margin-top: 30px;
}

.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;
}

.order-summary__sections {
  visibility: visible !important;
}

.module__custom__checkout {
  margin-bottom: 20px;
}

/* 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;
}

.product__price span {
  text-align: left;
  display: block;
}

.blank-slate__icon {
  display: none;
}

@media screen and (min-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 (min-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.1428571429em;
  }
  .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: 0px;
  }
}
.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 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-text-gray-light);
  font-weight: bold;
  white-space: nowrap;
}

.breadcrumb__link:hover {
  color: var(--kb-yellow);
}

.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 (min-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;
}

.step[data-step=contact_information] .step__sections .address-fields {
  /* display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 20px; */
}

.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-yellow);
  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-yellow);
}

/* ---------------------------------------------------------------------------
    CUSTOM PAYMENT METHODS
--------------------------------------------------------------------------- */
[data-step=payment_method] .content-box {
  border-radius: 0 !important;
  margin-bottom: 40px;
}

[data-step=payment_method] .section--payment-method {
  /* display: none; */
}

[data-step=payment_method] .content-box h3 {
  font-size: 24px;
}

[data-step=payment_method] .blank-slate p {
  font-size: 12px;
}

@media (min-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 (max-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 (max-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 (min-width: 768px) {
  [data-address-field=zip] {
    width: calc(33.33333% - 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;
  align-self: center;
  justify-self: 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-yellow);
  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;
}

.single__collection {
  padding: 100px 0 100px 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 (min-width: 767px) {
  .product_grid {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 24px;
  }
}
@media screen and (min-width: 992px) {
  .product_grid {
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 17px;
  }
}
.license__page h1,
.license__page h3,
.license__page p {
  color: var(--kb-white);
}

/* ----------------------------------------------------------------
    LICENSE HERO SECTION
---------------------------------------------------------------- */
.license__page {
  background: #111;
}

.license__page .license__page__hero {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  height: 800px;
}

.license__page .license__page__hero .license__page__hero--image {
  display: none;
}

.license__page .license__page__hero .app__container {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0;
}

.license__page .license__page__hero .license__page__hero--inner {
  padding: 0 20px;
}

.license__page .license__page__hero .license__page__hero--inner h1 {
  font-size: 35px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 30px;
}

.license__page .license__page__hero .license__page__hero--inner p {
  font-size: 14px;
  line-height: 1.8;
}

.license__page .license__page__hero .license__page__hero--actions {
  margin-top: 40px;
}

.license__page .license__page__hero .license__page__hero--actions .kb-btn {
  max-width: 120px;
  font-size: 10px;
  line-height: 10px;
  height: 35px;
  padding: 0;
  margin: 0 8px 10px 0;
}

/* ----------------------------------------------------------------
    LICENSE INTRO SECTION
---------------------------------------------------------------- */
.licences__instruction {
  max-width: 960px;
  margin-top: 60px;
  position: relative;
  z-index: 3;
}

.license__page__info .licences__instruction .divider {
  border-bottom: 2px solid #808080;
  width: 120px;
  margin: 38px 0;
}

.license__page__info .licences__instruction h3 {
  font-size: 28px;
}

.license__page__info .licences__instruction p {
  font-size: 14px;
  color: var(--kb-text-gray-light);
  line-height: 2;
  font-family: var(--kb-body-font-poppins);
}

/* ----------------------------------------------------------------
    LICENSE DETAILS SECTION
---------------------------------------------------------------- */
.license__page__info .license__type {
  padding: 65px 0;
}

.license__page__info .license__type .license__type--title {
  font-size: 28px;
  margin-bottom: 40px;
}

.license__page__info .license__type--colums {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
}

.license__page__info .license__type--colums .license__column {
  background: var(--kb-gray-dark);
  border: 1px solid #808080;
  text-align: center;
}

.license__page__info .license__column .license__column--header {
  background: var(--kb-yellow);
  color: var(--kb-black);
  margin-bottom: 50px;
}

.license__page__info .license__column .license__column--header h4 {
  text-transform: uppercase;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 2px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
}

.license__page__info .license__column .license__column--body {
  padding: 0 40px;
}

.license__page__info .license__column .license__column--body svg {
  max-width: 40px;
  margin-bottom: 30px;
}

.license__page__info .license__column .license__column--body p {
  color: var(--kb-text-gray-light);
  font-size: 14px;
  font-family: var(--kb-body-font-poppins);
}

.license__page__info .license__column .divider {
  height: 2px;
  background-color: #808080;
  width: 120px;
  display: block;
  margin: 35px auto;
}

.license__page__info .license__column .license__column--footer {
  padding: 0 50px 50px;
}

.license__page__info .license__column .license__column--footer p {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.5px;
  font-weight: 900;
  padding: 0 20px;
}

/* ----------------------------------------------------------------
    LICENSE SUMMARY SECTION
---------------------------------------------------------------- */
.license__summary__columns {
  display: grid;
  gap: 40px;
  margin-bottom: 40px;
}

.license__summary--column .license__summary--loading-bar {
  background: url(//cdn.shopify.com/s/files/1/0602/8299/4867/t/51/assets/Element_Construction_Lines.png?v=3358765984213823292) no-repeat;
  height: 10px;
  background-size: cover;
  margin-bottom: 35px;
}

.license__summary--column h3 {
  color: #fff;
  font-size: 45px;
  line-height: 0.9;
  text-align: left;
}

.license__summary--column .divider {
  border-bottom: 2px solid #808080;
  width: 120px;
  margin: 32px 0 0;
}

.license__summary--column h4 {
  color: #fff;
  letter-spacing: 1.2px;
  margin-bottom: 20px;
  font-size: 28px;
  text-align: left;
}

.license__summary--column p {
  font-size: 14px;
  color: var(--kb-text-gray-light);
  line-height: 2;
  text-align: left;
}

/* ----------------------------------------------------------------
    LICENSE FOOTER
---------------------------------------------------------------- */
.license__page__footer {
  text-align: center;
  padding: 0;
  min-height: 260px !important;
  background-color: #181818;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.license__page__footer h4 {
  font-size: 28px;
  color: white;
  margin-bottom: 30px;
}

.license__page__footer--actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-direction: column;
  align-items: center;
}

.license__page__footer--actions .kb-btn {
  height: 35px;
  font-size: 10px;
  line-height: 35px;
  padding: 0;
  min-width: 140px;
  width: 140px;
}

@media screen and (min-width: 767px) {
  .license__summary--column h4 {
    text-align: center;
  }
  .license__summary--column p {
    text-align: center;
  }
}
@media screen and (min-width: 992px) {
  /* ----------------------------------------------------------------
        LICENSE HERO SECTION
    ---------------------------------------------------------------- */
  .license__page .license__page__hero .app__container {
    padding: 0 20px;
  }
  .license__page .license__page__hero {
    position: relative;
    background-image: none !important;
    background: linear-gradient(-180deg, #181818 66%, rgba(0, 0, 0, 0) 18%) !important;
    height: 1100px;
  }
  .license__page .license__page__hero .license__page__hero--inner {
    padding: 0;
    max-width: 700px;
    position: relative;
    z-index: 10;
    margin-top: -160px;
  }
  .license__page .license__page__hero .license__page__hero--image {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
    height: 100%;
  }
  .license__page .license__page__hero .license__page__hero--image img {
    height: 100%;
    width: auto;
  }
  .license__page .license__page__hero .license__page__hero--inner h1 {
    font-size: 60px;
    line-height: 1;
  }
  .license__page .license__page__hero .license__page__hero--inner p {
    font-size: 16px;
    font-family: var(--kb-body-font-poppins);
  }
  .license__page .license__page__hero .license__page__hero--actions .kb-btn {
    min-width: 160px;
    font-size: 14px;
    line-height: 45px;
    height: 45px;
    display: inline-block;
    margin: 0 20px 20px 0;
  }
  /* ----------------------------------------------------------------
        LICENSE INTRO SECTION
    ---------------------------------------------------------------- */
  .license__page__info .licences__instruction {
    margin-top: 0;
  }
  .license__page__info .licences__instruction h3 {
    font-size: 40px;
    margin-bottom: 40px;
  }
  .license__page__info .licences__instruction p {
    font-size: 16px;
    font-family: var(--kb-body-font-poppins);
  }
  .license__page__info .licences__instruction .divider {
    width: 400px;
  }
  /* ----------------------------------------------------------------
        LICENSE DETAILS SECTION
    ---------------------------------------------------------------- */
  .license__page__info .license__type {
    margin-bottom: 80px;
  }
  .license__page__info .license__type .license__type--title {
    font-size: 40px;
    margin-bottom: 60px;
  }
  .license__page__info .license__column .license__column--body svg {
    max-width: 50px;
  }
  .license__page__info .license__type--colums {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .license__page__info .license__column .license__column--body p {
    font-size: 16px;
    font-family: var(--kb-body-font-poppins);
  }
  /* ----------------------------------------------------------------
        LICENSE SUMMARY SECTION
    ---------------------------------------------------------------- */
  .license__summary__columns {
    gap: 40px;
    margin-bottom: 140px;
    grid-template-columns: repeat(3, 1fr);
  }
  .license__summary--column .license__summary--loading-bar {
    height: 20px;
    margin-bottom: 45px;
  }
  .license__summary--column h4 {
    margin-bottom: 20px;
    font-weight: 900;
    font-size: 48px;
    line-height: 1;
    text-align: left;
  }
  .license__summary--column p {
    font-size: 16px;
    text-align: left;
  }
  /* ----------------------------------------------------------------
        LICENSE FOOTER
    ---------------------------------------------------------------- */
  .license__page__footer {
    min-height: 360px !important;
  }
  .license__summary--column h3 {
    font-size: 50px;
  }
  .license__page__footer h4 {
    font-size: 42px;
    margin-bottom: 60px;
  }
  .license__page__footer--actions {
    gap: 18px;
    flex-direction: row;
  }
  .license__page__footer--actions .kb-btn {
    height: 45px;
    line-height: 45px;
    font-size: 13px;
    min-width: 180px;
  }
  .license__summary--column h3 {
    padding-top: 70px;
  }
}
@media screen and (min-width: 1280px) {
  /* ----------------------------------------------------------------
        LICENSE HERO SECTION
    ---------------------------------------------------------------- */
  .license__page .license__page__hero {
    height: 800px;
  }
  .license__page .license__page__hero .license__page__hero--inner {
    max-width: 450px;
  }
  .license__page .license__page__hero .license__page__hero--image img {
    height: 90%;
    width: auto;
  }
  /* ----------------------------------------------------------------
        LICENSE INTRO SECTION
    ---------------------------------------------------------------- */
  .license__page__info .licences__instruction {
    margin-top: -180px;
    max-width: 800px;
  }
  .license__summary--column h3 {
    font-size: 65px;
    padding-top: 0;
  }
}
@media screen and (min-width: 1440px) {
  /* ----------------------------------------------------------------
        LICENSE HERO SECTION
    ---------------------------------------------------------------- */
  .license__page .license__page__hero {
    height: 900px;
  }
  .license__page .license__page__hero .license__page__hero--image img {
    height: 100%;
    width: auto;
  }
  .license__page .license__page__hero .license__page__hero--inner {
    max-width: 550px;
    margin-top: -160px;
  }
  .license__page .license__page__hero .license__page__hero--inner h1 {
    font-size: 60px;
  }
  .license__page .license__page__hero .license__page__hero--inner p {
    font-size: 16px;
  }
  .license__page__info .licences__instruction p {
    font-size: 20px;
    font-family: var(--kb-body-font-poppins);
  }
  /* ----------------------------------------------------------------
            LICENSE DETAILS SECTION
    ---------------------------------------------------------------- */
  .license__page__info .license__type--colums {
    gap: 40px;
  }
  .license__summary--column h3 {
    padding-top: 0;
  }
}
@media screen and (min-width: 1920px) {
  /* ----------------------------------------------------------------
        LICENSE HERO SECTION
    ---------------------------------------------------------------- */
  .license__page .license__page__hero .app__container {
    padding: 0 20px;
  }
  .license__page .license__page__hero {
    height: 1100px;
  }
  .license__page .license__page__hero .license__page__hero--inner {
    max-width: 700px;
  }
  /* ----------------------------------------------------------------
        LICENSE INTRO SECTION
    ---------------------------------------------------------------- */
  .license__page__info .licences__instruction {
    margin-top: -250px;
    max-width: 960px;
  }
  .license__summary--column h3 {
    font-size: 85px;
  }
}
.page__enterprise {
  padding-top: 60px;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 60px;
  margin-bottom: 60px;
}

.enterprise__form--container {
  padding: 20px 20px 40px 20px;
  order: 2;
  margin: 0 -20px;
  height: fit-content;
}

.enterprise__form--title {
  margin-bottom: 40px;
}

.enterprise__form--title h2 {
  text-transform: uppercase;
  text-align: center;
  font-style: normal;
  font-weight: bold;
  font-size: 22px;
  line-height: 40px;
}

.page__enterprise .kb__enterprise__form {
  display: grid;
  gap: 20px;
  flex-direction: column;
}

.kb__enterprise__form--half {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  flex-wrap: wrap;
}

.page__enterprise .kb__enterprise__form .enterprise_field {
  width: 100%;
}

.page__enterprise .input-small::placeholder,
.page__enterprise .input-medium::placeholder,
.page__enterprise .input-x-small::placeholder {
  font-size: 13px;
}

.page__enterprise .kb__enterprise__form label {
  font-size: 13px;
  display: block;
  margin-bottom: 8px;
}

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

.page__enterprise .kb__enterprise__form select {
  font-weight: normal !important;
  font-size: 13px;
  text-transform: capitalize;
  height: 40px;
  line-height: 40px;
}

.page__enterprise .kb__enterprise__form textarea {
  line-height: 3;
  overflow-y: auto;
  min-height: 120px;
}

.page__enterprise .kb__enterprise__form .form__submit button {
  width: 100%;
  height: 50px;
  line-height: 13px;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 2px;
}

.enterprise__info {
  text-align: center;
}

.enterprise__info h2 {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 30px;
}

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

/*  --------------------------------------------------------
ENTERPRISE LOGOS
-------------------------------------------------------- */
.enterprise__info--list {
  margin-bottom: 60px;
}

.enterprise__info--list-item {
  margin-bottom: 30px;
}

.enterprise__info--list-item h3 {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 17px;
  margin-bottom: 10px;
  font-family: var(--kb-heading-font);
}

.enterprise__info--list-item p {
  font-size: 14px;
  line-height: 1.6;
  font-family: var(--kb-body-font-poppins);
}

.enterprise__info--list-item p a {
  color: var(--kb-yellow);
  font-size: 14px;
  font-family: var(--kb-body-font-poppins);
}

/*  --------------------------------------------------------
ENTERPRISE LOGOS
-------------------------------------------------------- */
.page__enterprise .enterprise__clients {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  margin: 40px 0 0;
}

.page__enterprise .enterprise__logo {
  max-width: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.5;
  transition: opacity 0.5 cubic-bezier(0.075, 0.82, 0.165, 1);
  margin: 10px 20px;
}

.page__enterprise .enterprise__logo:hover {
  opacity: 1;
}

.page__enterprise .enterprise__logo img {
  width: 100%;
  height: auto;
}

/*  --------------------------------------------------------
FORM SUCCESS
-------------------------------------------------------- */
.form__success {
  text-align: center;
}

.form__success h3 {
  font-size: 28px;
  line-height: 1;
}

.form__success p {
  font-size: 16px;
  margin-top: 30px;
  color: var(--kb-text-gray-light);
}

.form__success .kb-btn {
  height: 50px;
  font-size: 16px;
  letter-spacing: 1px;
  margin-top: 32px;
}

@media screen and (min-width: 1280px) {
  .page__enterprise {
    padding-top: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 60px;
  }
  .kb__enterprise__form--half {
    grid-template-columns: 1fr 1fr;
  }
  .page__enterprise .enterprise__clients {
    gap: 20px 40px;
  }
  .page__enterprise .enterprise__logo {
    margin: 0;
  }
  /*  --------------------------------------------------------
    ENTERPRISE FORM
    -------------------------------------------------------- */
  .page__enterprise .kb__enterprise__form {
    gap: 40px 20px;
  }
  .enterprise__form--container {
    padding: 80px;
    order: 0;
    margin: 0;
  }
  .enterprise__form--title h2 {
    font-size: 40px;
  }
  .page__enterprise .input-medium::placeholder,
  .page__enterprise .input-x-small::placeholder {
    font-size: 14px;
  }
  .page__enterprise .kb__enterprise__form label {
    font-size: 14px;
  }
  .page__enterprise .kb__enterprise__form select,
  .page__enterprise .kb__enterprise__form input {
    font-size: 14px;
    height: 50px;
    line-height: 50px;
  }
  .kb__enterprise__form--half {
    flex-wrap: nowrap;
  }
  .enterprise__info {
    text-align: left;
    padding-top: 80px;
  }
  .enterprise__info h2 {
    font-size: 40px;
    max-width: 520px;
  }
  .enterprise__info--list-item {
    max-width: 520px;
  }
  .enterprise__info--list-item h3 {
    font-size: 28px;
  }
  /*  --------------------------------------------------------
    FORM SUCCESS
    -------------------------------------------------------- */
  .form__success {
    text-align: center;
    padding: 80px 0;
  }
  .form__success h3 {
    font-size: 50px;
  }
  /*  --------------------------------------------------------
    ENTERPRISE LOGOS
    -------------------------------------------------------- */
  .page__enterprise .enterprise__clients {
    display: grid;
    grid-template-columns: repeat(4, 70px);
    gap: 40px;
    margin: 40px 0 60px;
    justify-content: space-between;
  }
  .page__enterprise .enterprise__logo {
    max-width: 50px;
  }
}
@media screen and (min-width: 1280px) {
  .page__enterprise {
    grid-template-columns: 1fr 1fr;
  }
  .enterprise__form--container {
    padding: 80px;
  }
  /*  --------------------------------------------------------
    ENTERPRISE LOGOS
    -------------------------------------------------------- */
  .page__enterprise .enterprise__clients {
    grid-template-columns: repeat(7, 40px);
    gap: 60px 20px;
    max-width: 590px;
  }
}
@media screen and (min-width: 1440px) {
  /*  --------------------------------------------------------
    ENTERPRISE FORM
    -------------------------------------------------------- */
  .enterprise__form--container {
    padding: 80px;
  }
}
/* -------------------------------------------------------------------------------------------
    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-yellow);
}

.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: 900;
}

.dib__post .dib__post--title a {
  color: #fff;
  text-decoration: none;
}

.dib__post .dib__post--summary {
  color: var(--kb-text-gray-light);
  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: 900;
  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-text-gray-light);
  margin-bottom: 40px;
}

.dib__single__post__container h3 {
  margin-bottom: 20px;
}

.dib__single__post__container p a {
  color: var(--kb-yellow);
}

.dib__single__post__container p.highlight {
  color: var(--kb-yellow);
}

.single__post--author {
  margin-top: 250px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background-color: var(--kb-yellow);
  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: 300;
}

.single__post--author--meta h3 {
  font-size: 26px;
}

@media screen and (min-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: 600;
  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-yellow);
  border-right: 4px solid var(--kb-yellow);
}

#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-template-1 .dib-post .dib-post-title a {
  text-decoration: none;
  color: #fff;
}

#dib-template-1 .dib-post:hover .dib-post-title a {
  color: var(--kb-yellow);
}

#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 0;
  color: var(--kb-text-gray-light);
}

#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-text-gray-light);
  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-text-gray-light);
  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-text-gray-light);
}

#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%;
}

#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-yellow);
}

#dib-post-single .dib-post-content p.highlight {
  color: var(--kb-yellow);
}

#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-yellow);
  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-yellow);
  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-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%;
}

#dib-template-1 > .dib-author {
  margin-top: 80px;
  text-align: center;
  background: var(--kb-yellow);
  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 .dib-related-post {
  background: transparent;
  border: none;
  border-radius: 0px;
}

.dib-related-posts .dib-related-post .dib-post-text {
  padding: 0 20px;
}

.dib-related-posts .dib-related-post .dib-post-text .dib-post-title {
  line-height: 1;
  text-transform: uppercase;
  text-align: left;
}

.dib-related-posts .dib-related-post .dib-post-text .dib-post-title a {
  color: white;
}

.dib-related-posts .dib-related-post .dib-post-text p {
  color: var(--kb-text-gray-light);
  margin-top: 18px;
}

.dib .dib-related .dib-related-post {
  background-color: transparent !important;
}

.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;
}

@media screen and (min-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-related-posts .dib-related-post .dib-post-text {
    padding: 0;
  }
  #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: 40x;
  margin-bottom: 50px;
}

.eula__cover .page__content p {
  margin: 32px 0;
  font-size: 12px;
}

@media screen and (min-width: 992px) {
  .eula__cover h1 {
    font-size: 40px;
    line-height: 40px;
  }
  .eula__cover .page__content p {
    font-size: 14px;
  }
  .eula__cover {
    color: #fff;
    padding-top: 70px;
  }
  .eula__cover h1 {
    margin-bottom: 80px;
  }
}
@media screen and (min-width: 1920px) {
  .eula__cover .page__content p {
    font-size: 20px;
  }
  .eula__cover h1 {
    font-size: 60px;
    line-height: 55px;
  }
  .eula__cover {
    color: #fff;
    padding-top: 100px;
  }
  .eula__cover h1 {
    margin-bottom: 132px;
  }
}
.privacy__page-wrapper {
  overflow: hidden;
}

.privacy__page-wrapper .page__title {
  color: var(--kb-white);
}

.privacy__page-wrapper .page__content ul,
.page__content ol {
  margin-bottom: 40px;
}

.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-text-gray-light);
}

.privacy__page-wrapper .page__content ul,
.page__content ol {
  padding-left: 40px;
  line-height: 2;
}

.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-yellow);
  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 h2,
.privacy__page-wrapper .page__content h4,
.privacy__page-wrapper .page__content h5,
.page__content h6 {
  color: var(--kb-white) !important;
}

.privacy__page-wrapper .page__content h3,
.privacy__page-wrapper .page__content .heading-4 {
  color: var(--kb-white) !important;
}

.privacy__page-wrapper .page__content p {
  font-size: 26px;
  line-height: 1.5;
  color: var(--kb-text-gray-light);
  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-gray-light-1);
  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-text-gray-light);
  font-size: 24px;
  line-height: 1.5;
}

.privacy__page-wrapper .page__content table tbody tr td ul {
  padding: 0;
}

.page__title {
  padding: 0;
  margin: 30px 0 60px 0;
}

.privacy__page-wrapper p,
.privacy__page-wrapper ul li,
.privacy__page-wrapper ol li {
  color: var(--kb-text-gray-light);
}

.privacy__page-wrapper .page__content table tbody tr td p {
  margin: 0 0 30px 0;
}

.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);
}

.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: 14px;
}

.table_wrapper {
  overflow-x: scroll;
}

.privacy__page-wrapper .page__title {
  font-size: 35px;
  line-height: 35px;
}

@media screen and (min-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 (min-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 (min-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 (min-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 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-text-gray-light);
  text-align: center;
  font-family: var(--font-body-family);
}

.account__page__navigation .app__navigation .customer__nav li.active svg * {
  fill: var(--kb-yellow);
}

.account__page__navigation .app__navigation .customer__nav li.active {
  color: var(--kb-yellow);
}

.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-gray-dark);
  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-yellow);
}

/* 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 {
  -webkit-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-black);
}

::placeholder {
  text-transform: capitalize;
}

.modal__text {
  color: var(--kb-text-gray-light);
  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-yellow);
  line-height: 1.4;
}

/* INPUT TEXTAREA */
.module__user__modal textarea {
  -webkit-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-yellow) !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: 600;
  cursor: pointer;
  border: none;
  background: var(--kb-yellow);
}

.module__user__modal--actions #cancel__edit {
  height: 35px;
  line-height: 35px;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--kb-yellow);
  color: var(--kb-yellow);
  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-yellow);
  text-decoration: none;
}

.success__modal .kb__modal button {
  text-align: center;
  border: 2px solid var(--kb-yellow);
  border-radius: 0;
  color: var(--kb-yellow);
  text-transform: uppercase;
  background: transparent;
  font-weight: bold;
  margin-top: 10px;
  cursor: pointer;
  height: 45px;
  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-yellow);
}

.error__modal .kb__modal button {
  text-align: center;
  border: 2px solid var(--kb-yellow);
  border-radius: 0;
  color: var(--kb-yellow);
  text-transform: uppercase;
  background: transparent;
  font-weight: bold;
  margin-top: 10px;
  cursor: pointer;
  height: 45px;
  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;
}

.email__taken {
  font-size: 14px;
  color: var(--kb-text-gray-light);
  line-height: 1.4;
  letter-spacing: 0.3px;
}

.email__taken a {
  color: var(--kb-yellow);
  text-decoration: none;
}

@media all and (min-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 (min-width: 992px) {
  .kb__user__account {
    margin-bottom: 0;
  }
  .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-gray-dark);
  }
  .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-text-gray-light);
    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-text-gray-light);
  }
  .account__page__navigation .app__navigation .customer__nav li svg {
    margin-right: 30px;
    margin-bottom: 0;
  }
  .kb__user__sidebar .kb__module__drawer {
    padding: 30px 30px 130px;
  }
  .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;
  }
  .kb__user__sidebar .kb__module__drawer {
    padding: 80px 40px 130px 40px;
    width: 100vw;
    max-width: 500px;
  }
  .account__page__navigation + .app__container {
    margin-top: 160px;
  }
  .kb__user__account {
    padding-top: 99px;
  }
  .module__user__modal form select {
    font-weight: 500;
  }
}
@media screen and (min-width: 992px) {
  .kb__user__sidebar .kb__module__drawer {
    padding: 60px 53px 130px 60px;
  }
  .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-top: 5px;
    margin-bottom: 10px;
  }
  .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__user__sidebar .kb__module__drawer {
    max-width: 495px;
  }
  .kb__kit__download__wrapper .kb__kit__select__item {
    margin-bottom: 10px !important;
  }
  .kb__kit__download__wrapper .kb__kit__software__section {
    margin-top: 0 !important;
  }
  .kb__module__drawer .kb__kit__download__wrapper .kb__kit__form .sub {
    margin-bottom: 0 !important;
    margin-top: 20px !important;
  }
}
@media screen and (min-width: 1920px) {
  .module__user__panel {
    padding: 85px 110px;
    margin-top: 60px;
    background: var(--kb-gray-dark);
  }
  .log-out {
    display: inline-block;
    margin: 0;
    font-size: 10px;
    height: 40px;
    line-height: 40px;
    width: 200px;
  }
  .kb__user__account {
    padding-top: 105px;
  }
  .kb__user__account {
    padding-top: 99px;
  }
  .module__user__modal form select,
  .module__user__modal form input {
    -webkit-appearance: none;
    width: 100%;
    padding: 15px;
    border: 1px solid #494949;
    background: transparent;
    color: white;
    margin: 10px 0;
    font-size: 16px;
    line-height: 1.636363rem;
    max-height: 50px;
  }
  .module__user__modal form select {
    padding: 10px 15px !important;
    font-weight: 500;
  }
  .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;
  justify-content: center;
  flex-direction: column;
  align-content: center;
  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-yellow);
  text-decoration: none;
  font-size: 13px;
  pointer-events: none;
}

@media screen and (min-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;
}

[class*=cargo-landing] main {
  overflow: hidden;
}

.color__gray {
  color: var(--kb-text-gray-light) !important;
}

/* **********************************************
  GENERAL STYLES
********************************************** */
[class*=cargo-landing] h1 {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 35px;
  line-height: 1;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media screen and (min-width: 1440px) {
  [class*=cargo-landing] h1 {
    font-size: 36px;
  }
}
@media screen and (min-width: 2400px) {
  [class*=cargo-landing] h1 {
    font-size: 50px;
  }
}
@media screen and (min-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: #ffffff;
}
@media screen and (min-width: 1440px) {
  [class*=cargo-landing] p {
    font-size: 16px;
  }
}
@media screen and (min-width: 2400px) {
  [class*=cargo-landing] p {
    font-size: 18px;
  }
}
@media screen and (min-width: 2800px) {
  [class*=cargo-landing] p {
    font-size: 25px;
  }
}
[class*=cargo-landing] button {
  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: #111111;
  text-transform: uppercase;
  border: none;
  display: inline-block;
  margin-top: 24px;
}
[class*=cargo-landing] button:disabled {
  cursor: not-allowed;
  background: #808080;
}
@media screen and (min-width: 2000px) {
  [class*=cargo-landing] button {
    width: 170px;
    height: 40px;
    font-size: 12px;
    margin-top: 36px;
  }
}
@media screen and (min-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;
}

/* **********************************************
  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 (max-width: 1280px) {
  .landing__video {
    max-height: 450px;
  }
}
@media screen and (max-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 (min-width: 972px) {
  .landing__hero {
    align-items: center;
    padding-bottom: 0;
  }
}
@media screen and (min-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 (min-width: 620px) {
  .landing__hero--content {
    max-width: 580px;
    margin: 0 auto 45px;
  }
  .landing__hero--content p {
    line-height: 2;
  }
}
@media screen and (min-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 (min-width: 1440px) {
  .landing__hero--content {
    padding: 20px 20px 0 20px;
    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 (min-width: 2000px) {
  .landing__hero--content {
    max-width: 1700px;
  }
}
@media screen and (min-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-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #ffffff;
}
@media screen and (min-width: 1024px) {
  .landing__hero--content h4 {
    margin-bottom: -30px;
  }
}
@media screen and (min-width: 1280px) {
  .landing__hero--content h4 {
    font-size: 20px;
    margin-bottom: -50px;
  }
}
@media screen and (min-width: 2000px) {
  .landing__hero--content h4 {
    font-size: 28px;
  }
}
@media screen and (min-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 (min-width: 980px) {
  .landing__hero--content .landing__cargoLogo {
    width: 380px;
    max-width: none;
  }
}
@media screen and (min-width: 1440px) {
  .landing__hero--content .landing__cargoLogo {
    width: 400px;
  }
}
@media screen and (min-width: 2000px) {
  .landing__hero--content .landing__cargoLogo {
    width: 480px;
  }
}
@media screen and (min-width: 2800px) {
  .landing__hero--content .landing__cargoLogo {
    width: 700px;
  }
}
.landing__hero--content .landing__cargoLogo svg {
  width: 100%;
  height: 80px;
}
@media screen and (min-width: 980px) {
  .landing__hero--content .landing__cargoLogo svg {
    height: 175px;
  }
}
.landing__hero--actions {
  display: flex;
  gap: 16px;
}
@media screen and (min-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 (min-width: 620px) {
  .landing__cargoUi--content {
    width: max-content;
  }
}
@media screen and (min-width: 2000px) {
  .landing__cargoUi--content {
    max-width: 1920px;
    margin: 0 auto 200px;
  }
}
@media screen and (min-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);
  -webkit-backdrop-filter: blur(5px);
  padding: 3px 3px 0 3px;
  border-radius: 4px 4px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 0;
}
@media screen and (min-width: 620px) {
  .landing__cargoUi--content .ui {
    max-width: 580px;
  }
}
@media screen and (min-width: 980px) {
  .landing__cargoUi--content .ui {
    padding: 10px 10px 0 10px;
    max-width: 800px;
  }
}
@media screen and (min-width: 1440px) {
  .landing__cargoUi--content .ui {
    padding: 20px 20px 0 20px;
    max-width: 1100px;
  }
}
@media screen and (min-width: 2000px) {
  .landing__cargoUi--content .ui {
    max-width: 1700px;
  }
}
@media screen and (min-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);
  -webkit-backdrop-filter: blur(5px);
  border: none;
  padding: 2px;
  border-radius: 3px;
  max-width: 80px;
}
@media screen and (min-width: 570px) {
  .landing__cargoUi--content .inspector {
    max-width: 100px;
  }
}
@media screen and (min-width: 620px) {
  .landing__cargoUi--content .inspector {
    max-width: 120px;
  }
}
@media screen and (min-width: 980px) {
  .landing__cargoUi--content .inspector {
    max-width: 180px;
    right: -55px;
    padding: 10px;
    top: -50px;
    border-radius: 10px;
  }
}
@media screen and (min-width: 1280px) {
  .landing__cargoUi--content .inspector {
    right: -100px;
  }
}
@media screen and (min-width: 1440px) {
  .landing__cargoUi--content .inspector {
    max-width: 250px;
    right: -50px;
    top: -110px;
  }
}
@media screen and (min-width: 2000px) {
  .landing__cargoUi--content .inspector {
    max-width: 340px;
    right: -25px;
  }
}
@media screen and (min-width: 2800px) {
  .landing__cargoUi--content .inspector {
    max-width: 460px;
    right: -80px;
  }
}
@media screen and (min-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);
  -webkit-backdrop-filter: blur(5px);
  border: none;
  padding: 2px;
  border-radius: 3px;
  max-width: 100px;
  width: 100%;
}
@media screen and (min-width: 570px) {
  .landing__cargoUi--content .card {
    max-width: 100px;
  }
}
@media screen and (min-width: 620px) {
  .landing__cargoUi--content .card {
    max-width: 120px;
  }
}
@media screen and (min-width: 980px) {
  .landing__cargoUi--content .card {
    max-width: 180px;
    right: -100px;
    padding: 10px;
    border-radius: 10px;
  }
}
@media screen and (min-width: 1440px) {
  .landing__cargoUi--content .card {
    max-width: 250px;
    right: -50px;
  }
}
@media screen and (min-width: 2000px) {
  .landing__cargoUi--content .card {
    left: -100px;
    max-width: 400px;
    bottom: -100px;
    padding: 10px;
    border-radius: 10px;
  }
}
@media screen and (min-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 (min-width: 972px) {
  .landing__getCargo {
    max-width: 800px;
    margin: 0 auto;
    gap: 25px;
  }
}
@media screen and (min-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);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px;
  border-radius: 5px;
}
@media screen and (min-width: 680px) {
  .carousel__container {
    padding: 15px;
    border-radius: 10px;
  }
}
@media screen and (min-width: 1920px) {
  .carousel__container {
    padding: 50px;
    border-radius: 20px;
  }
}
.carousel__container .carousel__outside {
  padding: 15px;
  background-color: #111111;
}
@media screen and (min-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 (min-width: 800px) {
  .landing__modelSlider,
  .landing__materialSlider {
    height: 600px;
    width: auto;
    grid-template-columns: 1fr 1fr;
    margin: 0;
    justify-content: initial;
  }
}
@media screen and (min-width: 1280px) {
  .landing__modelSlider,
  .landing__materialSlider {
    height: 700px;
  }
}
@media screen and (min-width: 1920px) {
  .landing__modelSlider,
  .landing__materialSlider {
    height: 900px;
  }
}
@media screen and (min-width: 2400px) {
  .landing__modelSlider,
  .landing__materialSlider {
    height: 1100px;
  }
}
@media screen and (min-width: 2800px) {
  .landing__modelSlider,
  .landing__materialSlider {
    height: 1600px;
  }
}
@media screen and (min-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 (min-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 (min-width: 1280px) {
  .landing__modelSlider .texture__rellax,
  .landing__modelSlider .asset__rellax,
  .landing__materialSlider .texture__rellax,
  .landing__materialSlider .asset__rellax {
    max-height: 700px;
  }
}
@media screen and (min-width: 1920px) {
  .landing__modelSlider .texture__rellax,
  .landing__modelSlider .asset__rellax,
  .landing__materialSlider .texture__rellax,
  .landing__materialSlider .asset__rellax {
    max-height: 900px;
  }
}
@media screen and (min-width: 2400px) {
  .landing__modelSlider .texture__rellax,
  .landing__modelSlider .asset__rellax,
  .landing__materialSlider .texture__rellax,
  .landing__materialSlider .asset__rellax {
    max-height: 1200px;
  }
}
@media screen and (min-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 (min-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 (min-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 (min-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 (min-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 (min-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 (min-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 (min-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 (min-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 (min-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 (min-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 (min-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: #ffffff;
  text-transform: uppercase;
  gap: 10px;
  padding-bottom: 2px;
  margin-bottom: 10px;
}
@media screen and (min-width: 1280px) {
  .landing__modelSlider .carousel__container .carousel__outside header h4,
  .landing__materialSlider .carousel__container .carousel__outside header h4 {
    margin-bottom: 20px;
  }
}
@media screen and (min-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 (min-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 (min-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 (min-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 (min-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 (min-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 (min-width: 767px) {
  .landing__cargoCarousel .carousel__wrapper--inner .video__carousel::before {
    background: -moz-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%);
    background: -webkit-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%);
    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 (min-width: 767px) {
  .landing__cargoCarousel .carousel__wrapper--inner .video__carousel::after {
    background: -moz-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%);
    background: -webkit-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%);
    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 (min-width: 1280px) {
  .landing__cargoCarousel .carousel__wrapper--inner .video__carousel {
    max-width: 880px;
  }
}
@media screen and (min-width: 1600px) {
  .landing__cargoCarousel .carousel__wrapper--inner .video__carousel {
    max-width: 1280px;
  }
}
@media screen and (min-width: 1920px) {
  .landing__cargoCarousel .carousel__wrapper--inner .video__carousel {
    max-width: 1440px;
  }
}
@media screen and (min-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 (min-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 (min-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 (min-width: 972px) {
  .landing__cargoPricing {
    gap: 80px;
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    padding: 0 50px;
  }
}
@media screen and (min-width: 1920px) {
  .landing__cargoPricing {
    max-width: 80vw;
  }
}
@media screen and (min-width: 2400px) {
  .landing__cargoPricing {
    gap: 160px;
  }
}
.landing__cargoPricing--logo {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-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);
  -webkit-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 (min-width: 972px) {
  .landing__cargoPricing--logo figure {
    display: none;
  }
}
.landing__cargoPricing--logo svg {
  width: 100%;
  max-width: 450px;
  padding: 0 35px;
}
@media screen and (min-width: 2000px) {
  .landing__cargoPricing--logo svg {
    max-width: 580px;
  }
}
@media screen and (min-width: 2400px) {
  .landing__cargoPricing--logo svg {
    max-width: 600px;
  }
}
@media screen and (min-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 (min-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 (min-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: #ffffff;
  font-weight: 400;
  font-size: 35px;
  line-height: 1;
  font-family: "poppins";
}
@media screen and (min-width: 972px) {
  .landing__cargoPricing--content h3 {
    text-align: left;
  }
}
@media screen and (min-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);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 20px 20px 0 20px;
  border-bottom: 0;
  margin: 0 40px;
}
@media screen and (min-width: 972px) {
  .landing__transferKits figure {
    display: block;
    max-width: 1240px;
  }
}
@media screen and (min-width: 1920px) {
  .landing__transferKits figure {
    max-width: 1440px;
  }
}
@media screen and (min-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;
}

/* **********************************************
  FAQ SECTION STYLES
********************************************** */
.landing__faq {
  display: flex;
  flex-direction: column;
  margin: 150px auto;
  min-width: 340px;
}
.landing__faq ul {
  color: white;
}
.landing__faq ul li {
  color: white;
  margin-bottom: 0;
}
@media screen and (min-width: 972px) {
  .landing__faq {
    padding: 0 60px;
    text-align: left;
    flex-direction: row;
    justify-content: space-around;
    gap: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .landing__faq {
    grid-template-columns: min-content 1fr;
  }
}
@media screen and (min-width: 1920px) {
  .landing__faq {
    gap: 120px;
    max-width: 1440px;
  }
}
@media screen and (min-width: 2400px) {
  .landing__faq {
    max-width: 80vw;
  }
}
.landing__faq--title {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (min-width: 972px) {
  .landing__faq--title {
    text-align: left;
  }
}
.landing__faq--title h1 {
  color: white;
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 30px;
}
@media screen and (min-width: 972px) {
  .landing__faq--title h1 {
    margin-bottom: 50px;
    padding-bottom: 50px;
  }
}
.landing__faq--title h1::after {
  content: "";
  height: 1px;
  width: 80px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: #808080;
  display: block;
}
@media screen and (min-width: 972px) {
  .landing__faq--title h1::after {
    left: 0;
    right: initial;
  }
}
.landing__faq--title p {
  font-size: 18px;
  font-family: var(--kb-body-font);
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  color: #ffffff;
}
.landing__faq--title p a {
  color: #fbad18;
}
.landing__faq--questions {
  padding: 0;
  width: 100%;
}
@media screen and (min-width: 2000px) {
  .landing__faq--questions {
    padding: 0 20px;
  }
}
.landing__faq--questions .question h4 {
  font-family: "Poppins", sans-serif;
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid #808080;
  margin-bottom: 0;
  cursor: pointer;
  font-weight: 400;
  font-size: 17px;
}
@media screen and (min-width: 2000px) {
  .landing__faq--questions .question h4 {
    font-size: 18px;
    padding: 20px 40px 40px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 2800px) {
  .landing__faq--questions .question h4 {
    font-size: 25px;
  }
}
.landing__faq--questions .question h4 span:last-child {
  font-size: 25px;
}
.landing__faq--questions .question h4 span:last-child::after {
  content: "+";
  display: inline-block;
}
.landing__faq--questions .question.active h4 {
  color: #fbad18;
  border-bottom: none;
}
.landing__faq--questions .question.active h4 span:last-child::after {
  content: "-";
}
.landing__faq--questions .question.active .answer {
  margin-bottom: 20px;
}
.landing__faq--questions .question .answer {
  font-family: "Poppins", sans-serif;
  padding: 0 20px 40px;
  border-bottom: 1px solid #808080;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
}
.landing__faq--questions .question .answer p {
  font-size: 17px;
  color: var(--kb-text-gray-light);
}
.landing__faq--questions .question .answer p a {
  color: #fbad18;
}
@media screen and (min-width: 2000px) {
  .landing__faq--questions .question .answer p {
    font-size: 18px;
    padding: 0 40px 40px;
  }
}
@media screen and (min-width: 2800px) {
  .landing__faq--questions .question .answer p {
    font-size: 25px;
  }
}

.cargo__page {
  min-height: 100vh;
  min-width: 100vw;
}
.cargo__page--inner {
  min-height: 100vh;
  height: 100%;
  align-items: center;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 767px) {
  .cargo__page--inner {
    display: grid;
    grid-template-columns: 50% 50%;
  }
}
.cargo__page--display {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 35vh;
  background-position: center;
  background-size: cover;
  padding: 25px;
  width: 100%;
  position: relative;
}
.cargo__page--display::after {
  width: 100%;
  height: 100%;
  content: "";
  background: #000000;
  opacity: 0.2;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1 !important;
}
.cargo__page--display * {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 767px) {
  .cargo__page--display {
    padding: 50px;
    height: inherit;
  }
}
@media screen and (min-width: 1920px) {
  .cargo__page--display {
    padding: 100px;
  }
}
.cargo__page--display .logo {
  height: 40px;
  margin: 0 auto;
}
@media screen and (min-width: 767px) {
  .cargo__page--display .logo {
    margin: initial;
  }
}
@media screen and (min-width: 1920px) {
  .cargo__page--display .logo {
    height: 50px;
  }
}
@media screen and (min-width: 2400px) {
  .cargo__page--display .logo {
    height: 68px;
  }
}
.cargo__page--display h1 {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  display: flex;
  align-items: center;
  color: #ffffff;
  text-transform: initial;
  text-align: center;
  justify-content: center;
  font-size: 35px;
}
@media screen and (min-width: 767px) {
  .cargo__page--display h1 {
    text-align: initial;
    font-size: 60px;
    justify-content: initial;
  }
}
@media screen and (min-width: 1920px) {
  .cargo__page--display h1 {
    font-size: 80px;
  }
}
@media screen and (min-width: 2400px) {
  .cargo__page--display h1 {
    font-size: 140px;
  }
}
.cargo__page--display p {
  text-transform: uppercase;
  gap: 10px;
  align-items: center;
  visibility: hidden;
}
@media screen and (min-width: 767px) {
  .cargo__page--display p {
    visibility: visible;
    display: flex;
  }
}
.cargo__page--content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: initial;
  padding: 50px 20px;
  margin: 0 auto;
  width: 100%;
}
@media screen and (min-width: 767px) {
  .cargo__page--content {
    padding: 50px;
    height: inherit;
  }
}
@media screen and (min-width: 1920px) {
  .cargo__page--content {
    padding: 100px;
  }
}
@media screen and (min-width: 767px) {
  .cargo__page--content svg {
    align-self: flex-end;
  }
}
.cargo__page--content svg.logo {
  height: 30px;
  width: 130px;
  margin-bottom: 40px;
}
@media screen and (min-width: 767px) {
  .cargo__page--content svg.logo {
    margin-bottom: 0;
    height: 40px;
    width: 170px;
  }
}
@media screen and (min-width: 1920px) {
  .cargo__page--content svg.logo {
    height: 50px;
  }
}
@media screen and (min-width: 2400px) {
  .cargo__page--content svg.logo {
    height: 68px;
  }
}
.cargo__page--content footer {
  justify-content: flex-start;
}
@media screen and (min-width: 767px) {
  .cargo__page--content footer {
    align-self: flex-end;
  }
}
.cargo__page--content footer p {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (min-width: 767px) {
  .cargo__page--content footer p {
    align-self: flex-end;
  }
}
.cargo__page--content footer p a {
  color: var(--kb-text-gray-light);
  text-decoration: none;
}
.cargo__page--info {
  max-width: max-content;
}
@media screen and (min-width: 767px) {
  .cargo__page--info {
    padding-left: 35px;
  }
}
@media screen and (min-width: 1920px) {
  .cargo__page--info {
    padding-left: 50px;
  }
}
@media screen and (min-width: 2400px) {
  .cargo__page--info {
    padding-left: 100px;
  }
}
.cargo__page--info h3 {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  display: flex;
  line-height: 1.3;
  align-items: center;
  letter-spacing: -1px;
  color: #ffffff;
  text-transform: initial;
  margin-bottom: 30px;
}
@media screen and (min-width: 1920px) {
  .cargo__page--info h3 {
    max-width: 1000px;
  }
}
@media screen and (min-width: 1920px) {
  .cargo__page--info h3 {
    font-size: 36px;
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 2400px) {
  .cargo__page--info h3 {
    font-size: 49px;
    margin-bottom: 90px;
  }
}
.cargo__page--info p {
  font-family: "Objektiv Mk1";
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: #ffffff;
  max-width: 700px;
}
@media screen and (min-width: 767px) {
  .cargo__page--info p {
    font-size: 16px;
  }
}
@media screen and (min-width: 1920px) {
  .cargo__page--info p {
    font-size: 18px;
  }
}
@media screen and (min-width: 2400px) {
  .cargo__page--info p {
    font-size: 25px;
  }
}
.cargo__page--info button {
  width: 140px;
  height: 30px;
  font-size: 11px;
}
@media screen and (min-width: 767px) {
  .cargo__page--info button {
    width: 180px;
    height: 50px;
    font-size: 14px;
  }
}
@media screen and (min-width: 1920px) {
  .cargo__page--info button {
    width: 220px;
    height: 50px;
    font-size: 13px;
  }
}
@media screen and (min-width: 2400px) {
  .cargo__page--info button {
    width: 278px;
    height: 62px;
    font-size: 14px;
  }
}

.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 (max-width: 768px) {
  .newsletter__signup .newsletter__para {
    font-size: 14px !important;
    line-height: 24px !important;
    margin-bottom: 15px;
  }
}
@media screen and (min-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 (min-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 (min-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 (min-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 (min-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 (min-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: #111111;
  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: 80%;
  background-image: url();
  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: #ffffff;
  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-family: Blender Pro, Arial;
  font-size: 34px;
  line-height: 1;
  color: #ffffff;
  font-weight: 700;
  font-style: normal;
}

.ap3w-text-62550cd46b12e7518bd08fdf h2 {
  font-family: Blender Pro, Arial;
  font-size: 24px;
  line-height: 1;
  color: #ffffff;
  font-weight: 700;
  font-style: normal;
}

.ap3w-text-62550cd46b12e7518bd08fdf h3 {
  font-family: Objektiv Mk1, Helvetica;
  font-size: 15px;
  line-height: 1;
  color: #ffffff;
  font-weight: 400;
  font-style: normal;
}

.ap3w-text-62550cd46b12e7518bd08fdf h4 {
  font-family: Objektiv Mk1, Helvetica;
  font-size: 12px;
  line-height: 1;
  color: #ffffff;
  font-weight: 400;
  font-style: normal;
}

.ap3w-text-62550cd46b12e7518bd08fdf h5 {
  font-family: Objektiv Mk1, Helvetica;
  font-size: 11px;
  line-height: 1;
  color: #ffffff;
  font-weight: 400;
  font-style: normal;
}

.ap3w-text-62550cd46b12e7518bd08fdf h6 {
  font-family: Objektiv Mk1, Helvetica;
  font-size: 11px;
  line-height: 1;
  color: #ffffff;
  font-weight: 400;
  font-style: normal;
}

.ap3w-text-62550cd46b12e7518bd08fdf p {
  font-family: Objektiv Mk1, Helvetica;
  font-size: 12px;
  line-height: 1;
  color: #ffffff;
  font-weight: 400;
  font-style: normal;
}

.ap3w-text-62550cd46b12e7518bd08fdf p[data-size=large] {
  font-family: Objektiv Mk1, Helvetica;
  font-size: 15px;
  line-height: 1;
  color: #ffffff;
  font-weight: 400;
  font-style: normal;
}

.ap3w-text-62550cd46b12e7518bd08fdf p[data-size=small] {
  font-family: Objektiv Mk1, Helvetica;
  font-size: 11px;
  line-height: 1;
  color: #ffffff;
  font-weight: 400;
  font-style: normal;
}

.ap3w-text-62550cd46b12e7518bd08fdf div > ul {
  font-family: Objektiv Mk1, Helvetica;
  font-size: 12px;
  line-height: 1;
  color: #ffffff;
  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: #ffffff;
  border: 1px solid #000000;
  color: #ffffff;
  outline: none;
  font-family: Objektiv Mk1, Helvetica;
  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-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: #ffffff;
  border: 1px solid #000000;
  color: #ffffff;
  outline: none;
  font-family: Objektiv Mk1, Helvetica;
  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-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: #ffffff;
  border: 1px solid #000000;
  color: #ffffff;
  outline: none;
  font-family: Objektiv Mk1, Helvetica;
  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-family: Objektiv Mk1, Helvetica;
  font-weight: 400;
  font-style: normal;
  color: #ffffff;
  margin: 0;
}

.ap3w-embeddable-form-62550cd46b12e7518bd08fdf {
  box-sizing: content-box;
  width: 100%;
  font-size: 16px;
  max-width: 900px;
  max-height: 100%;
  overflow: auto;
  background-color: #111111;
  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: 80%;
  background-image: url();
  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: #ffffff;
  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-family: Blender Pro, Arial;
  font-size: 34px;
  line-height: 1;
  color: #ffffff;
  font-weight: 700;
  font-style: normal;
}

.ap3w-text-62550cd46b12e7518bd08fdf h2 {
  font-family: Blender Pro, Arial;
  font-size: 24px;
  line-height: 1;
  color: #ffffff;
  font-weight: 700;
  font-style: normal;
}

.ap3w-text-62550cd46b12e7518bd08fdf h3 {
  font-family: Objektiv Mk1, Helvetica;
  font-size: 15px;
  line-height: 1;
  color: #ffffff;
  font-weight: 400;
  font-style: normal;
}

.ap3w-text-62550cd46b12e7518bd08fdf h4 {
  font-family: Objektiv Mk1, Helvetica;
  font-size: 12px;
  line-height: 1;
  color: #ffffff;
  font-weight: 400;
  font-style: normal;
}

.ap3w-text-62550cd46b12e7518bd08fdf h5 {
  font-family: Objektiv Mk1, Helvetica;
  font-size: 11px;
  line-height: 1;
  color: #ffffff;
  font-weight: 400;
  font-style: normal;
}

.ap3w-text-62550cd46b12e7518bd08fdf h6 {
  font-family: Objektiv Mk1, Helvetica;
  font-size: 11px;
  line-height: 1;
  color: #ffffff;
  font-weight: 400;
  font-style: normal;
}

.ap3w-text-62550cd46b12e7518bd08fdf p {
  font-family: Objektiv Mk1, Helvetica;
  font-size: 12px;
  line-height: 1;
  color: #ffffff;
  font-weight: 400;
  font-style: normal;
}

.ap3w-text-62550cd46b12e7518bd08fdf p[data-size=large] {
  font-family: Objektiv Mk1, Helvetica;
  font-size: 15px;
  line-height: 1;
  color: #ffffff;
  font-weight: 400;
  font-style: normal;
}

.ap3w-text-62550cd46b12e7518bd08fdf p[data-size=small] {
  font-family: Objektiv Mk1, Helvetica;
  font-size: 11px;
  line-height: 1;
  color: #ffffff;
  font-weight: 400;
  font-style: normal;
}

.ap3w-text-62550cd46b12e7518bd08fdf div > ul {
  font-family: Objektiv Mk1, Helvetica;
  font-size: 12px;
  line-height: 1;
  color: #ffffff;
  font-weight: 400;
  font-style: normal;
}

.ap3w-form-input {
  font-family: var(--kb-body-font);
}

.ap3w-form-input input {
  background-color: var(--kb-black);
  border: 1px solid var(--kb-gray-light-1);
  height: 70px;
  line-height: 50px;
  margin-bottom: 0 !important;
  padding: 0 20px !important;
  font-size: 24px !important;
  color: var(--kb-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: #ffffff;
  font-family: Objektiv Mk1, Helvetica;
  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: #111111;
  background-color: #fbad18;
  font-family: Objektiv Mk1, Helvetica;
  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 (max-width: 2400px) {
  .ap3w-embeddable-form-62550cd46b12e7518bd08fdf {
    max-width: 600px;
  }
}
@media screen and (max-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 (max-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 (max-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;
  }
}
#MainContent .shopify-policy__container {
  padding-top: 50px;
}
#MainContent .shopify-policy__container .shopify-policy__title {
  display: none;
}
@media screen and (min-width: 768px) {
  #MainContent .shopify-policy__container {
    max-width: 680px;
  }
}
@media screen and (min-width: 992px) {
  #MainContent .shopify-policy__container {
    max-width: 760px;
  }
}
@media screen and (min-width: 1280px) {
  #MainContent .shopify-policy__container {
    max-width: 1200px;
  }
}
@media screen and (min-width: 1920px) {
  #MainContent .shopify-policy__container {
    max-width: 1600px;
  }
}
#MainContent .shopify-policy__container p {
  font-size: 16px;
  font-family: var(--kb-body-font-poppins);
}

html {
  scroll-behavior: smooth;
}

[class*=mission-to-minerva] {
  background: #000000;
}
[class*=mission-to-minerva] #shopify-section-footer {
  background: #111111;
}
[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 (min-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 (min-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 (min-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 (min-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 (min-width: 1600px) {
  .page__mtm--parallax .planet-large {
    width: 1400px;
  }
}
@media all and (min-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 (min-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 (min-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 (min-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-yellow);
  position: relative;
  box-shadow: 0 0 20px 0 #fcad17;
  margin: 30px auto;
}
@media screen and (min-width: 992px) {
  .page__mtm--parallax-info-header .beacon {
    margin: 60px auto;
  }
}
.page__mtm--parallax-info-header .beacon:after {
  content: "";
  border-radius: 100px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  height: 25px;
  width: 25px;
  margin: auto;
  background: var(--kb-yellow);
}
.page__mtm--parallax-info-free p {
  cursor: pointer;
  font-family: var(--kb-body-font), sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 10px;
  text-align: center;
  letter-spacing: 0.2em;
  color: #ffffff;
}
.page__mtm--parallax-info-free p:hover {
  color: var(--kb-yellow);
}
.page__mtm--parallax-info-free p:hover svg path {
  fill: var(--kb-yellow) !important;
}
.page__mtm--parallax-info-details {
  padding: 0 30px;
  margin: 300px auto 0;
  max-width: 780px;
}
.page__mtm--parallax-info-details h6 {
  font-family: "Blender Pro", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  text-align: center;
  letter-spacing: 0.3em;
  color: #fbad18;
  margin-bottom: 20px;
}
.page__mtm--parallax-info-details h2 {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 35px;
  text-align: center;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 20px;
}
.page__mtm--parallax-info-details p {
  font-family: var(--kb-body-font), sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 180%;
  text-align: center;
  color: #ffffff;
}
@media screen and (min-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 (min-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 (min-width: 800px) {
  .page__mtm--parallax-orbit {
    top: -283px;
    right: -26px;
    width: 700px;
  }
}
@media screen and (min-width: 1800px) {
  .page__mtm--parallax-orbit {
    top: -105px;
    right: -94px;
    width: 1200px;
  }
}
.page__mtm--parallax-textBox h6 {
  font-family: "Blender Pro", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  margin-bottom: 20px;
  letter-spacing: 0.3em;
  color: #fbad18;
}
.page__mtm--parallax-textBox h2 {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 35px;
  line-height: 1.3;
  color: #ffffff;
}
.page__mtm--parallax-textBox p {
  font-family: var(--kb-body-font);
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #ffffff;
}
.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 (min-width: 992px) {
  .page__mtm--parallax-video {
    padding: 0;
    margin-bottom: 0;
    margin-top: 200px;
    grid-template-columns: 1fr 860px 1fr;
  }
}
@media screen and (min-width: 1280px) {
  .page__mtm--parallax-video {
    grid-template-columns: 1fr 1160px 1fr;
  }
}
@media screen and (min-width: 1600px) {
  .page__mtm--parallax-video {
    grid-template-columns: 1fr 1400px 1fr;
  }
}
@media screen and (min-width: 1920px) {
  .page__mtm--parallax-video {
    grid-template-columns: 1fr 1560px 1fr;
  }
}
@media screen and (min-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;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 80px;
  height: 80px;
  fill: white;
  display: none;
}
.page__mtm--parallax-video-holder:hover svg {
  fill: var(--kb-yellow);
}
.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 (min-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 (min-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 (min-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 (min-width: 1280px) {
  .page__mtm--parallax-video .page__mtm--parallax-textBox-content {
    grid-column: 4/-1;
  }
}
@media screen and (min-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 (min-width: 992px) {
  .page__mtm--parallax-cargoShip {
    padding: 0;
    grid-template-columns: 1fr 860px 1fr;
  }
}
@media screen and (min-width: 1280px) {
  .page__mtm--parallax-cargoShip {
    grid-template-columns: 1fr 1160px 1fr;
  }
}
@media screen and (min-width: 1600px) {
  .page__mtm--parallax-cargoShip {
    grid-template-columns: 1fr 1400px 1fr;
  }
}
@media screen and (min-width: 1920px) {
  .page__mtm--parallax-cargoShip {
    grid-template-columns: 1fr 1560px 1fr;
  }
}
@media screen and (min-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 (min-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 (min-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 (min-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 (min-width: 992px) {
  .page__mtm--parallax-cargoShip figure {
    grid-column: 3/7;
  }
}
@media screen and (min-width: 1280px) {
  .page__mtm--parallax-cargoShip figure {
    grid-column: 3/7;
  }
}
.page__mtm--parallax-cargoShip figure img {
  width: 100%;
}
@media all and (min-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 (min-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 (min-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 (min-width: 1280px) {
  .page__mtm--phase-container {
    grid-template-columns: 1fr 1160px 1fr;
  }
}
@media screen and (min-width: 1600px) {
  .page__mtm--phase-container {
    grid-template-columns: 1fr 1400px 1fr;
  }
}
@media screen and (min-width: 1920px) {
  .page__mtm--phase-container {
    grid-template-columns: 1fr 1560px 1fr;
  }
}
@media screen and (min-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 (min-width: 992px) {
  .page__mtm--phase-content {
    margin: initial;
  }
}
@media screen and (min-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-yellow);
  font-family: var(--kb-body-font);
  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-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 40px;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 20px;
}
.page__mtm--phase-content article p {
  font-family: var(--kb-body-font);
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: #ffffff;
}
.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 (min-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 (min-width: 992px) {
  .page__mtm--training-content header {
    text-align: center;
  }
}
.page__mtm--training-content header h4 {
  text-transform: uppercase;
  color: var(--kb-yellow);
  font-family: var(--kb-body-font);
  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-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 40px;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 20px;
}
.page__mtm--training-content header p {
  font-family: var(--kb-body-font);
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: #ffffff;
}
.page__mtm--training-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 70px;
}
@media screen and (min-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 (min-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-yellow);
}
.page__mtm--training-list .page__mtm--training figure:hover svg .line {
  stroke: var(--kb-yellow);
}
.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-family: var(--kb-body-font);
  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 (min-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-yellow);
  font-family: var(--kb-body-font);
  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-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 40px;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 20px;
}
.page__mtm--judges-content header p {
  font-family: var(--kb-body-font);
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: #ffffff;
}
.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 (min-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%, #111111 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 10px;
  background: black;
}
.page__mtm--judges .page__mtm--judge-list .page__mtm--judge-details h3 {
  font-family: var(--kb-body-font);
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  line-height: 1.5;
  color: #ffffff;
  position: relative;
  z-index: 2;
}
.page__mtm--judges .page__mtm--judge-list .page__mtm--judge-details p {
  font-family: var(--kb-body-font);
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  line-height: 1.5;
  color: #fbad18;
  position: relative;
  z-index: 2;
}
@media screen and (min-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 (min-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 (min-width: 1600px) {
  .page__mtm--judges .page__mtm--judge-list .page__mtm--judge-details {
    padding: 10px 10px 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 (min-width: 1920px) {
  .page__mtm--judges .page__mtm--judge-list .page__mtm--judge-details {
    padding: 10px 10px 30px 10px;
  }
  .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-family: var(--kb-body-font);
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.2em;
  color: #ffffff;
  text-transform: uppercase;
}
@media all and (min-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-yellow);
  position: relative;
}
.page__mtm--divider-signal:after {
  content: "";
  border-radius: 100px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  height: 15px;
  width: 15px;
  margin: auto;
  background: var(--kb-yellow);
}
@media all and (min-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: #ffffff;
}
.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 (min-width: 992px) {
  .page__mtm--prizes .page__mtm--prize-main {
    padding: 0;
    grid-template-columns: 1fr 860px 1fr;
  }
}
@media screen and (min-width: 1280px) {
  .page__mtm--prizes .page__mtm--prize-main {
    grid-template-columns: 1fr 1160px 1fr;
  }
}
@media screen and (min-width: 1600px) {
  .page__mtm--prizes .page__mtm--prize-main {
    grid-template-columns: 1fr 1400px 1fr;
  }
}
@media screen and (min-width: 1920px) {
  .page__mtm--prizes .page__mtm--prize-main {
    grid-template-columns: 1fr 1560px 1fr;
  }
}
@media screen and (min-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-start: 1;
  grid-column-end: 5;
}
@media screen and (min-width: 992px) {
  .page__mtm--prizes .page__mtm--prize-main-info {
    grid-column-start: 2;
  }
}
@media screen and (min-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 (min-width: 992px) {
  .page__mtm--prizes .page__mtm--prize-main-info-details {
    text-align: left;
    grid-column: 1/3;
  }
}
@media screen and (min-width: 1280px) {
  .page__mtm--prizes .page__mtm--prize-main-info-details {
    grid-column: 1/3;
  }
}
@media screen and (min-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 (min-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-family: "Poppins", sans-serif;
  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-family: var(--kb-body-font);
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 2;
  color: #ffffff;
}
.page__mtm--prizes .page__mtm--prize-main-info figure {
  grid-column: 1/6;
}
@media screen and (min-width: 992px) {
  .page__mtm--prizes .page__mtm--prize-main-info figure {
    grid-column: 3/6;
  }
}
@media screen and (min-width: 1280px) {
  .page__mtm--prizes .page__mtm--prize-main-info figure {
    grid-column: 3/6;
  }
}
@media screen and (min-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-yellow);
  font-family: var(--kb-body-font);
  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-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 40px;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 20px;
}
.page__mtm--prizes .page__mtm--prize-main header p {
  font-family: var(--kb-body-font);
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  color: #ffffff;
}
.page__mtm--prizes .page__mtm--prize-list {
  display: grid;
  gap: 20px;
  grid-column: 1/3;
  grid-template-columns: 1fr;
}
@media screen and (min-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 (min-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-family: var(--kb-body-font);
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.2em;
  color: #fbad18;
  margin-bottom: 20px;
}
@media screen and (min-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-family: var(--kb-body-font);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: #ffffff;
}
@media screen and (min-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 (min-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-family: var(--kb-body-font);
  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 40px;
  justify-content: center;
  align-items: center;
}
.page__mtm--sponsors-content article img {
  width: 120px;
}
@media screen and (min-width: 920px) {
  .page__mtm--sponsors-content article img {
    width: 120px;
  }
}
@media screen and (min-width: 1600px) {
  .page__mtm--sponsors-content article {
    margin: 55px auto 0;
    gap: 50px;
  }
}
@media screen and (min-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-family: var(--kb-body-font);
  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-family: var(--kb-body-font);
  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 (min-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-yellow);
}
@media all and (min-width: 460px) {
  .page__mtm--blog-content header a {
    display: block;
  }
}
@media all and (min-width: 972px) {
  .page__mtm--blog {
    padding: 120px 0;
  }
  .page__mtm--blog-list {
    gap: 40px;
  }
}
.page__mtm--faq .landing__faq {
  padding: 0;
  min-width: initial;
}
.page__mtm--faq .landing__faq--title {
  text-align: center;
}
.page__mtm--faq .landing__faq--title h1 {
  font-family: "Poppins", sans-serif;
  font-size: 35px;
  line-height: 0.9;
  font-weight: 900;
  text-align: center;
}
.page__mtm--faq .landing__faq--title ul,
.page__mtm--faq .landing__faq--title li,
.page__mtm--faq .landing__faq--title p {
  font-size: 12px;
  text-align: center;
}
@media all and (min-width: 972px) {
  .page__mtm--faq .landing__faq--title h1 {
    font-size: 45px;
    text-align: left;
  }
  .page__mtm--faq .landing__faq--title ul,
  .page__mtm--faq .landing__faq--title li,
  .page__mtm--faq .landing__faq--title p {
    color: white;
    font-size: 18px;
    text-align: left;
  }
}
@media all and (min-width: 1600px) {
  .page__mtm--faq .landing__faq--title h1 {
    font-size: 45px;
  }
}

/* ******************************************
    GENERAL SECTION
 ****************************************** */
.small-subtitle {
  font-family: "Objektiv Mk1";
  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: 900;
  font-size: 30px;
  color: #ffffff;
  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: #ffffff;
}

/* ******************************************
    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 (min-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 (min-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-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  color: #ffffff;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.section__minerva__winners--grid-item span {
  font-family: "Objektiv Mk1";
  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__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-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  color: #ffffff;
}
.section__minerva__finalist--grid-item div p span:last-child {
  opacity: 0.5;
  display: block;
}

@media screen and (min-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-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    grid-template-areas: "first second" "first third";
  }
  .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-family: "Poppins";
    font-style: normal;
    font-weight: 700;
    font-size: 42px;
    color: #ffffff;
  }
  .section__minerva__winners--grid-item span {
    font-family: "Objektiv Mk1";
    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-family: "Poppins";
    font-style: normal;
    font-weight: 700;
    font-size: 9px;
    color: #ffffff;
  }
  .section__minerva__finalist--grid article div p span:last-child {
    opacity: 0.5;
    display: block;
  }
}
@media screen and (min-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 (min-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;
}
.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-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  color: #ffffff;
  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-family: "Objektiv Mk1";
  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 (min-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;
  }
  .in--motion .section__minerva__winners--grid .section__minerva__winners--inmotion--grid-item figure {
    height: auto;
  }
  .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 (min-width: 992px) {
  .in--motion .section__minerva__winners--grid {
    gap: 20px;
    margin-bottom: 20px;
  }
}
@media screen and (min-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-family: "Blender Pro", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  margin-bottom: 20px;
  letter-spacing: 0.3em;
  color: #fbad18;
  text-transform: uppercase;
}
.section__minerva__winners--content article h2 {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 30px;
  line-height: 1.2;
  color: #ffffff;
  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: #ffffff;
}

@media screen and (min-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
 ****************************************** */
.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%;
}

@media screen and (min-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
 ****************************************** */
[class*=minerva-winners] .page__mtm--phase-content article h4,
[class*=minerva-winners] #trainingSection h4 {
  font-family: "Blender Pro", sans-serif;
}
@media screen and (max-width: 768px) {
  [class*=minerva-winners] .page__mtm--phase-content article h1,
  [class*=minerva-winners] #trainingSection h1 {
    font-size: 30px;
  }
}
@media screen and (min-width: 920px) {
  [class*=minerva-winners] .page__mtm--training-list {
    gap: 30px;
  }
}

.cargo__identity--header-links a {
  font-family: "Objektiv Mk1";
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.085em;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
}
.cargo__identity--header-links a.active {
  padding: 10px 0;
  border-bottom: 2px solid #fbad18;
}

#register-form .cargo-accept-terms {
  font-family: "Objektiv Mk1";
  font-style: normal;
  font-weight: 700;
  font-size: 8px;
  line-height: 1.6;
  letter-spacing: 0.085em;
  color: #ffffff;
}
#register-form .cargo-accept-terms a {
  color: #fbad18 !important;
}

#confirm-email-form .customer__signin-title h2 {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 110%;
  color: #ffffff;
}
#confirm-email-form .customer__signin-title p {
  font-family: "Objektiv Mk1";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 130%;
  letter-spacing: 0.085em;
  color: #ffffff;
}
#confirm-email-form #cancel-confirm-email {
  width: 100%;
  background: transparent;
  font-family: "Objektiv Mk1";
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.085em;
  color: #fbad18;
}

#resendEmailModal {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  display: none;
  place-items: center;
  place-content: center;
  width: 100vw;
  height: 100vh;
}
#resendEmailModal h3 {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 4px;
  text-align: center;
}
#resendEmailModal article {
  padding: 30px;
  border: 1px solid gray;
  background: #181818;
  position: relative;
  z-index: 10;
}
#resendEmailModal article p {
  font-size: 15px;
  margin-bottom: 20px;
  text-align: center;
}
#resendEmailModal .kitbash__cargo__download--button {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  max-width: none;
  width: 100%;
}
#resendEmailModal .cancel {
  background: transparent;
  color: #fbad18;
}
#resendEmailModal::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6117647059);
  display: block;
}

.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 7.0.8
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2021 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 4, 2021
 */
@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;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide, .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.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-3d, .swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide, .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, .swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.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-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-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}

.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: 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:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

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

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

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

.swiper-button-lock {
  display: none;
}

.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-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 10px;
  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: 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: 10px;
  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-progressbar {
  background: 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: 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: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  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;
}

.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%;
  animation: swiper-preloader-spin 1s infinite linear;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
.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, .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-next + .swiper-slide, .swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.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-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-bottom, .swiper-flip .swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-right, .swiper-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;
  }
}
.cargo-t1 {
  font-family: "Poppins";
  font-style: normal;
  font-size: 28px;
  line-height: 35px;
  font-weight: 700;
  color: #ffffff;
}
@media screen and (min-width: 992px) {
  .cargo-t1 {
    font-weight: 700;
    font-size: 48px;
    line-height: 58px;
  }
}

.cargo-bg-grey-dark {
  background-color: #181818;
}

.cargo-t3 {
  font-family: "Objektiv Mk1";
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.085em;
  color: #ffffff;
  text-transform: capitalize;
}
.cargo-t3 strong {
  font-weight: 800;
}

.cargo-text-large {
  font-family: "Objektiv Mk1";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.085em;
}

.cargo-white {
  color: white;
}

.cargo-light-gray {
  color: #aaa;
}

@media all and (max-width: 991px) {
  .cargo-m-gray-bg {
    background: #181818;
  }
}

.primary {
  color: #fbad18 !important;
}

@media screen and (max-width: 991px) {
  .cargo-m-text-center {
    text-align: center;
  }
}

.cargo-bg-black {
  background: #181818;
}

.cargo-text-medium {
  font-family: "Objektiv Mk1";
  font-style: normal;
  font-weight: 400;
  font-size: 14px !important;
  letter-spacing: 0.085em;
  color: #ffffff;
}

.cargo-text-center {
  text-align: center !important;
}

a.kitbash__cargo__download--button,
.kitbash__cargo__download--button {
  border: none;
  outline: none;
  height: 52px;
  min-width: 240px;
  padding: 0 30px;
  background: #fbad18;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: all ease-in-out 0.25s;
  text-decoration: none;
}
a.kitbash__cargo__download--button:hover,
.kitbash__cargo__download--button:hover {
  background-color: #dc9204;
}
a.kitbash__cargo__download--button:hover svg *,
a.kitbash__cargo__download--button:hover span,
.kitbash__cargo__download--button:hover svg *,
.kitbash__cargo__download--button:hover span {
  fill: white;
  color: white;
  text-decoration: none;
}
a.kitbash__cargo__download--button svg *,
.kitbash__cargo__download--button svg * {
  transition: all ease-in-out 0.25s;
}
a.kitbash__cargo__download--button span,
.kitbash__cargo__download--button span {
  transition: all ease-in-out 0.25s;
  font-family: "Objektiv Mk3";
  color: #111111;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.085em;
}
a.kitbash__cargo__download--button span.uppercased,
.kitbash__cargo__download--button span.uppercased {
  text-transform: uppercase;
}
a.kitbash__cargo__download--button span.bold,
.kitbash__cargo__download--button span.bold {
  font-weight: 700 !important;
}
a.kitbash__cargo__download--button:hover,
.kitbash__cargo__download--button:hover {
  cursor: pointer;
}

a.kitbash__cargo__download--button-outlined,
.kitbash__cargo__download--button-outlined {
  outline: none;
  box-sizing: border-box;
  background: transparent;
  height: 52px;
  min-width: 240px;
  padding: 0 30px;
  border: 2px solid #fbad18;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: all ease-in-out 0.25s;
  text-decoration: none;
}
a.kitbash__cargo__download--button-outlined:hover,
.kitbash__cargo__download--button-outlined:hover {
  background-color: #dc9204;
}
a.kitbash__cargo__download--button-outlined:hover svg *,
a.kitbash__cargo__download--button-outlined:hover span,
.kitbash__cargo__download--button-outlined:hover svg *,
.kitbash__cargo__download--button-outlined:hover span {
  fill: white;
  color: white;
  white-space: nowrap;
}
a.kitbash__cargo__download--button-outlined svg *,
.kitbash__cargo__download--button-outlined svg * {
  transition: all ease-in-out 0.25s;
}
a.kitbash__cargo__download--button-outlined span,
.kitbash__cargo__download--button-outlined span {
  white-space: nowrap;
  transition: all ease-in-out 0.25s;
  font-family: "Objektiv Mk1";
  color: #fbad18;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.085em;
}
a.kitbash__cargo__download--button-outlined:hover,
.kitbash__cargo__download--button-outlined:hover {
  cursor: pointer;
}

.cargo-feature-list {
  margin-bottom: 40px;
  text-align: center;
  margin-left: 20px;
}
@media screen and (min-width: 992px) {
  .cargo-feature-list {
    text-align: left;
  }
}
.cargo-feature-list li {
  list-style-position: inside;
  font-family: "Objektiv Mk1";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 35px;
  letter-spacing: 0.085em;
  color: #ffffff;
  list-style-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTMiIGhlaWdodD0iMTMiIHZpZXdCb3g9IjAgMCAxMyAxMyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMC43MzMyIDMuNjk5MDhMNS4xMTE2IDkuODM4MjZMMS43ODkwNiA2Ljk2MzAzTDMuMjYxMTIgNS44MDAxNUw0LjkzMTc3IDcuMjQ1ODhMOS4xMDk5NCAyLjY4Mjk4TDEwLjczMzIgMy42OTkwOFoiIGZpbGw9IiNGQkFEMTgiLz4KPC9zdmc+Cg==");
}
@media screen and (min-width: 992px) {
  .cargo-feature-list li {
    list-style-position: outside;
  }
}

.flex {
  display: flex;
}

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

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

.g-20 {
  gap: 20px;
}

.g-40 {
  gap: 40px;
}

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

.cargo-gray {
  color: #aaa !important;
}

.kitbash__cargo__landing--header {
  padding: 80px 0 0 0;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 992px) {
  .kitbash__cargo__landing--header {
    padding: 160px 0 0 0;
    min-height: 890px;
    height: calc(100vh - 100px);
    max-height: 1100px;
    max-width: 100vw;
  }
}
.kitbash__cargo__landing--header .app__container {
  height: 100%;
  max-width: 1980px;
}
.kitbash__cargo__landing--header-content {
  height: 100%;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.kitbash__cargo__landing--header-content header {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
.kitbash__cargo__landing--header-content header h1 {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  color: #ffffff;
}
@media screen and (min-width: 992px) {
  .kitbash__cargo__landing--header-content header h1 {
    font-size: 48px;
    line-height: 58px;
  }
}
.kitbash__cargo__landing--header-content header p {
  color: #aaaaaa;
  font-family: "Objektiv Mk1";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
}
.kitbash__cargo__landing--header-content figure img {
  max-width: calc(100% + 80px);
  margin-left: -40px;
  margin-top: 30px;
}
@media screen and (min-width: 992px) {
  .kitbash__cargo__landing--header-content figure img {
    max-width: 100%;
    margin-top: 0;
  }
}
.kitbash__cargo__landing--header::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(27.97% 31.54% at 50% 50%, rgba(251, 173, 24, 0.2) 0%, rgba(251, 173, 24, 0) 100%);
  filter: blur(61.5px);
  transform: rotate(0deg) scale(1.2);
  z-index: 0;
}

.kitbash__cargo__landing--features {
  background: #111111;
  padding: 80px 0;
}
.kitbash__cargo__landing--features-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}
@media screen and (min-width: 992px) {
  .kitbash__cargo__landing--features-content {
    grid-template-columns: repeat(3, 1fr);
    gap: 90px;
  }
}
.kitbash__cargo__landing--features-content article {
  text-align: center;
}
.kitbash__cargo__landing--features-content article svg {
  margin-bottom: 20px;
}
.kitbash__cargo__landing--features-content article svg * {
  fill: #fbad18;
}
.kitbash__cargo__landing--features-content article h3 {
  color: white;
  font-family: "Objektiv Mk1";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.085em;
  margin-bottom: 20px;
  text-transform: capitalize !important;
}
.kitbash__cargo__landing--features-content article p {
  font-family: "Objektiv Mk1";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.085em;
  color: #aaaaaa;
}

.kitbash__cargo__landing--comments {
  position: relative;
}
.kitbash__cargo__landing--comments.no-after:after {
  display: none;
}
.kitbash__cargo__landing--comments:after {
  content: "";
  display: block;
  left: 0;
  top: 0;
  width: 100vw;
  height: 331px;
  background: #181818;
  position: absolute;
  z-index: -1;
}
@media screen and (min-width: 992px) {
  .kitbash__cargo__landing--comments:after {
    height: 301px;
  }
}
@media screen and (min-width: 1280px) {
  .kitbash__cargo__landing--comments:after {
    height: 331px;
  }
}
@media screen and (min-width: 1920px) {
  .kitbash__cargo__landing--comments:after {
    height: 371px;
  }
}
.kitbash__cargo__landing--comments-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (min-width: 992px) {
  .kitbash__cargo__landing--comments-content {
    grid-template-columns: repeat(3, 1fr);
  }
}
.kitbash__cargo__landing--comments-content-card {
  background: #181818;
  border: 1px solid #494949;
  padding: 0 26px 26px 26px;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .kitbash__cargo__landing--comments-content-card {
    padding: 0 36px 36px 36px;
  }
}
@media screen and (min-width: 1920px) {
  .kitbash__cargo__landing--comments-content-card {
    padding: 0 46px 46px 46px;
  }
}
.kitbash__cargo__landing--comments-content-card-thumbnail {
  margin: 0px -26px 26px;
}
@media screen and (min-width: 992px) {
  .kitbash__cargo__landing--comments-content-card-thumbnail {
    margin: 0px -36px 36px;
  }
}
@media screen and (min-width: 1920px) {
  .kitbash__cargo__landing--comments-content-card-thumbnail {
    margin: 0px -46px 46px;
  }
}
.kitbash__cargo__landing--comments-content-card-thumbnail img {
  max-width: 100%;
  width: 100%;
  aspect-ratio: 500px/150px;
}
.kitbash__cargo__landing--comments-content-card-logo {
  margin-bottom: 15px;
}
.kitbash__cargo__landing--comments-content-card-logo img {
  max-width: 100%;
}
.kitbash__cargo__landing--comments-content-card footer {
  margin-top: 20px;
}
.kitbash__cargo__landing--comments-content-card footer p:first-child {
  /* Cargo H3 Bld - 18px */
  font-family: "Objektiv Mk1";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  /* identical to box height */
  letter-spacing: 0.085em;
  /* Cargo_Yellow */
  color: #fbad18;
}
.kitbash__cargo__landing--comments-content-card footer p:nth-child(2) {
  font-family: "Objektiv Mk1";
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.085em;
  color: #ffffff;
}

.kitbash__cargo__landing--video-content {
  gap: 80px;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 992px) {
  .kitbash__cargo__landing--video-content {
    grid-template-columns: 0.65fr 0.35fr;
  }
}
.kitbash__cargo__landing--video-content-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  order: -1;
}
@media screen and (max-width: 992px) {
  .kitbash__cargo__landing--video-content-text .cargo-feature-list {
    margin-left: 0;
  }
}
@media screen and (min-width: 992px) {
  .kitbash__cargo__landing--video-content-text {
    align-items: flex-start;
    order: 3;
  }
}
.kitbash__cargo__landing--video-content-text h1 {
  margin-bottom: 40px;
  margin-top: 0;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .kitbash__cargo__landing--video-content-text h1 {
    text-align: left;
  }
}
.kitbash__cargo__landing--video--poster {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  aspect-ratio: 16/9;
  height: 100%;
  object-fit: contain;
  cursor: pointer;
}
.kitbash__cargo__landing--video--play {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  cursor: pointer;
}
.kitbash__cargo__landing--video--play:hover * {
  fill: #fbad18;
}
.kitbash__cargo__landing--video-container {
  position: relative;
}
.kitbash__cargo__landing--video-container iframe {
  aspect-ratio: 16/9;
  width: 100% !important;
  height: auto;
}

.kitbash__cargo__landing--featured {
  overflow: hidden;
}
.kitbash__cargo__landing--featured-content {
  background: #111111;
  position: relative;
}
@media screen and (min-width: 992px) {
  .kitbash__cargo__landing--featured-content {
    min-height: 500px;
    display: grid;
  }
}
@media screen and (min-width: 992px) {
  .kitbash__cargo__landing--featured-content .kitbash__cargo__landing--featured-image {
    margin-left: 0;
    width: 100%;
  }
}
.kitbash__cargo__landing--featured-content .kitbash__cargo__landing--featured-image img {
  object-fit: contain;
  width: 100%;
}
.kitbash__cargo__landing--featured-content .kitbash__cargo__landing--featured-text {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 40px 0;
}
.kitbash__cargo__landing--featured-content .kitbash__cargo__landing--featured-text .cargo-t1,
.kitbash__cargo__landing--featured-content .kitbash__cargo__landing--featured-text .cargo-t3 {
  margin-bottom: 15px;
}
.kitbash__cargo__landing--featured-content .kitbash__cargo__landing--featured-text .cargo-t1 {
  font-weight: 700;
}
@media screen and (min-width: 992px) {
  .kitbash__cargo__landing--featured-content .kitbash__cargo__landing--featured-text {
    text-align: left;
    justify-content: center;
    padding: 0;
  }
  .kitbash__cargo__landing--featured-content .kitbash__cargo__landing--featured-text .cargo-t3 {
    margin-bottom: 20px;
  }
  .kitbash__cargo__landing--featured-content .kitbash__cargo__landing--featured-text .cargo-t1 {
    margin-bottom: 30px;
  }
  .kitbash__cargo__landing--featured-content .kitbash__cargo__landing--featured-text .cargo-text-medium {
    font-size: 18px !important;
  }
}
.kitbash__cargo__landing--featured-content .app__container .row {
  grid-template-columns: 1fr;
}
@media screen and (min-width: 992px) {
  .kitbash__cargo__landing--featured-content .app__container .row {
    gap: 30px;
    height: 100%;
    display: grid;
    align-items: center;
    grid-template-columns: auto 550px;
  }
}
@media screen and (min-width: 992px) {
  .kitbash__cargo__landing--featured-content.image-right .app__container .row {
    grid-template-columns: 550px auto;
  }
}
@media screen and (min-width: 992px) {
  .kitbash__cargo__landing--featured-content.image-right .kitbash__cargo__landing--featured-text {
    order: -2;
  }
}
.kitbash__cargo__landing--featured-text {
  position: relative;
  z-index: 3;
}

.kitbash__cargo__landing--supported-software {
  background: #181818;
  padding: 80px 0;
}
.kitbash__cargo__landing--supported-software article {
  text-align: center;
}
.kitbash__cargo__landing--supported-software article p {
  font-family: "Objektiv Mk1";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.085em;
  color: #aaaaaa;
}
.kitbash__cargo__landing--supported-software-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-direction: row;
  margin: 40px 0;
}
@media screen and (min-width: 992px) {
  .kitbash__cargo__landing--supported-software-logos {
    gap: 100px;
  }
}
.kitbash__cargo__landing--supported-software-logos img {
  object-fit: contain;
  height: 40px;
  width: 40px;
}
@media screen and (min-width: 992px) {
  .kitbash__cargo__landing--supported-software-logos img {
    height: 75px;
    width: 75px;
  }
}

.kitbash__cargo__pricing--header {
  box-sizing: border-box;
  padding: 40px 0;
  position: relative;
  margin-bottom: 40px;
}
@media screen and (min-width: 992px) {
  .kitbash__cargo__pricing--header {
    min-height: 600px;
    height: 600px;
  }
}
.kitbash__cargo__pricing--header .app__container {
  height: inherit;
}
.kitbash__cargo__pricing--header-content {
  height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.kitbash__cargo__pricing--header-content header {
  position: relative;
  z-index: 2;
  text-align: center;
  margin: 40px 0;
}
@media screen and (min-width: 992px) {
  .kitbash__cargo__pricing--header-content header {
    text-align: left;
    margin: 0;
  }
}
.kitbash__cargo__pricing--header-content header p {
  margin-top: 30px;
  font-family: "Objektiv Mk1";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.085em;
  color: #aaaaaa;
}
.kitbash__cargo__pricing--header-image img {
  transform: scale(1.3);
  width: 100%;
  object-fit: cover;
  object-position: left center;
  height: 100%;
}
@media screen and (min-width: 992px) {
  .kitbash__cargo__pricing--header-image img {
    transform: none;
    object-position: 20vw center;
  }
}
@media screen and (min-width: 1280px) {
  .kitbash__cargo__pricing--header-image img {
    object-fit: contain;
    object-position: 20vw center;
    height: 100%;
    max-height: 600px;
  }
}
@media screen and (min-width: 1600px) {
  .kitbash__cargo__pricing--header-image img {
    object-fit: contain;
    object-position: 30vw center;
  }
}
@media screen and (min-width: 2000px) {
  .kitbash__cargo__pricing--header-image img {
    object-position: 30vw center;
  }
}
@media screen and (min-width: 2400px) {
  .kitbash__cargo__pricing--header-image img {
    object-position: 150% center;
  }
}
@media screen and (min-width: 2800px) {
  .kitbash__cargo__pricing--header-image img {
    object-position: 100% center;
  }
}
@media screen and (min-width: 992px) {
  .kitbash__cargo__pricing--header-image {
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
}

.kitbash__cargo__pricing--table-list {
  display: grid;
  justify-content: center;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
@media screen and (min-width: 992px) {
  .kitbash__cargo__pricing--table-list {
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
  }
}
.kitbash__cargo__pricing--table-list-item {
  padding: 30px;
  box-sizing: border-box;
  background: linear-gradient(0.25deg, rgba(73, 73, 73, 0.2) 0.17%, rgba(17, 17, 17, 0) 99.73%), #111111;
  border: 1px solid #494949;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 auto;
  height: 100%;
  max-width: 400px;
  width: 100%;
}
.kitbash__cargo__pricing--table-list-item .kitbash__cargo__download--button-outlined,
.kitbash__cargo__pricing--table-list-item .kitbash__cargo__pricing--logo {
  margin-bottom: 15px;
}
@media screen and (min-width: 992px) {
  .kitbash__cargo__pricing--table-list-item {
    max-width: 300px;
    margin: 0 auto;
    gap: 10px;
  }
}
.kitbash__cargo__pricing--table-list-item:hover {
  border-color: #aaa;
}
@media screen and (min-width: 992px) {
  .kitbash__cargo__pricing--table-list-item:nth-child(2) {
    height: 110%;
    max-width: 340px;
  }
}
.kitbash__cargo__pricing--table-list-item-header {
  grid-area: header;
}
.kitbash__cargo__pricing--table-list-item-header h2 {
  font-family: "Objektiv Mk1";
  font-style: normal;
  font-weight: 400;
  font-size: 28px;
  line-height: 40px;
  letter-spacing: 0.02em;
  color: #ffffff;
  margin-bottom: 20px;
}
.kitbash__cargo__pricing--table-list-item-header h2 sup {
  font-size: 65%;
}
.kitbash__cargo__pricing--table-list-item-header h2 strong {
  font-weight: 700;
}
.kitbash__cargo__pricing--table-list-item-header h3 {
  font-family: "Objektiv Mk1";
  font-style: normal;
  font-weight: 400;
  display: flex;
  align-items: flex-end;
  letter-spacing: 1px;
  color: #ffffff;
  line-height: initial;
  text-transform: initial;
}
.kitbash__cargo__pricing--table-list-item-header h3 span:nth-child(1) {
  font-size: 14px;
}
.kitbash__cargo__pricing--table-list-item-header h3 span:nth-child(2) {
  font-size: 36px;
  font-weight: 700;
  height: 36px;
  display: flex;
  align-items: center;
}
.kitbash__cargo__pricing--table-list-item-header h3 span:nth-child(3) {
  font-size: 10px;
}
.kitbash__cargo__pricing--table-list-item-discount {
  grid-area: discount;
}
.kitbash__cargo__pricing--table-list-item-discount p {
  font-family: "Objektiv Mk1";
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  line-height: 16px;
  letter-spacing: 0.085em;
  color: #aaaaaa;
}
.kitbash__cargo__pricing--table-list-item-discount p span {
  display: inline-block;
  padding: 2px 10px;
  margin-right: 10px;
  background: #fbad18;
  text-decoration: line-through;
  color: #111111;
  font-weight: 700;
}
.kitbash__cargo__pricing--table-list-item-body {
  grid-area: body;
  height: fit-content;
}
.kitbash__cargo__pricing--table-list-item-body p {
  font-family: "Objektiv Mk1";
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  line-height: 1.8;
  letter-spacing: 0.085em;
  color: #ffffff;
  margin-bottom: 30px;
}
.kitbash__cargo__pricing--table-list-item-footer {
  grid-area: footer;
}
.kitbash__cargo__pricing--table-list-item-footer p {
  font-family: "Objektiv Mk1";
  font-style: normal;
  font-weight: 700;
  font-size: 10px;
  line-height: 17px;
  letter-spacing: 0.085em;
  color: #ffffff;
  margin-bottom: 20px;
}
.kitbash__cargo__pricing--table-list-item-footer .cargo-feature-list {
  text-align: left;
}
.kitbash__cargo__pricing--table-list-item-footer .cargo-feature-list li {
  font-size: 10px;
  line-height: 2.4;
}
.kitbash__cargo__pricing--table-list-item-footer .cargo-feature-list li span {
  position: relative;
  top: -3px;
}

.payPerPriceBold {
  font-family: "Objektiv Mk1";
  font-style: normal;
  font-weight: 700;
  font-size: 28px !important;
  line-height: 26px;
  color: #ffffff;
}

.payPerPrice {
  font-family: "Objektiv Mk1";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  color: #ffffff;
}

.kitbash__cargo__pricing--table-section {
  padding: 80px 0;
  margin-bottom: 60px;
}
.kitbash__cargo__pricing--table-section-header {
  text-align: center;
  margin-bottom: 100px;
}
.kitbash__cargo__pricing--table-section-header p {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-size: 12px;
  font-family: "Objektiv Mk1";
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
}
.kitbash__cargo__pricing--table-section-header p span {
  color: #aaaaaa;
}
.kitbash__cargo__pricing--table-section-header p span:last-child {
  color: #fbad18;
}
.kitbash__cargo__pricing--table-section-sticky {
  background: #181818;
  padding: 40px 0;
  display: none;
  position: fixed;
  top: -100%;
  width: 100%;
  transition: 750ms ease top;
}
.kitbash__cargo__pricing--table-section-sticky.is-sticky {
  top: 60px;
  z-index: 10;
}
@media screen and (min-width: 1920px) {
  .kitbash__cargo__pricing--table-section-sticky.is-sticky {
    top: 100px;
  }
}
@media screen and (min-width: 992px) {
  .kitbash__cargo__pricing--table-section-sticky {
    display: block;
  }
}
.kitbash__cargo__pricing--table-section-sticky-row {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 40px;
}
@media screen and (min-width: 1280px) {
  .kitbash__cargo__pricing--table-section-sticky-row {
    grid-template-columns: minmax(300px, 450px) 1fr;
    align-items: center;
    gap: 40px;
  }
}
.kitbash__cargo__pricing--table-section-sticky-row h1 {
  text-align: center;
}
@media screen and (min-width: 1280px) {
  .kitbash__cargo__pricing--table-section-sticky-row h1 {
    text-align: left;
    font-size: 36px;
  }
}
@media screen and (min-width: 1440px) {
  .kitbash__cargo__pricing--table-section-sticky-row h1 {
    font-size: 48px;
  }
}
.kitbash__cargo__pricing--table-section-sticky-row-prices {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 93px;
  width: fit-content;
  justify-self: end;
  padding-right: 55px;
}
.kitbash__cargo__pricing--table-section-sticky-row-prices .price {
  height: 100%;
  justify-content: space-between;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 270px;
}
.kitbash__cargo__pricing--table-section-sticky-row-prices .price h3 {
  font-family: "Objektiv Mk1";
  font-style: normal;
  font-weight: 400;
  font-size: 28px;
  line-height: 40px;
  letter-spacing: 0.02em;
  color: #ffffff;
  text-transform: capitalize;
  text-align: center;
  margin-bottom: 0;
}
.kitbash__cargo__pricing--table-section-sticky-row-prices .price h3 sup {
  font-size: 65%;
}
.kitbash__cargo__pricing--table-section-sticky-row-prices .price h3 strong {
  font-weight: 700;
}
.kitbash__cargo__pricing--table-section-sticky-row-prices .price h3 strong {
  font-size: 28px;
  font-weight: 700;
}
.kitbash__cargo__pricing--table-section-sticky-row-prices .price h3 span:nth-child(3) {
  font-size: 10px;
}
.kitbash__cargo__pricing--table-section-sticky-row-prices .price p {
  font-size: 14px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 30px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #494949;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border: 2px solid #262626;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: #fbad18;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #fbad18;
}

input:checked + .slider:before {
  background-color: #262626;
}

input:focus + .slider {
  box-shadow: none;
}

input:checked + .slider:before {
  -webkit-transform: translateX(18px);
  -ms-transform: translateX(18px);
  transform: translateX(18px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.kitbash__cargo__pricing--comparison--table {
  overflow-x: scroll;
  overflow-y: hidden;
  cursor: grab;
}
@media screen and (min-width: 992px) {
  .kitbash__cargo__pricing--comparison--table {
    cursor: initial;
    overflow: visible;
  }
}
.kitbash__cargo__pricing--comparison--table-header {
  display: grid;
  grid-template-columns: minmax(300px, 512px) 1fr 1fr 1fr;
  min-height: 60px;
  gap: 20px;
  align-items: center;
  padding: 10px 20px;
  min-width: fit-content;
}
.kitbash__cargo__pricing--comparison--table-header h4 {
  font-family: "Objektiv Mk1";
  color: #ffffff;
  font-weight: 400;
  font-size: 21px;
  line-height: 30px;
  text-align: center;
}
.kitbash__cargo__pricing--comparison--table-header h4 strong {
  font-weight: 700;
}
.kitbash__cargo__pricing--comparison--table-body {
  min-width: fit-content;
}
.kitbash__cargo__pricing--comparison--table-body-row {
  height: 60px;
  align-items: center;
  display: grid;
  padding: 0 20px;
  gap: 20px;
  grid-template-columns: minmax(300px, 512px) 1fr 1fr 1fr;
}
.kitbash__cargo__pricing--comparison--table-body-row.title {
  background: #181818;
  grid-template-columns: 1fr;
}
.kitbash__cargo__pricing--comparison--table-body-row.title h3 {
  font-family: "Objektiv Mk1";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.085em;
  color: white;
  text-transform: uppercase;
}
.kitbash__cargo__pricing--comparison--table-body-row p {
  font-family: "Objektiv Mk1";
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  line-height: 150%;
  letter-spacing: 0.085em;
  text-indent: 2px;
  color: #ffffff;
}
@media screen and (min-width: 992px) {
  .kitbash__cargo__pricing--comparison--table-body-row p {
    font-size: 14px;
  }
}
.kitbash__cargo__pricing--comparison--table-body-cell {
  text-align: center;
}
.kitbash__cargo__pricing--comparison--table-footer {
  min-width: fit-content;
}
.kitbash__cargo__pricing--comparison--table-footer-cell {
  padding: 20px;
  text-align: center;
}
.kitbash__cargo__pricing--comparison--table-footer-cell h3 {
  font-family: "Objektiv Mk1";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0.05em;
  color: #ffffff;
}
.kitbash__cargo__pricing--comparison--table-footer-cell.teams {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.kitbash__cargo__pricing--comparison--table-footer-cell.teams h3 {
  text-transform: capitalize !important;
  font-size: 10px;
}
.kitbash__cargo__pricing--comparison--table-footer-cell.teams h3 span {
  font-size: 16px;
}
.kitbash__cargo__pricing--comparison--table-footer-cell.teams h3:nth-child(2) {
  font-size: 10px;
  font-weight: 400;
}

.cargo__pdp--download-header {
  display: grid;
  margin-bottom: 20px;
  gap: 15px;
  align-items: center;
  grid-template-columns: 40px 1fr;
}
@media screen and (min-width: 992px) {
  .cargo__pdp--download-header {
    grid-template-columns: 46px 1fr;
  }
}
.cargo__pdp--download-header p {
  font-family: "Objektiv Mk1";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.05em;
  color: #aaaaaa;
  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-family: "Objektiv Mk1";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.05em;
  color: #aaaaaa;
}
.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;
  -webkit-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-family: "Objektiv Mk1";
  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-family: "Objektiv Mk1";
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  line-height: 15px;
  letter-spacing: 0.085em;
  color: #fbad18;
}

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

.engine,
.is-owned .kb__kit__body {
  display: none;
}

.kitbash__cargo__license--header-content {
  display: grid;
  align-items: center;
  min-height: 600px;
  justify-content: center;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 40px 0;
}
@media screen and (min-width: 992px) {
  .kitbash__cargo__license--header-content {
    grid-template-columns: minmax(250px, 550px) 1fr;
  }
}
.kitbash__cargo__license--header-content h1 {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 58px;
  color: #ffffff;
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .kitbash__cargo__license--header-content h1 {
    text-align: left;
    font-size: 48px;
  }
}
.kitbash__cargo__license--header-content p {
  font-family: "Objektiv Mk1";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.085em;
  color: #ffffff;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .kitbash__cargo__license--header-content p {
    text-align: left;
  }
}
.kitbash__cargo__license--header-content img {
  max-width: 100%;
}

.kitbash__cargo__license--message {
  background: #181818;
  padding: 40px 0;
}
@media screen and (min-width: 992px) {
  .kitbash__cargo__license--message {
    background: transparent;
  }
}
.kitbash__cargo__license--message-content {
  text-align: center;
}
.kitbash__cargo__license--message-content h1 {
  margin-bottom: 20px;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 35px;
  letter-spacing: -0.02em;
}
@media screen and (min-width: 992px) {
  .kitbash__cargo__license--message-content h1 {
    font-size: 48px;
    line-height: 58px;
  }
}
.kitbash__cargo__license--message-content p {
  font-family: "Objektiv Mk1";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.085em;
  color: #ffffff;
  max-width: 1280px;
  margin: 0 auto;
}
@media screen and (min-width: 992px) {
  .kitbash__cargo__license--message-content p {
    font-size: 18px;
    line-height: 26px;
  }
}

/*# sourceMappingURL=bundle.min.css.map */
