@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Gabarito:wght@400..900&family=Outfit:wght@100..900&display=swap");
.desktop {
  display: block;
}
@media screen and (max-width: 960px) {
  .desktop {
    display: none;
  }
}

.mobile {
  display: none;
}
@media screen and (max-width: 960px) {
  .mobile {
    display: block;
  }
}

/*
// Container-devices
$container-xl: 1440px;
$container-l: 1268px;
$container-m: 960px;
$container-s: 620px;
$container-xs: 340px;
$gutter: 32px;

// Mixin of media-queries
@mixin responsive($device) {

  @if $device == xl {
    // For resolutions upper 1440px
    @media screen and (min-width: $container-xl) {
      @content;
    }
  } 

  @else if $device == ul {
    // For resolutions upper 960px
    @media screen and (min-width: $container-m) {
      @content;
    }
  } 

  @else if $device == l {
    // For resolutions between 1140px and 1440px
    @media screen and (max-width: $container-xl) and (min-width: $container-l) {
      @content;
    }
  } 

  @else if $device == m {
    // For resolutions between 960px and 1140px
    @media screen and (max-width: $container-l) and (min-width: $container-s) {
      @content;
    }
  } 

  @else if $device == s {
    // For resolutions less than 960px
    @media screen and (max-width: $container-m) {
      @content;
    }
  } 

  @else if $device == xs {
    // For resolutions less than 340px
    @media screen and (max-width: $container-xs) {
      @content;
    }
  }
}
*/
.grid-1 {
  width: calc(8.3333333333% - 32px);
  margin: 16px;
  padding: 16px 0px;
  float: left;
}
@media screen and (max-width: 960px) {
  .grid-1 {
    width: calc(100% - 32px);
    float: none;
  }
}

.grid-2 {
  width: calc(16.6666666667% - 32px);
  margin: 16px;
  padding: 16px 0px;
  float: left;
}
@media screen and (max-width: 960px) {
  .grid-2 {
    width: calc(100% - 32px);
    float: none;
  }
}

.grid-3 {
  width: calc(25% - 32px);
  margin: 16px;
  padding: 16px 0px;
  float: left;
}
@media screen and (max-width: 960px) {
  .grid-3 {
    width: calc(100% - 32px);
    float: none;
  }
}

.grid-4 {
  width: calc(33.3333333333% - 32px);
  margin: 16px;
  padding: 16px 0px;
  float: left;
}
@media screen and (max-width: 960px) {
  .grid-4 {
    width: calc(100% - 32px);
    float: none;
  }
}

.grid-5 {
  width: calc(41.6666666667% - 32px);
  margin: 16px;
  padding: 16px 0px;
  float: left;
}
@media screen and (max-width: 960px) {
  .grid-5 {
    width: calc(100% - 32px);
    float: none;
  }
}

.grid-6 {
  width: calc(50% - 32px);
  margin: 16px;
  padding: 16px 0px;
  float: left;
}
@media screen and (max-width: 960px) {
  .grid-6 {
    width: calc(100% - 32px);
    float: none;
  }
}

.grid-7 {
  width: calc(58.3333333333% - 32px);
  margin: 16px;
  padding: 16px 0px;
  float: left;
}
@media screen and (max-width: 960px) {
  .grid-7 {
    width: calc(100% - 32px);
    float: none;
  }
}

.grid-8 {
  width: calc(66.6666666667% - 32px);
  margin: 16px;
  padding: 16px 0px;
  float: left;
}
@media screen and (max-width: 960px) {
  .grid-8 {
    width: calc(100% - 32px);
    float: none;
  }
}

.grid-9 {
  width: calc(75% - 32px);
  margin: 16px;
  padding: 16px 0px;
  float: left;
}
@media screen and (max-width: 960px) {
  .grid-9 {
    width: calc(100% - 32px);
    float: none;
  }
}

.grid-10 {
  width: calc(83.3333333333% - 32px);
  margin: 16px;
  padding: 16px 0px;
  float: left;
}
@media screen and (max-width: 960px) {
  .grid-10 {
    width: calc(100% - 32px);
    float: none;
  }
}

.grid-11 {
  width: calc(91.6666666667% - 32px);
  margin: 16px;
  padding: 16px 0px;
  float: left;
}
@media screen and (max-width: 960px) {
  .grid-11 {
    width: calc(100% - 32px);
    float: none;
  }
}

.grid-12 {
  width: calc(100% - 32px);
  margin: 16px;
  padding: 16px 0px;
  float: left;
}
@media screen and (max-width: 960px) {
  .grid-12 {
    width: calc(100% - 32px);
    float: none;
  }
}

.grid-nobreak-1 {
  width: calc(8.3333333333% - 32px);
  margin: 16px;
  padding: 16px 0px;
  float: left;
}

.grid-nobreak-2 {
  width: calc(16.6666666667% - 32px);
  margin: 16px;
  padding: 16px 0px;
  float: left;
}

.grid-nobreak-3 {
  width: calc(25% - 32px);
  margin: 16px;
  padding: 16px 0px;
  float: left;
}

.grid-nobreak-4 {
  width: calc(33.3333333333% - 32px);
  margin: 16px;
  padding: 16px 0px;
  float: left;
}

.grid-nobreak-5 {
  width: calc(41.6666666667% - 32px);
  margin: 16px;
  padding: 16px 0px;
  float: left;
}

.grid-nobreak-6 {
  width: calc(50% - 32px);
  margin: 16px;
  padding: 16px 0px;
  float: left;
}

.grid-nobreak-7 {
  width: calc(58.3333333333% - 32px);
  margin: 16px;
  padding: 16px 0px;
  float: left;
}

.grid-nobreak-8 {
  width: calc(66.6666666667% - 32px);
  margin: 16px;
  padding: 16px 0px;
  float: left;
}

.grid-nobreak-9 {
  width: calc(75% - 32px);
  margin: 16px;
  padding: 16px 0px;
  float: left;
}

.grid-nobreak-10 {
  width: calc(83.3333333333% - 32px);
  margin: 16px;
  padding: 16px 0px;
  float: left;
}

.grid-nobreak-11 {
  width: calc(91.6666666667% - 32px);
  margin: 16px;
  padding: 16px 0px;
  float: left;
}

.grid-nobreak-12 {
  width: calc(100% - 32px);
  margin: 16px;
  padding: 16px 0px;
  float: left;
}

.container {
  max-width: 1268px;
  margin: 0 auto;
  padding: 128px 24px;
  /*display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;*/
}
.container::after {
  content: "";
  display: table;
  clear: both;
}
@media screen and (max-width: 960px) {
  .container {
    flex-direction: column;
    padding: 96px 16px;
  }
}

@media screen and (max-width: 960px) {
  .disappear {
    display: none;
  }
}

.hidden {
  overflow: hidden;
}

.zindex-1 {
  z-index: -1;
}

.row::after {
  content: "";
  display: table;
  clear: both;
}

.h-100 {
  height: 100vh;
}

.h-100p {
  height: 100%;
}

.flex {
  display: flex;
}

.flex-start-row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}

.flex-end-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: row;
}

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

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

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

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

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

.relative {
  position: relative;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-item-1 {
  flex: 1 1 360px;
}

.flex-item-2 {
  flex: 2 1 360px;
}

.flex-item-3 {
  flex: 3 1 360px;
}

.flex-item-4 {
  flex: 4 1 360px;
}

.flex-item-5 {
  flex: 5 1 360px;
}

.flex-auto {
  flex: 1 1 auto;
}

.w-auto {
  width: auto;
}

.h-auto {
  height: auto !important;
}

.w-100 {
  width: 100%;
}

.w-75 {
  width: 75%;
}

.w-50 {
  width: 50%;
}

.w-25 {
  width: 25%;
}

.profile {
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.3);
  transition: 1s ease;
}
.profile:hover {
  border: 3px solid #4AA6F7;
}

.div-logo-hero {
  width: 100%;
  height: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .div-logo-hero {
    width: 100%;
    height: 400px;
  }
}
@media screen and (max-width: 960px) {
  .div-logo-hero {
    top: 35%;
    left: 50%;
  }
}

.logo-hero {
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(63.46% 63.46% at 20% 4.04%, rgba(66, 113, 235, 0.3) 0%, rgba(66, 113, 235, 0) 100%), #060B17;
  box-shadow: inset 3px 7px 15px rgba(83, 139, 240, 0.15);
  position: relative;
}
.logo-hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0px 0px 200px rgba(83, 139, 240, 0.6), 0px 0px 120px #538BF0, 0px 0px 88px #538BF0, 0px 0px 10px #538BF0, 0px 0px 5px #538BF0;
  filter: blur(14px);
  transform: translate(-50%, -50%) translate3d(-32px, -56px, 0);
  z-index: -1;
  animation: planet 16s ease infinite alternate;
}
@media screen and (max-width: 960px) {
  .logo-hero::before {
    width: 70%;
    height: 70%;
  }
}
@media screen and (max-width: 960px) {
  .logo-hero {
    width: 280px;
    height: 280px;
  }
}

