#hero{
    position: relative;
    z-index: 0;
    display: flex;
    align-items: center;
    height: 400px;
}

#hero::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #151515;
    opacity: 0.75;
    z-index: -1;
}

#hero h1{
    font-size: 41px;
    font-weight: 900;
    color: #FFFFFF;
    text-align: center;
}

#hero p{
    font-size: 18px;
    color: #FFFFFF;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

#filter{
    padding: 50px 0;
}

#filter select{
    padding: 15px 10px 15px 20px;
    border-radius: 10px;
    border: #A048C6 solid 1px;
}

#filters{
    padding: 50px 0;
}

#filters form{
    position: relative;
}

#filters button{
    position: absolute;
    top: 0;
    right: 10px;
    background: none;
    border: none;
    height: 38px;
    font-size: 12px;
}

#blog .wrap{
    background: #F8F8F8;
    padding: 20px;
    border-radius: 10px;
}

#blog img{
    width: 100%;
    height: 280px;
    border-radius: 10px;
    object-fit: cover;
}

#blog .cat{
    text-align: center;
    color: #2B2B2B;
    margin-top: 10px;
}

#blog .line{
    width: 50px;
    margin: 20px auto;
    height: 3px;
    background: #FEB300;
    opacity: 1;
}

#blog h3{
    color: #2B2B2B;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 30px;
}

#blog .btn{
    margin: 0 auto;
    display: block;
    width: 200px;
    font-size: 16px;
}