/*
* {
    border: 1px solid black;
}
*/

:root {
    --logo-color: #005230;
    --background-main-color: #ecf0f1;
}

a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, hr, html, i, iframe, img, ins, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}

header {
    position: fixed;
    background-color: white;
    width: 100%;
    height: 5em;

    display: flex;
    justify-content: start;
    align-items: center;
    z-index: 3;
}

#header-logo {
    flex: none;
    height: 3em;
    padding: 0.2em 1em 0 1em;
}

#header-nav {
    flex: auto;

    display: flex;
    color: var(--logo-color);
    font-weight: bold;
    justify-content: start;
}

#header-nav a {
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: 8em;
    text-align: center;
    font-size: 1.2em;
}

@media (max-width: 575px) {
    #header-nav {
        content: "";
    }
    #header-nav {
        display: none;
    }
}

/*
footer {
    background-color: rgba(17,116,25);
}
*/

#footer-logo {
    vertical-align: middle;
    height: 1.2em;
    padding-left: 0.2em;
}

.smooth-intro {
    animation: 2s bigger forwards;
    animation-timing-function: ease-in-out;
}

@keyframes bigger{
    0% { font-size: 5vw; background-color: var(--logo-color);}
    100% { font-size: 10vw; background-color: var(--background-main-color);}
}

.powerful-text {
    min-height: 110vh;
    text-align: center;
    display:flex;
    justify-content: center;
    align-items: center;
    font-size: 10vw;
    color: var(--logo-color);
    text-shadow: 0.02em 0.02em 0 silver;
    background-color: #ecf0f1;
}

.powerful-image {
    min-height: 110vh;
    background-color: #ecf0f1;
}

#razor-blade-custom-container {
    text-align: center;
}

#razor-blade-custom {
    position: relative;
    display: inline-block;
    margin: auto 0;
}
#razor-blade-custom-img {
   width: 80vw;
}

#razor-blade-custom-text {
  position: absolute;
  text-align: center;
  font-size: 8vw;
  width: 100%;
  height: 0%;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 28vw;
  right: 0;
  z-index: 1;
}

#razor-blade-custom-text:after {
  z-index: 1;
  color: rgba(0,0,0,0.2);
  font-weight: lighter;
  content: "Hi-Far";
  animation: 5s customrazor;
  animation-timing-function: cubic-bezier(0, 0.5, 1, 0.5);
  animation-iteration-count: infinite;
}

@keyframes customrazor {
    0% { content: "Hi-Far";}
    20% { content: "Hi-Far";}
    22.5% { color: rgba(0,0,0,0); }
    25% { content: "Hi"; color: rgba(0,0,0,0.2);}
    45% { content: "Hi";}
    47.5% { color: rgba(0,0,0,0);}
    50% { content: "Hi-Far"; color: rgba(0,0,0,0.2);}
    70% { content: "Hi-Far"; }
    72.5% { color: rgba(0,0,0,0);}
    75% { content: "Hi"; color: rgba(0,0,0,0.2);}
    95% { content: "Hi";}
    97.5% { color: rgba(0,0,0,0);}
    100% { content: "Hi-Far";}
}

@keyframes customrazor2 {
    0% { content: "H|";}
    10% { content: "Hi|";}
    20% { content: "Hi";}
    30% { content: "Hi|";}
    40% { content: "Hi-|";}
    50% { content: "Hi-F|";}
    60% { content: "Hi-F"; color: rgba(0,0,0,0.2);}
    70% { content: "Hi-Fa|"; }
    90% { content: "Hi-Far"; }
    100% { content: "Hi-Far";}
}
