@font-face {
  font-family: Raleway-Thin;
  src: url(../Raleway/static/Raleway-Thin.ttf) format("truetype");
}
@font-face {
  font-family: Raleway-Light;
  src: url(../Raleway/static/Raleway-Light.ttf) format("truetype");
}
@font-face {
  font-family: Raleway-Bold;
  src: url(../Raleway/static/Raleway-Bold.ttf) format("truetype");
}



.tags{
  font-family: Raleway-light;
margin-top: 0px;
color: rgb(255, 255, 255);
font-size: 30px;
line-height: 1.6;

}

.mouse {
  width: 50px;
  height: 90px;
  border: 3px solid #ffffff;
  border-radius: 60px;
  position: relative;
}
.mouse::before {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  border-radius: 50%;
  opacity: 1;
  animation: wheel 2s infinite;
  -webkit-animation: wheel 2s infinite;
}

@keyframes wheel {
  to {
    opacity: 0;
    top: 60px;
  }
}
@-webkit-keyframes wheel {
  to {
    opacity: 0;
    top: 60px;
  }
}

* {
  box-sizing: border-box;
}





.waves {
  position:relative;
  width: 100%;
  height:15vh;
  bottom: 0;
  margin-bottom:-7px; /*Fix for safari gap*/
  min-height:200px;
  max-height:250px;
}

.content {
  position:relative;
  height:20vh;
  text-align:center;
  background-color: white;
}

/* Animation */

.parallax > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5)     infinite;
}
.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}
@keyframes move-forever {
  0% {
   transform: translate3d(-90px,0,0);
  }
  100% { 
    transform: translate3d(85px,0,0);
  }
}
/*Shrinking for mobile*/
@media (max-width: 768px) {
  .waves {
    width: 100%;
    height:15vh;
 
    min-height:40px;
  }
  .content {
    height:50vh;
  }

}
	

@keyframes animate
{
	0%
	{
		background-position: 0;
	}
	100%
	{
		background-position: 1360px;
	}
}

@keyframes animate-reverse
{
	0%
	{
		background-position: 1360px;
	}
	100%
	{
		background-position: 0;
	}
}



@keyframes animate {

    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}

