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

@font-face {
  font-family: Pokemon;
  src: url("../fonts/Pokemon Hollow.ttf");
}
@font-face {
  font-family: Code;
  src: url("../fonts/FiraCode-VariableFont_wght.ttf");
}
/*
font-family: 'Cormorant', serif;

font-family: 'Roboto', sans-serif;
*/
div.loader {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 15;
  opacity: 1;
  transition: opacity 0.5s;
}
div.loader::before {
  z-index: 1;
  background-color: #bf4c4c;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
}
div.loader svg#loader {
  z-index: 3;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
div.loader svg#loader .ellipse.e1 {
  animation-name: rotate-axis;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-timing-function: linear;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  transform-origin: center;
}
div.loader svg#loader .ellipse.e2 {
  animation-name: rotate-axis-x;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-timing-function: linear;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  transform-origin: center;
}
div.loader div.line {
  width: 300px;
  position: absolute;
  z-index: 4;
  left: 50%;
  top: calc(50% + 100px);
  transform: translate(-50%, -50%);
  height: 2px;
  overflow: hidden;
  background: #ff8a8a;
  transition: left 0.3s;
}
div.loader div.line span.load-time {
  transition: width 0.3s;
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
  height: 2px;
  width: 0%;
}
div.loader div.percent {
  width: 300px;
  left: 50%;
  position: absolute;
  z-index: 4;
  top: calc(50% + 100px);
  transform: translate(-50%, -50%);
}
div.loader div.percent span.triangle {
  left: 0;
  transition: left 0.3s;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #fff;
  transform: translateY(5px) translateX(-5px);
  display: inline-block;
}
div.loader div.percent span.text {
  transition: left 0.3s;
  display: inline-block;
  top: 20px;
  left: 0;
  transform: translateX(-34.5px);
  font-family: "Roboto", sans-serif;
  color: #fff;
  font-size: 14px;
  text-align: center;
  width: 45px;
}
body {
  background-color: #1A202C;
  overflow: hidden;
}

canvas {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
}

