/* quicksand-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/quicksand-v37-latin-300.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* quicksand-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/quicksand-v37-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* quicksand-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/quicksand-v37-latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  font-family: sans-serif;
}

img,
video,
canvas,
svg {
  display: block;
}

img, video {
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

:root {
  --color-text: #1E1E1E;
  --color-text-light: #565656;
  --color-white: #FFFFFF;
  --color-orange: #FF4628;
  --color-grey: #E1E1DF;
  --color-green: #84DCCF;
  --color-purple: #D5B7FF;
  --fs-h1: clamp(40px, calc(28.8px + 2.6666666667vw), 80px);
  --fs-subtitle: clamp(20px, calc(17.76px + 0.5333333333vw), 28px);
  --fs-description: clamp(16px, calc(12.64px + 0.8vw), 28px);
  --fs-info: clamp(16px, calc(13.76px + 0.5333333333vw), 24px);
  --fs-small: clamp(16px, calc(14.88px + 0.2666666667vw), 20px);
  --spacing-left: clamp(30px, calc(2px + 6.6666666667vw), 130px);
  --spacing-right: clamp(30px, calc(18.8px + 2.6666666667vw), 70px);
  --info-padding: clamp(8px, calc(5.76px + 0.5333333333vw), 16px) clamp(25px, calc(18px + 1.6666666667vw), 50px);
  --partner-logo-height: clamp(40px, calc(14.8px + 6vw), 130px);
}

body {
  min-height: 100vh;
  position: relative;
}

#scene {
  pointer-events: unset !important;
  overflow-x: hidden;
  overflow-y: hidden;
  position: absolute !important;
  width: 100%;
  min-height: 100%;
  left: 0;
  top: 0;
}

.background-grid {
  --size-grid: clamp(120px, calc(69.6px + 12vw), 300px);
  --color-grid-line: var(--color-grey);
  width: 120%;
  height: 120%;
  left: -10% !important;
  top: -10% !important;
  position: absolute !important;
  background: linear-gradient(90deg, var(--color-grid-line) 1px, transparent 1px var(--size-grid)) calc(var(--size-grid) * 0.36) 50%/var(--size-grid) var(--size-grid), linear-gradient(var(--color-grid-line) 1px, transparent 1px var(--size-grid)) 0% calc(var(--size-grid) * 0.32)/var(--size-grid) var(--size-grid);
  background-position: center center;
  z-index: -1;
}

.contents {
  display: grid !important;
  grid-template-rows: 1fr auto 1fr;
  gap: 50px 30px;
  position: relative;
  min-height: 100vh;
  width: 100%;
  padding-right: var(--spacing-right);
  text-wrap: balance;
  z-index: 1;
}
@media (max-width: 1300px) {
  .contents {
    padding-bottom: 200px;
  }
}
@media (max-width: 900px) {
  .contents {
    grid-template-rows: repeat(3, auto);
    text-align: center;
  }
}

header {
  padding-left: var(--spacing-left);
  padding-top: 70px;
  min-height: clamp(150px, calc(127.6px + 5.3333333333vw), 230px);
}
@media (max-width: 900px) {
  header {
    min-height: 100px;
  }
}

main {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  padding-left: var(--spacing-left);
}
@media (max-width: 900px) {
  main {
    flex-direction: column;
    text-align: center;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
@media (max-width: 900px) {
  .hero-content {
    align-items: center;
    flex-grow: 1;
    order: 2;
  }
}

h1 {
  font-family: "Quicksand", sans-serif;
  font-size: var(--fs-h1);
  font-weight: 300;
  color: var(--color-text);
}

.subtitle {
  font-family: "Quicksand", sans-serif;
  font-size: var(--fs-subtitle);
  font-weight: 600;
  color: var(--color-orange);
}

.description {
  font-family: "Quicksand", sans-serif;
  font-size: var(--fs-description);
  font-weight: 300;
  color: var(--color-text-light);
  margin-top: 15px;
}

.info {
  font-family: "Quicksand", sans-serif;
  font-size: var(--fs-info);
  font-weight: 300;
  color: var(--color-white);
  background: var(--color-orange);
  padding: var(--info-padding);
  display: inline-block;
  border-radius: 30px;
  margin-top: 25px;
  cursor: default;
}

.hero-logo {
  flex-basis: 250px;
  flex-grow: 1;
}
.hero-logo img {
  max-width: min(100%, 460px);
  height: auto;
  margin: auto;
}
@media (max-width: 900px) {
  .hero-logo {
    flex-basis: auto;
  }
}

footer {
  padding-left: var(--spacing-left);
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  min-height: 250px;
}
@media (max-width: 900px) {
  footer {
    align-items: center;
  }
}
footer .partner_logos {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, auto);
  align-items: center;
  gap: 30px;
}
footer .partner_logos img {
  height: auto;
  max-height: 100px;
  margin: auto;
}
@media (max-width: 1300px) {
  footer .partner_logos {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 384px) {
  footer .partner_logos {
    grid-template-columns: 1fr;
  }
}

.contentinfo {
  font-family: "Quicksand", sans-serif;
  font-size: var(--fs-small);
  font-weight: 300;
  color: var(--color-text-light);
}

.legal {
  position: absolute;
  bottom: 10px;
  left: var(--spacing-left);
  width: calc(100% - var(--spacing-left) - var(--spacing-right));
  font-family: "Quicksand", sans-serif;
  font-size: calc(var(--fs-small) * 0.9);
  font-weight: 300;
  color: var(--color-text-light);
  z-index: 2;
}
.legal a {
  color: var(--color-text-light);
  text-decoration: none;
}
.legal a:hover {
  text-decoration: underline;
}
@media (max-width: 900px) {
  .legal {
    text-align: center;
  }
}

.bubbles {
  position: absolute;
  width: clamp(350px, calc(238px + 26.6666666667vw), 750px);
  height: clamp(170px, calc(133.6px + 8.6666666667vw), 300px);
  overflow: visible;
}
.bubbles--top-left {
  top: 0;
  left: 0;
}
.bubbles--top-left .bubble:nth-child(1) {
  left: 8.9% !important;
  top: 26.7% !important;
  fill: var(--color-orange);
  animation: bubble-float-a 7s ease-in-out infinite;
}
.bubbles--top-left .bubble:nth-child(1) .bubble-inner {
  transform: scale(1.05) rotate(23deg);
}
.bubbles--top-left .bubble:nth-child(2) {
  left: 40% !important;
  top: 10% !important;
  fill: var(--color-green);
  animation: bubble-float-b 9s ease-in-out infinite -3s;
}
.bubbles--top-left .bubble:nth-child(2) .bubble-inner {
  transform: scale(0.92) rotate(187deg);
}
.bubbles--top-left .bubble:nth-child(3) {
  left: 68.9% !important;
  top: 50% !important;
  fill: var(--color-purple);
  animation: bubble-float-c 8s ease-in-out infinite -5.5s;
}
.bubbles--top-left .bubble:nth-child(3) .bubble-inner {
  transform: scale(1.08) rotate(312deg);
}
@media (max-width: 900px) {
  .bubbles--top-left {
    width: 100%;
  }
}
.bubbles--top-right {
  top: 0;
  right: 0;
}
.bubbles--top-right .bubble:nth-child(1) {
  right: 15.6% !important;
  left: auto !important;
  top: 40% !important;
  fill: var(--color-orange);
  animation: bubble-float-a 7s ease-in-out infinite -3s;
}
.bubbles--top-right .bubble:nth-child(1) .bubble-inner {
  transform: scale(0.97) rotate(145deg);
}
.bubbles--top-right .bubble:nth-child(2) {
  right: 78.9% !important;
  left: auto !important;
  top: 65% !important;
  fill: var(--color-green);
  animation: bubble-float-b 9s ease-in-out infinite -3s;
}
.bubbles--top-right .bubble:nth-child(2) .bubble-inner {
  transform: scale(1.03) rotate(260deg);
}
.bubbles--top-right .bubble:nth-child(3) {
  right: 48.9% !important;
  left: auto !important;
  top: 16.7% !important;
  fill: var(--color-purple);
  animation: bubble-float-c 8s ease-in-out infinite -2s;
}
.bubbles--top-right .bubble:nth-child(3) .bubble-inner {
  transform: scale(0.88) rotate(72deg);
}
@media (max-width: 900px) {
  .bubbles--top-right {
    display: none;
  }
}
.bubbles--bottom-right {
  bottom: 0;
  right: 0;
}
.bubbles--bottom-right .bubble:nth-child(1) {
  right: 20% !important;
  left: auto !important;
  bottom: 20% !important;
  top: auto !important;
  fill: var(--color-orange);
  animation: bubble-float-b 7s ease-in-out infinite -4s;
}
.bubbles--bottom-right .bubble:nth-child(1) .bubble-inner {
  transform: scale(1.01) rotate(198deg);
}
.bubbles--bottom-right .bubble:nth-child(2) {
  right: 55.6% !important;
  left: auto !important;
  bottom: 56% !important;
  top: auto !important;
  fill: var(--color-green);
  animation: bubble-float-c 9s ease-in-out infinite -1.3s;
}
.bubbles--bottom-right .bubble:nth-child(2) .bubble-inner {
  transform: scale(0.94) rotate(35deg);
}
.bubbles--bottom-right .bubble:nth-child(3) {
  right: 11.1% !important;
  left: auto !important;
  bottom: 36% !important;
  top: auto !important;
  fill: var(--color-purple);
  animation: bubble-float-a 8s ease-in-out infinite -0.5s;
}
.bubbles--bottom-right .bubble:nth-child(3) .bubble-inner {
  transform: scale(1.07) rotate(280deg);
}
@media (max-width: 1300px) {
  .bubbles--bottom-right {
    width: 100%;
    bottom: 50px;
  }
}
.bubbles .bubble {
  position: absolute;
  width: clamp(50px, calc(38.8px + 2.6666666667vw), 90px);
}
.bubbles .bubble-inner {
  display: block;
  width: 100%;
}

@keyframes bubble-float-a {
  0% {
    translate: 0px 0px;
  }
  25% {
    translate: 9px -7px;
  }
  50% {
    translate: -6px 11px;
  }
  75% {
    translate: -10px -4px;
  }
  100% {
    translate: 0px 0px;
  }
}
@keyframes bubble-float-b {
  0% {
    translate: 0px 0px;
  }
  30% {
    translate: -8px 9px;
  }
  60% {
    translate: 11px 5px;
  }
  80% {
    translate: 5px -10px;
  }
  100% {
    translate: 0px 0px;
  }
}
@keyframes bubble-float-c {
  0% {
    translate: 0px 0px;
  }
  20% {
    translate: 7px 10px;
  }
  55% {
    translate: -11px -4px;
  }
  75% {
    translate: 8px -8px;
  }
  100% {
    translate: 0px 0px;
  }
}

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