@import "../fonts/stylesheet.css";
@media (max-width: 768.98px) {
  .px-3 {
    padding-left: var(--bs-gutter-x) !important;
    padding-right: var(--bs-gutter-x) !important;
  }
}
:root {
  --sp-font: "DIN Pro", sans-serif;
  --body-font: "Mona Sans", sans-serif;
  --accent: #267E34;
  --yellow: #E7B745;
  --blue: #0D2044;
  --blue-l: #56A9BF;
  --arrow-icon-size: 3rem;
  --fancybox-content-bg: transparent;
}

.loading {
  overflow: hidden !important;
}
.loading .loader {
  opacity: 1;
}
.loading lottie-player {
  opacity: 1;
}

.loader {
  opacity: 0;
  transition: opacity 1s ease-in-out;
  pointer-events: none;
}

.no-scroll body {
  overflow-y: hidden !important;
}

/*HEADER & FOOTER */
div.error {
  display: block;
  width: 100%;
  font-size: 0;
  position: fixed;
  top: -1px;
  left: 0;
  max-height: 400px;
  z-index: 9999;
  overflow: hidden;
  opacity: 1;
}

div.error p {
  display: block;
  width: 100%;
  background: var(--col-error);
  color: #fff;
  font-size: 18px;
  padding: 20px;
  text-align: center;
}

div.error.hide {
  max-height: 0px;
  opacity: 0;
}

html {
  overflow-x: hidden;
}

body {
  font-family: var(--body-font);
  overflow-x: hidden;
  font-size: 18px;
}
body > .overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  pointer-events: none;
}
body > .overlay.active {
  pointer-events: all;
}

article {
  background: none;
  padding-top: 75px;
}
article#home {
  padding-top: 0;
}

.about.page article {
  padding-top: 0;
}

.font-normal {
  font-family: var(--body-font) !important;
}

.font-sp {
  font-family: var(--sp-font) !important;
}

.text-accent {
  color: var(--accent) !important;
}

.text-blue {
  color: var(--blue-l) !important;
}

.bg-yellow {
  background: var(--yellow) !important;
  color: var(--blue) !important;
}

.bg-blue {
  background: var(--blue) !important;
}

.has-overlay {
  position: relative;
}
.has-overlay::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}
.has-overlay > div {
  position: relative;
  z-index: 1;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--sp-font);
  font-weight: 500;
  margin-bottom: 3rem;
}
@media (max-width: 768.98px) {
  h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
  }
}

p:not(:last-child) {
  margin-bottom: 2rem;
}

.lh-1 {
  line-height: 1em !important;
}

.ls-0 {
  letter-spacing: normal !important;
}

.ls-sm {
  letter-spacing: -0.05em !important;
}

.ls-1 {
  letter-spacing: 0.17em !important;
}

.ls-2 {
  letter-spacing: 0.2em !important;
}

.tiny {
  font-size: 12px !important;
  line-height: 1.1em;
}

hr {
  opacity: 1;
}

.blend-multiply {
  mix-blend-mode: multiply !important;
}

