@import url(//fonts.googleapis.com/css?family=Lato:300:400);

.text-footers {
    font-variant: small-caps;
    font-weight: bold;
}

.triangle {
    width: 0;
    height: 0;
    border-width: 25px 20px 0 20px;
    border-color: #FFF transparent transparent transparent;
    border-style: solid;
    margin-left: auto;
    margin-right: auto;
}

.triangle-trans {
    width: 0;
    height: 0;
    border-width: 50px 39px 0 39px;
    border-color: rgb(255 255 255 / 35%) transparent transparent transparent;
    border-style: solid;
    margin-left: auto;
    margin-right: auto;
    margin-top: -40px;
}

.footer-codeside {
  position:relative;
  text-align:center;  
  color:white;
  background: #63992a;
  background-image: linear-gradient(110deg,rgba(255,255,255,0.1) 16%,rgba(255,255,255,0.1) 17%,rgba(255,255,255,0.05) 17%,rgba(255,255,255,0.05) 23%,transparent 8.5%,transparent 78%,rgba(255,255,255,0.05) 78%,rgba(255,255,255,0.05) 84%,rgba(255,255,255,0.1) 84%,rgba(255,255,255,0.1));
}
.logo {
  width:50px;
  fill:white;
  padding-right:15px;
  display:inline-block;
  vertical-align: middle;
}

.footercard-text {
  font-size: 17px;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}

.inner-footer-codeside {
  height:15vh;
  width:100%;
  margin: 20px 0 30px;
  padding: 0;
  font-size: 25px;
}

.flex { 
  displfy-content: center;
  align-items: center;
  text-align: center;
}

.waves {
  position:relative;
  width: 100%;
  height:15vh;
  margin-bottom:-7px; /*Fix for safari gap*/
  min-height:100px;
  max-height:150px;
}

.content {
  position: relative;
  text-align: center;
  background-color: white;
  padding-bottom: 20px;
}

/* Animation */

.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: 20s;
}
@keyframes move-forever {
  0% {
   transform: translate3d(-90px,0,0);
  }
  100% { 
    transform: translate3d(85px,0,0);
  }
}
/*Shrinking for mobile*/
@media (max-width: 768px) {
  .waves {
    height:35px;
    min-height:35px;
  }
  .content {
    height: 10vh;
    margin: 20px 0 0px;
  }
  .footercard-text {
    font-size: 15px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}
.inner-footer-codeside {
    height: 35vh;
    width: 100%;
   margin: 10px 0 100px;
    padding: 0;
    font-size: 25px;
}
}

