@import url('https://fonts.googleapis.com/css?family=Rubik:300,400,500,700');
body{
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    color: #353535;
}
.btn-blue{
    background: #0079c5;
    border:1px #5aa8d9 solid;
    display: inline-block;
    padding: 4px 8px;
    color: #fff;
    font-size: 15px;
    border-radius: 0px;
    &:hover{
        color: #fff;
    }
}
#header{
    box-shadow: none;
    display: flex;
    justify-content: space-between;
    position: fixed;
    top: 0;
    width: 100%;
    padding: 40px 15px;
    ul{
        text-align: right;
        li{
            display: inline-block;
            margin: 0 15px;
            a{
                color: #fff;
            }
        }
    } 
}
 #banner{
    background: url(http://localhost/rockeditor/frontend/assets/images/banner.jpg) no-repeat 0 0;
    background-size: cover;
    min-height: 580px;
    margin-bottom: 100px;
    h1{
        text-align: center;
        color: #fff;
        flex-direction: column;
        display: flex;
        margin: 0px;
        height: 60vh;
        font-size: 55px;
        font-weight: 300;
        text-transform: uppercase;
        justify-content: flex-end;
    }
}
.containers{
    display: flex;
    justify-content: space-between;
    width: 1280px;
    margin: auto;
    #sidebar{
        flex-basis: 21%;
        padding-right: 3%;
        box-sizing: border-box;
        .search{
            background: #f2f2f2;
            display: flex;
            justify-content: space-between;
            padding: 5px 10px;
            margin-bottom: 30px;
            input[type="text"]{
                background: #f2f2f2;
                font-size: 10px;
                padding: 5px;
                color: #979188;
                border:0px;
                margin: 0;
            }
            input[type="submit"]{
                background: url(http://localhost/rockeditor/frontend/assets/images/search-icon.png) no-repeat 0 0;
                height: 19px;
                width: 19px;
                border: 0px;
                cursor: pointer;
            }
        }
        h3{
            color: #686868;
            font-size: 21px;
            font-weight: 300;
            margin-top: 0px;
        }
        .socialicons{
            margin-top: 30px;
            border-bottom: 1px #ddd solid;
            padding-bottom: 20px;
            li{
                display: inline-block;
                margin: 0 5px;
                a{
                    background: #43609c;
                    width: 25px;
                    height: 25px;
                    color: #fff;
                    display: inline-block;
                    border-radius: 50%;
                    line-height: 2.5;
                    text-align: center;
                    font-size: 11px;
                    &.gplus{
                        background: #f14033;
                    }
                    &.linkedin{
                        background: #177eb8;
                    }
                    &.twitter{
                        background: #23a9e6;
                    }
                    &:hover{
                        opacity: 0.9;
                    }
                }
            }
        }
    }
    #body{
        flex-basis: 78%;
        .data-row{
            padding: 35px 0;
            border-bottom: 1px #e7e7e7 solid;
            &:last-child{
                border: 0px;
            }
            a{
                color: #0079c5;
                font-size: 22px;
                font-weight: 300;
                display: inline-block;
            }
            span{
                color: #4e4e4e;
                font-size: 10px;
                font-weight: 300;
                margin-bottom: 15px;
                display: block;
            }
            .post{
                color: #353535;
                font-size: 13px;
                font-weight: 300;
                margin-bottom: 30px;
            }
            a.readmore{
                display: inline-block;
                padding: 5px 8px;
                border: 1px #3c99d3 solid;                
                color: #0079c5;
                font-size: 13px;
                font-weight: 300;
                &:hover{
                    background: #0079c5;
                    color: #fff;
                    text-decoration: none;
                }
            }
        }
    }
    #breadcrumb {
        border-bottom: 1px #ebebeb solid;
        margin-bottom: 15px;
        li{
            a{
                color: #797979;
            }
            display: inline-block;
            color: #797979;
        }
    }
}
#footer{
    padding: 130px 0 25px;
    background: #005a93;
    margin-top: 150px;
    .containers{
        flex-wrap: wrap;
    }
    .footertop{            
        display: flex;
        justify-content: space-between;
        flex-direction: row;
        width: 100%;
        padding-bottom: 90px;
    }
    .footerbottom{
        display: flex;
        justify-content: space-between;
        flex-direction: row;
        width: 100%;
    }
}
.contents{
    font-size: 12px;
    color: grey;
}