
/* ----------------------------------------------------------------
     [ Start Basics ]
-----------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  list-style: none;
  word-wrap: break-word;
}

.clearfix{
  clear: both;
}

@font-face {
  font-family: NevantFont;
  src: url(../font/Nevan.ttf);
}


:root {

/*  --fontprimary: 'Maven Pro', sans-serif;*/
/*  --fontsecondary: NevantFont;*/

/*  --fontprimary: 'Figtree', sans-serif;*/
  --fontprimary: 'Plus Jakarta Sans', sans-serif;
  --fontsecondary: 'Plus Jakarta Sans', sans-serif;
  --fontfuturistic: NevantFont;

  --colorwhite: #FFFFFF;
  --colorblack: #000000;
  --colorlightgrey: #e0e3e8;
  --colormediumgrey: #777777;
  --colordarkgrey: #222222;

  --coloraccent:#34dafa;
  --coloryellow:#ffc342;


  --bgwhite: #FFFFFF;
  --bgblack: #000000;
  --bglightgrey: #e0e3e8;
  --bgmediumgrey: #777777;
  --bgdarkgrey: #222222;

  --bgaccent: #34dafa;
  --bgaccentdark: #0f1929;
  --bgyellow:#ffc342;

}

html{
  min-height: 100%;
}

body {
  color: var(--colordarkgrey);
  line-height: 1.7;
  font-weight: 300;
  font-size: 15px;
  background: var(--bglightgrey);
  font-family: var(--fontprimary);
  overflow: overlay;
  overflow-x: hidden !important;
  height: 100%;
  background: var(--bgaccentdark);
}

#canvas{
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  margin: 0;
  z-index:1;
}

p , li {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
  margin: 0;
}

p span{
  font-weight: bold;
}

img {
  width: 100%;
  height: auto;
}

a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

a:hover {
  color: inherit;
  text-decoration: none;
}

h1{
  font-size: 150px;
  font-family: var(--fontsecondary);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 80%;
  letter-spacing: -2px;
}

h2{
  font-size: 40px;
  font-weight: 500;
}

h2 span{
  font-weight: 500;
}

h3{
  font-size: 40px;
  font-weight: 500;
}


.container{
  position: relative;
  width: 100%;
  max-width: 1200px;
  padding: 0 15px;
  margin-right: auto;
  margin-left: auto;
}

.pos-re {
  position: relative;
  padding: 8vw 0px;
}


/* ----------------------------------------------------------------
     [ End Basics ]
-----------------------------------------------------------------*/


/* ----------------------------------------------------------------
     [ Start Buttons ]
-----------------------------------------------------------------*/
.butn-container{
  position: relative;
}

.butn, .butn-blank {
  font-size: 16px;
  font-weight: 300;
  text-align: center;
  padding: 10px 30px;
  color: var(--colorwhite)!important;
  border: 1px solid;
  border-color: var(--bgaccent);
  border-radius: 0px;
  position: relative;
  cursor: pointer;
  outline: none !important;
  overflow: hidden;
  letter-spacing: 2px;
  /*text-transform: uppercase;*/
  font-weight: 500;
}

.butn:hover{
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  letter-spacing: 0px;
  border-radius: 0px;
}


/* ----------------------------------------------------------------
     [ End Buttons ]
-----------------------------------------------------------------*/



/* ----------------------------------------------------------------
     [ Start Navbar ]
-----------------------------------------------------------------*/

.logo {
  width: 100%;
  /*max-width: 220px;*/
  max-width: 160px;
  z-index: 20;
  font-size: 40px;
  position: fixed;
  left:10px;
}

.navbar {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100px;
  border: 0;
  z-index: 9;
  min-height: 50px;
  padding: 15px 0px;
}

.water-spill{
  width: 270px;
  height: 100px;
  position: fixed;
  top:0px;
  right:0px;
  z-index: 10;
}

.hamburger-img{
  z-index: 70;
}
.hamburger-img:hover{
  filter: hue-rotate(180deg);
}

.navi_icon{
  width: 50px;
  padding: 5px;
  background: var(--bgaccent);
  border-radius: 50px;
  display: block;
  margin:0 auto;
}

.hamburger{
  width: 76px;
  height: 76px;
  position: fixed;
  right:20px;
  cursor: pointer;
  z-index: 20;
  transform: scale(0.5) translateX(35px);
  animation: glowing 2s linear infinite;
}

@-webkit-keyframes glowing {
  0% {
    /*opacity: 0.4;*/
    -webkit-filter: drop-shadow(0px 0px 5px rgba(245,176, 27, 1));
   filter: drop-shadow(0px 0px 5px rgba(245,176, 27, 1));
  }
  50% { 
    /*opacity: 1;*/
    -webkit-filter: drop-shadow(0px 0px 5px rgba(245,176, 27, 0));
   filter: drop-shadow(0px 0px 5px rgba(245,176, 27, 0));
  }
  100% { 
    /*opacity: 0.4;*/
    -webkit-filter: drop-shadow(0px 0px 5px rgba(245,176, 27, 1));
   filter: drop-shadow(0px 0px 5px rgba(245,176, 27, 1));
  }
}

.hamburger.active{
  transform: scale(0.5) translateX(35px);
}


/*hamburger anim*/

.hamburger span:before, .hamburger span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 3px;
  width: 70px;
  background: var(--bgwhite);
  position: absolute;
  display: inline-block;
  content: '';
  margin:auto;
  top:0;
  bottom: 0;
  left: 0;
  right: 0;
}
.hamburger span:before {
  top: -30px; 
}
.hamburger span:after {
  bottom: -30px;
}

.hamburger span, .hamburger span:before, .hamburger span:after {
-webkit-transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1.000); 
   -moz-transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1.000); 
     -o-transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1.000); 
        transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1.000); 
}