div.bg-lines {
  z-index: 4;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
div.bg-lines .row {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-content: space-between;
}
div.bg-lines .row > div {
  flex: 1;
  display: flex;
}
div.bg-lines .row > div span {
  margin: auto;
  width: 1px;
  display: inline-block;
  height: 100%;
  background: #2D3748;
}
div.bg-lines .column {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-content: space-between;
}
div.bg-lines .column > div {
  flex: 1;
  display: flex;
}
div.bg-lines .column > div span {
  margin: auto;
  height: 1px;
  display: inline-block;
  width: 100%;
  background: #2D3748;
}

div.content-wrapper {
  width: 100%;
  min-height: 100vh;
  height: auto;
  z-index: 5;
}
div.content-wrapper .main-text {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
div.content-wrapper .main-text .title {
  font-family: "Cormorant", serif;
  top: calc(50% - 50px);
  transform: translateY(-50%);
  display: block;
  display: flex;
  flex-direction: column;
}
div.content-wrapper .main-text .title .block {
  font-size: 135px;
  color: #fff;
  font-weight: lighter;
  text-align: center;
  max-width: 50%;
  margin: auto;
  display: flex;
}
div.content-wrapper .main-text .title .block span {
  transition: 0.5s transform;
}
div.content-wrapper .main-text .subtitle {
  font-family: "Roboto", serif;
  top: calc(50% - 145px);
  transform: translateY(-50%);
  display: block;
  display: flex;
  flex-direction: column;
}
div.content-wrapper .main-text .subtitle .block {
  font-size: 17px;
  color: #fff;
  font-weight: lighter;
  text-align: center;
  max-width: 50%;
  margin: 10px auto 0 auto;
  letter-spacing: 5px;
  transition: 0.3s transform;
  overflow: hidden;
}
div.content-wrapper .main-text .subtitle .block span {
  transition: 0.5s transform;
}
div.content-wrapper .main-text.animate .title .block {
  overflow: hidden;
  display: flex;
}
div.content-wrapper .main-text.animate .title .block span {
  transform: translateY(-100%);
}
div.content-wrapper .main-text.animate .subtitle .block {
  overflow: hidden;
  display: flex;
}
div.content-wrapper .main-text.animate .subtitle .block span {
  transform: translateY(100%);
}

.content-wrapper .nav-about.pre-animate, .content-wrapper .nav-works.pre-animate, .content-wrapper .nav-project.pre-animate, .content-wrapper .nav-contact.pre-animate {
  display: none;
}
.content-wrapper .nav-about.pre-animate.animate, .content-wrapper .nav-works.pre-animate.animate, .content-wrapper .nav-project.pre-animate.animate, .content-wrapper .nav-contact.pre-animate.animate {
  display: block;
}
.content-wrapper .nav-about.pre-animate.animate .title, .content-wrapper .nav-works.pre-animate.animate .title, .content-wrapper .nav-project.pre-animate.animate .title, .content-wrapper .nav-contact.pre-animate.animate .title {
  overflow: hidden;
}
.content-wrapper .nav-about.pre-animate.animate .title .block span, .content-wrapper .nav-works.pre-animate.animate .title .block span, .content-wrapper .nav-project.pre-animate.animate .title .block span, .content-wrapper .nav-contact.pre-animate.animate .title .block span {
  position: relative;
  transform: translateY(100%);
  transition: 0.3s transform;
  display: inline-block;
}
.content-wrapper .nav-about.pre-animate.animate .content .text, .content-wrapper .nav-works.pre-animate.animate .content .text, .content-wrapper .nav-project.pre-animate.animate .content .text, .content-wrapper .nav-contact.pre-animate.animate .content .text {
  overflow: hidden;
}
.content-wrapper .nav-about.pre-animate.animate .content .text p, .content-wrapper .nav-works.pre-animate.animate .content .text p, .content-wrapper .nav-project.pre-animate.animate .content .text p, .content-wrapper .nav-contact.pre-animate.animate .content .text p {
  transition: 0.3s transform;
  transform: translateY(-100%);
}
.content-wrapper .nav-about.pre-animate.animate .content .text-sub, .content-wrapper .nav-works.pre-animate.animate .content .text-sub, .content-wrapper .nav-project.pre-animate.animate .content .text-sub, .content-wrapper .nav-contact.pre-animate.animate .content .text-sub {
  overflow: hidden;
}
.content-wrapper .nav-about.pre-animate.animate .content .text-sub > *, .content-wrapper .nav-works.pre-animate.animate .content .text-sub > *, .content-wrapper .nav-project.pre-animate.animate .content .text-sub > *, .content-wrapper .nav-contact.pre-animate.animate .content .text-sub > * {
  transition: 0.3s transform;
}
.content-wrapper .nav-about.pre-animate.animate .content .text-sub > p:not(.email), .content-wrapper .nav-works.pre-animate.animate .content .text-sub > p:not(.email), .content-wrapper .nav-project.pre-animate.animate .content .text-sub > p:not(.email), .content-wrapper .nav-contact.pre-animate.animate .content .text-sub > p:not(.email) {
  transform: translateY(-100%);
}
.content-wrapper .nav-about.pre-animate.animate .content .text-sub > p.email .icon, .content-wrapper .nav-works.pre-animate.animate .content .text-sub > p.email .icon, .content-wrapper .nav-project.pre-animate.animate .content .text-sub > p.email .icon, .content-wrapper .nav-contact.pre-animate.animate .content .text-sub > p.email .icon {
  transform: translateX(-150%);
  transition-delay: 0.3s;
}
.content-wrapper .nav-about.pre-animate.animate .content .text-sub > p.email .block, .content-wrapper .nav-works.pre-animate.animate .content .text-sub > p.email .block, .content-wrapper .nav-project.pre-animate.animate .content .text-sub > p.email .block, .content-wrapper .nav-contact.pre-animate.animate .content .text-sub > p.email .block {
  transition: 0.6s opacity;
  opacity: 0;
  display: inline-block;
  transition-delay: 0.6s;
}

div.content-wrapper div.nav-about {
  min-height: 400px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 500px;
}
div.content-wrapper div.nav-about .title {
  font-family: "Cormorant", serif;
  font-size: 80px;
  text-align: center;
  color: #fff;
  font-weight: bolder;
  letter-spacing: 5px;
  margin-top: 40px;
}
div.content-wrapper div.nav-about .content {
  text-align: center;
  font-family: "Roboto", sans-serif;
  color: #fff;
  margin: 35px 0 0 0;
}
div.content-wrapper div.nav-about .content .text {
  font-size: 20px;
  font-weight: lighter;
  letter-spacing: 0.5px;
}
div.content-wrapper div.nav-about .content .text p .text-animation-1 {
  display: inline-block;
  width: 195px;
  padding: 5px;
  background: #bf4c4c;
  border-radius: 4px;
  color: #fff;
  font-weight: bolder !important;
  margin-left: 5px;
  text-align: center;
  letter-spacing: 1px;
}
div.content-wrapper div.nav-about .content .text p .text-animation-1 .dud {
  font-weight: lighter;
}
div.content-wrapper div.nav-about .content .text p .text-list {
  width: 20px;
  height: 20px;
  background: #bf4c4c;
  display: inline-block;
  border-radius: 50%;
  top: 8px;
  transform: translateY(-50%);
  margin-left: 5px;
  font-size: 12px;
  line-height: 20px;
  cursor: pointer;
}
div.content-wrapper div.nav-about .content .text-sub {
  width: 50%;
  min-width: 250px;
  margin: 70px auto;
}
div.content-wrapper div.nav-about .content .text-sub p {
  font-size: 13px;
  line-height: 1.54;
  text-align: left;
}
div.content-wrapper div.nav-about .content .text-sub p.email {
  padding-top: 45px;
}
div.content-wrapper div.nav-about .content .text-sub p.email .icon {
  position: absolute;
  top: 12px;
  left: 0;
  width: 16px;
  height: 18px;
  transition: 0.3s transform;
}
div.content-wrapper div.nav-about .content .text-sub p.email .icon .longbar-h {
  width: 3px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
}
div.content-wrapper div.nav-about .content .text-sub p.email .icon .longbar-v {
  width: 100%;
  height: 3px;
  bottom: 0;
  left: 0;
  position: absolute;
  background: #fff;
}
div.content-wrapper div.nav-about .content .text-sub p.email .icon .pointer {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid white;
  position: absolute;
  left: 100%;
  top: calc(100% - 10px);
}
div.content-wrapper div.nav-about .content .text-sub p.email .block {
  margin-left: 35px;
  letter-spacing: 1px;
  cursor: pointer;
  font-weight: bolder;
  top: -28px;
}
div.content-wrapper div.nav-about .content .text-sub p.email .block span {
  display: inline-block;
}
div.content-wrapper div.nav-about .content .text-sub p.email .block:hover span:nth-child(1) {
  animation-name: rotate-text-up;
  animation-duration: 0.1s;
  animation-delay: 0.1s;
}
div.content-wrapper div.nav-about .content .text-sub p.email .block:hover span:nth-child(2) {
  animation-name: rotate-text-up;
  animation-duration: 0.1s;
  animation-delay: 0.2s;
}
div.content-wrapper div.nav-about .content .text-sub p.email .block:hover span:nth-child(3) {
  animation-name: rotate-text-up;
  animation-duration: 0.1s;
  animation-delay: 0.3s;
}
div.content-wrapper div.nav-about .content .text-sub p.email .block:hover span:nth-child(4) {
  animation-name: rotate-text-up;
  animation-duration: 0.1s;
  animation-delay: 0.4s;
}
div.content-wrapper div.nav-about .content .text-sub p.email .block:hover span:nth-child(5) {
  animation-name: rotate-text-up;
  animation-duration: 0.1s;
  animation-delay: 0.5s;
}
div.content-wrapper div.nav-about .content .text-sub p.email .block:hover span:nth-child(6) {
  animation-name: rotate-text-up;
  animation-duration: 0.1s;
  animation-delay: 0.6s;
}
div.content-wrapper div.nav-about .content .text-sub p.email .block:hover span:nth-child(7) {
  animation-name: rotate-text-up;
  animation-duration: 0.1s;
  animation-delay: 0.7s;
}
div.content-wrapper div.nav-about .content .text-sub p.email .block:hover span:nth-child(8) {
  animation-name: rotate-text-up;
  animation-duration: 0.1s;
  animation-delay: 0.8s;
}
div.content-wrapper div.nav-about .content .text-sub p.email .block:hover span:nth-child(9) {
  animation-name: rotate-text-up;
  animation-duration: 0.1s;
  animation-delay: 0.9s;
}
div.content-wrapper div.nav-about .content .text-sub p.email .block:hover span:nth-child(10) {
  animation-name: rotate-text-up;
  animation-duration: 0.1s;
  animation-delay: 1s;
}
div.content-wrapper div.nav-about .content .text-sub p.email .block:hover span:nth-child(11) {
  animation-name: rotate-text-up;
  animation-duration: 0.1s;
  animation-delay: 1.1s;
}
div.content-wrapper div.nav-about .content .text-sub p.email .block:hover span:nth-child(12) {
  animation-name: rotate-text-up;
  animation-duration: 0.1s;
  animation-delay: 1.2s;
}
div.content-wrapper div.nav-about .content .text-sub p.email .block:hover span:nth-child(13) {
  animation-name: rotate-text-up;
  animation-duration: 0.1s;
  animation-delay: 1.3s;
}
div.content-wrapper div.nav-about .content .text-sub p.email .block:hover span:nth-child(14) {
  animation-name: rotate-text-up;
  animation-duration: 0.1s;
  animation-delay: 1.4s;
}
div.content-wrapper div.nav-about .content .text-sub p.email .block:hover span:nth-child(15) {
  animation-name: rotate-text-up;
  animation-duration: 0.1s;
  animation-delay: 1.5s;
}
div.content-wrapper div.nav-about .content .text-sub p.email .block:hover span:nth-child(16) {
  animation-name: rotate-text-up;
  animation-duration: 0.1s;
  animation-delay: 1.6s;
}
div.content-wrapper div.nav-about .content .text-sub p.email .block:hover span:nth-child(17) {
  animation-name: rotate-text-up;
  animation-duration: 0.1s;
  animation-delay: 1.7s;
}
div.content-wrapper div.nav-about .content .text-sub p.email .block:hover span:nth-child(18) {
  animation-name: rotate-text-up;
  animation-duration: 0.1s;
  animation-delay: 1.8s;
}
div.content-wrapper div.nav-about .content .text-sub p.email .block:hover span:nth-child(19) {
  animation-name: rotate-text-up;
  animation-duration: 0.1s;
  animation-delay: 1.9s;
}
div.content-wrapper div.nav-about .content .text-sub p.email .block:hover span:nth-child(20) {
  animation-name: rotate-text-up;
  animation-duration: 0.1s;
  animation-delay: 2s;
}
div.content-wrapper div.nav-about.pre-animate {
  display: none;
}
div.content-wrapper div.nav-about.pre-animate.animate {
  display: block;
}
div.content-wrapper div.nav-about.pre-animate.animate .title {
  overflow: hidden;
}
div.content-wrapper div.nav-about.pre-animate.animate .title .block span {
  position: relative;
  transform: translateY(100%);
  transition: 0.3s transform;
  display: inline-block;
}
div.content-wrapper div.nav-about.pre-animate.animate .content .text {
  overflow: hidden;
}
div.content-wrapper div.nav-about.pre-animate.animate .content .text p {
  transition: 0.3s transform;
  transform: translateY(-100%);
}
div.content-wrapper div.nav-about.pre-animate.animate .content .text-sub {
  overflow: hidden;
}
div.content-wrapper div.nav-about.pre-animate.animate .content .text-sub > * {
  transition: 0.3s transform;
}
div.content-wrapper div.nav-about.pre-animate.animate .content .text-sub > p:not(.email) {
  transform: translateY(-100%);
}
div.content-wrapper div.nav-about.pre-animate.animate .content .text-sub > p.email .icon {
  transform: translateX(-150%);
  transition-delay: 0.3s;
}
div.content-wrapper div.nav-about.pre-animate.animate .content .text-sub > p.email .block {
  transition: 0.6s opacity;
  opacity: 0;
  display: inline-block;
  transition-delay: 0.6s;
}
div.content-wrapper div.nav-about.pre-animate.animate.done .title .block span:nth-child(1) {
  transform: translateY(0);
  transition-delay: 0.0666666667s;
}
div.content-wrapper div.nav-about.pre-animate.animate.done .title .block span:nth-child(2) {
  transform: translateY(0);
  transition-delay: 0.1333333333s;
}
div.content-wrapper div.nav-about.pre-animate.animate.done .title .block span:nth-child(3) {
  transform: translateY(0);
  transition-delay: 0.2s;
}
div.content-wrapper div.nav-about.pre-animate.animate.done .title .block span:nth-child(4) {
  transform: translateY(0);
  transition-delay: 0.2666666667s;
}
div.content-wrapper div.nav-about.pre-animate.animate.done .title .block span:nth-child(5) {
  transform: translateY(0);
  transition-delay: 0.3333333333s;
}
div.content-wrapper div.nav-about.pre-animate.animate.done .title .block span:nth-child(6) {
  transform: translateY(0);
  transition-delay: 0.4s;
}
div.content-wrapper div.nav-about.pre-animate.animate.done .title .block span:nth-child(7) {
  transform: translateY(0);
  transition-delay: 0.4666666667s;
}
div.content-wrapper div.nav-about.pre-animate.animate.done .title .block span:nth-child(8) {
  transform: translateY(0);
  transition-delay: 0.5333333333s;
}
div.content-wrapper div.nav-about.pre-animate.animate.done .title .block span:nth-child(9) {
  transform: translateY(0);
  transition-delay: 0.6s;
}
div.content-wrapper div.nav-about.pre-animate.animate.done .title .block span:nth-child(10) {
  transform: translateY(0);
  transition-delay: 0.6666666667s;
}
div.content-wrapper div.nav-about.pre-animate.animate.done .title .block span:nth-child(11) {
  transform: translateY(0);
  transition-delay: 0.7333333333s;
}
div.content-wrapper div.nav-about.pre-animate.animate.done .title .block span:nth-child(12) {
  transform: translateY(0);
  transition-delay: 0.8s;
}
div.content-wrapper div.nav-about.pre-animate.animate.done .title .block span:nth-child(13) {
  transform: translateY(0);
  transition-delay: 0.8666666667s;
}
div.content-wrapper div.nav-about.pre-animate.animate.done .title .block span:nth-child(14) {
  transform: translateY(0);
  transition-delay: 0.9333333333s;
}
div.content-wrapper div.nav-about.pre-animate.animate.done .title .block span:nth-child(15) {
  transform: translateY(0);
  transition-delay: 1s;
}
div.content-wrapper div.nav-about.pre-animate.animate.done .title .block span:nth-child(16) {
  transform: translateY(0);
  transition-delay: 1.0666666667s;
}
div.content-wrapper div.nav-about.pre-animate.animate.done .title .block span:nth-child(17) {
  transform: translateY(0);
  transition-delay: 1.1333333333s;
}
div.content-wrapper div.nav-about.pre-animate.animate.done .title .block span:nth-child(18) {
  transform: translateY(0);
  transition-delay: 1.2s;
}
div.content-wrapper div.nav-about.pre-animate.animate.done .title .block span:nth-child(19) {
  transform: translateY(0);
  transition-delay: 1.2666666667s;
}
div.content-wrapper div.nav-about.pre-animate.animate.done .title .block span:nth-child(20) {
  transform: translateY(0);
  transition-delay: 1.3333333333s;
}
div.content-wrapper div.nav-about.pre-animate.animate.done .content .text p {
  transform: translateY(0);
}
div.content-wrapper div.nav-about.pre-animate.animate.done .content .text-sub > p:not(.email) {
  transform: translateY(0);
}
div.content-wrapper div.nav-about.pre-animate.animate.done .content .text-sub > p.email .icon {
  transform: translateX(0);
}
div.content-wrapper div.nav-about.pre-animate.animate.done .content .text-sub > p.email .block {
  opacity: 1;
  display: inline-block;
}

div.content-wrapper div.nav-what {
  min-height: 400px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 500px;
}
div.content-wrapper div.nav-what .title {
  font-family: "Cormorant", serif;
  font-size: 80px;
  text-align: center;
  color: #fff;
  font-weight: bolder;
  letter-spacing: 5px;
  margin-top: 40px;
}
div.content-wrapper div.nav-what.pre-animate {
  display: none;
}
div.content-wrapper div.nav-what.pre-animate.animate {
  display: block;
}
div.content-wrapper div.nav-what.pre-animate.animate .title {
  overflow: hidden;
}
div.content-wrapper div.nav-what.pre-animate.animate .title .block span {
  position: relative;
  transform: translateY(100%);
  transition: 0.3s transform;
  display: inline-block;
}
div.content-wrapper div.nav-what.pre-animate.animate .content .text {
  overflow: hidden;
}
div.content-wrapper div.nav-what.pre-animate.animate .content .text p {
  transition: 0.3s transform;
  transform: translateY(-100%);
}
div.content-wrapper div.nav-what.pre-animate.animate .content .text-sub {
  overflow: hidden;
}
div.content-wrapper div.nav-what.pre-animate.animate .content .text-sub > * {
  transition: 0.3s transform;
}
div.content-wrapper div.nav-what.pre-animate.animate .content .text-sub > p:not(.email) {
  transform: translateY(-100%);
}
div.content-wrapper div.nav-what.pre-animate.animate .content .text-sub > p.email .icon {
  transform: translateX(-150%);
  transition-delay: 0.3s;
}
div.content-wrapper div.nav-what.pre-animate.animate .content .text-sub > p.email .block {
  transition: 0.6s opacity;
  opacity: 0;
  display: inline-block;
  transition-delay: 0.6s;
}
div.content-wrapper div.nav-what.pre-animate.animate.done .title .block span:nth-child(1) {
  transform: translateY(0);
  transition-delay: 0.0666666667s;
}
div.content-wrapper div.nav-what.pre-animate.animate.done .title .block span:nth-child(2) {
  transform: translateY(0);
  transition-delay: 0.1333333333s;
}
div.content-wrapper div.nav-what.pre-animate.animate.done .title .block span:nth-child(3) {
  transform: translateY(0);
  transition-delay: 0.2s;
}
div.content-wrapper div.nav-what.pre-animate.animate.done .title .block span:nth-child(4) {
  transform: translateY(0);
  transition-delay: 0.2666666667s;
}
div.content-wrapper div.nav-what.pre-animate.animate.done .title .block span:nth-child(5) {
  transform: translateY(0);
  transition-delay: 0.3333333333s;
}
div.content-wrapper div.nav-what.pre-animate.animate.done .title .block span:nth-child(6) {
  transform: translateY(0);
  transition-delay: 0.4s;
}
div.content-wrapper div.nav-what.pre-animate.animate.done .title .block span:nth-child(7) {
  transform: translateY(0);
  transition-delay: 0.4666666667s;
}
div.content-wrapper div.nav-what.pre-animate.animate.done .title .block span:nth-child(8) {
  transform: translateY(0);
  transition-delay: 0.5333333333s;
}
div.content-wrapper div.nav-what.pre-animate.animate.done .title .block span:nth-child(9) {
  transform: translateY(0);
  transition-delay: 0.6s;
}
div.content-wrapper div.nav-what.pre-animate.animate.done .title .block span:nth-child(10) {
  transform: translateY(0);
  transition-delay: 0.6666666667s;
}
div.content-wrapper div.nav-what.pre-animate.animate.done .title .block span:nth-child(11) {
  transform: translateY(0);
  transition-delay: 0.7333333333s;
}
div.content-wrapper div.nav-what.pre-animate.animate.done .title .block span:nth-child(12) {
  transform: translateY(0);
  transition-delay: 0.8s;
}
div.content-wrapper div.nav-what.pre-animate.animate.done .title .block span:nth-child(13) {
  transform: translateY(0);
  transition-delay: 0.8666666667s;
}
div.content-wrapper div.nav-what.pre-animate.animate.done .title .block span:nth-child(14) {
  transform: translateY(0);
  transition-delay: 0.9333333333s;
}
div.content-wrapper div.nav-what.pre-animate.animate.done .title .block span:nth-child(15) {
  transform: translateY(0);
  transition-delay: 1s;
}
div.content-wrapper div.nav-what.pre-animate.animate.done .title .block span:nth-child(16) {
  transform: translateY(0);
  transition-delay: 1.0666666667s;
}
div.content-wrapper div.nav-what.pre-animate.animate.done .title .block span:nth-child(17) {
  transform: translateY(0);
  transition-delay: 1.1333333333s;
}
div.content-wrapper div.nav-what.pre-animate.animate.done .title .block span:nth-child(18) {
  transform: translateY(0);
  transition-delay: 1.2s;
}
div.content-wrapper div.nav-what.pre-animate.animate.done .title .block span:nth-child(19) {
  transform: translateY(0);
  transition-delay: 1.2666666667s;
}
div.content-wrapper div.nav-what.pre-animate.animate.done .title .block span:nth-child(20) {
  transform: translateY(0);
  transition-delay: 1.3333333333s;
}
div.content-wrapper div.nav-what.pre-animate.animate.done .content .text p {
  transform: translateY(0);
}
div.content-wrapper div.nav-what.pre-animate.animate.done .content .text-sub > p:not(.email) {
  transform: translateY(0);
}
div.content-wrapper div.nav-what.pre-animate.animate.done .content .text-sub > p.email .icon {
  transform: translateX(0);
}
div.content-wrapper div.nav-what.pre-animate.animate.done .content .text-sub > p.email .block {
  opacity: 1;
  display: inline-block;
}
div.content-wrapper div.nav-what .content {
  display: flex;
  min-height: 200px;
}
div.content-wrapper div.nav-what .button-wrap {
  display: flex;
  width: 100%;
}
div.content-wrapper div.nav-what .button-wrap .what-i-do-btn-1 {
  position: relative;
  cursor: pointer;
  margin: auto;
  padding: 1em 3em;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  color: #fff;
  background: #262626;
  border: none;
  border-radius: 5px;
  letter-spacing: 1.2px;
  box-shadow: 0px 0px 4px #393939;
  background: #fff linear-gradient(to bottom, #262626 50%, #313131 50%);
  text-shadow: 0px 3px 1px rgba(91, 91, 91, 0.39);
  transform: scale(1);
}
div.content-wrapper div.nav-what .button-wrap .what-i-do-btn-1::after {
  background: linear-gradient(-45deg, rgba(26, 24, 24, 0) 66.6666666667%, #222 66.6666666667%), linear-gradient(45deg, #222 33.3333333333%, transparent 33.3333333333%), linear-gradient(to left, #262626, #262626);
  right: 0;
  content: "";
  height: 100%;
  position: absolute;
  width: 20px;
  top: 0;
}
div.content-wrapper div.nav-what .button-wrap .what-i-do-btn-1::before {
  background: linear-gradient(45deg, transparent 66.6666666667%, #222 66.6666666667%), linear-gradient(-45deg, #222 33.3333333333%, #262626 33.3333333333%), linear-gradient(to right, #222, #222);
  left: 0;
  content: "";
  height: 100%;
  position: absolute;
  width: 20px;
  top: 0;
}
div.content-wrapper div.nav-what .button-wrap .what-i-do-btn-1:hover {
  box-shadow: 0px 25px 40px -5px rgba(0, 0, 0, 0.3), inset 0px 0px 0px 0px rgba(255, 51, 51, 0), inset 0px -27px 0px 0px #2b2b2b;
}
div.content-wrapper div.nav-what .button-wrap .what-i-do-btn {
  cursor: pointer;
  border-radius: 50%;
  background-color: #bf4c4c;
  width: auto;
  height: auto;
  margin: auto;
  border: none;
  display: flex;
  box-shadow: 0px 5px 3px #262626;
  transition: all cubic-bezier(0.31, -0.105, 0.43, 1.4) 0.2s;
  overflow: hidden;
}
div.content-wrapper div.nav-what .button-wrap .what-i-do-btn:hover {
  border-radius: 20px;
  width: 11rem;
}
div.content-wrapper div.nav-what .button-wrap .what-i-do-btn:hover .icon {
  display: none;
}
div.content-wrapper div.nav-what .button-wrap .what-i-do-btn:hover .text {
  display: inline-block;
  width: 5rem;
  height: 5rem;
  margin: auto;
  font-family: "Roboto", sans-serif;
  color: #fff;
  line-height: 5rem;
  border-radius: 1000px;
  font-size: 1rem;
  text-shadow: 2px 2px rgba(19, 1, 1, 0.9607843137);
}
div.content-wrapper div.nav-what .button-wrap .what-i-do-btn .icon {
  width: 5rem;
  height: 5rem;
  display: inline-block;
  margin: auto;
  display: flex;
  transition: all cubic-bezier(0.31, -0.105, 0.43, 1.4) 0.2s;
  border-radius: 50%;
}
div.content-wrapper div.nav-what .button-wrap .what-i-do-btn .icon img {
  height: 50%;
  width: 50%;
  object-fit: contain;
  margin: auto;
}
div.content-wrapper div.nav-what .button-wrap .what-i-do-btn .text {
  transition: all cubic-bezier(0.31, -0.105, 0.43, 1.4) 0.2s;
  display: none;
}

div.content-wrapper div.nav-contact {
  min-height: 400px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 500px;
}
div.content-wrapper div.nav-contact .title {
  font-family: "Cormorant", serif;
  font-size: 80px;
  text-align: center;
  color: #fff;
  font-weight: bolder;
  letter-spacing: 5px;
  margin-top: 40px;
  overflow: hidden;
}
div.content-wrapper div.nav-contact .text-sub p {
  color: #fff;
  font-size: 17px;
  line-height: 1.54;
  font-weight: lighter;
  font-family: "Roboto", sans-serif;
  margin-top: 30px;
}
div.content-wrapper div.nav-contact .text-sub p .email {
  font-style: italic;
  letter-spacing: 0.5px;
  cursor: pointer;
}
div.content-wrapper div.nav-contact .text-subtitle {
  font-size: 16px;
  color: #fff;
  margin: 24px auto 0 auto;
  text-align: center;
  letter-spacing: 2px;
  overflow: hidden;
}
div.content-wrapper div.nav-contact .text-subtitle .block {
  font-size: 26px;
  font-weight: bolder;
  font-family: "Roboto", sans-serif;
  overflow: hidden;
}
div.content-wrapper div.nav-contact .text-sub {
  overflow: hidden;
}
div.content-wrapper div.nav-contact .text-sub * {
  transition: 0.3s transform, 0.3s opacity, 0.7s background-color !important;
}
div.content-wrapper div.nav-contact .text-sub p {
  color: #fff;
  text-align: center;
  font-family: "Roboto", sans-serif;
}
div.content-wrapper div.nav-contact .text-sub .sm-wrap {
  margin-top: 20px;
  text-align: center;
  overflow: hidden;
}
div.content-wrapper div.nav-contact .text-sub .sm-wrap span {
  display: inline-block;
  overflow: hidden;
}
div.content-wrapper div.nav-contact .text-sub .sm-wrap span a {
  background-image: url("../img/sprite-sm.png");
  background-size: 90px 30px;
  width: 30px;
  height: 30px;
  display: inline-block;
  transform: scale(0.5);
  background-repeat: no-repeat;
}
div.content-wrapper div.nav-contact .text-sub .sm-wrap span a.facebook {
  background-position: 0 0;
}
div.content-wrapper div.nav-contact .text-sub .sm-wrap span a.facebook:hover {
  background-color: #1877f2;
}
div.content-wrapper div.nav-contact .text-sub .sm-wrap span a.instagram {
  background-position: -30px 0px;
}
div.content-wrapper div.nav-contact .text-sub .sm-wrap span a.instagram:hover {
  background-color: #c32aa3;
}
div.content-wrapper div.nav-contact .text-sub .sm-wrap span a.twitter {
  background-position: -60px 0px;
}
div.content-wrapper div.nav-contact .text-sub .sm-wrap span a.twitter:hover {
  background-color: #1da1f2;
}
div.content-wrapper div.nav-contact.pre-animate {
  display: none;
}
div.content-wrapper div.nav-contact.pre-animate.animate {
  display: block;
}
div.content-wrapper div.nav-contact.pre-animate.animate .title .block span {
  position: relative;
  transform: translateY(100%);
  transition: 0.3s transform;
  display: inline-block;
}
div.content-wrapper div.nav-contact.pre-animate.animate .text-sub p {
  transform: translateY(calc(-100% - 40px));
}
div.content-wrapper div.nav-contact.pre-animate.animate .text-sub .sm-wrap span a {
  transform: translateY(100%);
}
div.content-wrapper div.nav-contact.pre-animate.animate .text-subtitle .block span {
  transform: translateY(-100%);
  display: inline-block;
}
div.content-wrapper div.nav-contact.pre-animate.animate.done .title .block span:nth-child(1) {
  transform: translateY(0);
  transition-delay: 0.0666666667s;
}
div.content-wrapper div.nav-contact.pre-animate.animate.done .title .block span:nth-child(2) {
  transform: translateY(0);
  transition-delay: 0.1333333333s;
}
div.content-wrapper div.nav-contact.pre-animate.animate.done .title .block span:nth-child(3) {
  transform: translateY(0);
  transition-delay: 0.2s;
}
div.content-wrapper div.nav-contact.pre-animate.animate.done .title .block span:nth-child(4) {
  transform: translateY(0);
  transition-delay: 0.2666666667s;
}
div.content-wrapper div.nav-contact.pre-animate.animate.done .title .block span:nth-child(5) {
  transform: translateY(0);
  transition-delay: 0.3333333333s;
}
div.content-wrapper div.nav-contact.pre-animate.animate.done .title .block span:nth-child(6) {
  transform: translateY(0);
  transition-delay: 0.4s;
}
div.content-wrapper div.nav-contact.pre-animate.animate.done .title .block span:nth-child(7) {
  transform: translateY(0);
  transition-delay: 0.4666666667s;
}
div.content-wrapper div.nav-contact.pre-animate.animate.done .title .block span:nth-child(8) {
  transform: translateY(0);
  transition-delay: 0.5333333333s;
}
div.content-wrapper div.nav-contact.pre-animate.animate.done .title .block span:nth-child(9) {
  transform: translateY(0);
  transition-delay: 0.6s;
}
div.content-wrapper div.nav-contact.pre-animate.animate.done .title .block span:nth-child(10) {
  transform: translateY(0);
  transition-delay: 0.6666666667s;
}
div.content-wrapper div.nav-contact.pre-animate.animate.done .title .block span:nth-child(11) {
  transform: translateY(0);
  transition-delay: 0.7333333333s;
}
div.content-wrapper div.nav-contact.pre-animate.animate.done .title .block span:nth-child(12) {
  transform: translateY(0);
  transition-delay: 0.8s;
}
div.content-wrapper div.nav-contact.pre-animate.animate.done .title .block span:nth-child(13) {
  transform: translateY(0);
  transition-delay: 0.8666666667s;
}
div.content-wrapper div.nav-contact.pre-animate.animate.done .title .block span:nth-child(14) {
  transform: translateY(0);
  transition-delay: 0.9333333333s;
}
div.content-wrapper div.nav-contact.pre-animate.animate.done .title .block span:nth-child(15) {
  transform: translateY(0);
  transition-delay: 1s;
}
div.content-wrapper div.nav-contact.pre-animate.animate.done .title .block span:nth-child(16) {
  transform: translateY(0);
  transition-delay: 1.0666666667s;
}
div.content-wrapper div.nav-contact.pre-animate.animate.done .title .block span:nth-child(17) {
  transform: translateY(0);
  transition-delay: 1.1333333333s;
}
div.content-wrapper div.nav-contact.pre-animate.animate.done .title .block span:nth-child(18) {
  transform: translateY(0);
  transition-delay: 1.2s;
}
div.content-wrapper div.nav-contact.pre-animate.animate.done .title .block span:nth-child(19) {
  transform: translateY(0);
  transition-delay: 1.2666666667s;
}
div.content-wrapper div.nav-contact.pre-animate.animate.done .title .block span:nth-child(20) {
  transform: translateY(0);
  transition-delay: 1.3333333333s;
}
div.content-wrapper div.nav-contact.pre-animate.animate.done .text-sub * {
  transition: 0.3s transform, 0.3s opacity;
}
div.content-wrapper div.nav-contact.pre-animate.animate.done .text-sub p {
  transform: translateY(0);
}
div.content-wrapper div.nav-contact.pre-animate.animate.done .text-sub .sm-wrap span a {
  transform: translateY(0);
}
div.content-wrapper div.nav-contact.pre-animate.animate.done .text-subtitle .block span {
  transform: translateY(0);
}

div.content-wrapper div.nav-project {
  min-height: 400px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 500px;
}
div.content-wrapper div.nav-project .title {
  font-family: "Cormorant", serif;
  font-size: 80px;
  text-align: center;
  color: #fff;
  font-weight: bolder;
  letter-spacing: 5px;
  margin-top: 40px;
  overflow: hidden;
}
div.content-wrapper div.nav-project * {
  transition: 0.3s transform, 0.3s opacity;
}
div.content-wrapper div.nav-project ul.fp-tabbed-nav {
  overflow: hidden;
}
div.content-wrapper div.nav-project ul.fp-tabbed-nav li:nth-child(1) {
  transition-delay: 0.0666666667s;
}
div.content-wrapper div.nav-project ul.fp-tabbed-nav li:nth-child(2) {
  transition-delay: 0.1333333333s;
}
div.content-wrapper div.nav-project ul.fp-tabbed-nav li:nth-child(3) {
  transition-delay: 0.2s;
}
div.content-wrapper div.nav-project ul.fp-tabbed-nav li:nth-child(4) {
  transition-delay: 0.2666666667s;
}
div.content-wrapper div.nav-project ul.fp-tabbed-nav li:nth-child(5) {
  transition-delay: 0.3333333333s;
}
div.content-wrapper div.nav-project ul.fp-tabbed-nav li:nth-child(6) {
  transition-delay: 0.4s;
}
div.content-wrapper div.nav-project ul.fp-tabbed-nav li:nth-child(7) {
  transition-delay: 0.4666666667s;
}
div.content-wrapper div.nav-project ul.fp-tabbed-nav li:nth-child(8) {
  transition-delay: 0.5333333333s;
}
div.content-wrapper div.nav-project ul.fp-tabbed-nav li:nth-child(9) {
  transition-delay: 0.6s;
}
div.content-wrapper div.nav-project ul.fp-tabbed-nav li:nth-child(10) {
  transition-delay: 0.6666666667s;
}
div.content-wrapper div.nav-project ul.fp-tabbed-nav li:nth-child(11) {
  transition-delay: 0.7333333333s;
}
div.content-wrapper div.nav-project ul.fp-tabbed-nav li:nth-child(12) {
  transition-delay: 0.8s;
}
div.content-wrapper div.nav-project ul.fp-tabbed-nav li:nth-child(13) {
  transition-delay: 0.8666666667s;
}
div.content-wrapper div.nav-project ul.fp-tabbed-nav li:nth-child(14) {
  transition-delay: 0.9333333333s;
}
div.content-wrapper div.nav-project ul.fp-tabbed-nav li:nth-child(15) {
  transition-delay: 1s;
}
div.content-wrapper div.nav-project ul.fp-tabbed-nav li:nth-child(16) {
  transition-delay: 1.0666666667s;
}
div.content-wrapper div.nav-project ul.fp-tabbed-nav li:nth-child(17) {
  transition-delay: 1.1333333333s;
}
div.content-wrapper div.nav-project ul.fp-tabbed-nav li:nth-child(18) {
  transition-delay: 1.2s;
}
div.content-wrapper div.nav-project ul.fp-tabbed-nav li:nth-child(19) {
  transition-delay: 1.2666666667s;
}
div.content-wrapper div.nav-project ul.fp-tabbed-nav li:nth-child(20) {
  transition-delay: 1.3333333333s;
}
div.content-wrapper div.nav-project.pre-animate {
  display: none;
}
div.content-wrapper div.nav-project.pre-animate.animate {
  display: block;
}
div.content-wrapper div.nav-project.pre-animate.animate .title .block span {
  position: relative;
  transform: translateY(100%);
  transition: 0.3s transform;
  display: inline-block;
}
div.content-wrapper div.nav-project.pre-animate.animate .text-sub p {
  transform: translateY(calc(-100% - 40px));
}
div.content-wrapper div.nav-project.pre-animate.animate .text-sub .sm-wrap span a {
  transform: translateY(100%);
}
div.content-wrapper div.nav-project.pre-animate.animate .text-subtitle .block span {
  transform: translateY(-100%);
  display: inline-block;
}
div.content-wrapper div.nav-project.pre-animate.animate ul.fp-tabbed-nav li {
  transform: translateX(-100%);
}
div.content-wrapper div.nav-project.pre-animate.animate.done .title .block span:nth-child(1) {
  transform: translateY(0);
  transition-delay: 0.0666666667s;
}
div.content-wrapper div.nav-project.pre-animate.animate.done .title .block span:nth-child(2) {
  transform: translateY(0);
  transition-delay: 0.1333333333s;
}
div.content-wrapper div.nav-project.pre-animate.animate.done .title .block span:nth-child(3) {
  transform: translateY(0);
  transition-delay: 0.2s;
}
div.content-wrapper div.nav-project.pre-animate.animate.done .title .block span:nth-child(4) {
  transform: translateY(0);
  transition-delay: 0.2666666667s;
}
div.content-wrapper div.nav-project.pre-animate.animate.done .title .block span:nth-child(5) {
  transform: translateY(0);
  transition-delay: 0.3333333333s;
}
div.content-wrapper div.nav-project.pre-animate.animate.done .title .block span:nth-child(6) {
  transform: translateY(0);
  transition-delay: 0.4s;
}
div.content-wrapper div.nav-project.pre-animate.animate.done .title .block span:nth-child(7) {
  transform: translateY(0);
  transition-delay: 0.4666666667s;
}
div.content-wrapper div.nav-project.pre-animate.animate.done .title .block span:nth-child(8) {
  transform: translateY(0);
  transition-delay: 0.5333333333s;
}
div.content-wrapper div.nav-project.pre-animate.animate.done .title .block span:nth-child(9) {
  transform: translateY(0);
  transition-delay: 0.6s;
}
div.content-wrapper div.nav-project.pre-animate.animate.done .title .block span:nth-child(10) {
  transform: translateY(0);
  transition-delay: 0.6666666667s;
}
div.content-wrapper div.nav-project.pre-animate.animate.done .title .block span:nth-child(11) {
  transform: translateY(0);
  transition-delay: 0.7333333333s;
}
div.content-wrapper div.nav-project.pre-animate.animate.done .title .block span:nth-child(12) {
  transform: translateY(0);
  transition-delay: 0.8s;
}
div.content-wrapper div.nav-project.pre-animate.animate.done .title .block span:nth-child(13) {
  transform: translateY(0);
  transition-delay: 0.8666666667s;
}
div.content-wrapper div.nav-project.pre-animate.animate.done .title .block span:nth-child(14) {
  transform: translateY(0);
  transition-delay: 0.9333333333s;
}
div.content-wrapper div.nav-project.pre-animate.animate.done .title .block span:nth-child(15) {
  transform: translateY(0);
  transition-delay: 1s;
}
div.content-wrapper div.nav-project.pre-animate.animate.done .title .block span:nth-child(16) {
  transform: translateY(0);
  transition-delay: 1.0666666667s;
}
div.content-wrapper div.nav-project.pre-animate.animate.done .title .block span:nth-child(17) {
  transform: translateY(0);
  transition-delay: 1.1333333333s;
}
div.content-wrapper div.nav-project.pre-animate.animate.done .title .block span:nth-child(18) {
  transform: translateY(0);
  transition-delay: 1.2s;
}
div.content-wrapper div.nav-project.pre-animate.animate.done .title .block span:nth-child(19) {
  transform: translateY(0);
  transition-delay: 1.2666666667s;
}
div.content-wrapper div.nav-project.pre-animate.animate.done .title .block span:nth-child(20) {
  transform: translateY(0);
  transition-delay: 1.3333333333s;
}
div.content-wrapper div.nav-project.pre-animate.animate.done .text-sub * {
  transition: 0.3s transform, 0.3s opacity;
}
div.content-wrapper div.nav-project.pre-animate.animate.done .text-sub p {
  transform: translateY(0);
}
div.content-wrapper div.nav-project.pre-animate.animate.done .text-sub .sm-wrap span a {
  transform: translateY(0);
}
div.content-wrapper div.nav-project.pre-animate.animate.done .text-subtitle .block span {
  transform: translateY(0);
}
div.content-wrapper div.nav-project.pre-animate.animate.done ul.fp-tabbed-nav li {
  transform: translateX(0);
}

.content-wrapper .nav-works {
  min-height: 400px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 500px;
}
.content-wrapper .nav-works .title {
  font-family: "Cormorant", serif;
  font-size: 80px;
  text-align: center;
  color: #fff;
  font-weight: bolder;
  letter-spacing: 5px;
  margin-top: 40px;
  overflow: hidden;
}
.content-wrapper .nav-works.pre-animate.done .title .block span:nth-child(1) {
  transform: translateY(0);
  transition-delay: 0.0666666667s;
}
.content-wrapper .nav-works.pre-animate.done .title .block span:nth-child(2) {
  transform: translateY(0);
  transition-delay: 0.1333333333s;
}
.content-wrapper .nav-works.pre-animate.done .title .block span:nth-child(3) {
  transform: translateY(0);
  transition-delay: 0.2s;
}
.content-wrapper .nav-works.pre-animate.done .title .block span:nth-child(4) {
  transform: translateY(0);
  transition-delay: 0.2666666667s;
}
.content-wrapper .nav-works.pre-animate.done .title .block span:nth-child(5) {
  transform: translateY(0);
  transition-delay: 0.3333333333s;
}
.content-wrapper .nav-works.pre-animate.done .title .block span:nth-child(6) {
  transform: translateY(0);
  transition-delay: 0.4s;
}
.content-wrapper .nav-works.pre-animate.done .title .block span:nth-child(7) {
  transform: translateY(0);
  transition-delay: 0.4666666667s;
}
.content-wrapper .nav-works.pre-animate.done .title .block span:nth-child(8) {
  transform: translateY(0);
  transition-delay: 0.5333333333s;
}
.content-wrapper .nav-works.pre-animate.done .title .block span:nth-child(9) {
  transform: translateY(0);
  transition-delay: 0.6s;
}
.content-wrapper .nav-works.pre-animate.done .title .block span:nth-child(10) {
  transform: translateY(0);
  transition-delay: 0.6666666667s;
}
.content-wrapper .nav-works.pre-animate.done .title .block span:nth-child(11) {
  transform: translateY(0);
  transition-delay: 0.7333333333s;
}
.content-wrapper .nav-works.pre-animate.done .title .block span:nth-child(12) {
  transform: translateY(0);
  transition-delay: 0.8s;
}
.content-wrapper .nav-works.pre-animate.done .title .block span:nth-child(13) {
  transform: translateY(0);
  transition-delay: 0.8666666667s;
}
.content-wrapper .nav-works.pre-animate.done .title .block span:nth-child(14) {
  transform: translateY(0);
  transition-delay: 0.9333333333s;
}
.content-wrapper .nav-works.pre-animate.done .title .block span:nth-child(15) {
  transform: translateY(0);
  transition-delay: 1s;
}
.content-wrapper .nav-works.pre-animate.done .title .block span:nth-child(16) {
  transform: translateY(0);
  transition-delay: 1.0666666667s;
}
.content-wrapper .nav-works.pre-animate.done .title .block span:nth-child(17) {
  transform: translateY(0);
  transition-delay: 1.1333333333s;
}
.content-wrapper .nav-works.pre-animate.done .title .block span:nth-child(18) {
  transform: translateY(0);
  transition-delay: 1.2s;
}
.content-wrapper .nav-works.pre-animate.done .title .block span:nth-child(19) {
  transform: translateY(0);
  transition-delay: 1.2666666667s;
}
.content-wrapper .nav-works.pre-animate.done .title .block span:nth-child(20) {
  transform: translateY(0);
  transition-delay: 1.3333333333s;
}
.content-wrapper .nav-works .works-wrap-content ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
}
.content-wrapper .nav-works .works-wrap-content ul li {
  color: #fff;
  cursor: pointer;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.3rem;
  display: flex;
}
.content-wrapper .nav-works .works-wrap-content ul li:hover .arrow {
  display: block;
}
.content-wrapper .nav-works .works-wrap-content ul .arrow {
  transform: rotate(270deg);
  position: absolute;
  right: -35%;
  cursor: pointer;
  display: none;
  margin-top: auto;
  margin-bottom: auto;
}
.content-wrapper .nav-works .works-wrap-content ul .arrow span {
  display: block;
  width: 10px;
  height: 10px;
  border-bottom: 5px solid white;
  border-right: 5px solid white;
  transform: rotate(45deg);
  margin: -10px;
  animation: arrow-animate 2s infinite;
}
.content-wrapper .nav-works .works-wrap-content ul .arrow span:nth-child(2) {
  animation-delay: -0.2s;
}
.content-wrapper .nav-works .works-wrap-content ul .arrow span:nth-child(3) {
  animation-delay: -0.4s;
}

ul.fp-tabbed-nav {
  list-style-type: none;
  font-size: 17px;
  color: #fff;
  font-family: "Roboto", sans-serif;
  line-height: 1.54;
}
ul.fp-tabbed-nav li {
  padding: 10px 15px;
  cursor: pointer;
}
ul.fp-tabbed-nav li.center {
  text-align: center;
}
ul.fp-tabbed-nav li.soon {
  text-align: center;
  font-size: 12px;
  margin-top: 11px;
  letter-spacing: 0.7px;
}

.overlay-modal {
  z-index: 99;
  position: fixed;
  width: 100vw;
  height: 0;
  background: rgba(0, 0, 0, 0.6588235294);
  left: 0;
  top: 0;
  overflow: hidden;
}
.overlay-modal#fp-modal .close-modal {
  z-index: 20;
  position: absolute;
  width: 40px;
  height: 40px;
  right: 10px;
  top: 10px;
  cursor: pointer;
}
.overlay-modal#fp-modal .close-modal .close-icon {
  position: absolute;
  width: 100%;
  height: 2px;
  pointer-events: none;
}
.overlay-modal#fp-modal .close-modal .close-icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transform: rotate(45deg);
  top: 20px;
}
.overlay-modal#fp-modal .close-modal .close-icon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transform: rotate(-45deg);
  top: 20px;
}
.overlay-modal#fp-modal .modal-title h2 {
  text-align: center;
  color: #fff;
  padding: 2em 0;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
}
.overlay-modal#fp-modal .modal-content {
  display: flex;
  width: 80vw;
  margin: 0 auto;
}
.overlay-modal#fp-modal .modal-content ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100vw;
}
.overlay-modal#fp-modal .modal-content ul li {
  max-width: 400px;
  display: flex;
  flex: 1;
  min-height: 200px;
  background: #fff;
  border: 1px solid #eee;
  width: 33%;
  margin: 5px;
}
.overlay-modal#fp-modal .modal-content ul li .modal-item {
  width: 100%;
}
.overlay-modal#fp-modal .modal-content ul li .modal-item img {
  max-width: 100%;
}
.overlay-modal#fp-modal .modal-content ul .img-loader {
  width: 100%;
  background: #eee;
  background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
  border-radius: 5px;
  background-size: 200% 100%;
  animation: 1.5s shine linear infinite;
  height: 100%;
}
.overlay-modal#fp-modal .modal-content ul .img-loader .loader-ico {
  height: 40px;
  width: 40px;
  border: 5px solid #dbdbdb;
  animation: move-img 0.5s linear infinite alternate-reverse;
  position: absolute;
  left: calc(50% - 20px);
  top: calc(50% - 20px);
  position: absolute;
  box-sizing: border-box;
  display: inline-block;
}
.overlay-modal#fp-modal .modal-content ul .img-loader .loader-ico .text {
  position: absolute;
  margin-top: 5px;
  margin-left: 5px;
}
.overlay-modal#fp-modal .modal-content ul .img-loader .loader-ico .load-line {
  position: absolute;
  display: inline-block;
  background: linear-gradient(to bottom, #ff0119, transparent);
  animation: 1s 1s linear infinite;
}
.overlay-modal#fp-modal .modal-content ul .img-loader .loader-ico .load-line.line-left {
  height: 100%;
  width: 3px;
  left: -3px;
  top: 0;
}
.overlay-modal#fp-modal .modal-content ul .img-loader .loader-ico .load-line.line-top {
  height: 3px;
  width: 100%;
  left: 0;
  top: -3px;
}
.overlay-modal#fp-modal .modal-content ul .img-loader .loader-ico .load-line.line-right {
  width: 3px;
  height: 100%;
  right: -3px;
  top: 0;
}
.overlay-modal#fp-modal .modal-content ul .img-loader .loader-ico .load-line.line-bottom {
  height: 3px;
  width: 100%;
  left: 0;
  bottom: -3px;
}
.overlay-modal#fp-modal .modal-content ul .img-loader .loader-ico .border-animation {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  animation: borderAnimation 2s linear infinite;
  width: 5px;
  height: 5px;
  background-color: #ff8a8a;
}
.overlay-modal.show {
  display: flex;
}
.overlay-modal.hide {
  display: none !important;
}

