* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: none;
  outline:none;
}

body {
  margin: 0;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
  background: #fff;
  font: 12px Verdana, Geneva, sans-serif;
  line-height: 23px;
  word-spacing: 5px;
  letter-spacing: 1px;
  cursor: none;
  outline:none;
  overflow: hidden;
}

a {
	text-decoration: none;
	color: #CCC;
}

a:hover {
	text-decoration: blink;
	color: #999;
}

/* Cursor Style */
.cursor {
  position: fixed;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #999;
  transition: 0.3s;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1000;
}
.cursor2 {
  position: fixed;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #999;
  transform: translate(-50%, -50%);
  transition: 0.1s;
  pointer-events: none;
  z-index: 1000;
}

.grow,
.grow-small {
  transform: scale(4);
  background: white;
  mix-blend-mode: difference;
  border: none;
}

.grow-small {
  transform: scale(2);
}
/* Cursor Style End */

/* FONT */
@font-face {
  font-family: imgfont;
  src: url(../font/CodePredators-Regular.ttf); /* IE */
  src: local('imgfont'), url('../font/CodePredators-Regular.ttf') format('truetype'); /* others */
}
@font-face {
  font-family: FontSomeNormal;
  src: url(../font/Dolce Vita.ttf); /* IE */
  src: local('FontSomeNormal'), url('../font/Dolce Vita.ttf') format('truetype'); /* others */
}
@font-face {
  font-family: FontSomeLight;
  src: url(../font/Dolce Vita Light.ttf); /* IE */
  src: local('FontSomeLight'), url('../font/Dolce Vita Light.ttf') format('truetype'); /* others */
}
@font-face {
  font-family: FontSomeBold;
  src: url(../font/Dolce Vita Heavy Bold.ttf); /* IE */
  src: local('FontSomeBold'), url('../font/Dolce Vita Heavy Bold.ttf') format('truetype'); /* others */
}

.smallf {
  font-variant: small-caps;
  font-size:10px;
  font-weight: bolder;
  padding-bottom: 20px;
}

.light {
	font-family: "FontSomeLight";
	/*letter-spacing: 2px;*/
}

.bold {
	font-family: "FontSomeBold";
	/*letter-spacing: 2px;*/
}
/* FONT END*/

.clear {
	clear:both;
}
/* preloader */
.overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 98;
}

.part1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: #000000;
}

.part2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: #000000;
}

.loader {
  position: absolute;
  height: 10px;
  width: 0%;
  left: 0;
  top: calc(50% - 5px);
  background: #CCCCCC;
  animation: load 3s ease-in forwards;
  z-index: 98;
}

.loaderfont h1 {
  position: absolute;
  text-align:center;
  top: 22rem;
  width: 100vw;
  font-size: 10px;
  color: white;
  animation: size 3s ease-in-out infinite;
  z-index: 98;
}