.nav-item, .nav-item:before, .nav-item:after {
-webkit-transition: all 300ms cubic-bezier(1.000, 1.000, 1.000, 1.000); 
   -moz-transition: all 300ms cubic-bezier(1.000, 1.000, 1.000, 1.000); 
     -o-transition: all 300ms cubic-bezier(1.000, 1.000, 1.000, 1.000); 
        transition: all 300ms cubic-bezier(1.000, 1.000, 1.000, 1.000); 
}

.hamburger.active span:before, .hamburger.active span:after {
  top: 0;
}
.hamburger.active span:before {
  transform: rotate(45deg);
}
.hamburger.active span:after {
  transform: translateY(-30px) rotate(-45deg);
  top: 30px;
}

/* The Overlay (background) */
.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index:99;
  right: 0;
  top: 0;
  overflow-x: hidden;
  transition: 0.3s;
}

.overlay-bg{
  position: absolute;
  top:0;
  right: 0;
  width: 100%;
  max-width: 767px;
  height: 100%;
  opacity: .95;
  background: var(--bgaccentdark);
  background: -moz-linear-gradient(90deg, rgba(15,25,41,0) 0%, rgba(15,25,41,1) 70%);
  background: -webkit-linear-gradient(90deg, rgba(15,25,41,0) 0%, rgba(15,25,41,1) 70%);
  background: linear-gradient(90deg, rgba(15,25,41,0) 0%, rgba(15,25,41,1) 70%);
}

.overlay-content {
  position: relative;
  top: 10%;
  width: 100%;
  text-align: right;
  margin-top: 25px;
  padding-right: 20px;
}

.overlay a {
  padding: 10px 8px;
  text-decoration: none;
  font-size: 10px;
  letter-spacing:5px;
  text-transform: uppercase;
  color: white;
  display: block;
  transition: 0.3s;
}

.overlay a:hover, .overlay a:focus {
  color: var(--coloraccent);
  text-shadow: 0 0 2px #555, 0 0 5px #FFF, 0 0 10px #00a6ef,  0 0 55px #00a6ef, 1px 1px 1px rgba(0,166,239,0);
}

/* Position the close button */
.overlay .closebtn {
  position: absolute;
  top: 0px;
  right: 20px;
  font-size: 0px;
  line-height: 100%;
  font-weight: 100;
  background: url(../img/navi_dots.png) repeat;
  width: 76px;
  height: 76px;
  cursor: pointer;
  transform: scale(0.5) translateX(35px);
  animation: glowing 2s linear infinite;
}


/* ----------------------------------------------------------------
     [ End Navbar ]
-----------------------------------------------------------------*/

/* ----------------------------------------------------------------
     [ start scrollbar ]
-----------------------------------------------------------------*/

/* width */
::-webkit-scrollbar {
  width: 7px;
  background: transparent;
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent;
  padding: 1px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background:var(--bgaccent);
  border-radius: 0px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--bgaccent);
}

/* ----------------------------------------------------------------
     [ End scrollbar ]
-----------------------------------------------------------------*/



/* ----------------------------------------------------------------
     [ Start Home ]
-----------------------------------------------------------------*/

.home {
  position: relative;
  margin:0 auto;
  height: 100vh;
  z-index:0;
  overflow: hidden;
}

.home-img-container{
  position: relative;
}

.grid{
  width: 2px;
  height: 2px;
  position: fixed;
  width: auto;
  height: 100%;
  left: 0;
  right: 0;
  margin:auto;
  /*background: url(../img/grid-white.png) repeat;*/
  background: url(../img/grid.png) repeat;
  z-index: 99;
}

.home-img{
  position: absolute;
  left: 0;
  right: 0;
  margin:auto;
}

.home-bg{
  width: auto;
  height:100vh;
  background: url(../img/home_bg_optintent_plain.jpg) center center no-repeat;
  overflow: hidden;
}

.bgcircle-container{
  width: 100%;
  max-width: 1320px;
  height:778px;
  margin:0 auto;
}

.home_bg_optintent_circle{
  position: absolute;
  margin:auto;
  left:0;
  right:0;
  width: 1320px;
  -webkit-filter: drop-shadow(0px 0px 25px rgba(52,218, 250, .7));
   filter: drop-shadow(0px 0px 25px rgba(52,218, 250, .7));
   /*-webkit-filter: drop-shadow(0px 0px 25px rgba(0,0, 0, .7));
   filter: drop-shadow(0px 0px 25px rgba(0,0, 0, .7));*/
}

.txt-display-container{
  width:950px;
  height:700px;
  position:absolute;
  top:0px; 
  left:0;
  right:0;
  margin:auto;
  opacity:0.4;
  overflow: hidden;
}

.txt-display{
  position: absolute;
}

.display-txt-one{
  right:20px;
  width: 200px;
  height: 350px;
  animation: txtdisp-one 10s linear infinite;
}

.display-txt-two{
  right:40px;
  right: 0;
  margin:auto;
  width: 400px;
  height: 429px;
  animation: txtdisp-two 17s linear infinite;
}
.display-txt-three{
  right: 0;
  width: 300px;
  height: 322px;
  animation: txtdisp-three 25s linear infinite;
}


@keyframes txtdisp-one{
  0%{
    opacity: 0;
    transform:translateY(-20px);
  }
  20%{
    opacity: 1;
    transform:translateY(0px);
  }
  80%{
    opacity: 1;
    transform:translateY(40px);
  }
  100%{
    opacity: 0;
    transform:translateY(70px);
  }
}

@keyframes txtdisp-two{
  0%{
    opacity: 0;
    transform:translateY(-30px);
  }
  60%{
    opacity: 1;
    transform:translateY(20px);
  }
  80%{
    opacity: 0;
    transform:translateY(40px);
  }
  100%{
    opacity: 0;
    transform:translateY(50px);
  }
}

