.Static 
{
}
.Static .title {
    width: 100%;
    height: 3em;
    text-align: center;

}
.Static .title span {
    font-size: 0.6em;
}
.Static .hexagons {
    /* transform: translate(-10em, 10.5em) rotate(30deg); */
    -webkit-transform:translate(-13.5em,5.5em) rotate(49deg);
    transform:translate(-13.5em,5.5em) rotate(49deg);
    position: fixed;
    bottom: 0;
    left: 0;
}
.Static .hex {
    fill: #646464;
    stroke: #646464;
    stroke-width: 2px;
    stroke-miterlimit: 4px;
    stroke-opacity: 1;
    stroke-dasharray: none;
    -webkit-animation-name: staticgradcolor;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-duration: 30s;
    -webkit-animation-direction: alternate;

    animation-name: staticgradcolor;
    animation-iteration-count: infinite;
    animation-duration: 15s;
    animation-direction: alternate;
    opacity: 0.25;
}
@-webkit-keyframes staticgradcolor {
  from {
    fill: rgb(137,229,213);
  }
  33% {
    fill: rgb(137,229,170);
  }
  66% {
    fill: rgb(152,229,137);
  }
  to {
    fill: rgb(191,229,137);
 }
}

@keyframes staticgradcolor {
  from {
    fill: rgb(137,229,213);
  }
  33% {
    fill: rgb(137,229,170);
  }
  66% {
    fill: rgb(152,229,137);
  }
  to {
    fill: rgb(191,229,137);
 }
}
.Static .subscribe-form p {
    margin: 0 0.5em;
}
.Static input {
    padding: 0.8em;
}
.Static .subscribe-btn {
    padding: 1em;
    border: 1px solid darkgreen;
    border-radius: 5px;
    margin: 1em 0;
    color: #333;
    cursor: pointer;
    transition: background 500ms;
    /* background: #EAEAEA; */
    background: #F0F0F0;
    font-weight: bolder;
    font-size: 0.9em;
}
.Static .subscribe-btn:hover {
    transition: background 500ms;
    background: lightgreen;
}

.Static .content-text {
    width: 100%;
    padding-left: 50%;
    margin-left: -10.5em;
    text-align: center;
}
.Static .more-text {
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 0;
    margin-top: 1em;
    text-decoration: underline;
    position: absolute;
    left: 0;
}
.Static .more {
    margin-top: 3em;
}
.Static .normal {
}
.Static .text-list {
    width: 21em;
    height: 7em;
}
.Static .text-item {
    list-style-type: none;
    margin-bottom: 0.66em;
}
.Static .footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4em;
    background: #333;
    color: white;
    text-align: center;
}
.Static .footer .social {
    color: #EAEAEA;
    margin: 0.5em;
    font-size: 1.2em;
    display: inline-block;
}
.Static .footer .social:hover {
    color: white;
}
.center {
    width: 100%;
    text-align: center;
    margin-top: 5em;
}
