/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

HERO

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

#hero{
    padding: 50px 0;
}
#hero h1{
    font-size: 65px;
    line-height: 74px;
    margin-bottom: 30px;
}
#hero .accent{
    color: var(--blue);
}

#hero p{
    color: var(--grey);
    font-size: 20px;
    line-height: 27px;
}
#hero strong{
    color: var(--black);
    font-size: 27px;
    font-family: 'nowmedium';
    font-weight: 300;
}

@media(max-width: 767px){
    #hero h1 {
        font-size: 53px;
        line-height: 54px;
    }
}

/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

FILTER

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
#filters{
    padding: 20px 0 50px;
}

#filters select, #filters input{
    padding: 15px 10px 15px 20px;
    border-radius: 10px;
    border: 2px solid rgba(87,97,101, 0.25);
    position: relative;
    font-family: 'nowbold';
    font-size: 20px;
    color: var(--grey);
}

#searchForm{
    position: relative;
}
#searchForm button{
    position: absolute;
    right: 6px;
    top: 6.5px;
    width: 150px;
    height: 50px;
    border-radius: 10px;
}


/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

POSTS

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
#posts .row {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
#posts .post {
    width: 33%;
    margin: 10px 0;
}
#posts .post a {
    text-decoration: none;
}
#posts .post .wrap {
    border-radius: 15px;
    background: var(--accent);
}
#posts .post img {
    width: 100%;
    height: 262px;
    object-fit: cover;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
}
#posts .post h2 {
    font-family: 'nowsemibold';
    font-size: 22px;
    line-height: 29px;
    margin-top: 15px;
}
#posts .post .content {
    padding: 30px;
}
#posts .post .cat {
    background: #EFF0F3 0 0 no-repeat padding-box;
    border: 1px solid #DDDFE1;
    border-radius: 15px;
    display: inline;
    padding: 6px 10px;
    font-family: 'nowsemibold';
    font-size: 14px;
    color: var(--black);
}

.pag{
   margin: 20px 0; 
   text-align: center;
    display: flex;
    justify-content: center;
}
.pag a{
     color: #fff;
    font-size: 20px;
    background: var(--blue);
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    margin: 0 5px;
}
.pag span{
    color: #fff;
    font-size: 20px;
    background: var(--black);
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    margin: 0 5px;
}
.pag .next, .pag .prev{
    display: none;
}
@media(max-width: 1200px) {
    #posts {
        flex-wrap: wrap;
    }
    #posts .post {
        width: 49%;
        margin: 10px 0;
    }
}
@media(max-width: 991px) {
    #posts .post {
        width: 100%;
    }
}


.coming{
    font-size: 28px;
    margin-top: 20px;
}