@keyframes planet {
  0%, 10% {
    opacity: 0;
  }
  60% {
    opacity: 1;
    transform: translate(-50%, -50%) translate3d(0, 0, 0);
  }
  90%, 100% {
    opacity: 1;
    transform: translate(-50%, -50%) translate3d(-32px, -56px, 0);
  }
}
.card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  /* Note: backdrop-filter has minimal browser support */
  border-radius: 24px;
  transition: 1s ease;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
}
.card:hover {
  border: 2px solid rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.95);
}

.card-transparent {
  background-color: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(24px);
          backdrop-filter: blur(24px);
  border-radius: 40px;
  transition: 1s ease;
  border: 3px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
}
.card-transparent:hover {
  border: 3px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  transform: scale(1.02);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.95);
}

.glass {
  height: 480px;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 960px) {
  .glass {
    height: 320px;
  }
}
.glass::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 45%;
  background: rgba(3, 9, 23, 0.01);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  transform: scaleX(1.1);
}
.glass::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45%;
  background: rgba(3, 9, 23, 0.01);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  transform: scaleX(1.1);
}

.ball-1 {
  width: 80px;
  height: 80px;
  background: #fff;
  box-shadow: 0px 0px 64px #538BF0, 0px 0px 32px #538BF0, 0px 0px 12px #538BF0;
  border-radius: 50%;
  position: absolute;
  top: 20%;
  left: 30%;
  animation: move-ball 5s ease infinite alternate;
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .ball-1 {
    width: 48px;
    height: 48px;
  }
}

.ball-2 {
  width: 96px;
  height: 96px;
  background: linear-gradient(217.85deg, #4AA6F7 -1.54%, #1141BD 101.14%);
  border-radius: 50%;
  position: absolute;
  top: 20%;
  left: 30%;
  animation: move-ball 5s ease infinite 3s alternate;
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .ball-2 {
    width: 64px;
    height: 64px;
  }
}

@keyframes move-ball {
  0% {
    top: 20%;
    left: 30%;
  }
  50% {
    top: 50%;
    left: 40%;
  }
  100% {
    top: 30%;
    left: 60%;
  }
}
.bar {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 8px;
  width: 50%;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0px 0px 177px 4px rgba(46, 102, 201, 0.7), 0px 0px 96px 18px rgba(46, 102, 201, 0.5), 0px 0px 14px 1px rgba(46, 102, 201, 0.8), 0px 0px 4px 1px #2E66C9;
  z-index: 99;
  animation: fluctuateBar 1s ease-in-out 3s;
}

@keyframes fluctuateBar {
  0% {
    box-shadow: none;
  }
  20% {
    box-shadow: 0px 0px 177px 4px rgba(46, 102, 201, 0.7), 0px 0px 96px 18px rgba(46, 102, 201, 0.5), 0px 0px 14px 1px rgba(46, 102, 201, 0.8), 0px 0px 4px 1px #2E66C9;
  }
  40% {
    box-shadow: none;
  }
  100% {
    box-shadow: 0px 0px 177px 4px rgba(46, 102, 201, 0.7), 0px 0px 96px 18px rgba(46, 102, 201, 0.5), 0px 0px 14px 1px rgba(46, 102, 201, 0.8), 0px 0px 4px 1px #2E66C9;
  }
}
.waves {
  width: 100%;
  min-height: 840px;
  padding: 0 40px;
  position: relative;
}
@media screen and (max-width: 960px) {
  .waves {
    min-height: 260px;
  }
}

.svg-waves {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, -50%) scaleX(1.5) scaleY(1.2);
}
@media screen and (max-width: 960px) {
  .svg-waves {
    transform: translate(-50%, -50%) rotate(30deg) scaleX(2.5) scaleY(2);
  }
}

.fig1-wave1 {
  animation: wave 6s ease-in-out infinite alternate;
  transform: translate3d(-360px, 0, 0);
}

.fig1-wave2 {
  animation: wave 3s ease-in-out infinite 0s alternate-reverse;
  transform: translate3d(-360px, 0, 0);
}

.fig1-wave3 {
  animation: wave 5s ease-in-out infinite 0s alternate-reverse;
  transform: translate3d(-360px, 0, 0);
}

@keyframes wave {
  0% {
    transform: translate3d(-360px, 0, 0);
  }
  90%, 100% {
    transform: translate3d(360px, 0, 0);
  }
}
.card-circle {
  width: 100%;
  border-radius: 50%;
  border: 2px solid rgba(83, 139, 240, 0.05);
  position: relative;
}
@media screen and (max-width: 960px) {
  .card-circle {
    border-radius: 8px;
  }
}
.card-circle::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: -1;
  background: rgba(3, 9, 23, 0.01);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}
@media screen and (max-width: 960px) {
  .card-circle::after {
    border-radius: 8px;
  }
}
.card-circle::before {
  content: "";
  position: absolute;
  top: 5%;
  left: 5%;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  z-index: -1;
  background: linear-gradient(217.85deg, #4AA6F7 -1.54%, #1141BD 101.14%);
  animation: card-circle 12s ease-in-out infinite alternate;
}

@keyframes card-circle {
  0%, 5% {
    top: 5%;
    left: 5%;
  }
  40% {
    top: -5%;
    left: 85%;
  }
  70% {
    top: 95%;
    left: 20%;
  }
  95%, 100% {
    top: 80%;
    left: 80%;
  }
}
.card-project {
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
}
.card-project img {
  transform: scale(1.05);
  transition: 0.5s ease;
}
.card-project:hover img {
  transform: scale(1.1);
}

.card-link {
  background-color: rgba(255, 255, 255, 0);
  transition: 0.7s ease;
  border-radius: 12px 12px 0 0;
  padding: 16px 16px 16px 12px;
  cursor: pointer;
}
.card-link:hover {
  background-color: rgba(255, 255, 255, 0.04);
}
.card-link:hover > svg {
  transform: translate3d(4px, -4px, 0);
}

.stamp {
  position: absolute;
  top: -4px;
  left: -4px;
}

.stamp-ny {
  position: absolute;
  bottom: 56px;
  right: 56px;
}

.stamp-letters {
  animation: rotate 7s linear infinite;
  transform-origin: center center;
  transform-box: fill-box;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.section-projects {
  height: 100vh;
  position: relative;
}
.section-projects::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  z-index: 900;
  background: linear-gradient(180deg, #030917 0%, rgba(3, 9, 23, 0) 100%);
}
.section-projects::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 72px;
  z-index: 900;
  background: linear-gradient(180deg, rgba(3, 9, 23, 0) 0%, #030917 100%);
}
@media screen and (max-width: 960px) {
  .section-projects {
    height: 110vh;
  }
}

.guia {
  height: 128px;
}

.guia-s {
  height: 80px;
}

.bar1 {
  animation: bar 1s ease 0s infinite alternate;
}

.bar2 {
  animation: bar 1s ease 0.3s infinite alternate;
}

.bar3 {
  animation: bar 1s ease 0.9s infinite alternate;
}

.bar4 {
  animation: bar 1s ease 0.4s infinite alternate;
}

.bar5 {
  animation: bar 1s ease 0.1s infinite alternate;
}

.bar6 {
  animation: bar 1s ease 0.2s infinite alternate;
}

.bar7 {
  animation: bar 1s ease 0.5s infinite alternate;
}

@keyframes bar {
  0% {
    height: 0%;
  }
  100% {
    height: -100%;
  }
}
.light-red {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #F03D3D;
  box-shadow: 0px 0px 8px rgba(240, 61, 61, 0.9);
  animation: blink 4s ease infinite alternate;
}

.light-green {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0BB07B;
  box-shadow: 0px 0px 10px rgba(11, 176, 123, 0.9);
  animation: blink 4s ease infinite alternate;
}

.light-yellow {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #FFCE52;
  box-shadow: 0px 0px 54px rgba(255, 206, 82, 0.9);
  animation: blink 4s ease infinite alternate;
}

@keyframes blink {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}
footer {
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px;
}

.div-background {
  position: relative;
}
.div-background::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 600px;
  border-radius: 50%;
  background: linear-gradient(225deg, rgba(17, 65, 189, 0.8) 0%, rgba(7, 34, 102, 0.8) 100%);
  transform: translate(-50%, -50%) rotate(0deg);
  filter: blur(72px);
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .div-background::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(225deg, rgba(17, 65, 189, 0.8) 0%, rgba(7, 34, 102, 0.8) 100%);
    transform: translate(-50%, -50%) rotate(0deg);
    filter: blur(40px);
    z-index: -1;
  }
}

.espiral {
  width: 100%;
  min-height: 420px;
  transform: scale(1);
}
@media screen and (max-width: 960px) {
  .espiral {
    width: 140%;
    height: 100%;
    min-height: 400px;
    transform: scale(0.8) translate(-18%, 0%);
    z-index: -1;
  }
}

.icon-scroll {
  animation: icon-scroll 2s linear infinite;
  stroke-dasharray: 10 50;
}

@keyframes icon-scroll {
  0%, 5% {
    stroke-dashoffset: 20;
  }
  95%, 100% {
    stroke-dashoffset: -20;
  }
}
.scroll-down {
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 960px) {
  .scroll-down {
    top: 95%;
    left: 50%;
  }
}

