@import url("https://fonts.googleapis.com/css2?family=Baloo+Da+2:wght@400;500;600;700&family=JetBrains+Mono:wght@100;200;300;400&family=Josefin+Slab:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=Mulish:ital,wght@0,200;0,300;0,400;0,500;1,200;1,300;1,400&display=swap");

@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css);

:root {
  --shadow-color: 0deg 0% 0%;
  --shadow-elevation-low:
    0px 1px 0.8px hsl(var(--shadow-color) / 0.31),
    0px 1.5px 1.1px -2.5px hsl(var(--shadow-color) / 0.21),
    0px 5px 3.8px -5px hsl(var(--shadow-color) / 0.1);
  --shadow-elevation-medium:
    0px 1px 0.8px hsl(var(--shadow-color) / 0.26),
    0px 1.4px 1px -1.2px hsl(var(--shadow-color) / 0.21),
    0px 4px 3px -2.5px hsl(var(--shadow-color) / 0.16),
    0px 11.1px 8.3px -3.7px hsl(var(--shadow-color) / 0.11),
    0px 25px 18.8px -5px hsl(var(--shadow-color) / 0.05);
  --shadow-elevation-high:
    0px 1px 0.8px hsl(var(--shadow-color) / 0.24),
    0px 1.2px 0.9px -0.6px hsl(var(--shadow-color) / 0.22),
    0px 2.6px 2px -1.1px hsl(var(--shadow-color) / 0.2),
    0px 6.5px 4.9px -1.7px hsl(var(--shadow-color) / 0.17),
    0px 14.1px 10.6px -2.2px hsl(var(--shadow-color) / 0.15),
    0px 26.5px 19.9px -2.8px hsl(var(--shadow-color) / 0.12),
    0px 45.1px 33.8px -3.3px hsl(var(--shadow-color) / 0.1),
    -0.1px 71.1px 53.3px -3.9px hsl(var(--shadow-color) / 0.07),
    -0.1px 105.6px 79.2px -4.4px hsl(var(--shadow-color) / 0.05),
    -0.1px 150px 112.5px -5px hsl(var(--shadow-color) / 0.02);

    --transition: all 0.4s ease-in-out;
}

/* variedades =============================== */
* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  line-height: 1.5;
}

body {
  background-color: #ffffff;
  overflow-x: hidden;
  width: 100%;
}

html {
  scroll-behavior: smooth;
  width: 100%;
}

/* DATA-ANIME ============= */
[data-anime] {
  opacity: 0;
  transition: 0.3s;
}

[data-anime="up"] {
  opacity: 0;
  transform: translate3d(0px, 250px, 0px);
}

[data-anime="left"] {
  opacity: 0;
  transform: translate3d(10px, 0px, 0px);
}
[data-anime="right"] {
  opacity: 0;
  transform: translate3d(-10px, 0px, 0px);
}
[data-anime].animate {
  opacity: 1;
  transform: translate3d(0px, 0px, 0px);
}

/* ========================== */
.grain {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  pointer-events: none;
  z-index: 1;
  transform: translateZ(0);
}
.grain:before {
  content: "";
  top: -10rem;
  left: -10rem;
  width: calc(100% + 20rem);
  height: calc(100% + 20rem);
  z-index: 1;
  position: fixed;
  background-image: url(https://upload.wikimedia.org/wikipedia/commons/5/5c/Image_gaussian_noise_example.png);
  opacity: 0.15;
  pointer-events: none;
  -webkit-animation: noise 1s steps(2) infinite;
  animation: noise 1s steps(2) infinite;
}
/* headers========================== */
.session-header h1,
.contact-right h1,
.Projects-header h1 {
  font-family: var(--font-tertiary);
  text-transform: uppercase;
  padding: 1rem;
  margin: 1rem;
  font-size: 30px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.493);
  text-align: center;
}
/* ================================ */

/* ============= hamburger ============= */
.hamburger {
  background-color: rgba(255, 0, 0, 0);
  width: 2rem;
  height: 2rem;
  position: fixed;
  z-index: 100;
  right: 2rem;
  top: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  cursor: pointer;
  z-index: 20000000000 !important;
}

/*   hamburger lines */
.line {
  width: 100%;
  height: 0.1rem;
  background-color: white;
  transition: var(--transition);
  box-shadow: 1px 2px 4px 0px rgb(0 0 0 / 72%);
}

/* ============================================== */

/* .ButtonCustom custom */
.ButtonCustom {
  padding: 1.3em 3em;
  font-family: var(--font-tertiary);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 500;
  color: #000;
  background-color: #fff;
  border: none;
  border-radius: 45px;
  box-shadow: var(--shadow-elevation-medium);
  transition: var(--transition);
  cursor: pointer;
  outline: none;
}

