body {
    background-color: #fff;
    margin: 0px;
    font-family: 'Montserrat', sans-serif;
    background-color: #3f3f3f;
    color: #fff;
}

ul li {
    margin-bottom: 10px;
}

/* unvisited link */
.standardLink:link {
    color: white;
    cursor: pointer;
}

/* visited link */
.standardLink:visited {
    color: white;
    cursor: pointer;
}

/* mouse over link */
.standardLink:hover {
    color: gainsboro;
    cursor: pointer;
    text-decoration: underline;
}

/* selected link */
.standardLink:active {
    color: white;
    cursor: pointer;
}

.logo {
    height: 63px;
    vertical-align: middle;
    margin: 0 25px;
}

.header {
    height:80px;
    line-height: 80px;
    width: 100%;
    background: linear-gradient(to top, #e4e4e4
        , #FFF);
}

.footer {
    text-align: center;
    padding: 65px 30px;
}

.clear {
    clear: both;
}

.button {
  background-color: #FFF;
  border: none;
  color: #000;
  padding: 15px 30px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

.social-icon {
    height: 20px;
    margin: 0 10px;
}

.social-icon-large {
    height: 40px;
    margin: 0 15px;
}

.show-mobile-menu {
    display: block !important;
    animation: mobile-menu-anim 0.4s ease-in forwards;
    transform-origin: top;
}

@keyframes mobile-menu-anim {
    0% {height: 0px;}
    100% {height: 300px;}
}

.show-overlay {
    display: block !important;
}

.show-overlay-html-box {
    display: block !important;
}

.show-hide-menu-icon {
    display: none;
    cursor: pointer;
}

#menu {
    display: none;
    //padding: 20px;
    //height:300px;
    text-align: center;
}

#menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

#menu li {
    list-style-type: none;
    //padding: 35px;
    cursor: pointer;
}

.show-mobile-menu li:nth-of-type(1){
    //display: none;
    opacity: 0;
    animation: mobile-menu-items 0.4s forwards 0.1s ease-in-out;
}
.show-mobile-menu li:nth-of-type(2){
    //display: none;
    opacity: 0;
    animation: mobile-menu-items 0.4s forwards 0.3s ease-in-out;
}
.show-mobile-menu li:nth-of-type(3){
    //display: none;
    opacity: 0;
    animation: mobile-menu-items 0.4s forwards 0.5s ease-in-out;
}

@keyframes mobile-menu-items {
    0% {
        display: none;
        opacity: 0;
        transform: translateY(-30%);
    }
    100% {
        display: list-item;
        opacity: 1;
        transform: translateY(0%);
    }
}

#menu li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.5em;
  padding: 35px;
  display: block;
}

#menu li:hover {
    background-color: #898989;
    color: #fff;
}

.header ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.header li {
  float: right;
}

.header li a {
  display: block;
  color: #3f3f3f;
  text-align: center;
  padding: 0 50px;
  text-decoration: none;
    font-size: 1.3em;
}

.header li a:hover {
    background-color: #898989;
    color: #fff;
}

.content {
    //margin-top: 124px;
}

.page-width {
    /*1170px*/
    max-width: 1170px;
    padding-left: 25px !important;
    padding-right: 25px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.color-cycle {
    /* Blue Pink
    background: linear-gradient(to left, #00c9ff 0%, #00c9ff 5%, #FF00DB 32%, #00c9ff 66%, #00c9ff 71%, #FF00DB 100%);
    */
    /* Blue Yellow
    background: linear-gradient(to left, #00c9ff 0%, #00c9ff 5%, #ffe200 32%, #00c9ff 66%, #00c9ff 71%, #ffe200 100%);
    */
    background: linear-gradient(to left, #00c9ff 0%, #00c9ff 5%, #FF00DB 32%, #00c9ff 66%, #00c9ff 71%, #FF00DB 100%);
    background-size: 300%;

    -webkit-animation: ColorStripe 10s linear infinite;
    -moz-animation: ColorStripe 10s linear infinite;
    animation: ColorStripe 10s linear infinite;
}

.text-color-cycle {
    background: linear-gradient(to left, #00c9ff 0%, #00c9ff 5%, #FF00DB 32%, #00c9ff 66%, #00c9ff 71%, #FF00DB 100%);
    background-size: 300%;

    -webkit-animation: ColorStripe 10s linear infinite;
    -moz-animation: ColorStripe 10s linear infinite;
    animation: ColorStripe 10s linear infinite;
    
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stripe {
    height: 4px;
    width: 100%;
}

@-webkit-keyframes ColorStripe {
    0%{background-position:100% 0%}
    100%{background-position:0% 0%}
}
@-moz-keyframes ColorStripe {
    0%{background-position:100% 0%}
    100%{background-position:0% 0%}
}
@keyframes ColorStripe {
    0%{background-position:100% 0%}
    100%{background-position:0% 0%}
}

@media screen and (max-width:730px) {
    .show-hide-nav {
        display: none;
    }
    .show-hide-menu-icon {
        display: inline-block;
        height: 30px;
        float: right;
        padding: 24px;
    }
}

@media screen and (min-width:730px) {
    .show-mobile-menu {
        display: none !important;
    }
}