.blog-list {
    margin-top: 200px;
}
.blog-list .blog-list-wrapper{}
.blog-list h1,.blog-single h1{
    margin: 0 0 30px 0;
    font-size: 38px;
    line-height: 126%;
    font-weight: 300;
}
.blog-list .blog-list-wrapper .blog-list-single{
    margin: 0 0 30px 0;
    display: flex;
    width: 100%;
    border-radius: 30px;
    height: 500px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.blog-list .blog-list-wrapper .blog-list-single::after{
    content: " ";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(130,130,130,0.3981967787114846) 100%);
    z-index: 1;
    border-radius: 30px;
}
.blog-list .blog-list-wrapper .blog-list-single .blog-list-single-title{
    position: absolute;
    bottom: 50px;
    left: 50px;
    font-size: 30px;
    font-weight: 700;
    color: #FFFFFF;
    z-index: 2;
}
.blog-list nav,.blog-list nav .flex{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}
.blog-list nav span, .blog-list nav a {
    font-size: 18px;
    line-height: 100%;
    font-weight: 300;
}
.blog-single {
    margin-top: 200px;
}
.blog-single .blog-single-content {}
.blog-single .blog-single-content img{
    width: 100%;
    margin-bottom: 20px;
    border-radius: 30px;
}
.blog-single .barber-single-content {
    display: flex;
    justify-content: space-between;
    gap:20px;
}
.blog-single .barber-single-content img,  .blog-single .barber-single-content .barber-info{
    width: 50%;
    /*    width: calc(50%-20px);*/
}
@media (max-width: 768px) {
    .blog-list, .blog-single{
        margin-top: 50px;
    }
    .blog-list .blog-list-wrapper .blog-list-single{
        height: 300px;
    }
    .blog-list .blog-list-wrapper .blog-list-single .blog-list-single-title{
        bottom: 20px;
        left: 20px;
        font-size: 24px;
    }
    .blog-single .barber-single-content {
        flex-direction: column;
    }
    .blog-single .barber-single-content img {
        margin-bottom: 20px;
    }
    .blog-single .barber-single-content img,  .blog-single .barber-single-content .barber-info{
        width: 100%;
    }
}