@keyframes txtdisp-three{
  0%{
    opacity: 0;
    transform:translateY(-30px);
  }
  20%{
    opacity: 1;
    transform:translateY(90px);
  }
  80%{
    opacity: 1;
    transform:translateY(170px);
  }
  100%{
    opacity: 0;
    transform:translateY(300px);
  }
}

/*glowtxt*/

.glowtxt {
  --blur: 5;
  position:relative;
  display:flex;
  flex-direction:row;
  justify-content:center;
  width: 100%;
  overflow: hidden;
}
.blurred-wrapper {
  position: absolute;
  margin:auto;
  left:0;
  right:0;
  filter: blur(1rem);
  transform: scale(
    var(--blur),
    0.001
  )
}
.blurred {
  font-family: var(--fontsecondary);
  transform: scale(
    calc( 1/var(--blur) ),
    1000
  ) 
}
#header-primary{
  font-family: var(--fontfuturistic);
  color:hsl(200,100%,80%);
  font-size:45px;
  line-height:170%;
  padding: 10px;
  top:65vh;
  letter-spacing: 5vw;
  text-align: center;
  text-shadow: 0 0 2px #555, 0 0 5px #FFF, 0 0 15px #00a6ef, 0 0 45px #00a6ef, 0 0 55px #00a6ef, 2px 2px 2px rgba(0,166,239,0);
  z-index: 3;
}

#header-primary>.still{
  color:white;
}

#header-secondary{
  font-family: var(--fontprimary);
  text-transform: uppercase;
  color:hsl(200,100%,80%);
  font-size: 20px;
  line-height:170%;
  padding: 10px;
  top:65vh;
  letter-spacing: 0.5vw;
  text-align: center;
  text-shadow: 0 0 2px #555, 0 0 5px #FFF, 0 0 10px #00a6ef,  0 0 55px #00a6ef, 1px 1px 1px rgba(0,166,239,0);
  z-index: 3;
}

#header-secondary>.still{
  color:white;
}
#header-secondary .blurred{
  opacity: .3;
}

/*end glowtxt*/


.person{
   width: auto;
   height:100vh;
   left:0px;
}

.home .butn {
  width: 300px;
  background:transparent;
  border-color:var(--colorwhite);
}

.circular-container{
  position: absolute;
  left:0;
  right:0;
  top:56px;
  margin:auto;
  width: 1420px;
  height: 100vh;
  display: block;
}

.circular-light{
  width:100%;
  height: auto;
  position:absolute;
  top:0; 
  left:0;
  right:0;
  margin:auto;
  border-radius:50%; 
}

.circle{
  width:5px;
  height:5px;
  background:cyan;
  border-radius:50%;
  position:absolute;
  top:6vh; bottom:0; left:0;right:0;
  overflow:hidden;
  margin:auto;
  box-shadow: 0 0 20px 5px #0ff;
}
.circleone{
  animation: circleround 2s linear infinite;
}
.circletwo{
  animation: circleround 3s linear infinite;
}
.circlethree{
  animation: circleroundrev 4s linear infinite;
}

@keyframes circleround{
  0%{
    transform:rotate(0deg)
              translate(-650px)
              rotate(0deg);
  }
  100%{
    transform:rotate(360deg)
              translate(-650px)
              rotate(-360deg);
  }
}

@keyframes circleroundrev{
  0%{
    transform:rotate(360deg)
              translate(650px)
              rotate(-360deg);
  }
  100%{
    transform:rotate(0deg)
              translate(650px)
              rotate(0deg);
  }
}

.gradient_bottom{
  position: absolute;
  bottom: -2px;
  left:0;
  right:0;
  margin:auto;
  width: 100%;
/*  max-width: 1920px;*/
  height: 150px;
  background: rgb(255,255,255);
  background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 35%);
}

.gradient_left{
  position: absolute;
  left:0;
  top:0;
  width: 25vw;
  height: 100vh;
  background: rgb(15,25,41);
  background: linear-gradient(90deg, rgba(15,25,41,1) 50%, rgba(15,25,41,0) 100%);
}

.gradient_right{
  position: absolute;
  right:0;
  top:0;
  width: 25vw;
  height: 100vh;
  background: rgb(15,25,41);
  background: linear-gradient(-90deg, rgba(15,25,41,1) 50%, rgba(15,25,41,0) 100%);
}

/* ----------------------------------------------------------------
     [ End Home ]
-----------------------------------------------------------------*/


/* ----------------------------------------------------------------
     [ Start product ]
-----------------------------------------------------------------*/

.product{
  position: relative;
  color: var(--colorwhite);
}
.product.pos-re{
  padding-top: 17vw;
  padding-bottom:2vw;
}
.product-bg{
  position: absolute;
  left: 0;
  right: 0;
  top:0px;
  margin:auto;
  width: 100%;
  background: url(../img/product_bg.jpg) no-repeat;
  background-size:cover;
  background-position: center;
  height: 100vh;
  max-height: 666px;
  z-index: -3;
}

.product h1{
  text-align: left;
}

.product h2{
  text-transform: uppercase;
  padding-top: 30px;
  font-weight: 200;
}

.textopt, .textin, .texttent{
  display: inline-block;
}

.textnow{
  color: var(--coloraccent);
}

.product p{
/*  color: var(--coloraccent);*/
}

.textin{
  text-decoration: underline;
  color:var(--coloraccent);
  animation: textinanim 2s linear infinite;
}

@keyframes textinanim {
  0% { 
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.3;
  }
}

.flow_diagram{
  padding-bottom:25px;
  /*-webkit-filter: drop-shadow(0px 0px 10px rgba(0,166,239,0.5));
   filter: drop-shadow(0px 0px 10px rgba(0,166,239,0.5));*/
}

