.scroll-icon {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 36px;
    height: 60px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

@media (max-width: 480px) {
    .sticky-home {
        width: 40px;
        height: 40px;
        bottom: 18px;
        right: 18px;
    }
}


.sticky-home {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    font-size: 18px;
    z-index: 999;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sticky-home:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
    color: #111;
}

.sticky-home i {
    line-height: 1;
}


.mouse {
    border: 4px solid #475267;
    width: 36px;
    height: 60px;
    border-radius: 25px;
}


.home-link {
    display: inline-block;
    margin-top: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #111;
}

.home-link i {
    margin-right: 6px;
}

.home-link {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
}


.scrolly {
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: #475267;
    animation-name: scroll;
    animation-duration: 1.5s;
    animation-timing-function: cubic-bezier(.5, .5, .70, 1);
    animation-iteration-count: infinite;
}

@keyframes scroll {
    0% {
        opacity: 0;
    }
    10% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(25px);
        opacity: 0;
    }
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
}

.sm-hero {
    height: 100vh;
    width: 100vw;
    background-image: url(Assets/img/steam/hero%20image%20steam.png);
    background-size: cover;
    background-position: center;
}

.ch-hero {
    height: 100vh;
    width: 100vw;
    background-image: url(Assets/img/chumoku/hero.jpg);
    background-size: cover;
    background-position: center;
}

.mlf-hero {
    height: 100vh;
    width: 100vw;
    background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url(Assets/img/mlf/intro.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.br-hero {
    height: 100vh;
    width: 100vw;
    background-image: url(Assets/img/branding/brandinghero.jpg);
    background-size: cover;
    background-position: center;
}

.hero-text {
    color: #475267;
    font-family: "Montserrat", sans-serif;
    font-size: calc(2em + 1vw);
}

.hero-body {
    color: #475267;
    font-family: "Open Sans", sans-serif;
    font-size: calc(0.8em + 1vw);
    width: 70%;
}

.at-a-glance {
    width: 100vw;
    background-color: rgba(38, 173, 228, 0.5);
}

body {
    color: #475267;
}

.container .row .col-md-4 .floating {
    max-height: 60vh;
    max-width: 100%;
    padding: 25px;
    animation-name: floating;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.container {
}

@keyframes floating {
    from {
        transform: translate(0, 0px);
    }
    50% {
        transform: translate(0, -15px);
    }
    to {
        transform: translate(0, -0px);
    }
}

.article-top {
    height: 120px;
    display: flex;
    align-items: center;
    width: 100vw;
    position: fixed;
    z-index: 999;
}

.article-top .fa {
    margin-left: 32px;
    position: fixed;
    color: #475267;
    transition: 0.3s;
    -o-transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    z-index: 999;
}

.article-top .fa:hover {
    font-size: calc(36px + 1vw);
}

.active-article {
    font-size: calc(0.8em + 0.5vw);
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    margin-left: 16px;
    margin-right: 16px;
    line-height: 36px;
}

.inactive-article {
    font-size: calc(0.8em + 0.5vw);
    font-family: 'Open Sans', sans-serif;
    margin-left: 16px;
    margin-right: 16px;
    color: #26ade4;
    line-height: 36px;
}

h1 {
    font-weight: 700;
    font-size: calc(36px + 1vw);
    font-family: 'Montserrat', sans-serif;
}

.whitespace {
    height: 60px;
}

.divider {
    height: 6px;
    background: #26ADE4;
    width: 100px;
    margin-bottom: 48px;
}

img {
    margin: auto;
}

#instafeed img {
    border-radius: 4px;
}

.wrapper #instafeed img {
    margin-bottom: 24px;
    border-radius: 0px;
}

.card {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    border-radius: 4px;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    -moz-transition: 0.5s;
    margin-bottom: 60px;
}

.card:hover {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.card p {
    margin-right: 16px;
    padding-bottom: 24px;
    color: #475267;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: calc(2em + 0.5vw);
    display: block;
    margin-bottom: 48px;
}

.download-btn {
    font-size: calc(18px + 1vw);
    text-transform: uppercase;
    width: 250px;
    height: 48px;
    background: #26ADE4;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 2px;
    color: #ffffff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
}

.download-btn:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    text-decoration: none;
}

.download-btn p {
    margin: 0;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.caption {
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-size: calc(0.1em + 1vw);
    font-style: italic;
}

.tags {
    font-family: 'Open Sans', sans-serif;
    font-size: calc(0.8em + 0.5vw);
    opacity: 0.7;
}

.header {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: calc(2.2em + 0.5vw);
    display: block;
    margin-bottom: 24px;
}

.subheader {
    font-family: 'Montserrat';
    text-transform: uppercase;
    font-size: calc(1.5em + 0.5vw);
    display: block;
    margin-bottom: 12px;
}

.body {
    font-family: 'Open Sans', sans-serif;
    line-height: 36px;
    font-size: calc(0.8em + 0.5vw);
}

.card-header {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 14px;
    display: block;
}

.card-body {
    font-family: 'Open Sans', sans-serif;
    line-height: 32px;
    font-size: 18px;
}

ul {
    font-family: 'Open Sans', sans-serif;
    font-size: calc(18px + 0.5vw);
    line-height: 36px;
}

video {
    display: block;
    margin: 0 auto;
}

a {
    color: #26ADE4;
    font-weight: 700;
    transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
}

a:hover,
a:active,
a:focus {
    color: #26ADE4;
    text-decoration: none;
}


/* Underline From Left */

.hvr-underline-from-left {
    display: inline-block;
    vertical-align: bottom;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    overflow: hidden;
}

.hvr-underline-from-left:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 100%;
    bottom: 0;
    background: #26ADE4;
    height: 4px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-underline-from-left:hover:before,
.hvr-underline-from-left:focus:before,
.hvr-underline-from-left:active:before {
    right: 0;
}

strong {
    font-weight: 700;
}

@media only screen and (max-width: 768px) {
    .floating {
        display: none;
    }
      .article-top .fa {
    background: rgba(255,255,255,0.3);
    border-radius: 999px;
    padding: 10px;
  }
    .self {
        margin-bottom: 60px;
    }
    .container {
        width: 100%;
    }
    .divider {
        width: 100px;
    }
}


/* loading anim */

#loading {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    z-index: 9999;
    position: fixed;
    left: 0px;
    top: 0px;
}

#loading span {
    margin: 2px;
    width: 18px;
    height: 18px;
    background-color: #475267;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

#loading span:nth-child(1) {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

#loading span:nth-child(2) {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
    0%,
    80%,
    100% {
        -webkit-transform: scale(0)
    }
    40% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bouncedelay {
    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);

    }
    40% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}