.ipidiv, .iiaidiv {
  visibility: hidden;
  margin: 0 auto;
}

.box:hover > .ipidiv, .box:hover > .iiaidiv {
  visibility: visible;
  transition-delay: 1s;
}


.box {
  margin: 20px 0;
  width: 70vw;
  /*height: 60px;*/
  border-radius: 20px;
  position: relative;
  font-size: 1em;
  background: rgba(255,255,255,0);
  display: inline-block;
  cursor: default;
  padding: 5px;
  color: white;
  opacity: 70%;
  /*box-shadow: inset 0 0 0 .5px #388e3c5c;
  -webkit-transition: background 0.4s 0.5s;
  transition: background 0.4s 0.5s;*/
}


/*.box:hover {
	background: rgba(255,255,255,0);
	-webkit-transition-delay: .5s;
	transition-delay: .5s;
	-webkit-box-shadow: 0px 0px 50px 5px #388e3c7d;
	box-shadow: 0px 0px 50px 5px #388e3c7d;
	transition: box-shadow 2s ease;
	-webkit-transition: box-shadow 2s ease;
}*/


.box span {
  display: block;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 16px;
  padding: 5px;
}


.box span {
  -webkit-transition: color 0.4s 0.5s;
  transition: color 0.4s 0.5s;
  text-shadow: 2px 2px 4px #000000;
}


.box:hover span {
  color: #fff;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.box svg {
  position: absolute;
  top: 0;
  left: 0;
}

.box svg line {
  stroke-width: 1;
  stroke: #ecf0f1;
  fill: none;
  -webkit-transition: all .8s ease-in-out;
  transition: all .8s ease-in-out;
}

.box:hover svg line {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.box svg line.top,
.box svg line.bottom {
  stroke-dasharray: 330 240; 
}

.box svg line.left,
.box svg line.right {
  stroke-dasharray: 490 400;
}

.box:hover svg line.top {
  -webkit-transform: translateX(-600px);
  transform: translateX(-600px);
}

.box:hover svg line.bottom {
  -webkit-transform: translateX(600px);
  transform: translateX(600px);
}

.box:hover svg line.left {
  -webkit-transform: translateY(920px);
  transform: translateY(920px);
}

.box:hover svg line.right {
  -webkit-transform: translateY(-920px);
  transform: translateY(-920px);
}


/* -------------------------------- 

Scale style animation

-------------------------------- */
.scale.cd-intro-content * {
  /* overwrite default style */
  opacity: 1;
}

.scale.cd-intro-content {
  /* overwrite default style */
  background-color: transparent;
  /* Force hardware acceleration */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-animation: cd-scale-in .5s 0.3s both;
  -moz-animation: cd-scale-in .5s 0.3s both;
  animation: cd-scale-in .5s 0.3s both;
}

@-webkit-keyframes cd-scale-in {
  0% {
    opacity: 0;
    -webkit-transform: scale(3);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
  }
}
@-moz-keyframes cd-scale-in {
  0% {
    opacity: 0;
    -moz-transform: scale(3);
  }
  100% {
    opacity: 1;
    -moz-transform: scale(1);
  }
}
@keyframes cd-scale-in {
  0% {
    opacity: 0;
    -webkit-transform: scale(3);
    -moz-transform: scale(3);
    -ms-transform: scale(3);
    -o-transform: scale(3);
    transform: scale(3);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}

.cd-intro-content.scale {
  -webkit-animation-delay: 3s;
  -moz-animation-delay:3s;
  animation-delay: 3s;
}

/*-------------*/

.pageloader {
  position: fixed;
  left: 0px;
  top: 0px;
	width: 100vw;
	height: 100vh;
	z-index: 9999;
	background-color: #000000;
}

/**/
.type{
  color:white;
  opacity: 1;
}

.type-cursor{
  color:white;
	opacity: 1;
	font-weight: bold;
	-webkit-animation: blink 0.9s infinite;
	-moz-animation: blink 0.9s infinite;
	-ms-animation: blink 0.9s infinite;
	-o-animation: blink 0.9s infinite;
	animation: blink 0.9s infinite;
        }
        @-keyframes blink{
            color:white;
            0% { opacity:1; }
            50% { opacity:0; }
            100% { opacity:1; }
        }
        @-webkit-keyframes blink{

            0% { opacity:1; }
            50% { opacity:0; }
            100% { opacity:1; }
        }
        @-moz-keyframes blink{
            0% { opacity:1; }
            50% { opacity:0; }
            100% { opacity:1; }
        }
        @-ms-keyframes blink{
            0% { opacity:1; }
            50% { opacity:0; }
            100% { opacity:1; }
        }
        @-o-keyframes blink{
            0% { opacity:1; }
            50% { opacity:0; }
            100% { opacity:1; }
        }
/**/

/* Demo specific styles end */


/* */

.loader-ring {
  top: calc(50% - 100px);
  left: 50%;
  pointer-events: none;
}


/* Demo specific styles end */

.loader-ring {
  position: absolute;
  height: 75px;
  width: 75px;
  border-radius: 0 100% 0 0;
  border: 1px solid white;
  border-width: 0px 5px 0px 0px;
  box-shadow: 5px 1px 2px -4px white, inset -4px 1px 3px -4px white;
  transform-origin: 0px 100%;
  animation: rotate .5s linear infinite;
}


}


.loader-ring:after {
  position: absolute;
  height: 1px;
  width: 1px;
  top: 100%;
  left: calc(100% + 2px);
  border-radius: 100%;
  border-width: 0;
  background: white;
  box-shadow: 0px 0 3px 3px white;
  content: '';
}

.loader-ring:before {
  position: absolute;
  height: 200%;
  width: 200%;
  top: -1px;
  left: calc(-100% - 1px);
  border-radius: 100%;
  border: 1px solid rgba(255,255,255,.5);
  border-width: 1px 0 0;
  transform-origin: 0px 0px;
  content: '';
}


@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}



