.contener_recent_post{
    position : relative;
    height:100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    row-gap: 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-bottom: 8%;
    overflow : hidden;
}

.contener_recent_post::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    pointer-events: none; 
}

.title_recent{
    z-index: 5;
    width:1320px;
}

.title_recent > h1{
    color : white!important;
}

.ctn_btn_recent{
    width:1320px;
    z-index: 5;
}

.btn_recent{
    border-style: solid;
    border-width: 1px;
    padding: 10px 25px 10px 025px;
    text-transform: uppercase;
    row-gap: 25px;
    color : white!important;
    border-color: white;
}

.btn_recent:hover{
    color : black!important;
    background-color: white;
    border-color: white;
}

@media screen and (max-width:1366px) {
    .title_recent{
        width:1050px;
    }

    .ctn_btn_recent{
        width:1050px;
    }

    .contener_recent_post{
        padding-bottom: 10%;
        height: 90vh;
    }
}

@media screen and (max-width:1200px) {
    .title_recent{
        width:950px;
    }

    .ctn_btn_recent{
        width:950px;
    }

    .btn_recent{
        padding: 08px 20px 08px 20px;
    }

}

@media screen and (max-width:1024px) {
    .title_recent{
        width:780px;
    }

    .ctn_btn_recent{
        width:780px;
    }
}

@media screen and (max-width:767px) {
    .title_recent{
        width: 100%;
        padding-right: 5%;
        padding-left: 5%;
    }

    .ctn_btn_recent{
        width: 100%;
        padding-right: 5%;
        padding-left: 5%;
    }

    .contener_recent_post {
        padding-bottom: 30%;
    }

}