.section__fullwidth_section {
    width: 100%;
    text-align: center;
    position: relative;

    --content-max-width: 1920px;
}

.fullwidth-section__wrapper {
    width: 100%;
    height: 100%;
    display: flex;
}

.fullwidth-section__wrapper--in-picture {
    justify-content: center;
    align-items: center;
}

.fullwidth-section__wrapper--in-picture::after {
    content: "";
    position: absolute;
    background-color: black;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: .4;
}

.fullwidth-section__wrapper--in-box {
    position: relative;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}

.fullwidth-section__background-image {
    width: 100%;
    height: 750px;
    object-fit: cover;
}

.fullwidth-section__content-container {
    text-align: center;
    display: inline-block;
    padding: 25px;
    box-sizing: border-box;
}

.fullwidth-section__content-container--in-box {
    width: 100%;
    max-width: 630px;
    margin-top: -100px;
	display: flex;
    flex-flow: column;
    align-items: center;
    background-color: var(--pmg-beige);
    z-index: 10;
}

.fullwidth-section__content-container--in-picture {
    width: 100%;
    max-width: 720px;
    position: absolute;
    background-color: transparent;
}

.fullwidth-section__main-text {
    white-space: break-spaces;
}

.fullwidth-section__content-container--in-picture .fullwidth-section__section__heading,
.fullwidth-section__content-container--in-picture .fullwidth-section__main-text {
    color: var(--pmg-white);
}

.fullwidth-section__underline {
    margin-top: 35px;
    margin-bottom: 10px;
    border-width: 2px;
}


.fullwidth-section__button {
    margin-top: 25px;
}

@media only screen and (max-width: 767px) {
    .fullwidth-section__wrapper--in-box .fullwidth-section__background-image {
        object-fit: contain;
        height: auto;
    }

    .fullwidth-section__content-container--in-box {
        margin-top: -50px;
    }
}

@media only screen and (max-width: 630px) {
    div.fullwidth-section__content-container--in-box {
        margin-top: 0;
    }
}