/* ////////////////////////////////////////////////////////////////////////////
HERO
////////////////////////////////////////////////////////////////////////////*/

#hero{
    padding: 10px 200px;
}
#hero .inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#hero .left{
    position: relative;
    z-index: 2;
}
#hero .left .text{
    padding-right: 250px;
}
#hero h1{
    font-family: 'nowextrabold';
    font-size: 65px;
    line-height: 74px;
    margin-bottom: 20px;
}

#hero h1 .accent{
    color: var(--blue);
}
#hero p{
    color: var(--grey);
    font-size: 20px;
    line-height: 27px;
}
#hero p strong{
    font-family: 'nowmedium';
    color: var(--black);
    font-size: 27px;
    line-height: 35px;
}
#hero .buttons{
    margin-top: 40px;
    display: flex;
}
#hero .btn{
    margin-right: 10px;
}
#hero .right{
    background: var(--accent);
    padding: 15px;
    border-radius: 50%;
    position: relative;
}
#hero .right::after{
    content: '';
    position: absolute;
    left: -450%;
    top: 0;
    width: 500%;
    height: 100%;
    background: var(--accent);
    z-index: 1;
}
#hero .right .wrap{
    border-radius: 50%;
    height: 400px;
    width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    z-index: 2;
    position: relative;
    background: var(--accent);
}
#hero .right img{
    height: 400px;
    width: 400px;
    border-radius: 50%;
}

@media(max-width: 1800px){
    #hero .left .text{
        padding-right: 150px;
    }
}
@media(max-width: 1700px){
    #hero .left .text{
        padding-right: 200px;
    }
}
@media(max-width: 1600px){
    #hero .left .text{
        padding-right: 100px;
    }
    #hero{
        padding: 10px 20px;
    }
}
@media(max-width: 1200px){
    #hero{
        background: var(--accent);
    }
    #hero .inner{
        flex-wrap: wrap;
        justify-content: center;
    }
    #hero .left .text{
        padding-right: 0;
    }
    #hero .right{
        margin-top: 40px;
    }
}
@media(max-width: 767px){
    #hero .right .wrap{
        height: 300px;
        width: auto;
        padding: 40px;
    }
    #hero h1 {
        font-size: 35px;
        line-height: 38px;
    }
    #hero .buttons{
        margin-bottom: 20px;
    }
    #hero .right img{
        height: 300px;
        width: 300px;
        border-radius: 50%;
    }
}

/* ////////////////////////////////////////////////////////////////////////////
WHERE
////////////////////////////////////////////////////////////////////////////*/
#where{
    padding: 50px 0;
}
#where h2{
    font-size: 55px;
    line-height: 54px;
    margin-bottom: 20px;
}
#where p{
    font-size: 27px;
    line-height: 35px;
}

/* ////////////////////////////////////////////////////////////////////////////
Filters
////////////////////////////////////////////////////////////////////////////*/
#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 .container-wrap{
    padding: 20px 200px;
}
#posts .row{
    justify-content: flex-start;
}
.post{
    width: 24%;
    position: relative;
    margin: 20px 0.5%;
}
.post .wrap{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.post .content{
    z-index: 2;
    padding: 0 0 0 25px;
}
.post a{
    text-decoration: none;
}
.post h2{
    font-family: 'nowmedium';
    font-weight: 300;
    font-size: 23px;
    line-height: 28px;
    margin-bottom: 20px;
}

.post p{
    margin: 0;
    position: absolute;
    width: 100%;
    bottom: 10px;
    right: 20px;
    text-align: right;
    font-family: 'nowsemibold';
    font-size: 19px;
    line-height: 25px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: var(--blue);
}
.post p i{
    margin-left: 10px;
}
.post .image{
    background: var(--accent);
    padding: 10px 0;
    border-radius: 50%;
}
.post .image::after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--accent);
    z-index: 1;
    border-radius: 100px 20px 20px 100px;
}
.post .image .wrap{
    border-radius: 50%;
    height: 150px;
    width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    z-index: 2;
    position: relative;
    background: var(--accent);
}
.post .image img{
    height: 150px;
    width: 150px;
    border-radius: 50%;
    z-index: 2;
    position: relative;
}

@media(max-width: 1650px){
    #posts .container-wrap{
        padding: 20px 30px 50px;
    }
}
@media(max-width: 1400px){
    #posts .row{
        flex-wrap: wrap;
    }
    .post{
        width: 32%;
        position: relative;
        margin: 30px 0;
    }
}
@media(max-width: 1200px){
    .post{
        width: 49%;
        position: relative;
        margin: 30px 0;
    }
}
@media(max-width: 767px){
    .post{
        width: 100%;
        margin: 10px 0;
    }
    #posts .container-wrap{
        padding: 0 30px 50px;
    }
}

#about{
    margin: 50px 0;
}