/* space-grotesk-regular - latin */
@font-face {
  font-display: swap; 
  font-family: 'MySpace Grotesk';
  font-style: normal;
  font-weight: 400;
  src: url('../font/SpaceGrotesk-Regular.woff2') format('woff2');
}

/* space-grotesk-500 - latin */
@font-face {
  font-display: swap; 
  font-family: 'MySpace Grotesk';
  font-style: normal;
  font-weight: 500;
  src: url('../font/SpaceGrotesk-Medium.woff2') format('woff2'); 
}

/* space-grotesk-600 - latin */
@font-face {
  font-display: swap; 
  font-family: 'MySpace Grotesk';
  font-style: normal;
  font-weight: 600;
  src: url('../font/SpaceGrotesk-SemiBold.woff2') format('woff2'); 
}
/* space-grotesk-700 - latin */
@font-face {
  font-display: swap; 
  font-family: 'MySpace Grotesk';
  font-style: normal;
  font-weight: 700;
  src: url('../font/SpaceGrotesk-Bold.woff2') format('woff2'); 
}


/*Colors*/
:root {
  --blue: #019BF5;
  --orange: #FDAB18;
  --green: #9CC215;
  --darkblue: #201845;
}

.blue{ color: var(--blue);}
.orange{ color: var(--orange);}
.green{ color: var(--green); }
.darkblue{ color: var(--darkblue); fill: var(--darkblue); }


.langNav.darkblue a{
  color: var(--darkblue);
}

.bgblue{ background-color: var(--blue); }
.bgorange{ background-color: var(--orange); }
.bggreen{ background-color: var(--green); }
.bgdarkblue{ background-color: var(--darkblue); }

