.box_section{
    width: 100%;
    height: 250px;
    box-sizing: border-box;
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    border-radius: 14px;
    background: var(--component);
    position: relative;
}

/* title */

.box_section h2{
    font-size: 15px;
    font-weight: 500;
    color: var(--text1);
}

/* box text */

.box_section p{
    width: 400px;
    font-size: 13px;
    line-height: 1.8;
    text-align: left;
    color: var(--text2);
}

/* image */

.box_section img{
    width: 340px;
    height: 340px;
    position: absolute;
    bottom: 0;
    right: 10px;
}

/* --- Media --- */

@media screen and (max-width: 1000px) {
    
    .box_section p{
        width: 320px;
    }

}

@media screen and (max-width: 800px) {

    .box_section p{
        width: 280px;
    }

    /* image */
    
    .box_section img{
        width: 280px;
        height: 280px;
    }

}

@media screen and (max-width: 700px) {

    .box_section{
        padding: 40px;
        height: 400px;
        justify-content: flex-start;
    }

    /* text */

    .box_section p{
        width: 90%;
    }

    /* image */

    .box_section img{
        width: 200px;
        height: 200px;
    }

}