.border-video {
  border-radius: 16px;
}

.edge-video {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border-radius: 24px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0px 32px rgba(0, 0, 0, 0.2);
  transition: 0.6s ease;
}
.edge-video video {
  z-index: -1;
  transform: scale(1.05);
}
.edge-video:hover {
  border: 2px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 80px rgba(0, 0, 0, 0.9);
}

.video-cta {
  position: absolute;
  width: 100%;
  top: -50%;
  left: 0;
  z-index: -1;
}
.video-cta video {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100% !important;
  transform: translate(0, -100%);
}
@media screen and (max-width: 960px) {
  .video-cta video {
    transform: rotate(90deg);
  }
}

.border-video-cta {
  position: relative;
  overflow: hidden;
}
.border-video-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 128px;
  background: linear-gradient(180deg, #030917 0%, rgba(3, 9, 23, 0) 100%);
}
.border-video-cta::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 240px;
  background: linear-gradient(180deg, rgba(3, 9, 23, 0) 0%, #030917 100%);
}

.mask-video-ny {
  position: relative;
  overflow: hidden;
  height: 60vh;
}
.mask-video-ny video {
  height: 100%;
}
@media screen and (min-width: 960px) {
  .mask-video-ny video {
    width: 100%;
    height: auto;
  }
}
.mask-video-ny::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(3, 9, 23, 0.99) 0%, rgba(3, 9, 23, 0.1) 20%, rgba(3, 9, 23, 0.1) 50%, rgba(3, 9, 23, 0.1) 80%, rgba(3, 9, 23, 0.99) 100%), linear-gradient(180deg, rgba(3, 9, 23, 0.99) 0%, rgba(3, 9, 23, 0.1) 20%, rgba(3, 9, 23, 0.1) 50%, rgba(3, 9, 23, 0.1) 80%, rgba(3, 9, 23, 0.99) 100%);
}

.signature {
  animation: signature 4s ease-in-out infinite alternate;
}

@keyframes signature {
  0% {
    stroke-width: 0;
    stroke-dasharray: 0 600;
  }
  60%, 100% {
    stroke-width: 2;
    stroke-dasharray: 100 0;
  }
}
.border-transparent-video {
  width: 100%;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -100%);
  padding: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
@media screen and (max-width: 960px) {
  .border-transparent-video {
    padding: 8px;
  }
}

.profile-big {
  width: 160px;
  height: 160px;
  overflow: hidden;
}

.list h6 {
  transition: 0.7s ease;
}
.list:hover h6 {
  padding-left: 10px;
}

.div-label-white {
  background: rgb(239, 246, 255);
  box-shadow: -5px -7px 14px 0 rgba(115, 141, 176, 0.7) inset, 2px 2px 8px 0 rgba(2, 9, 27, 0.2) inset;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
  border: 2px solid rgba(255, 255, 255, 0.7);
  padding: 10px 24px;
  border-radius: 24px;
  transition: 0.7s ease;
}
.div-label-white h6 {
  transition: 0.7s ease;
}
.div-label-white:hover {
  border: 2px solid rgba(255, 255, 255, 0.99);
}
.div-label-white:hover h6 {
  letter-spacing: 3px;
}

.div-label-black-orange {
  background-color: rgba(2, 2, 9, 0.4);
  color: rgb(240, 78, 35);
  padding: 10px 24px;
  border-radius: 24px;
  border: 2px solid rgba(232, 240, 255, 0.05);
  transition: 0.7s ease;
}
.div-label-black-orange:hover {
  border: 2px solid rgba(232, 240, 255, 0.3);
}

.div-label-blue {
  background-color: rgba(27, 105, 210, 0.4);
  color: rgb(232, 240, 255);
  padding: 10px 24px;
  border-radius: 24px;
  border: 2px solid rgba(232, 240, 255, 0.1);
  transition: 0.7s ease;
}
.div-label-blue:hover {
  border: 2px solid rgba(232, 240, 255, 0.4);
}

.div-label-green {
  background: #0BA976;
  box-shadow: -4px 4px 18px 0 rgba(83, 194, 158, 0.8) inset, 4px -4px 18px 0 rgba(4, 87, 61, 0.8) inset;
  color: rgb(232, 240, 255);
  padding: 10px 24px;
  border-radius: 24px;
  border: 2px solid rgba(232, 240, 255, 0.1);
  transition: 0.7s ease;
}
.div-label-green h6 {
  transition: 0.7s ease;
}
.div-label-green:hover {
  border: 2px solid rgba(232, 240, 255, 0.5);
}
.div-label-green:hover h6 {
  letter-spacing: 3px;
}

@font-face {
  font-family: "Futurism";
  src: url("../font/Futurism.otf");
}
@font-face {
  font-family: "Nebula";
  src: url("../font/Nebula-Regular.otf");
}
.h0 {
  font-family: "Gabarito", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 88px;
  line-height: 120%;
  font-weight: 300;
  letter-spacing: 20px;
}
@media screen and (max-width: 960px) {
  .h0 {
    letter-spacing: 10px;
    font-family: "Gabarito", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 40px;
    line-height: 120%;
    font-weight: 300;
  }
}
@media screen and (max-width: 340px) {
  .h0 {
    letter-spacing: 8px;
    font-family: "Gabarito", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 24px;
    line-height: 120%;
    font-weight: 300;
  }
}