.bggradient{
    background: transparent linear-gradient(124deg, #9CC215 0%, #FDAB18 100%) 0% 0% no-repeat padding-box;
}

.borderbottomgradient{
  border-bottom: 2px solid  ;
  border-image-slice: 1;
  border-image-source: linear-gradient(90deg, #019BF5 0%, #9CC215 53%, #FDAB18 100%);
}


.halfbackground{
     background: -webkit-gradient(linear,  left top, left bottom,  color-stop(50%, var(--darkblue)),  color-stop(50%, var(--blue)));
     background: linear-gradient(180deg,  var(--darkblue) 50%,  var(--blue) 50%);
}

/*Helpers*/
.ratio-1x1_25{
    --bs-aspect-ratio: 125%;
}
.ratio-1x1_xx{
    --bs-aspect-ratio: 150%;
}



.mt-8 { margin-top: 8rem !important;}
.mb-8 { margin-bottom: 8rem !important;}
.my-8 { margin-top: 8rem !important; margin-bottom: 8rem !important;}
.mt-9 { margin-top: 9rem !important;}
.mb-9 { margin-bottom: 9rem !important;}
.my-9 { margin-top: 9rem !important; margin-bottom: 9rem !important;}
.mt-10 { margin-top: 10rem !important;}
.mb-10 { margin-bottom: 10rem !important;}
.my-10 { margin-top: 10rem !important; margin-bottom: 10rem !important;}


.pt-8 { padding-top: 8rem !important;}
.pb-8 { padding-bottom: 8rem !important;}
.py-8 { padding-top: 8rem !important; padding-bottom: 8rem !important;}

.pt-9 { padding-top: 9rem !important;}
.pb-9 { padding-bottom: 9rem !important;}
.py-9 { padding-top: 9rem !important; padding-bottom: 9rem !important;}

.pt-10 { padding-top: 10rem !important;}
.pb-10 { padding-bottom: 10rem !important;}
.py-10 { padding-top: 10rem !important; padding-bottom: 10rem !important;}


.pt-11 { padding-top: 11rem !important;}
.pb-11 { padding-bottom: 11rem !important;}
.py-11 { padding-top: 11rem !important; padding-bottom: 11rem !important;}

.pt-13 { padding-top: 13rem !important;}
.pb-13 { padding-bottom: 13rem !important;}
.py-13 { padding-top: 13rem !important; padding-bottom: 13rem !important;}

a{
    text-decoration:underline;
    color:var(--darkblue);
    -webkit-transition: color .25s ease-out ;
    transition: color .25s ease-out ;
}

a:hover{
    text-decoration:none;
    color:var(--green)
}

a.animatelink{
    text-decoration:none;
    display: inline-block;
    -webkit-transition: all .25s ease-out;
    transition: all .25s ease-out ;
    -webkit-transform:  translate(0px,0px);
    transform:  translate(0px,0px)
}
a.animatelink:hover{
     -webkit-transform:  translate(10px,0px);
     transform:  translate(10px,0px)
}


.joblink{
    text-decoration: none
}
.joblink img.animated-arrow{
    -webkit-transition: all .25s ease-out;
    transition: all .25s ease-out ;
    -webkit-transform:  translate(0px,0px);
    transform:  translate(0px,0px)
}
.joblink:hover img.animated-arrow{
    -webkit-transform:  translate(10px,0px);
    transform:  translate(10px,0px)
}


.gotobutton{
	opacity:0;
	-webkit-transition: opacity ease-in-out 0.25s;
	transition: opacity ease-in-out 0.25s;
}

/* Buttons */
.btn{
    letter-spacing: 0.32px;
    font-size:16px;
    font-weight:500;
    padding: .575rem 1.95rem;
    border-radius: 0px;
    background: transparent;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.btn-check:focus + .btn, .btn:focus {
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  
}
.btn::before{
    content: "";
    display: inline-block;
    background:  linear-gradient(  72deg, #9CC215 0%, #019BF5 100%) right;
    width:100%;
    height:100%;
    position: absolute;
    z-index: -1;
    left:-100%;
    top:0px;
    -webkit-transition: left ease-in-out 0.25s;
    transition: left ease-in-out 0.25s;
}
.btn:hover::before{
  left:0%;
}


.btn-next{
  color: var(--darkblue);
  border-color: var(--green) !important;
}
.btn-next::before{
    background:  linear-gradient(  72deg, #9CC215 0%, #019BF5 100%) right;
}





.btn-next-dark{
  color: var(--darkblue) !important;
  border-color: var(--darkblue) !important;
}
.btn-next-dark::before{
    background:  var(--darkblue);
}
.btn-next-dark:hover{
    color: var(--bs-white) !important;
}

.btn-next-footer{
     color: var(--bs-white);
}
.btn-next-footer:hover{
    color: var(--darkblue) !important;
}







body{
    font-family: 'MySpace Grotesk';
    font-weight:500;
    font-size:16px;
    -webkit-transition: background linear 0.5s;
    transition: background linear 0.5s; 
    color: #201845;
    opacity:1;
    line-height: 1.375;
    letter-spacing: 0.48px;
    
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
   font-family: 'MySpace Grotesk';
   font-weight:500;
    margin-bottom: 1rem;
}

b, strong {
  font-weight: 700;
}

.herotext{
  
    line-height: 1;
    font-size: clamp(2.125rem, 1.7791rem + 4.2297vw, 6.5rem);
}

.biggertext{
    font-size:24px
}

.smallertext{
    font-size:14px
}

.gianttext{
    font-size: clamp(3.125rem, 1.9088rem + 6.0811vw, 8.75rem);
}


#logo {
  position: fixed;
  top: 40px;
  left: 40px;
  z-index: 10;
  width:150px
}
.logocolor{
  -webkit-transition:fill linear 0.5s;
  transition:fill linear 0.5s;
}

#menu{
  position: fixed;
  top: 55px;
  right: 40px;
  z-index: 11;
  width:50px
}

#menu-mainnavigation {
  padding: 0;
  margin: 0;
  list-style: none;
  text-transform: lowercase;
}
#menu-mainnavigation li{
    margin: 35px 0;
}

#menu-mainnavigation li a{
    font-size:60px;
    text-decoration: none;
    color: var(--darkblue);
    font-weight: 600;
}


.langNav{
  position: fixed;
  top: 57px;
  right: 175px;
  z-index: 11;
}

.wpml-ls-legacy-list-horizontal {
  border: 0px solid transparent;
  padding:0px;
  clear: both;
}

.wpml-ls-legacy-list-horizontal a {
  display: block;
  text-decoration: none;
  padding: 0px 10px 0px;
  line-height: 1;
    -webkit-transition: all .25s ease-out;
  transition: all .25s ease-out;
  -webkit-transform: translate(0px,0px);
  transform: translate(0px,0px);
}


.wpml-ls-legacy-list-horizontal a:hover {
  -webkit-transform: translate(10px,0px);
  transform: translate(10px,0px);
}


.langNav a{
    color:#fff
}

/*
.page-id-14 .langNav a,
.page-id-16 .langNav a,
.page-id-18 .langNav a,
.page-id-20 .langNav a,
.single .langNav a{
    color:var(--darkblue)
}
*/


.langNav a.active, .langNav a:hover, .wpml-ls-current-language a{
     color:var(--green) !important;
}

.closeNavModal{
    position: absolute;
    z-index: 111;
    right:40px;
    top:50px;
    width:37px;
    height: 37px;
}


p,ul {
  margin-top: 0;
  margin-bottom: 2rem;
}

p + h2,
p + h3,
p + h4,
ul + h2,
ul + h3,
ul + h4{
    margin-top: 4rem;
}





section,footer{
    margin: 0px;
    padding:90px 0px;
    border-top:0px solid #000;
    position: relative;
    z-index: 1;
    overflow-x: hidden;
}
section.lastsection{
   /* padding-bottom: 100px !important; */
}

