.box-in{
    background: #f8f8f8;
    padding: 16px;
    border-radius: 8px;
    margin: 20px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.box-left{
    width: 35%;
}
.box-right{
    width: 65%;
}
.box-right p{
    font-size: 16px;
    color:#3D3A2C;
    opacity: 0.7;
    line-height: 2;
}

@media (max-width: 767px) {
    .box-in {
        flex-direction: column;
        padding: 16px 8px;
    }
    .box-left, .box-right {
        width: 100%;
    }
}