
#sectors_list {
    /*border: solid 1px black;*/
}
#sectors_list_container {
    padding: 20px 0;
    display: flex;
    flex-direction: row;
    min-height: 200px;
    background-color: honeydew;
    /*border: solid 1px blue;*/
}
#sectors_list_content {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    /*border: solid 1px blue;*/
}
#sector_list {
    width: 100%;
    padding: 20px 10px 20px 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    /*border: solid 1px green;*/
}
.sector_item {
    margin: 10px 10px;
    padding: 20px 10px 20px 10px;
    width: 200px;
    height: 230px;
    /*border: solid 1px #0000ff;*/
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
    border-radius: 5px;
    background-color: white;
}
.sector_item:hover {
    cursor: pointer;
}
.sector_item_picture {
    width: 100%;
    height: 125px;
}
.sector_item_name {
    height: 70px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    /*border: solid 1px green;*/
}
@media all and (min-width: 650px) {
}
@media all and (min-width: 900px) {
    #sector_list {
        width: 80%;
        padding: 20px 10px 20px 10px;
    }
}
@media all and (min-width: 1200px) {
}