@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Miao&display=swap");
@font-face {
  font-family: Gobold;
  font-weight: bold;
  src: url(./static/Gobold_Bold.otf);
}
@font-face {
  font-family: Gobold;
  src: url(./static/Gobold_Regular.otf);
}
@font-face {
  font-family: "Roboto";
  src: url("./static/RobotoMono-VariableFont_wght.ttf");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.loader {
  height: 100vh;
  width: 100%;
  position: fixed;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: move-up-disappear 1s 3s forwards ease-in;
  font-family: Gobold;
  text-transform: uppercase;
}

.loader-logo {
  font-size: 8rem;
  color: white;
  opacity: 0;
  animation: appear 2s 0.3s forwards ease-in-out;
}

@keyframes move-up-disappear {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.main {
  overflow-x: hidden;
  display: block;
  opacity: 0;
  animation: appear 1s 4s forwards;
  font-family: Gobold;
}

.header {
  position: absolute;
  color: white;
  top: 0;
  height: 6rem;
  width: 100%;
  overflow-x: hidden;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem 0rem;
  z-index: 2;
  text-transform: uppercase;
  font-family: Gobold;
}

a:visited,
a:link,
a {
  color: white;
  text-decoration: none;
}

.navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.navbar__item {
  margin: 0 3rem 0;
  cursor: pointer;
  transition: all 0.3s;
}
.navbar__item:hover {
  color: gold;
}

.hero {
  height: 100vh;
  background-image: url(./static/intro.jpg);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  color: white;
  position: relative;
  z-index: -1;
  text-transform: uppercase;
}

.filter {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: rgba(181, 180, 180, 0.1);
}

.hero__content {
  position: absolute;
  opacity: 0;
  right: 10rem;
  top: 45vh;
  text-align: right;
  line-height: 4rem;
  animation: appear 1s 5s ease-in forwards;
  font-family: Gobold;
}

.hero__title {
  font-size: 4rem;
  line-height: 4rem;
}

.hero__desc {
  font-size: 2rem;
}

@keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.projects {
  height: 100vh;
  background-color: rgba(181, 180, 180, 0.1);
  display: grid;
  position: relative;
  text-transform: uppercase;
  font-family: Gobold;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

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

.item-text {
  z-index: 2;
  background-color: rgba(33, 33, 33, 0.85);
  padding: 1rem 2rem 1rem;
  border-radius: 2rem;
  margin: 0 2rem;
  cursor: pointer;
}
.item-text:hover {
  color: gold;
}

.project-mepex {
  background-image: url(./static/mepex.webp);
  background-size: 100%;
  top: 0;
  left: 0;
  position: relative;
}
@media all and (min-width: 500px) {
  .project-mepex:hover svg {
    animation: svgAppear 0.1s forwards;
    /* aplicar la animación a la línea */
  }
  .project-mepex:hover svg #zero {
    animation: moveLine 2s forwards;
    stroke-dasharray: 1500;
    stroke-dashoffset: 1500;
  }
  .project-mepex:hover svg #one {
    animation: moveLine 2s 0.5s ease-in-out forwards;
    stroke-dasharray: 1500;
    stroke-dashoffset: 1500;
  }
  .project-mepex:hover svg #two {
    animation: moveLine 2s 1s ease-in-out forwards;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
  }
  .project-mepex:hover svg #three {
    animation: moveLine 2s 2s ease-in-out forwards;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
  }
  .project-mepex:hover svg #four {
    animation: moveLine 2s 2.5s ease-in-out forwards;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
  }
  .project-mepex:hover svg .svg-text {
    opacity: 0;
    animation: svgAppear 1s 3.5s forwards;
  }
}

.mepex-animado svg {
  animation: svgAppear 0.1s forwards;
  /* aplicar la animación a la línea */
}
.mepex-animado svg #zero {
  animation: moveLine 2s forwards;
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
}
.mepex-animado svg #one {
  animation: moveLine 2s 0.5s ease-in-out forwards;
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
}
.mepex-animado svg #two {
  animation: moveLine 2s 1s ease-in-out forwards;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}
.mepex-animado svg #three {
  animation: moveLine 2s 2s ease-in-out forwards;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}
.mepex-animado svg #four {
  animation: moveLine 2s 2.5s ease-in-out forwards;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}
.mepex-animado svg .svg-text {
  opacity: 0;
  animation: svgAppear 1s 3.5s forwards;
}