.productimg_container{
  position: relative;
  margin:0 auto;
  width: 100%;
  max-width: 700px;
}

.productimg_container .txt-display-container{
  width: 100%;
  position:absolute;
  top:-100px; 
  left:0;
  right:0;
  margin:auto;
  opacity:0.4;
  overflow: hidden;
  transform: scale(0.6);
}

.productimg_container .display-txt-one{
  right:70px;
  width: 100px;
  height: 250px;
  animation: txtdisp-one 10s linear infinite;
}

.productimg_container .display-txt-three{
  right: 90px;
  width: 150px;
  height: 222px;
  animation: txtdisp-three 25s linear infinite;
}

.arrow_down{
  position: absolute;
  margin:auto;
  left:0;
  right:0;
  top:0;
  max-width: 73px;
  animation: arrowdown 1s linear infinite;
}

@keyframes arrowdown{
  0%{
    transform:translateY(2vh);
    opacity:0;
  }
  50%{
    transform:translateY(20vh);
    opacity:.3;
  }

  100%{
    transform:translateY(50vh);
    opacity:0;
  }
}

/* ----------------------------------------------------------------
     [ End Product ]
-----------------------------------------------------------------*/


/* ----------------------------------------------------------------
     [ Start growbiz ]
-----------------------------------------------------------------*/

.bg-growth{
  position: relative;
  margin-bottom:-1px;
}

.growbiz.pos-re{
  padding-top:2vw;
}

.growbiz{
  position: relative;
  background: var(--bglightgrey);
  color: var(--colordarkgrey);
  text-align: center;
}

.style-bg{
  position: absolute;
  top:-1px;
  width: 100%;
  left: 0;
  right: 0;
  margin:auto;
  z-index: 0;
}

/* ----------------------------------------------------------------
     [ End growbiz ]
-----------------------------------------------------------------*/


/* ----------------------------------------------------------------
     [ Start process ]
-----------------------------------------------------------------*/


.process{
  position: relative;
  color: var(--colorwhite);
  margin: 0 auto;
  text-align: center;
}

.process-bg{
  position: absolute;
  left: 0;
  right: 0;
  margin:auto;
  background: url(../img/city_night.jpg) no-repeat;
  background-size:cover;
  background-position: center;
  height: 100vh;
  display: block;
}

.process h1{
  font-family: var(--fontsecondary);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 80%;
}

.process .blurred{
  opacity: .6;
  margin-top:-9px;
}

.title_seconday{
  font-family: var(--fontsecondary);
  font-size:40px;
  font-weight:200;
  text-transform: uppercase;
  line-height: 100%;
  letter-spacing: 5vw;
}

.core_woman{
  position: absolute;
  margin:auto;
  max-width: 450px;
  left:0;
  right: 0;
  top:400px;
  filter: drop-shadow(0px 0px 250px rgba(52,218, 250, 1));
}

.key_success_factors{
  opacity: .1;
  position: absolute;
  margin:auto;
  left:0;
  right: 0;
}

.ai_container{
  position: relative;
  margin:0 auto;
  width: 100%;
  overflow: hidden;
  margin-top: 20px;
}

.ai_circle_container{
  cursor: pointer;
  position: absolute;
  margin:auto;
  left:0;
  right:0;
  -webkit-filter: drop-shadow(0px 0px 15px rgba(52,218, 250, 1));
   filter: drop-shadow(0px 0px 15px rgba(52,218, 250, 1));

}

.ai_circle_intent,
.ai_circle_addedvalue,
.ai_circle_glocal,
.ai_circle_growth,
.ai_circle_efficiency,
.ai_circle_profile,
.ai_close
{
  z-index: 2;
}

.ai_circle_intent{
  width: 300px;
  height: 300px;
}
.ai_circle_addedvalue{
  width: 400px;
  height: 400px;
}
.ai_circle_glocal{
  width: 280px;
  height: 280px;
}
.ai_circle_growth{
  width: 300px;
  height: 300px;
}
.ai_circle_efficiency{
  width: 400px;
  height: 400px;
}
.ai_circle_profile{
  width: 280px;
  height: 280px;
}

.circleblock{
  background: var(--bgaccent);
  opacity: .3;
  border-radius: 50%;
  width: 60%;
  height: 60%;
  display: none;
}

.aitxt{
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
  padding-top: 45%;
  font-size: 30px;
  width:200px;
  line-height: 100%;
}

.circ_one, .circ_two, .aitxt, .circleblock{
  position: absolute;
  margin:auto;
  left:0;
  right:0;
  top:0;
  bottom:0;
}

.circ_one{
  animation: aicircleone 70s linear infinite;
}
.circ_ten{
  animation: aicircleten 140s linear infinite;
}

@keyframes aicircleone{
  0%{
    transform:rotate(0deg);
  }
  100%{
    transform:rotate(-360deg);
  }
}
@keyframes aicircleten{
  0%{
    transform:rotate(0deg);
  }
  100%{
    transform:rotate(360deg);
  }
}

.ai_circle_container:hover > .circ_two{
  -webkit-animation: aicircletwo 7s linear infinite; 
  animation: aicircletwo 7s linear infinite;
}
.ai_circle_container:hover > .circleblock{
  display: block;
}

@keyframes aicircletwo{
  0%{
    transform:rotate(0deg);
  }
  100%{
    transform:rotate(360deg);
  }
}

.ai_close{
  cursor: pointer;
  position: absolute;
  right:20px;
  top:0;
  padding: 10px 20px;
  background: rgba(52, 218, 250, .2);
  opacity: 0;
}

