* {
  scrollbar-width: auto;
  scrollbar-color: rgb(0 0 0 / 0%);
}

*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

*::-webkit-scrollbar-track {
  background: rgb(0 0 0 / 0%);
}

*::-webkit-scrollbar-thumb {
  background: linear-gradient(to right, #650080, #ff6500);
  border-radius: 10px;
  border: 1px solid transparent;
}

.wrapper {
  position: absolute;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px;
}

.blurer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, 0.4);
}

.canvas-content {
  position: relative;
  overflow: hidden;
}

.webgl {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.mission-margin {
  margin: -50px 0px;
}

.blockquote-wrapper {
  display: flex;
}

/* blockquote-mission main style */
.blockquote-mission {
  position: relative;
  color: #2e6057;
  align-self: center;
  padding: 5rem 1rem 5rem;
  overflow: hidden;
  max-width: 800px;
}

/* blockquote-mission .standout-header */
.blockquote-mission h1 {
  color: #224841;
  position: relative; /* for pseudos */
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1.2;
  margin: 0;
  z-index: 1;
  text-align: center;
}

/* blockquote-mission right double quotes */
.blockquote-mission h1:after {
  content: "’";
  position: absolute;
  top: -3rem;
  left: 0;
  font-size: 5rem;
  line-height: 0.7;
  color: rgba(206, 255, 246, 0.5);
  text-shadow: -3rem -3rem 0 rgba(206, 255, 246, 0.2);
  z-index: -1;
}

.blockquote-mission h1:before {
  content: "’";
  position: absolute;
  top: 0;
  left: 3rem;
  font-size: 5rem;
  line-height: 0.7;
  color: rgba(206, 255, 246, 0.8);
  text-shadow: 3rem 3rem 0 rgba(206, 255, 246, 0.5);
  z-index: -1;
}

.hero-animated {
  position: absolute;
  inset: 0;
}

.animated-text {
  color: #fff;
  text-align: center;
  font-size: 6rem;
  line-height: 1.5;
  font-family: sans-serif;
  margin: 20px 0;
  font-weight: 300;
}

.animated-text span {
  display: none;
  line-height: 1;
}

.animated-text span.active {
  display: inline-block;
}

.animated-text:after {
  content: "i";
  display: inline-block;
  width: 2px;
  text-indent: -100px;
  overflow: hidden;
  background: transparent;
  animation: blink 0.3s infinite alternate;
}

@keyframes blink {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@property --bg-1-x {
  syntax: "<number>";
  inherits: true;
  initial-value: 0;
}
@property --bg-2-x {
  syntax: "<number>";
  inherits: true;
  initial-value: 0;
}
@property --bg-2-y {
  syntax: "<number>";
  inherits: true;
  initial-value: 0;
}
@property --bg-3-x {
  syntax: "<number>";
  inherits: true;
  initial-value: 0;
}
@property --bg-3-y {
  syntax: "<number>";
  inherits: true;
  initial-value: 0;
}

:root {
  --bg-color: hsl(240deg 10% 12%);
  --bg-grain: url("/assets/icons/svgNoise2.svg");
  --bg-grain: url("/assets/icons/svgNoise.svg");
  --shadow-size: max(140px, 40vw);
  --shadow-size-fallback: 40vw;
  --shadow-blur: 60;
  --color-1: #fff;
  --color-2: #fff;
  --color-3: #fff;
  --bg-1-x: 0;
  --bg-1-y: 0;
  --bg-2-x: 0;
  --bg-2-y: 0;
  --bg-3-x: 0;
  --bg-3-y: 0;
}

@supports (color: color(display-p3 1 1 1)) {
  :root {
    --color-1: color(display-p3 0.36 0.17 0.82);
    --color-2: color(display-p3 0.95 0.04 0.95);
    --color-3: color(display-p3 0.01 0.53 0.99);
  }
}

@media (min-width: 960px) {
  :root {
    --shadow-size: max(72px, 25vw);
    --shadow-size-fallback: 25vw;
    --shadow-blur: 80;
  }
}

.hero-animated {
  background: #080b1f;
  backdrop-filter: blur(20px);
  z-index: 1;
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-animated .animated-text {
  color: white;
  font-size: max(48px, 10vw);
  mix-blend-mode: lighten;
  font-weight: 650;
  font-stretch: 110%;
  letter-spacing: -0.04em;
  background: var(--bg-grain),
    conic-gradient(
      from 140deg at calc(var(--bg-1-x) * 1%) 90%,
      #000,
      #000,
      #fffffa,
      #650080,
      #8903ae,
      #ff6500,
      #fff480,
      #fffffa,
      #008080,
      #ff6500,
      #010014
    ),
    radial-gradient(
      ellipse at calc(var(--bg-2-x) * 1%) calc(var(--bg-2-y) * 1%),
      white 12%,
      transparent 35%
    ),
    radial-gradient(
      ellipse at calc(var(--bg-3-x) * 1%) calc(var(--bg-3-y) * 1%),
      #650080,
      transparent 35%
    );
  background-repeat: repeat;
  background-size: 500px, cover;
  background-blend-mode: color-burn;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 1;
  animation: bg 20s linear infinite alternate;
}

@keyframes bg {
  0% {
    --bg-1-x: calc(50 / 2);
    --bg-2-y: calc(80 / 2);
    --bg-2-x: calc(70 / 2);
    --bg-3-y: calc(40 / 2);
    --bg-3-x: calc(90 / 2);
  }
  25% {
    --bg-1-x: 30;
    --bg-2-y: 50;
    --bg-2-x: 80;
    --bg-3-y: 20;
    --bg-3-x: 70;
  }
  50% {
    --bg-1-x: 10;
    --bg-2-y: 40;
    --bg-2-x: 30;
    --bg-3-y: 80;
    --bg-3-x: 50;
  }
  75% {
    --bg-1-x: 70;
    --bg-2-y: 10;
    --bg-2-x: 50;
    --bg-3-y: 30;
    --bg-3-x: 40;
  }
  100% {
    --bg-1-x: calc(50 / 2);
    --bg-2-y: calc(80 / 2);
    --bg-2-x: calc(70 / 2);
    --bg-3-y: calc(40 / 2);
    --bg-3-x: calc(90 / 2);
  }
}

.appointment-area {
  background: linear-gradient(160deg, #080b1f96, #080b1f) 0% 0%/300% 300%;
  -webkit-animation: background 10s infinite;
  animation: background 10s infinite;
  color: #fff;
}

.about-area {
  background: linear-gradient(130deg, #650080, #008080) 0% 0%/300% 300%;
  -webkit-animation: background 10s infinite;
  animation: background 10s infinite;
  color: #fff;
}

.services-area,
.performance-area {
  background: #080b1f;
}

.blog-area,
.team-area,
.about-our-company-inner {
  background: linear-gradient(to right, #ff6500, #008080) 0% 0%/300% 300%;
  color: #fff;
  -webkit-animation: background 10s infinite;
  animation: background 10s infinite;
}

.footer-area {
  background: #080b1f;
}

.service-page-area {
  background: linear-gradient(130deg, #008080 60%, #008000 99%) 0% 0%/300% 300%;
  -webkit-animation: background 10s infinite;
  animation: background 10s infinite;
  color: #fff;
}

.blog-page-area {
  background: linear-gradient(0deg, #ff6500, #008080) 0% 0%/300% 300%;
  -webkit-animation: background 10s infinite;
  animation: background 10s infinite;
  color: #fff;
}

.contact-page-area {
  background: linear-gradient(180deg, #650080, #60008099) 0% 0%/300% 300%;
  -webkit-animation: background 10s infinite;
  animation: background 10s infinite;
  color: #fff;
}

.single-team-area {
  background: linear-gradient(to right, #ff6500, #008080) 0% 0%/300% 300%;
  -webkit-animation: background 10s infinite;
  animation: background 10s infinite;
  color: #fff;
}

.bg-transparent {
  background: transparent !important;
  background-color: transparent !important;
}

.about-image {
  width: 100%;
  /* height: 500px; */
  margin-left: auto;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 60px 40px -7px;
}

.performance-image {
  width: 90%;
  margin-right: auto;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 60px 40px -7px;
}

.hero-area {
  width: 100vw;
  height: 100vh;
  background: #080b1f;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-vid {
  /* box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px; */
  margin-top: 40px;
  width: 600px;
  height: auto;
}

.hero-video {
  width: 100vw;
  height: 100vh;
  padding-top: 30px;
  z-index: 1;
}

.about-img,
.performance-img {
  border-radius: 6px;
  width: 100%;
  animation-name: float;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  margin: auto;
}

.relative {
  position: relative;
}

.parralax-layer {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(2px);
}

.standout-header .item {
  position: relative;
  height: 450px;
  max-width: 600px;
  border: 10px;
  padding: 20px;
  background: #ffffff61;
  backdrop-filter: blur(2px);
}

.standout-header .item .cover {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: transparent;
  display: flex;
  align-items: start;
}

.standout-header .item .cover .header-content {
  position: relative;
  padding: 0px 20px 56px 0px;
  overflow: hidden;
}

.standout-header .item .cover .header-content p {
  font-size: 16px;
  font-weight: 700;
  line-height: 36px;
  color: #000;
}

.standout-header .owl-item.active p {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.3s;
}

.px-40 {
  padding-left: 80px;
  padding-right: 80px;
}

.standout-box {
  background: #ffffff34;
  /* background: linear-gradient(120deg, #080b1fab, #008080a0); */
  /* background-size: 300% 100%; */
  /* color: #fff; */
  border-color: none;
  border: none;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.05), 0 10px 10px rgba(0, 0, 0, 0.02);
  backdrop-filter: blur(4px);
  padding: 30px 20px;
  border-radius: 20px;
  z-index: 999;
  position: relative;
  max-width: 100%;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}

.standout-box p {
  font-size: 20px;
  font-weight: 500;
  color: #000000cf;
  /* opacity: 0.5; */
  /* text-align: center; */
}

.standout-boldtext {
  color: #000000;
  opacity: 1 !important;
  font-weight: 600;
  padding: 0 5px;
}

.owl-nav {
  display: none !important;
}

.proposal-btn {
  z-index: 1;
  position: relative;
}

.mission-gap-30 {
  row-gap: 30px;
}

.mission-content {
  max-width: 420px;
  margin-left: 50px;
}

.mission-content .mission-title {
  margin-bottom: 40px;
  border-radius: 6px;
  display: flex;
  justify-content: flex-start;
  align-items: start;
}

.mission-content .mission-title span {
  font-size: 35px;
  font-weight: 600;
}

.mission-content p {
  color: #ffffffc9;
  font-size: 26px;
  font-weight: 500;
  max-width: 400px;
  line-height: 45px;
  /* font-family: Arial Black, Arial Bold, sans-serif; */
  /* text-transform: uppercase; */
}
.mission-content p span {
  font-weight: 600;
}

.mission-content .txt--gradient-pink {
  background-image: linear-gradient(to right, #ff6500, #650080);
  color: rgba(0, 0, 0, 0);
  -webkit-background-clip: text;
  background-clip: text;
  position: relative;
}

.mission-content .txt--gradient-orgreen {
  background-image: linear-gradient(to right, #ff6500, #650080);
  color: rgba(0, 0, 0, 0);
  -webkit-background-clip: text;
  background-clip: text;
  position: relative;
}

.txt--gradient-blue {
  background-image: linear-gradient(to right, #ff6500, #008000);
  color: rgba(0, 0, 0, 0);
  -webkit-background-clip: text;
  background-clip: text;
  position: relative;
}

.txt--gradient-green {
  background-image: linear-gradient(to right, #650080, #008080);
  color: rgba(0, 0, 0, 0);
  -webkit-background-clip: text;
  background-clip: text;
  position: relative;
}

.txt--gradient-purple {
  background-image: linear-gradient(to right, #008080, #ff6500);
  color: rgba(0, 0, 0, 0);
  -webkit-background-clip: text;
  background-clip: text;
  position: relative;
}

.txt-orange {
  color: #ff6500;
}

.standout-title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 80px;
}

.standouttable {
  display: table;
  width: 100%;
  height: 100%;
}

.standouttable-cell {
  display: table-cell;
  vertical-align: middle;
}

.standouttable-cell .container-standoutitem {
  position: relative;
}

.standoutitem {
  font-size: 45px;
  display: flex;
  font-family: "Poppins";
  font-weight: 700;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: #fff;
}

.appointment-area .section-title{
  margin-bottom: 40px;
}

.section-title .standout-title{
  font-size: 40px;
  display: flex;
  font-family: "Poppins";
  font-weight: 700;
}

.standoutitem {
  opacity: 0;
  /* -webkit-animation: text 2s infinite; */
  /* animation: text 2s infinite; */
}

.flags {
  width: 20px;
  height: 15px;
  margin-left: 10px;
}

.flags img {
  width: 20px;
  height: 15px;
  object-fit: cover;
}

.pt-10 {
  padding-top: 40px;
}

.pt-20 {
  padding-top: 80px;
}

.pt-30 {
  padding-top: 120px;
}

.standout-pt-30{
  padding-top: 120px;
}

.-mb-10 {
  z-index: 9999;
  margin-bottom: -40px;
}

.cro-title{
  font-weight: 600;
  font-size: 44px;
}

.flip-card {
  position: relative;
  width: 280px;
  height: 280px;
  margin: auto;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}

.single-team-bio {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  background: #ffffff33;
  backdrop-filter: blur(2px);
  z-index: 3;
  transition: -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -o-transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1),
    -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.single-team-bio p {
  -webkit-transform: translateY(-50%) translateZ(60px) scale(0.94);
  transform: translateY(-50%) translateZ(60px) scale(0.94);
  top: 40%;
  position: absolute;
  left: 0;
  width: 100%;
  padding: 1rem;
  font-size: 14px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: 1px solid transparent;
  -webkit-perspective: inherit;
  perspective: inherit;
  z-index: 2;
}

.btn-view {
  display: inline-block;
  color: #650080;
  font-weight: 600;
  position: relative;
  z-index: 1;
  margin-top: 10px;
}

.btn-view:hover {
  color: #080b1f;
}

.btn-view i {
  margin-left: 8px;
}

.single-team-bio .btn-view {
  transform: translateZ(0px) scale(0.94);
  top: 78%;
  position: absolute;
  left: 0;
  right: 0;
  width: 60%;
  margin: auto;
  padding: 1rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: 1px solid transparent;
  -webkit-perspective: inherit;
  perspective: inherit;
  z-index: 2;
}

.member-image {
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  z-index: 3;
  transition: -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -o-transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1),
    -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.single-team-bio {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.single-team-member:hover .single-team-bio {
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  opacity: 1;
  visibility: visible;
}

.single-team-member:hover .member-image {
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.email-details {
  display: flex;
  max-width: 700px;
  margin: auto;
  align-items: center;
  justify-content: space-around;
}

.email-details h3 {
  margin-left: 0px;
  margin-right: 0px;
}

.email-details h4 a {
  margin-bottom: 0;
  color: #ffffffbe;
}

.value-area {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-video {
  max-width: 900px;
  margin-top: 40px;
  height: 100%;
  width: 100%;
}

.value-content-area {
  background: linear-gradient(130deg, #650080, #008080) 0% 0%/300% 300%;
  -webkit-animation: background 10s infinite;
  animation: background 10s infinite;
  color: #fff;
  min-height: 100vh;
}

.value-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 4em 1.5rem;
}

.value-card {
  border-radius: 6px;
  box-shadow: 0 20px 40px 0 rgba(173, 181, 189, 0.1);
  border: solid 1px rgba(129, 147, 174, 0.12);
  background-color: #ffffff51;
  backdrop-filter: blur(2px);
  padding: 2.5em 1.5em;
  text-align: center;
  position: relative;
}

.value-card__icon {
  width: 60px;
  height: 60px;
}

.value-card:first-child::before {
  content: "";
  position: absolute;
  background-color: #ff6500;
  top: -8px;
  left: -1px;
  width: calc(100% + 2px);
  height: 8px;
  border-radius: 6px 6px 0 0;
}

.value-card:nth-child(2)::before {
  content: "";
  position: absolute;
  background-color: #650080;
  top: -8px;
  left: -1px;
  width: calc(100% + 2px);
  height: 8px;
  border-radius: 6px 6px 0 0;
}
.value-card:nth-child(3)::before {
  content: "";
  position: absolute;
  background-color: #080b1f;
  top: -8px;
  left: -1px;
  width: calc(100% + 2px);
  height: 8px;
  border-radius: 6px 6px 0 0;
}

.value-card:last-child::before {
  content: "";
  position: absolute;
  background-color: #008000;
  top: -8px;
  left: -1px;
  width: calc(100% + 2px);
  height: 8px;
  border-radius: 6px 6px 0 0;
}

.value-card__body {
  padding-top: 1.5em;
}

.value-card__head {
  font-size: 24px;
  margin-bottom: 15px;
  margin-top: 15px;
  color: #080b1f;
  font-weight: 600;
}

.value-card__content {
  font-size: 18px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  min-height: 100vh;
  padding-top: 60px;
  gap: 20px 10px;
}

.service-img {
  width: 200px;
  margin: 0 auto;
}

.content-enterprise {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
}

.content-li li {
  margin-top: 5px;
}

.list-style-none {
  list-style: none;
}

.pl-0 {
  padding-left: 0px;
}
.back-btn {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff45;
  cursor: pointer;
  /* border: 1px solid #080b1f; */
  box-shadow: 0 20px 40px 0 rgba(173, 181, 189, 0.1);
  position: absolute;
  z-index: 9999;
  left: 50px;
  top: 120px;
}

.back-btn:hover {
  color: #fff !important;
}

.subtitle-single {
  font-size: 22px;
  margin-top: 20px;
}

.toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 30px;
  height: 30px;
  z-index: 999;
}

.toggle .menu {
  display: flex;
  flex-direction: column;
  float: left;
  transition: all 275ms ease;
  cursor: pointer;
  gap: 5px 0;
  width: 30px;
  height: 30px;
}

.toggle .menu span {
  display: block;
  width: 30px;
  height: 3px;
  background: #ffffffd9;
  margin-bottom: 2px;
  border-radius: 10px;
  transition: all 275ms ease;
}
.toggle .menu span:nth-child(2){
  width: 15px;
  margin-left: auto;
}

.mobile-nav-dropdown{
  display: flex;
  background: #fff;
  width: 300px;
  height: fit-content;
  padding: 30px 20px;
  border-radius: 10px;
  position: absolute;
  left: -270px;
  top: 40px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in;
}

.mobile-nav{
  display: flex;
  flex-direction: column;
  /* gap: 20px; */
  width: 100%;
}
.mobile-nav-item{
  padding: 10px;
}
.mobile-nav .btn-mobile-talk{
  width: 100%;
  margin-top: 20px;
}
.toggle:hover  span:nth-child(2){
  width: 30px;
  transition: all 0.3s ease-in;
}

.toggle:hover .mobile-nav-dropdown{
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease-in;
}

@keyframes text {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes text {
  0% {
    opacity: 1;
  }
  2.9% {
    opacity: 1;
  }
  3% {
    opacity: 0;
  }
  99% {
    opacity: 0;
  }
  99.9% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@-o-keyframes text {
  0% {
    opacity: 1;
  }
  2.9% {
    opacity: 1;
  }
  3% {
    opacity: 0;
  }
  99% {
    opacity: 0;
  }
  99.9% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes text {
  0% {
    opacity: 1;
  }
  2.9% {
    opacity: 1;
  }
  3% {
    opacity: 0;
  }
  99% {
    opacity: 0;
  }
  99.9% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

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

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

@keyframes float {
  from {
    transform: translate(0, 0px);
  }

  65% {
    transform: translate(0, 20px);
  }

  to {
    transform: translate(0, -0px);
  }
}
