*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  background: #010306;
  color: #000000;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  height: 100%;
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
}

li {
  list-style-type: none;
}

/*#region typography and shared */
h1 {
  margin: 0;
}

a {
  text-decoration: none;
  color: #bbb;
}

.noselect {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version */
}

.hit-the-floor {
  color: #fff;
  text-shadow: 0 1px 0 #02d9fd, 0 2px 0 #439fef, 0 3px 0 #1634b2, 0 4px 0 #25afae7d, 0 5px 0 #32b3d026;
}

.cta-btn {
  background-color: #fc01d470;
  background-color: #008cffb0;
  color: white;
  padding: 5px 25px;
  border-radius: 5px;
  text-decoration: none;
  -webkit-transition: 0.1s ease-in-out;
  transition: 0.1s ease-in-out;
}

.cta-btn:hover {
  background-color: #008cffb0;
  -webkit-box-shadow: 0px 0px 2px 2px #07c8eeb8;
          box-shadow: 0px 0px 2px 2px #07c8eeb8;
  color: white;
  cursor: pointer;
}

/*#endregion typography and shared*/
section.hero {
  height: 100vh;
  overflow: hidden;
  position: relative;
  padding-top: 0;
  margin-top: 0;
  display: -ms-grid;
  display: grid;
      grid-template-areas: "esign" "heading";
  background: -webkit-gradient(linear, left top, left bottom, from(#06295954), to(rgba(0, 0, 0, 0.89))), url("/images/portland-1840765_1920.jpg");
  background: linear-gradient(#06295954, rgba(0, 0, 0, 0.89)), url("/images/portland-1840765_1920.jpg");
  background-size: cover;
}

section.hero nav {
  grid-area: nav;
  display: none;
}

section.hero .content {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: heading;
  width: 70%;
  margin: auto;
}

section.hero .content h1 {
  font-size: 2em;
  color: #fff;
}

section.hero .content p {
  font-size: 1.2em;
  color: #fff;
}

section.hero .video-container {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: esign;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 98;
  z-index: 98;
}

section.hero .video-container video {
  -webkit-clip-path: url(#emask);
          clip-path: url(#emask);
  width: 100%;
  aspect-ratio: 1 / 1;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}

section.hero .video-container .esign {
  -webkit-clip-path: url(#emask);
          clip-path: url(#emask);
  aspect-ratio: 1 / 1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 70%;
  margin: 4rem auto 1rem;
}

section.hero .video-container .brand-name {
  width: 68%;
  -ms-grid-column-align: center;
      justify-self: center;
  margin: 0 auto 0 auto;
}

/*#region additional future sections */
section.about {
  background-color: #eee;
}

section.services {
  background-color: whitesmoke;
}

section.contact {
  display: -ms-grid;
  display: grid;
  position: relative;
      grid-template-areas: "header" "form" "info";
  width: 80%;
  margin: auto;
  background-color: #010306;
}

section.contact h1 {
  color: #adadad;
  font-size: 2.7rem;
  text-align: center;
  padding-top: 80px;
  z-index: 10;
}

section.contact .contact-form {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: form;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

section.contact .contact-form .form-control,
section.contact .contact-form textarea {
  width: 100%;
  background-color: #000;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  border: 1px solid white;
  padding: 0.9em;
  border-radius: 5px;
}

section.contact .contact-form .cta-btn {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: 0;
  padding: 10px;
  text-decoration: none;
  color: white;
  width: 100px;
  margin: auto;
}

section.contact .contact-form .cta-btn:hover {
  cursor: pointer;
}

section.contact .contact-info {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: info;
  margin-top: 4rem;
  /* Social Media Icons */
  /*#endregion contact */
}

section.contact .contact-info p {
  color: #adadad;
}

section.contact .contact-info .social-media-list {
  position: relative;
  font-size: 22px;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

section.contact .contact-info .social-media-list li a {
  color: #fff;
}

section.contact .contact-info .social-media-list li {
  position: relative;
  display: inline-block;
  height: 60px;
  width: 60px;
  margin: 10px 3px;
  line-height: 60px;
  border-radius: 50%;
  color: #fff;
  background-color: #1b1b1b;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

section.contact .contact-info .social-media-list li:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  opacity: 0;
  -webkit-box-shadow: 0 0 0 1px #fff;
          box-shadow: 0 0 0 1px #fff;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

section.contact .contact-info .social-media-list li:hover {
  background-color: #008cffb0;
}

section.contact .contact-info .social-media-list li:hover:after {
  opacity: 1;
  -webkit-transform: scale(1.12);
          transform: scale(1.12);
  -webkit-transition-timing-function: cubic-bezier(0.37, 0.74, 0.15, 1.65);
          transition-timing-function: cubic-bezier(0.37, 0.74, 0.15, 1.65);
}

section.contact .contact-info .social-media-list li:hover a {
  color: #000;
}

section.contact .contact-info .copyright {
  font: 200 14px;
  color: #555;
  letter-spacing: 1px;
  text-align: center;
}

section.contact .contact-info hr {
  border-color: rgba(255, 255, 255, 0.6);
}

section.contact .thanks {
  display: none;
  color: white;
}

section.contact svg {
  position: absolute;
  z-index: 0;
  width: 80%;
  margin: 0 auto;
}

/*#endregion additional sections */
.svg-clip {
  position: absolute;
  width: 0;
  height: 0;
}

footer {
  height: 100%;
  background-color: #010306;
}

@media screen and (min-width: 950px) {
  .navbar-bg {
    position: fixed;
    width: 100%;
    height: 75px;
    background-color: transparent;
    z-index: 99;
  }
  section.hero {
    display: -ms-grid;
    display: grid;
        grid-template-areas: "nav nav" "esign heading";
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    -ms-grid-rows: 0px 1fr;
        grid-template-rows: 0px 1fr;
  }
  section.hero nav {
    position: fixed;
    -webkit-box-pack: right;
        -ms-flex-pack: right;
            justify-content: right;
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: nav;
    height: 75px;
    display: unset;
    font-size: 1.2em;
    z-index: 100;
  }
  section.hero nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    right: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: right;
        -ms-flex-pack: right;
            justify-content: right;
    margin-right: 5px;
  }
  section.hero nav ul li {
    padding: 5px 30px;
    list-style-type: none;
  }
  section.hero .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    width: 20vw;
    min-width: 420px;
    height: 20vw;
    min-height: 420px;
  }
  section.hero .video-container {
    margin: auto 0 auto auto;
  }
  section.hero .video-container video {
    -webkit-clip-path: url(#emask);
            clip-path: url(#emask);
    width: 100%;
    aspect-ratio: 1 / 1;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: -10;
    margin: 0;
  }
  section.hero .video-container .esign {
    width: 80%;
    margin: auto auto 1rem auto;
  }
  section.hero .video-container .brand-name {
    width: 78%;
  }
  section.hero .content {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: auto auto auto 2rem;
    text-align: left;
  }
  section.hero .content h1 {
    font-size: 4.2em;
    color: #f8f8f8db;
    line-height: 1.2em;
    letter-spacing: 0.25rem;
    margin-bottom: 1rem;
  }
  section.hero .content p {
    font-size: 1.5em;
    letter-spacing: 0.25rem;
    margin-top: 0.5rem;
  }
  section.contact {
    position: relative;
    width: 60%;
    height: 100vh;
    padding-top: 80px;
        grid-template-areas: ". ." "head head" "form info";
    -ms-grid-rows: 20px 0.35fr 1fr;
        grid-template-rows: 20px 0.35fr 1fr;
    grid-row-gap: 80px;
  }
  section.contact .contact-header {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: head;
    font-size: 3em;
  }
  section.contact .contact-form {
    position: absolute;
    width: 20vw;
    min-width: 420px;
    right: 2rem;
  }
  section.contact .contact-info {
    position: absolute;
    width: 20vw;
    min-width: 420px;
    margin-top: unset;
    left: 2rem;
  }
}

/*#region @keyframes and their @media screens*/
/*#region @media screens*/
@media screen and (max-width: 959px) {
  .animate.rotate-360 {
    -webkit-animation: rotate360 1s ease both;
            animation: rotate360 1s ease both;
  }
  .animate.flip-360 {
    -webkit-animation: flip360 1s ease both;
            animation: flip360 1s ease both;
  }
  .animate.ease-up {
    -webkit-animation: easeUp 3s ease both;
            animation: easeUp 3s ease both;
  }
  .animate.ease-down {
    -webkit-animation: easeDown 3s ease both;
            animation: easeDown 3s ease both;
  }
  .animate.pop-in {
    -webkit-animation: popIn 1s both;
            animation: popIn 1s both;
  }
  .animate.fade-in {
    -webkit-animation: fadeIn 2s ease both;
            animation: fadeIn 2s ease both;
  }
  .animate.ease-left {
    -webkit-animation: easeLeft 0.8s ease both;
            animation: easeLeft 0.8s ease both;
  }
  .animate.ease-right {
    -webkit-animation: easeRight 0.8s ease both;
            animation: easeRight 0.8s ease both;
  }
  .animate.flip-in-x {
    -webkit-animation: flipInX 0.5s ease both;
            animation: flipInX 0.5s ease both;
  }
}

@media screen and (min-width: 960px) {
  .animate.rotate-360 {
    -webkit-animation: rotate360 1s ease both;
            animation: rotate360 1s ease both;
  }
  .animate.flip-360 {
    -webkit-animation: flip360 4s ease both;
            animation: flip360 4s ease both;
  }
  .animate.ease-up {
    -webkit-animation: easeUp 3s ease both;
            animation: easeUp 3s ease both;
    -webkit-animation-delay: 0.25s;
            animation-delay: 0.25s;
  }
  .animate.ease-down {
    -webkit-animation: easeDown 3s ease both;
            animation: easeDown 3s ease both;
  }
  .animate.ease-left {
    -webkit-animation: easeLeft 1.2s ease both;
            animation: easeLeft 1.2s ease both;
  }
  .animate.ease-right {
    -webkit-animation: easeRight 1.2s ease both;
            animation: easeRight 1.2s ease both;
  }
  .animate.flip-in-x {
    -webkit-animation: flipInX 0.5s ease both;
            animation: flipInX 0.5s ease both;
  }
  .animate.fade-in {
    -webkit-animation: fadeIn 2s ease both;
            animation: fadeIn 2s ease both;
  }
  .animate.pop-in {
    -webkit-animation: popIn 1s both;
            animation: popIn 1s both;
  }
}

/*#endregion @media screens*/
/*#region specks */
#scene {
  height: 0;
  width: 0;
  margin: 0;
  padding: 0;
  background-color: transparent;
}

#specks {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
}

.speck {
  opacity: 0;
  height: 4px;
  width: 4px;
  background-color: #32cfff;
  background-size: cover;
  position: absolute;
  border-radius: 10px;
  z-index: 99;
}

@-webkit-keyframes twinkle {
  0% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
  30% {
    opacity: 0;
  }
  50% {
    opacity: 0.75;
  }
  70% {
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(420px, 100px);
            transform: translate(420px, 100px);
  }
}

@keyframes twinkle {
  0% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
  30% {
    opacity: 0;
  }
  50% {
    opacity: 0.75;
  }
  70% {
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(420px, 100px);
            transform: translate(420px, 100px);
  }
}

/*#endregion specks */
.fadeInNav {
  -webkit-animation: fadeInNav 0.5s ease both;
          animation: fadeInNav 0.5s ease both;
}

.fadeOutNav {
  -webkit-animation: fadeOutNav 0.5s ease both;
          animation: fadeOutNav 0.5s ease both;
}

@-webkit-keyframes zooms {
  0% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes zooms {
  0% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.animate.zooms {
  -webkit-animation: zooms 5s ease-in-out;
          animation: zooms 5s ease-in-out;
}

@-webkit-keyframes fadeInNav {
  0% {
    background-color: transparent;
    border-bottom: 1px solid transparent;
  }
  100% {
    background-color: #1b1b1bfc;
    border-bottom: 1px solid #373737;
  }
}

@keyframes fadeInNav {
  0% {
    background-color: transparent;
    border-bottom: 1px solid transparent;
  }
  100% {
    background-color: #1b1b1bfc;
    border-bottom: 1px solid #373737;
  }
}

@-webkit-keyframes fadeOutNav {
  0% {
    background-color: #1b1b1bfc;
    border-bottom: 1px solid #373737;
  }
  100% {
    background-color: transparent;
    border-bottom: 1px solid transparent;
  }
}

@keyframes fadeOutNav {
  0% {
    background-color: #1b1b1bfc;
    border-bottom: 1px solid #373737;
  }
  100% {
    background-color: transparent;
    border-bottom: 1px solid transparent;
  }
}

@-webkit-keyframes rotate360 {
  0% {
    -webkit-transform: rotate3d(0, 1, 0, 0deg);
            transform: rotate3d(0, 1, 0, 0deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate3d(0, 1, 0, 360deg);
            transform: rotate3d(0, 1, 0, 360deg);
  }
}

@keyframes rotate360 {
  0% {
    -webkit-transform: rotate3d(0, 1, 0, 0deg);
            transform: rotate3d(0, 1, 0, 0deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate3d(0, 1, 0, 360deg);
            transform: rotate3d(0, 1, 0, 360deg);
  }
}

@-webkit-keyframes flip360 {
  0% {
    -webkit-transform: rotate3d(180, 0, 0, 0deg);
            transform: rotate3d(180, 0, 0, 0deg);
  }
  50% {
    opacity: 1;
    -webkit-transform: rotate3d(180, 0, 0, 360deg);
            transform: rotate3d(180, 0, 0, 360deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate3d(0, 0, 0, -360deg);
            transform: rotate3d(0, 0, 0, -360deg);
  }
}

@keyframes flip360 {
  0% {
    -webkit-transform: rotate3d(180, 0, 0, 0deg);
            transform: rotate3d(180, 0, 0, 0deg);
  }
  50% {
    opacity: 1;
    -webkit-transform: rotate3d(180, 0, 0, 360deg);
            transform: rotate3d(180, 0, 0, 360deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate3d(0, 0, 0, -360deg);
            transform: rotate3d(0, 0, 0, -360deg);
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes easeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(45px);
            transform: translateY(45px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes easeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(45px);
            transform: translateY(45px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes easeDown {
  0% {
    -webkit-transform: translateY(-55px);
            transform: translateY(-55px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes easeDown {
  0% {
    -webkit-transform: translateY(-55px);
            transform: translateY(-55px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes easeLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-300px);
            transform: translateX(-300px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes easeLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-300px);
            transform: translateX(-300px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@-webkit-keyframes easeRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(300px);
            transform: translateX(300px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes easeRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(300px);
            transform: translateX(300px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@-webkit-keyframes popIn {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  80% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes popIn {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  80% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes flipInX {
  from {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
  }
  40% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(5deg);
  }
  to {
    opacity: 1;
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  from {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
  }
  40% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(5deg);
  }
  to {
    opacity: 1;
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@-webkit-keyframes scrollarrow {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
            transform: rotate(-45deg) translate(0, 0);
  }
  20% {
    -webkit-transform: rotate(-45deg) translate(-10px, 10px);
            transform: rotate(-45deg) translate(-10px, 10px);
  }
  40% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
            transform: rotate(-45deg) translate(0, 0);
  }
}

@keyframes scrollarrow {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
            transform: rotate(-45deg) translate(0, 0);
  }
  20% {
    -webkit-transform: rotate(-45deg) translate(-10px, 10px);
            transform: rotate(-45deg) translate(-10px, 10px);
  }
  40% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
            transform: rotate(-45deg) translate(0, 0);
  }
}

@-webkit-keyframes easeDownBack {
  0% {
    -webkit-transform: translateY(-55vh);
            transform: translateY(-55vh);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes easeDownBack {
  0% {
    -webkit-transform: translateY(-55vh);
            transform: translateY(-55vh);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@-webkit-keyframes easeOutBack {
  0% {
    -webkit-transform: translateX(55vw);
            transform: translateX(55vw);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes easeOutBack {
  0% {
    -webkit-transform: translateX(55vw);
            transform: translateX(55vw);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@-webkit-keyframes spectral {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes spectral {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/*#endregion @keyframes*/
section.privacy {
  color: #fff;
  width: 60%;
  margin: auto;
}
/*# sourceMappingURL=styles.css.map */