/* rule for general centered content */
.content-wrapper .center-content {
    width: var(--content-width-percentage);
}


/* image row */
.content-wrapper .image-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.content-wrapper .image-row .image {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('/images/see-landschaft-hintergrund.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    max-width: 2400px;
    height: auto;
    max-height: 1282px;
}

.content-wrapper .image-row .image .center-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    color: #fff;
}

.content-wrapper .image-row .image .center-content .left-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1 1 auto;
    width: 100%;
    max-width: 600px;
    height: 100%;
    min-height: 480px;
    background-color: #C96092;
}

.content-wrapper .image-row .image .center-content .left-panel p {
    font-size: 2em;
    margin-top: 0.67em;
    margin-bottom: 0.67em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}

.content-wrapper .image-row .image .center-content .left-panel img {
    max-width: 240px;
    max-height: 240px;
}

.content-wrapper .image-row .image .center-content .right-panel {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.content-wrapper .image-row .image .center-content .right-panel p {
    font: "Lato-Italic";
    font-size: 1.6rem;
    font-style: italic;
    text-align: right;
    line-height: 3rem;
    text-shadow: 0px 0px 8px #0005;
}

.content-wrapper .image-row .image .center-content .right-panel p:first-child {
    margin-top: 3rem;
}


/* contact row */
.content-wrapper .contact-row-2 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #010d5d;
}

.content-wrapper .contact-row-2 .center-content {
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    padding: 0.75rem;
    gap: 2.4rem;
}

.content-wrapper .contact-row-2 .center-content a {
    border: 2px solid #677a85;
    border-radius: 17px;
    padding: 0.2rem 2.4rem;
    background-color: #c0ddf2;
    color: #093791;
    text-decoration: none;
    text-align: center;
    font-size: large;
    transition:
        border-color 0.3s ease,
        background-color 0.3s ease,
        color 0.3s ease;
}

.content-wrapper .contact-row-2 .center-content a:hover {
    border-color: #000;
    background-color: #82939e;
    color: #000;
}


/* main text area */
.content-wrapper .main-text-area {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: auto 2rem;
    background-color: #C7E2FB;
}

.content-wrapper .main-text-area .center-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.content-wrapper .main-text-area .center-content img {
    max-width: 380px;
    max-height: auto;
    border-radius: 50%;
    margin-top: 3rem;
}

.content-wrapper .main-text-area .center-content .text {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 2rem;
    max-width: 1000px;
    line-height: 1.7rem;
    font-size: x-large;
    font-weight: 600;
    margin: 3rem 0px 5rem 0px;
    color: #042c79;
}

.content-wrapper .main-text-area .center-content .text h2 {
    line-height: 2.5rem;
}

.content-wrapper .main-text-area .center-content .text h2,
.content-wrapper .main-text-area .center-content .text p,
.content-wrapper .main-text-area .center-content .text .bullet-points {
    width: 100%;
    margin: 0px;
}

.content-wrapper .main-text-area .center-content .text ul {
    margin: 0px auto 1rem auto;
    padding-left: 2rem;
}



/* align contact-2 buttons centered */
@media (max-width: 700px) {
    .content-wrapper .contact-row-2 .center-content {
        justify-content: center;
    }

    .content-wrapper .main-text-area .center-content img {
        max-width: 250px;
    }
}

/* wrap image row */
@media (max-width: 1350px) {
    .content-wrapper .image-row .image .center-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}