@media (max-width: 768.98px) {
  .sm-squard {
    padding-bottom: 100%;
    position: relative;
  }
  .sm-squard img {
    left: 0;
    top: 0;
    position: absolute;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

.larger {
  font-size: 1.5em !important;
}

.font-body {
  font-family: var(--body-font) !important;
  font-weight: 300 !important;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  font-size: 0.85em;
  transition: background 0.3s ease-in-out;
  background: white;
}
header nav {
  transition: background 0.3s ease-in-out;
  background: var(--light-brown);
}
header.home, header.about {
  color: white;
  background: transparent;
}
header.home .hamburger, header.about .hamburger {
  --line-color: white;
}
header.home nav, header.about nav {
  background: transparent;
}
header.home nav .logo, header.about nav .logo {
  filter: brightness(0) invert(1);
}
header.home.visible nav, header.about.visible nav {
  transform: translateY(0%);
}
header.attached {
  background: white;
  background-repeat: repeat-x;
  background-size: contain;
  color: var(--accent);
}
header.attached nav .logo {
  filter: none;
}
header.attached .hamburger {
  --line-color: black;
}

.page-top nav {
  background: transparent !important;
}

nav {
  width: 100%;
  padding: 2em 0;
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
nav .desktop-nav {
  width: 100%;
}
nav ul {
  list-style: none;
  padding: 0;
}
nav ul small {
  font-size: 0.5em;
  opacity: 0.5;
}
nav ul li {
  padding: 0;
}
nav ul li::before, nav ul li::after {
  display: none;
}
nav ul li.home {
  position: relative;
  width: 150px;
}
nav ul li.home a {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
}
@media (max-width: 991.98px) {
  nav ul li.home a {
    display: flex;
    justify-content: center;
  }
}
nav ul li.home span {
  font-size: 0;
  position: absolute;
}
@media (max-width: 991.98px) {
  nav ul li.home span {
    font-size: 1em;
    position: relative;
  }
}
nav ul li.home .logo {
  width: 100%;
  max-width: 150px;
  height: auto;
  top: 50%;
  left: unset;
  transform: translateY(-50%);
  width: 150px;
  display: inline-block;
}
@media (max-width: 991.98px) {
  nav ul li.home .logo {
    display: none;
  }
}
nav ul li a {
  font-weight: 300;
  text-decoration: none !important;
  text-transform: uppercase;
}
nav ul li a.active {
  text-decoration: underline !important;
}
nav ul li a:hover {
  text-decoration: underline !important;
}
nav ul li a.boxed {
  border: 1px solid black;
  padding: 10px 30px;
  padding-top: 14px;
}
nav .logo {
  width: 40vw;
  max-width: 250px;
  left: 1em;
}
nav .logo svg {
  height: auto;
}
nav .nav-btn {
  color: black !important;
}
nav .nav-btn .burger span {
  background: black;
}
nav .nav-menu {
  margin: auto;
}
nav .register-btn {
  display: inline-block;
  height: 40px;
  line-height: 40px;
  padding: 0 1em;
  width: auto;
  border-radius: 0.3125em;
  font-family: var(--sp-font);
  color: white;
  background: var(--blue);
  margin-right: 0.625em;
  transition: background-color 0.3s ease-in-out;
}
nav .register-btn:hover {
  background-color: var(--main-color-2);
}

.fs-nav {
  position: absolute;
  width: 50vw;
  max-width: 960px;
  height: 110vh;
  padding-bottom: 10vh;
  top: 0;
  right: 0;
  background: black;
  font-size: 0.88888889em;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity ease-in-out 0.3s;
}
@media (max-width: 1640.98px) {
  .fs-nav {
    font-size: 1vw;
    width: 60vw;
  }
}
@media (max-width: 991.98px) {
  .fs-nav {
    max-width: unset;
    width: 100vw;
  }
}
.fs-nav .logo {
  width: 60vw;
  display: none;
  padding: 2em 0;
}
@media (max-width: 991.98px) {
  .fs-nav .logo {
    display: block;
  }
}
.fs-nav.show {
  opacity: 1;
  pointer-events: initial;
}
.fs-nav.show .nav-menu li {
  animation-name: fadeIn;
  animation-fill-mode: forwards;
  animation-delay: 0;
  animation-timing-function: ease-in-out;
  animation-duration: 0.3s;
}
.fs-nav.show .nav-menu li a {
  font-family: var(--sp-font);
  font-weight: normal;
  text-decoration: none !important;
}
.fs-nav .nav-btn:hover .burger {
  transform: none !important;
}
.fs-nav .nav-btn .burger span {
  background: black;
  position: absolute;
  top: 50%;
  left: 50%;
}
.fs-nav .nav-btn .burger span:nth-child(1) {
  transform-origin: center center;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.fs-nav .nav-btn .burger span:nth-child(2) {
  transform-origin: center center;
  transform: translate(-50%, -50%) rotate(45deg);
}
.fs-nav .nav-btn .burger span:last-child {
  display: none;
}
.fs-nav .nav-menu {
  list-style: none;
  width: 100%;
  height: 100%;
  padding-left: 0;
  font-family: var(--special-font);
  text-align: center;
}
.fs-nav .nav-menu li {
  padding: 0.25em 1em;
  font-size: 2.75em;
  text-align: left;
  width: 100%;
  border-bottom: 1px solid white;
}
@media (max-width: 1920px) {
  .fs-nav .nav-menu li {
    font-size: 2em;
  }
}
@media (max-width: 991.98px) {
  .fs-nav .nav-menu li {
    padding: 0.5em 2em;
  }
}
@media (max-width: 768.98px) {
  .fs-nav .nav-menu li {
    font-size: 5vw;
  }
}
.fs-nav .nav-menu li:last-of-type {
  border-bottom: none;
}
.fs-nav .nav-menu li.home {
  margin-left: auto;
  margin-right: auto;
}
.fs-nav .nav-menu li::before {
  display: none !important;
}
.fs-nav .nav-menu li a {
  text-transform: capitalize;
  font-family: var(--sp-font);
  font-size: 1em;
  opacity: 0.3;
  color: white;
  transition: opacity ease-in-out 0.3s;
  font-weight: 500;
}
@media (max-width: 991.98px) {
  .fs-nav .nav-menu li a {
    opacity: 1;
    font-size: 1em;
  }
}
.fs-nav .nav-menu li a:hover {
  opacity: 1;
}
.fs-nav .nav-menu .social-wrapper {
  display: flex;
  justify-content: center;
}
.fs-nav .nav-menu .social-wrapper a {
  height: 0.75em;
  margin: 0.25em;
  display: block;
}
.fs-nav .nav-menu .social-wrapper a:hover svg * {
  fill: var(--blue);
}
.fs-nav .nav-menu .social-wrapper a svg {
  height: 100%;
  width: auto;
}
.fs-nav .nav-menu .social-wrapper a svg * {
  fill: var(--c-text-color);
  transition: fill ease-in-out 0.3s;
}

.hamburger {
  --line-color: black;
  right: 1em;
  width: 25px;
  height: 16px;
  z-index: 99999;
  display: block;
}
.hamburger:before {
  content: "menu";
  position: absolute;
  color: var(--line-color);
  transform: translate(-100%, -50%);
  top: 50%;
  font-size: 16px;
  padding-right: 10px;
  text-transform: uppercase;
}
@media (max-width: 991.98px) {
  .hamburger {
    right: 3rem;
  }
}
@media (max-width: 768.98px) {
  .hamburger {
    right: var(--bs-gutter-x);
  }
}
@media (max-width: 575.98px) {
  .hamburger {
    width: 25px;
    height: 22px;
  }
}
.hamburger span {
  background: var(--line-color);
  position: absolute;
  height: 2px;
  border-radius: 0;
  width: 100%;
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2), .hamburger span:nth-child(3) {
  top: 8px;
}
@media (max-width: 575.98px) {
  .hamburger span:nth-child(2), .hamburger span:nth-child(3) {
    top: 10px;
  }
}
.hamburger span:nth-child(4) {
  top: 16px;
}
@media (max-width: 575.98px) {
  .hamburger span:nth-child(4) {
    top: 20px;
  }
}
.hamburger.active span {
  background: white;
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
}
.hamburger.active span:nth-child(1), .hamburger.active span:nth-child(4) {
  opacity: 0;
}
.hamburger.active span:nth-child(2) {
  transform: rotate(45deg);
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
}
.hamburger.active:before {
  opacity: 0;
  transition: opacity 0.3 ease-in-out;
}

@keyframes fadeIn {
  0% {
    transform: translate(0px, 100px);
    opacity: 0;
  }
  100% {
    transform: translate(0px, 0px);
    opacity: 1;
  }
}
.btn {
  --bs-btn-border-radius: 0;
  padding: 1em 2em;
  font-weight: normal;
  text-transform: capitalize;
  letter-spacing: 0.15em;
  border: 1px solid var(--accent);
  transition: all 0.3s ease-in-out !important;
  color: var(--accent);
  text-decoration: none;
  display: inline-block;
  background: var(--accent);
  color: white;
  border: 1px solid var(--accent);
  font-weight: 600;
  font-size: 1.1em;
}
.btn:hover {
  text-decoration: none !important;
  background: white;
  color: var(--accent);
}
.btn.btn-red {
  background: var(--accent);
  color: var(--light-brown);
  text-align: center;
  border: 1px solid var(--accent);
}
.btn.btn-red.arrow-down::after {
  background-image: url(/img/arrow-down.svg);
}
.btn.btn-red.arrow-down:hover::after {
  background-image: url(/img/arrow-down-c.svg);
}
.btn.btn-red:hover {
  background: var(--light-brown);
  color: var(--accent);
}
.btn.btn-red:hover::after {
  background-image: url(/img/arrow-down-c.svg);
}
.btn.arrow-down {
  padding-bottom: 2em;
  position: relative;
}
.btn.arrow-down::after {
  content: "";
  display: block;
  width: 3em;
  height: 1em;
  background-image: url(/img/arrow-down-c.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 50%;
  bottom: 5px;
  transform: translateX(-50%);
  transition: all 0.5s ease-in-out;
}

a {
  color: inherit;
  letter-spacing: 0.1em;
  font-family: var(--body-font);
  font-weight: normal;
  letter-spacing: -0.005em;
  text-decoration: none;
}
a.new-link {
  display: flex;
  position: relative;
  width: 100%;
  height: var(--arrow-icon-size);
  justify-content: space-between;
  align-items: center;
  color: white;
  text-transform: uppercase;
}
a.new-link:hover {
  text-decoration: underline;
}
a.new-link::after {
  content: "";
  display: block;
  position: absolute;
  width: var(--arrow-icon-size);
  height: var(--arrow-icon-size);
  top: 0;
  right: 0;
  background-image: url(/../img/arrow-link-w.svg);
  background-size: contain;
}
a.new-link.black {
  color: #000;
}
a.new-link.black::after {
  background-image: url(/../img/arrow-link.svg);
}
a.new-link.coming-soon::after {
  display: none;
}

img {
  max-width: 100%;
}

iframe {
  border: none;
  width: 100%;
  height: 100%;
}

.s-line {
  display: block;
  margin: auto;
  width: 1px;
  height: 10em;
  background: var(--accent);
}

.hide {
  display: none;
}

a.showmore {
  color: black;
  text-decoration: underline;
}

.arrow-down:not(.btn) {
  max-width: 50px;
}

.logo {
  width: 410px;
}

.decor-line {
  border-bottom: 1px solid var(--bs-border-color);
  width: 100%;
}
.decor-line.black {
  border-color: #ccc;
}
.decor-line.black::after {
  background: black;
}
.decor-line::after {
  content: "";
  display: block;
  width: 40%;
  max-width: 120px;
  height: 7px;
  background: var(--bs-border-color);
  margin-bottom: -3px;
  margin-left: 3rem;
}
@media (max-width: 768.98px) {
  .decor-line::after {
    margin-left: var(--bs-gutter-x);
  }
}

.in-page-nav,
.area-sel-wrapper {
  display: flex;
  padding-left: 0;
  padding: 1em 0;
  border-top: 1px solid var(--bs-border-color);
  border-bottom: 1px solid var(--bs-border-color);
  flex-wrap: wrap;
  width: 100%;
}
@media (max-width: 768.98px) {
  .in-page-nav,
  .area-sel-wrapper {
    flex-direction: column;
  }
}
.in-page-nav li,
.area-sel-wrapper li {
  flex: 1;
  background: black;
  color: white;
  line-height: 2.6em;
  padding: 0 2rem;
  text-transform: uppercase;
  font-size: 1rem;
  border-right: 1px solid var(--bs-border-color);
  display: block;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.in-page-nav li.disabled,
.area-sel-wrapper li.disabled {
  background: #999;
  pointer-events: none !important;
}
@media (max-width: 1920px) {
  .in-page-nav li,
  .area-sel-wrapper li {
    font-size: 1em;
  }
}
@media (max-width: 1640.98px) {
  .in-page-nav li,
  .area-sel-wrapper li {
    width: 50%;
    margin-bottom: 1px;
    flex: none;
  }
  .in-page-nav li:nth-child(2n),
  .area-sel-wrapper li:nth-child(2n) {
    border-right: none;
  }
}
@media (max-width: 768.98px) {
  .in-page-nav li,
  .area-sel-wrapper li {
    margin-bottom: 1px;
    padding: 0 var(--bs-gutter-x);
    width: 100%;
    border-right: none;
  }
  .in-page-nav li:last-of-type,
  .area-sel-wrapper li:last-of-type {
    margin-bottom: 0;
  }
}
.in-page-nav li::after,
.area-sel-wrapper li::after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background-image: url(/img/arrow-down-w.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: 1em;
  top: 0;
  height: 100%;
}
.in-page-nav li:last-child,
.area-sel-wrapper li:last-child {
  border-right: none;
}
.in-page-nav li:hover,
.area-sel-wrapper li:hover {
  background: var(--accent);
}
.in-page-nav li.feature, .in-page-nav li.active,
.area-sel-wrapper li.feature,
.area-sel-wrapper li.active {
  background-color: var(--accent);
}
.in-page-nav li.coming-soon,
.area-sel-wrapper li.coming-soon {
  pointer-events: none;
}
.in-page-nav li.coming-soon::after,
.area-sel-wrapper li.coming-soon::after {
  background: none;
  content: "COMING SOON";
  display: inline-block;
  width: auto;
  font-weight: 500;
  font-size: 0.45em;
  opacity: 0.3;
  letter-spacing: 0.1em;
  top: 0.25em;
}
.in-page-nav li a,
.area-sel-wrapper li a {
  color: white;
  font-weight: 500;
  width: 100%;
  display: block;
  font-family: var(--sp-font);
}

.in-page-nav.no-arrow li:after,
.area-sel-wrapper li:after {
  display: none;
}

.moving-words {
  overflow: hidden;
  border-top: 1px solid var(--bs-border-color);
  padding-top: 2em;
  padding-bottom: 2em;
}
.moving-words h1 {
  margin-left: -50%;
  font-size: 3vw;
  margin-bottom: 0;
  display: inline-flex;
}
@media (max-width: 991.98px) {
  .moving-words h1 {
    font-size: 6vw;
  }
}
@media (max-width: 768.98px) {
  .moving-words h1 {
    font-size: 10vw;
  }
}
.moving-words h1 span {
  display: inline-flex;
  padding-right: 0.75em;
  margin-right: 0.75em;
  position: relative;
}
.moving-words h1 span::after {
  content: "";
  display: flex;
  width: 0.2em;
  height: 0.2em;
  border-radius: 50%;
  background: #000;
  position: absolute;
  right: 0;
  top: calc(50% - 0.1em);
}

.line.v-100 {
  height: 1000vh;
  position: absolute;
  width: 1px;
  top: 50%;
  padding: 0;
  transform: translateY(-50%);
}
.line.v-100.left {
  left: 0;
}
.line.v-100.right {
  right: 0;
}
.line.white {
  background: white;
}
.line.black {
  background: var(--bs-border-color);
}

.bg-line-wrapper {
  z-index: 0;
  pointer-events: none !important;
  position: fixed;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}

.text-grey {
  color: #B1B1B1 !important;
}

.border-top-none {
  border-top: none !important;
}

.border-right {
  border-right: 1px solid var(--bs-border-color);
}

.border-bottom {
  border-bottom: 1px solid var(--bs-border-color);
}

@media (max-width: 991.98px) {
  .border-top-mobile {
    border-top: 1px solid var(--bs-border-color);
  }
}

.glass-blur {
  backdrop-filter: blur(10px) brightness(0.5) !important;
}

.fancybox__content {
  width: 90vw !important;
  height: 50vw !important;
  max-height: 80vh;
  max-width: unset !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) !important;
  z-index: 0;
}
.fancybox__content img {
  width: 100% !important;
  object-fit: cover;
}

.fancybox__carousel .fancybox__caption {
  position: absolute;
  width: 90vw;
  height: 50vw;
  top: 50%;
  transform: translateY(-50%) !important;
  padding: 2em;
  color: white;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 35%);
  display: flex;
  flex-direction: column;
}
.fancybox__carousel .fancybox__caption h2 {
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 0.5em;
}
@media (max-width: 768.98px) {
  .fancybox__carousel .fancybox__caption h2 {
    font-size: calc(2vw + 16px);
  }
}
.fancybox__carousel .fancybox__caption small {
  font-weight: 300;
  text-transform: none;
}
.fancybox__carousel .fancybox__caption strong {
  font-size: 1rem;
  font-weight: normal;
  text-transform: none;
}

.fancybox__footer .fancybox__caption {
  display: flex;
  flex-direction: column;
}

a.view {
  text-transform: uppercase;
}

.loader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: white;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader lottie-player {
  width: 65vw;
}

.s-container {
  max-width: 1140px;
  margin: auto;
}

.container-fluid {
  margin-left: auto;
  margin-right: auto;
  --bs-gutter-x:4.5rem;
}
@media (max-width: 768.98px) {
  .container-fluid {
    --bs-gutter-x: 1.5rem;
  }
}

.no-mouse {
  pointer-events: none !important;
}

@media (max-width: 1640.98px) {
  .cta-bg {
    object-fit: cover;
  }
}
@media (max-width: 991.98px) {
  .cta-bg {
    min-height: 100vw;
  }
}

.container.cta {
  border: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
.container.cta .row {
  min-height: unset !important;
}
.container.position-absolute {
  z-index: 9;
}
.container.position-absolute.center {
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

section:not(.hero) {
  margin: 5em 0;
}
@media (max-width: 991.98px) {
  section:not(.hero) {
    height: unset;
    max-height: unset;
  }
}
@media (max-width: 768.98px) {
  section:not(.hero) {
    padding: 0;
  }
}

.swiper {
  --swiper-theme-color: white;
  --swiper-pagination-bullet-width: 10px;
  --swiper-pagination-bullet-height: 10px;
  --swiper-pagination-bullet-inactive-color:#707070;
  --swiper-pagination-bullet-inactive-opacity: 1;
}

.slider-control-btn {
  position: absolute;
  width: 20px;
  height: 20px;
  right: 0;
  filter: brightness(0) invert(1);
  pointer-events: all;
}
.slider-control-btn .play {
  display: none;
}
.slider-control-btn.play .play {
  display: block;
}
.slider-control-btn.play .pause {
  display: none;
}
.slider-control-btn img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.hero-slider .slider-control-btn {
  bottom: 50px;
}
.hero-slider .swiper-pagination {
  bottom: 50px !important;
  width: auto !important;
  max-width: 1920px;
  left: 0 !important;
  display: flex;
  pointer-events: all;
}
.hero-slider .swiper-pagination-bullet {
  bottom: 50px;
  border-radius: 0;
}
.hero-slider .swiper-wrapper {
  height: 100%;
}
.hero-slider .swiper-slide {
  max-height: 50vw;
}
@media (max-width: 1640.98px) {
  .hero-slider .swiper-slide {
    max-height: 700px;
  }
}
@media (max-width: 991.98px) {
  .hero-slider .swiper-slide {
    max-height: 80vw;
    overflow: hidden;
  }
}
@media (max-width: 768.98px) {
  .hero-slider .swiper-slide {
    max-height: 120vw;
    overflow: hidden;
  }
}
@media (max-width: 575.98px) {
  .hero-slider .swiper-slide {
    max-height: 140vw;
    overflow: hidden;
  }
}
.hero-slider .swiper-slide.overlay img {
  z-index: 0;
}
.hero-slider .swiper-slide.overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.7;
  width: 100%;
  height: 100%;
  background: black;
  z-index: 1;
  pointer-events: none;
}
.hero-slider .swiper-slide > img {
  min-height: 700px;
  object-fit: cover;
  width: 100%;
  height: 50vw;
}
@media (max-width: 768.98px) {
  .hero-slider .swiper-slide > img {
    max-height: 150vw;
    height: 120vw;
    min-height: unset;
  }
}
@media (max-width: 575.98px) {
  .hero-slider .swiper-slide > img {
    height: 140vw;
  }
}
.hero-slider .swiper-slide > iframe {
  position: relative;
  width: 100vw;
  min-height: 700px;
  max-height: 120vw;
  height: 56.25vw;
  min-width: 1240px;
}
@media (max-width: 768.98px) {
  .hero-slider .swiper-slide > iframe {
    min-height: 120vw;
    width: 214vw;
    max-height: 150vw;
    transform: translateX(-57vw);
  }
}
@media (max-width: 768.98px) {
  .hero-slider .swiper-slide > iframe {
    min-height: 140vw;
  }
}
.hero-slider .swiper-slide .link-to {
  position: absolute;
  right: 0;
  bottom: 2.5em;
  display: block;
  width: 2em;
  height: 2em;
}
.hero-slider .container {
  top: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  border-left: 1px solid var(--bs-border-color);
  border-right: 1px solid var(--bs-border-color);
  z-index: 2;
}
.hero-slider .container .decor-line {
  position: absolute;
  bottom: 120px;
  left: 0;
}
@media (max-width: 575.98px) {
  .hero-slider .container .decor-line {
    bottom: 100px;
  }
}
.hero-slider .container .bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.button-next,
.button-prev {
  width: var(--arrow-icon-size);
  transition: all 0.3s ease-in-out;
}
.button-next:hover,
.button-prev:hover {
  filter: invert(0.75);
}

.project-slider-wrapper .arrow-wrapper {
  padding: 1em 0;
  margin: 0;
}

.project-page-slider-wrapper .arrow-wrapper {
  padding: 1em 0;
  margin: 0;
}
@media (max-width: 768.98px) {
  .project-page-slider-wrapper .border-bottom {
    border-bottom: none !important;
  }
}

@media (max-width: 991.98px) {
  .project-slider-wrapper .swiper-slide > img {
    min-height: 110vw;
    object-fit: cover;
    object-position: center;
  }
}
@media (max-width: 768.98px) {
  .project-slider-wrapper .swiper-slide > img {
    min-height: 125vw;
  }
}

.project-thumb {
  position: relative;
  margin-top: 0 !important;
  margin-bottom: 1em;
}
.project-thumb img {
  height: 100%;
  width: 100%;
}
.project-thumb::before {
  content: "View More";
  display: block;
  font-size: 20px;
  text-transform: uppercase;
  color: white;
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: 0.3s ease-in-out all;
}
.project-thumb::after {
  content: "";
  color: white;
  font-size: 50px;
  display: block;
  background: #000;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  opacity: 0;
  transition: 0.3s ease-in-out all;
}
.project-thumb:hover::before {
  opacity: 1;
}
.project-thumb:hover::after {
  opacity: 0.4;
}

.ratio .project-thumb {
  position: absolute;
}

.glass-box {
  position: absolute;
  top: 0;
  z-index: 7;
  backdrop-filter: blur(10px) brightness(0.5);
  width: 25%;
  height: 100%;
}
@media (max-width: 991.98px) {
  .glass-box {
    width: 50%;
  }
}
@media (max-width: 768.98px) {
  .glass-box {
    font-size: 2vw;
  }
  .glass-box h5 {
    font-size: 2em;
  }
}
.glass-box.one {
  right: 0;
}
@media (max-width: 991.98px) {
  .glass-box.one {
    right: 50%;
  }
}
.glass-box.two {
  right: 25%;
}
@media (max-width: 991.98px) {
  .glass-box.two {
    right: 0%;
  }
}
.glass-box.three {
  right: 50%;
}
@media (max-width: 991.98px) {
  .glass-box.three {
    right: 50;
  }
}
.glass-box.four {
  right: 75%;
}
@media (max-width: 991.98px) {
  .glass-box.four {
    right: 0%;
  }
}
.glass-box .logo-wrapper {
  position: relative;
  height: 45%;
}
.glass-box .logo-wrapper img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 75px;
  width: 70%;
  object-fit: contain;
  object-position: center;
  filter: brightness(0) invert(1);
}
.glass-box .title-wrapper {
  background: black;
  height: 55%;
  padding: var(--bs-gutter-x);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.glass-box .title-wrapper:hover {
  background: var(--accent);
}
.glass-box .title-wrapper::after {
  content: "";
  display: block;
  position: absolute;
  width: var(--arrow-icon-size);
  height: var(--arrow-icon-size);
  top: var(--bs-gutter-x);
  right: var(--bs-gutter-x);
  background-image: url(/../img/arrow-link-w.svg);
  background-size: contain;
}
.glass-box .title-wrapper.coming-soon {
  background: var(--accent);
  pointer-events: none;
}
.glass-box .title-wrapper.coming-soon::after {
  display: none;
}
.glass-box .title-wrapper h1 {
  margin-top: auto;
  font-size: 3em;
  text-transform: uppercase;
}

@media (max-width: 575.98px) {
  .company {
    font-size: 0.875em;
  }
}
.company .logo {
  height: 40px;
  max-width: 200px;
  object-fit: contain;
  object-position: left;
  width: auto;
  display: block;
  margin-bottom: 3em;
  filter: brightness(0) invert(1);
}
@media (max-width: 768.98px) {
  .company .logo {
    max-width: 90%;
    margin-bottom: 1em;
  }
}
.company a:hover {
  text-decoration: underline;
}

#contact {
  overflow: hidden;
}
#contact.show .overflow-hidden.container {
  max-height: 200vh;
}
@media (max-width: 768.98px) {
  #contact.show .overflow-hidden.container {
    max-height: 200vh;
  }
}
#contact.show .open-contact::after {
  background-image: url(/img/close.svg);
}
#contact.hide-button .open-contact {
  pointer-events: none;
}
#contact.hide-button .open-contact::after {
  display: none;
}
#contact .overflow-hidden.container {
  max-height: 0;
  transition: all 0.3s ease-in-out;
}
#contact .open-contact {
  position: relative;
}
#contact .open-contact::after {
  content: "";
  display: block;
  width: 1.75em;
  height: 100%;
  position: absolute;
  background-image: url(/img/arrow-down-w.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  right: 2em;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}

