:root {
  --red: #fa350e;
  --black: #0c0f0e;
  --white: #fff;
  --blue: #e2fff9;
  --blue: #a0f2e8;
  --dark_blue: #5ac1bc;
  --gray: #f5f5f5;
  --dark-gray: #999;
  --light-gray: #f9f9f9;
  --back1: #040605;
  --back2: #000;
  --shadow: 0 0 8px rgba(160, 242, 232, 1),
      0 0 60px rgba(160, 242, 232, .7),
      0 0 80px rgba(160, 242, 232, .5);
  --border-radius: 8px;
  --back: linear-gradient(180deg, var(--back1) 30%, var(--back2) 100%);
  --back: linear-gradient(180deg, var(--back1) 60%, rgba(160, 242, 232, .6) 70%, var(--back2) 100%);
  --font-max: 5rem;
  --font-h1: 3.1rem;
  --font-h2: 1.9rem;
  --font-h3: 1.2rem;
  --font-base: 1rem;
  --font-small: 0.75rem;
  --font-min: 0.55rem;
}
@media (min-width: 992px) {
  :root {
    --back: linear-gradient(180deg, var(--back1) 30%, rgba(160, 242, 232, .6) 70%, var(--back2) 100%);
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "FFClan";
  font-weight: 700;
  src: url("../fonts/1a9cf0ae-2575-4c77-9aa4-27882906726c.woff2") format("woff2");
}
@font-face {
  font-family: "FFClan";
  font-weight: 400;
  src: url("../fonts/594979db-53e7-4c57-9c7b-92679df6a0cc.woff2") format("woff2");
}
img {
  width: 100%;
  height: auto;
  display: block;
}

html {
  scrollbar-color: var(--blue) var(--back2);
  scrollbar-width: thin;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  overflow-x: hidden;
  position: relative;
  font-family: "FFClan", sans-serif;
  background-color: var(--black);
  background-image: var(--back);
  color: var(--white);
}
body::-webkit-scrollbar {
  width: 12px;
  background: var(--back2);
}
body::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 6px;
}
body::-webkit-scrollbar-thumb:hover {
  background: #7de8d9;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

section {
  padding: 4rem 1rem;
}

section.doublepadding-top {
  padding-top: 8rem;
}

section.nopadding-top {
  padding-top: 3rem;
}

section.nopadding-bottom {
  padding-bottom: 0;
  padding-top: 0;
}

.white-background {
  background-color: var(--white);
  color: var(--black);
  padding: 2rem;
}

.header {
  position: relative;
  overflow: hidden;
}
.header .header-deco-top {
  position: absolute;
  top: -25%;
  left: 40%;
  transform: translateX(-50%);
  width: 100%;
  height: auto;
  z-index: -1;
  mix-blend-mode: screen;
}

.header {
  position: relative;
}
.header .hero-scene {
  position: absolute;
  bottom: 1%;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.header .hero-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.hero {
  position: relative;
  height: 80vh;
  min-height: 450px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .hero {
    min-height: 850px;
  }
}
.hero .hero-image {
  position: absolute;
  bottom: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  pointer-events: none;
  isolation: isolate;
}
.hero .hero-image video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 25% center;
  will-change: opacity;
  pointer-events: none;
}
@media (min-width: 1300px) {
  .hero .hero-image video {
    object-position: 100% center;
  }
}
.hero .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}
.hero .hero-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(12, 15, 14, 0) 0%, rgba(12, 15, 14, 0) 91%, rgba(12, 15, 14, 0.9) 100%);
}
.hero .hero__title {
  font-size: clamp(2.5rem, 6vw, var(--font-h1));
  font-weight: 700;
  margin-bottom: 1rem;
  bottom: 0;
  left: 1rem;
  position: absolute;
  z-index: 2;
}
@media (min-width: 992px) {
  .hero .hero__title {
    max-width: 49%;
    position: absolute;
    bottom: 5%;
    right: 5%;
    left: unset;
  }
}
@media (min-width: 1300px) {
  .hero .hero__title {
    bottom: 15%;
    right: 15%;
  }
}
.hero .hero__title em {
  font-size: clamp(2.5rem, 6vw, var(--font-max));
  font-style: normal;
  line-height: 1;
}
.hero .hero__title em sup {
  font-weight: 200;
  vertical-align: middle;
  font-size: 1em;
}

.text-title {
  font-size: clamp(1.1rem, 2.5vw, var(--font-h1));
  font-weight: 700;
  margin-bottom: 1rem;
  max-width: 92ch;
  text-wrap: balanced;
}
.text-title em {
  font-style: normal;
  color: var(--blue);
}

.text-content {
  font-size: clamp(0.9rem, 2.5vw, var(--font-h3));
  font-weight: 400;
  line-height: 150%;
  max-width: 92ch;
  text-wrap: pretty;
}