.ButtonCustom:hover {
  background-color: #f50000;
  box-shadow: var(--shadow-elevation-high);
  color: #fff;
  transform: translateY(-7px);
}

.ButtonCustom:active {
  transform: translateY(-1px);
}

/* ========================================================= */

/* header */

.hero-container {
  width: 100%;
/*   height: 100vh; */
  height: clamp(500px, 100vh, 1000px);
/*   height: 0; */
  overflow: hidden;
  position: relative;
  z-index: 10;
}
.img-wrapper {
  width: 100%;
  height: 100%;

  background-color: rgba(2, 2, 2, 0.952);
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  animation: zoom 25s;
}

/* animation background */

.banner {
  position: absolute;
  top: 30%;
  left: 15%;
}

.banner h1 {
  color: white;
  font-size: 3.5rem;
  font-family: var(--font-tertiary);
  font-weight: 300;
  text-transform: uppercase;
  text-shadow: var(--shadow-elevation-high);
  line-height: 3.5rem;
  opacity: 0;
  animation: moveBanner 0.5s forwards;
  transition: var(--transition);
}

.banner p {
  font-family: var(--font-tertiary);
  font-size: 2rem;
  color: white;
  text-shadow: var(--shadow-elevation-high);
  line-height: 3.5rem;
  margin-bottom: 2rem;
  animation: moveBanner 0.7s forwards;
}
.banner #button-banner {
  animation: moveBanner 1s forwards;
}

/* animation dos componentes do banner */

/* =========================================================== */

/* animation sidebar - menu ==================================== */
.sidebar {
  width: 20rem;
  height: 100vh;
  background-color: rgb(182, 181, 181);
  position: fixed;
  top: 0;
  right: -20rem;
  transition: all 0.4s;
  z-index: 2000000000 !important;
  backdrop-filter: blur(19px) saturate(124%);
  -webkit-backdrop-filter: blur(19px) saturate(124%);
  background-color: rgba(255, 255, 255, 0.47);
}

.show-menu .sidebar {
  right: 0;
}

.menu {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -57%);
  text-align: center;
  text-transform: uppercase;
}

.hamburger span {
  position: absolute;
  right: 50px;
  width: 5rem;
  height: 2rem;
  padding: 0.4rem;
  background-color: rgb(221, 220, 220);
  text-align: center;
  font-family: var(--font-primary);
  text-transform: uppercase;
  border-radius: 18px;
  opacity: 0;
}

.hamburger span::before {
  content: " ";
  position: absolute;
  border-right: 0.5rem solid transparent;
  border-top: 0.5rem solid transparent;
  border-left: 0.5rem solid rgb(221, 220, 220);
  border-bottom: 0.5rem solid transparent;
  left: 5.7rem;
  bottom: 0.9rem;
}

/* temporary span fix */
@media (min-width: 821px) {
  .show-menu .hamburger:hover span {
    opacity: 1;
    transition-delay: 1s;
  }
}

/* animation lines menu */

.show-menu #line2 {
  transform: translate(-2px, -15px);
  background-color: rgba(255, 255, 255, 0.418);
}

.show-menu #line1 {
  transform: rotate(45deg) translate(0.3rem, 0.44rem);
}
.show-menu #line3 {
  transform: rotate(-45deg) translate(0.3rem, -0.44rem);
}

.menu-link {
  font-family: var(--font-tertiary);
  font-size: 2rem;
  color: rgba(13, 14, 13, 0.801);
  transition: color 1s;
}

.menu-link:hover {
  color: rgb(255, 254, 254);
}

.menu-item {
  margin: 1.5em;
}

/* animation items menu =================================== */
.show-menu #menu-1 {
  animation: moveMenu 0.4s;
}
.show-menu #menu-2 {
  animation: moveMenu 0.6s;
}
.show-menu #menu-3 {
  animation: moveMenu 0.8s;
}
.show-menu #menu-4 {
  animation: moveMenu 1s;
}
.show-menu #menu-5 {
  animation: moveMenu 1.3s;
}

/* =============================================================== */

/* redes sociais */

.social-media {
  position: absolute;
  bottom: 4rem;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
}

.social-media i {
  background-color: transparent;
  color: black;
  height: 2.5rem;
  font-size: 2.7rem;
  transition: color 1s;
}

.social-media i:hover {
  color: rgb(187, 3, 3);
}

