.content-wrapper {
    background-color: #C7E2FB;
}

.content-wrapper .center-content {
    color: #0C215F;
    line-height: 2rem;
    font-size: x-large;
}


.content-wrapper .center-content h1 {
    font-size: x-large;
}

.content-wrapper .center-content h2 {
    font-size: x-large;
    font-weight: 400;
}

.content-wrapper .center-content .underlined {
    display: inline-block;
    position: relative;
}

.content-wrapper .center-content .underlined::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 2px;
    background: #0C215F;
}


.content-wrapper .center-content .row {
    display: flex;
    flex-direction: row;
    align-items: start;
    flex-wrap: wrap-reverse;
    gap: 2rem;
}

.content-wrapper .center-content .row .left {
    flex: 1 1 auto;
    min-width: 250px;
    max-width: 50%;
    order: 1;
}

.content-wrapper .center-content .row .right {
    flex-shrink: 0;
    width: 518px;
    order: 2;
}

.content-wrapper .center-content .row .right img {
    width: 100%;
    max-width: 518px;
}


.content-wrapper .center-content p:last-child {
    margin-bottom: 5rem;
}



@media (max-width: 1466px) {
    .content-wrapper .center-content .row .right {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        flex-shrink: 1;
    }

    .content-wrapper .center-content .row .left {
        max-width: 100%;
    }
}
