#three-hero {
    opacity: 0;
    width: 100%;
    height: 100%;

}

#hero-wrapper {box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box;
            padding: 15px;
            width: 100%;
            height: 100%;
    overflow: hidden;
        }
#hero-container {
    position: relative;
    min-height: 100% !important;
    width: 100%;
    height: 100%;
    display: block;

    background: url(../images/testimonial-bg-1.jpg) no-repeat center;
    background-size: cover;
}
#hero-container::before {
content: '';
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
background: -moz-linear-gradient(45deg,#22252b 0%,#0A8898 100%);
    background: -webkit-linear-gradient(45deg,#22252b 0%,#0A8898 100%);
    background: linear-gradient(45deg,#22252b 0%,#0A8898 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#9158bd',endColorstr='#77cad5',GradientType=1);
opacity: 0.75;
}

 

#hero-wrapper.technical-support {

    height: 400px;

}

.hero-button {
    overflow: hidden;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-left: 25px;
    display: inline-block;

}
.hero-button a {
    position: relative;
    border: 1px solid white;
    color: white;
    padding: 15px 20px;
    z-index: 10;

}

.hero-button a:before {
    content: '';
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.5);
    transition: .1s linear;
    -moz-transition: .1s linear;
    -webkit-transition: .1s linear;
    -webkit-transition: .1s linear;
    	-webkit-transform: translateX(-100%);
	-moz-transform: translateX(-100%);
	transform: translateX(-100%);

}

.hero-button:hover a:before {

    	-webkit-transform: translateX(-0%);
	-moz-transform: translateX(-0%);
	transform: translateX(-0%);

}

.hero-button a:hover {
    color: cadetblue;
    border: 2px solid white;

}
.main-logo-centred {

    position: relative;

}

#scroll-guide {

    position: absolute;
    bottom: -25px;
    width: 50px;
    height: 50px;
    background: #ffffff;
    display: block;
    left: 50%;
    margin-left: -25px;
    border-radius: 100%;





        }


#hero-content-container2 {

    opacity: 0;
  position: absolute;
    top: 50%;
    left: 0%;
    margin-top: -25px;
}

#hero-content-container {

    width: 60%;
    position: absolute;
        top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    padding: 50px;

}

.hero-content-background {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #48d1cc29;
    
}

.hero-logo {
    
    opacity: 1;
    
}

.hero-line-1 {
    
    position: absolute;
    top: 0px;
    left: 0px;
    background: white;
    width: 0%;
    height: 2px;
}
.hero-line-2 {
    
    position: absolute;
    top: 0px;
    right: 0px;
    background: white;
    width: 2px;
    height: 0%;
}
.hero-line-3 {
    
    position: absolute;
    bottom: 0px;
    left: 0px;
    background: white;
    width: 2px;
    height: 0%;
}
.hero-line-4 {
    
    position: absolute;
    bottom: 0px;
    right: 0px;
    background: white;
    width: 0%;
    height: 2px;
}

.full-width {width: 100%}

.full-heigh {height: 100%}

.hero-content {

        width: 100%;
    max-width: 1200px;
    margin: auto;
    height: 100px;
        top: 50%;
    transform: translateY(-50%);
    position: relative;
    -webkit-transform: translateY(-50%);

}
.hr-anim-arrow {
    width: 1px;
    height: 10px;
    background: transparent;
    position: absolute;
    top: 25px;
    left: 50%;




}

.hr-anim-arrow:before {
        content: '';
    display: block;
    background: #2A9E95;
    width: 10px;
    height: 2px;
    transform: rotate(45deg);
    margin-left: -8px;

}

.hr-anim-arrow:after {
    content: '';
    display: block;
    background: #2A9E95;
    width: 10px;
    height: 2px;
    left: -1px;
    top: 0px;
    position: absolute;
    transform: rotate(-45deg);

}

.animele{
  animation: animationFrames ease 1s;
  animation-iteration-count: infinite;
    transform: rotate(45deg);
  transform-origin: 50% 50%;
  animation-fill-mode:forwards; /*when the spec is finished*/
  -webkit-animation: animationFrames ease 1s;
  -webkit-animation-iteration-count: infinite;
  -webkit-transform-origin: 50% 50%;
  -webkit-animation-fill-mode:forwards; /*Chrome 16+, Safari 4+*/
  -moz-animation: animationFrames ease 1s;
  -moz-animation-iteration-count: infinite;
  -moz-transform-origin: 50% 50%;
  -moz-animation-fill-mode:forwards; /*FF 5+*/
  -o-animation: animationFrames ease 1s;
  -o-animation-iteration-count: infinite;
  -o-transform-origin: 50% 50%;
  -o-animation-fill-mode:forwards; /*Not implemented yet*/
  -ms-animation: animationFrames ease 1s;
  -ms-animation-iteration-count: infinite;
  -ms-transform-origin: 50% 50%;
  -ms-animation-fill-mode:forwards; /*IE 10+*/
}

@keyframes animationFrames{
  0% {
    opacity:0;
    transform:  translate(0px,-25px)  ;
  }

  100% {
    opacity:1;
    transform:  translate(0px,0px)  ;
  }
}

@-moz-keyframes animationFrames{
  0% {
    opacity:0;
    -moz-transform:  translate(0px,-25px)  ;
  }
  100% {
    opacity:1;
    -moz-transform:  translate(0px,0px)  ;
  }
}

@-webkit-keyframes animationFrames {
  0% {
    opacity:0;
    -webkit-transform:  translate(0px,-25px)  ;
  }
  100% {
    opacity:1;
    -webkit-transform:  translate(0px,0px)  ;
  }
}

@-o-keyframes animationFrames {
  0% {
    opacity:0;
    -o-transform:  translate(0px,-25px)  ;
  }
  100% {
    opacity:1;
    -o-transform:  translate(0px,0px)  ;
  }
}

@-ms-keyframes animationFrames {
  0% {
    opacity:0;
    -ms-transform:  translate(0px,-25px)  ;
  }
  100% {
    opacity:1;
    -ms-transform:  translate(0px,0px)  ;
  }
}


.hero-content-logo {

  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  /*
  This doesn't work
  margin-left: -25%;
  margin-top: -25%;
  */

  width: 100%;
    max-width: 900px;
  height: 150px;

  padding: 20px;

  color: white;

 /* box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);*/



}

.hero-logo-block0 {

  position: absolute;
  width: 100%;
  height: 100%;
  /* left: -95px; */
  top: 0px;
  left: 0px;
  /* margin-left: -75px; */
  background: url(../images/m-logo-large.png) no-repeat center;
  /* background-size: contain; */


}
.hero-logo-block0-1 {

position: absolute;
left: 0px;
top: 0px;


}

.hero-logo-block1 {
position: absolute;

background: darkturquoise;
height: 100px;
width: 5px;
top: 25px;
left: 175px;




}

.hero-logo-block2 {

  position: absolute;
    top: -18px;
    left: 25px;
    width: 500px;
    font-size: 3rem;
    color: white;
    font-weight: 300;
    text-shadow: 0px 0px 9px #2d9e94;




}

.hero-logo-block3 {

  position: absolute;
  top: 45px;
  width: 500px;
  left: 25px;
  font-size: 3rem;
  color: white;
  font-weight: 300;




}
.letter-fade {

  opacity: 0;

}

@media screen and (max-width: 800px){
    .hero-logo-block0 {

      border-bottom: 3px solid red;
      top: -80px;

    }

    .hlb0 {

      left: 50px;

    }
    

    
}

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

    #hero-content-container {
    width: 100%;
}
    
}