@keyframes moveLine {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes svgAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.project-mepex svg {
  position: absolute;
}

.project-mepex .reload {
  position: absolute;
  right: 10px;
  bottom: 10px;
  border: none;
  background-color: transparent;
  height: 20px;
  width: 20px;
  cursor: pointer;
}
.project-mepex .reload svg {
  fill: white;
  width: 20px;
  height: 20px;
}

.easter-egg {
  font-size: 1.25rem;
  color: rgb(255, 255, 87);
}

.easter-egg-2 {
  font-size: 1rem;
  color: rgb(255, 255, 87);
}

.mepex-animado .animacion {
  opacity: 0;
  position: absolute;
  left: 5%;
}
.mepex-animado .animacion .st0 {
  display: none;
}
.mepex-animado .animacion .st1 {
  fill: none;
  stroke: #fffdfd;
  stroke-width: 4;
  stroke-miterlimit: 10;
}
.mepex-animado .animacion .st2 {
  fill: none;
  stroke: #ffffff;
  stroke-width: 8;
  stroke-miterlimit: 10;
}
.mepex-animado .animacion .st3 {
  fill: #ffffff;
}
.mepex-animado .animacion .st4 {
  font-family: "MyriadPro-Regular";
}
.mepex-animado .animacion .st5 {
  font-size: 36px;
}
.mepex-animado .animacion .svg-text {
  font-family: "Noto Sans Miao";
}

.project-valyser {
  background-image: url(./static/valyser-fondo.webp);
  background-size: cover;
}
.project-valyser:hover {
  background: url(./static/valyser-video.webp) no-repeat;
  background-size: cover;
}

.project-5 {
  background-image: linear-gradient(to left, rgba(50, 50, 50, 0.3), rgba(51, 51, 51, 0.3)), url(./static/hipoteca-comp.webp);
  background-size: cover;
  background-position: 50%;
  transition: all 2s;
}
.project-5:hover {
  background-position: 50% 10%;
}

.project-teladochealth {
  background-image: url(./static/teladochealth.webp);
  background-size: cover;
  background-position: 50%;
  transition: all 2s;
}
.project-teladochealth:hover {
  background-position: 50% 10%;
}

.project-metrodetela {
  background-image: url(./static/metrodetela.webp);
  background-size: cover;
}

.project-sacaloencuotas {
  background-image: url(./static/sacaloencuotas.webp);
  background-size: cover;
  overflow: hidden;
}
.project-sacaloencuotas img {
  position: absolute;
  opacity: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left top;
     object-position: left top;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  transition: all 1s;
}
.project-sacaloencuotas:hover img {
  opacity: 1;
}

.about {
  height: 100vh;
  background-image: url(./static/panel.jpg);
  background-size: cover;
  background-attachment: fixed;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  text-transform: none !important;
  font-family: Gobold;
}

.bio {
  font-family: Roboto;
  font-size: 16px;
  margin: 0 2rem 0;
  background-color: rgba(128, 128, 128, 0.7);
  padding: 1rem;
  border-radius: 1rem;
  max-width: 40%;
}

.about-arch {
  color: gold;
}

.terminal {
  color: white;
  border: solid 1px gray;
  border-radius: 1rem;
  height: 22rem;
  width: 36rem;
  font-size: 14px;
  opacity: 0;
  background-color: rgb(23, 23, 23);
  font-family: Roboto;
  margin: 0 2rem 0;
}

.terminal-header {
  height: 2rem;
  margin: 0 0 0 0;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  background-color: rgb(33, 33, 33);
  position: relative;
}

.header-button {
  height: 0.7rem;
  width: 0.7rem;
  border-radius: 1rem;
  border: none;
  margin: 0.7rem 0.25rem;
}
.header-button:first-child {
  margin-left: 0.6rem;
}

.red {
  background-color: rgb(230, 97, 97);
}

.yellow {
  background-color: rgb(204, 204, 66);
}

.green {
  background-color: rgb(59, 200, 59);
}

.terminal-header-title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  font-family: Roboto;
}

.terminal-content {
  margin-top: 1rem;
}
.terminal-content p {
  overflow: hidden; /* Ensures the content is not revealed until the animation */
  white-space: nowrap; /* Keeps the content on a single line */
  margin: 0 1rem; /* Gives that scrolling effect as the typing happens */
  letter-spacing: 0.07em; /* Adjust as needed */
  opacity: 0;
  font-family: Roboto !important;
}