.ai_box{
  position: absolute;
  margin:auto;
  right:20px;
  top:0;
  bottom:0;
  width:40%;
  max-width: 465px;
  text-align: left;
  padding:45px 60px;
  border:1px solid;
  border-color:var(--coloraccent);
  background: rgba(52, 218, 250, .6);
  border-radius:50px 0px 0px 0px;
  opacity: 0;
}

.ai_box h2{
  margin-bottom: 20px;
  font-size: 70px;
  margin-top:50px;
}

.triangle_down{
  width: 270px;
  height: 0;
  border-left: 100px solid transparent;
  border-right: 100px solid transparent;
  border-top: 70px solid var(--coloraccent);
  margin:0 auto;
  margin-bottom: 50px;
  display: none;
}
.ai_silhouette, .core_platform, .plus_svg{
  position: absolute;
  margin:auto;
  left:0;
  right: 0;
  width: 100%;
  max-width: 45%;
  bottom: 25%;
}

.core_platform{
  max-width: 900px;
  bottom: 0%;
}

.ai_silhouette{
  animation: glowingwhite 2s linear infinite;
}

@keyframes glowingwhite {
  0% { 
    filter: drop-shadow(0px 0px 7px rgba(255,255, 255, 0));
  }
  50% {
    filter: drop-shadow(0px 0px 7px rgba(255,255, 255, 1));
  }
  100% {
    filter: drop-shadow(0px 0px 7px rgba(255,255, 255, 0));
  }
}

.plus_svg{
  width: 20%;
  height: 20%;
  bottom: 5px;
  cursor: pointer;
  animation: glowingplus 2s linear infinite;
}

@keyframes glowingplus {
  0% { 
    filter: invert(1) drop-shadow(0px 0px 7px rgba(255,255, 255, 0));
  }
  50% {
    filter: invert(1) drop-shadow(0px 0px 7px rgba(255,255, 255, 1)) drop-shadow(0px 0px 7px rgba(255,255, 255, 1));
  }
  100% {
    filter: invert(1) drop-shadow(0px 0px 7px rgba(255,255, 255, 0));
  }
}

.ai_left{
  position: relative;
  width: 100%;
  height: 400px;
}
.ai_right{
  display: inline-block;
  vertical-align: middle;
  font-weight: 500;
}



/* ----------------------------------------------------------------
     [ End process ]
-----------------------------------------------------------------*/



/* ----------------------------------------------------------------
     [ Start services ]
-----------------------------------------------------------------*/


.services {
  position: relative;
  background: var(--bglightgrey);
  color: var(--colorblack);
  text-align: center;
  text-shadow: 
  -1px -1px 1px #ebf4f3, 
  1px -1px 1px #ebf4f3, 
  -1px 1px 1px #ebf4f3,
  1px 1px 15px #ebf4f3,
  1px 1px 15px #ebf4f3,
  1px 1px 15px #ebf4f3;
}

.servicebg{
  position: absolute;
  left: 0;
  right: 0;
  margin:auto;
  background: url(../img/servicebg.jpg) no-repeat;
  background-size:cover;
  background-position: top center;
  width:100%;
  height:1026px;
}

.style-bg-center-stand{
  position: absolute;
  margin:auto;
  left:0;
  right:0;
  bottom:0px;
}

.services.pos-re{
  padding-top:0px;
}

.services p{
  font-weight: 600;
}

.services h2{
  text-transform: uppercase;
}

.service_silhouette{
  position: relative;
  margin:0 auto;
  overflow: hidden;
  width: 100%;
  height: 600px;
}

.service_menu_block{
  margin-top: 50px;
}

.service_menu h2, .service_menu p{
  text-align: center;
  margin:0 auto;
  padding-top:20px;
}

.service_menu h1{
  padding-top:100px;
  text-align: center;
  
}

.service_menu p{
  max-width: 800px;
}

.servicon_container{
  margin:0 auto;
  width: 100%;
  max-width: 100px;
  position: relative;
}

.servicon{
  animation: glowingservicon 2s linear infinite;
}

@keyframes glowingservicon {
  0% { 
    filter: drop-shadow(0px 0px 7px rgba(52,218, 250, 0));
  }
  50% {
    filter: drop-shadow(0px 0px 7px rgba(52,218, 250, 1)) drop-shadow(0px 0px 7px rgba(52,218, 250, 1));
  }
  100% {
    filter: drop-shadow(0px 0px 7px rgba(52,218, 250, 0));
  }
}

.servicon_molecule{
  width:5px;
  height:5px;
  background:var(--bgaccent);
  border-radius:50%;
  position:absolute;
  left:0;right:0;
  top:50px;
  overflow:hidden;
  margin:auto;
  box-shadow: 0 0 20px 5px var(--bgaccent);
  
}

.moleculeone{
  animation: moleculeround 2s linear infinite;
}
.moleculetwo{
  animation: moleculeround 3s linear infinite;
}
.moleculethree{
  animation: moleculeroundrev 2s linear infinite;
}

@keyframes moleculeround{
  0%{
    transform:rotate(0deg)
              translate(60px)
              rotate(0deg);
  }
  100%{
    transform:rotate(360deg)
              translate(60px)
              rotate(-360deg);
  }
}

@keyframes moleculeround{
  0%{
    transform:rotate(0deg)
              translate(60px)
              rotate(0deg);
  }
  100%{
    transform:rotate(360deg)
              translate(60px)
              rotate(-360deg);
  }
}

@keyframes moleculeroundrev{
0%{
    transform:rotate(360deg)
              translate(60px)
              rotate(-360deg);
  }
  100%{
    transform:rotate(0deg)
              translate(60px)
              rotate(0deg);
  }
}

/* ----------------------------------------------------------------
     [ End services ]
-----------------------------------------------------------------*/



/* ----------------------------------------------------------------
     [ Start about ]
-----------------------------------------------------------------*/

.about{
  color: var(--colorwhite);
  position: relative;
}

