#hero h1{
    font-size: 90px!important;
    line-height: 110px!important;
}

@media(max-width:1200px){
    #hero h1{
        font-size: 60px!important;
        line-height: 70px!important
    }
}

#s1{
    padding: 70px 0;
}

#s1 h2{
    text-align: center;
    font-size: 40px;
    font-weight: 900;
    color: #1D3460;
}

#s1 .line{
    border-top: 3px solid #17A0D6;
    width: 100px;
}

#s1 p{
    text-align: center;
}

#s1 .row{
    justify-content: center;
}

#filters{
    background: #F2F2F4;
    padding: 20px 0;
}

#filters form{
    position: relative;
}

#filters button{
    position: absolute;
    top: 0;
    right: 0;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 46px;
    width: 46px;
    background: #17A0D6;
    color: #fff;
}

#filters input,
#filters select{
    border-radius: 0;
    padding: 10px 20px;
}

#posts{
    padding: 70px 0 20px;
}

#posts .inner{
    display: flex;
    background: #F2F2F4;
}

#posts img{
    height: 100%;
    width: 100%;
    min-height: 320px;
    object-fit: cover;
}

#posts .left{
    width: 35%;
}

#posts .right{
    width: 65%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#posts a{
    text-decoration: none;
    color: #040707;
}

#posts .meta{
    display: flex;
    margin-bottom: 15px;
}

#posts .name{
    color: #17A0D6;
    font-weight: 800;
    text-transform: uppercase;
    margin-right: 15px;
}

#posts .date{
    color: #040707;
}

#posts h3{
    color: #040707;
    font-size: 22px;
    font-weight: 800;
}

#posts p{
    color: #040707;
}

@media(max-width:576px){
    #posts .inner{
        flex-direction: column;
    }
    #posts .left,
    #posts .right{
        width: 100%;
    }
}