:root {
    --background-color: #EFE7DA;
    --primary-color: #827567;
    --secondary-color: #FFFFFF;
    --link-color: #3B8AFF;
}
body {
    margin: 0;
    background-color: var(--background-color);
    overflow-x: hidden;
}
h1 {
    display: flex;
    justify-content: center;
    margin: 30px 50px 15px 50px;
    font: italic 23px "Cambria", sans-serif;
    text-transform: uppercase;
    color: var(--primary-color);
}
h2 {
    font: italic 18px "Cambria", sans-serif;
    color: var(--primary-color);
    margin: 0px;
}
p {
    font: italic 18px "Cambria", sans-serif;
    color: var(--primary-color);
    margin: 0px;
}


main {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
main p {
    margin: 0px 50px;
    text-align: center;
}
.angebot p {
    text-align: left;
}
.menu-bar a {
    text-decoration: none;
    font: italic 23px "Cambria", sans-serif;
    text-transform: uppercase;
    color: var(--background-color);
}
main a {
    font: italic 18px "Cambria", sans-serif;
    color: var(--link-color);
    display: block;
    text-align: center;
}
footer a {
    font: italic 14px "Cambria", sans-serif;
    color: white;
    text-decoration: underline;
    cursor: pointer;
}
.center {
    display: block;
    margin: 30px auto 0px auto;
}
@keyframes pop-button {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
    }
}
button {
    padding: 4px 14px 6px 12px;
    border: none;
    border-radius: 20px;
    font: italic 18px "Cambria", sans-serif;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    animation: pop-button 1s ease-in-out;
    animation-delay: 0.5s;
    cursor: pointer;
}
.box1 {
    position: relative;
    box-sizing: border-box;
    border: 1px solid var(--primary-color);
    max-width: 500px;
    border-radius: 20px;
    padding: 13px 18px;
    margin: 30px auto;
}
.box2 {
    position: relative;
    box-sizing: border-box;
    border: 1px solid var(--primary-color);
    max-width: 500px;
    border-radius: 20px;
    padding: 13px 18px;
    margin: 0px auto;
}
header {
    position: relative;
    background-color: var(--primary-color);
    height: 150px;
    border-radius: 0 0 50% 50% / 0 0 40% 40%;
}
.logo-picture {
    max-width: 280px;
    position: absolute;
    top: 47%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
@keyframes pop-hamburger {
    0% {
      transform: translate(-50%, -50%) scale(1);
    }
    50% {
      transform: translate(-50%, -50%) scale(1.2);
    }
    100% {
      transform: translate(-50%, -50%) scale(1);
    }
}
.hamburger-picture {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: pop-hamburger 1s ease-in-out;
    animation-delay: 0.5s;
    cursor: pointer;
}
.menu-bar {
    max-width: 500px;
    margin: 45px auto -10px auto;
    background-color: var(--primary-color);
    border-radius: 20px;
    padding: 10px;
    display: none;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 2s ease, transform 1s ease;
    list-style-type: none;
}
.menu-bar.show {
    display: block;
    opacity: 1;
    transform: translateX(0);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.menu-bar li {
    padding: 10px 0px 10px 0px;
    text-align: center;
}
.blurred {
    filter: blur(5px);
    pointer-events: none;
}
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.popup-content {
    background: var(--background-color);
    padding: 20px;
    max-width: 500px;
    max-height: 80vh;
    border-radius: 8px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    overflow-y: auto;
}
ol {
    padding-left: 16px;
}
ol li {
    font: italic 18px "Cambria", sans-serif;
    color: var(--primary-color);
    padding-left: 15px;
    margin-top: 10px;
    text-align: start;
}
.intro {
    text-align: center;
    margin-top: 40px;
}
cite {
    margin-top: 10px;
    display: block;
    max-width: 230px;
    font: italic 13px "Cambria", sans-serif;
    color: var(--primary-color);
}
.foot-bottom {
    position: absolute;
    bottom: 0px;
    right: 13px;
}
.break-container {
    display: flex;
    align-items: center;
    text-align: center;
    max-width: 350px;
    margin: 30px auto 0 auto;
}
.break-line {
    background-color: var(--primary-color);
    height: 1px;
    flex-grow: 1;
}
.or-text {
    padding: 0 10px;
}
.contact-arrange {
    display: flex;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.contact-container {
    width: 50%;
}
.contact-container:first-child {
    padding-top: 10px;
}
.contact-container p {
    margin: 0px;
}
.ps-text {
    margin-top: 10px;
}
.offer {
    display: flex;
    justify-content: space-between;
    padding-bottom: 14.5px;
    border-bottom: 1px solid var(--primary-color);
}
.offer p {
    display: flex;
    align-items: end;
    margin: 0px;
}
.none-margin {
    margin: 12px 0px 0px 0px;
}
.options {
    display: flex;
    justify-content: space-between;
}
.end {
    display: flex;
    align-items: end;
}
.foot-right {
    position: absolute;
    bottom: 120px;
    right: 0px;
}
.small-comment {
    margin-top: 5px;
    font: italic 13px "Cambria", sans-serif;
}
.next-button {
    display: block;
    margin: 15px auto 0 auto;
}
#intro-form-page {
    margin: 30px 50px 0 50px;
}
.form-container {
    display: flex;
    margin: 30px 50px 0 50px;
}
@media (min-width: 900px) {
    .form-container {
        display: flex;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    #intro-form-page {
        max-width: 800px;
        margin: 40px auto 0px auto;
    }
}
.form-container * {
    box-sizing: border-box;
}
.form-container p {
    margin: 0;
}
.feet-left-side {
    position: relative;
    width: 30px;
}
.feet-left-side img:first-child {
    transform: rotate(180deg) translate(50%, 0);
    width: 20px;
    position: absolute;
    left: 15px;
}
.feet-left-side img:not(:first-child) {
    transform: rotate(180deg) translate(50%, 50%);
    width: 20px;
    position: absolute;
    left: 15px;
}
.progressbar {
    width: 5px;
    background-color: var(--secondary-color);
    border-radius: 2.5px;
}
.progress {
    width: 5px;
    background-color: var(--primary-color);
    border-radius: 2.5px;
    height: 123px;
    transition: height 0.5s ease;
}
.feet-right-side {
    position: relative;
    width: 30px;
}
.feet-right-side img {
    transform: scaleY(-1) translate(-50%, 50%);
    width: 20px;
    position: absolute;
    left: 15px;
}
.feet2 {
    top: 123px;
}
.form-box {
    width: calc(100% - 80px);
}
.form-part:not(:first-child) {
    margin-top: 15px;
}
.input-area {
    margin-top: 10px;
    display: flex;
}
.stripe {
    width: 1px;
    background-color: var(--primary-color);
}
.input-fields {
    box-sizing: border-box;
    margin-left: 10px;
    width: 100%;
}
.input-fields label {
    display: none;
}
.input-fields input {
    position: relative;
    box-sizing: border-box;
    height: 35px;
    width: 100%;
    border-radius: 17.5px;
    border: 1px solid var(--primary-color);
    padding-left: 15px;
    font: italic 16px "Cambria", sans-serif;
}
.input-fields select {
    position: relative;
    box-sizing: border-box;
    height: 35px;
    width: 100%;
    border-radius: 17.5px;
    border: 1px solid var(--primary-color);
    padding-left: 15px;
    padding-right: 40px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    font: italic 16px "Cambria", sans-serif;
}
.arrow {
    width: 14.7px;
    position: absolute;
    top: 17.5px;
    right: 11px;
    transform: translate(0, -50%);
}
.input-field:first-child {
    position: relative;
}
.input-field {
    position: relative;
}
.input-field:not(:last-child) {
    margin-bottom: 15px;
}
#part5 {
    display: none;
}
.checked-icon {
    width: 17px;
    position: absolute;
    top: 17.5px;
    right: 10px;
    transform: translate(0, -50%);
}
.checkboxes {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.checkpairs {
    display: flex;
}
.checkpairs:not(:first-child) {
    margin-top: 5px;
}
.checktext {
    font: italic 18px "Cambria", sans-serif;
    color: var(--primary-color);
    margin: 0px;
    margin-left: 10px;
}
.submit-form {
    cursor: pointer;
    margin-top: 20px;
    padding: 4px 14px 6px 12px;
    border: none;
    border-radius: 20px;
    font: italic 18px "Cambria", sans-serif;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    animation: pop-button 1s ease-in-out;
    animation-delay: 0.5s;
}
.img-sfpv {
    margin: 30px 50px 0px 50px;
    width: 250px;
}
.img-af {
    margin: 30px 50px 0px 50px;
    width: 300px;
    border-radius: 150px;
}
.img-gutscheine {
    margin: -15px 50px -55px 50px;
    width: 380px;
}
.img-container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.top-img {
    margin: 0 30px 8px 30px;
    display: flex;
}
.top-img img {
    width: calc(33.33% - 5.33px);
    height: auto;
}
.top-img img:not(:last-child) {
    margin-right: 8px;
}
.bottom-img {
    margin: 0 30px 8px 30px;
}
.bottom-img img {
    width: 100%;
}
footer {
    margin-top: 30px;
    background-color: var(--primary-color);
    height: 140px;
    border-radius: 50% 50% 0 0 / 40% 40% 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
footer p {
    color: var(--secondary-color);
    text-align: center;
}

/* Checkbox from CSS Scan */
.checkbox-wrapper-46 {
    margin-left: 10px;
}
.checkbox-wrapper-46 input[type="checkbox"] {
    display: none;
    visibility: hidden;
}
.checkbox-wrapper-46 input[type="radio"] {
    display: none;
    visibility: hidden;
}
.checkbox-wrapper-46 .cbx {
    display: flex;
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
}
.checkbox-wrapper-46 .cbx span {
    display: inline-block;
    vertical-align: middle;
    transform: translate3d(0, 0, 0);
}
.checkbox-wrapper-46 .cbx span:first-child {
    position: relative;
    width: 18px;
    height: 18px;
    border-radius: 3px;
    transform: scale(1);
    vertical-align: middle;
    border: 1px solid var(--primary-color);
    transition: all 0.2s ease;
    margin: 0px !important;
    background-color: var(--secondary-color);
}
.checkbox-wrapper-46 .cbx span:first-child svg {
    position: absolute;
    top: 3px;
    left: 2px;
    fill: none;
    stroke: var(--secondary-color);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 16px;
    stroke-dashoffset: 16px;
    transition: all 0.3s ease;
    transition-delay: 0.1s;
    transform: translate3d(0, 0, 0);
}
.checkbox-wrapper-46 .cbx span:first-child:before {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    display: block;
    transform: scale(0);
    opacity: 1;
    border-radius: 50%;
}
.checkbox-wrapper-46 .cbx span:last-child {
    font: italic 18px "Cambria", sans-serif;
    color: var(--primary-color);
    margin-left: 10px;
}
.checkbox-wrapper-46 .inp-cbx:checked + .cbx span:first-child {
    background: var(--primary-color);
    border-color: var(--primary-color);
    animation: wave-46 0.4s ease;
}
.checkbox-wrapper-46 .inp-cbx:checked + .cbx span:first-child svg {
    stroke-dashoffset: 0;
}
.checkbox-wrapper-46 .inp-cbx:checked + .cbx span:first-child:before {
    transform: scale(3.5);
    opacity: 0;
    transition: all 0.6s ease;
}
@keyframes wave-46 {
    50% {
        transform: scale(0.9);
    }
}