.journeybg{
  position: absolute;
  left: 0;
  right: 0;
  top:-1px;
  margin:auto;
  background: url(../img/journey_bg.jpg) no-repeat;
  background-size:cover;
  background-position: top center;
  height: 100vh;
  width:100%;
}

.journey_title_outercontainer{
  margin-top:300px;
}

.journey_title_container{
  position: relative;
  margin:0 auto;
  width:100%;
  max-width: 1200px;
}

.ourjourney_par h1{
  color:var(--coloraccent);
  font-size:130px;
  padding-bottom: 15px;
}

.rocket_station, .rocket, .rocket_fire, .rocket_smoke{
  position: absolute;
  left:0;
  right: 0;
  bottom:0;
}

.rocket_smoke{
  opacity: 1;
  animation: rocketsmoke 5s linear infinite;
}


@keyframes rocketsmoke{
  0%{
    opacity: 0;
    transform:translateX(-20px);
  }
  30%{
    opacity: 1;
  }
  60%{
    opacity: 1;
  }
  100%{
    opacity: 0;
    transform:translateX(70px);
  }
}

.ourteam_container{
  margin-top:50px;
}

.ourteam{
  text-align: center;
  width: 100%;
  margin:0 auto;
  max-width: 800px;
}

#header-team{
  font-family: var(--fontfuturistic);
  color:hsl(200,100%,80%);
  font-size:50px;
  line-height:100%;
  text-align: center;
  text-shadow: 0 0 2px #555, 0 0 5px #FFF, 0 0 15px #00a6ef, 0 0 45px #00a6ef, 0 0 55px #00a6ef, 2px 2px 2px rgba(0,166,239,0);
}
#header-team .blurred{
  opacity: .7;
}
.team_frame{
  padding: 10px;
  text-align: center;
}

.team_frame h3{
  color:var(--coloraccent);
  font-size:30px;
}

.team_frame img{
  max-width: 500px;
}

/* ----------------------------------------------------------------
     [ End about ]
-----------------------------------------------------------------*/



/* ----------------------------------------------------------------
     [ Start Connect_us ]
-----------------------------------------------------------------*/

.connect_us_container{
  margin-top: 12vw;
  position: relative;
}

.connect_container{
  position: relative;
  margin:0 auto;
  width: 100%;
  max-width: 600px;
}

.connect1{
  position: absolute;
  margin:auto;
  left:-1200px;
  right:0;
  top:-120px;
}
.connect2{
  position: absolute;
  margin:auto;
  right:-80px;
  top:-120px;
}

.electric{
  position: absolute;
  margin:auto;
  left:-250px;
  right:0;
  top:-120px;
}


/* ----------------------------------------------------------------
     [ Start Contact ]
-----------------------------------------------------------------*/

.contact.pos-re{
  padding-top:2vw;
  padding-bottom:0px;
}
.contact h1{
  font-family: var(--fontsecondary);
  font-weight: 900;
  text-transform: uppercase;
}
.contact h1, .contact p{
  text-align: center;
  color: var(--colorwhite);
}
.contact h1 span{
  display: none;
}

.contactbtn{
  background: var(--bgaccent);
  padding: 10px;
  font-size:20px;
}

.inputfield-container, .contactbtn{
  position: relative;
  margin:0 auto;
  width: 100%;
  max-width: 600px;
}

.inputfield{
  padding: 30px;
  height: 60px;
  border-radius: 0px;
  background: #f9f9f9;
  border-radius: 0px;
}
.inputtext{
  padding: 30px;
  margin:0 auto;
  width: 100%;
  max-width: 600px;
  background: #f9f9f9;
  border: 1px solid #bbb;
  border-radius: 0px;
}

select,
input[type="text"],
input[type="tel"],
input[type="email"] {
  margin: 0 auto;
  width: 100%;
  border: 1px solid #bbb;
  text-indent: 0px;
}

select{height: 32px;}
input[type="text"],
input[type="tel"],
input[type="email"] {
  font-size: 17px;
  line-height: 100%
}

select.invalid,
input[type="text"].invalid,
input[type="tel"].invalid,
input[type="email"].invalid {
  border: 1px solid red;
}


input[type=checkbox]
{
  -ms-transform: scale(1.5); /* IE */
  -moz-transform: scale(1.5); /* FF */
  -webkit-transform: scale(1.5); /* Safari and Chrome */
  -o-transform: scale(1.5); /* Opera */
  transform: scale(1.5);
  padding: 7px;
}

.checkboxtext
{
  font-size: 110%;
  display: inline;
}

#checkbox {
  border: 0px;
  float: left;
  margin-right:10px;
}

.errortext{
  color: #ffffff;
  background: red;
  font-size: 12px;
  position: absolute;
  padding: 0px 10px;
  display: none;
}
.messagesent{
  color: #ffffff;
  background:green;
  font-size: 12px;
  position: absolute;
  padding: 0px 10px;
  margin-top:10px;
  display: none;
}


.location{
  padding-top:120px;
  padding-bottom: 0px;
  color: var(--colorwhite);
  margin:0 auto;
  text-align: center;
  overflow: hidden;
}

.location h2{
  font-size: 70px;
}

.cityholo_container{
  position: relative;
  height:500px;

}
.map, .cityholo, .cityholo_text{
  position: absolute;
  margin:auto;
  left:0;
  right:0;
}

.cityholo_text{
  top:-15px;
  text-shadow: 2px 2px 2px #000000;
}

.map_lights{
  opacity: 0;
}

.cityholo{
  width:100%;
  max-width: 600px;
}

.cityholo_text h3{
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: 1vw;
}

.clock{
  font-size: 70px;
  font-weight: 900;
  margin-top:-30px;
}