section.lastsectionbottom{
    padding-bottom: 30vH !important;
}


.section-label{
  position: absolute;
  font-size: 60px;
  text-transform: lowercase;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  left: 30px;
  line-height: 1;
  font-weight: 600;
   -webkit-transition: translate ease-out 0.2s;
   transition: translate ease-out 0.2s;
}

/*
.section-label2{
  position: absolute;
  font-size: 60px;
  text-transform: lowercase;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  left: 30px;
  line-height: 1;
  font-weight: 600;
   -webkit-transition: translate ease-out 0.2s;
   transition: translate ease-out 0.2s;
}
*/

.pagelabel {
  position: fixed;
  font-size: 60px;
  text-transform: lowercase;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  left: 30px;
  line-height: 1;
  font-weight: 600;
  -webkit-transition: translate ease-out 0.2s;
  transition: translate ease-out 0.2s;
}





#pagesection{
    padding: 190px 0px 90px;
    position: relative
}
.section-label2,.test{border:0px solid blue}
    
.pin-spacer{
    border:0px solid green
}

.pinend{
    border:0px solid #ff7722;
    width:100px;
    height: 1px;
}



#sectioncareerstestimonials .carousel-container{
    height:100%
}


#cmplz-cookiebanner-container {
  font-weight: 400;
}




footer{
    background-color: var(--darkblue);
    color:#fff;
    position: relative;
    z-index: 10;
      padding: 57px 40px 40px;
}
footer,.fullheight{
    height:100vh;
     overflow:hidden
    
}

footer a{
    color:#fff
}

footer a.active{
    color: var(--green);
}


#footer .bord{
    border:0px solid red
}
.footercontainer{
    height:100%;
    border:0px solid yellow;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0px 15px!important;
}

.footernav{
    position: absolute;
    bottom: 0px;
    left:0px;
    width: 100%;
}
.footertop{
    position: absolute;
    top: 0px;
    left:0px;
    width: 100%;
}
.footercontent{
    width: 100%;
}

.footernavmobile{
    position: absolute;
    bottom: 0px;
    left:0px;
    width: 100%;
}


.footer-title{
    font-size: clamp(3.125rem, 1.9088rem + 6.0811vw, 8.75rem);
    line-height: 1.1;
}

#gradientbg {
  position: fixed;
  z-index: 0;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  opacity: 0;
  -webkit-transition: opacity linear 0.5s;
  transition: opacity linear 0.5s;
}





.startpage{
    margin: 0px;
    padding:0px;
    height: 100vH;
   
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow:hidden
}



.startimage{
    position: absolute;
    width:100%;
    height:100%;
    left:0px;
    top:0px;
   /* background: url(../img/istockphoto-1465604506-612x612-topaz-enhance-4x.png) #ffffff; */
    background-size: cover!important;
    background-position: center center!important;
    z-index: -1;
    -webkit-animation: move 40s ease-in-out alternate infinite ;
    animation: move 40s ease-in-out alternate infinite ;
    
}


.video-container video {
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  
}


.darkerOverlay{
    position: absolute;
    width:100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 0
}


@-webkit-keyframes move {
  0% {
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
    -webkit-transform: scale(1.0) translate(0px,0px);
    transform: scale(1.0) translate(0px,0px);
  }
  100% {
    -webkit-transform: scale(1.9) translate(-50px,0px);
    transform: scale(1.9) translate(-50px,0px);
  }
    
 
}






.startteaser{
    font-size:6.5vw;
    color:#fff;
    padding: 40px;
    letter-spacing: 0px;
    line-height: 1.2;
    font-weight: 600;
  
}
#starttext1,#starttext2{

}


/* BigAnimatedTeaser */
.teasertext{
    /*font-size:60px;*/
    font-size: clamp(1.5rem, 1.0135rem + 2.0324vw, 3.05rem);
     line-height: 1.25;
     margin: 0px 0px 3rem;
    font-weight: 600;
  
}

.teasertextgradient{

   background: linear-gradient(255deg, #FDAB18 0%, #9CC215 48%, #019BF5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
/**/

    
    background-size: cover;

}


#teasertextjoinus {
    
    opacity:0;
    -webkit-transition: opacity 1s ease-in;
    transition: opacity 1s ease-in
}


.line {
    position: relative;
}
.line-mask {
  position: absolute;
  top: 0;
  right: 0;
  background:var(--green);
  opacity: 0.9;
  width: 100%;
  height: 100%;
  z-index: 1;
}


#teamteaser .line-mask {
    background: var(--orange);
    display: none!important
}

#fotoOverlap .line-mask {
    background: var(--orange);
}

#teasertextabout2 .line-mask {
  
    display: none!important
}

