#hero{
    padding: 100px 0;
    color: #fff;
}

#hero .inner{
    padding: 0 200px;
    margin-bottom: 50px;
}

#hero h1{
    margin: 0 0 50px;
}

@media(max-width:991px){
    #hero .inner{
        padding: 0;
    }
}



#filters{
    background: #00B3BF;
    padding: 30px 0;
}

#filters form{
    display: flex;
    margin: 0;
}

#filters .form-control{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    padding: 10px;
    border: none;
}

#filters [type=submit]{
    background: #006787;
    color: #fff;
    border: 1px solid #FFFFFF;
    padding: 10px 15px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

#filters select{
    padding: 10px;
    border-radius: 10px;
}

#filters .form-select{
    background-image: none;
    border: 0
}

#filters .dropdown{
    position: relative;
}

#filters .dropdown::after{
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f0d8";
    position: absolute;
    color: #fff;
    top: 0px;
    right: 0;
    width: 48px;
    height: 44px;
    background: #006787;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border: 1px solid #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}



#blog .inner{
    display: flex;
    align-items: center;
    background: #fff;
    padding: 20px;
    border-radius: 2px;
}

#blog .inner img{
    width: 290px;
    height: 290px;
    object-fit: cover;
    border-radius: 25px;
}

#blog .right .title{
    font-size: 18px;
    font-family: 'PT Serif', serif;
    font-weight: 700;
    color: #006787;
    margin-bottom: 20px;
}

#blog .click a{
    color: #26555A;
    font-size: 18px;
    text-decoration: none;
    display: flex;
    align-items: center;
    width: fit-content
}

#blog .click a:hover{
    color: #00B3BF;
}

#blog .click a i{
    margin-left: 10px;
}

#blog .inner .content{
    margin-bottom: 20px;
}

#blog .right{
    padding-left: 30px
}

#blog .cat{
    color: #006787;
}

#filters .form-control,
#filters select{
    padding: 10px 25px
}

#filters .form-control::placeholder,
#filters select option:disabled{
    color: #26555A!important;
    opacity: 1;
}

@media(max-width:1400px){
    #blog .inner img{
        width: 250px;
        height: 250px;
    }
}

@media(max-width:767px){
    #blog .inner{
        flex-direction: column;
    }
    
    #blog .left{
        margin-bottom: 20px;
        width: 100%;
    }
    
    #blog .inner img{
        width: 100%;
    }
    
    #blog .right{
        padding: 0;
    }
}