
@import url(//fonts.googleapis.com/css?family=Lato:300:400);

.background {
  position: fixed;
  top:0px;
  height: 100vh;
  width:  100vw;
  background : #4b4b4b; 
}

body {
  margin:0;
}

.ground-text{
  position: fixed;
  height:0;
  top: 90vh;
}

.ground-text a{
  font-family: 'Lato', sans-serif;
  letter-spacing: 1px;
  font-size:20px;
  font-weight: bold;

  color: #8f8f8f;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

h1 {
  font-family: 'Lato', sans-serif;
  font-weight:300;
  letter-spacing: 2px;
  font-size:48px;
}
p {
  font-family: 'Lato', sans-serif;
  letter-spacing: 1px;
  font-size:14px;
  color: #333333;
}

.header {
  position:relative;
  text-align:center;
  background: linear-gradient(0deg, rgba(5,5,10,1) 0%, rgba(65,65,65,1) 100%);
  color:rgb(55,55,55);
}

.inner-header {
  height:65vh;
  width:100%;
  margin: 0;
  padding: 0;
}

.flex {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.waves {
  position:relative;
  width: 100%;
  height:15vh;
  margin-bottom:-7px;
  min-height:100px;
  max-height:150px;
}


.content {
  position:relative;
  /*height:20vh;*/
  text-align:center;
}


.parallax > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5)     infinite;
}
.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 16s;
}
.parallax > use:nth-child(5) {
  animation-delay: -6s;
  animation-duration: 19s;
}
.parallax > use:nth-child(6) {
  animation-delay: -7s;
  animation-duration: 30s;
}

@keyframes move-forever {
  0% {
   transform: translate3d(-90px,0,0);
  }
  100% { 
    transform: translate3d(85px,0,0);
  }
}

@media (max-width: 768px) {
  .waves {
    height:40px;
    min-height:40px;
  }
  .content {
    height:30vh;
  }
  h1 {
    font-size:24px;
  }
} 


body{
  display:flex;
  margin:0;
  padding:0;
  min-height: 100vh;
  /*background: #444;*/
  justify-content: center;
  align-items: center;
  font-family: arial;
}

.container{
  width: 90vw;

  display: flex;
  justify-content: space-between;
  flex-wrap:wrap;
  
}

.container .card{
  position: relative;
}

.container .card .face{
  width:300px;
  height: 200px;
  transition:.4s;
  
}

.container .card .face.face1{
  position: relative;
  background: linear-gradient(0deg, #333 0%, #2c2c2c 100%);
  display: flex;
  justify-content: center;
  align-content:center;
  align-items: center;
  z-index: 1;
  transform: translateY(100px);
}

.container .card:hover .face.face1{
  transform: translateY(0);
  box-shadow:
    inset 0 0 60px whitesmoke,
    inset 20px 0 80px rgb(255, 0, 0),
    inset -20px 0 80px rgb(255, 255, 0),
    inset 20px 0 300px rgb(255, 0, 0),
    inset -20px 0 300px rgb(255, 255, 0),
    0 0 50px #fff,
    -10px 0 80px rgb(255, 0, 0),
    10px 0 80px rgb(255, 255, 0); 
   
}


.container .card .face.face1 .content{
  opacity: .2;
  transition:  0.5s;
  text-align: center;
  
}

.container .card:hover .face.face1 .content{
  opacity: 1;
 
}

.container .card .face.face1 .content i{
  font-size: 3em;
  color: white;
  display: inline-block;
   
}

.container .card .face.face1 .content h3{
  font-size: 1em;
  color: white;
  text-align: center;
  
}

.container .card .face.face1 .content a{
   transition: .5s;
}

.container .card .face.face2{
   position: relative;
   background: linear-gradient(0deg, rgba(50,50,50,0) 0%, 	rgba(51, 51, 51, 0) 75%);;
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 20px;
  box-sizing: border-box;
  box-shadow: 0 20px 50px rgba(0,0,0,.8);
  transform: translateY(-100px);
  backdrop-filter: blur(10px);
}

.container .card:hover .face.face2{
    transform: translateY(0);


}

.container .card .face.face2 .content p, a{
  font-size: 10pt;
  margin: 0 ;
  padding: 0;
  color:#ccc;
}

.container .card .face.face2 .content a{
  text-decoration:none;
  color: #ccc;
  box-sizing: border-box;
  outline : 1px dashed #ccc;
  padding: 10px;
  margin: 15px 0 0;
  display: inline-block;
}

.container .card .face.face2 .content a:hover{
  color: rgb(255, 255, 255); 
  box-shadow: inset 0px 0px 10px rgba(0,0,0,0.5);
}
.scroll {

  position: absolute; 
}

.gradient {
  width : 100vw;
  height : 50vh;
  background:  linear-gradient(0deg, rgb(20, 20, 20) 0%, rgba(50,50,50,0) 75%);
  top : 50%;
  position: fixed;
  pointer-events: none;
}