html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  scroll-behavior: smooth;
}

.wrapper {
  width: 100%;
  overflow: hidden;
}

img {
  display: block;
}

body {
  margin: 0;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow: hidden auto;
  overflow: auto;
  perspective: 200vw;
}

* {
  box-sizing: border-box;
}

h1 {
  margin: 0;
}

.logo {
  height: 8em;
  margin: auto;
  width: 100%;
  background: linear-gradient(to left, transparent, white 45%, white 55%, transparent);
}

.logoBanner {
  z-index: 1;
  display: flex;
  height: 8em;
}

.logoBanner:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 8em;
  z-index: -1;
  background: url("assets/bk.svg") center center repeat;
  background-position: 0 3.475em;
  background-size: auto 6.75em;
  opacity: 0.25;
}

.cardShowcase {
  margin: auto;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
  max-width: 80em;
  padding: 1em 1em 3em 1em;
}

@media only screen and (max-width: 700px) {
  .cardShowcase {
    grid-template-columns: repeat(auto-fill, minmax(9rem, 1fr));
  }
}
.cardShowcase-Item {
  padding: 0.5em;
}

.cardPreview {
  border-radius: 1em;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.06), 0 3px 6px rgba(0, 0, 0, 0.12);
  background: white;
  width: 100%;
  margin: 0;
  border: 1px solid transparent;
  pointer-events: none;
  will-change: transform, box-shadow, filter;
}

.big-card {
  z-index: 1;
  margin: auto;
  max-width: 26em;
  margin: 1em auto;
  padding: 1em 0;
  width: 100%;
  transform: rotateX(30deg);
  animation: test 4s cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
  transform-style: preserve-3d;
}
@keyframes test {
  0% {
    transform: rotateZ(-30deg) rotateY(0);
  }
  50% {
    transform: rotateZ(30deg) rotateY(180deg);
  }
  100% {
    transform: rotateZ(-30deg) rotateY(360deg);
  }
}
@keyframes test2 {
  0%, 5%, 45%, 55%, 95%, 100% {
    filter: brightness(1);
  }
  25% {
    filter: brightness(1.1);
  }
  75% {
    filter: brightness(0.9);
  }
}
.big-card .front, .big-card .back {
  border-radius: 2em;
  animation: test2 4s ease infinite;
  width: 100%;
  height: auto;
  border: 1px solid black;
}
.big-card .back {
  position: absolute;
  transform: translateY(-100%) rotateY(-180deg);
}

.card3d {
  transform: scale(1);
  background: transparent;
  perspective: 600px;
  transition: transform 100ms ease-out;
  width: 100%;
}

.card3d:hover {
  z-index: 1;
  transform: scale(1.2);
}
.card3d:hover .cardPreview {
  transform: translateY(2em);
  border: 1px solid #111;
}

.cumber {
  position: absolute;
  right: -2em;
  bottom: -3em;
}
.cumber-2 {
  width: 100%;
  max-width: 30em;
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  top: 2em;
  opacity: 0.1;
}

.t {
  position: relative;
}

.top {
  overflow: hidden;
  position: relative;
  color: #fff;
  padding: 2em;
  margin: auto;
  max-width: 40em;
  border-radius: 1em;
  background: radial-gradient(farthest-corner at 0 -50%, #01536c -15%, #27253d, #2f1436, #3c1211 120%);
}

.text {
  position: relative;
  z-index: 1;
}

.section {
  background: white;
  padding: 6em 1em;
  background: radial-gradient(farthest-corner at 0 -50%, #ec1e24 -15%, #dc354d, #f37647, #f6eb0f 120%);
}

.bubbles {
  position: absolute;
  top: 0;
  filter: url("#blob");
  left: 0;
  right: 0;
  height: 1.6em;
  width: 100%;
  background: #fff;
}

.bubble {
  position: absolute;
  left: var(--p, 50%);
  background: #fff;
  border-radius: 100%;
  animation: bubble-size var(--t, 4s) ease-in infinite var(--de, 0s), bubble-move var(--t, 4s) ease-in infinite var(--de, 0s);
  transform: translate(-50%, 100%);
}
@keyframes bubble-size {
  0%, 75% {
    width: var(--s, 10rem);
    height: var(--s, 10rem);
  }
  100% {
    width: 1rem;
    height: 1rem;
  }
}
@keyframes bubble-move {
  0% {
    bottom: -4rem;
  }
  100% {
    bottom: var(--d, 6rem);
  }
}

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