.hero {
    min-height: 500px;
    background: url(../images/about/about-banner.jpg) center/cover no-repeat;
    padding: 40px 25px;

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

.hero-text {
    color: #fff;
    text-align: center
}

.hero-text h1 {
    font-size: 4.5rem;
    color: #fff;
    text-transform: uppercase;
}

.hero-text h3 {
    font-size: 2.5rem;
    color: #fff;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    background-color: #0C415C;
}

.col-45 {
    width: 45%;
    display: flex;
}

.col-55 {
    width: 55%;
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #0C415C;
}

.image-col {
    height: 100%;
}

.image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text h2 {
    background-color: #CCEBFF;
    color: #0C415C;
    padding: 4px 25px;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.text p {
    font-size: 1.2rem;
    color: #fff;
    padding: 10px 25px;
}

.text .image {
    width: 70%;
    margin: 40px auto 10px;
    display: none;
}

.text img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    
}

.reverse .col-55 {
    background-color: #CCEBFF;
}

.reverse .text h2 {
    background-color: #0C415C;
    color: #fff;
}

.reverse .text p {
    color: #0C415C;
}