/*  Sets styles for list ofother  */
/*  sections on the index page    */
/* -----------------------------  */

.index-section_list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.index-section_link {
    list-style: none;
}

.index-partners_list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.index-partner_link {
    width: 25%;
}

.index-partner_link a {
    width: 80%;
    height: auto
}

.index-partner_link img {
    padding: 20% 0;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    margin: 0 auto;
}



@media only screen and (max-width: 800px) {

    .index-section_list,
    .index-partners_list {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .index-partner_link {
        width: 75%;
    } 
    
    .index-section_link:not(:last-child) {
        margin-bottom: 10px;
    }

}