#index_hero {
    /*border: solid 1px red;*/
}
#index_hero_container {
    padding: 20px 0;
}
#index_hero_content {
    width: 100%;
    display: flex;
    flex-direction: row;
    /*border: solid 1px blue;*/
}
#index_hero_content_image {
    display: none;
    /*border: solid 1px black;*/
}
#index_hero_content_image img {
    border-radius: 10px;
}
#index_hero_title h2 {
    display: flex;
    justify-content: center;
    color: var(--black-color);
    margin-top: 20px;
    font-size: 2em;
    font-weight: 500;
    line-height: 1.2;
    /*border: solid 1px black;*/
}
#index_hero_content_text {
    /*border: solid 3px green;*/
}
#index_hero_content_box {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    margin: 30px 0 30px 0;
    box-sizing: border-box;

}
#index_hero_content_box h3 {
    font-size: 1.5em;
    color: var(--black-color);
}
#index_hero_content_box p {
    font-size: 1.2em;
    color: var(--black-color);
}
.index_hero_box_text {
    width: 300px;
    height: 150px;
    border-radius: 5px;
    background-color: #D2E4F9;
    border: solid 2px #e4e4e4;
    margin: 10px 0 10px 10px;
    padding: 12px;
}

@media only screen and (min-width: 600px) {
    #index_hero_content {
        width: 95%;
    }
    #index_hero_content_box {
        flex-direction: row;
    }
    #index_hero_title h2 {
         font-size: 2.5em;
    }
    #index_hero_text p {
        margin-top: 50px;
    }
}
@media only screen and (min-width: 900px) {

    #index_hero_title h2 {
        margin-right: 300px;
    }
    #index_hero_content_box {
        margin: 30px 0 30px 0;
    }
    #index_hero_text_3 {
        width: 610px;
        height: 150px;
    }
}
@media only screen and (min-width: 1200px) {
    #index_hero_container {
        display: flex;
        justify-content: center;
    }
    #index_hero_content {
        width: 70%;
    }
    #index_hero_content_image {
        display: block;
        width: auto;
        height: auto;
        margin-left: 20px;
    }
    #index_hero_content_text {
        padding: 0;
    }
    #index_hero_text p {
        margin-right: 0;
    }
}
@media only screen and (min-width: 1600px) {
    #index_hero_content {
        width: 60%;
    }
    #index_hero_content_text {
        padding: 0;
    }
    #index_hero_text p {
        margin-right: 0;
    }
}

