.b_folder{
    padding: 50px 7%;
    display: flex;
    justify-content: space-between;
    gap: 100px;
}
.b_folder__left{
    display: grid;
    grid-template-columns: 1fr 150px 1fr;
    width: 50%;
}
.b_folder__left__image{
    grid-area: 1 / 1 / 2 / 3;
    z-index: 2;
    padding-top: 20px;
}
.b_folder__left__image img{
    width: 100%;
}
.b_folder__left__text{
    grid-area: 1 / 2 / 2 / 4;
    background-color: black;
    color: white;
    height: fit-content;
    padding: 30px;
    padding-left: 170px;
}
.b_folder__left__text .text_1{
    margin-top: 30px;
}
.b_folder__left__text .text_1 a{
    color: #ff0000;
    text-decoration: 1px underline #ff0000;
}

.b_folder__right{
    width: 50%;
    background-image: url('/images/folder_2.webp');
    background-size: cover;
    color: white;
    padding: 30px;
}
.b_folder__right__wrap{
    width: 50%;
}

@media screen and (max-width: 1800px) {
    .b_folder__right{
        background-image: url('/images/folder_2-1.webp');
    }
    .b_folder__right__wrap{
        width: 100%;
    }
}
@media screen and (max-width: 1500px) {
    .b_folder{
        flex-direction: column;
    }
    .b_folder__left, .b_folder__right{
        width: 100%;
    }
}
@media screen and (max-width: 1200px){
    .b_folder__left{
        display: flex;
        flex-direction: column-reverse;
    }
    .b_folder__left__text{
        padding: 30px;
    }
}