.terminal-animated {
  animation: appear 1s 1s forwards;
}
.terminal-animated .text-1 {
  animation: typing 4s 2s steps(100, end), appear 0.1s 2s forwards;
}
.terminal-animated .text-2 {
  animation: typing 4s 3.5s steps(100, end), appear 0.1s 3.5s forwards;
}
.terminal-animated .text-3 {
  animation: typing 4s 7.5s steps(100, end), appear 0.1s 7.5s forwards;
}
.terminal-animated .text-4 {
  animation: typing 4s 11.5s steps(100, end), appear 0.1s 11.5s forwards;
}
.terminal-animated .text-5 {
  animation: typing 4s 14s steps(100, end), appear 0.1s 14s forwards;
}
.terminal-animated .text-6 {
  animation: typing 4s 15s steps(100, end), appear 0.1s 15s forwards;
}

/* The typing effect */
@keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes typing {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.terminal-type {
  color: rgb(86, 156, 214);
}

.terminal-var {
  color: rgb(157, 220, 254);
}

.terminal-number {
  color: lightgreen;
}

.terminal-separator {
  color: rgb(218, 112, 214);
}

.terminal-quote {
  color: rgb(206, 145, 120);
}

.terminal-content-mobile {
  display: none;
  margin-top: 1rem;
  font-family: Roboto;
}
.terminal-content-mobile p {
  overflow: hidden; /* Ensures the content is not revealed until the animation */
  white-space: nowrap; /* Keeps the content on a single line */
  margin: 0 1rem; /* Gives that scrolling effect as the typing happens */
  letter-spacing: 0.03em; /* Adjust as needed */
  opacity: 0;
}
.terminal-content-mobile .text-1 {
  animation: typing 3s 5s steps(100, end), appear 0.1s 5s forwards;
}
.terminal-content-mobile .text-2 {
  animation: typing 3s 6.5s steps(100, end), appear 0.1s 6.5s forwards;
}
.terminal-content-mobile .text-3 {
  animation: typing 3s 8.5s steps(100, end), appear 0.1s 8.5s forwards;
}
.terminal-content-mobile .text-4 {
  animation: typing 3s 11.5s steps(100, end), appear 0.1s 11.5s forwards;
}
.terminal-content-mobile .text-5 {
  animation: typing 3s 13.15s steps(100, end), appear 0.1s 13.15s forwards;
}
.terminal-content-mobile .text-6 {
  animation: typing 3s 15.15s steps(100, end), appear 0.1s 15.15s forwards;
}
.terminal-content-mobile .text-7 {
  animation: typing 3s 17.25s steps(100, end), appear 0.1s 17.25s forwards;
}
.terminal-content-mobile .text-8 {
  animation: typing 3s 19.25s steps(100, end), appear 0.1s 19.25s forwards;
}

@media all and (max-width: 1200px) {
  .about {
    flex-direction: column;
  }
}
@media all and (max-width: 1080px) {
  .about {
    padding: 2rem;
    flex-direction: column;
    gap: 2rem;
    justify-content: space-evenly;
  }
  .about .bio {
    max-width: 36rem;
  }
}
@media all and (max-width: 800px) {
  .about {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .project-mepex,
  .project-indieclubargentina {
    background-size: cover;
  }
  .project-mepex svg {
    top: auto;
    left: auto;
    height: 80%;
  }
  .about {
    flex-direction: column;
    height: auto;
    padding: 2rem;
  }
  .bio {
    max-width: 100%;
    margin: 0;
  }
  .terminal {
    margin-top: 5rem;
    overflow-wrap: break-word;
    overflow: visible;
  }
  .text-1 {
    animation: none;
  }
  .text-2 {
    animation: none;
  }
  .text-3 {
    animation: none;
  }
  .text-4 {
    animation: none;
  }
  .text-5 {
    animation: none;
  }
  .text-6 {
    animation: none;
  }
}
@media all and (max-width: 600px) {
  .terminal {
    max-width: 22rem;
  }
  .terminal-content {
    display: none;
  }
  .terminal-content-mobile {
    display: inline;
    max-width: 22rem;
    overflow-wrap: normal;
  }
  .terminal-content-mobile p {
    margin: 0 0.5rem;
  }
}
.contact {
  height: 100vh;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  background-color: black;
  background-image: url(./static/dark-steel.jpg);
  background-size: cover;
  text-transform: uppercase;
  font-family: Gobold;
}

.contact-textarea {
  width: 38rem;
  margin: 0 1rem 0;
  resize: none;
  background-color: rgb(109, 106, 106);
  border: none;
  color: white;
  padding: 1rem 1rem 0;
  font-size: 1.5rem;
}
.contact-textarea::-moz-placeholder {
  color: rgb(219, 219, 219);
  font-family: Gobold;
  font-size: 1.5rem;
}
.contact-textarea::placeholder {
  color: rgb(219, 219, 219);
  font-family: Gobold;
  font-size: 1.5rem;
}
.contact-textarea:focus {
  outline: none;
}

.send {
  color: rgb(109, 106, 106);
  background-color: white;
  height: 4rem;
  width: 6rem;
  font-size: 1.5rem;
  padding: 1rem 1rem 1rem;
  border: none;
  margin: 1rem 0 0;
}

@media screen and (max-width: 850px) {
  .hero__content {
    padding: 0;
    margin: 0;
    right: 0;
    left: 0;
    text-align: center;
  }
  .loader-logo {
    font-size: 24px !important;
  }
  .header {
    padding: 0 1rem 0;
  }
  body .projects {
    display: flex;
    flex-direction: column;
    height: 200vh;
  }
  .projects__item {
    position: relative;
    width: 100%;
    height: 50vh;
    top: 0;
    left: 0;
    background-size: cover;
  }
  .about {
    font-size: 2rem;
  }
  .social {
    display: flex;
  }
  .social a {
    margin: 0 1rem 0;
  }
  .contact__title {
    margin: 1rem 0 1rem;
  }
  .contact-form {
    margin: 0 1rem 0;
  }
  .form__section-1 {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .contact__text {
    margin: 0rem 0rem 1rem;
    font-size: 1rem;
    width: 100%;
  }
  .contact__text::-moz-placeholder {
    font-size: 1rem;
  }
  .contact__text::placeholder {
    font-size: 1rem;
  }
  .contact__text:focus {
    outline: none;
  }
  .contact-textarea {
    width: 100%;
    height: 15rem;
    font-size: 1rem;
  }
  .contact-textarea::-moz-placeholder {
    font-size: 1rem;
  }
  .contact-textarea::placeholder {
    font-size: 1rem;
  }
  .contact-textarea:focus {
    outline: none;
  }
  .send {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 800px) {
  .navbar__item {
    margin: 0 1rem 0;
  }
}
@media screen and (max-width: 500px) {
  .logo {
    font-size: 1.2rem;
  }
  .intro__title {
    line-height: 4rem;
    line-height-step: 4rem;
    font-size: 2.4rem;
  }
  .project-mepex svg {
    height: 65%;
    left: -5%;
  }
  .intro__desc {
    font-size: 1.4rem;
  }
  .navbar__item {
    margin: 0 0.3rem 0;
  }
  .contact {
    height: auto;
  }
  .social a {
    padding: 3rem !important;
  }
}
.contact {
  overflow: hidden;
  height: 100vh;
  width: 100%;
  position: relative;
  cursor: none;
}
.contact a {
  cursor: none;
}

.content-container {
  position: absolute;
  height: 400px;
  max-width: 400px;
  border-radius: 2rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact__title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 6rem;
  color: white;
}

.contact__text {
  margin: 1rem 1rem 1rem;
  background-color: rgb(109, 106, 106);
  border: none;
  height: 4rem;
  width: 16rem;
  padding: 0 1rem 0;
  color: white;
  font-family: Gobold;
  font-size: 1.5rem;
}
.contact__text::-moz-placeholder {
  color: rgb(219, 219, 219);
  font-family: Gobold;
  font-size: 1.5rem;
}
.contact__text::placeholder {
  color: rgb(219, 219, 219);
  font-family: Gobold;
  font-size: 1.5rem;
}
.contact__text:focus {
  outline: none;
}

.contact__title {
  margin: 50px;
}

.mail {
  height: 50px;
  width: 100px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  margin-bottom: 100px;
}
.mail .mail-light {
  position: absolute;
  opacity: 1;
  transition: all 1s;
}
.mail .mail-dark {
  position: absolute;
  opacity: 0;
  transition: all 1s;
}
.mail:hover .mail-light {
  opacity: 0;
}
.mail:hover .mail-dark {
  opacity: 1;
}

.social {
  margin-bottom: 50px;
}
.social a {
  padding: 5rem;
}

.empty {
  height: 4rem;
  width: 10rem;
}

.contact__title {
  text-transform: uppercase;
}

.social {
  display: flex;
}

.github img {
  transition: all 0.3s;
  border-radius: 100%;
}
.github:hover img {
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.75);
}

.linkedin img {
  transition: all 0.3s;
  border-radius: 100%;
}
.linkedin:hover img {
  box-shadow: 0 0 50px rgba(0, 123, 255, 0.8);
  border-radius: 100%;
}

.bubbles-container {
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(45deg, lightblue, blue);
  background-size: 400%;
  background-position: center;
  position: relative;
  overflow: hidden;
  transform: scale(1.2);
  filter: blur(20px);
  display: flex;
  justify-content: center;
}

.bubble {
  height: 20rem;
  width: 20rem;
  border-radius: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at center, rgba(255, 213, 88, 0.8), rgba(255, 213, 88, 0) 70%) no-repeat;
  mix-blend-mode: hard-light;
}

.b1 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(0, 123, 255, 0.8), rgba(0, 123, 255, 0) 70%) no-repeat;
  mix-blend-mode: hard-light;
  transition: all 1s;
  height: 20rem;
  width: 20rem;
  top: 10rem;
  left: calc(50% - 10rem);
  transform-origin: center center;
  animation: moveInCircleLg 7s reverse linear infinite;
}