div.fp-tabbed-content {
  z-index: 6;
  display: none;
  max-width: 400px;
  min-width: 400px;
  position: absolute;
  left: calc(50% + 200px);
  top: 50%;
  transform: translateY(-50%);
  font-family: "Roboto", sans-serif;
  background-color: rgba(255, 255, 255, 0.1294117647);
  transition: 0.3s transform, 0.5s opacity;
}
div.fp-tabbed-content * {
  transition: 0.3s transform, 0.3s opacity;
}
div.fp-tabbed-content .tab {
  padding: 20px 30px 50px 30px;
}
div.fp-tabbed-content .tab .tab-title h3 {
  margin: 0 0 20px 0;
  font-size: 19px;
  letter-spacing: 0.5px;
  color: #fff;
}
div.fp-tabbed-content .tab .tab-content p {
  line-height: 1.54;
  color: #fff;
  font-weight: lighter;
  font-size: 14px;
}
div.fp-tabbed-content .tab .control {
  position: absolute;
  bottom: 10px;
  right: 10px;
}
div.fp-tabbed-content .tab .control a {
  font-size: 12px;
  color: #fff;
  text-decoration: none;
  background: #bf4c4c;
  padding: 5px 7px;
  display: inline-block;
}
div.fp-tabbed-content .tab .control a .triangle {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #fff;
  display: inline-block;
  border-radius: 3px;
  letter-spacing: 0.3px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5411764706);
}
div.fp-tabbed-content .tab.pre-animate {
  display: none;
}
div.fp-tabbed-content .tab.pre-animate.animate {
  opacity: 0;
  display: block;
}
div.fp-tabbed-content .tab.pre-animate.animate.done {
  opacity: 1 !important;
}