.h0-title {
  letter-spacing: 18px;
  font-family: "Gabarito", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 88px;
  line-height: 120%;
  font-weight: 300;
  font-family: "Nebula", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
@media screen and (max-width: 960px) {
  .h0-title {
    letter-spacing: 4px;
    font-family: "Gabarito", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 40px;
    line-height: 120%;
    font-weight: 300;
    font-family: "Nebula", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
  }
}
@media screen and (max-width: 340px) {
  .h0-title {
    letter-spacing: 1px;
    font-family: "Gabarito", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 24px;
    line-height: 120%;
    font-weight: 300;
    font-family: "Nebula", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
  }
}

.h-title {
  font-family: "Nebula", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

h1 {
  color: #F0F2F7;
  z-index: 5;
  font-family: "Gabarito", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 80px;
  line-height: 110%;
  font-weight: 300;
}
@media screen and (max-width: 960px) {
  h1 {
    font-family: "Gabarito", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 52px;
    line-height: 110%;
    font-weight: 300;
  }
}
@media screen and (max-width: 340px) {
  h1 {
    font-family: "Gabarito", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 48px;
    line-height: 120%;
    font-weight: 300;
  }
}

.title-hero {
  color: #F0F2F7;
  z-index: 5;
  letter-spacing: 4px;
  font-family: "Gabarito", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 80px;
  line-height: 110%;
  font-weight: 300;
}
@media screen and (max-width: 960px) {
  .title-hero {
    font-family: "Gabarito", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 52px;
    line-height: 110%;
    font-weight: 300;
  }
}
@media screen and (max-width: 340px) {
  .title-hero {
    font-family: "Gabarito", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 48px;
    line-height: 120%;
    font-weight: 300;
  }
}

h2 {
  color: #F0F2F7;
  font-family: "Gabarito", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 64px;
  line-height: 110%;
  font-weight: 300;
}
@media screen and (max-width: 960px) {
  h2 {
    font-family: "Gabarito", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 40px;
    line-height: 120%;
    font-weight: 300;
  }
}
@media screen and (max-width: 340px) {
  h2 {
    font-family: "Gabarito", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 36px;
    line-height: 120%;
    font-weight: 300;
  }
}

h3 {
  color: #F0F2F7;
  font-family: "Gabarito", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 48px;
  line-height: 120%;
  font-weight: 300;
}
@media screen and (max-width: 960px) {
  h3 {
    font-family: "Gabarito", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 32px;
    line-height: 120%;
    font-weight: 300;
  }
}
@media screen and (max-width: 340px) {
  h3 {
    font-family: "Gabarito", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 28px;
    line-height: 130%;
    font-weight: 300;
  }
}

h4 {
  color: #F0F2F7;
  font-family: "Gabarito", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 32px;
  line-height: 120%;
  font-weight: 300;
}
@media screen and (max-width: 960px) {
  h4 {
    font-family: "Gabarito", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 28px;
    line-height: 130%;
    font-weight: 300;
  }
}
@media screen and (max-width: 340px) {
  h4 {
    font-family: "Gabarito", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 20px;
    line-height: 140%;
    font-weight: 300;
  }
}

h5 {
  color: #F0F2F7;
  font-family: "Gabarito", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 24px;
  line-height: 140%;
  font-weight: 300;
}
@media screen and (max-width: 960px) {
  h5 {
    font-family: "Gabarito", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 20px;
    line-height: 140%;
    font-weight: 300;
  }
}

h6 {
  color: #F0F2F7;
  font-family: "Gabarito", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 18px;
  line-height: 150%;
  font-weight: 300;
}
@media screen and (max-width: 960px) {
  h6 {
    font-family: "Gabarito", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 16px;
    line-height: 150%;
    font-weight: 300;
  }
}

.h7 {
  font-family: "Gabarito", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  line-height: 150%;
  font-weight: 300;
}
@media screen and (max-width: 960px) {
  .h7 {
    font-family: "Gabarito", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 16px;
    line-height: 150%;
    font-weight: 300;
  }
}

.h8 {
  font-family: "Gabarito", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  line-height: 150%;
  font-weight: 300;
}
@media screen and (max-width: 960px) {
  .h8 {
    font-family: "Gabarito", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 14px;
    line-height: 150%;
    font-weight: 300;
  }
}

p {
  letter-spacing: 0px;
  color: #9EA0A3;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}
@media screen and (max-width: 960px) {
  p {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
  }
}
@media screen and (max-width: 340px) {
  p {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 14px;
    line-height: 26px;
    font-weight: 400;
  }
}

.uppercase {
  text-transform: uppercase;
  letter-spacing: 2px;
}

.p1 {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 26px;
  line-height: 30px;
  font-weight: 400;
}
@media screen and (max-width: 960px) {
  .p1 {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 22px;
    line-height: 30px;
    font-weight: 400;
  }
}
@media screen and (max-width: 340px) {
  .p1 {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
  }
}

.p2 {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
}
@media screen and (max-width: 960px) {
  .p2 {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
  }
}

.p3 {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}
@media screen and (max-width: 960px) {
  .p3 {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
  }
}

.p4 {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  font-weight: 200;
}
@media screen and (max-width: 960px) {
  .p4 {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 14px;
    line-height: 20px;
    font-weight: 200;
  }
}

.p5 {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 13px;
  line-height: 20px;
  font-weight: 200;
}
@media screen and (max-width: 960px) {
  .p5 {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 13px;
    line-height: 20px;
    font-weight: 200;
  }
}

.p-title {
  font-size: 18px;
}
@media screen and (max-width: 960px) {
  .p-title {
    font-size: 16px;
  }
}

.bold {
  font-weight: bold;
  color: #DDE3ED;
}

span {
  display: inline-block;
}

.letter-h1 {
  color: #E4EAF2;
  letter-spacing: 1px;
  text-transform: none;
  font-family: "Gabarito", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 80px;
  line-height: 110%;
  font-weight: 300;
}
@media screen and (max-width: 960px) {
  .letter-h1 {
    font-family: "Gabarito", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 52px;
    line-height: 110%;
    font-weight: 300;
  }
}

strong {
  color: #030917;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
}
@media screen and (max-width: 960px) {
  strong {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
  }
}

b {
  color: #353536;
}

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

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

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

.h-xl {
  color: #E4EAF2;
  font-size: 240px;
  font-family: "Gabarito", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 88px;
  line-height: 120%;
  font-weight: 300;
}
@media screen and (max-width: 960px) {
  .h-xl {
    font-size: 144px;
    font-family: "Gabarito", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 40px;
    line-height: 120%;
    font-weight: 300;
  }
}

.h-l {
  color: #E4EAF2;
  font-size: 144px;
  font-family: "Gabarito", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 88px;
  line-height: 120%;
  font-weight: 300;
}
@media screen and (max-width: 960px) {
  .h-l {
    font-size: 96px;
    font-family: "Gabarito", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 40px;
    line-height: 120%;
    font-weight: 300;
  }
}

.hbig {
  font-family: "Gabarito", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 80px;
  line-height: 120%;
  font-weight: 300;
}
@media screen and (max-width: 960px) {
  .hbig {
    font-family: "Gabarito", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 56px;
    line-height: 120%;
    font-weight: 300;
  }
}

.text-shadow {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.7);
}

.text-shadow-small {
  text-shadow: 0 0px 8px rgba(0, 0, 0, 0.7);
}

.color-gray {
  color: #7C7C7D;
}

.color-red {
  color: #F03D3D;
}

.color-green {
  color: #0BB07B;
}

.color-yellow {
  color: #FFCE52;
}

.bg-red {
  background-color: #F03D3D;
}

.bg-green {
  background-color: #0BB07B;
}

.bg-yellow {
  background-color: #FFCE52;
}

.color-white {
  color: #F0F2F7;
}

.color-primary {
  color: #4AA6F7;
}

.color-gradient {
  display: inline-block;
  background: linear-gradient(224.78deg, #4AA6F7 8.12%, #1141BD 92.21%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.color-gradient2 {
  display: inline-block;
  background: linear-gradient(270deg, #1141BD 0.95%, #6BBAFF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-animation {
  display: inline-block;
  background: linear-gradient(222deg, rgba(0, 0, 0, 0) 7.91%, rgba(1, 52, 203, 0.8) 45.64%, rgba(222, 87, 248, 0.8) 49.61%, rgba(44, 137, 249, 0.8) 53.61%, rgba(0, 0, 0, 0) 82.75%), radial-gradient(31.69% 88.13% at 22.35% 53.72%, rgba(120, 151, 208, 0.45) 0%, rgba(4, 5, 63, 0) 100%), linear-gradient(306deg, #49CBFF 19.78%, #00279B 73.91%);
  background-clip: text;
  background-size: 200%;
  background-repeat: no-repeat;
  animation: text-gradient-animation 4s ease infinite alternate;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes text-gradient-animation {
  0% {
    background-position: 0% 100%;
  }
  100% {
    background-position: 100% 0%;
  }
}
.bg-gradient {
  background: linear-gradient(224.78deg, #2082D9 8.12%, #1141BD 92.21%);
}

.label {
  background: linear-gradient(224.78deg, #4AA6F7 8.12%, #1141BD 92.21%);
  display: inline-block;
  padding: 3px 8px;
  border-radius: 2px;
  color: #030917;
}

.label-color {
  display: inline-block;
  background: linear-gradient(270deg, #1141BD 0%, rgba(17, 65, 189, 0.98) 28.85%, rgba(150, 206, 255, 0.95) 50%, rgba(17, 65, 189, 0.98) 71.15%, #1141BD 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200%;
  animation: label-color 2s ease 1s infinite forwards;
}

@keyframes label-color {
  0% {
    background-position: -50% 0;
  }
  100% {
    background-position: 150% 0;
  }
}
.label-transparent {
  display: inline-block;
  background: linear-gradient(270deg, #1141BD 0%, rgba(17, 65, 189, 0.98) 28.85%, rgba(150, 206, 255, 0.95) 50%, rgba(17, 65, 189, 0.98) 71.15%, #1141BD 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200%;
  animation: label-color 2s ease 1s infinite forwards;
  padding: 6px 24px;
  position: relative;
}
.label-transparent::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(255, 255, 255, 0.07);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  filter: drop-shadow(0px 4px 32px rgba(0, 0, 0, 0.4));
  border-radius: 36px;
}

.label-transparent-white {
  display: inline-block;
  background: linear-gradient(270deg, #fff 0%, rgba(150, 206, 255, 0.95) 40%, rgba(17, 65, 189, 0.98) 50%, rgba(150, 206, 255, 0.95) 60%, #fff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200%;
  animation: label-color 7s ease 1s infinite forwards;
  padding: 10px 24px;
  letter-spacing: 1px;
  position: relative;
  transition: 1s ease;
}
.label-transparent-white::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: 1s ease;
  background-color: rgba(255, 255, 255, 0.07);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  filter: drop-shadow(0px 4px 32px rgba(0, 0, 0, 0.4));
  border-radius: 36px;
  border: 2px solid rgba(255, 255, 255, 0.05);
}
.label-transparent-white:hover {
  letter-spacing: 3px;
}
.label-transparent-white:hover::after {
  border: 2px solid rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  filter: drop-shadow(0px 8px 40px rgba(0, 0, 0, 0.8));
}

.icon {
  max-width: 64px;
  transition: 0.5s ease;
}
.icon:hover {
  transform: translate(0, -4px, 0);
}
@media screen and (max-width: 960px) {
  .icon {
    max-width: 56px;
  }
}

.icon-s {
  max-width: 40px;
  transition: 0.5s ease;
}
.icon-s:hover {
  transform: translate(0, -4px, 0);
}
@media screen and (max-width: 960px) {
  .icon-s {
    max-width: 32px;
  }
}

.icon-xs {
  max-width: 24px;
  transition: 0.5s ease;
}
.icon-xs:hover {
  transform: translate(0, -4px, 0);
}
@media screen and (max-width: 960px) {
  .icon-xs {
    max-width: 24px;
  }
}

.icon-m {
  max-width: 96px;
  transition: 0.5s ease;
}
@media screen and (max-width: 960px) {
  .icon-m {
    max-width: 80px;
  }
}

.icon-l {
  max-width: 120px;
  transition: 0.5s ease;
}
@media screen and (max-width: 960px) {
  .icon-l {
    max-width: 96px;
  }
}

.icon-xl {
  max-width: 172px;
  transition: 0.5s ease;
}
@media screen and (max-width: 960px) {
  .icon-xl {
    max-width: 144px;
  }
}

.icon-animated {
  min-width: 64px;
  min-height: 64px;
  transition: 0.5s ease;
  width: 64px;
  height: 64px;
  padding: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  border: 2px solid rgba(255, 255, 255, 0);
}
.icon-animated:hover {
  border: 2px solid rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 960px) {
  .icon-animated {
    max-width: 56px;
  }
}

.ball-animated {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #1141BD;
  animation: ball-animated 4s ease-out infinite alternate;
  box-shadow: 0 0 16px rgba(24, 80, 225, 0.8);
}

@keyframes ball-animated {
  0% {
    top: 0;
    left: 0;
  }
  30% {
    top: 75%;
    left: 80%;
  }
  60% {
    top: 80%;
    left: 0%;
  }
  100% {
    top: 0%;
    left: 75%;
  }
}
.icon-bgprimary {
  min-width: 64px;
  min-height: 64px;
  transition: 0.8s ease;
  width: 64px;
  height: 64px;
  padding: 8px;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(24, 80, 225, 0.9) 0%, rgba(13, 44, 123, 0.9) 100%);
  background-size: 200%;
  background-position: 0% 0%;
  opacity: 1;
  border: 2px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0px 0px 24px rgba(13, 44, 123, 0.9);
}
.icon-bgprimary:hover {
  border: 2px solid rgba(255, 255, 255, 0.2);
  background-position: 50% 50%;
  box-shadow: 0px 0px 40px rgba(24, 80, 225, 0.9);
  opacity: 0.8;
}
.icon-bgprimary path {
  stroke: #fff;
}

.icon-white path {
  stroke: #fff;
}
.icon-white rect {
  stroke: #fff;
}
.icon-white circle {
  stroke: #fff;
}

.icon-transparent {
  min-width: 64px;
  min-height: 64px;
  transition: 0.8s ease;
  width: 64px;
  height: 64px;
  padding: 8px;
  border-radius: 50%;
  background-color: rgba(221, 227, 237, 0.15);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.3);
}
.icon-transparent:hover {
  border: 2px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0px 0px 36px rgba(0, 0, 0, 0.8);
}

.bg-icon {
  border-radius: 32px;
  padding: 8px 16px;
  margin: 4px;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s ease;
}
.bg-icon path {
  transition: 0.5s ease;
}
.bg-icon circle {
  transition: 0.5s ease;
}
.bg-icon rect {
  transition: 0.5s ease;
}
.bg-icon:hover {
  background-color: rgba(255, 255, 255, 0.15);
}
.bg-icon:hover path {
  stroke: #fff;
}
.bg-icon:hover circle {
  stroke: #fff;
}
.bg-icon:hover rect {
  stroke: #fff;
}

.bg-circle-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border-radius: 20px;
  padding: 8px;
  margin: 4px;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s ease;
}
.bg-circle-icon path {
  transition: 0.5s ease;
}
.bg-circle-icon circle {
  transition: 0.5s ease;
}
.bg-circle-icon rect {
  transition: 0.5s ease;
}
.bg-circle-icon:hover {
  background-color: rgba(255, 255, 255, 0.15);
}
.bg-circle-icon:hover path {
  stroke: #fff;
}

header {
  width: 100%;
  height: 80px;
  padding: 16px 18px 0px 18px;
  transition: 1s ease;
  position: fixed;
  top: 0;
  background: linear-gradient(180deg, rgba(3, 9, 23, 0.99) 0%, rgba(3, 9, 23, 0) 100%);
  z-index: 990;
  opacity: 0;
}

nav {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.active-header {
  opacity: 1;
}

.s-0 {
  margin: 0;
  padding: 0;
}

.mt-110 {
  margin-top: 110px;
}
@media screen and (max-width: 960px) {
  .mt-110 {
    margin-top: 0px;
  }
}

.mt-80 {
  margin-top: 88px;
}
@media screen and (max-width: 960px) {
  .mt-80 {
    margin-top: 64px;
  }
}

.ml-40 {
  margin-left: 40px;
}
@media screen and (max-width: 960px) {
  .ml-40 {
    margin-left: 4px;
  }
}

.space-220 {
  padding: 220px 24px;
}
@media screen and (max-width: 960px) {
  .space-220 {
    padding: 96px 16px;
  }
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 8px !important;
}

.m-2 {
  margin: 16px !important;
}

.m-3 {
  margin: 24px !important;
}

.m-4 {
  margin: 32px !important;
}

.m-5 {
  margin: 48px !important;
}

.m-6 {
  margin: 64px !important;
}

.m-7 {
  margin: 72px !important;
}

.m-8 {
  margin: 96px !important;
}

.m-9 {
  margin: 128px !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 8px !important;
}

.mt-2 {
  margin-top: 16px !important;
}

.mt-3 {
  margin-top: 24px !important;
}

.mt-4 {
  margin-top: 32px !important;
}

.mt-5 {
  margin-top: 48px !important;
}

.mt-6 {
  margin-top: 64px !important;
}

.mt-7 {
  margin-top: 72px !important;
}

.mt-8 {
  margin-top: 96px !important;
}

.mt-9 {
  margin-top: 128px !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.ml-1 {
  margin-left: 8px !important;
}

.ml-2 {
  margin-left: 16px !important;
}

.ml-3 {
  margin-left: 24px !important;
}

.ml-4 {
  margin-left: 32px !important;
}

.ml-5 {
  margin-left: 48px !important;
}

.ml-6 {
  margin-left: 64px !important;
}

.ml-7 {
  margin-left: 72px !important;
}

.ml-8 {
  margin-left: 96px !important;
}

.ml-9 {
  margin-left: 128px !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mr-1 {
  margin-right: 8px !important;
}

.mr-2 {
  margin-right: 16px !important;
}

.mr-3 {
  margin-right: 24px !important;
}

.mr-4 {
  margin-right: 32px !important;
}

.mr-5 {
  margin-right: 48px !important;
}

.mr-6 {
  margin-right: 64px !important;
}

.mr-7 {
  margin-right: 72px !important;
}

.mr-8 {
  margin-right: 96px !important;
}

.mr-9 {
  margin-right: 128px !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 8px !important;
}

.mb-2 {
  margin-bottom: 16px !important;
}

.mb-3 {
  margin-bottom: 24px !important;
}

.mb-4 {
  margin-bottom: 32px !important;
}

.mb-5 {
  margin-bottom: 48px !important;
}

.mb-6 {
  margin-bottom: 64px !important;
}

.mb-7 {
  margin-bottom: 72px !important;
}

.mb-8 {
  margin-bottom: 96px !important;
}

.mb-9 {
  margin-bottom: 128px !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.mx-1 {
  margin-left: 8px !important;
  margin-right: 8px !important;
}

.mx-2 {
  margin-left: 16px !important;
  margin-right: 16px !important;
}

.mx-3 {
  margin-left: 24px !important;
  margin-right: 24px !important;
}

.mx-4 {
  margin-left: 32px !important;
  margin-right: 32px !important;
}

.mx-5 {
  margin-left: 48px !important;
  margin-right: 48px !important;
}

.mx-6 {
  margin-left: 64px !important;
  margin-right: 64px !important;
}

.mx-7 {
  margin-left: 72px !important;
  margin-right: 72px !important;
}

.mx-8 {
  margin-left: 96px !important;
  margin-right: 96px !important;
}

.mx-9 {
  margin-left: 128px !important;
  margin-right: 128px !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}

.my-2 {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}

.my-3 {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

.my-4 {
  margin-top: 32px !important;
  margin-bottom: 32px !important;
}

.my-5 {
  margin-top: 48px !important;
  margin-bottom: 48px !important;
}

.my-6 {
  margin-top: 64px !important;
  margin-bottom: 64px !important;
}

.my-7 {
  margin-top: 72px !important;
  margin-bottom: 72px !important;
}

.my-8 {
  margin-top: 96px !important;
  margin-bottom: 96px !important;
}

.my-9 {
  margin-top: 128px !important;
  margin-bottom: 128px !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 8px !important;
}

.p-2 {
  padding: 16px !important;
}

.p-3 {
  padding: 24px !important;
}

.p-4 {
  padding: 32px !important;
}

.p-5 {
  padding: 48px !important;
}

.p-6 {
  padding: 64px !important;
}

.p-7 {
  padding: 72px !important;
}

.p-8 {
  padding: 96px !important;
}

.p-9 {
  padding: 128px !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 8px !important;
}

.pt-2 {
  padding-top: 16px !important;
}

.pt-3 {
  padding-top: 24px !important;
}

.pt-4 {
  padding-top: 32px !important;
}

.pt-5 {
  padding-top: 48px !important;
}

.pt-6 {
  padding-top: 64px !important;
}

.pt-7 {
  padding-top: 72px !important;
}

.pt-8 {
  padding-top: 96px !important;
}

.pt-9 {
  padding-top: 128px !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.pl-1 {
  padding-left: 8px !important;
}

.pl-2 {
  padding-left: 16px !important;
}

.pl-3 {
  padding-left: 24px !important;
}

.pl-4 {
  padding-left: 32px !important;
}

.pl-5 {
  padding-left: 48px !important;
}

.pl-6 {
  padding-left: 64px !important;
}

.pl-7 {
  padding-left: 72px !important;
}

.pl-8 {
  padding-left: 96px !important;
}

.pl-9 {
  padding-left: 128px !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pr-1 {
  padding-right: 8px !important;
}

.pr-2 {
  padding-right: 16px !important;
}

.pr-3 {
  padding-right: 24px !important;
}

.pr-4 {
  padding-right: 32px !important;
}

.pr-5 {
  padding-right: 48px !important;
}

.pr-6 {
  padding-right: 64px !important;
}

.pr-7 {
  padding-right: 72px !important;
}

.pr-8 {
  padding-right: 96px !important;
}

.pr-9 {
  padding-right: 128px !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 8px !important;
}

.pb-2 {
  padding-bottom: 16px !important;
}

.pb-3 {
  padding-bottom: 24px !important;
}

.pb-4 {
  padding-bottom: 32px !important;
}

.pb-5 {
  padding-bottom: 48px !important;
}

.pb-6 {
  padding-bottom: 64px !important;
}

.pb-7 {
  padding-bottom: 72px !important;
}

.pb-8 {
  padding-bottom: 96px !important;
}

.pb-9 {
  padding-bottom: 128px !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.px-1 {
  padding-left: 8px !important;
  padding-right: 8px !important;
}

.px-2 {
  padding-left: 16px !important;
  padding-right: 16px !important;
}

.px-3 {
  padding-left: 24px !important;
  padding-right: 24px !important;
}

.px-4 {
  padding-left: 32px !important;
  padding-right: 32px !important;
}

.px-5 {
  padding-left: 48px !important;
  padding-right: 48px !important;
}

.px-6 {
  padding-left: 64px !important;
  padding-right: 64px !important;
}

.px-7 {
  padding-left: 72px !important;
  padding-right: 72px !important;
}

.px-8 {
  padding-left: 96px !important;
  padding-right: 96px !important;
}

.px-9 {
  padding-left: 128px !important;
  padding-right: 128px !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.py-2 {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

.py-3 {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

.py-4 {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}

.py-5 {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}

.py-6 {
  padding-top: 64px !important;
  padding-bottom: 64px !important;
}

.py-7 {
  padding-top: 72px !important;
  padding-bottom: 72px !important;
}

.py-8 {
  padding-top: 96px !important;
  padding-bottom: 96px !important;
}

.py-9 {
  padding-top: 128px !important;
  padding-bottom: 128px !important;
}

.btn {
  display: inline-block;
  color: #F0F2F7;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.7);
  transition: 1s ease;
  padding: 24px 96px 24px 96px;
  text-align: center;
  position: relative;
  background-color: rgba(221, 227, 237, 0.15);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border-radius: 40px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4);
  position: relative;
  transition: 0.7s ease;
  font-family: "Gabarito", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 18px;
  line-height: 150%;
  font-weight: 300;
}
@media screen and (max-width: 960px) {
  .btn {
    font-family: "Gabarito", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 16px;
    line-height: 150%;
    font-weight: 300;
  }
}
.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -18px;
  width: 56px;
  height: 56px;
  transform: translate(-50%, -50%);
  background: rgb(239, 246, 255);
  box-shadow: -5px -7px 14px 0 rgba(115, 141, 176, 0.7) inset, 2px 2px 8px 0 rgba(2, 9, 27, 0.2) inset;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
  background-image: url("../../svg/icon-arrow-right-ios.svg");
  background-position: center center;
  background-repeat: no-repeat;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  transition: 1s ease;
}
.btn .icon-ia {
  position: absolute;
  top: 50%;
  left: 40px;
  padding: 4px;
  width: 56px;
  height: 56px;
  transform: translate(-50%, -50%) rotate(0deg);
  border-radius: 50%;
  border: 2px solid rgba(221, 227, 237, 0.1);
  transition: 1s ease;
  background-color: rgb(27, 32, 48);
  box-shadow: -4px -8px 16px 0 rgba(3, 7, 17, 0.7) inset, 3px 3px 8px 0 rgba(0, 0, 0, 0.7) inset;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.8));
}
.btn:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.btn:hover::before {
  transform: translate(-50%, -50%) rotate(675deg);
  top: 50%;
  right: 66%;
}
.btn:hover .icon-ia {
  top: 50%;
  left: 87%;
  transform: translate(-50%, -50%) rotate(360deg);
}

.elo1 {
  animation: elo1 5s ease infinite alternate;
  transform-origin: center center;
  transform-box: fill-box;
}

@keyframes elo1 {
  0% {
    transform: rotateX(0deg) rotateY(0deg) rotate(0deg);
  }
  100% {
    transform: rotateX(180deg) rotateY(270deg) rotate(-270deg);
  }
}
.elo2 {
  animation: elo2 5s ease infinite alternate;
  transform-origin: center center;
  transform-box: fill-box;
}

@keyframes elo2 {
  0% {
    transform: rotateX(0deg) rotateY(0deg) rotate(0deg);
  }
  100% {
    transform: rotateX(30deg) rotateY(180deg) rotate(360deg);
  }
}
.elo3 {
  animation: elo3 5s ease infinite alternate;
  transform-origin: center center;
  transform-box: fill-box;
}

@keyframes elo3 {
  0% {
    transform: rotateY(0deg) rotateZ(0deg) rotate(0deg);
  }
  100% {
    transform: rotateY(-120deg) rotateZ(90deg) rotate(720deg);
  }
}
.btn-white {
  display: inline-block;
  color: #030917;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  transition: 0.6s ease;
  padding: 24px 96px 24px 96px;
  text-align: center;
  position: relative;
  background-color: rgba(221, 227, 237, 0.5);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border-radius: 40px;
  border: 2px solid rgba(255, 255, 255, 0);
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.3);
  position: relative;
  transition: 0.7s ease;
  font-family: "Gabarito", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 18px;
  line-height: 150%;
  font-weight: 300;
}
@media screen and (max-width: 960px) {
  .btn-white {
    font-family: "Gabarito", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 16px;
    line-height: 150%;
    font-weight: 300;
  }
}
.btn-white::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -18px;
  width: 56px;
  height: 56px;
  transform: translate(-50%, -50%);
  background: rgb(239, 246, 255);
  box-shadow: -5px -7px 14px 0 rgba(115, 141, 176, 0.7) inset, 2px 2px 8px 0 rgba(2, 9, 27, 0.2) inset;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
  background-image: url("../../svg/icon-arrow-right-ios.svg");
  background-position: center center;
  background-repeat: no-repeat;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  transition: 0.5s ease;
}
.btn-white .icon-ia {
  position: absolute;
  top: 50%;
  left: 40px;
  padding: 4px;
  width: 56px;
  height: 56px;
  transform: translate(-50%, -50%) rotate(0deg);
  border-radius: 50%;
  border: 2px solid rgba(221, 227, 237, 0.1);
  background-color: rgb(27, 32, 48);
  box-shadow: -4px -8px 16px 0 rgba(3, 7, 17, 0.7) inset, 3px 3px 8px 0 rgba(0, 0, 0, 0.7) inset;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.8));
}
.btn-white:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.btn-white:hover::before {
  transform: translate(-50%, -50%) rotate(675deg);
}

.btn-small {
  display: inline-block;
  color: #F0F2F7;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.7);
  transition: 0.6s ease;
  padding: 16px 64px 16px 64px;
  text-align: center;
  position: relative;
  background-color: rgba(221, 227, 237, 0.15);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border-radius: 40px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.4);
  position: relative;
  transition: 0.7s ease;
  font-family: "Gabarito", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  line-height: 150%;
  font-weight: 300;
}
@media screen and (max-width: 960px) {
  .btn-small {
    font-family: "Gabarito", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 16px;
    line-height: 150%;
    font-weight: 300;
  }
}
.btn-small::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -12px;
  width: 36px;
  height: 36px;
  transform: translate(-50%, -50%);
  background: rgb(239, 246, 255);
  box-shadow: -5px -7px 14px 0 rgba(115, 141, 176, 0.7) inset, 2px 2px 8px 0 rgba(2, 9, 27, 0.2) inset;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
  background-image: url("../../svg/icon-arrow-right-ios.svg");
  background-position: center center;
  background-repeat: no-repeat;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  transition: 0.5s ease;
}
.btn-small .icon-ia {
  position: absolute;
  top: 50%;
  left: 28px;
  padding: 4px;
  width: 40px;
  height: 40px;
  transform: translate(-50%, -50%) rotate(0deg);
  border-radius: 50%;
  border: 2px solid rgba(221, 227, 237, 0.1);
  background-color: rgb(27, 32, 48);
  box-shadow: -4px -8px 16px 0 rgba(3, 7, 17, 0.7) inset, 3px 3px 8px 0 rgba(0, 0, 0, 0.7) inset;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.8));
}
.btn-small:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.btn-small:hover::before {
  transform: translate(-50%, -50%) rotate(675deg);
}

.link-transparent {
  background-color: rgba(221, 227, 237, 0.15);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border-radius: 40px;
  padding: 8px 16px;
  border: 2px solid rgba(255, 255, 255, 0);
}
.link-transparent:hover {
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.link-external {
  display: inline-block;
  color: #F0F2F7;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.7);
  transition: 0.6s ease;
  padding: 16px 64px 16px 64px;
  text-align: center;
  position: relative;
  background-color: rgba(221, 227, 237, 0.15);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border-radius: 40px;
  border: 2px solid rgba(255, 255, 255, 0);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4);
  position: relative;
  transition: 0.7s ease;
  font-family: "Gabarito", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  line-height: 150%;
  font-weight: 300;
}
@media screen and (max-width: 960px) {
  .link-external {
    font-family: "Gabarito", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 16px;
    line-height: 150%;
    font-weight: 300;
  }
}
.link-external::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 30px;
  width: 40px;
  height: 40px;
  transform: translate(-50%, -50%) rotate(0deg);
  border-radius: 50%;
  border: 2px solid rgba(221, 227, 237, 0.1);
  background-color: rgb(27, 32, 48);
  box-shadow: -4px -8px 16px 0 rgba(3, 7, 17, 0.7) inset, 3px 3px 8px 0 rgba(0, 0, 0, 0.7) inset;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.8));
  background-image: url("../../svg/icon-eye-white.svg");
  background-position: center center;
  background-repeat: no-repeat;
  transition: 0.5s ease;
}
.link-external::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -12px;
  width: 36px;
  height: 36px;
  transform: translate(-50%, -50%);
  background: rgb(239, 246, 255);
  box-shadow: -5px -7px 14px 0 rgba(115, 141, 176, 0.7) inset, 2px 2px 8px 0 rgba(2, 9, 27, 0.2) inset;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
  background-image: url("../../svg/icon-externallink.svg");
  background-size: 60%;
  background-position: center center;
  background-repeat: no-repeat;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  transition: 0.5s ease;
}
.link-external:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.link-external:hover::before {
  transform: translate(-50%, -50%) rotate(675deg);
}

.link {
  display: inline-block;
  color: #F0F2F7;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.7);
  transition: 0.6s ease;
  padding: 18px 64px 18px 64px;
  text-align: center;
  position: relative;
  background-color: rgba(18, 25, 43, 0.9);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border-radius: 40px;
  border: 2px solid rgba(255, 255, 255, 0);
  position: relative;
  transition: 0.7s ease;
  font-family: "Gabarito", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  line-height: 150%;
  font-weight: 300;
}
@media screen and (max-width: 960px) {
  .link {
    font-family: "Gabarito", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 16px;
    line-height: 150%;
    font-weight: 300;
  }
}
.link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -8px;
  width: 40px;
  height: 40px;
  background-image: url("../../svg/icon-arrow-right.svg");
  background-position: center center;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  transition: 0.5s ease;
}
.link::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 30px;
  width: 40px;
  height: 40px;
  background-image: url("../../svg/icon-eye-white.svg");
  background-position: center center;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  background-color: rgba(24, 80, 225, 0.95);
  border-radius: 50%;
  transition: 0.5s ease;
}
.link:hover {
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.link:hover::before {
  transform: translate(-50%, -50%) rotate(675deg);
}
.link:hover::after {
  transform: translate(-50%, -50%) rotate(180deg);
}

.btn-secondary {
  display: inline-block;
  color: #F0F2F7;
  transition: 0.6s ease;
  padding: 18px 40px;
  text-align: center;
  border: 0;
  background: transparent;
  border: 2px solid #293140;
  border-radius: 12px;
  font-family: "Gabarito", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  line-height: 150%;
  font-weight: 300;
}
@media screen and (max-width: 960px) {
  .btn-secondary {
    font-family: "Gabarito", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 16px;
    line-height: 150%;
    font-weight: 300;
  }
}
.btn-secondary:hover {
  border: 2px solid #293140;
  background: #0C1221;
}

a {
  text-decoration: none;
  color: #F0F2F7;
  transition: 0.5s ease;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}
a:hover {
  opacity: 0.8;
}

.underline {
  position: relative;
}
.underline::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 80%;
  height: 1px;
  transform: translate(-50%, -50%);
  background-color: #F0F2F7;
  transition: 0.3s ease;
}
.underline:hover::after {
  width: 100%;
}

