/*
	Theme Name: Semplice Child Theme
	Description: Child Theme for Semplice
	Author: Semplicelabs
	Template: semplice4
*/

/* Custom CSS Start */
.menu_new_theme ul{
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    align-content: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.menu_new_theme ul a{
    text-transform: uppercase;
    transition: all .2s linear;
    -moz-transition: all .2s linear;
    -webkit-transition: all .2s linear;
    -o-transition: all .2s linear;
    color: #bbb;
    display: inline-block;
}
.menu_new_theme ul a:hover{
    color: #000;
    text-decoration: underline;
}
.menu_new_theme ul li{
    color: #000;
    text-decoration: underline;
    padding-right: 20px;
    text-transform: uppercase;
}
.list_post_theme{
    display: flex;
    margin: 0 0 0 -25px;
    padding: 0;
    flex-wrap: wrap;
    width: calc(100% + 25px);
    list-style: none;
}
.list_post_theme li{
    width: calc((100% - 75px)/3);
    margin-left: 25px;
    margin-bottom: 25px;
}
.list_post_theme li > a{
    display: flex;
    width: 100%;
    height: 300px;
    overflow: hidden;
}
.list_post_theme li > a img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease 0s;
}
.list_post_theme li > a:hover img{
    transform: scale(1.1);
}
.list_post_theme li p{
    margin-top: 10px;
    text-align: center;
}
.page_theme_new{
    display: flex;
    justify-content: center;
    align-content: center;

}
.page_theme_new > *{
    display: inline-block;
    padding: 5px 10px;
    border: 1px solid #bbb;
    margin: 0 5px;
    color: #bbb;
}
.page_theme_new > span,
.page_theme_new > a:hover{
    color: #000;
    border-color: #000;
}
.author-meta-date{
    font-size: .7777777777777778rem !important;
}
.archive.author.is-frontend .posts{
    padding-top: 0;
}
.w100{
    width: 100%;
}
.content-page_theme h1{
    margin-bottom: 20px;
}
.author-bio{
    margin-bottom: 25px;
}
@media(max-width: 767px){
    .list_post_theme li{
        width: 100%;
        margin-left: 25px;
        margin-bottom: 25px;
    }
    .list_post_theme li>a{
        height: 200px;
    }
}
/* Custom CSS End */