/* Temporary */
#fp-what-ido {
  display: flex;
  height: 100%;
  transition: 0.3s;
}
#fp-what-ido.hide {
  display: none;
}
#fp-what-ido .close-modal {
  z-index: 20;
  position: absolute;
  width: 40px;
  height: 40px;
  right: 10px;
  top: 10px;
  cursor: pointer;
}
#fp-what-ido .close-modal .close-icon {
  position: absolute;
  width: 100%;
  height: 2px;
  pointer-events: none;
}
#fp-what-ido .close-modal .close-icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transform: rotate(45deg);
  top: 20px;
}
#fp-what-ido .close-modal .close-icon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transform: rotate(-45deg);
  top: 20px;
}
#fp-what-ido .modal-content {
  display: flex;
  width: 80vw;
  margin: 0 auto;
}
#fp-what-ido .modal-content .modal-navigation {
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
#fp-what-ido .modal-content .modal-navigation a {
  color: #fff;
  font-style: normal;
  text-decoration: none;
  padding: 0.2em;
  font-family: "Roboto", sans-serif;
}
#fp-what-ido .modal-content .contents {
  display: flex;
  width: 100%;
}
#fp-what-ido .modal-content .contents .modal-content-wrap {
  width: 70vw;
  min-width: 300px;
  background: #000;
  border: 1px solid #717171;
  height: 90%;
  margin: auto;
  max-height: 600px;
  overflow: hidden;
}
#fp-what-ido .modal-content .contents .content-design-top {
  display: flex;
  background: #b9b9b9;
  padding: 0.5em 0.3em;
  font-family: "Roboto", sans-serif;
  z-index: 99;
}
#fp-what-ido .modal-content .contents .content-design-top .right-section {
  margin-left: auto;
}
#fp-what-ido .modal-content .contents .content-design-top .right-section .circle {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: red;
  border-radius: 50%;
  margin: 0 3px;
}
#fp-what-ido .modal-content .contents .content-design-top .right-section .circle.yellow-circle {
  background-color: #fdfd7d;
}
#fp-what-ido .modal-content .contents .content-design-top .right-section .circle.green-circle {
  background-color: #090;
}
#fp-what-ido .modal-content .contents .content-design-top .right-section .circle.red-circle {
  background-color: #f05757;
}
#fp-what-ido .modal-content .contents .content-wrap {
  margin: auto;
  max-width: 100%;
  display: flex;
  width: 100%;
  flex-direction: column;
  margin-top: 20px;
  margin-bottom: 10px;
  height: auto;
}
#fp-what-ido .modal-content .contents .content-wrap .content-list.hide {
  display: none !important;
}
#fp-what-ido .modal-content .contents .content-wrap .title h3 {
  color: #fff;
  font-family: "Pokemon", sans-serif;
  text-align: center;
  font-size: 4rem;
  margin: 0 1em;
}
#fp-what-ido .modal-content .contents .content-wrap .text {
  text-align: center;
  width: 80%;
  margin: 20px auto;
}
#fp-what-ido .modal-content .contents .content-wrap .text p {
  font-size: 1.1rem;
  color: #fff;
  font-family: "Roboto", sans-serif;
  line-height: 1.6em;
}
#fp-what-ido .modal-content .contents .content-wrap .tools-used {
  margin-top: 10px;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: auto;
}
#fp-what-ido .modal-content .contents .content-wrap .tools-used .tool-title p {
  color: #fff;
  font-family: "Code";
  margin: 25px 0px;
}
#fp-what-ido .modal-content .contents .content-wrap .tools-used ul {
  display: flex;
  flex-direction: column;
}
#fp-what-ido .modal-content .contents .content-wrap .tools-used ul li {
  display: flex;
  margin-bottom: 1em;
}
#fp-what-ido .modal-content .contents .content-wrap .tools-used ul li .icon {
  width: 35px;
  height: 35px;
  display: inline-block;
}
#fp-what-ido .modal-content .contents .content-wrap .tools-used ul li .icon img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
#fp-what-ido .modal-content .contents .content-wrap .tools-used ul li .code-text {
  display: flex;
  flex-direction: row;
  font-family: "Code", "Roboto", sans-serif;
  color: #fff;
}
#fp-what-ido .modal-content .contents .content-wrap .tools-used ul li .code-text .code-main {
  color: #4141ff;
  margin-right: 12px;
  margin-top: auto;
  margin-bottom: auto;
}
#fp-what-ido .modal-content .contents .content-wrap .tools-used ul.tools-list {
  margin-top: 25px;
}
#fp-what-ido .modal-content .contents .content-wrap .tools-used ul.tools-list li {
  margin-left: 20px;
  position: relative;
  font-family: "Code", sans-serif;
  padding: 4px 20px;
}
#fp-what-ido .modal-content .contents .content-wrap .tools-used ul.tools-list li::before {
  content: ">";
  position: absolute;
  top: 50%;
  left: 0;
  color: #050505;
  width: 15px;
  transform: translateY(-50%);
  color: #fff;
}
#fp-what-ido .modal-content .contents .content-wrap .tools-used ul.tools-list li p {
  margin: 0;
}
#fp-what-ido .modal-content .contents .content-wrap .text-bottom {
  display: flex;
  flex-direction: column;
}
#fp-what-ido .modal-content .contents .content-wrap .text-bottom p {
  color: #fff;
  font-family: "Code", sans-serif;
}
#fp-what-ido .modal-content .contents .content-wrap .text-bottom p .time {
  color: #646464;
}
#fp-what-ido .modal-content .contents .content-wrap .text-bottom p .text-green {
  color: #009b00;
}
#fp-what-ido .modal-content .contents .content-wrap .text-bottom p .next {
  padding: 0.3em 1.4em;
  background: #000;
  border: none;
  color: #fff;
  cursor: pointer;
  border: 2px solid #535353;
  cursor: pointer;
  margin-left: 15px;
}
#fp-what-ido .modal-content .contents .content-wrap .text-bottom p .next .text {
  width: auto;
  margin: auto;
  display: inline-block;
  top: -3px;
}
#fp-what-ido .modal-content .contents .content-wrap .text-bottom p .next .svg-enter {
  width: 15px;
  height: 15px;
  display: inline-block;
  margin-left: 11px;
}
#fp-what-ido .sticky-note-wrap {
  min-width: 200px;
  min-height: 200px;
  position: fixed;
  right: 2em;
  top: 50%;
  transform: translateY(-50%) rotate(3deg);
  z-index: 999;
  background-color: #fdfdc9;
  box-shadow: 5px 5px 7px rgba(33, 33, 33, 0.7);
}
#fp-what-ido .sticky-note-wrap .sticky-note-title h3 {
  font-family: "Code", sans-serif;
  text-align: center;
  margin: 1em auto;
  transform: rotate(-3deg);
}
#fp-what-ido .sticky-note-wrap .sticky-note-list-wrap ul {
  padding: 10px 0;
}
#fp-what-ido .sticky-note-wrap .sticky-note-list-wrap ul li {
  margin: 5px;
  font-size: 1.3rem;
}
#fp-what-ido .sticky-note-wrap .sticky-note-list-wrap ul li a {
  font-family: "Reenie Beanie", "sans-serif";
  text-decoration: none;
  color: #000;
}
#fp-what-ido .sticky-note-wrap .sticky-note-list-wrap ul li a::before {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 2px;
  width: calc(100% + 5px);
  background-color: black;
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  transition: transform 0.3s;
  transform-origin: left;
  transform: translate(-50%, -50%) scaleX(0);
}
#fp-what-ido .sticky-note-wrap .sticky-note-list-wrap ul li.active a {
  position: relative;
}
#fp-what-ido .sticky-note-wrap .sticky-note-list-wrap ul li.active a::before {
  transform: translate(-50%, -50%) scaleX(1);
}
#fp-what-ido .sticky-note-wrap .sticky-note-list-wrap ul li:hover a::before {
  transform: translate(-50%, -50%) scaleX(1);
}

