section {
    position: relative;
    overflow: hidden;
}

/* SVGs */
.logo {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Menu */

.menu .menu_entries {
    color: #fff;
}

/* transport */
.transport {
    align-items: center;
}

    .transport h1 {
        font-size: 2.62rem;
        margin: 0;
        color: #fff;
    }

    .transport form {
        align-items: center;
        color: #000;
        font-size: 1rem;
    }

        .transport form input:not([type="radio"]):not([type="checkbox"]), 
        .transport form textarea,
        .transport form select
        {
            border-radius: 20vw;
            padding: 0.85rem 1.75rem;
            outline: none;
            border: none;
            box-shadow: 0px 0px 0.77rem rgba(0, 0, 0, .1);  
            width: 100%;   
            font-size: 1rem;
            margin-bottom: 1.5rem;  
        }

        .transport form input[type="radio"] + label,
        .transport form input[type="checkbox"] + label
        {
            font-size: 0.75rem;
            padding-left: 0.5rem;
            font-weight: normal;
        }

        .transport form input[type="submit"] {
            padding: 0.5rem 1.75rem;
            margin-top: 2rem;
            max-width: none;
        }

        .transport form label {
            font-weight: bold;
            padding-bottom: 1rem;
            padding-top: 0.5rem;
        }

        .transport form p {
            font-weight: bold;
            font-size: 0.75rem;
            text-align: center;
            padding-left: 0;
            padding-bottom: 0.5rem;
        }

    /* Footer */
    .footer .logo {
        position: relative;
        left: 0;
    }        

    /* Slider */
    .slider-container {
        width: 30rem;
        height: 22.5rem;
        margin-top: -4rem;
    }

.step-by-step {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    min-height: 30rem;
}

    .step-by-step .questionaire {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

        .step-by-step .questionaire .step.hide {
            display: none;
        }

        .step-by-step .questionaire .step {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .step-by-step .questionaire .nav {
            display: flex;
            flex-wrap: nowrap;
            width: 100%;
        }

        .step-by-step .questionaire .nav .button {
            max-width: none;
            flex-grow: 1;
            padding: 0.5rem 0;
            width: initial;
            margin: 0;
        }

        .step-by-step .questionaire .nav .button.back {
            background: #3d3b3e;
        }

        .step-by-step .questionaire .nav .button.back:hover {
            background: rgba(61, 59, 62, 0.85)
        }

        .step-by-step .questionaire .nav .button:not(.round-left):not(.round-right):not(.round-both) {
            display: none;
        }

        .step-by-step .questionaire .nav .button.round-left {
            border-top-right-radius: 0;
            border-bottom-right-radius: 0;
        }

        .step-by-step .questionaire .nav .button.round-right {
            border-top-left-radius: 0;
            border-bottom-left-radius: 0;
        }

    .step-by-step .progress {
        position: absolute;
        left: 4em;
        box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);
        /* padding: 1.35rem; */
        border-radius: 1rem;
        max-width: 15rem;
    }

        .step-by-step .progress .content {
            padding: 1rem;
        }

        .step-by-step .progress .title {
            border-radius: 1rem;
            border-bottom-left-radius: 0;
            border-bottom-right-radius: 0;
            background: linear-gradient(to right, #FFC070, #FFC070 0%, #FFDC4C 100%);
            color: #fff;
            width: 100%;
            padding: 0.75rem 1.25rem;
            text-align: center;
        }

            .step-by-step .progress .list span {
                display: block;
                font-size: 0.85rem;
                margin-top: 0.25rem;
            }

                .step-by-step .progress .list span.done {
                    text-decoration: line-through;
                }

                .step-by-step .progress .list span.active {
                    font-weight: bold;
                }

                .step-by-step .progress .list span.disabled {
                    color:rgba(0, 0, 0, 0.25)
                }

.slider-container .slider-content {
    top: 42.5%;
}