@media screen and (max-width: 1200px) {
    main .content-container .content, main .content-container aside {
        float: none;
        width: 100%;
    }
}
@media screen and (max-width: 850px) {

    /* BASIC */
    header .center-container .logo {
        float: none;
        margin: 0 auto;
        max-width: 70%;
        text-align: center;
    }
        header .center-container .logo a {
            padding: 17.5px 0;
        }
        header .center-container .logo img {
            width: auto;
            height: 35px;
        }
    header .center-container .nav-icon {
        position: fixed;
        right: 20px;
        top: 20px;
        color: #fff;
        display: block;
        font-size: 30px;
        line-height: 30px;
    }
    header .center-container nav {
        position: fixed;
        height: 100%;
        width: 80%;
        background: #444;
        left: 110%;
        top: 0;
        bottom: 0;
        margin-top: 66px;
        z-index: -1;
        box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.5);
        overflow-y: auto;
        overflow-x: hidden;

        -webkit-transition: all 0.15s linear;
        -o-transition: all 0.15s linear;
        -moz-transition: all 0.15s linear;
        -ms-transition: all 0.15s linear;
        -kthtml-transition: all 0.15s linear;
        transition: all 0.15s linear;
    }
    header .center-container nav.show {
        left: 20%;

        -webkit-transition: all 0.15s linear;
        -o-transition: all 0.15s linear;
        -moz-transition: all 0.15s linear;
        -ms-transition: all 0.15s linear;
        -kthtml-transition: all 0.15s linear;
        transition: all 0.15s linear;
    }
        header .center-container nav ul li {
            display: block;
        }
            header .center-container nav ul li a {
                border-top: 0;
                padding: 20px 25px;
                font-size: 25px;
                width: 100%;
            }
            header .center-container nav ul li a:hover, header .center-container nav ul li a.active {
                background: #555;
                border-top: 0;
            }

    main .copyright .copyright-container .left, main .copyright .copyright-container .right {
        float: none;
        width: 100%;
        text-align: center;
    }
    main .copyright .copyright-container .right {
        padding-top: 15px;
    }

    /* HOMEPAGE */
    main .header-banner .header-image img {
        height: auto !important;
        max-width: 200% !important;
        width: auto !important;
        margin: 0 auto !important;
    }
    main .header-banner .header-text-container .header-text-holder .header-text h2 {
        font-size: 25px;
        padding: 0 0 5px 0;
        line-height: 25px;
    }
    main .header-banner .header-text-container .header-text-holder .header-text h3 {
        font-size: 20px;
        line-height: 20px;
    }
    main .header-banner .header-text-container .header-text-holder .header-text a.button {
        font-size: 20px;
    }

    main .content-container .content .news-container .news-main, main .content-container .content .news-container .news-smaller {
        float: none;
        width: 100%;
    }
    main .content-container .content .news-container article.news-item {
        width: 100%;
        margin: 5px 0;
    }
    main .content-container .content article.news-item .news-text-container .news-text h3 {
        font-size: 25px;
    }
    main .content-container .content .news-smaller article.news-item .news-text-container .news-text h3 {
        font-size: 20px;
    }
    main .content-container .content article.news-item .news-image img {
        -webkit-filter: none;
        filter: none;
    }
}