.link-footer {
  padding: 8px 8px 8px 8px;
  transition: 0.7s ease;
}
.link-footer:hover {
  padding: 8px 8px 8px 16px;
}

input {
  accent-color: #4AA6F7;
}

input, select, option, textarea {
  padding: 16px 16px;
  background-color: rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 40px;
  color: #F0F2F7;
  width: 100%;
  transition: 0.5s ease;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}
input:hover, select:hover, option:hover, textarea:hover {
  border: 2px solid rgba(255, 255, 255, 0.4);
}
input:focus, select:focus, option:focus, textarea:focus {
  background-color: rgba(0, 0, 0, 0.85);
  border: 2px solid rgba(24, 80, 225, 0.8);
}

.label-error {
  color: #F03D3D;
  text-align: right;
  display: none;
}

.label-active {
  display: block;
}

.border-error {
  background-color: #12192B;
  border: 2px solid #F03D3D;
}

.border-success {
  background-color: #12192B;
  border: 2px solid #0BB07B;
}

input[type=date], select, option {
  height: 44px;
}

.box-form {
  min-width: 420px;
}
@media screen and (max-width: 960px) {
  .box-form {
    max-width: 420px;
    min-width: 300px;
  }
}

/*
select{
  appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
*/
/* Container */
.tooltip {
  position: relative;
  color: #1850E1;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
}
.tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px); /* espaço da seta */
  transform: translateX(-50%) translateY(5px);
  background: #0c0c0f;
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 400;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 100;
  /* Sombra craft design */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35), 0 4px 10px rgba(0, 0, 0, 0.2);
}
.tooltip::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 8px solid #0c0c0f;
  opacity: 0;
  transition: opacity 0.25s ease;
}