#gallery {
  --item-width: 18%;
  --active-item-width: 28%;
  --active-item-height-max: 560px;
}
@media (max-width: 1920px) {
  #gallery {
    --active-item-height-max: 30vw;
  }
}
@media (max-width: 1640.98px) {
  #gallery {
    --active-item-height-max: 27vw;
  }
}
@media (max-width: 991.98px) {
  #gallery {
    --item-width: 100%;
    --active-item-height-max: unset;
    margin-bottom: 0;
  }
}
#gallery .swiper {
  --swiper-theme-color: black;
}
#gallery .swiper .swiper-pagination-bullet {
  border-radius: 0;
}
#gallery .swiper .swiper-pagination {
  position: relative;
  transform: none;
  top: 0;
  left: unset;
  text-align: left;
}
#gallery .gallery-heading {
  display: flex;
}
#gallery .gallery-heading .item {
  width: var(--item-width);
  opacity: 0;
  transition: all 0.3s ease-in-out;
  height: 180px;
}
#gallery .gallery-heading .item h2 {
  width: 500px;
}
#gallery .gallery-heading .item.active {
  opacity: 1;
  width: var(--active-item-width);
  padding: 0 1em;
}
#gallery .gallery-image-wrapper {
  display: flex;
  align-items: flex-end;
  border-top: 1px solid var(--bs-border-color);
  height: var(--active-item-height-max);
  overflow: hidden;
}
#gallery .gallery-image-wrapper .gallery-image {
  width: var(--item-width);
  height: var(--active-item-height-max);
  position: relative;
  transition: all 0.3s ease-in-out;
  max-height: 60%;
}
@media (max-width: 991.98px) {
  #gallery .gallery-image-wrapper .gallery-image {
    max-height: 100%;
    height: 120vw;
  }
  #gallery .gallery-image-wrapper .gallery-image::after {
    opacity: 1 !important;
  }
}
#gallery .gallery-image-wrapper .gallery-image img {
  object-fit: cover;
  width: calc(100% - 2em);
  display: block;
  margin: auto;
  height: 100%;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 991.98px) {
  #gallery .gallery-image-wrapper .gallery-image img {
    width: 100%;
  }
}
#gallery .gallery-image-wrapper .gallery-image::after {
  content: "";
  display: block;
  position: absolute;
  width: var(--arrow-icon-size);
  height: var(--arrow-icon-size);
  top: 1em;
  right: 2em;
  background-image: url(/img/arrow-link.svg);
  background-size: cover;
  opacity: 0;
  transition: all 0.75s ease-in-out;
}
#gallery .gallery-image-wrapper .gallery-image.active {
  width: var(--active-item-width);
  max-height: 100%;
}
#gallery .gallery-image-wrapper .gallery-image.active::after {
  opacity: 1;
}