.cf-card-wrapper {
  display: flex;
  gap: 0rem;
  justify-content: center;
  flex-direction: column;
}
@media (min-width: 600px) {
  .cf-card-wrapper {
    gap: 2rem;
  }
}
@media (min-width: 992px) {
  .cf-card-wrapper {
    flex-direction: row;
    gap: 0rem;
  }
}
@media (min-width: 1300px) {
  .cf-card-wrapper {
    gap: 1rem;
  }
}
.cf-card-wrapper .cf-card {
  will-change: box-shadow;
  background-color: rgba(160, 242, 232, 0.0352941176);
  text-decoration: none;
  font: inherit;
  color: black;
  position: relative;
  border-radius: var(--border-radius);
  display: flex;
  padding: 2rem;
  gap: 1.5rem;
  justify-content: flex-start;
  z-index: 1;
  color: var(--white);
  flex-direction: column;
}
@media (min-width: 600px) {
  .cf-card-wrapper .cf-card {
    flex-direction: row-reverse;
    padding: 0rem;
  }
}
@media (min-width: 992px) {
  .cf-card-wrapper .cf-card {
    flex: 1;
    flex-direction: column;
    padding: 0 2rem;
  }
}
.cf-card-wrapper .cf-card .cf-card-image {
  overflow: hidden;
  height: clamp(300px, 30vh, 450px);
  flex: 1 0 50%;
  background-color: var(--white);
  border-radius: var(--border-radius);
}
@media (min-width: 992px) {
  .cf-card-wrapper .cf-card .cf-card-image {
    flex-basis: auto;
    overflow: hidden;
  }
}
.cf-card-wrapper .cf-card .cf-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cf-card-wrapper .cf-card .cf-card-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
@media (min-width: 992px) {
  .cf-card-wrapper .cf-card .cf-card-content {
    height: 100%;
  }
}
.cf-card-wrapper .cf-card .cf-card-title {
  font-size: clamp(1.1rem, 2.5vw, var(--font-h2));
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--white);
  text-wrap: pretty;
}
.cf-card-wrapper .cf-card .cf-card-description {
  margin-bottom: 2rem;
}

.cf-card-big-wrapper {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-direction: column;
}
.cf-card-big-wrapper .cf-card-big {
  background-color: var(--white);
  background-color: rgba(0, 0, 0, 0.3333333333);
  background-color: rgba(160, 242, 232, 0.0352941176);
  color: var(--black);
  color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  display: flex;
  gap: 2rem;
  transition: all 0.3s ease;
  z-index: 1;
  flex-direction: column;
}
@media (min-width: 600px) {
  .cf-card-big-wrapper .cf-card-big {
    flex-direction: row;
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cf-card-big-wrapper .cf-card-big {
    flex-direction: row;
    padding: 2rem;
  }
}
.cf-card-big-wrapper .cf-card-big .cf-card-big-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  height: clamp(350px, 30vh, 450px);
  flex: 1 0 50%;
}
.cf-card-big-wrapper .cf-card-big .cf-card-big-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cf-card-big-wrapper .cf-card-big .cf-card-big-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cf-card-big-wrapper .cf-card-big .cf-card-big-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cf-card-big-wrapper .cf-card-big .cf-card-big-title {
  font-size: clamp(1.1rem, 2.5vw, var(--font-h2));
  font-weight: 700;
  margin-bottom: 1rem;
  height: fit-content;
  text-wrap: pretty;
}
.cf-card-big-wrapper .cf-card-big .cf-card-big-description {
  width: 100%;
  text-wrap: balanced;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cf-card-big-wrapper .cf-card-big .cf-card-big-description {
    width: 80%;
  }
}
@media (min-width: 992px) {
  .cf-card-big-wrapper .cf-card-big:nth-child(even) {
    flex-direction: row-reverse;
  }
}

.pseudobutton {
  color: var(--black);
  color: var(--white);
  font-weight: 700;
  width: fit-content;
  text-decoration: none;
  margin-left: auto;
  margin-top: auto;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.9rem, 2.5vw, var(--font-min));
  border-radius: 6px;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.cta-wrapper {
  display: flex;
  gap: 2rem;
  justify-content: center;
}
.cta-wrapper .cta-card {
  display: flex;
  width: 100%;
  border-radius: var(--border-radius);
  background-color: var(--white);
  padding: 2rem;
  align-items: center;
  color: var(--black);
  transition: all 0.3s ease;
  z-index: 1;
  box-shadow: var(--shadow);
}
@media (min-width: 992px) {
  .cta-wrapper .cta-card {
    width: 60%;
  }
}
.cta-wrapper .cta-card:hover {
  transform: scale(1.1);
  z-index: 10;
}
.cta-wrapper .cta-card .cta-image {
  flex: 0 0 25%;
  overflow: hidden;
}
.cta-wrapper .cta-card .cta-content {
  flex: 1;
  padding-left: 2rem;
}
.cta-wrapper .cta-card .cta-content .name {
  font-size: clamp(1.1rem, 2.5vw, var(--font-h2));
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 110%;
}
.cta-wrapper .cta-card .cta-content .role {
  font-size: clamp(0.9rem, 2.5vw, var(--font-h3));
  font-weight: 400;
  margin-bottom: 1rem;
  font-size: 13px;
  color: #918e92;
  font-style: italic;
  line-height: 150%;
}
.cta-wrapper .cta-card .cta-content hr {
  border: 0;
  padding: 0;
  width: 50%;
  height: 1px;
  margin: 5% 0 5% 0;
  background: #eaeeed;
  clear: both;
}
.cta-wrapper .cta-card .cta-content a {
  color: var(--blck);
  text-decoration: none;
  cursor: pointer;
}
.cta-wrapper .cta-card .cta-content a:hover {
  text-decoration: underline;
}