/* Tooltip exibida no hover */
.tooltip:hover::after,
.tooltip:hover::before {
  opacity: 1;
}

/* Animação final */
.tooltip:hover::after {
  transform: translateX(-50%) translateY(0);
}

.line-1 {
  animation: line1 4s ease 5s infinite;
  opacity: 0;
}
@media screen and (max-width: 960px) {
  .line-1 {
    display: none;
  }
}

@keyframes line1 {
  0%, 45% {
    opacity: 0;
    transform: translate3d(0, 1500px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 1500px, 0);
  }
  95% {
    opacity: 1;
  }
  100% {
    transform: translate3d(0, -1500px, 0);
    opacity: 0;
  }
}
.line-2 {
  animation: line2 4s ease 6s infinite;
  opacity: 0;
}
@media screen and (max-width: 960px) {
  .line-2 {
    display: none;
  }
}

@keyframes line2 {
  0%, 45% {
    opacity: 0;
    transform: translate3d(-1800px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-1800px, 0, 0);
  }
  95% {
    opacity: 1;
  }
  100% {
    transform: translate3d(1500px, 0, 0);
    opacity: 0;
  }
}
.star-1 {
  animation: pulse 2s ease infinite alternate;
  opacity: 0;
}
@media screen and (max-width: 960px) {
  .star-1 {
    animation: none;
    opacity: 1;
  }
}