/* product page */
.hero.page {
  background: white;
  border-bottom: 1px solid var(--bs-border-color);
}
.hero h1 {
  margin-bottom: 1rem;
}
.hero h1 .large {
  font-size: 1.75em;
}
.hero .caption-wrapper > img {
  object-fit: cover;
  object-position: center;
}
@media (max-width: 1640.98px) {
  .hero .caption-wrapper > img {
    height: 35vw;
  }
}
@media (max-width: 991.98px) {
  .hero .caption-wrapper > img {
    height: 50vw;
  }
}
@media (max-width: 768.98px) {
  .hero .caption-wrapper > img {
    height: 125vw;
  }
}
.hero .caption {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 0;
  height: 100%;
  transform: translateX(-50%);
}
.hero .caption .bg {
  position: absolute;
  z-index: -1;
  height: 100%;
  width: 50%;
}
@media (max-width: 1640.98px) {
  .hero .caption .bg {
    width: 100%;
  }
}
.hero .caption .bg::after {
  content: "";
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75) !important;
}
@media (max-width: 1640.98px) {
  .hero .caption .bg::after {
    background: rgba(0, 0, 0, 0.35) !important;
  }
}
.hero .show-video {
  position: absolute;
  max-width: 455px;
  right: 0;
  display: block;
}
@media (max-width: 1640.98px) {
  .hero .show-video {
    position: relative;
    margin-left: auto;
    margin-bottom: -2em;
  }
}

.nav-scroll {
  color: #000;
  margin-right: 2em;
  text-transform: uppercase;
  font-family: var(--sp-font);
}

.project-page-slider .swiper-slide {
  display: flex;
  flex-direction: column;
}
.project-page-slider .swiper-slide img {
  width: 100%;
  margin-bottom: 0;
  object-fit: cover;
  object-position: center;
}
.project-page-slider .swiper-slide h1, .project-page-slider .swiper-slide h2, .project-page-slider .swiper-slide h3, .project-page-slider .swiper-slide h4, .project-page-slider .swiper-slide h5, .project-page-slider .swiper-slide h6 {
  margin-bottom: 0;
  text-transform: uppercase;
  margin-bottom: 0.5em;
}
.project-page-slider .swiper-slide .cat {
  font-weight: bold;
}
.project-page-slider .swiper-slide a {
  margin-top: 1em;
  font-size: 1em;
  color: black;
  text-decoration: underline;
  font-weight: 600;
  transition: letter-spacing 0.3s ease-in-out;
}
.project-page-slider .swiper-slide a:hover {
  letter-spacing: 0.1em;
}
.project-page-slider .hidden {
  position: absolute;
  left: -1000px;
  top: -1000px;
  display: block;
  height: 0;
  width: 0;
}

[data-project] {
  display: none;
}

.big-number {
  font-size: 20em;
  line-height: 1em;
  font-family: var(--sp-font);
}
@media (max-width: 1640.98px) {
  .big-number {
    font-size: 10em;
  }
}
@media (max-width: 768.98px) {
  .big-number {
    font-size: 60vw;
  }
}

