.content-wrapper {
    color: #032366;
    background-color: #c7e3fb;
}

.content-wrapper .center-content {
    font-size: x-large;
    line-height: 2.5rem;
}

.content-wrapper .center-content h2 {
    font-size: x-large;
}

.content-wrapper .center-content .row-1 {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: start;
    flex-wrap: wrap-reverse;
    gap: 2.5rem;
}

.content-wrapper .center-content .row-1 .image-left {
    max-width: 500px;
    flex: 1 1 410px;
    margin-top: 35px;
}

.content-wrapper .center-content .row-1 .image-left img{
    width: 100%;
}

.content-wrapper .center-content .row-1 .right {
    max-width: 32rem;
    flex: 1 1 32rem;
}

.content-wrapper .center-content .row-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content-wrapper .center-content .row-2 h1{
    margin-top: 5rem;
    font-size: xx-large;
}

.content-wrapper .center-content .row-2 h2 {
    width: 100%;
}

.content-wrapper .center-content .row-3 {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: start;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.content-wrapper .center-content .row-3 .left {
    flex: 1 1 400px;
    max-width: 100%;
    margin-top: 3rem;
}

.content-wrapper .center-content .row-3 .image-right {
    flex: 0 0 auto;
    max-width: 500px;
    margin-top: 3rem;
    width: 100%;
    height: auto;
}

.content-wrapper .center-content .row-3 .image-right img {
    width: 100%;
}

.content-wrapper .center-content .row-4 {
    margin-bottom: 5rem;
}

@media (max-width: 1235px) {
    .content-wrapper .center-content .row-1 {
        justify-content: center;
    }

    .content-wrapper .center-content .row-1 .right {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 1083px) {
    .content-wrapper .center-content .row-3 {
        justify-content: center;
    }
}