.copyright{
  text-align: center;
  margin:0 auto;
  color:var(--colorwhite);
  padding:50px 0px;
  font-size: 10px;
  letter-spacing: 1px;
  margin-top:100px;
}

.navi_footer{
  text-align: center;
  margin:0 auto;
  padding: 10px 8px;
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  line-height:300%;
}
.copyright a:hover {
  color: var(--coloraccent);
  text-shadow: 0 0 2px #555, 0 0 5px #FFF, 0 0 10px #00a6ef,  0 0 55px #00a6ef, 1px 1px 1px rgba(0,166,239,0);
}


/* ==========================================================================
   Placeholders
   ========================================================================== */
::-webkit-input-placeholder {font-weight: normal;color:#777;}
::-moz-placeholder {font-weight: normal;color:#777;}
:-moz-placeholder {font-weight: normal;color:#777;}
input:-moz-placeholder{font-weight: normal;color:#777;}
:-ms-input-placeholder {font-weight: normal;color:#777;}
input:-ms-input-placeholder{font-weight: normal;color:#777;}
input.address:-ms-input-placeholder{font-weight: normal;color:#777;}



/* ----------------------------------------------------------------
     [ End Contact ]
-----------------------------------------------------------------*/



/* ----------------------------------------------------------------
     [ Start terms ]
-----------------------------------------------------------------*/

.terms.pos-re{
  padding-top: 10vw;
}

.terms{
  color: var(--colorwhite);
  text-shadow: 1px 1px 1px var(--bgmediumgrey);
}

.terms p, .terms li{
  font-weight: 100;
}

.termstext{
  margin:0 auto;
  max-width: 1000px;
}
ul.bulletpoint{
  position: relative;
}
ul.bulletpoint>li{
  display: list-item;
  position: relative;
  padding:0 20px;
}
ul.bulletpoint>li:before{
  content: "• ";
  display: list-item;
  position: absolute;
  margin-left:-20px;
}

/* ----------------------------------------------------------------
     [ End terms ]
-----------------------------------------------------------------*/



/* ----------------------------------------------------------------
     [ Start Preloader ]
-----------------------------------------------------------------*/

.preloader-wrap {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0; 
  bottom: 0;
  background: var(--bgdarkgrey);
  z-index : 999; 
}

.percentage {
  z-index: 100;
  text-align:center;
  color: var(--colorwhite);
  line-height: 30px;
  font-size : 15px;
}

.loader,
.percentage{
  height: 3px;
  max-width: 200px; 
  border:none;
  border-radius: 20px;
  font-weight: 300;
  position: absolute; 
  top: 0; 
  bottom: 0; 
  left: 0; 
  right: 0;
  margin : auto; 
}
.loader:after,
.percentage:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.trackbar {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  color: #fff;
  text-align: center;
  line-height: 30px;
  overflow: hidden;
  position: relative;
  opacity: 0.99;
}

.loadbar {
  width: 0%;
  height: 100%;
  background:var(--bgaccent);
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

.logo-preloader-container{
  position: absolute;
  margin:auto;
  top: 0;
  bottom:0;
  left: 0;
  right:0;
  width: 200px;
  height:380px;
  padding-bottom:200px;
}

.logo-preloader{
  position: absolute;
  margin:auto;
  top: 5px;
  bottom:0;
  left: -10px;
  right:0;
  width: 110px;
  padding-bottom:200px;
}


/* ----------------------------------------------------------------
     [ End Preloader ]
-----------------------------------------------------------------*/



/* ----------------------------------------------------------------
   [ Responsive ]
-----------------------------------------------------------------*/


@media screen and (min-width: 1200px) {

  .container {
    max-width: 1200px;
  }
  .product h1{
    font-size: 105px;
  }
  .ai_container {
    max-width: 1400px;
    height: 860px;
  }
  .ai_circle_intent{
    width: 300px;
    height: 300px;
    top:10px;
    left:-600px;
  }
  .ai_circle_addedvalue{
    width: 400px;
    height: 400px;
    top:230px;
    left:-1000px;
  }
  .ai_circle_glocal{
    width: 280px;
    height: 280px;
    top:570px;
    left:-700px;
  }
  .ai_circle_growth{
    width: 300px;
    height: 300px;
    top:10px;
    right:-600px;
  }
  .ai_circle_efficiency{
    width: 400px;
    height: 400px;
    top:230px;
    right:-1000px;
  }
  .ai_circle_profile{
    width: 280px;
    height: 280px;
    top:570px;
    right:-700px;
  }

  .ai_silhouette{
    display: none;
  }
  .ai_left{
    display: none;
  }
  .ourjourney_par h1{
    font-size:120px;
  }
  .contact h1{
    font-size: 120px;
  }
}

@media screen and (max-width: 1199px) {
  canvas{
    display: none;
  }
  h1{
    font-size: 120px;
  }
  .product h1{
    font-size: 85px;
  }
  .process-bg{
    display: none;
  }
  .core_woman{
    display: none;
  }
  .ai_circle_container{
    display: none;
  }
  .ai_close{
    display: none;
  }

  .aitxt{
    width: 100%;
    font-size:2.8vw;
  }
  
  .ai_box{
    position: relative;
    width:90%;
    max-width: 800px;
    right:0px;
    opacity:1!important;
    border-radius: 0px;
    display: block;
    background: rgb(52,218,250);
    background: linear-gradient(0deg, rgba(52,218,250,1) 0%, rgba(52,218,250,0) 75%);
  }
  
  .ai_container {
    height:auto;
  }

  .ai_box{
    border:none;
  }
  .triangle_down{
    display: block;
  }

  .ai_right h2{
    display: none;
  }

  .service_silhouette{
    height: 450px;
  }

  .servicon_molecule{
    display: none;
  }

  .ourjourney_par h1{
    font-size:100px;
  }

}


@media screen and (max-width: 991px) {

  h1{
    font-size: 90px;
  }
  h2{
    font-size: 30px;
  }
  
  /*kill hover state animation on mobile device screensize range*/
  .icon-arrow svg:hover,
  .butn:hover:after,.butn-blank:hover:after,
  .butn:hover + .dotbtn , .butn-blank:hover + .dotbtn,
  .tab:hover:after,
  .hamburger:hover:after
  {
    pointer-events:none;
    animation:none;
  }

  .home_bg_optintent_circle{
    margin:auto;
    left:-170px;
    right:0;
    width: 140%!important;
  }
  .product-bg{
    height: 50vh;
  }
  .product h1{
    text-align: center;
  }

  .product h2{
    padding-top: 0px;
    text-align: center;
    width: 100%;
  }
  .product p{
    text-align: center;
  }
  .ai_left{
    height: 300px;
  }
  .ourjourney_par h1{
    font-size:80px;
  }
}



@media screen and (max-width: 767px) {
  .overlay-bg{
    background: var(--bgaccentdark);
    background: -moz-linear-gradient(90deg, rgba(15,25,41,0) 0%, rgba(15,25,41,1) 0%);
    background: -webkit-linear-gradient(90deg, rgba(15,25,41,0) 0%, rgba(15,25,41,1) 0%);
    background: linear-gradient(90deg, rgba(15,25,41,0) 0%, rgba(15,25,41,1) 0%);
  }

  .home .container{
    padding-top:10vh;
  }

  .home-bg{
    background: url(../img/bg_home_mobile.jpg) no-repeat;
    background-size:cover;
    background-position: center;
    overflow: hidden;
    z-index: 0;
  }

  .bgcircle-container, .home_bg_optintent_circle{
    display: none;
  }

  .txt-display-container{
    transform: scale(0.9);
  }
  
  .person{
     left:-70px;
  }


  #header-primary{
    font-size:7vw;
    top:58vh;
  }

  #header-secondary{
    font-size:3.5vw;
    top:58vh;
  }

  .product.pos-re{
    padding-top: 35vw;
  }

  .product h1{
    font-size: 80px;
  }

  .producttext{
    text-align: center;
  }

  .productimg_container .txt-display-container{
    transform: scale(0.4);
    top:-200px;
    right:-100px;
  }

  .arrow_down{
    display: none;
  }

  .ai_left{
    height: 250px;
  }
  .ai_box{
    padding:15px;
    text-align: center;
    padding-bottom:30px;
  }
  .ai_box h2{
    font-size: 50px;
  }

  .ai_right{
    font-size: 13px;
  }

  .service_menu_block{
    margin-top:20px;
  }

  .service_menu h1, .service_menu h2, .service_menu p{
    text-align: center;
  }

  .servicon{
    max-width: 70px;
  }

  .servicebg{
    display: none;
  }

  .services .glowtxt {
    justify-content: center;
  }
  .services .glowtxt .blurred{
    display: none;
  }

  .about{
    text-align: center;
  }
  .ourjourney_par h1{
    font-size:60px;
  }
  .contact.pos-re{
    padding-top:15vw;
  }
  .connect_us_container{
    padding-top: 0vw;
  }
  .connect_container{
    display: none;
  }
  .contact h1 span{
    display: block;
  }

  .ourjourney_par{
    padding-left: 0px;
  }
  .rocket_station, .rocket, .rocket_fire, .rocket_smoke{
    display:none;
  }

  .terms.pos-re{
    padding-top: 25vw;
  }
  .terms h1{
    font-size: 50px;
  }
}

@media screen and (min-width: 768px) {

}


@media only screen and (min-width: 992px) {

  p , li{
    font-size: 15px;
  }
}

@media screen and (max-width: 1440px) {

  .circular-container{
      display: none;
  }

  .bgcircle-container, .home_bg_optintent_circle{
    width: 92%;
  }

  @keyframes arrowdown{
    0%{
      transform:translateY(2vh);
      opacity:0;
    }
    50%{
      transform:translateY(20vh);
      opacity:.3;
    }

    100%{
      transform:translateY(40vh);
      opacity:0;
    }
  }
}

@media screen and (max-width: 480px) {

  .hamburger{
    padding:10px;
    border-radius: 0px 0px 25px 25px;
    right:10px;
  }
  .hamburger span:before, .hamburger span:after {
    width: 60px;
  }
  .hamburger span:before{
    top:0px;
  }
  .overlay .closebtn{
    transform: scale(0.4);
    margin:auto;
    left:0;
    right:0px;
  }
  .overlay-content{
    text-align: center;
    padding-right: 0px;
  }

  .navi_icon{
    width: 38px;
  }

  .home{
    width: 100%;
  }

  canvas{
    display: none;
  }

  h1{
    font-size: 65px;
  }
  h2{
    font-size: 25px;
  }

  .product h1{
    font-size: 50px;
  }

  .service_menu h1{
    padding-top: 55px;
  }
  .ai_left{
    height: 150px;
  }
  .ai_silhouette{
    bottom: 19%;
  }
  .triangle_down{
    margin-bottom: 10px;
  }
  #header-team{
    font-size:35px;
  }
  .team_frame h3{
    font-size:25px;
  }
  .location h2{
    font-size: 45px;
  }
  .cityholo_text h3 {
    font-size: 20px;
  }
  .clock{
    font-size: 60px;
    margin-top:-25px;
  }
  .cityholo_container {
    height: 320px;
  }
}

@media screen and (min-width: 1600px) {

  .container {
    max-width: 1440px;
  }
  .product h1{
    font-size: 120px;
  }
}

@media screen and (max-width: 1600px) {

    .txt-display-container{
      width: 80%;
    }

}

@media screen and (max-width: 1900px) {

    .gradient_left, .gradient_right{
      display: none;
    }
}