.b2 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(161, 136, 247, 0.8) 0, rgba(161, 136, 247, 0) 70%) no-repeat;
  mix-blend-mode: hard-light;
  height: 20rem;
  width: 20rem;
  top: 5rem;
  left: 33.3333333333%;
  transform-origin: center center;
  animation: moveInCircleMd 7s linear infinite;
  opacity: 1;
}

.b3 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(0, 98, 204, 0.8) 0, rgba(0, 98, 204, 0) 70%) no-repeat;
  mix-blend-mode: hard-light;
  height: 20rem;
  width: 20rem;
  top: 18rem;
  left: 33.3333333333%;
  transform-origin: center center;
  animation: moveInCircleMd 7s linear infinite;
  opacity: 1;
}

.b4 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(220, 53, 69, 0.8) 0, rgba(220, 53, 69, 0) 70%) no-repeat;
  mix-blend-mode: hard-light;
  height: 20rem;
  width: 20rem;
  top: 10rem;
  left: calc(50% - 10rem);
  transform-origin: center center;
  animation: moveInCircleSm 15s linear infinite;
  opacity: 0.7;
}

.b5 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(255, 193, 7, 0.8) 0, rgba(255, 193, 7, 0) 70%) no-repeat;
  mix-blend-mode: hard-light;
  height: 20rem;
  width: 20rem;
  bottom: 15rem;
  left: calc(50% - 16rem);
  transform-origin: center center;
  animation: moveInCircleLg 7s reverse linear infinite;
  opacity: 1;
}

