.container {
    width: 100%;
    height: 700vh;
    background: #232323;
    color: #BBB3B3;
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -ms-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}

.container.light {
    background: #ffffff;
}

a {
    font-size: 12px;
    text-decoration: none;
    color: #BBB3B3;
    text-transform: uppercase;
}

a:hover {
    color: #cfc7c7;
}

.u-danger {
    border-bottom: 4px solid #AA4C4C;
}

.inline-flex {
    display: inline-flex;
}

#animate3 {
    position: relative;
    width: fit-content;
    margin-right: 15px;
}

#animate3::before {
    content: "";
    width: 0;
    height: 4px;
    background: #AA4C4C;
    position: absolute;
    bottom: 0;
}

.add-border {
    width: 0;
    height: 4px;
    background: #AA4C4C;
    position: absolute;
    bottom: 0;  
}


#new-header {
    position: fixed;
    font-size: 10px;
    width: 100%;
    height: 40px;
    display: inline-flex;
    align-items: center;
    padding: 20px;
    justify-content: space-between;
    opacity: 0;
    transition: opacity 1s linear;
    cursor: pointer;
    background: #232323;
}

#new-header.white {
    background: white;
}

#new-header.white a:hover{
    color: #356E67;
}

#new-header.white #main-btn:hover {
    border: 1px solid #356E67;
    color: white;
    background: #356E67;
    transition: all .5s linear;
}

#new-header:hover {
    opacity: 100;
    transition: opacity 1s linear;
}

#new-header.visible {
    opacity: 100;
    transition: opacity 1s linear;
}

#new-header .header-contents {
    margin-right: 30px;
}

#new-header ul {
    list-style-type: none;
}

#new-header ul li {
    display: inline;
    margin-left: 20px;
}

#new-header a + a {
    margin-left: 20px;
}

#new-header #main-btn {
    border-radius: 5px;
    border: 1px solid #BBB3B3;
    padding: 10px;
    color: #BBB3B3;
    transition: all .5s linear;
}

#new-header #main-btn:hover {
    border: 1px solid #cfc7c7;
    color: #cfc7c7;
    background: #373737;
}

.frames {
    scroll-snap-type: mandatory;
    scroll-snap-points-y: repeat(3rem);
    scroll-snap-type: y mandatory;
}

.frame {
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-snap-align: center;
}

.frame .frame-content {
    width: 100%;
    opacity: 0;
    text-align: center;
    font-size: 48px;
    font-weight: bold;
    -webkit-transition: opacity 0.5s ease-in-out;
    -moz-transition: opacity 0.5s ease-in-out;
    -ms-transition: opacity 0.5s ease-in-out;
    -o-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;
}

.frame .frame-content.visible {
    opacity: 1;
}

.num-infected {
    color: #AA4C4C;
    font-size: 88px;
    margin-bottom: 10px;
    font-family: 'Uni Sans';
}

#arrows {
    position: absolute;
    bottom: 60px;
    opacity: 0;
    -webkit-transition: opacity 1.5s ease-in-out;
    -moz-transition: opacity 1.5s ease-in-out;
    -ms-transition: opacity 1.5s ease-in-out;
    -o-transition: opacity 1.5s ease-in-out;
    transition: opacity 1.5s ease-in-out;
    cursor: pointer;
}

#arrows.visible {
    opacity: 0.7;
}

#arrows.visible:hover {
    opacity: 1;
}

.frame-image {
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    /*position: fixed;*/
    top: 0;
    left: 0;
}

.recovery-center {
    background-image: url('/images/recovery-center.jpg');
}

.man-with-mask {
    background-image: url('/images/man-with-mask.jpeg');
}

.measuring-temperature {
    background-image: url('/images/measuring-temperature.jpg');
}

#counter-container {
    display: flex;
    width: fit-content;
    margin: 0 auto;
    align-items: center;
}

#counter, #counter-seconds {
    display: inline-block;
}

#counter {
    display: inline;
    font-family: 'Uni Sans';
    -webkit-transition: font-size .5s ease-in-out;
    -moz-transition: font-size .5s ease-in-out;
    -ms-transition: font-size .5s ease-in-out;
    -o-transition: font-size .5s ease-in-out;
    transition: font-size .5s ease-in-out;
}

#counter.c-danger {
    font-size: 84px;
    transition: font-size .5s ease-in-out;
}

#counter-seconds {
    overflow: hidden;
    font-size: 64px;
    width: 0;
    margin-left: 20px;
    transition: width 1s ease-in-out;
}

#counter-seconds.full-width {
    width: 100%;
    transition: width 1s ease-in-out;
}


.counter-additional {
    opacity: 0;
    -webkit-transition: opacity 2s ease-in-out;
    -moz-transition: opacity 2s ease-in-out;
    -ms-transition: opacity 2s ease-in-out;
    -o-transition: opacity 2s ease-in-out;
    transition: opacity 2s ease-in-out;
}

.counter-additional.visible {
    opacity: 1;
}

.final-frame,
.final-frame a {
    color: #356E67;
}

.final-frame .make-a-mask {
    font-size: 25px;
    text-transform: inherit;
}

.final-frame .hashtag {
    font-size: 16px;
    margin-bottom: 0;
}

.mask-example {
    width: 450px;
    height: 300px;
    background: #dddddd;
    display: flex;
    align-items: center;
    justify-content: center;
}

.socials .social-icons {
    margin: 10px auto 0 auto;
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.socials .social-icons i {
    font-size: 20px;
}

@media only screen and (max-width: 1200px) {
    .mask-example {
        width: 400px;
    }


}

@media only screen and (max-width: 992px) {
    .navbar-hamburger {
        display: block;
        height: 40px;
        width: 40px;
        border: none;
        background: none;
        cursor: pointer;
        margin-left: auto;
        margin-right: 44px;    
    }

    .navbar-hamburger::before {
        content: "\f0c9";
        color: #cfc7c7;
        font-weight: 600;
        font-size: 36px;
        font-family: "Font Awesome 5 Free";
    }

    .header-contents {
        position: relative;
        width: 100%;
        text-align: right;
    }

    .header-contents ul {
        display: block;
        position: absolute;
        width: 100%;
        background: #232323;
        right: -10px;
        overflow: hidden;
        max-height: 0;
        transition: max-height .5s ease-in-out;

    }

    .header-contents ul.active {
        max-height: 500px;
        transition: max-height .5s ease-in-out;
    }

    #new-header.white .navbar-hamburger::before {
        color: #147066;
    }

    #new-header.white .header-contents ul {
        background: white;
    }

    #new-header ul li {
        display: block;
        padding: 20px;
    }

    .num-infected {
        font-size: 44px;
    }

    .frame .frame-content {
        font-size: 36px;
    }   

    #counter.c-danger {
        font-size: 36px;
    }

    #counter-seconds {
        font-size: 36px;
    }

    .inline-flex {
        display: block;
    }

    #animate3 {
        margin: 0 auto;
        text-align: center;
    }

    .final-frame {
        background-color: #FFF;
    }

    h2.opensans {
        font-size: 25px;
    }

    .mask-example {
        margin: 0 auto;
    }
}