.star-2 {
  animation: pulse 2s ease infinite 1s alternate;
  opacity: 0;
}
@media screen and (max-width: 960px) {
  .star-2 {
    animation: none;
    opacity: 1;
  }
}

.star-3 {
  animation: pulse 2s ease infinite 1.5s alternate;
  opacity: 0;
}
@media screen and (max-width: 960px) {
  .star-3 {
    animation: none;
    opacity: 1;
  }
}

@keyframes pulse {
  0%, 10% {
    opacity: 0;
  }
  90%, 100% {
    opacity: 1;
  }
}
.fig2-circle1 {
  animation: loopcircle 7s ease 0s infinite alternate;
  transform-origin: center center;
  transform-box: fill-box;
}

.fig2-circle2 {
  animation: loopcircle 7s ease 0.3s infinite alternate;
  transform-origin: center center;
  transform-box: fill-box;
}

.fig2-circle3 {
  animation: loopcircle 7s ease 0.6s infinite alternate;
  transform-origin: center center;
  transform-box: fill-box;
}

.fig2-circle4 {
  animation: loopcircle 7s ease 0.9s infinite alternate;
  transform-origin: center center;
  transform-box: fill-box;
}

.fig2-circle5 {
  animation: loopcircle 7s ease 1.2s infinite alternate;
  transform-origin: center center;
  transform-box: fill-box;
}

@keyframes loopcircle {
  0% {
    transform: rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: rotateX(0deg) rotateY(180deg);
  }
  100% {
    transform: rotateX(180deg) rotateY(0deg);
  }
}
.screen-loading {
  width: 100%;
  height: 100svh;
  background-color: #030917;
  filter: blur(0.2px);
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.loader {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #030917;
  position: relative;
}
.loader::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #F0F2F7;
  box-shadow: 0px 0px 200px rgba(83, 139, 240, 0.6), 0px 0px 120px #538BF0, 0px 0px 88px #538BF0, 0px 0px 10px #538BF0, 0px 0px 5px #538BF0;
  filter: blur(1px);
  opacity: 0;
  z-index: -1;
  animation: loader 4s ease-in-out forwards;
}

