/* WHO-WE-ARE SECTION */
#who-we-are {
    height: auto;
    padding: 20px 0;
}

.info-row {
    font-weight: 300;
    margin-bottom: 70px;

    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.half-panel {
    width: 50%;
    max-height: 450px;
}

.panel-header {
    text-align: center;
    font-size: 150%;
    margin-bottom: 45px;
}

.panel-header-2 {
    font-size: 130%;
    margin-bottom: 35px;
    text-transform: none;
    color: var(--color-comp-blue);
}

.panel-header::after {
    position: absolute;
    top: 160%;
    left: 50%;
    width: 20%;
    height: 2px;
    background-color: var(--color-comp-blue);
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);

    display: block;
    content: "";
}

.panel-content {
    padding: 0 30px;
    font-size: 85%;
    font-weight: 400;
}

ul.panel-content {
    text-align: left;
    margin-left: 70px;
    font-weight: 400;
}

ul.panel-content li {
    margin-bottom: 10px;
}

.half-panel img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.half-panel:first-child img {
    margin-right: 20px;
}

.half-panel:last-child img {
    margin-left: 20px;
}

@media only screen and (max-width: 780px) {
    .info-row {
        flex-direction: column;
        padding: 0 20px;
    }

    .half-panel {
        width: auto;
        max-height: unset;
        overflow: hidden;
    }

    .panel-content {
        padding: 0;
    }

    .half-panel:first-child {
        margin-bottom: 25px;
    }

    .half-panel:last-child img {
        margin-left: 0;
    }
}