.bankingWrap {
    width: 100%;
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.bankHead {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    background-color: #111a29;
    color: #c2a76f;
    font-size: 16px;
    font-weight: bold;
    border-radius: 7px 7px 0 0;
    padding: 10px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.bankType {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px;
    width: 100%;
    background-color: #100f1e;
    border-bottom: 1px solid #1a182f;
}

.bankType:hover {
    background-color: #100f1e6e;
}

.bankHead div,
.bankType div {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;

}

.bankingWrap .bankType:last-of-type {
    border-radius: 0 0 7px 7px;
}

.bankType img {
    max-width: 80px;
}