.who-we-are {
    padding: 0;
    overflow: hidden;
}
.who-we-are .banner {
    height: 400px;
    background-color: #f0f2f7;
}
.who-we-are .banner > div,
.who-we-are .banner > div > div,
.who-we-are .banner > div > div > div:last-of-type {
    height: 100%;
}
.who-we-are .banner > div > div {
    display: flex;
    align-items: center;
}
.who-we-are .banner .heading {
    font-size: 35px;
    font-weight: 700;
    color: #03498d;
    margin-top: 50px;
    padding-left: 13px;
    padding-right: 13px
}
.who-we-are .banner .description {
    margin-top: 20px;
    margin-bottom: 50px;
    font-size: 15px;
    padding-left: 13px;
    padding-right: 13px
}
.who-we-are .banner .image {
    background-size: cover;
    height: 100%;
}
.who-we-are .about-us {
    margin: 50px 0;
}
.who-we-are .about-us .heading {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
}
.who-we-are .about-us .description {
    font-size: 15px;
    margin-top: 20px;
}
.who-we-are .our-story {
    margin: 50px 0;
}
.who-we-are .our-story .heading {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
}
.who-we-are .our-story .description {
    font-size: 15px;
    margin-top: 20px;
    column-count: 2;
    column-gap: 50px;
}
.who-we-are .our-story .images {
    margin-top: 30px;
}
.who-we-are .our-story .images > div > div > div{
    background-size: cover;
    padding-top: 64%;
}
.who-we-are .our-history {
    margin: 50px 0;
}
.who-we-are .our-history > .heading {
    font-size: 30px;
    font-weight: 700;
    color: #03498d;
    text-align: center;
}
.who-we-are .our-history ul {
    background: linear-gradient(#f28b5f,#f28b5f) no-repeat center/2px 100%;
    list-style: none;
    padding: 0;
    margin: 30px auto 20px;
    max-width: 1100px;
}
.who-we-are .our-history li {
    width: 100%;
    min-height: 30px;
	margin-top: -30px;
}
.who-we-are .our-history li:first-child { 
	margin-top: 0px; 
}
.who-we-are .our-history li img {
    width: 150px;
    margin: 0 20px;
}
.who-we-are .our-history li .heading {
    font-weight: 700;
    font-size: 20px;
    color: #03498d;
}
.who-we-are .our-history li .description {
    font-size: 15px;
    margin-top: 10px;
    color: #03498d;
}
.who-we-are .our-history li img {
    font-weight: 200px;
}
.who-we-are .our-history li:nth-child(odd) > div {
    display: flex;
    flex-direction: row-reverse;
    text-align: right;
    align-items: center;
    width: 50%;
    padding-right: 20px;
    position: relative;
    min-height: 30px;
}
.who-we-are .our-history li:nth-child(odd) > div:after {
    border-radius: 100%;
    position: absolute;
    background: #03498d;
    content: '';
    height: 12px;
    width: 12px;
    right: -6px;
}
.who-we-are .our-history li:nth-child(even) {
    display: flex;
    justify-content: flex-end;
}
.who-we-are .our-history li:nth-child(even) > div {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 50%;
    padding-left: 20px;
    position: relative;
    min-height: 30px;
}
.who-we-are .our-history li:nth-child(even) > div:after {
    border-radius: 100%;
    position: absolute;
    background: #03498d;
    content: '';
    height: 12px;
    width: 12px;
    left: -6px;
}
.who-we-are .board-of-trustees,
.who-we-are .management {
    margin: 50px 0;
}
.who-we-are .board-of-trustees .heading,
.who-we-are .management .heading {
    font-size: 25px;
    font-weight: 700;
    color: #03498d;
    margin-bottom: 25px;
}
.who-we-are .board-of-trustees .description ul,
.who-we-are .management .description ul {
    list-style: none;
    column-count: 2;
    column-gap: 50px;
    padding: 0;
    font-size: 15px;
}
.who-we-are .board-of-trustees .description li,
.who-we-are .management .description li {
    white-space: nowrap;
    margin-bottom: 20px;
	display: inline-block;
	min-width: 50%;
}
.who-we-are .board-of-trustees .description li div:nth-of-type(1),
.who-we-are .management .description li div:nth-of-type(1) {
    font-weight: 700;
}
.who-we-are .board-of-trustees .description li div:nth-of-type(2),
.who-we-are .management .description li div:nth-of-type(2) {
    white-space: pre-wrap;
}
@media (max-width: 1000px) {
    .who-we-are .our-history ul {
        background: none;
    }
    .who-we-are .our-history li:nth-child(odd) > div,
    .who-we-are .our-history li:nth-child(even) > div {
        flex-direction: row;
        width: 100%;
        text-align: left;
        padding: 0;
        margin-bottom: 20px;
    }
    .who-we-are .our-history li > div:after {
        display: none;
    }
}
@media (max-width: 768px) {
    .who-we-are .banner {
        height: 100%;
    }
    .who-we-are .banner .image {
        height: 400px;
    }
    .who-we-are .our-story .description,
    .who-we-are .board-of-trustees .description ul,
    .who-we-are .management .description ul {
        column-count: 1;
    }
    .who-we-are .our-story .images {
        height: 930px;
    }
    .who-we-are .our-story .images div {
        margin-bottom: 10px;
    }
}
@media (max-width: 425px) {
    .who-we-are .our-history li:nth-child(odd) > div,
    .who-we-are .our-history li:nth-child(even) > div {
        flex-direction: column;
    }
    .who-we-are .our-history li:nth-child(odd) > div img,
    .who-we-are .our-history li:nth-child(even) > div img {
        margin-bottom: 20px;
    }
}
