#index_benefits {
    /*border: solid 1px red;*/
}
#index_benefits_container {
    display: flex;
    justify-content: center;
}
#index_benefits_content {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    /*border: solid 1px red;*/
}
#index_benefits_content_image img {
    display: none;
    margin: 20px 0 0 10px;
    border-radius: 10px;
    /*border: solid 1px black;*/
}
#index_benefits_content_text {
    width: 100%;
    display: flex;
    flex-direction: column;
    /*border: solid 1px red;*/
}
#index_benefits_title h2 {
    margin-top: 20px;
    font-size: 2em;
    color: var(--black-color);
    text-align: center;
    /*border: solid 1px black;*/
}
#index_benefits_text_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    list-style: none;
    /*border: solid 1px blue;*/
}
.index_benefits_text_list {
    display: flex;
    flex-direction: column;
    list-style: none;
    /*border: solid 1px blue;*/
}
.index_benefits_text_list li:not(first-child)  {
    margin-top: 5px;
}
.index_benefits_text_style li {
    padding: 5px 18px;
    width: 250px;
    height: 80px;
    font-size: 1.2em;
    color: var(--black-color);
    border: solid 2px #e4e4e4;
    border-radius: 5px;
}
#index_benefits_text_list_grey li {
    background-color: #f7f3f2;
}
@media only screen and (min-width: 600px) {
    #index_benefits_content_image img {
        display: block;
        width: 250px;
        height: auto;
    }

}
@media only screen and (min-width: 900px) {
    .index_benefits_text_list {
        flex-direction: row;
    }
    .index_benefits_text_style li {
        width: 200px;
    }
    .index_benefits_text_list li:not(first-child)  {
        margin-left: 5px;
    }
}
@media only screen and (min-width: 1200px) {
    #index_benefits_container {
    }
    #index_benefits_content {
        width: 70%;
    }
    #index_benefits_content_image img {
        display: block;
        width: auto;
        height: auto;
    }
    #index_benefits_title h2 {
        font-size: 2.5em;
        text-align: left;
        margin: 0  0 30px 30px;
    }
}
@media only screen and (min-width: 1400px) {
    #index_benefits_content {
        width: 60%;
    }
}