@keyframes size {
  0% {
	opacity: 1;
  }
  25% {
	opacity: 0;
  }
  50% {
	opacity: 1;
  }
  75% {
	opacity: 0;
  }
  100% {
	opacity: 1;
  }
}
@keyframes load {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
/* preloader end */
/* Scroll animation */
.reveal {
  position: relative;
  opacity: 0;
}

.reveal.active {
  opacity: 1;
}

.active.fade-top {
  animation: fade-top 0.5s ease-in;
}
.active.fade-bottom {
  animation: fade-bottom 0.5s ease-in;
}
.active.fade-left {
  animation: fade-left 0.5s ease-in;
}
.active.fade-right {
  animation: fade-right 0.5s ease-in;
}
@keyframes fade-top {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-left {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-right {
  0% {
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}


/* FadeIn */
/* Fade in top */
.fadeInTop {
  -webkit-animation: fadeInTop 1.2s both; /* Safari 4+ */
  -moz-animation: fadeInTop 1.2s both; /* Fx 5+ */
  -o-animation: fadeInTop 1.2s both; /* Opera 12+ */
  animation: fadeInTop 1.2s both; /* IE 10+, Fx 29+ */
} 

@-webkit-keyframes fadeInTop {
  0% {
      opacity: 0;
      -webkit-transform: translateY(-50px);
  }
  100% {
      opacity: 1;
      -webkit-transform: translateY(0);
  }
}

@-moz-keyframes fadeInTop {
  0% {
      opacity: 0;
      -moz-transform: translateY(-50px);
  }
  100% {
      opacity: 1;
      -moz-transform: translateY(0);
  }
}

@-o-keyframes fadeInTop {
  0% {
      opacity: 0;
      -o-transform: translateY(-50px);
  }
  100% {
      opacity: 1;
      -o-transform: translateY(0);
  }
}

@keyframes fadeInTop{
  0% {
      opacity: 0;
      transform: translateY(-50px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Fade in Bottom */
.fadeInBottom {
  -webkit-animation: fadeInBottom 1.2s both; /* Safari 4+ */
  -moz-animation: fadeInBottom 1.2s both; /* Fx 5+ */
  -o-animation: fadeInBottom 1.2s both; /* Opera 12+ */
  animation: fadeInBottom 1.2s both; /* IE 10+, Fx 29+ */
} 

@-webkit-keyframes fadeInBottom {
  0% {
      opacity: 0;
      -webkit-transform: translateY(50px);
  }
  100% {
      opacity: 1;
      -webkit-transform: translateY(0);
  }
}

@-moz-keyframes fadeInBottom {
  0% {
      opacity: 0;
      -moz-transform: translateY(50px);
  }
  100% {
      opacity: 1;
      -moz-transform: translateY(0);
  }
}

@-o-keyframes fadeInBottom {
  0% {
      opacity: 0;
      -o-transform: translateY(50px);
  }
  100% {
      opacity: 1;
      -o-transform: translateY(0);
  }
}

@keyframes fadeInBottom{
  0% {
      opacity: 0;
      transform: translateY(50px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}
/* FadeIn end */
/* Scroll animation end*/
/* #Navigation */
.cd-header{
  position: fixed;
  z-index: 100;
  height: 8vh;
  width: 100vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 25px;
  font-family:Verdana, Geneva, sans-serif;
} 
.header-wrapper{
  position: relative;
  width: calc(100% - 100px);
  margin-left: 50px;
} 
.nav-but-wrap{ 
  position: relative;
  display: inline-block;
  float: right;
  margin-top: 40px;
  margin-right: 30px;
  transition : all 0.3s ease-out;
}
.menu-icon {
  height: 30px;
  width: 30px;
  position: relative;
  z-index: 2;
  display: block;
}
.menu-icon__line {
  height: 2px;
  width: 30px;
  display: block;
  background-color: #CCC;
  margin-bottom: 7px;
  -webkit-transition: background-color .5s ease, -webkit-transform .2s ease;
  transition: background-color .5s ease, -webkit-transform .2s ease;
  transition: transform .2s ease, background-color .5s ease;
  transition: transform .2s ease, background-color .5s ease, -webkit-transform .2s ease;
}
.menu-icon__line-left {
  width: 16.5px;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.menu-icon__line-right {
  width: 16.5px;
  float: right;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  transition: all 200ms linear;
}
.menu-icon:hover .menu-icon__line-left,
.menu-icon:hover .menu-icon__line-right {
  width: 30px;
}
.nav {
  position: fixed;
  z-index: 99;
}
.nav:before, .nav:after {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  background-color: rgba(20, 21, 26,0.6);
  z-index: -1;
  transition: border-radius linear 0.8s, width cubic-bezier(0.77, 0, 0.175, 1) 0.6s, height cubic-bezier(0.77, 0, 0.175, 1) 0.6s;
}
.nav:after {
  background-color: rgba(9,9,12,1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  box-shadow: 6px 7px 28px 0 rgba(16, 16, 16, 0.3);
}
.nav:before {
  -webkit-transition-delay: .2s;
          transition-delay: .2s;
}
.nav__content {
  position: fixed;
  visibility: hidden;
  text-align: left;
  right: 25vw;
}
.nav__title {
  position: fixed;
  text-align: left;
  left: 5vw;
  color: #000;
  font-weight:bold;
  font-size: 25vw;
  top: 50%;
  font-family: "FontSomeBold";
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.nav__list {
  position: relative;
  padding-left: 50px;
  padding-top: 25vh;
  margin: 0;
  z-index: 2;
}
.nav__list-item {
  position: relative;
  display: block;
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
  opacity: 0;
  text-align: left;
  color: #fff;
  overflow: hidden; 
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 2px;
  -webkit-transform: translate(30px, 0%);
          transform: translate(30px, 0%);
  -webkit-transition: opacity .2s ease, -webkit-transform .3s ease;
  transition: opacity .2s ease, -webkit-transform .2s ease;
  transition: opacity .2s ease, transform .2s ease;
  transition: opacity .2s ease, transform .2s ease, -webkit-transform .2s ease;
  margin-top: 7px;
  margin-bottom: 7px;
}
.nav__list-item a{ 
  position: relative;
  text-decoration: none;
  color: rgba(255,255,255,0.6);
  overflow: hidden; 
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  z-index: 2;
  padding-left: 40px;
  padding-top:5px;
  padding-bottom: 5px;
  display: inline-block;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear; 
}
.nav__list-item a:after{ 
  position: absolute;
  content: '';
  top: 50%;
  left: 0;
  width: 5px;
  height: 0;
  opacity: 0;
  background-color: #8167a9;
  z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear; 
}
.nav__list-item a:hover:after{ 
  height: 100%;
  opacity: 1;
  top: 0;
}
.nav__list-item a:hover{
  color: rgba(255,255,255,1);
}
.nav__list-item.active-nav a{
  color: rgba(255,255,255,1);
}
.nav__list-item.active-nav a:after{ 
  height: 100%;
  opacity: 1;
  top: 0;
}
body.nav-active .nav__content {
  visibility: visible;
}
body.nav-active .menu-icon__line {
  background-color: #CCC;
  -webkit-transform: translate(0px, 0px) rotate(-45deg);
          transform: translate(0px, 0px) rotate(-45deg);
}
body.nav-active .menu-icon__line-left {
  width: 15px;
  -webkit-transform: translate(2px, 4px) rotate(45deg);
          transform: translate(2px, 4px) rotate(45deg);
}
body.nav-active .menu-icon__line-right {
  width: 15px;
  float: right;
  -webkit-transform: translate(-3px, -3.5px) rotate(45deg);
          transform: translate(-3px, -3.5px) rotate(45deg);
}
body.nav-active .menu-icon:hover .menu-icon__line-left,
body.nav-active .menu-icon:hover .menu-icon__line-right {
  width: 15px;
}
body.nav-active .nav {
  visibility: visible;
}
body.nav-active .nav:before, body.nav-active .nav:after {
  width: 100vw;
  height: 100vh;
}
body.nav-active .nav:after {
  -webkit-transition-delay: .1s;
          transition-delay: .1s;
}
body.nav-active .nav:before {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
body.nav-active .nav__list-item {
  opacity: 1;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: opacity .3s ease, color .3s ease, -webkit-transform .3s ease;
  transition: opacity .3s ease, color .3s ease, -webkit-transform .3s ease;
  transition: opacity .3s ease, transform .3s ease, color .3s ease;
  transition: opacity .3s ease, transform .3s ease, color .3s ease, -webkit-transform .3s ease;
}
body.nav-active .nav__list-item:nth-child(0) {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}
body.nav-active .nav__list-item:nth-child(1) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
body.nav-active .nav__list-item:nth-child(2) {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
body.nav-active .nav__list-item:nth-child(3) {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
body.nav-active .nav__list-item:nth-child(4) {
  -webkit-transition-delay: 1.1s;
          transition-delay: 1.1s;
}
body.nav-active .nav__list-item:nth-child(5) {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
body.nav-active .nav__list-item:nth-child(6) {
  -webkit-transition-delay: 1.3s;
          transition-delay: 1.3s;
}
body.nav-active .nav__list-item:nth-child(7) {
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}
body.nav-active .nav__list-item:nth-child(8) {
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}
body.nav-active .nav__list-item:nth-child(9) {
  -webkit-transition-delay: 1.6s;
          transition-delay: 1.6s;
}
body.nav-active .nav__list-item:nth-child(10) {
  -webkit-transition-delay: 1.7s;
          transition-delay: 1.7s;
}

.logo {
  color: #CCC;
  font-weight: 600;
  font-size: 25px;
  font-family: "FontSomeBold" !important;
  font-variant: small-caps;
  margin-top: 40px;
  z-index: 99;
}

.lenguage {
  position: absolute;
  right: 50px;
  top: 65px;
  font-size: 15px;
  color: #CCC;
  font-family: "FontSomeBold" !important;
  line-height: 30px;
  word-spacing: 5px;
  letter-spacing: 2px;
  z-index: 99;
}
/* #Navigation end*/
/* Section one */
#sectionone {
  width: 100vw;
  position: relative;
  margin: 0 auto;
  alignment-adjust: central;
  background: #000;
  z-index:80;
}

#scene {
	position:relative;
	z-index:81;
}

.bg img {
  height: 100vh;
  filter: brightness(0.6);
  object-position: 50% 50%;
  object-fit: cover;
  z-index:81;
}

.rock1 {
  position: absolute !important;
  left: 10vw !important;
  top: 20vh !important;
  z-index:81;
}

.rock1 img {
  width: 30%;
  filter: brightness(0.5);
  z-index:81;
}

.text h1 {
  font-family: "imgfont" !important;
  font-size: 6vw;
  font-weight:bold;
  color: #fff;
  letter-spacing: 20px;
  position: absolute;
  top: 35vh;
  left: 30vw;
  z-index:81;
}

.earth img {
  width: 40vw;
  position: absolute;
  left: 34vw;
  top: 20vh;
  /*z-index: 1;*/
  filter: brightness(1.0);
  z-index:81;
}

.mid {
  left: -150px !important;
  bottom: -100px !important;
  top: unset !important;
  z-index:81;
}

.mid img {
  width: 100%;
  z-index: 82;
  left: -20px;
  top: 20vh !important;
  filter: brightness(0.8);
}

.fore {
  right: -50px !important;
  bottom: -200px !important;
  top: 0px !important;
  left: unset !important;
  z-index: 83;
}

.fore img {
  width: 45vw;
  height: 110vh;
  /*z-index: 3;*/
  filter: brightness(0.5);
  z-index: 83;
}

/* content 1 */
#content1{
	position:relative;
	margin: 0 auto;
	padding: 5vw;
	z-index:85;
	background:#fff;
}

#content1_title_menu{
	position: absolute;
	color:#999;
	text-transform: uppercase;
	font:60px "FontSomeLight";
	font-weight:bold;
	text-align: left;
	margin-bottom: 20px;
	z-index:85;
	left: 25vw;
}

#content1_img {
	position:relative;
	float:right;
	width:50vw;
	height: 70vw;
	margin-top: 100px;
	background-image:url(../images/gallery/IMG_20220807_170803b.jpg);
	background-position:center;
	background-size:cover;
}

#content1_log {
	position:relative;
	padding: 20px;
	width: 200px;
	height: 300px;
	border-color:#333;
	border-style:solid;
	letter-spacing: 2px;
	font:50px Verdana;
}

#content1_text {
	position:relative;
	padding: 20px;
	width: 30vw;
	height: auto;
	letter-spacing: 1px;
}
/* content 1 end */
/* Section one end*/
/* Section two */
#sectiontwo {
  width: 100vw;
  position: relative;
  margin: 0 auto;
  z-index:90;
}

#vid {
  filter: brightness(0.5);
  z-index: 97;
}
/* content 2 */
#content2_title_menu{
    float: left;
    width: 30vw;
    margin: 1rem auto;
	color:#999;
	text-transform: uppercase;
	font:60px "FontSomeLight";
	font-weight:bold;
	text-align: left;
	padding-left: 60px;
	z-index:3;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.container {
  float: right;
  width: 65vw;
  margin: 1rem auto;
  justify-content: center;
  padding-top: 50px;
  padding-bottom: 20px;
}

.bgn,
.toverlay {
  text-align: center;
}

img,
.toverlay {
  transition: 0.4s all;
  border-radius: 3px;
}

.bgn {
  float: left;
  max-width: 30vw;
  position: relative;
  margin: 0.5%;
}
.bgn img {
  width: 100%;
  margin-bottom: -4px;
}
.bgn .toverlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  opacity: 0;
}
.bgn .toverlay h2 {
  padding-top: 20%;
  font-family: "Droid Serif", serif;
}
.bgn .overlay p {
  font-family: "Julius Sans One", sans-serif;
}
.bgn:hover .toverlay {
  opacity: 1;
}
.bgn:hover img {
  -webkit-filter: blur(3px);
  filter: blur(3px);
}
/* content 2 end */
/* Section two end */
/* Section three */
.sectionthree {
  width: 100vw;
  height: 110vh;
  padding-top: 50px;
  padding-bottom: 50px;
  z-index:90;
}

/* glitch style */
.hero {
  text-transform: uppercase;
  display: inline-block;
  z-index: 2;

  /* Bright things in dark environments usually cast that light, giving off a glow */
  filter: drop-shadow(0 1px 3px);
}

.por {
	position: absolute;
    width: 100vw;
	margin-top: 35vh;
	font:12vw "FontSomeBold";
	font-weight: bold;
	text-align: center;
	color: #F0F0F0;
	letter-spacing: 10px;
	line-height: 1;
}
.vis {
	position: absolute;
    width: 100vw;
	margin-top: 30vh;
	font:12vw "FontSomeBold";
	font-weight: bold;
	text-align: center;
	color: #1F1F1F;
	letter-spacing: 10px;
	line-height: 1;
}

.demo {
  height: 100px;
  background: #fff;
}

.layers {
  position: absolute;
}

.layers::before,
.layers::after {
  content: attr(data-text);
  position: absolute;
  width: 110%;
  z-index: -1;
}

.layers::before {
  top: 10px;
  left: 15px;
  color: #e0287d;
}

.layers::after {
  top: 5px;
  left: -10px;
  color: #1bc7fb;
}

.single-path {
  clip-path: polygon(
    0% 12%,
    53% 12%,
    53% 26%,
    25% 26%,
    25% 86%,
    31% 86%,
    31% 0%,
    53% 0%,
    53% 84%,
    92% 84%,
    92% 82%,
    70% 82%,
    70% 29%,
    78% 29%,
    78% 65%,
    69% 65%,
    69% 66%,
    77% 66%,
    77% 45%,
    85% 45%,
    85% 26%,
    97% 26%,
    97% 28%,
    84% 28%,
    84% 34%,
    54% 34%,
    54% 89%,
    30% 89%,
    30% 58%,
    83% 58%,
    83% 5%,
    68% 5%,
    68% 36%,
    62% 36%,
    62% 1%,
    12% 1%,
    12% 34%,
    60% 34%,
    60% 57%,
    98% 57%,
    98% 83%,
    1% 83%,
    1% 53%,
    91% 53%,
    91% 84%,
    8% 84%,
    8% 83%,
    4% 83%
  );
}

.paths {
  animation: paths 5s step-end infinite;
}

@keyframes paths {
  0% {
    clip-path: polygon(
      0% 43%,
      83% 43%,
      83% 22%,
      23% 22%,
      23% 24%,
      91% 24%,
      91% 26%,
      18% 26%,
      18% 83%,
      29% 83%,
      29% 17%,
      41% 17%,
      41% 39%,
      18% 39%,
      18% 82%,
      54% 82%,
      54% 88%,
      19% 88%,
      19% 4%,
      39% 4%,
      39% 14%,
      76% 14%,
      76% 52%,
      23% 52%,
      23% 35%,
      19% 35%,
      19% 8%,
      36% 8%,
      36% 31%,
      73% 31%,
      73% 16%,
      1% 16%,
      1% 56%,
      50% 56%,
      50% 8%
    );
  }

  5% {
    clip-path: polygon(
      0% 29%,
      44% 29%,
      44% 83%,
      94% 83%,
      94% 56%,
      11% 56%,
      11% 64%,
      94% 64%,
      94% 70%,
      88% 70%,
      88% 32%,
      18% 32%,
      18% 96%,
      10% 96%,
      10% 62%,
      9% 62%,
      9% 84%,
      68% 84%,
      68% 50%,
      52% 50%,
      52% 55%,
      35% 55%,
      35% 87%,
      25% 87%,
      25% 39%,
      15% 39%,
      15% 88%,
      52% 88%
    );
  }

  30% {
    clip-path: polygon(
      0% 53%,
      93% 53%,
      93% 62%,
      68% 62%,
      68% 37%,
      97% 37%,
      97% 89%,
      13% 89%,
      13% 45%,
      51% 45%,
      51% 88%,
      17% 88%,
      17% 54%,
      81% 54%,
      81% 75%,
      79% 75%,
      79% 76%,
      38% 76%,
      38% 28%,
      61% 28%,
      61% 12%,
      55% 12%,
      55% 62%,
      68% 62%,
      68% 51%,
      0% 51%,
      0% 92%,
      63% 92%,
      63% 4%,
      65% 4%
    );
  }

  45% {
    clip-path: polygon(
      0% 33%,
      2% 33%,
      2% 69%,
      58% 69%,
      58% 94%,
      55% 94%,
      55% 25%,
      33% 25%,
      33% 85%,
      16% 85%,
      16% 19%,
      5% 19%,
      5% 20%,
      79% 20%,
      79% 96%,
      93% 96%,
      93% 50%,
      5% 50%,
      5% 74%,
      55% 74%,
      55% 57%,
      96% 57%,
      96% 59%,
      87% 59%,
      87% 65%,
      82% 65%,
      82% 39%,
      63% 39%,
      63% 92%,
      4% 92%,
      4% 36%,
      24% 36%,
      24% 70%,
      1% 70%,
      1% 43%,
      15% 43%,
      15% 28%,
      23% 28%,
      23% 71%,
      90% 71%,
      90% 86%,
      97% 86%,
      97% 1%,
      60% 1%,
      60% 67%,
      71% 67%,
      71% 91%,
      17% 91%,
      17% 14%,
      39% 14%,
      39% 30%,
      58% 30%,
      58% 11%,
      52% 11%,
      52% 83%,
      68% 83%
    );
  }

  76% {
    clip-path: polygon(
      0% 26%,
      15% 26%,
      15% 73%,
      72% 73%,
      72% 70%,
      77% 70%,
      77% 75%,
      8% 75%,
      8% 42%,
      4% 42%,
      4% 61%,
      17% 61%,
      17% 12%,
      26% 12%,
      26% 63%,
      73% 63%,
      73% 43%,
      90% 43%,
      90% 67%,
      50% 67%,
      50% 41%,
      42% 41%,
      42% 46%,
      50% 46%,
      50% 84%,
      96% 84%,
      96% 78%,
      49% 78%,
      49% 25%,
      63% 25%,
      63% 14%
    );
  }

  90% {
    clip-path: polygon(
      0% 41%,
      13% 41%,
      13% 6%,
      87% 6%,
      87% 93%,
      10% 93%,
      10% 13%,
      89% 13%,
      89% 6%,
      3% 6%,
      3% 8%,
      16% 8%,
      16% 79%,
      0% 79%,
      0% 99%,
      92% 99%,
      92% 90%,
      5% 90%,
      5% 60%,
      0% 60%,
      0% 48%,
      89% 48%,
      89% 13%,
      80% 13%,
      80% 43%,
      95% 43%,
      95% 19%,
      80% 19%,
      80% 85%,
      38% 85%,
      38% 62%
    );
  }

  1%,
  7%,
  33%,
  47%,
  78%,
  93% {
    clip-path: none;
  }
}

.movement {
  /* Normally this position would be absolute & on the layers, set to relative here so we can see it on the div */
  position: relative;
  animation: movement 8s step-end infinite;
}

@keyframes movement {
  0% {
    top: 0px;
    left: -20px;
  }

  15% {
    top: 10px;
    left: 10px;
  }

  60% {
    top: 5px;
    left: -10px;
  }

  75% {
    top: -5px;
    left: 20px;
  }

  100% {
    top: 10px;
    left: 5px;
  }
}

.opacity {
  animation: opacity 5s step-end infinite;
}

@keyframes opacity {
  0% {
    opacity: 0.1;
  }

  5% {
    opacity: 0.7;
  }

  30% {
    opacity: 0.4;
  }

  45% {
    opacity: 0.6;
  }

  76% {
    opacity: 0.4;
  }

  90% {
    opacity: 0.8;
  }

  1%,
  7%,
  33%,
  47%,
  78%,
  93% {
    opacity: 0;
  }
}

.font {
  animation: font 7s step-end infinite;
}

@keyframes font {
  0% {
    font-weight: 100;
    color: #e0287d;
    filter: blur(3px);
  }

  20% {
    font-weight: 500;
    color: #fff;
    filter: blur(0);
  }

  50% {
    font-weight: 300;
    color: #1bc7fb;
    filter: blur(2px);
  }

  60% {
    font-weight: 700;
    color: #fff;
    filter: blur(0);
  }

  90% {
    font-weight: 500;
    color: #e0287d;
    filter: blur(6px);
  }
}

.glitch span {
  animation: paths 5s step-end infinite;
}

.glitch::before {
  animation: paths 5s step-end infinite, opacity 5s step-end infinite,
    font 8s step-end infinite, movement 10s step-end infinite;
}

.glitch::after {
  animation: paths 5s step-end infinite, opacity 5s step-end infinite,
    font 7s step-end infinite, movement 8s step-end infinite;
}

.hero-container {
  position: relative;
  text-align: center;
}
/* glitch style end */
/* Count Award */
.stat {
   text-align:center;
}
.highlight {
   color:#111;
   padding:20px 0;
   font-weight:bold;
   display:block;
   overflow:hidden;
   margin-bottom:0;
   font-size:48px;
}
.milestone-details {
   font-weight:bold;
   font-size:18px;
   color:#999;
}
.milestone-counter {
	position:relative;
	float: left;
	width: 25vw;
	z-index:2;
}
/* Count Award end*/
/* Section three end */
/* Section four */
.sectionfour {
	position: relative;
	width: 100vw;
	height: 100vh;
	background-color: #333;
	color: #CCC;
	padding: 5vw;
	padding-top: 13vw;
}
.sectionfour-title {
	position: absolute;
	color:#FFF;
	text-transform: uppercase;
	font:60px "FontSomeLight";
	font-weight:bold;
	text-align: left;
	left: 40vw;
	z-index:85;
}
.pict {
	width: 40vw;
	position: relative;
	float: left;
}
.descr {
	width: 40vw;
	position: relative;
	float: right;
	margin-top: 12vw;
	color: #FFF;
}

.vm {
	position: relative;
	width: 100vw;
	height: 110vh;
	background-color: #333;
	color: #FFF;
	padding-top: 13vw;
}
.visi {
	width: 45vw;
	position: relative;
	float: left;
	padding-left: 5vw;
	z-index: 4;
}
.title_visi {
	margin-bottom: 10px;
	font-weight: bold;
}
.misi {
	width: 45vw;
	position: relative;
	float: right;
	padding-right: 5vw;
	z-index: 4;
}
.title_misi {
	margin-bottom: 10px;
	font-weight: bold;
}

/* Section four end */
/* Section five */
.sectionfive {
	position: relative;
	width: 100vw;
	height: 110vh;
}
/* Section five end */
/* footer style */
footer {
	position: relative;
	width:100vw;
	height:60vh;
	background: #222;
	margin: auto 0;
	padding-left: 50px;
	padding-right: 50px;
}

.footcolleft {
	width:22vw;
	position:relative;
	float:left;
	color:#FFF;
	padding-top:60px;
}

.footcolright {
	width:23vw;
	position:relative;
	float:right;
	color:#FFF;
	padding-top:60px;
	padding-right: 20px;
	text-align: right;
}

.botfix {
  position: fixed;
  z-index: 99;
  width: 100vw;
  display: flex;
  bottom:0;
}

.botfixleft {
  position: -webkit-sticky;
  position: sticky;
  position: absolute;
  left: 30px;
  bottom: 10px;
  padding-bottom: 10px;
  font-family: Verdana, Geneva, sans-serif;
  font-variant: small-caps;
  font-size:11px;
  color:#999;
  z-index: 99;
}

.botfixright {
  position: -webkit-sticky;
  position: sticky;
  position: absolute;
  right: 50px;
  bottom: 10px;
  padding-bottom: 10px;
  font-family: Verdana, Geneva, sans-serif;
  font-variant: small-caps;
  font-size:11px;
  color:#999;
  z-index: 99;
  text-align: right;
}

.botlogo {
	position:relative;
	bottom:-5px;
	width: 80px;
}
/* footer style end */
/* Screen Ajusment */
@media only screen and (max-width: 1148px) {
.bg img {
  width: 100vw;
  filter: brightness(0.6);
}

.earth img {
  width: 40vw;
}

#content1_title_menu{
	font:40px "FontSomeLight";
	width: 200px;
	text-align: left;
	z-index:3;
	left: 35vw;
}

#content1_log {
	padding-top: 50px;
	text-align: center;
	width: 200px;
	height: 100px;
	font:20px Verdana;
}

#content1_img {
	width:45vw;
	margin: 2vw;
}

#content2_title_menu{
	font:40px "FontSomeLight";
}

.bgn {
    max-width: 48%;
    margin: 1%;
}

.sectionthree {
  height: 400px;
  padding-top: 0px;
  padding-bottom: 0px;
}

.por {
	margin-top: 120px;
	left: 0;
}

.milestone-counter {
   margin-top: 200px;
}

.sectionfour {
	height: 300px;
	padding: 60px;
}
.sectionfour-title {
	width: 40vw;
	position: relative;
	float: right;
	font:50px "FontSomeLight";
	left: 0;
}
.descr {
	margin-top: 30px;
	margin-bottom: 20px;
}

.vm {
	height: 600px;
	padding: 0;
}

.vis {
	position: relative;
	margin-top: 5px;
	margin-bottom: 10px;
	font: 7vw "FontSomeBold";
	color: #FFF;
}

.visi {
	width: 60vw;
	padding-left: 40px;
	z-index: 4;
	margin-bottom: 20px;
}

.misi {
	width: 60vw;
	padding-right: 40px;
	z-index: 4;
	margin-top: 20px;
}

.sectionfive {
	height: 80vh;
}

footer {
	height:70vh;
}

.footcolleft {
	width:100vw;
	text-align: center;
}

.footcolright {
	width:29vw;
	text-align: center;
}
}

@media only screen and (max-width: 768px) {
.small {
  padding-bottom: 10px;
}

.bg img {
  width: 100vw;
  filter: brightness(0.6);
}

.earth img {
  width: 50vw;
  left: 25vw;
  top: 30vh;
}

#content1_title_menu{
	position: relative;
	width: 100vw;
	left: 0;
	font:30px "FontSomeLight";
	font-weight:bold;
	text-align: center;
	margin-bottom: 10px;
	z-index:3;
}

#content1_img {
	position:relative;
	float:right;
	width:25vw;
}

#content1_log {
	position:relative;
	padding: 10px;
	width: 200px;
	height: 50px;
	border-color:#333;
	border-style:solid;
	letter-spacing: 2px;
	font:20px Verdana;
}

