
#index_what_can_be {
}
#index_what_can_be_container {
}
#index_what_can_be_content {
    flex-direction: column;
    /*border: solid 1px blue;*/
}
#index_what_can_be_wrapper {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: start;
    /*border: solid 1px orange;*/
}
#index_what_can_be_title {
    display: flex;
    flex-direction: column;
    justify-content: start;
    white-space: normal;
    /*border: solid 1px blue;*/
}
#index_what_can_be_bottom {
}
#index_what_can_be_panels {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    list-style: none;
}
.index_what_can_be_panel {
    width: 85vw;
    margin: 0.7rem;
    padding: 1rem;
    background-color: var(--white);
    border-top: solid 0.1rem var(--primary-color);
    border-right: solid 0.1rem var(--primary-color);
    border-bottom: solid 0.1rem var(--primary-color);
    border-left: solid 0.5rem var(--highlight-color);
    border-radius: var(--box-border-radius);
}
.index_what_can_be_panel_icon {
    width: 100%;
    min-height: 50px;
    display: flex;
    flex-direction: row;
    justify-content: start;
    /*border: solid 1px red;*/
}
.index_what_can_be_panel_ring {
    display: flex;
    flex-direction: row;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--tertiary-background);
    border: solid 1px black;
}
.index_what_can_be_panel_icon_img {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    /*border: solid 1px red;*/
}
.index_what_can_be_panel_title {
    margin: 20px 0 10px 0;
    font-size: 1.37rem;
    font-weight: bold;
    color: var(--highlight-color);
}
.index_what_can_be_panel_text {
    color: var(--secondary-color);
}
#index_what_can_be_footer_text {
    padding: 10px 10px;
    font-size: 1.1rem;
    color: var(--secondary-color);
}
@media (min-width: 900px) {
    .index_what_can_be_panel {
        width: 35vw;
    }
}
@media (min-width: 1200px) {
    .index_what_can_be_panel {
        width: 20vw;
    }
}