.logos-wrapper {
  padding-top: 5rem;
  padding-bottom: 5rem;
  text-align: center;
  overflow: hidden;
}
.logos-wrapper h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.5rem, 4vw, var(--font-h2));
}
.logos-wrapper .logos {
  position: relative;
  left: -20%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 6rem 0 2rem 0;
  width: 300vw;
}
@media (min-width: 992px) {
  .logos-wrapper .logos {
    left: -10%;
    width: 120%;
  }
}
.logos-wrapper .logos .logos-item {
  width: 17vw;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 992px) {
  .logos-wrapper .logos .logos-item {
    width: 5vw;
  }
}
.logos-wrapper .logos .logos-item h4 {
  font-size: 0.65rem;
}
@media (min-width: 992px) {
  .logos-wrapper .logos .logos-item h4 {
    font-size: 0.85rem;
  }
}
.logos-wrapper .logos img {
  width: 100%;
  height: auto;
}

.canvas-section {
  position: relative;
  padding-top: 0;
  overflow: hidden;
  margin-top: 0rem;
  margin-bottom: 4rem;
  padding-left: 0;
  padding-right: 0;
}
.canvas-section .canvas-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-size: clamp(1.5rem, 4vw, var(--font-h2));
  font-weight: 700;
  max-width: 60%;
  z-index: 1;
  text-wrap: pretty;
}
@media (min-width: 1200px) {
  .canvas-section .canvas-text {
    max-width: 45ch;
  }
}
.canvas-section .canvas-text em {
  font-style: normal;
}
.canvas-section .canvas-text span {
  font-weight: 700;
  font-size: clamp(1rem, 2.5vw, var(--font-h3));
  display: block;
  margin-top: 1rem;
  margin-left: auto;
  margin-right: 10%;
  width: fit-content;
  color: var(--white);
}

.download-wrapper {
  margin-top: 4rem;
  margin-bottom: 4rem;
  display: flex;
  gap: 2rem;
}
.download-wrapper .download {
  margin-top: 2rem;
  display: flex;
  gap: 2rem;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  flex: 1;
  text-decoration: none;
  color: var(--white);
}
.download-wrapper .download:hover p {
  color: var(--white);
  border-color: var(--black);
}
.download-wrapper .download .download-images {
  flex: 0 0 48px;
  padding: 0.25rem;
  border-radius: var(--border-radius);
}
.download-wrapper .download .download-images svg,
.download-wrapper .download .download-images img {
  width: 100%;
  height: auto;
}
.download-wrapper .download p {
  color: var(--black);
  font-weight: 700;
  transition: all 0.3s ease;
}
.download-wrapper .download p em {
  font-style: normal;
  color: var(--white);
  text-transform: uppercase;
}

.footer {
  padding: 2rem 1rem;
  position: relative;
  overflow: hidden;
}
.footer .deco {
  position: absolute;
  bottom: -10vw;
  right: -5vw;
  width: 50vw;
  filter: drop-shadow(0 0 10px rgba(160, 242, 232, 0.5)) drop-shadow(0 0 25px rgba(160, 242, 232, 0.3));
}
@media (min-width: 600px) {
  .footer .deco {
    bottom: -5vw;
    right: 2vw;
    width: 30vw;
  }
}

.footer-columns {
  position: relative;
  padding-top: 1rem;
  padding: 2rem 0 4rem 0;
  font-size: 0.9rem;
  width: 100%;
  display: flex;
  isolation: isolate;
  background-color: transparent;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
@media (min-width: 600px) {
  .footer-columns {
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
  }
}
@media (min-width: 900px) {
  .footer-columns {
    gap: 1%;
  }
}
.footer-columns::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--blue) 0%, var(--blue) 60%, transparent 60%, transparent 100%);
  z-index: 1;
}
.footer-columns ul {
  list-style: none;
  padding: 0;
  width: 20%;
}
.footer-columns ul li {
  margin-bottom: 0.25rem;
}
.footer-columns strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.footer-columns a {
  color: var(--white);
  text-decoration: none;
  margin-left: 0.05rem;
}
.footer-columns a:hover {
  text-decoration: underline;
  color: var(--white);
}

.copy {
  margin-top: 2rem;
  font-size: 0.6rem;
}