/* animation redes sociais */
.show-menu #social-1 {
  animation: moveBanner 1.6s;
}
.show-menu #social-2 {
  animation: moveBanner 1.8s;
}
.show-menu #social-3 {
  animation: moveBanner 2s;
}
/* ================================================== */

/* Knowledge=============================== */
.Knowledge {
  display: grid;
  grid-template-columns: repeat(16, 1fr);
  grid-template-rows: repeat(6, 5.8rem);
  row-gap: 3rem;
}
.knowledge-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  height: 100%;
  width: 100%;
  z-index: 10;
}
.duel-knowledge-icons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10%;
}

.knowledge:nth-child(1) {
  grid-column: 4 / 7;
  grid-row: 1 / 3;
}

.knowledge:nth-child(2) {
  grid-column: 3 / 6;
  grid-row: 3 / 5;
}
.knowledge:nth-child(3) {
  grid-column: 4 / 7;
  grid-row: 5 / -1;
}
.knowledge:nth-child(4) {
  grid-column: 11 / 14;
  grid-row: 1 / 3;
}
.knowledge:nth-child(5) {
  grid-column: 12 / 15;
  grid-row: 3 / 5;
}
.knowledge:nth-child(6) {
  grid-column: 11 / 14;
  grid-row: 5 / -1;
}

.imagemFundo {
  grid-column: 7/ 11;
  grid-row: 3 / 6;
  font-size: 20vw;
  text-align: center;
}

.session-Knowledge {
  background-color: #747d7e;
  background-image:
    linear-gradient(0deg, #fafafa 0%, #a2aeb1 70%);
  margin-bottom: 3rem;
  -webkit-box-shadow: 1px 12px 71px -13px rgba(0, 0, 0, 0.55);
  -moz-box-shadow: 1px 12px 71px -13px rgba(0, 0, 0, 0.55);
  box-shadow: 1px 12px 71px -13px rgba(0, 0, 0, 0.55);
}

.knowledge {
  display: flex;
  flex-direction: column;
  text-align: center;
  font-family: var(--font-tertiary);
  font-size: 14px;
  z-index: 10;
}

.knowledge i {
  font-size: 7rem;
  transition: all 0.5s;
}

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

/* Projects========================================== */
.session-Projects {
  width: 100%;
  margin-bottom: 3rem;
  -webkit-box-shadow: 1px 12px 71px -13px rgba(0, 0, 0, 0.55);
  -moz-box-shadow: 1px 12px 71px -13px rgba(0, 0, 0, 0.55);
  box-shadow: 1px 12px 71px -13px rgba(0, 0, 0, 0.55);
}
.Projects-header {
  display: flex;
  justify-content: center;
  background-color: #fafafa;
  color: rgb(37, 37, 37);
  z-index: 10;
}

.cards {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  padding-bottom: 8rem;
  padding-top: 3rem;
  background-color: #ededf2;
  background-image: 
    linear-gradient(180deg, #fafafa 0%, #dadbdb 100%);
    
}

.card {
  width: 20rem;
  height: 30rem;
  margin: 1rem;
  border: 1px transparent;
  border-radius: 30px;
  -webkit-box-shadow: 3px 0px 50px -3px rgba(0, 0, 0, 0.41);
  -moz-box-shadow: 3px 0px 50px -3px rgba(0, 0, 0, 0.41);
  box-shadow: 3px 0px 50px -3px rgba(0, 0, 0, 0.41);
  z-index: 10;
}

.card-img-wrapper {
  width: 100%;
  height: 100%;
  border: inherit;
  border-radius: inherit;
}
.card-img-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border: inherit;
  border-radius: inherit;
}

.background {
  width: 20rem;
  height: 30rem;
  position: relative;
  bottom: 30rem;
  border: inherit;
  border-radius: inherit;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-info {
  display: flex;
  height: 75%;
  width: 75%;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 1%;
  border-radius: inherit;

  backdrop-filter: blur(19px) saturate(124%);
  -webkit-backdrop-filter: blur(19px) saturate(124%);
  background-color: rgba(255, 255, 255, 0.47);
  padding: 1rem;

  -webkit-box-shadow: 3px 0px 37px 6px rgba(0, 0, 0, 0.55);
  -moz-box-shadow: 3px 0px 37px 6px rgba(0, 0, 0, 0.55);
  box-shadow: 3px 0px 37px 6px rgba(0, 0, 0, 0.55);

  position: relative;

  font-family: var(--font-tertiary);
  color: rgb(46, 46, 46);
  opacity: 1;
}

/* 
    .card-info p,
    .card-info h3,
    .card-info h2 {
        margin-bottom: .2rem;
    } */

.card-info h2 {
  font-size: clamp(15px, 5vw, 25px);
  font-weight: 1000;
}

.card-info h3 {
  font-size: clamp(10px, 2rem, 13px);
  font-weight: 700;
  text-align: left;
}

.card-info p {
  font-size: clamp(12px, 1.2vw, 15px);
  text-align: left;
}

.card-info button {
  bottom: 0;
  position: absolute;
}

.background:hover {
  opacity: 1;
  background-color: rgba(182, 182, 182, 0.651);
  animation: opacity 0.5s;
}

.card-info .ButtonSend {
  position: relative;
  margin-top: 2rem;
  font-size: 10px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1em 2.5em;
  display: inline-block;
  border-radius: 12px;
  transition: all 0.2s;
  border: none;
  font-family: inherit;
  font-weight: 500;
  color: black;
  background-color: white;
  cursor: pointer;
}

.card-info .ButtonSend:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card-info .ButtonSend:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.card-info .ButtonSend::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 12px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
}

.card-info .ButtonSend::after {
  background-color: #fff;
}

.card-info .ButtonSend:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}