#load {
  position:absolute;
  width:600px;
  height:36px;
  left:50%;
  top:45%;
  margin-left:-300px;
  overflow:visible;
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
  user-select:none;
  cursor:default;
}

#load div {
  position:absolute;
  width:20px;
  height:36px;
  opacity:0;
  font-family:Helvetica, Arial, sans-serif;
  animation:move 3.2s linear infinite;
  -o-animation:move 3.2s linear infinite;
  -moz-animation:move 3.2s linear infinite;
  -webkit-animation:move 3.2s linear infinite;
  transform:rotate(180deg);
  -o-transform:rotate(180deg);
  -moz-transform:rotate(180deg);
  -webkit-transform:rotate(180deg);
  color:#35C4F0;
}


#load div:nth-child(1) {
  animation-delay:0.2s;
  -o-animation-delay:0.2s;
  -webkit-animation-delay:0.2s;
  -webkit-animation-delay:0.2s;
}

#load div:nth-child(2) {
  animation-delay:0.4s;
  -o-animation-delay:0.4s;
  -webkit-animation-delay:0.4s;
  -webkit-animation-delay:0.4s;
}

#load div:nth-child(3) {
  animation-delay:0.6s;
  -o-animation-delay:0.6s;
  -moz-animation-delay:0.6s;
  -webkit-animation-delay:0.6s;
}
#load div:nth-child(4) {
  animation-delay:0.8s;
  -o-animation-delay:0.8s;
  -moz-animation-delay:0.8s;
  -webkit-animation-delay:0.8s;
}
#load div:nth-child(5) {
  animation-delay:1s;
  -o-animation-delay:1s;
  -moz-animation-delay:1s;
  -webkit-animation-delay:1s;
}
#load div:nth-child(6) {
  animation-delay:1.2s;
  -o-animation-delay:1.2s;
  -moz-animation-delay:1.2s;
  -webkit-animation-delay:1.2s;
}


#load div:nth-child(7) {
  animation-delay:1.4s;
  -o-animation-delay:1.4s;
  -moz-animation-delay:1.4s;
  -webkit-animation-delay:1.4s;
}

#load div:nth-child(8) {
  animation-delay:1.6s;
  -o-animation-delay:1.6s;
  -moz-animation-delay:1.6s;
  -webkit-animation-delay:1.6s;
}

#load div:nth-child(9) {
  animation-delay:1.8s;
  -o-animation-delay:1.8s;
  -moz-animation-delay:1.8s;
  -webkit-animation-delay:1.8s;
}

#load div:nth-child(10) {
  animation-delay:2.0s;
  -o-animation-delay:2.0s;
  -moz-animation-delay:2.0s;
  -webkit-animation-delay:2.0s;
}

#load div:nth-child(11) {
  animation-delay:2.2s;
  -o-animation-delay:2.2s;
  -moz-animation-delay:2.2s;
  -webkit-animation-delay:2.2s;
}

@keyframes move {
  0% {
    left:0;
    opacity:0;
  }
	35% {
		left: 41%; 
		-moz-transform:rotate(0deg);
		-webkit-transform:rotate(0deg);
		-o-transform:rotate(0deg);
		transform:rotate(0deg);
		opacity:1;
	}
	65% {
		left:59%; 
		-moz-transform:rotate(0deg); 
		-webkit-transform:rotate(0deg); 
		-o-transform:rotate(0deg);
		transform:rotate(0deg); 
		opacity:1;
	}
	100% {
		left:100%; 
		-moz-transform:rotate(-180deg); 
		-webkit-transform:rotate(-180deg); 
		-o-transform:rotate(-180deg); 
		transform:rotate(-180deg);
		opacity:0;
	}
}

@-moz-keyframes move {
	0% {
		left:0; 
		opacity:0;
	}
	35% {
		left:41%; 
		-moz-transform:rotate(0deg); 
		transform:rotate(0deg);
		opacity:1;
	}
	65% {
		left:59%; 
		-moz-transform:rotate(0deg); 
		transform:rotate(0deg);
		opacity:1;
	}
	100% {
		left:100%; 
		-moz-transform:rotate(-180deg); 
		transform:rotate(-180deg);
		opacity:0;
	}
}

@-webkit-keyframes move {
	0% {
		left:0; 
		opacity:0;
	}
	35% {
		left:41%; 
		-webkit-transform:rotate(0deg); 
		transform:rotate(0deg); 
		opacity:1;
	}
	65% {
		left:59%; 
		-webkit-transform:rotate(0deg); 
		transform:rotate(0deg); 
		opacity:1;
	}
	100% {
		left:100%;
		-webkit-transform:rotate(-180deg); 
		transform:rotate(-180deg); 
		opacity:0;
	}
}

@-o-keyframes move {
	0% {
		left:0; 
		opacity:0;
	}
	35% {
		left:41%; 
		-o-transform:rotate(0deg); 
		transform:rotate(0deg); 
		opacity:1;
	}
	65% {
		left:59%; 
		-o-transform:rotate(0deg); 
		transform:rotate(0deg); 
		opacity:1;
	}
	100% {
		left:100%; 
		-o-transform:rotate(-180deg); 
		transform:rotate(-180deg); 
		opacity:0;
	}
}