nav.navigation {
  position: absolute;
  right: 0;
  z-index: 8;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
}
nav.navigation > span {
  padding: 10px 15px;
  margin: 15px 0;
}
nav.navigation > span a {
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  text-align: center;
  letter-spacing: 1px;
  display: flex;
}
nav.navigation > span a:hover {
  display: none;
}
nav.navigation > span a:hover + span.animation-placeholder {
  display: flex;
}
nav.navigation > span:hover a {
  display: none;
}
nav.navigation > span:hover span.animation-placeholder {
  display: flex;
}
nav.navigation span.animation-placeholder {
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  text-align: center;
  letter-spacing: 1px;
  display: none;
  cursor: pointer;
}
nav.navigation span.animation-placeholder:hover span:nth-child(1) {
  animation-delay: 0.1666666667s;
  animation-name: letter-up;
  animation-duration: 1s;
}
nav.navigation span.animation-placeholder:hover span:nth-child(2) {
  animation-delay: 0.3333333333s;
  animation-name: letter-up;
  animation-duration: 1s;
}
nav.navigation span.animation-placeholder:hover span:nth-child(3) {
  animation-delay: 0.5s;
  animation-name: letter-up;
  animation-duration: 1s;
}
nav.navigation span.animation-placeholder:hover span:nth-child(4) {
  animation-delay: 0.6666666667s;
  animation-name: letter-up;
  animation-duration: 1s;
}
nav.navigation span.animation-placeholder:hover span:nth-child(5) {
  animation-delay: 0.8333333333s;
  animation-name: letter-up;
  animation-duration: 1s;
}
nav.navigation span.animation-placeholder:hover span:nth-child(6) {
  animation-delay: 1s;
  animation-name: letter-up;
  animation-duration: 1s;
}
nav.navigation span.animation-placeholder:hover span:nth-child(7) {
  animation-delay: 1.1666666667s;
  animation-name: letter-up;
  animation-duration: 1s;
}
nav.navigation span.animation-placeholder:hover span:nth-child(8) {
  animation-delay: 1.3333333333s;
  animation-name: letter-up;
  animation-duration: 1s;
}