/* Contact=========================== */
section {
  overflow: hidden;
}
.section-contact {
  width: 100%;
  height: 100vh;
  margin-bottom: 3rem;
  background-color: #a4a4a4;
  background-image: 
    linear-gradient(0deg, #2a454eee 0%, #dedede 100%);
  -webkit-box-shadow: 1px 12px 71px -13px rgba(0, 0, 0, 0.55);
  -moz-box-shadow: 1px 12px 71px -13px rgba(0, 0, 0, 0.55);
  box-shadow: 1px 12px 71px -13px rgba(0, 0, 0, 0.55);
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-wrapper {
  width: 70%;
  height: 30rem;
  display: flex;
  transition: all 1s;
  z-index: 10;
}

.contact-wrapper:hover {
  border-radius: 0% 100% 13% 87% / 100% 0% 100% 0%;
}

.contact-left {
  background-image: 
    linear-gradient(rgba(119, 129, 141, 0.555), rgba(34, 66, 70, 0.548)),
    url(../images/bgleft.jpg);
  background-size: cover;
  width: 25%;
  height: 100%;
}

.contact-right {
  width:100%;
  background-color: #eee;
  padding: 1rem 3rem 3rem 3rem;
  border-radius: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.form-contact {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.field {
  background: transparent;
  border: none;
  border-bottom: 2px dashed rgb(0, 0, 0);
  width: 20rem;
  font-size: 1rem;
  font-family: var(--font-tertiary);
  outline: none;
  margin: 2rem;
}

.input-group {
  position: relative;
}

.field-label {
  position: absolute;
  top: 0.5rem;
  left: 0;
  font-family: var(--font-tertiary);
  text-transform: uppercase;
  font-size: 1rem;

  transition: all 0.3s;
}
.form-contact button {
  margin-top: 0;
}

.field:focus ~ label {
  top: 0;
  font-size: 1rem;
}

.field:focus {
  border-bottom: 2px solid grey;
}

.input-group textarea {
  max-width: 24rem;
  max-height: 4rem;
}

/* ==================About Me================= */

.section-about-me {
  width: 100%;
  height: 100vh;
  background-image: url(../images/bgs.jpg);
  object-fit: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: var(--font-tertiary);
}

.about-me-wrapper {
  background-color: #3c3c3d31;
  background-image: 
    linear-gradient(
      315deg,
      #3c3c3d8a 0%,
      #4b647185 30%,
      #6c8d98 66%,
      #8fc2cf 100%
    );

  width: 60%;
  height: 35rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
  z-index: 10;
}

.header-about-me {
  /* background-color: #eee; */
  /* position: relative;
  bottom: 7.5rem;
  width: 100%;
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 18px;
  text-transform: uppercase; */
  
  font-family: var(--font-tertiary);
  text-transform: uppercase;
  padding: 1rem;
  margin: 1rem;
  font-size: 30px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.493);
  text-align: center;
}


.about-me-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 75%;
  width: 75%;
  /* background: #eee; */
  backdrop-filter: blur(19px) saturate(124%);
  -webkit-backdrop-filter: blur(19px) saturate(124%);
  background-color: #ffffff78;

  -webkit-box-shadow: 3px 0px 37px 6px rgba(0, 0, 0, 0.55);
  -moz-box-shadow: 3px 0px 37px 6px rgba(0, 0, 0, 0.55);
  box-shadow: 3px 0px 37px 6px rgba(0, 0, 0, 0.55);
}

.about-me-text-wrapper {
  width: 60%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.about-me-text-wrapper p {
  font-size: clamp(9px, 2vw, 1rem);
  line-height: 1.5;
}

/* footer */
footer {
  background-color: #000;
  padding: 10% 5% 10% 5%;
  display: flex;
  flex-direction: r;
  justify-content: center;
  align-items: center;
  font-family: var(--font-tertiary);
  position: relative;
  z-index: 10;
}
.footer--area {
  /* margin: auto; */
  height: 100%;
  width: 100%;
  color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 5%;
}
.footer--item {
  flex: 1;
  
}
.footer-social {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: #ffffff29;
  height: 100px;
  width: 100%;
}
.footer-social a {
  display: block;
  width: 75%;
  height: 75%;
  background-color: rgb(0, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  margin-right: 10px;
  clip-path: circle();
  transition: var(--transition);
}
.footer-social a:hover {
  background-color: #80a1a0;
}
.footer-social img {
  height: 50%;
}
.footer--item.area2 {
  color: #999;
  line-height: 20px;
  font-size: 13px;
  background:#ffffff29;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100px;
  width: 100%;
}
.footer--item.area3 {
  height: 100px;
}
.footer--item.area3 form {
  background-color: #ffffff29;
  padding: 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.footer--item.area3 input {
  width: 100%;
  border: 0;
  background: transparent;
  border-bottom: 1px solid #ccc;
  outline: 0;
  color: #fff;
  font-size: 14px;
  margin-bottom: 5%;
}

#email::placeholder {
  font-family: var(--font-primary);
}


/* Media Queries */

@media (max-width: 580px) {
  .field {
    background: transparent;
    border: none;
    border-bottom: 2px dashed grey;
    width: 10rem;
    font-size: 1rem;
    font-family: var(--font-tertiary);
    outline: none;
    margin: 2rem;
  }
  .contact-left {
    display: none;
  }
  .contact-right {
    position: relative;
    transform: translateX(-4%);

    background-color: #eee;
    padding: 1rem 3rem 3rem 3rem;
    border-radius: inherit;
  }

  .Knowledge {
    row-gap: 0;
  }

  .knowledge:nth-child(1) {
    grid-column: 2 / 7;
    grid-row: 1 / 3;
  }

  .knowledge:nth-child(2) {
    grid-column: 1 / 6;
    grid-row: 3 / 5;
  }
  .knowledge:nth-child(3) {
    grid-column: 3 / 7;
    grid-row: 5 / -1;
  }
  .knowledge:nth-child(4) {
    grid-column: 11 / 14;
    grid-row: 1 / 3;
  }
  .knowledge:nth-child(5) {
    grid-column: 12 / 15;
    grid-row: 3 / 5;
  }
  .knowledge:nth-child(6) {
    grid-column: 11 / 14;
    grid-row: 5 / -1;
  }

  .about-me-wrapper {
    width: 22rem;
  }

  .footer--area {
    display: block;
  }

  .footer-social {
    justify-content: center;
    margin-bottom: 15px;
  }

  .footer--item.area2 {
    text-align: center;
    margin-bottom: 15px;
  }

  .qtde-page,
  .group-layout {
    width: 19rem;
    padding: 0.5rem;
  }

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

  .knowledge {
    background-color: red;
    width: 20rem;
    padding: 1rem;
    margin-bottom: 2rem;
    align-items: center;
    backdrop-filter: blur(13px) saturate(137%);
    -webkit-backdrop-filter: blur(13px) saturate(137%);
    background-color: rgba(137, 137, 137, 0.38);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.125);
    font-size: smaller;
  }

  .imagemFundo {
    display: none;
  }
}
@-webkit-keyframes noise {
  to {
    transform: translate3d(-7rem, 0, 0);
  }
}
@keyframes noise {
  0% {
    transform: translate3d(0, 9rem, 0);
  }
  10% {
    transform: translate3d(-1rem, -4rem, 0);
  }
  20% {
    transform: translate3d(-8rem, 2rem, 0);
  }
  30% {
    transform: translate3d(9rem, -9rem, 0);
  }
  40% {
    transform: translate3d(-2rem, 7rem, 0);
  }
  50% {
    transform: translate3d(-9rem, -4rem, 0);
  }
  60% {
    transform: translate3d(2rem, 6rem, 0);
  }
  70% {
    transform: translate3d(7rem, -8rem, 0);
  }
  80% {
    transform: translate3d(-9rem, 1rem, 0);
  }
  90% {
    transform: translate3d(6rem, -5rem, 0);
  }
  to {
    transform: translate3d(-7rem, 0, 0);
  }
}
