@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap);

body {
    font-family: 'Roboto',sans-serif;
    font-size: 15px;
    line-height: 23px;
    background-color: #0f5929;
    color: #fff;
    /*background: url(rtk-bg.png) no-repeat;*/
    /*background: #1C4920 url(trash-unsplash.png) no-repeat;*/
    /*background-size: cover; #0f5929 #39b54a #4c7934*/
    /*background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;*/
    height: 100vh;
    overflow: hidden;
}

    body:before {
        content: ' ';
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        opacity: 0.4;
        background-image: url('rtk-bg.png');
        background-repeat: no-repeat;
        background-position: bottom;
        background-size: cover;
    }

.center-center {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%)
}

section .icon-holder {
    /*height: 320px;*/
    width: 300px;
    /*border-radius: 120px;*/
    /*background-color: #fff;*/
    margin: 0 auto;
    position: relative;
    margin-bottom: 0px;
    text-align: center;
    /*animation: rotation 8s infinite linear;*/
}

    section .icon-holder img {
        width: 80%;
    }

    section .icon-holder i {
        color: #0f5929;
        font-size: 116px
    }

section .controller {
    text-align: center
}

    section .controller h1 {
        font-size: 32px;
        font-weight: 500;
        margin: 0 0 8px 0;
        padding-top: 0px;
    }



        section .controller h1:after {
            content: '.';
            animation: dots 1s steps(5, end) infinite;
        }



    section .controller h2 {
        font-size: 24px;
        font-weight: 500;
        line-height: normal;
    }

    section .controller ul {
        margin: 0;
        padding: 16px 0 0 0
    }

        section .controller ul li {
            display: inline-block;
            text-transform: uppercase;
            font-size: 14px
        }

            section .controller ul li:first-child {
                margin-right: 16px
            }

            section .controller ul li a {
                color: #fff;
                text-decoration: none;
                transition: .3s all ease-in-out
            }

                section .controller ul li a:hover {
                    color: #ddd
                }

            section .controller ul li i {
                margin: 0 4px 0 0
            }




@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}



@keyframes dots {
    0%, 20% {
        color: rgba(0,0,0,0);
        text-shadow: .25em 0 0 rgba(0,0,0,0), .5em 0 0 rgba(0,0,0,0);
    }

    40% {
        color: white;
        text-shadow: .25em 0 0 rgba(0,0,0,0), .5em 0 0 rgba(0,0,0,0);
    }

    60% {
        text-shadow: .25em 0 0 white, .5em 0 0 rgba(0,0,0,0);
    }

    80%, 100% {
        text-shadow: .25em 0 0 white, .5em 0 0 white;
    }
}


@media only screen and (max-width: 1366px) {

    section .icon-holder img {
        width: 70%;
    }
}


@media only screen and (min-width: 1440px) {

    .center-center {
        top: 46%;
    }
}