#content1_text {
	position: relative;
	padding: 20px;
	width: 60vw;
}

#content2_title_menu{
    width: 100vw;
	font:30px "FontSomeLight";
	text-align: center;
	font-weight: bold;
	padding-left: 0;
}

.container {
  width: 100vw;
  padding-top: 10px;
  padding-bottom: 10px;
}

.bgn {
    max-width: 100vw;
    margin: 1% auto;
}

.por {
	margin-top: 50%;
	font:10vw "FontSomeBold";
	left: 0;
}

.vis {
	margin-top: 50%;
	font:10vw "FontSomeBold";
	left: 0;
}

.milestone-counter {
	position:relative;
	width: 100vw;
	margin-top: 20px;
	margin-bottom: 20px;
}

.sectionfour {
	height: 750px;
	padding: 0;
}
.sectionfour-title {
	width: 100%;
	margin-bottom: 30px;
	margin-top: 30px;
	text-align:center;
}
.pict {
	width: 100%;
	position: relative;
	float: none;
}
.descr {
	width: 100%;
	float: none;
	color: #FFF;
	padding: 20px;
}

.vm {
	height: 600px;
	padding: 0;
	padding-top: 60px;
}
.visi {
	width: 60vw;
	padding-left: 40px;
	z-index: 4;
	margin-bottom: 20px;
}
.misi {
	width: 60vw;
	padding-right: 40px;
	z-index: 4;
	margin-top: 20px;
}

.sectionfive {
	height: 80vh;
}

footer {
	height:100vh;
	padding-bottom: 30px;
	padding-top: 40px;
	padding-left: 0;
	padding-right: 0;
	text-align:center;
}

.footcolleft {
	width:100vw;
	float:none;
	text-align:center;
}

.footcolright {
	width:100vw;
	text-align:center;
	padding-top: 20px;
}

.smallf {
  padding-bottom: 10px;
}

.bgn .toverlay {
  opacity: 1;
}

}
/* Screen Ajusment End*/