div.copied {
  z-index: 4;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-family: "Roboto", sans-serif;
  transition: 0.3s all;
  opacity: 1;
  display: none;
  opacity: 0;
  pointer-events: none;
}
div.copied p {
  padding: 15px 20px;
  background: rgba(238, 238, 238, 0.2117647059);
  color: #fff;
  border-radius: 5px;
}

@keyframes letter-up {
  0% {
    top: 0px;
  }
  20% {
    top: -10px;
  }
  100% {
    top: 0;
  }
}
@keyframes rotate-text-up {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 0;
  }
  33% {
    transform: translate3d(0, -5px, 0);
    opacity: 1;
  }
  66% {
    transform: translate3d(0, 5px, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotate-axis {
  0% {
    transform: rotateY(0);
    opacity: 0;
  }
  30% {
    opacity: 1;
    transform: rotateY(120deg);
  }
  100% {
    transform: rotateY(360deg);
    opacity: 0;
  }
}
@keyframes rotate-axis-x {
  0% {
    transform: rotateX(0);
    opacity: 1;
  }
  30% {
    opacity: 1;
    transform: rotateY(120deg);
  }
  100% {
    transform: rotateX(360deg);
    opacity: 0;
  }
}
@keyframes borderAnimation {
  0% {
    left: -5px;
    top: -5px;
    width: 50%;
    height: 5px;
  }
  15% {
    left: 100%;
    top: -5px;
    width: 5px;
    height: 5px;
  }
  20% {
    height: 50%;
  }
  25% {
    left: 100%;
    top: 100%;
    width: 5px;
    height: 5px;
  }
  30% {
    width: 10px;
  }
  40% {
    top: 100%;
    left: -5px;
    height: 5px;
    width: 5px;
  }
  50% {
    top: 100%;
    left: -5px;
  }
  65% {
    top: -5px;
    left: -5px;
  }
  100% {
    top: -5px;
    left: -5px;
  }
}
@keyframes rotate-img {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes move-img {
  to {
    transform: translateY(15px);
  }
}
@keyframes shine {
  to {
    background-position-x: -200%;
  }
}
@keyframes arrow-animate {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-20px, -20px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(20px, 20px);
  }
}
@media only screen and (max-width: 1500px) {
  div.fp-tabbed-content {
    left: 50%;
    top: 75%;
  }
}
@media only screen and (max-width: 1300px) and (max-height: 800px) {
  div.content-wrapper div.main-text .title .block {
    font-size: 90px;
  }
  div.content-wrapper div.main-text .subtitle {
    top: calc(50% - 50px);
  }
  div.content-wrapper div.main-text .subtitle .block {
    font-size: 12px;
  }
  div.content-wrapper div.nav-about .title .block {
    font-size: 50px;
  }
}
@media only screen and (max-width: 1300px) and (max-height: 1000px) {
  div.content-wrapper div.main-text .title .block {
    font-size: 90px;
  }
  div.content-wrapper div.main-text .subtitle {
    top: calc(50% - 50px);
  }
  div.content-wrapper div.main-text .subtitle .block {
    font-size: 12px;
  }
  div.content-wrapper div.nav-about .title .block {
    font-size: 50px;
  }
  div.content-wrapper div.nav-about .content .text {
    font-size: 18px;
  }
}
@media only screen and (max-width: 1300px) {
  div.content-wrapper div.nav-project ul.fp-tabbed-nav {
    margin-top: 45px;
  }
}
@media only screen and (max-width: 1200px) {
  div.content-wrapper .main-text .title .block {
    font-size: 90px;
    max-width: auto;
  }
}
@media only screen and (max-width: 950px) {
  nav.navigation {
    top: 5%;
    right: 5%;
    transform: translateY(0);
    flex-direction: row;
  }
  div.content-wrapper .main-text .title .block {
    font-size: 50px;
  }
  div.content-wrapper .main-text .subtitle {
    top: 60%;
  }
  div.content-wrapper .main-text .subtitle .block {
    font-size: 12px;
  }
  div.content-wrapper div.nav-about .title {
    font-size: 40px;
  }
  div.fp-tabbed-content {
    left: calc(50% - 200px);
    top: 80%;
  }
}
@media only screen and (max-width: 650px) {
  div.content-wrapper div.nav-about .content .text {
    font-size: 15px;
  }
  div.content-wrapper div.nav-about .content .text .text-animation-1 {
    width: 150px;
  }
}
.animate__fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

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