.about-hero__container {
    display: flex;
    flex-direction: row;
    vertical-align: baseline;
    flex-wrap: wrap;
}

.about-hero__title-wrapper {
    width: 40%;
    background-color: #0067b1;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.about-hero__image-wrapper {
    width: 60%;
}

.about-hero__image-wrapper img {
    object-fit: cover;
    width: 100%;
    max-width: 100%;
    vertical-align: middle;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
}

.left-container {
    width: 270px;
}

.about-left-nav {
    width: 100%;
}


.about-left-nav li {
    display: block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    border-left: 1px solid #e5e5e5;
    border-top: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;

}

.about-left-nav li:last-child {
    border-bottom: 1px solid #e5e5e5;
}

.about-left-nav li a {
    display: inline-block;
    height: 20px;
    line-height: 20px;
}

.about-left-nav a:hover {
    color: #0067b1;
}


.about-left-nav .about-active {
    border-left: 4px solid #e1523d;
}




.right-container .text-p {
    color: #363636;
    font-size: 22px;
    line-height: 32px;
    font-weight: 400;
}




@media screen and (min-width: 1215px) {

    .about-hero__image-wrapper img,
    .about-hero__title-wrapper {
        height: 37.5rem;
    }

    .right-container {
        flex: 1;
        padding-left: 5rem;
        padding-right: 5rem;
    }
}

@media screen and (min-width: 768px) and (max-width: 1214px) {

    .about-hero__image-wrapper img,
    .about-hero__title-wrapper {
        height: 21.625rem;
    }

    .right-container {
        flex: 1;
        padding-left: 5rem;
    }

    .core-competencies {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

@media screen and (max-width: 767px) {
    .about-hero__title-wrapper {
        width: 100%;
        background-color: #0067b1;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .about-hero__image-wrapper {
        width: 100%;
    }

    .about-hero__image-wrapper img,
    .about-hero__title-wrapper {
        height: 13.125rem;
    }

    .left-container {
        width: 100%;
    }

    .right-container {
        flex: 1;
        margin-top: 30px;
    }

    .core-competencies {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}