@media screen and (max-width: 1024px) {


div.slider {
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    height: 670px;
    z-index: 0;
    background-color: #e6ccb5;
}
    div.slider .slider-buttons {
        width: 100%;
        height: 64px;
        position: relative;
        left: 0;
        margin: 0 auto;
        top: 300px;
        z-index: 100;
    }

    div.slider .slider-button {
        position: inline-block;
        width: 32px;
        height: 63px;
        cursor: pointer;
    }

    div.slider .slider-button:hover {
        opacity: .7;
        transition-property: opacity;
        transition-duration: .4s;
    }

    div.slider .slider-left-button {        
        float: left;
        background-image: url(../img/slide-arrow-left.png);        
    }
    
    div.slider .slider-right-button {        
        float: right;
        background-image: url(../img/slide-arrow-right.png);        
    }

    div.slider .slider-item {
        position: relative;
        width: 100%;
        margin: auto;
        top: 40px;
    }

    div.slider .slider-item img {
        width: 100%;
    }

    div.slider .slider-shortcuts {
        position: relative;
        margin: -20px auto;
        padding: 0px;
        width: 500px;
        list-style-type: none;
    }

    div.slider .slider-shortcuts li {
        width: 80px;
        height: 10px;
        background-color: #fff;
        display: inline-block;
        margin: 10px;
    }

        div.slider .slider-shortcuts li.selected {
            background-color: #d23b57;
        }


    div.content {
        background-color: #f1f5f6;
        min-height: 510px;
    }
    div.content .content-body {        
        z-index:200;
        width: 100%;
        min-height: 600px;
        margin: 0 auto;
        left: 0;
        right: 0;
        background-color: #fff;
        border: n auto;
        left: 0;
        right: 0;
        background-color: #fff;
        border: none;
    }

    div.content .content-title {
        font-size: 1.6em;
        font-family: 'Roboto', sans-serif;
        font-weight: 400;
        text-align: left;
        padding: 40px;

    }

        div.content .content-title span:first-child {
            color: #61b522;
        }

        div.content .content-title span:nth-child(2) {
            color: #18113b;
        }

        div.content .content-title hr {
            border-color: #18113b;
            border:2px solid;
            display:inline-block;
            width: 80%;
            padding: 0;
            margin: 0;
        }
        div.content .content-title hr:nth-child(5) {
            border-color: #61b522 !important;
            width: 18%;
            position: relative;
            margin-left: -10px;
        }

    div.content .content-featured ul {
        margin: 0;
        padding: 0;
        list-style-type: none;
    }
        div.content .content-featured ul li {            
            display: inline-block;
            padding: 0;
            margin: 0 20px;
            width: 260px;
            border: 2px solid #d9d9d9;
            box-shadow: 0 2px 8px rgba(0,0,0,.08);
            text-align: left;
        }

        div.content .content-featured ul li:nth-child(3) {
            display: none;
        }
            div.content .content-featured ul li img {
                position: relative;
                width: 263px;
                margin: -2px 0 0 -2px;                
            } 

            div.content .content-featured ul li span {
                display: inline-block;
                color: #61b522;
                font-size: 1.15em;
                font-weight: 400;
                padding: 20px 20px 0 20px;
            }

            div.content .content-featured ul li p {
                width: 100%;
                padding: 0 20px 20px 20px;
                box-sizing: border-box;
                font-weight: 400;
                color: #555;
            } 

            div.content .content-featured .featured-button {
                background-color: #61b522;
                padding: 6px 0;
                color: #fff;
                width: 90px;
                text-align: center;
                font-weight: 400;
                font-size: .8em;
                margin: 20px;
                cursor: pointer;                                             
            }

            div.content .content-featured .featured-button:active {
                opacity: .7;
            }



}