#teasertextjoinus .line-mask {
    background: var(--darkblue);
}
#teasertextjoinus .line {
      background: linear-gradient(255deg, #FDAB18 0%, #9CC215 48%, #019BF5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}



/* BigBoxes */
.ratio-1x1_25{
    --bs-aspect-ratio: 125%;
}
.bigboxwrapper {
  padding: 7% 5% 9%;
}
.bigboxwrapper-title {
  font-size: 60px;
  height:90px
}
.bigboxwrapper-content {
  font-size:20px;
    font-weight: 400;
    line-height: 1.25;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: calc(100% - 90px);
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
}


/* Projects */



#casestudies{
  
    
}

.project{
    
}




.list-item h4{
  margin-top: 30px; 
  margin-bottom:15px;
  padding-bottom:12px; 
    font-weight: 600;
}





/* Big Testimonial */
.logo-gb{
    max-width:45%;
    height: auto;
}


.mybox{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.box-top {
  height: 15%;

  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;  
}

.box-center {
    height: 65%;
    /*font-size: 2.5vw;*/
 line-height: 1.25;
    font-size: clamp(20px, 3.2vw, 32px);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.box-bottom {
    height: 20%;
    
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.box-bottom .box-name {
    /*font-size: 1.68vw;*/
/*    line-height: 1.25;*/
}
.box-bottom .box-subname {
/*
    font-size: 1.15vw;
    line-height: 1.25;
*/
}




/* Teaser-Big-Box */
.teaserbigboxtextWrapper{
    padding:10% 0%
}
.teaserbigboxtext{
    width:90%;
    margin: auto auto;
}

span.team-mini{
    
}
.team-mini{
    width:auto !important;
    height: clamp(30px, 1.1rem + 2.4027vw, 5.625rem) !important;

}

span.logo-mini{
    
}

.logo-mini{
    width:auto;
    height: clamp(24px,  0.68rem + 2vw, 48px);
    border:0px solid #fff;
    position: relative;
    top:-0.1vh;
}



/* About */
.fotoOverlap{ overflow: visible}
#sectionabouttop-foto{
    position: relative;
    margin-top:-30vh
}



/*Team*/


/*Network */
#locations rect{
    fill:transparent;
}
.country{
    cursor: pointer;
}

#locations g:hover > circle{
    fill: var(--orange);
}
.custom-tooltip{
   --bs-tooltip-bg: var(--darkblue); 
   --bs-tooltip-border-radius:0px;
   --bs-tooltip-opacity:1
}


/*Join us*/
#sectionjoinus{
    
}

#joinusWrapper{
  border-top: 2px solid  ;
  border-image-slice: 1;
  border-image-source: linear-gradient(90deg, #019BF5 0%, #9CC215 53%, #FDAB18 100%);
}






/*History*/
#history{

}



/* WHY NEXT */

#whynext{
  /*  top: 340px; */
}

/*Careers Testimonials*/
.testimonials {
  height: 100%;
  color: #fff;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.testimonial-item {
  padding: 40px 8%;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;  
}


.testimonials,
.testimonials .owl-testmonials,
.testimonials .owl-stage-outer,
.testimonials .owl-stage,
.testimonials .owl-item,
.testimonials .testimonial-item{
    height:100%
}

.owl-carousel .owl-item img {
  height: auto;
}

.owl-carousel.owl-testmonials .owl-item img {
  display: inline-block;
  width: auto;
}

.owl-prev, .owl-next {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: block !important;
}
.owl-prev { left: 20px; }
.owl-next { right: 20px; }
.owl-prev a,.owl-next a{
    display: block;
    height:100%;
    background-size: cover;
    -webkit-transition: all .25s ease-out;
    transition: all .25s ease-out ;
    -webkit-transform:  translate(0px,0px);
    transform:  translate(0px,0px)
}
.owl-prev a{ background-image: url(../img/nav-prev-dark.png); }
.owl-next a{ background-image: url(../img/nav-next-dark.png); }


.alternativenav .owl-prev a{ background-image: url(../img/nav-prev.png); }
.alternativenav .owl-next a{ background-image: url(../img/nav-next.png); }


.owl-prev a:hover{
     -webkit-transform:  translate(-10px,0px);
     transform:  translate(-10px,0px)
}
.owl-next a:hover{ 
     -webkit-transform:  translate(10px,0px);
     transform:  translate(10px,0px)
}






/* Connect */



.form-control {
  padding: 1rem 0rem;  
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--darkblue);
  border: 0px solid #ced4da;
  border-radius: 0px;
}

.form-floating > .form-control {
   padding: 1rem 0rem; 
}

.form-floating > label {
   padding: 1rem 0rem;
  font-size:16px;
    font-weight: 500;
}

.form-floating > label span {
  color: var(--green)
}


.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: #86b7fe;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}


.wpcf7-not-valid-tip {
  color: var(--orange);
  font-size: 14px;
  font-weight: normal;
  display: block;
}