.b6 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(0, 98, 204, 0.8) 0, rgba(0, 98, 204, 0) 70%) no-repeat;
  mix-blend-mode: hard-light;
  height: 20rem;
  width: 20rem;
  bottom: 20rem;
  right: calc(50% - 16rem);
  transform-origin: center center;
  animation: moveInCircleMd 7s linear infinite;
  opacity: 1;
}

.interactive {
  position: absolute;
  background: radial-gradient(circle at center, rgba(92, 171, 196, 0.8) 0, rgba(132, 198, 219, 0) 20%) no-repeat;
  mix-blend-mode: hard-light;
  height: 20rem;
  width: 20rem;
  top: -50%;
  left: -50%;
  transform-origin: center center;
  transition: transform 0.1s;
  opacity: 0.7;
}

@keyframes moveVertical {
  0% {
    transform: translateY(-10%);
  }
  50% {
    transform: translateY(20%);
  }
  100% {
    transform: translateY(-10%);
  }
}
@keyframes moveHorizontal {
  0% {
    transform: translateX(-20%) translateY(-10%);
  }
  50% {
    transform: translateX(20%) translateY(10%);
  }
  100% {
    transform: translateX(-20%) translateY(-10%);
  }
}
@keyframes diagonalDownRight {
  0% {
    transform: translateX(-20%) translateY(20%);
  }
  50% {
    transform: translateX(20%) translateY(-20%);
  }
  100% {
    transform: translateX(-20%) translateY(20%);
  }
}
@keyframes moveInCircleSm {
  from {
    -webkit-transform: rotate(0deg) translateX(20px) rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg) translateX(20px) rotate(-360deg);
  }
}
@keyframes moveInCircleMd {
  from {
    -webkit-transform: rotate(0deg) translateX(50px) rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg) translateX(50px) rotate(-360deg);
  }
}
@keyframes moveInCircleLg {
  from {
    -webkit-transform: rotate(0deg) translateX(80px) rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg) translateX(80px) rotate(-360deg);
  }
}/*# sourceMappingURL=styles.css.map */