#product {
  --padding: 2em;
}
@media (max-width: 991.98px) {
  #product {
    --padding: 3em;
  }
}
@media (max-width: 768.98px) {
  #product {
    --padding: 1.5rem;
  }
  #product h1.h6 {
    font-size: 5vw;
  }
}
#product .logo {
  max-width: 160px;
  filter: brightness(0) invert(1);
}
#product .files-slider-wrapper {
  --swiper-theme-color: white;
}
#product .files-slider-wrapper .swiper-pagination {
  position: relative;
  width: auto;
  left: unset;
  top: unset;
  bottom: unset;
  transform: none;
  display: flex;
  align-items: center;
}
@media (max-width: 768.98px) {
  #product .files-slider-wrapper .swiper-pagination {
    display: none;
  }
}
#product .files-slider-wrapper .button-prev,
#product .files-slider-wrapper .button-next {
  width: calc(var(--arrow-icon-size) / 3);
  height: calc(var(--arrow-icon-size) / 3);
  display: block;
}
#product .files-slider-wrapper .button-prev img,
#product .files-slider-wrapper .button-next img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#product .files-slider-wrapper .button-prev {
  margin-left: auto;
}
#product .files-slider-wrapper .swiper-pagination-bullet {
  border-radius: 0;
  background: var(--swiper-theme-color);
}
#product .files-slider-wrapper .files-slider {
  height: 100%;
}
@media (max-width: 768.98px) {
  #product .files-slider-wrapper .swiper-wrapper {
    display: flex;
    flex-direction: column;
    height: auto;
  }
  #product .files-slider-wrapper .item {
    border-bottom: 1px solid var(--bs-border-color);
  }
  #product .files-slider-wrapper .item h5 {
    margin-bottom: 0;
  }
}
#product .video-icon-mobile,
#product .item {
  padding: var(--padding);
  position: relative;
}
#product .video-icon-mobile .h1,
#product .item .h1 {
  font-size: 3.5em;
  line-height: 1em;
}
#product .video-icon-mobile .h3,
#product .item .h3 {
  font-size: 1.75em;
  line-height: var(--arrow-icon-size);
}
@media (max-width: 1640.98px) {
  #product .video-icon-mobile .h1,
  #product .item .h1 {
    font-size: 2.55em;
  }
  #product .video-icon-mobile .h3,
  #product .item .h3 {
    font-size: 1em;
  }
}
@media (max-width: 768.98px) {
  #product .video-icon-mobile .h1,
  #product .item .h1 {
    font-size: 1em;
  }
  #product .video-icon-mobile .h3,
  #product .item .h3 {
    min-height: 2rem;
    font-size: 0.75em;
    margin-bottom: 0;
  }
  #product .video-icon-mobile br,
  #product .item br {
    display: none;
  }
}
#product .video-icon-mobile::after,
#product .item::after {
  content: "";
  display: block;
  width: var(--arrow-icon-size);
  height: var(--arrow-icon-size);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center 0;
  position: absolute;
  right: var(--padding);
  top: var(--padding);
  z-index: 9;
  pointer-events: none;
}
#product .video-icon-mobile.file,
#product .item.file {
  border-right: 1px solid var(--bs-border-color);
}
#product .video-icon-mobile.file::after,
#product .item.file::after {
  background-image: url(/img/icon-pdf.svg);
}
@media (max-width: 991.98px) {
  #product .video-icon-mobile.video,
  #product .item.video {
    position: unset;
  }
}
#product .video-icon-mobile.video::after,
#product .item.video::after {
  display: none;
  background-image: url(/img/icon-video.svg);
}
@media (max-width: 991.98px) {
  #product .video-icon-mobile.video::after,
  #product .item.video::after {
    display: none;
  }
}
#product .video-icon-mobile a.file-link, #product .video-icon-mobile a.play-video,
#product .item a.file-link,
#product .item a.play-video {
  position: absolute;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  font-size: 0;
  color: transparent;
  background: #000;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
#product .video-icon-mobile a.file-link:hover, #product .video-icon-mobile a.play-video:hover,
#product .item a.file-link:hover,
#product .item a.play-video:hover {
  opacity: 0.5;
}
#product .video-icon-mobile::after {
  position: relative;
  display: none !important;
}
@media (max-width: 991.98px) {
  #product .video-icon-mobile::after {
    display: block !important;
    top: unset;
    right: 0;
  }
}
#product .has-bg {
  position: relative;
  overflow: hidden;
}
#product .has-bg .bg {
  position: absolute;
  left: 0;
  top: 0;
  padding: 0;
  height: 100%;
  width: 50%;
}
#product .has-bg .bg.video {
  display: block;
}
#product .has-bg .bg.video:after {
  content: "";
  display: block;
  width: var(--arrow-icon-size);
  height: var(--arrow-icon-size);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center 0;
  position: absolute;
  right: var(--padding);
  bottom: var(--padding);
  z-index: 9;
  pointer-events: none;
  background-image: url(/img/icon-video.svg);
}
@media (max-width: 991.98px) {
  #product .has-bg .bg.video:after {
    display: none;
  }
}
#product .has-bg .bg img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 991.98px) {
  #product .has-bg .bg {
    position: relative;
    width: 100vw;
  }
}

/* product page end*/
/**
 *
 * Testimonial
 *
 */
#testimonials a.item {
  display: block;
}
#testimonials .swiper {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#testimonials .swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#testimonials .row {
  min-height: 600px;
}
@media (max-width: 991.98px) {
  #testimonials .row {
    min-height: unset;
  }
}
#testimonials .content-wrapper::after {
  content: "";
  display: block;
  padding-bottom: 120%;
}
@media (max-width: 991.98px) {
  #testimonials .content-wrapper::after {
    padding-bottom: 80%;
  }
}
@media (max-width: 768.98px) {
  #testimonials .content-wrapper::after {
    padding-bottom: 70vw;
  }
}
@media (max-width: 575.98px) {
  #testimonials .content-wrapper::after {
    padding-bottom: 100vw;
  }
}
#testimonials .testimonials-item {
  --height: 3rem;
  width: 100%;
  padding-bottom: 0;
  position: absolute;
  opacity: 0;
  display: flex;
  flex-direction: column;
  transition: all 0.5s ease-in-out;
  transition-delay: 0.3s;
  pointer-events: none;
  height: 100%;
}
#testimonials .testimonials-item.active {
  opacity: 1;
  pointer-events: all;
}
#testimonials .testimonials-item h1 {
  margin-bottom: 0.5em;
}
#testimonials .testimonials-item h6 {
  margin-bottom: 0;
}
#testimonials .signature {
  max-width: 250px;
}
#testimonials .arrow-wrapper .button-next, #testimonials .arrow-wrapper .button-prev {
  width: var(--height);
  height: var(--height);
}
#testimonials .thumb {
  text-transform: uppercase;
}
#testimonials .thumb img {
  transition: all 0.3s ease-in-out;
  margin-bottom: 1em;
}
#testimonials .thumb.active img {
  opacity: 0.5;
}
#testimonials .file {
  margin-top: auto;
  color: white;
  text-decoration: underline;
  display: block;
  width: calc(100% - var(--height) * 2);
  padding-right: 4rem;
  font-size: 1em;
  position: relative;
  height: var(--height);
}
#testimonials .file span {
  position: absolute;
  bottom: 0.25em;
  width: 50%;
}
#testimonials .file::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: calc(var(--height) * 0.25);
  width: calc(var(--height) * 0.5);
  height: calc(var(--height) * 0.5);
  transform: translateY(-50%);
  background-image: url(/img/icon-pdf-o.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
#testimonials .file::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: var(--height);
  height: var(--height);
  background: white;
  opacity: 0.3;
}
#testimonials .arrow-wrapper {
  position: absolute;
  z-index: 9;
  bottom: 0;
  right: 0;
}

.cta a,
.company-link {
  display: flex;
  min-height: 600px;
  height: 100%;
  color: white;
  width: 100%;
  padding: 2em;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1640.98px) {
  .cta a,
  .company-link {
    min-height: unset;
  }
}
@media (max-width: 768.98px) {
  .cta a,
  .company-link {
    min-height: 50vw;
  }
}
.cta a.no-link::after,
.company-link.no-link::after {
  display: none;
}
.cta a > img,
.company-link > img {
  height: 70px;
  width: 320px;
  object-fit: contain;
  object-position: left;
  transition: all 0.3s ease-in-out;
}
.cta a:hover,
.company-link:hover {
  background: var(--accent);
}
.cta a:hover > img,
.company-link:hover > img {
  filter: brightness(0) invert(1);
}
.cta a h6,
.company-link h6 {
  font-weight: 400;
}
.cta a::after,
.company-link::after {
  position: absolute;
  top: 2em;
  right: 2em;
  content: "";
  display: block;
  width: 2em;
  height: 2em;
  background-image: url(/img/arrow-link-w.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

#values .row {
  min-height: 600px;
  background-size: cover;
  background-position: center;
}
@media (max-width: 1640.98px) {
  #values .row {
    min-height: 50vw;
  }
}
@media (max-width: 991.98px) {
  #values .row {
    min-height: 70vw;
  }
}

.rewards .slider-sel {
  opacity: 0.5;
  transition: all 0.3s ease-in-out;
  font-weight: 500;
}
.rewards .slider-sel.active {
  opacity: 1;
}
.rewards .button-next {
  position: absolute;
  z-index: 9;
  top: 2em;
  right: 2em;
}

.slider-sel.has-img img {
  transition: all 0.3s ease-in-out;
}
.slider-sel.has-img.active img {
  opacity: 0.5;
}

.gallery .item img {
  object-fit: cover;
}
.gallery a.view {
  text-decoration: underline;
}

@media (max-width: 1640.98px) {
  #news img.bg {
    height: 56.25vw;
    object-fit: cover;
  }
}
@media (max-width: 991.98px) {
  #news img.bg {
    height: 125vw;
  }
}
#news .blur-logo {
  position: relative;
  padding: 2em;
  width: 100%;
}
@media (max-width: 991.98px) {
  #news .blur-logo {
    margin-top: auto;
  }
}
#news .blur-logo .square {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 30%;
  z-index: -1;
  backdrop-filter: blur(10px) brightness(0.75);
}
#news .blur-logo .square::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
#news .blur-logo .words {
  display: block;
  width: 100%;
  padding-top: 8%;
}

.flipbook {
  min-height: 1200px;
}
@media (max-width: 768.98px) {
  .flipbook {
    min-height: 100vw;
  }
}
@media (max-width: 575.98px) {
  .flipbook {
    min-height: 100vw;
  }
}

#one {
  position: relative;
  z-index: 1;
}
#one [data-scroll] {
  transition: none;
  opacity: 1;
}

#two {
  position: relative;
  z-index: 2;
}
#two [data-scroll] {
  transition: none;
  opacity: 1;
}

#three {
  position: relative;
  z-index: 3;
}
#three [data-scroll] {
  transition: none;
  opacity: 1;
}

#four {
  position: relative;
  z-index: 4;
}
#four [data-scroll] {
  transition: none;
  opacity: 1;
}

#five {
  position: relative;
  z-index: 5;
}
#five [data-scroll] {
  transition: none;
  opacity: 1;
}