.neon {
  position: relative;
  color: #1bffff;
  text-transform: uppercase;
  background-color: transparent;
  font-size: 30px;
  letter-spacing: 3px;
  overflow: hidden;
  cursor: pointer;
  border: none;
  transition: 0.6s ease;
  height: 50px;
}
.neon:hover {
  color: #333;
  background-color: #1bffff;
  transition-delay: 0.5s;
  box-shadow: 0 0 10px #1bffff, 0 0 40px #1bffff, 0 0 80px #1bffff;
}
.neon:hover span:nth-child(1) {
  left: 100%;
}
.neon:hover span:nth-child(2) {
  top: 100%;
}
.neon:hover span:nth-child(3) {
  right: 100%;
}
.neon:hover span:nth-child(4) {
  bottom: 100%;
}
.neon span {
  position: absolute;
  transition: 0.6s ease;
}
.neon span:nth-child(1) {
  top: 0;
  left: -100%;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, transparent, #1bffff);
  transition-delay: 0.25s;
}
.neon span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #1bffff);
}
.neon span:nth-child(3) {
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 5px;
  background: linear-gradient(270deg, transparent, #1bffff);
  transition-delay: 0.25s;
}
.neon span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(0, transparent, #1bffff);
}


.rocket{
  position: absolute;
  left: calc(50% - 40px);
  top: calc(70% - 14px);
}

.rocket span{
  display: block;
  width: 50px;
  height: 13px;
  background-color: #50eb9670;
  position: absolute;
  border-bottom-right-radius: 100%;
  border-top-right-radius: 100%;
  border-left: 3px solid #827e7ebd;
  border-right: 10px solid #ffffff;
    -webkit-animation: wiggling 300ms infinite;
    -moz-animation: wiggling 300ms infinite;
    -o-animation: wiggling 300ms infinite;
    -ms-animation: wiggling 300ms infinite;
    animation-timing-function: ease-out;
}

.rocket span:before,
.rocket span:after{
  content: '';
  position: absolute;
  display: block;
  width: 51%;
  top:50%;
  height: 50%;
  background-color: #50eb961b;
}

.rocket span:before{
  right: 0;
  border-bottom-right-radius: 100%;
}

.rocket span:after{
  left: -3px;
  border-left: 3px solid #444244;
}



.rocket span i.fin-top,
.rocket span i.fin-bottom{
  display: block;
  position: absolute;
  left: -4px;
  width: 10px;
  height: 10px;
  background-color: #ffffff;
  border-left: 3px solid #000000;
}

.rocket span i.fin-top:before,
.rocket span i.fin-bottom:before{
  content: '';
  position: absolute;
  left: 5px;
  width: 10px;
  height: 100%;
  background-color: #01ffe675;
  bottom: 0;
}

.rocket span i.fin-top{ top: -10px;
    -webkit-transform: skew(35deg, 0deg);
    -moz-transform: skew(35deg, 0deg);
    -o-transform: skew(35deg, 0deg);
    transform: skew(35deg, 0deg);
}
.rocket span i.fin-bottom{
  bottom: -10px;
    -webkit-transform: skew(-35deg, 0deg);
    -moz-transform: skew(-35deg, 0deg);
    -o-transform: skew(-35deg, 0deg);
  transform: skew(-35deg, 0deg);
}
.rocket span i.fin-top:before{
    -webkit-transform: skew(40deg, 0deg);
    -moz-transform: skew(40deg, 0deg);
    -o-transform: skew(40deg, 0deg);
    transform: skew(40deg, 0deg);
}
.rocket span i.fin-bottom:before{
    -webkit-transform: skew(-40deg, 0deg);
    -moz-transform: skew(-40deg, 0deg);
    -o-transform: skew(-40deg, 0deg);
    transform: skew(-40deg, 0deg);
}



.rocket span i.faya{
  position: absolute;
  display: block;
  left: -33px;
  width: 30px;
  height: 100%;
  overflow: hidden;
}

.rocket span i.faya:before{
  position: absolute;
  content: '';
  display: block;
  width: 220px;
  height: 20px;
  left: 0;
  top:0;
  border-radius: 100%;
  background-color: #f45224;
    -webkit-animation: vrouming 200ms infinite;
    -moz-animation: vrouming 200ms infinite;
    -o-animation: vrouming 200ms infinite;
    animation: vrouming 200ms infinite;
}

.rocket span i.faya:after{
  position: absolute;
  content: '';
  display: block;
  width: 220px;
  height: 10px;
  left: 10px;
  top: 5px;
  border-radius: 100%;
  background-color: #ffedd5;
    -webkit-animation: vrouming 200ms infinite;
    -moz-animation: vrouming 200ms infinite;
    -o-animation: vrouming 200ms infinite;
    animation: vrouming 200ms infinite;
}

.rocket span i.wastes{
  position: absolute;
  left: -53px;
  top: -10px;
  width: 50px;
  height: 200%;
}

.rocket span i.wastes i{
  position: absolute;
  width: 3px;
  right: 0;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
}

.rocket span i.wastes i:nth-child(1){
  top:15px;
    -webkit-animation: wasting 500ms infinite 100ms;
    -moz-animation: wasting 500ms infinite 100ms;
    -o-animation: wasting 500ms infinite 100ms;
    animation: wasting 500ms infinite 100ms;
}

.rocket span i.wastes i:nth-child(2){
  top:17px;
    -webkit-animation: wasting2 500ms infinite 200ms;
    -moz-animation: wasting2 500ms infinite 200ms;
    -o-animation: wasting2 500ms infinite 200ms;
    animation: wasting2 500ms infinite 200ms;
}

.rocket span i.wastes i:nth-child(3){
  top:19px;
    -webkit-animation: wasting 500ms infinite 300ms;
    -moz-animation: wasting 500ms infinite 300ms;
    -o-animation: wasting 500ms infinite 300ms;
    animation: wasting 500ms infinite 300ms;
}

.rocket span i.wastes i:nth-child(4){
  top:21px;
    -webkit-animation: wasting2 500ms infinite 400ms;
    -moz-animation: wasting2 500ms infinite 400ms;
    -o-animation: wasting2 500ms infinite 400ms;
    animation: wasting2 500ms infinite 400ms;
}

.rocket span i.wastes i:nth-child(5){
  top:23px;
    -webkit-animation: wasting 500ms infinite 100ms;
    -moz-animation: wasting 500ms infinite 100ms;
    -o-animation: wasting 500ms infinite 100ms;
    animation: wasting 500ms infinite 100ms;
}


@-webkit-keyframes wiggling {
  0% {
    -webkit-transform: translate3d(0px, 0px, 0);
    transform: translate3d(0px, 0px, 0);
  }
  50% {
    -webkit-transform: translate3d(0px, -4px, 0);
    transform: translate3d(0px, -4px, 0);
  }
  100% {
    -webkit-transform: translate3d(0px, 0px, 0);
    transform: translate3d(0px, 0px, 0);
  }
}

@-moz-keyframes wiggling {
  0% {
    -moz-transform: translate3d(0px, 0px, 0);
    transform: translate3d(0px, 0px, 0);
  }
  50% {
    -moz-transform: translate3d(0px, -4px, 0);
    transform: translate3d(0px, -4px, 0);
  }
  100% {
    -moz-transform: translate3d(0px, 0px, 0);
    transform: translate3d(0px, 0px, 0);
  }
}

@-o-keyframes wiggling {
  0% {
    -o-transform: translate3d(0px, 0px, 0);
    transform: translate3d(0px, 0px, 0);
  }
  50% {
    -o-transform: translate3d(0px, -4px, 0);
    transform: translate3d(0px, -4px, 0);
  }
  100% {
    -o-transform: translate3d(0px, 0px, 0);
    transform: translate3d(0px, 0px, 0);
  }
}

@keyframes wiggling {
  0% { transform: translate3d(0px, 0px, 0); }
  50% { transform: translate3d(0px, -4px, 0); }
  100% { transform: translate3d(0px, 0px, 0); }
}


@-webkit-keyframes vrouming {
  0% {
    -webkit-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
  }
}

@-moz-keyframes vrouming {
  0% {
    -moz-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
  }
  50% {
    -moz-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  100% {
    -moz-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
  }
}

@-o-keyframes vrouming {
  0% {
    -o-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
  }
  50% {
    -o-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  100% {
    -o-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
  }
}

@keyframes vrouming {
  0% { transform: translate3d(0px, 0, 0); }
  50% { transform: translate3d(5px, 0, 0); }
  100% { transform: translate3d(0px, 0, 0); }
}


@-webkit-keyframes wasting {
  0% {
    -webkit-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-40px, -5px, 0);
    transform: translate3d(-40px, -5px, 0);
  }
}

@-moz-keyframes wasting {
  0% {
    -moz-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
  }
  100% {
    -moz-transform: translate3d(-40px, -5px, 0);
    transform: translate3d(-40px, -5px, 0);
  }
}

@-o-keyframes wasting {
  0% {
    -o-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
  }
  100% {
    -o-transform: translate3d(-40px, -5px, 0);
    transform: translate3d(-40px, -5px, 0);
  }
}

@keyframes wasting {
  0% { transform: translate3d(0px, 0, 0); }
  100% { transform: translate3d(-40px, -5px, 0); }
}


@-webkit-keyframes wasting2 {
  0% {
    -webkit-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-40px, 5px, 0);
    transform: translate3d(-40px, 5px, 0);
  }
}

@-moz-keyframes wasting2 {
  0% {
    -moz-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
  }
  100% {
    -moz-transform: translate3d(-40px, 5px, 0);
    transform: translate3d(-40px, 5px, 0);
  }
}

@-o-keyframes wasting2 {
  0% {
    -o-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
  }
  100% {
    -o-transform: translate3d(-40px, 5px, 0);
    transform: translate3d(-40px, 5px, 0);
  }
}

@keyframes wasting2 {
  0% { transform: translate3d(0px, 0, 0); }
  100% { transform: translate3d(-40px, 5px, 0); }
}

.rotating-text {
  font-family: Raleway-Thin;
  font-size: 70px;
  color: white;
}
.rotating-text p {
  display: inline-flex;
  margin: 0;
  vertical-align: top;
}
.rotating-text p .word {
  position: absolute;
  display: flex;
  opacity: 0;
}
.rotating-text p .word .letter {
  transform-origin: center center 25px;
}
.rotating-text p .word .letter.out {
  transform: rotateX(90deg);
  transition: 0.32s cubic-bezier(0.6, 0, 0.7, 0.2);
}
.rotating-text p .word .letter.in {
  transition: 0.38s ease;
}
.rotating-text p .word .letter.behind {
  transform: rotateX(-90deg);
}
.turquoise {
  color: #1abc9c;
}

.alizarin {
  color: #e74c3c;
}

.wisteria {
  color: #8e44ad;
}

.peter-river {
  color: #3498db;
}

.emerald {
  color: #2ecc71;
}

.sun-flower {
  color: #f1c40f;
}


.rale{
  font-family: Raleway-Thin;
  margin-top: 80px;
  padding-left: 60px;
  padding-top: 25px;
  color: rgb(255, 255, 255);
  font-size: 95px;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
}
.raleshop{
  font-family: Raleway-Thin;
  margin-top: 3000px;
  padding-left: 60px;
  padding-top: 25px;
  color: rgb(255, 255, 255);
  font-size: 60px;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
}
.text1{
    font-family: Raleway-Regular;
    margin-top: 80px;
    color: white;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.6;
    text-align: center;
}
.welcome{
    font-family: Raleway-Thin;
    margin-top: 0px;
    padding-left: 60px;
    color: rgb(255, 255, 255);
    font-size: 70px;
    font-weight: 500;
    line-height: 1.6;
    text-align: center;
}
.welcomeshop{
  font-family: Raleway-Thin;
  margin-top: 0px;
  padding-left: 60px;
  color: rgb(255, 255, 255);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
}

.sec2{
    font-family: Raleway-Thin;
    margin-top: 0px;
    padding-right: 210px;
    color: rgb(255, 255, 255);
    font-size: px;
    line-height: 1.6;
}
.kopt{
    font-family: Raleway-Thin;
    margin-top: 0px;
    color: rgb(255, 255, 255);
    font-size: 40px;
    line-height: 1.6;
}

.listx{
    font-family: Raleway-light;
    margin-top: 0px;
    color: rgb(255, 255, 255);
    font-size: 20px;
    line-height: 1.6;
}
.loading{

    position: relative;
      font-family: Raleway-light;
      font-size: 15px;
      overflow: hidden;
      background: linear-gradient(90deg, rgb(0, 255, 251), rgb(191, 0, 255), rgb(0, 255, 30));
      background-repeat: no-repeat;
      background-size: 84%;
      animation: animate 3s linear infinite;
     -webkit-background-clip: text;
     -webkit-text-fill-color: rgba(255, 255, 255, 0);      
}

.development{

    position: relative;
      font-family: Raleway-light;
      font-size: 16px;
      overflow: hidden;
      background: linear-gradient(90deg, rgb(0, 255, 30), rgb(0, 255, 98), rgb(0, 255, 30));
      background-repeat: no-repeat;
      background-size: 84%;
      animation: animate 3s linear infinite;
     -webkit-background-clip: text;
     -webkit-text-fill-color: rgba(255, 255, 255, 0);      
}


@keyframes animate {
  0% {
    background-position: -500%;
  }
  100% {
    background-position: 500%;
  }
}

@keyframes showTopText {
  0% { transform: translate3d(0, 100%, 0); }
  40%, 60% { transform: translate3d(0, 50%, 0); }
  100% { transform: translate3d(0, 0, 0); }
}
@keyframes showBottomText {
  0% { transform: translate3d(0, -100%, 0); }
  100% { transform: translate3d(0, 0, 0); }
}
.animated-title {
  color: rgb(255, 255, 255);
  font-family: Raleway-Thin;
  height: 90vmin;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90vmin;
}
.animated-title > div {
  height: 50%;
  overflow: hidden;
  position: absolute;
  width: 100%;
}
.animated-title > div div {
  font-size: 70px;
  position: absolute;
}
.animated-title > div div span {
  display: block;
}
.animated-title > div.text-top {
  border-bottom: 1px solid rgb(255, 255, 255);
  top: 0;
}
.animated-title > div.text-top div {
  animation: showTopText 1s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
  bottom: 0;
  transform: translate(0, 100%);
}
.animated-title > div.text-top div span:first-child {
  color: #ffffff;
}
.animated-title > div.text-bottom {
  bottom: 0;
}
.animated-title > div.text-bottom div {
  animation: showBottomText 0.5s;
  animation-delay: 1.75s;
  animation-fill-mode: forwards;
  top: 0;
  transform: translate(0, -100%);
}

@media (max-width: 827.98px) {

  .mouse {
    width: 30px;
    height: 50px;
    border: 1px solid #ffffff;
    border-radius: 60px;
    position: relative;
  }
  .mouse::before {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    border-radius: 50%;
    opacity: 1;
    animation: wheel 2s infinite;
    -webkit-animation: wheel 2s infinite;
  }

  @keyframes wheel {
    to {
      opacity: 0;
      top: 30px;
    }
  }
  @-webkit-keyframes wheel {
    to {
      opacity: 0;
      top: 30px;
    }
  }
    /* start text roll*/
    .rotating-text {
      font-family: Raleway-Thin;
      font-size: 35px;
      color: white;
    }
    .rotating-text p {
      display: inline-flex;
      margin: 0;
      vertical-align: top;
    }
    .rotating-text p .word {
      position: absolute;
      display: flex;
      opacity: 0;
    }
    .rotating-text p .word .letter {
      transform-origin: center center 25px;
    }
    .rotating-text p .word .letter.out {
      transform: rotateX(90deg);
      transition: 0.32s cubic-bezier(0.6, 0, 0.7, 0.2);
    }
    .rotating-text p .word .letter.in {
      transition: 0.38s ease;
    }
    .rotating-text p .word .letter.behind {
      transform: rotateX(-90deg);
    }
    .turquoise {
      color: #1abc9c;
    }
    
    .alizarin {
      color: #e74c3c;
    }
    
    .wisteria {
      color: #8e44ad;
    }
    
    .peter-river {
      color: #3498db;
    }
    
    .emerald {
      color: #2ecc71;
    }
    
    .sun-flower {
      color: #f1c40f;
    }
    /* end text roll*/

      .loading{

        position: relative;
          font-family: Raleway-light;
          font-size: 15px;
          overflow: hidden;
          background: linear-gradient(90deg, rgb(0, 255, 251), rgb(191, 0, 255), rgb(0, 255, 30));
          background-repeat: no-repeat;
          background-size: 84%;
          animation: animate 3s linear infinite;
        -webkit-background-clip: text;
        -webkit-text-fill-color: rgba(255, 255, 255, 0);      
    }

    .development{

        position: absolute;
          font-family: Raleway-light;
          font-size: 15px;
          overflow: hidden;
          background: linear-gradient(90deg, rgb(0, 255, 30), rgb(0, 255, 98), rgb(0, 255, 30));
          background-repeat: no-repeat;
          background-size: 84%;
          animation: animate 3s linear infinite;
        -webkit-background-clip: text;
        -webkit-text-fill-color: rgba(255, 255, 255, 0);      
    }


  @keyframes animate {
    0% {
      background-position: -500%;
    }
    100% {
      background-position: 500%;
    }
  }


  .rocket{
    position: absolute;
    left: calc(60% - 10px);
    top: calc(70% - 14px);
  }
  .rocket span{
    display: block;
    width: 48px;
    height: 11px;
    background-color: #50eb9670;
    position: absolute;
    border-bottom-right-radius: 100%;
    border-top-right-radius: 100%;
    border-left: 3px solid #ffffffbd;
    border-right: 10px solid #ffffffc4;
      -webkit-animation: wiggling 300ms infinite;
      -moz-animation: wiggling 300ms infinite;
      -o-animation: wiggling 300ms infinite;
      -ms-animation: wiggling 300ms infinite;
      animation-timing-function: ease-out;
  }
  
  .rocket span:before,
  .rocket span:after{
    content: '';
    position: absolute;
    display: block;
    width: 51%;
    top:50%;
    height: 50%;
    background-color: #50eb961b;
  }
  
  .rocket span:before{
    right: 0;
    border-bottom-right-radius: 100%;
  }
  
  .rocket span:after{
    left: -3px;
    border-left: 3px solid #444244;
  }
  
  
  
  .rocket span i.fin-top,
  .rocket span i.fin-bottom{
    display: block;
    position: absolute;
    left: -4px;
    width: 10px;
    height: 10px;
    background-color: #ffffff;
    border-left: 3px solid #000000;
  }
  
  .rocket span i.fin-top:before,
  .rocket span i.fin-bottom:before{
    content: '';
    position: absolute;
    left: 5px;
    width: 10px;
    height: 100%;
    background-color: #01ffe675;
    bottom: 0;
  }
  
  .rocket span i.fin-top{ top: -10px;
      -webkit-transform: skew(35deg, 0deg);
      -moz-transform: skew(35deg, 0deg);
      -o-transform: skew(35deg, 0deg);
      transform: skew(35deg, 0deg);
  }
  .rocket span i.fin-bottom{
    bottom: -10px;
      -webkit-transform: skew(-35deg, 0deg);
      -moz-transform: skew(-35deg, 0deg);
      -o-transform: skew(-35deg, 0deg);
    transform: skew(-35deg, 0deg);
  }
  .rocket span i.fin-top:before{
      -webkit-transform: skew(40deg, 0deg);
      -moz-transform: skew(40deg, 0deg);
      -o-transform: skew(40deg, 0deg);
      transform: skew(40deg, 0deg);
  }
  .rocket span i.fin-bottom:before{
      -webkit-transform: skew(-40deg, 0deg);
      -moz-transform: skew(-40deg, 0deg);
      -o-transform: skew(-40deg, 0deg);
      transform: skew(-40deg, 0deg);
  }
  
  
  
  .rocket span i.faya{
    position: absolute;
    display: block;
    left: -33px;
    width: 30px;
    height: 100%;
    overflow: hidden;
  }
  
  .rocket span i.faya:before{
    position: absolute;
    content: '';
    display: block;
    width: 220px;
    height: 20px;
    left: 0;
    top:0;
    border-radius: 100%;
    background-color: #f45224;
      -webkit-animation: vrouming 200ms infinite;
      -moz-animation: vrouming 200ms infinite;
      -o-animation: vrouming 200ms infinite;
      animation: vrouming 200ms infinite;
  }
  
  .rocket span i.faya:after{
    position: absolute;
    content: '';
    display: block;
    width: 220px;
    height: 10px;
    left: 10px;
    top: 5px;
    border-radius: 100%;
    background-color: #ffedd5;
      -webkit-animation: vrouming 200ms infinite;
      -moz-animation: vrouming 200ms infinite;
      -o-animation: vrouming 200ms infinite;
      animation: vrouming 200ms infinite;
  }
  
  .rocket span i.wastes{
    position: absolute;
    left: -53px;
    top: -10px;
    width: 50px;
    height: 200%;
  }
  
  .rocket span i.wastes i{
    position: absolute;
    width: 3px;
    right: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.5);
  }
  
  .rocket span i.wastes i:nth-child(1){
    top:15px;
      -webkit-animation: wasting 500ms infinite 100ms;
      -moz-animation: wasting 500ms infinite 100ms;
      -o-animation: wasting 500ms infinite 100ms;
      animation: wasting 500ms infinite 100ms;
  }
  
  .rocket span i.wastes i:nth-child(2){
    top:17px;
      -webkit-animation: wasting2 500ms infinite 200ms;
      -moz-animation: wasting2 500ms infinite 200ms;
      -o-animation: wasting2 500ms infinite 200ms;
      animation: wasting2 500ms infinite 200ms;
  }
  
  .rocket span i.wastes i:nth-child(3){
    top:19px;
      -webkit-animation: wasting 500ms infinite 300ms;
      -moz-animation: wasting 500ms infinite 300ms;
      -o-animation: wasting 500ms infinite 300ms;
      animation: wasting 500ms infinite 300ms;
  }
  
  .rocket span i.wastes i:nth-child(4){
    top:21px;
      -webkit-animation: wasting2 500ms infinite 400ms;
      -moz-animation: wasting2 500ms infinite 400ms;
      -o-animation: wasting2 500ms infinite 400ms;
      animation: wasting2 500ms infinite 400ms;
  }
  
  .rocket span i.wastes i:nth-child(5){
    top:23px;
      -webkit-animation: wasting 500ms infinite 100ms;
      -moz-animation: wasting 500ms infinite 100ms;
      -o-animation: wasting 500ms infinite 100ms;
      animation: wasting 500ms infinite 100ms;
  }
  
  
  @-webkit-keyframes wiggling {
    0% {
      -webkit-transform: translate3d(0px, 0px, 0);
      transform: translate3d(0px, 0px, 0);
    }
    50% {
      -webkit-transform: translate3d(0px, -4px, 0);
      transform: translate3d(0px, -4px, 0);
    }
    100% {
      -webkit-transform: translate3d(0px, 0px, 0);
      transform: translate3d(0px, 0px, 0);
    }
  }
  
  @-moz-keyframes wiggling {
    0% {
      -moz-transform: translate3d(0px, 0px, 0);
      transform: translate3d(0px, 0px, 0);
    }
    50% {
      -moz-transform: translate3d(0px, -4px, 0);
      transform: translate3d(0px, -4px, 0);
    }
    100% {
      -moz-transform: translate3d(0px, 0px, 0);
      transform: translate3d(0px, 0px, 0);
    }
  }
  
  @-o-keyframes wiggling {
    0% {
      -o-transform: translate3d(0px, 0px, 0);
      transform: translate3d(0px, 0px, 0);
    }
    50% {
      -o-transform: translate3d(0px, -4px, 0);
      transform: translate3d(0px, -4px, 0);
    }
    100% {
      -o-transform: translate3d(0px, 0px, 0);
      transform: translate3d(0px, 0px, 0);
    }
  }
  
  @keyframes wiggling {
    0% { transform: translate3d(0px, 0px, 0); }
    50% { transform: translate3d(0px, -4px, 0); }
    100% { transform: translate3d(0px, 0px, 0); }
  }
  
  
  @-webkit-keyframes vrouming {
    0% {
      -webkit-transform: translate3d(0px, 0, 0);
      transform: translate3d(0px, 0, 0);
    }
    50% {
      -webkit-transform: translate3d(5px, 0, 0);
      transform: translate3d(5px, 0, 0);
    }
    100% {
      -webkit-transform: translate3d(0px, 0, 0);
      transform: translate3d(0px, 0, 0);
    }
  }
  
  @-moz-keyframes vrouming {
    0% {
      -moz-transform: translate3d(0px, 0, 0);
      transform: translate3d(0px, 0, 0);
    }
    50% {
      -moz-transform: translate3d(5px, 0, 0);
      transform: translate3d(5px, 0, 0);
    }
    100% {
      -moz-transform: translate3d(0px, 0, 0);
      transform: translate3d(0px, 0, 0);
    }
  }
  
  @-o-keyframes vrouming {
    0% {
      -o-transform: translate3d(0px, 0, 0);
      transform: translate3d(0px, 0, 0);
    }
    50% {
      -o-transform: translate3d(5px, 0, 0);
      transform: translate3d(5px, 0, 0);
    }
    100% {
      -o-transform: translate3d(0px, 0, 0);
      transform: translate3d(0px, 0, 0);
    }
  }
  
  @keyframes vrouming {
    0% { transform: translate3d(0px, 0, 0); }
    50% { transform: translate3d(5px, 0, 0); }
    100% { transform: translate3d(0px, 0, 0); }
  }
  
  
  @-webkit-keyframes wasting {
    0% {
      -webkit-transform: translate3d(0px, 0, 0);
      transform: translate3d(0px, 0, 0);
    }
    100% {
      -webkit-transform: translate3d(-40px, -5px, 0);
      transform: translate3d(-40px, -5px, 0);
    }
  }
  
  @-moz-keyframes wasting {
    0% {
      -moz-transform: translate3d(0px, 0, 0);
      transform: translate3d(0px, 0, 0);
    }
    100% {
      -moz-transform: translate3d(-40px, -5px, 0);
      transform: translate3d(-40px, -5px, 0);
    }
  }
  
  @-o-keyframes wasting {
    0% {
      -o-transform: translate3d(0px, 0, 0);
      transform: translate3d(0px, 0, 0);
    }
    100% {
      -o-transform: translate3d(-40px, -5px, 0);
      transform: translate3d(-40px, -5px, 0);
    }
  }
  
  @keyframes wasting {
    0% { transform: translate3d(0px, 0, 0); }
    100% { transform: translate3d(-40px, -5px, 0); }
  }
  
  
  @-webkit-keyframes wasting2 {
    0% {
      -webkit-transform: translate3d(0px, 0, 0);
      transform: translate3d(0px, 0, 0);
    }
    100% {
      -webkit-transform: translate3d(-40px, 5px, 0);
      transform: translate3d(-40px, 5px, 0);
    }
  }
  
  @-moz-keyframes wasting2 {
    0% {
      -moz-transform: translate3d(0px, 0, 0);
      transform: translate3d(0px, 0, 0);
    }
    100% {
      -moz-transform: translate3d(-40px, 5px, 0);
      transform: translate3d(-40px, 5px, 0);
    }
  }
  
  @-o-keyframes wasting2 {
    0% {
      -o-transform: translate3d(0px, 0, 0);
      transform: translate3d(0px, 0, 0);
    }
    100% {
      -o-transform: translate3d(-40px, 5px, 0);
      transform: translate3d(-40px, 5px, 0);
    }
  }
  
  @keyframes wasting2 {
    0% { transform: translate3d(0px, 0, 0); }
    100% { transform: translate3d(-40px, 5px, 0); }
  }
  .nav-tabs[class*="-column"] {
    padding-left: 50px;
    margin-right: -11px;
    margin-bottom: 50px;
    font-size: 1.5em;
}

    .welcome{
    font-family: Raleway-Thin;
    margin-top: 0px;
    padding-left: 0px;
    color: rgb(255, 255, 255);
    font-size: 43px;
    font-weight: 600;
    line-height: 1.6;
    text-align: center;
    }

    .rale{
        font-family: Raleway-Thin;
        margin-top: 0px;
        padding-left: 0px;
        padding-top: 0px;
        color: rgb(255, 255, 255);
        font-size: 48px;
        font-weight: 600;
        line-height: 1.6;
        text-align: center;
    }
    .text1{
        font-family: Raleway-Thin;
        margin-top: 80px;
        color: white;
        font-size: 40px;
        font-weight: 400;
        line-height: 1.6;
        text-align: center;
    }
    .text2{
        font-family: Raleway-Thin;
        margin-top: 80px;
        color: white;
        font-size: 20px;
        font-weight: 400;
        line-height: 1.6;
        text-align: center;
    }
    .sec2{
        font-family: Raleway-Thin;
        margin-top: 0px;
        padding-right: 0px;
        color: rgb(255, 255, 255);
        font-size: 37px;
        line-height: 1.6;
    }
    .kopt{
        font-family: Raleway-Thin;
        margin-top: 0px;
        color: rgb(255, 255, 255);
        font-size: 27px;
        line-height: 1.6;
    }
        .listx{
        font-family: Raleway-light;
        margin-top: 0px;
        color: rgb(255, 255, 255);
        font-size: 17px;
        line-height: 1.6;
    }
        .tags{
          font-family: Raleway-light;
        margin-top: 0px;
        color: rgb(255, 255, 255);
        font-size: 18px;
        line-height: 1.6;

      }



    
}