@keyframes loader {
  0%, 15% {
    opacity: 0;
    transform: scale(1.15) translate3d(-8px, 0, 0);
  }
  60%, 80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1.15) translate3d(0px, 0, 0);
  }
}
.bar-loader {
  width: 96px;
  height: 2px;
  margin-top: 40px;
  background-color: rgba(255, 255, 255, 0);
  position: relative;
}
.bar-loader::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 3px 3px 4px 0 rgba(255, 255, 255, 0.25) inset, 0 0 36px 0 rgba(17, 65, 189, 0.9), 0 0 16px 0 rgba(17, 65, 189, 0.9), 0 0 4px 0 rgb(17, 65, 189);
  animation: bar-loader 4.5s ease forwards;
}

@keyframes bar-loader {
  0%, 15% {
    width: 0;
    opacity: 0;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}
.abstract {
  animation: abstract 16s ease-in-out infinite;
}

.svg-abstract {
  position: absolute;
  top: -20%;
  left: 0;
}
@media screen and (max-width: 1440px) and (min-width: 1268px) {
  .svg-abstract {
    top: 5%;
    left: 0;
  }
}
@media screen and (max-width: 1268px) and (min-width: 620px) {
  .svg-abstract {
    top: 10%;
    left: 0;
  }
}
@media screen and (max-width: 960px) {
  .svg-abstract {
    top: 5%;
    left: 0;
  }
}

@keyframes abstract {
  0% {
    d: path("M-118 725C300 560 520.475 676.889 788 702C1274 747.617 712.324 193.19 524 664C324 1164 2442 574 2096 290C1704.37 -31.457 1912 1154 2648 523"); /**/
  }
  25% {
    d: path("M-118 725C300 560 536.475 576.889 804 602C1912 706 524 1171.08 524 664C524 44 2832 828 2096 290C1672.39 -19.652 1912 1154 2648 523"); /**/
  }
  50% {
    d: path("M-118 725C300 560 553.683 927.884 790 800C1762 274 220.903 409.449 690 602C1618 982.919 1618 1010 1724 492C1774.49 245.256 2134 858 2648 523"); /**/
  }
  75% {
    d: path("M-118 724.999C300 560 476 820 792 650C1418.75 312.825 1352 510 1170 782C894.996 1192.99 1578 1078 1684 560C1734.49 313.256 2134 857.999 2648 523"); /**/
  }
  100% {
    d: path("M-118 725C300 560 520.475 676.889 788 702C1274 747.617 712.324 193.19 524 664C324 1164 2442 574 2096 290C1704.37 -31.457 1912 1154 2648 523"); /**/
  }
}
.accordion-button {
  display: block;
  width: 100%;
  border: none;
  outline: none;
  cursor: pointer;
  text-align: left;
  background-color: transparent;
  position: relative;
  padding: 24px 36px 24px 40px;
  border-bottom: 2px solid #12192B;
  transition: 0.7s ease;
  color: #E4EAF2;
  font-family: "Gabarito", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 18px;
  line-height: 150%;
  font-weight: 300;
}
@media screen and (max-width: 960px) {
  .accordion-button {
    font-family: "Gabarito", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 16px;
    line-height: 150%;
    font-weight: 300;
  }
}
.accordion-button::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 32px;
  height: 32px;
  transform: translate(0, -50%);
  transition: 1s ease;
  background-image: url("../svg/icon-check3.svg");
  background-size: cover;
  background-repeat: no-repeat;
}
.accordion-button::before {
  content: "";
  display: block;
  position: absolute;
  top: 40%;
  right: 24px;
  width: 20px;
  height: 20px;
  border-radius: 2px;
  transition: 0.5s ease;
  background-image: url("../svg/icon-plus.svg");
  background-size: cover;
  background-repeat: no-repeat;
  transform: rotate(90deg);
}
.accordion-button:hover {
  padding-left: 48px;
}

.accordion-button-active {
  position: relative;
}
.accordion-button-active::before {
  transform: rotate(315deg);
}

.accordion-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease;
}
.accordion-content:target {
  overflow: auto;
  max-height: 300px;
}

.bg-hero {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  transition: 1s ease;
  z-index: -1;
}

.hero {
  height: 95vh;
}
@media screen and (max-width: 960px) {
  .hero {
    height: auto;
  }
}

.bg-hero-auto {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  transition: 1s ease;
  z-index: -1;
}

.hero-auto {
  height: auto;
}
@media screen and (max-width: 960px) {
  .hero-auto {
    height: auto;
  }
}

@media screen and (max-width: 960px) {
  .svg-bg-hero {
    transform: translate3d(0, 260px, 0) rotate(-90deg) scale(2);
  }
}

.bg-video {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bg-video::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(3, 9, 23, 0.7) 0%, rgba(3, 9, 23, 0.3) 48.56%, #030917 100%);
}
.bg-video video {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100% !important;
}

.div-video-background {
  position: relative;
  overflow: hidden;
  height: auto;
}
.div-video-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 200px;
  background: linear-gradient(180deg, rgba(3, 9, 23, 0.99) 0%, rgba(3, 9, 23, 0) 100%);
}
.div-video-background::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 200px;
  background: linear-gradient(0deg, rgba(3, 9, 23, 0.99) 0%, rgba(3, 9, 23, 0) 100%);
}
.div-video-background video {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100% !important;
  width: 100%;
  z-index: -1;
}

.video-background {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  z-index: -1;
  /*
  @include responsive(xl){
    video{
      object-fit: cover;
      width: 100%;
      //height: 100% !important;
    }
  }

  @include responsive(s){
    video{
      object-fit: cover;
      height: 100% !important;
      transform: rotate(90deg) translate3d(0,400px,0) scaleX(1.5);
    }
  }*/
}
.video-background video {
  height: 100% !important;
}

/*
.div-video-background{
  position: relative;
  overflow: hidden;
  //z-index: -1;
  height: auto;

  &::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;

    width: 100%;
    height: 200px;
    //border: 1px solid red;

    background: linear-gradient(180deg, rgba(3, 9, 23, 0.99) 0%, rgba(3, 9, 23, 0.0) 100%);
  }

  &::before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    pointer-events: none;

    width: 100%;
    height: 200px;
    //border: 1px solid red;

    background: linear-gradient(0deg, rgba(3, 9, 23, 0.99) 0%, rgba(3, 9, 23, 0.0) 100%);
  }
}
*/
/*
.video-background{
  position: absolute;
  top: 0%;
  left: 0%;

  width: 100%;

  //transform: translate(-50%, -50%);
  z-index: -1;

  video{
    object-fit: cover;
    //width: 100%;
    height: 100% !important;
  }

  @include responsive(xl){
    video{
        object-fit: cover;
        width: 100%;
        //height: 100% !important;
    }
  }

  @include responsive(s){
    video{
      object-fit: cover;
      height: 100% !important;
      transform: rotate(90deg) translate3d(0,400px,0) scaleX(1.5);
    }
  }
}
*/
.video-container {
  position: relative;
  display: inline-block;
  width: 100%;
}

video {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Botão de play */
.video-play-btn {
  position: absolute;
  z-index: 10;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  font-size: 28px;
  color: white;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  transition: 0.7s ease;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 960px) {
  .video-play-btn {
    width: 64px;
    height: 64px;
  }
}
.video-play-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(3x);
          backdrop-filter: blur(3x);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
  transform: translate(-50%, -50%) scale(1.03);
}

.video-play-btn.hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  background-color: #030917;
}
body::-webkit-scrollbar {
  padding-right: 4px;
  width: 20px;
  background: transparent;
}
body::-webkit-scrollbar-track {
  background: transparent; /* color of the tracking area */
}
body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #293140;
  border: 6px solid #030917;
}

.border {
  border: 2px solid red;
}

.border-radius {
  border-radius: 8px;
}

.block {
  display: block;
}

.hidden {
  overflow: hidden;
}

.relative {
  position: relative;
}

svg, img {
  width: 100%;
}

.bb-white {
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.bt-white {
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.bl-white {
  border-left: 2px solid rgba(255, 255, 255, 0.1);
}

.br-white {
  border-right: 2px solid rgba(255, 255, 255, 0.1);
}

.bb-gray {
  border-bottom: 2px solid rgba(128, 128, 128, 0.3);
}

.bt-gray {
  border-top: 2px solid rgba(128, 128, 128, 0.3);
}

.bl-gray {
  border-left: 2px solid rgba(128, 128, 128, 0.3);
}

.br-gray {
  border-right: 2px solid rgba(128, 128, 128, 0.3);
}

.bb-black {
  border-bottom: 2px solid rgba(0, 0, 0, 0.3);
}

.bt-black {
  border-top: 2px solid rgba(0, 0, 0, 0.3);
}

.bl-black {
  border-left: 2px solid rgba(0, 0, 0, 0.3);
}

.br-black {
  border-right: 2px solid rgba(0, 0, 0, 0.3);
}/*# sourceMappingURL=style.css.map */