.resizing {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: white;
  display: block;
  top: 0;
  left: 0;
  flex-direction: column;
  display: none;
  align-items: center;
  justify-content: center;
}
.resizing img {
  position: absolute;
  max-width: 200px;
  filter: brightness(0);
  bottom: 20px;
}
.resizing.show {
  display: flex;
}
.resizing h1 {
  color: black;
  text-transform: uppercase;
  font-family: var(--sp-font);
  font-size: 0.875em;
  letter-spacing: 0.3em;
}

.fancybox__content {
  padding: 0;
}

.reveal {
  opacity: 0;
  transition: opacity 2s ease-in-out;
  transition-delay: 700;
}
.reveal.active {
  opacity: 1;
}

.split-line {
  font-size: 3.5em;
  line-height: 1.2em;
}
@media (max-width: 991.98px) {
  .split-line {
    font-size: 3.5vw;
  }
}
@media (max-width: 768.98px) {
  .split-line {
    font-size: 6vw;
  }
}

[data-aos=reveal-line] {
  opacity: 0.08;
  transition-property: transform, opacity;
}
[data-aos=reveal-line].aos-animate {
  opacity: 1;
}

footer {
  width: 100%;
  font-size: 14px;
  position: relative;
  background: white;
  border-top: 1px solid var(--bs-border-color);
}
footer .logo {
  width: 100%;
}
footer .logo.sickkids {
  width: 30vw;
  max-width: 130px;
}
footer .logo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: top center;
}
footer .logo-wrapper {
  max-height: 390px;
  height: 10.3125vw;
}
@media (max-width: 991.98px) {
  footer .logo-wrapper {
    height: 30vw;
  }
}
footer .logo-wrapper .logo {
  width: 50vw;
  max-width: 334px;
}
footer .container .row {
  z-index: 99;
}
footer p {
  font-weight: normal;
}
footer a {
  font-weight: normal;
  letter-spacing: normal;
  color: black;
  text-transform: inherit;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline !important;
}
footer a.map {
  display: inline-block;
  position: relative;
}
footer a.map::after {
  content: "";
  position: absolute;
  display: block;
  bottom: 0.35em;
  width: 100%;
  height: 1px;
  background: #000;
}
@media (max-width: 991.98px) {
  footer .p-logo {
    width: 30%;
    margin: 0 10px;
    text-align: center;
  }
}
@media (max-width: 575.98px) {
  footer .p-logo {
    width: 45%;
    margin: 0;
    text-align: center;
  }
}
footer h6 {
  font-size: 1em;
  font-weight: 500;
}
footer .copyright {
  text-transform: initial;
  font-weight: 300;
  font-size: 1em;
}
@media (max-width: 768.98px) {
  footer .copyright {
    font-size: 0.75em;
  }
}
footer .copyright a {
  font-weight: inherit;
}
footer .social-wrapper a {
  display: block;
  width: 1.5em;
  height: 1.5em;
  margin-right: 2em;
}
footer .social-wrapper a:last-of-type {
  margin-right: 0;
}
footer .social-wrapper a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
@media (max-width: 991.98px) {
  footer .social-wrapper {
    filter: invert(1);
    justify-content: center;
  }
}
footer .company-logo-wrapper .logos {
  width: 18%;
  height: 40px;
}
@media (max-width: 768.98px) {
  footer .company-logo-wrapper .logos {
    width: 60%;
    height: 60px;
    display: block;
  }
}
footer .company-logo-wrapper img {
  width: 100%;
  height: 100%;
}
@media (max-width: 991.98px) {
  footer .contact-form .form {
    border-left: 1px solid var(--bs-border-color);
    border-right: 1px solid var(--bs-border-color);
  }
}

/* FORM + INPUT STYLING*/
form {
  --col-missing: red;
}

input, textarea {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}

input[type=radio] {
  -webkit-appearance: inherit;
}

input[type=submit] {
  cursor: pointer;
}

div.field > label {
  display: none;
}

div.field.missing label {
  color: var(--col-missing) !important;
}

div.field.warning label {
  color: var(--col-warning) !important;
}

div.field.missing div.checkbox label {
  color: var(--col-missing) !important;
}

div.field.missing span.error-message {
  color: var(--col-missing);
  display: block;
  font-size: 11px;
  position: absolute;
  top: 12px;
  right: 20px;
}

div.field.warning span.warning-message {
  color: var(--col-warning);
  display: block;
  font-size: 11px;
  position: absolute;
  bottom: -12px;
  left: 10px;
}

form {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: var(--default-input-font-size);
  font-family: var(--default-input-font);
}

fieldset {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  margin-bottom: 16px;
}

div.form-col {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 16px;
  justify-content: space-between;
  align-items: flex-start;
}

div.form-row {
  display: flex;
  width: 100%;
  gap: 16px;
  margin-bottom: 16px;
}

div.form-row:last-child {
  margin-bottom: 0px;
}

div.form-row > div {
  width: 100%;
}

div.form-row.x_2_31 > div {
  width: 25%;
}

div.form-row.x_2_31 > div:first-child {
  width: 75%;
}

div.form-row.x_3_21 > div {
  width: 33.34%;
}

div.form-row.x_3_21 > div:first-child {
  width: 66.66%;
}

div.radios {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
}

div.radios > label {
  padding-right: 20px;
}

div.radio input[type=radio] {
  display: none;
}

div.radio label {
  display: block;
  position: relative;
  padding-left: 32px;
  padding-top: 2px;
  line-height: 1.25;
  min-height: 22px;
  width: auto;
  font-family: var(--default-input-font);
}

div.radio label:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  background-color: transparent;
  border: 1px solid var(--col-border);
  border-radius: 32px;
  box-sizing: border-box;
}

div.radio label:after {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background-color: transparent;
  border-radius: 16px;
  border: 0px solid var(--col-border);
  box-sizing: border-box;
}

div.radio input[type=radio]:checked + label:after {
  background-color: #ccc;
  border: 3px solid var(--col-border);
}

div.checkbox {
  display: block;
  text-align: left;
  position: relative;
  width: 100%;
}

div.checkbox input[type=checkbox] {
  display: none;
}

div.checkbox label {
  display: block;
  color: var(--col-input);
  font-family: inherit;
  text-align: left;
  position: relative;
  width: 100%;
  font-size: var(--default-input-font-size);
  padding-left: 31px;
  min-height: 20px;
  padding-top: 1px;
  line-height: 1.25;
  font-family: var(--default-input-font);
}

div.checkbox label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  border: 1px solid var(--col-border);
  background: transparent;
  display: block;
  width: 20px;
  height: 20px;
  box-sizing: border-box;
}

div.missing div.checkbox label:before {
  border-color: var(--col-error);
  -webkit-animation: pulse 0.5s 1;
  animation: pulse 0.5s 1;
}

div.checkbox input:checked + label:before {
  background: url(/lib/img/dark/checkmark.svg) no-repeat center center;
  background-size: 14px 12px;
  filter: brightness(0) invert(1);
}

div.file-upload input {
  display: none !important;
}

div.file-upload label {
  display: block !important;
  position: relative;
  padding-left: var(--dim-input-height);
  line-height: var(--dim-input-height);
  cursor: pointer;
}

div.file-upload label:after {
  content: "";
  display: block;
  position: absolute;
  width: calc(var(--dim-input-height) * 0.66);
  height: var(--dim-input-height);
  left: 0;
  top: 0;
  background: url(/lib/img/dark/paperclip.svg) no-repeat center center;
  background-size: contain;
}

div.input-file-list > div:empty {
  display: none;
}

div.input-file-list > div {
  margin-top: 20px;
}

div.input-file-list > div span {
  display: block;
  text-align: left;
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
  color: #000;
  padding-left: 24px;
  position: relative;
}

div.input-file-list > div span:before {
  content: "";
  display: block;
  width: 10px;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background: url(/lib/img/dark/x.svg) no-repeat left center;
  background-size: contain;
  cursor: pointer;
}

.select2-results__options::-webkit-scrollbar-track, form *::-webkit-scrollbar-track {
  background-color: rgba(var(--col-border-rgb), 0.2);
}

.select2-results__options::-webkit-scrollbar, form *::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.select2-results__options::-webkit-scrollbar-thumb, form *::-webkit-scrollbar-thumb {
  background-color: rgba(var(--col-border-rgb), 1);
}

input[type=text], input[type=search], input[type=tel], input[type=number], input[type=email], input[type=password] {
  display: block;
  width: 100%;
  line-height: var(--dim-input-height);
  min-height: var(--dim-input-height);
  border-color: var(--col-border);
  border-width: 1px;
  border-style: solid;
  border-radius: 0px;
  padding: 0 10px;
  text-align: left;
  color: var(--col-input);
  font-family: var(--default-input-font);
  font-size: inherit;
  background-color: var(--col-input-bg);
}

input[type=search].highlighted, input[type=tel].highlighted, input[type=number].highlighted, input[type=text].highlighted, input[type=email].highlighted, input[type=password].highlighted {
  background-color: var(--col-missing);
}

input[type=search].missing, input[type=tel].missing, input[type=number].missing, input[type=text].missing, input[type=email].missing, input[type=password].missing {
  border-color: var(--col-missing);
}

select {
  display: block;
  width: 100%;
  line-height: var(--dim-input-height);
  min-height: var(--dim-input-height);
  border-color: var(--col-border);
  border-width: 1px;
  border-style: solid;
  padding: 10px;
  line-height: 1.5;
  text-align: left;
  color: var(--col-input);
  font-size: inherit;
}

textarea {
  display: block;
  width: 100%;
  border-width: 1px;
  border-style: solid;
  border-radius: 0px;
  border-color: var(--col-border);
  padding: 10px;
  line-height: 1.5;
  text-align: left;
  font-size: inherit;
}

button[type=submit], button[type=button] {
  display: table;
  width: auto;
  line-height: var(--dim-input-height);
  border: 0px;
  padding: 0 40px;
  text-align: center;
  background-color: var(--col-button-bg);
  color: var(--col-button);
  font-size: var(--default-input-font-size);
  cursor: pointer;
  position: relative;
}

button[type=submit]:hover, button[type=button]:hover {
  background-color: var(--col-accent);
}

div.reveal-response {
  text-align: center;
}

div.reveal-response p {
  font-size: 18px;
}

.js-postal-code {
  text-transform: uppercase;
}

form.validation-in-progress button[type=submit], form.submit-in-progress button[type=submit] {
  color: #000;
  position: relative;
}

form.validation-in-progress button[type=submit]:after {
  position: absolute;
  width: 100%;
  height: 100%;
  min-height: 40px;
  top: 0;
  left: 0;
  font-size: 0 !important;
  content: "";
  display: block;
  background: url(/lib/img/white/spin2.gif) transparent no-repeat center center;
  background-size: 80px 10px;
}

form.submit-in-progress button[type=submit]:after {
  position: absolute;
  width: 100%;
  height: 100%;
  min-height: 40px;
  font-size: 0 !important;
  content: "";
  display: block;
  background: url(/lib/img/white/spin2.gif) var(--col-button) no-repeat center center !important;
  background-size: 34px 34px !important;
  top: 0;
  left: 0;
}

button.submit-in-progress, a.submit-in-progress {
  background: url(/lib/img/white/spin2.gif) var(--col-button) no-repeat center center !important;
  background-size: 34px 34px !important;
  font-size: 0 !important;
  transition: none;
}

.select2-container--default {
  box-sizing: border-box;
  width: 100% !important;
}

.select2-container--default .select2-selection--single {
  border-radius: 0;
  border-color: var(--col-border);
  border: none;
  border-bottom: 1px solid var(--col-border);
}

.select2-container .select2-selection--single {
  height: auto;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: inherit;
  font-size: inherit;
  line-height: var(--dim-input-height);
  padding-left: 10px;
  padding-right: var(--dim-input-height);
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  width: var(--dim-input-height);
  height: 100%;
  right: 0;
  top: 0;
  background: url(/lib/img/dark/arrow-down.svg) no-repeat center center;
  background-size: 21px 12px;
  transform: rotate(0deg);
  transition: all 0.1s ease-out;
}

.select2-container--default .select2-selection--single .select2-selection__arrow:hover {
  background-size: 27px 17px;
}

.select2-container--open .select2-selection--single .select2-selection__arrow {
  transform: rotate(180deg);
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.select2-selection__rendered {
  color: var(--col-input);
}

.select2-results__option {
  font-size: var(--default-input-font-size);
}

div.inline-response {
  height: 0;
  overflow: hidden;
  opacity: 0;
  margin: 0;
  padding: 0;
}

form.form-done {
  display: none !important;
}

div.reveal-response {
  margin: 0 auto;
  height: auto;
  opacity: 1;
  transition: opacity 0.5s;
}

div.grecaptcha-badge {
  right: -1600px !important;
}

.js-hidden-option {
  display: none !important;
}

.js-hidden-option.revealed {
  display: block !important;
}

/* PLACEHOLDERS */
*::-webkit-input-placeholder {
  line-height: var(--dim-input-height);
  color: var(--col-placeholder);
  font-size: var(--default-input-font-size);
  font-family: var(--default-input-font);
}

*::-moz-placeholder {
  line-height: var(--dim-input-height);
  color: var(--col-placeholder);
  font-size: var(--default-input-font-size);
  font-family: var(--default-input-font);
}

*:-ms-input-placeholder {
  line-height: var(--dim-input-height);
  color: var(--col-placeholder);
  font-size: var(--default-input-font-size);
  font-family: var(--default-input-font);
}

textarea::-webkit-input-placeholder {
  padding-top: 0px;
  line-height: 1.5;
}

textarea::-moz-placeholder {
  padding-top: 0px;
  line-height: 1.5;
}

textarea:-ms-input-placeholder {
  padding-top: 0px;
  line-height: 1.5;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: var(--col-text);
}

div.field.missing *::-webkit-input-placeholder {
  color: var(--col-missing) !important;
}

div.field.missing *::-moz-placeholder {
  color: var(--col-missing) !important;
}

div.field.missing *:-ms-input-placeholder {
  color: var(--col-missing) !important;
}

div.field.warning *::-webkit-input-placeholder {
  color: var(--col-warning) !important;
}

div.field.warning *::-moz-placeholder {
  color: var(--col-warning) !important;
}

div.field.warning *:-ms-input-placeholder {
  color: var(--col-warning) !important;
}

form {
  --c-text-color: black;
  --col-border: #959595;
}
form.form-done {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}
form legend {
  font-family: var(--body-font);
  color: black;
  margin-bottom: 0;
  padding-left: 0.5em;
}
@media (max-width: 768.98px) {
  form {
    font-size: 16px;
  }
}

.radio-wrapper {
  font-size: 1em;
  display: flex;
  font-weight: normal;
  line-height: 60px;
  margin-bottom: 15px;
}
.radio-wrapper .control {
  display: block;
  position: relative;
  padding-left: 3%;
  margin-bottom: 0;
  margin-left: 3%;
  cursor: pointer;
  font-size: 1em;
}
@media (max-width: 575.98px) {
  .radio-wrapper .control {
    margin-left: 10px;
  }
}
.radio-wrapper .control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
@media (max-width: 575.98px) {
  .radio-wrapper .control input {
    width: 80vw;
  }
}
.radio-wrapper .control__indicator {
  position: absolute;
  left: 0;
  top: 20px;
  height: 20px;
  width: 20px;
  background: transparent;
  border: 1px solid black;
  border-color: transparent;
}
.radio-wrapper .control--radio .control__indicator {
  border-radius: 50%;
}
.radio-wrapper .control input:checked ~ .control__indicator {
  border-color: black;
}
.radio-wrapper .control input:disabled ~ .control__indicator {
  background: #e6e6e6;
  opacity: 0.6;
  pointer-events: none;
}
.radio-wrapper .control .control__indicator:after {
  content: "";
  position: absolute;
}
.radio-wrapper .control .control__indicator:after {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 10px;
  width: 10px;
  border-radius: 50%;
}
.radio-wrapper .control input:disabled ~ .control__indicator:after {
  background: #7b7b7b;
}

.radio-wrapper .control__indicator {
  border-radius: 0 !important;
  width: 2.5em;
  height: 2.5em;
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
}
.radio-wrapper .control {
  display: flex;
  padding-left: 0;
  width: 3em;
}
.radio-wrapper .control input + span {
  position: absolute;
  z-index: 9;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.radio-wrapper .control input:checked ~ .control__indicator:after {
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.inline-response {
  color: black;
  font-size: 1em;
  line-height: 1.5em;
  text-align: center;
  min-height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  display: none;
  transition: all 0.3 ease-in-out;
  flex-direction: column;
  top: 0;
  left: 0;
  z-index: 1998;
}
.inline-response h1 {
  font-size: 1.5em;
}
.inline-response h3 {
  font-size: 1.25em;
}
.inline-response .close {
  width: 20px;
  height: 20px;
  top: 17px;
  right: 10px;
}
.inline-response .close span {
  width: 20px;
  height: 2px;
  background: white;
  display: block;
  position: absolute;
}
.inline-response .close span:nth-of-type(1) {
  transform: rotate(45deg);
}
.inline-response .close span:nth-of-type(2) {
  transform: rotate(-45deg);
}
.inline-response .popup-wrapper {
  z-index: 2000;
  border: 10px solid white;
}
@media (max-width: 575.98px) {
  .inline-response .popup-wrapper {
    width: 100%;
  }
}
.inline-response img {
  width: 350px;
}
@media (max-width: 575.98px) {
  .inline-response img {
    width: 100%;
  }
}
.inline-response.reveal-response {
  visibility: visible;
  opacity: 1;
  display: flex;
}

.consent {
  font-weight: 300;
  font-family: var(--body-font);
  font-size: 1em;
  color: black;
}

.consent-wrapper {
  margin-top: 1em;
  max-width: 500px;
  height: 2.2em;
}

.g-recaptcha {
  position: relative;
}
.g-recaptcha:after {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0;
  right: 1px;
  width: 100%;
  height: 99%;
  border-radius: 3px;
  border: 1px solid transparent;
}
.g-recaptcha.error:after {
  border-color: red;
}

.error {
  border-color: red !important;
}
.error::placeholder {
  color: red !important;
}

legend {
  font-size: 1em;
  line-height: 55px;
}
@media (max-width: 575.98px) {
  legend {
    font-size: 0.8em;
  }
}

input:not([type=checkbox]):not([type=radio]),
textarea {
  font-family: var(--sp-font);
  text-transform: inherit;
  background: transparent;
  letter-spacing: normal;
  appearance: none;
  border: none;
  border-bottom: 1px solid #959595;
  border-radius: 0;
  display: block;
  font-weight: bold;
  width: 100%;
  font-size: 1em;
  text-transform: initial;
  text-align: left;
  line-height: 2em;
  height: 2em;
  padding: 0 0.75em;
  margin-bottom: 1em;
  text-transform: inherit;
  color: inherit;
}
@media (max-width: 575.98px) {
  input:not([type=checkbox]):not([type=radio]),
  textarea {
    line-height: 2.75em;
    height: 2.75em;
    margin-bottom: 0.5em;
  }
}
input:not([type=checkbox]):not([type=radio])::placeholder,
textarea::placeholder {
  color: inherit;
  text-transform: uppercase;
  opacity: 1;
}

.radio-custom-label {
  display: inline-flex;
  align-items: center;
  margin: 5px;
  cursor: pointer;
  position: relative;
}

.radio-custom {
  opacity: 0;
  position: absolute;
  display: inline-block;
  vertical-align: middle;
  margin: 5px;
  cursor: pointer;
}
.radio-custom + .radio-custom-label:before {
  content: "";
  background: #fff;
  border: 1px solid #707070;
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  padding: 2px;
  margin-right: 10px;
  text-align: center;
  border-radius: 50%;
}
.radio-custom:checked + .radio-custom-label:before {
  background: var(--primary-color);
  box-shadow: inset 0px 0px 0px 2px #fff;
}
.radio-custom:focus + .radio-custom-label {
  outline: none;
}

textarea {
  padding-top: 10px;
  height: auto;
  font-weight: 300;
}

.checkbox-wrapper {
  font-size: 1.5em;
}
@media (max-width: 768.98px) {
  .checkbox-wrapper {
    font-size: 1em;
  }
}
.checkbox-wrapper.error label:before {
  border: 2px solid red !important;
  background: white;
}
.checkbox-wrapper.error label {
  color: red;
}
.checkbox-wrapper input {
  -webkit-appearance: none;
  background-color: #fff;
  border: 1px solid #221f1f;
  height: 20px;
  width: 20px;
  display: block;
  float: left;
  margin-right: 20px;
}
.checkbox-wrapper label {
  display: inline;
  padding: 0;
  font-size: 0.75em;
  line-height: 1.25rem;
  letter-spacing: 0;
}
@media (max-width: 575.98px) {
  .checkbox-wrapper label {
    font-size: 0.875em;
  }
}
.checkbox-wrapper [type=checkbox]:not(:checked), .checkbox-wrapper [type=checkbox]:checked {
  position: absolute;
  left: -9999px;
}
.checkbox-wrapper [type=checkbox]:not(:checked) + label, .checkbox-wrapper [type=checkbox]:checked + label {
  position: relative;
  padding-left: 50px;
  display: block;
  text-transform: inherit;
}
.checkbox-wrapper [type=checkbox]:not(:checked) + label:before, .checkbox-wrapper [type=checkbox]:checked + label:before {
  content: "";
  position: absolute;
  left: 0;
  background-color: none;
  border: 1px solid black;
  height: 20px;
  width: 20px;
  display: block;
  float: left;
  margin-right: 20px;
}
.checkbox-wrapper [type=checkbox]:not(:checked) + label:after, .checkbox-wrapper [type=checkbox]:checked + label:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.2s;
  background: url(/img/asset/checkmark.svg) no-repeat;
  background-position: center center;
  background-size: 70%;
  width: 1.5em;
  height: 1.5em;
}
.checkbox-wrapper [type=checkbox]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
.checkbox-wrapper [type=checkbox]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
.checkbox-wrapper [type=checkbox]:disabled:not(:checked) + label:before {
  box-shadow: none;
  border-color: black;
  background-color: #ddd;
}
.checkbox-wrapper [type=checkbox]:disabled:checked + label:before {
  box-shadow: none;
  border-color: #bbb;
  background-color: #ddd;
}
.checkbox-wrapper [type=checkbox]:disabled:checked + label:after {
  color: #999;
}
.checkbox-wrapper [type=checkbox]:disabled + label {
  color: #aaa;
}
.checkbox-wrapper [type=checkbox]:checked:focus + label:before, .checkbox-wrapper [type=checkbox]:not(:checked):focus + label:before {
  border: 1px solid black;
}
.checkbox-wrapper label:hover:before {
  border: 1px solid black !important;
}

.checkbox-wrapper.error label:before {
  border: 1px solid red !important;
}
.checkbox-wrapper.error label {
  color: red;
}
.checkbox-wrapper input {
  -webkit-appearance: none;
  background-color: #fff;
  border: 1px solid black;
  height: 20px;
  width: 20px;
  display: block;
  float: left;
  margin-right: 20px;
}
.checkbox-wrapper label {
  display: inline;
  padding: 0;
  font-size: 0.875rem;
  line-height: 1.25rem;
  letter-spacing: 0;
}
@media (max-width: 575.98px) {
  .checkbox-wrapper label {
    font-size: 0.875em;
  }
}
.checkbox-wrapper [type=checkbox]:not(:checked), .checkbox-wrapper [type=checkbox]:checked {
  position: absolute;
  left: -9999px;
}
.checkbox-wrapper [type=checkbox]:not(:checked) + label, .checkbox-wrapper [type=checkbox]:checked + label {
  position: relative;
  padding-left: 30px;
  display: block;
}
.checkbox-wrapper [type=checkbox]:not(:checked) + label:before, .checkbox-wrapper [type=checkbox]:checked + label:before {
  content: "";
  position: absolute;
  left: 0;
  background-color: none;
  border: 1px solid black !important;
  height: 1.5em;
  width: 1.5em;
  display: block;
  float: left;
  margin-right: 1em;
}
.checkbox-wrapper [type=checkbox]:not(:checked) + label:after, .checkbox-wrapper [type=checkbox]:checked + label:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.2s;
  background: url(/img/asset/checkmark.svg) no-repeat;
  background-position: center center;
  background-size: 70%;
  width: 1.5em;
  height: 1.5em;
}
.checkbox-wrapper [type=checkbox]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
.checkbox-wrapper [type=checkbox]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
.checkbox-wrapper [type=checkbox]:disabled:not(:checked) + label:before {
  box-shadow: none;
  border-color: #bbb;
  background-color: #ddd;
}
.checkbox-wrapper [type=checkbox]:disabled:checked + label:before {
  box-shadow: none;
  border-color: #bbb;
  background-color: #ddd;
}
.checkbox-wrapper [type=checkbox]:disabled:checked + label:after {
  color: #999;
}
.checkbox-wrapper [type=checkbox]:disabled + label {
  color: #aaa;
}
.checkbox-wrapper [type=checkbox]:checked:focus + label:before, .checkbox-wrapper [type=checkbox]:not(:checked):focus + label:before {
  border: 1px solid rgba(17, 34, 51, 0.2666666667);
}
.checkbox-wrapper label:hover:before {
  border: 1px solid #white !important;
}

.broker-wrapper {
  opacity: 0;
  height: 0;
  max-height: 0px;
  overflow: hidden;
  transition: all 0.3 ease-in-out;
}
.broker-wrapper.show {
  max-height: 1000px;
  height: auto;
  opacity: 1;
  transition: all 0.3 ease-in-out;
}

div.checkbox {
  width: auto;
}

form button[type=submit], form button[type=button] {
  background: transparent;
  text-transform: capitalize;
  color: black;
  cursor: pointer;
  font-weight: 600;
  font-family: var(--body-font);
  letter-spacing: 0.2em;
  font-size: 1em;
  padding: 0 2em;
  height: 3em;
  line-height: 2.75em;
  display: block;
  margin: 0;
  transition: background 0.3s ease-in-out;
  outline: none !important;
  color: white;
  font-size: 0;
  width: var(--arrow-icon-size);
  height: var(--arrow-icon-size);
  position: relative;
  display: block;
}
form button[type=submit]::after, form button[type=button]::after {
  position: relative;
  left: 0;
  top: 0;
  content: "";
  background-image: url(/img/arrow-next.svg);
  background-size: contain;
  display: block;
  width: 100%;
  height: 100%;
  filter: invert(1);
}
form button[type=submit]:hover, form button[type=button]:hover {
  opacity: 0.3;
  transition: all 0.3s ease-in-out;
}

form {
  width: 100%;
}

.form-row {
  width: 100%;
}
.form-row label {
  font-size: 0px;
  position: absolute;
  margin-left: -1000px;
}
.form-row .checkbox label {
  font-size: inherit;
  position: relative;
  margin-left: unset;
  font-family: var(--sp-font);
}
@media (max-width: 768.98px) {
  .form-row .checkbox label {
    font-size: 0.75em;
  }
}

@media (max-width: 768.98px) {
  .form-row {
    flex-wrap: wrap;
  }
}

input::placeholder {
  overflow: visible;
}

div.field.warning {
  position: relative;
  --col-warning: red;
}

textarea:focus, input:focus {
  outline: none;
}

.select2-container {
  height: 2em;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder,
.select2-container--default .select2-selection--single .select2-selection__rendered {
  font-family: var(--sp-font);
  font-weight: bold;
  text-transform: uppercase;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  width: 1em;
  right: 1em;
}

div.form-row {
  position: relative;
}

.missing .select2-container--default .select2-selection--single .select2-selection__placeholder,
.missing .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--col-missing);
}

div.field.missing span.error-message {
  top: 0;
  right: 3em;
}

.select2-container--default .select2-selection--single {
  background: transparent;
}

.select2-container--default {
  border-bottom: 1px solid var(--col-border);
}

.select2-container--default .select2-selection--single {
  border-bottom: none;
}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  /* IE10+ specific styles go here */
}
[data-scroll]:not(h1) {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.75s ease-in-out;
}

[data-scroll].is-inview {
  opacity: 1;
  transform: translateY(0px);
}

/*# sourceMappingURL=main.css.map */
