:root {
    background-color: rgb(var(--beige-01)) !important;
}












.hero {
    background-image: url("/public/pictures/background.avif");
    background-color: rgba(0, 0, 0, 0.5);
    background-position: center;
    background-size: cover;
    /* height: 700px; */
    width: calc(100%);

    display: grid;
    grid-template: auto 1fr auto / 1fr;
    z-index: 5;
    height: 100vh;
    max-height: 200vw;
    overflow: hidden;
}

.background {
    grid-row: 1/4;
    grid-column: 1;
    background-color: rgba(var(--black-01), 0.8);
}



.hero_content {
    grid-row: 2;
    grid-column: 1;
    max-width: 800px;
    width: calc(100% - 40px);
    text-align: center;
    margin: auto;
    padding: 20px;
    position: relative;
    top: -50px;
}

.hero_content h1 {
    font-size: 70px;
    margin-bottom: 20px;
}

.hero_content p {
    max-width: 100%;
    opacity: 0.8;
    font-size: 16px;
}


.brand_showcase {
    display: none;
    height: 75px;
    grid-row: 3;
    grid-column: 1;
    background-color: rgb(var(--blue-01));
}












.collaboration {
    color: rgb(var(--black-01));
    display: grid;
    grid-template: 1fr / 1fr 400px;
    gap: 10%;
    padding: 5vw;
    height: 500px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
}

.collaboration h2 {
    font-size: 40px;
    line-height: 100%;
    margin-bottom: 20px;
    position: relative;
    left: -100vw;
}

.collaboration p {
    font-size: 14px;
    position: relative;
    left: -100vw;
}

.collaboration_text {
    display: grid;
    grid-template: 1fr / auto 1fr;
    gap: 10px;
    height: fit-content;
    overflow: hidden;
}

.side_line {
    width: 5px;
    background-color: rgb(var(--beige-02));
}


.balance_scale img {
    width: 100%;
}











.benefits_container .transision {
    height: 200px;

    background-image: url("/public/pictures/wave.png");
    background-repeat: repeat-x;
    background-position: center;
}

.benefits_container .content {
    background-color: rgb(var(--black-01));
    display: flex;
    gap: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 7.5vw;


}

.benefits_container content>div {
    width: fit-content;
}

.benefits_container .content h2 {
    width: fit-content;
    text-decoration: underline solid rgb(var(--beige-02)) 4px;
    text-underline-offset: 5px;
    font-size: 40px;
    text-align: center;
}

.benefits {
    display: grid;
    grid-template: auto auto / repeat(3, 26%);
    gap: 100px 11%;
    max-width: 1200px;
    margin-top: 50px;
    z-index: 2;
}

.benefits h4 {
    font-size: 25px;
    line-height: 1.15;
    margin-bottom: 15px;
    font-weight: 500;
    position: relative;
    left: -100vw;
}

.benefits p {
    font-size: 12px;
    opacity: 0.8;
    line-height: 1.5;
    position: relative;
    left: -100vw;
}

.benefit {
    overflow: hidden;
}









.service_cta {
    display: grid;
    grid-template: 1fr 1fr / 1fr;
    z-index: 3;
}

.service_cta .bended_rectangle {
    width: 100%;
    grid-row: 1/3;
    grid-column: 1;
    z-index: 3;
}

.service_cta .background {
    background-color: rgb(var(--black-01));
    grid-row: 1;
    grid-column: 1;
}

.service_cta .content {
    grid-row: 1/3;
    grid-column: 1;
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.service_cta .content h3 {
    font-size: 25px;
}

.service_cta .content button {
    background-color: rgb(var(--beige-02));
    padding: 5px 15px;
    font-size: 14px;
}











.social_proof {
    padding: 7.5vw;
    display: flex;
    align-items: center;
    flex-direction: column;
    z-index: 1;
}

.social_proof h2 {
    color: black;
    width: fit-content;
    text-decoration: underline solid rgb(var(--beige-02)) 4px;
    text-underline-offset: 5px;
    font-size: 40px;
    margin-bottom: 100px;
    text-align: center;
}

.partners {
    /* display: grid;
    grid-template: 1fr / repeat(3, 1fr);
    gap: 30px; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner_container {
    overflow: hidden;
    transition: all 1s ease-out;
    cursor: pointer;
}

.partner {
    display: grid;
    grid-template: auto 1fr / 100px 1fr;
    align-items: center;
    gap: 10px 20px;
    height: 100%;
    transform: translateY(-50vh);
    max-width: 400px;
}

.partner_container:hover {
    transform: scale(1.05);
}

.partner .background {
    grid-row: 1/3;
    grid-column: 1/3;
    border-radius: 150px 0 0 0;
    background-color: rgb(var(--black-01));
    width: 100%;
    height: 100%;
}

.partner .profile {
    grid-row: 1;
    grid-column: 1;
    width: 100%;
    border-radius: 10000px;
}

.partner .info {
    grid-row: 1;
    grid-column: 2;
    padding-right: 20px;
    padding-top: 10px;
    overflow: visible;
}

.partner .text {
    grid-column: 2;
    grid-row: 2;
    font-size: 14px;
    padding: 0 20px 20px 0;
    opacity: 0.8;
    line-height: 1.5;
}

.partner .info h3 {
    font-size: 25px;
    margin-bottom: 5px;
}

.partner .info .plattforms {
    display: flex;
    gap: 10px;
    opacity: 0.7;
    align-items: center;
}

.partner .info .plattform {
    display: flex;
    gap: 5px;
    align-items: center;
}

.partner .info .plattform img {
    height: 15px;
}













.bottom_cta {
    display: grid;
    grid-template: 1fr / 1fr;
    /* max-height: 900px; */
    overflow-y: hidden;
    z-index: 2;
    stroke: none;
    outline: none;
}

.bottom_cta .content {
    grid-row: 1;
    grid-column: 1;
    display: grid;
    grid-template: 1fr auto / 1fr;
}

.bottom_cta .background {
    top: -10px;
    grid-row: 1;
    grid-column: 1;
    width: 100%;
    max-height: 900px;
    object-fit: cover;
    object-position: top;
    overflow-y: hidden;
    height: 100%;
}


.bottom_cta .request_container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom_cta .request {
    max-width: 400px;
    padding: 20px;
    display: grid;
    grid-template: auto 1fr auto / 1fr;
    gap: 20px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.bottom_cta .request h3 {
    text-align: center;
    font-size: 30px;
}

.bottom_cta button {
    background-color: rgb(var(--beige-02));
    padding: 7.5px 15px;
}

.bottom_cta .plattform {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 5px 10px;
    display: grid;
    grid-template: 1fr / auto 1fr;
    align-items: center;
    gap: 10px;
}

.bottom_cta .plattform .selection_container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.bottom_cta .plattform .selection_container .toggleOptions {
    width: 15px;
    height: 11px;
}

.bottom_cta .plattform .select img {
    width: 25px;
}

.bottom_cta .plattform .select .options {
    flex-direction: column;
    display: none;
    position: absolute;
    background-color: rgb(var(--blue-01));
    padding: 10px;
    gap: 10px;
    margin-top: 7.5px;
    margin-left: -10px;
}

.bottom_cta .plattform .select .options.visible {
    display: flex;
}

.bottom_cta .plattform .select .option {
    cursor: pointer;
}

.bottom_cta .plattform input {
    text-align: left !important;
}

.bottom_cta .plattform input::placeholder {
    text-align: left !important;
}

.bottom_cta .inputs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bottom_cta .input_container input {
    width: calc(100% - 30px);
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    padding: 7.5px 15px;
    text-align: center;
}

.bottom_cta .input_container input::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

.bottom_cta .input_container input:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: rgba(255, 255, 255, 0.6);
    opacity: 1;
    text-align: center;
}

.bottom_cta .input_container input::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: rgba(255, 255, 255, 0.6);
    opacity: 1;
    text-align: center;
}

.bottom_cta .input_container input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

.bottom_cta .input_container input::-ms-input-placeholder {
    /* Microsoft Edge */
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

.bottom_cta .input_container input::placeholder {
    /* Most modern browsers support this now. */
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}


.success {
    max-width: 300px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.success p {
    font-size: 20px;
    line-height: 1.2;
}

.success a {
    width: fit-content;
    margin: 0 auto;
    padding: 10px 20px;
    background-color: rgb(var(--beige-02));
}


.error {
    width: 100vw;
    position: fixed;
    top: 10px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 25;
}

.error .msg {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgb(116, 12, 12);
    padding: 7.5px 15px;
    width: 70%;
    font-size: 14px;
}

.error .msg img {
    height: 20px;
    width: auto;
}


.datenschutz {
    display: grid;
    grid-template: 1fr / auto 1fr;
    gap: 20px;
    font-size: 12px;
}
.datenschutz a {
    text-decoration: underline;
}
.datenschutz input {
    background: red;
    accent-color: rgb(var(--beige-01));
}











.footer_links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    font-size: 12px;
    opacity: 0.7;
}



















@media (max-width: 799px) {

    .hero_content {
        max-width: 500px;
        top: -50px;
    }

    .hero_content h1 {
        font-size: 40px;
        line-height: 1;
    }

    .hero_content p {
        font-size: calc(12px + 0.5vw);
    }






    .collaboration {
        grid-template: auto 1fr / 1fr;
        gap: 20px;
        padding: 100px 5vw 50px;
        align-items: center;
        justify-content: center;
    }

    .collaboration h2 {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .collaboration p {
        opacity: 0.8;
    }

    .collaboration_text {
        gap: 10px;
    }


    .balance_scale {
        grid-row: 1;
        height: auto;
    }

    .balance_scale img {
        width: calc(40% + 100px);
        display: block;
        margin: 0 auto;
    }













    .benefits_container .content {
        padding: 0px 7.5vw 100px;
    }

    .benefits_container content>div {
        width: fit-content;
    }

    .benefits_container .content h2 {
        font-size: 27.5px;
    }

    .benefits {
        display: flex;
        flex-wrap: wrap;
        gap: 50px 20px;
        justify-content: space-between;
    }

    .benefits>div {
        min-width: 40%;
        max-width: 200px;
        margin: 0 auto;
    }

    .benefits h4 {
        font-size: 20px;
    }

    .benefits p {
        font-size: 12px;
    }







    .service_cta {
        grid-template: 1fr 1fr / 1fr;
        align-items: center;
        justify-content: center;
    }

    .service_cta .bended_rectangle {
        width: 100%;
        height: 300px;
        object-fit: cover;
        object-position: center;
    }

    .service_cta .background {
        height: 100%;
        width: 100%;
    }

    .service_cta .content {
        margin-top: -20px;
    }

    .service_cta .content h3 {
        font-size: 20px;
    }

    .service_cta .content button {
        font-size: 12px;
    }









    .bottom_cta {
        display: grid;
        grid-template: 1fr / 1fr;
        /* max-height: 900px; */
        overflow-y: hidden;
        z-index: 2;
    }

    .bottom_cta .content {
        grid-row: 1;
        grid-column: 1;
        display: grid;
        grid-template: 1fr auto / 1fr;
    }

    .bottom_cta .background {
        grid-row: 1;
        grid-column: 1;
        height: 500px;
        object-fit: cover;
        object-position: top;
        overflow-y: hidden;
    }


    .bottom_cta .request_container {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .bottom_cta .request {
        max-width: 300px;
        width: 70%;
        padding: 20px;
        display: grid;
        grid-template: auto 1fr auto / 1fr;
        gap: 20px;
        background-color: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(5px);
    }

    .bottom_cta .request h3 {
        text-align: center;
        font-size: 30px;
    }

    .bottom_cta button {
        background-color: rgb(var(--beige-02));
        padding: 7.5px 15px;
    }

    .bottom_cta .plattform {
        background-color: rgba(255, 255, 255, 0.1);
        padding: 5px 10px;
        display: grid;
        grid-template: 1fr / auto 1fr;
        align-items: center;
        gap: 10px;
    }

    .bottom_cta .plattform .selection_container {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .bottom_cta .plattform .selection_container .toggleOptions {
        width: 15px;
        height: 11px;
    }

    .bottom_cta .plattform .select img {
        width: 25px;
    }

    .bottom_cta .plattform .select .options {
        flex-direction: column;
        display: none;
        position: absolute;
        background-color: rgb(var(--blue-01));
        padding: 10px;
        gap: 10px;
        margin-top: 7.5px;
        margin-left: -10px;
    }

    .bottom_cta .plattform .select .options.visible {
        display: flex;
    }

    .bottom_cta .plattform .select .option {
        cursor: pointer;
    }

    .bottom_cta .plattform input {
        text-align: left !important;
    }

    .bottom_cta .plattform input::placeholder {
        text-align: left !important;
    }

    .bottom_cta .inputs {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .bottom_cta .input_container input {
        width: calc(100% - 30px);
        background-color: rgba(255, 255, 255, 0.1);
        border: none;
        padding: 7.5px 15px;
        text-align: center;
    }

    .bottom_cta .input_container input::-webkit-input-placeholder {
        /* WebKit, Blink, Edge */
        color: rgba(255, 255, 255, 0.6);
        text-align: center;
    }

    .bottom_cta .input_container input:-moz-placeholder {
        /* Mozilla Firefox 4 to 18 */
        color: rgba(255, 255, 255, 0.6);
        opacity: 1;
        text-align: center;
    }

    .bottom_cta .input_container input::-moz-placeholder {
        /* Mozilla Firefox 19+ */
        color: rgba(255, 255, 255, 0.6);
        opacity: 1;
        text-align: center;
    }

    .bottom_cta .input_container input:-ms-input-placeholder {
        /* Internet Explorer 10-11 */
        color: rgba(255, 255, 255, 0.6);
        text-align: center;
    }

    .bottom_cta .input_container input::-ms-input-placeholder {
        /* Microsoft Edge */
        color: rgba(255, 255, 255, 0.6);
        text-align: center;
    }

    .bottom_cta .input_container input::placeholder {
        /* Most modern browsers support this now. */
        color: rgba(255, 255, 255, 0.6);
        text-align: center;
    }


}












@media (max-width: 1400px) {
    .social_proof {
        padding: 0;
        margin-bottom: 100px;
    }

    .social_proof h2 {
        font-size: 30px;
        margin-bottom: 50px;
        text-align: center;
    }

    .partners {
        grid-template: 1fr / repeat(3, 300px);
        gap: 30px;
        /* overflow-x: scroll; */
        width: calc(100% - 7.5vw);
        margin: 0 7.5vw;
        max-width: fit-content;
    }

    .partner {
        grid-template: auto 1fr / 75px 1fr;
        align-items: center;
        gap: 10px 20px;
    }

    .partner:first {
        margin-left: 9vw;
    }

    .partner .background {
        border-radius: 75px 0 0 0;
        width: 100%;
        height: 100%;
    }

    .partner .text {
        grid-column: 1/3;
        grid-row: 2;
        font-size: 14px;
        padding: 0 20px 20px 20px;
    }

}


@media (max-width: 1100px) {
    .service_cta .bended_rectangle {
        width: 150%;
        margin-left: -25%;
    }
}



/* Animations */



.hero {
    animation: bg 3s ease-in-out forwards;
}

.hero_content {
    transform: scale(10000%);
    animation: zoom 1.5s ease-out 1s forwards;
    opacity: 0;
    z-index: 5;
}

.collaboration.visible h2 {
    animation: horizontal_slide_in 1s ease-out forwards;
}

.collaboration.visible p {
    animation: horizontal_slide_in 1s ease-out 0.3s forwards;
}

.collaboration.invisible {
    animation: disappear 1s linear;
}

.collaboration.invisible h2,
.collaboration.invisible p {
    animation: slide_disappear 1s linear;
}








.benefits.visible h4 {
    animation: horizontal_slide_in 1s ease-out forwards;
}

.benefits.visible p {
    animation: horizontal_slide_in 1s ease-out forwards 0.3s;
}

.benefits.invisible h4,
.benefits.invisible p {
    animation: slide_disappear 1s linear;
}

.benefits.invisible {
    opacity: 1 !important;
}


.partners.visible .partner {
    animation: vertical_slide_in .7s ease-out forwards;
}


@keyframes bg {
    0% {
        background-size: 1000vw;
    }
    60% {
        background-size: calc(max(calc(100vh*1.5), 100%));
    }
    100% {
        background-size: calc(max(calc(100vh*1.5), 100%) + 10vh);
    }
}

@keyframes zoom {
    0% {
        opacity: 0;
        transform: scale(3000%);
    }

    20% {
        opacity: 1;
        transform: scale(110%);
    }

    100% {
        opacity: 1;
        transform: scale(100%);
    }
}

@keyframes disappear {
    0% {
        opacity: 1;
        visibility: visible !important;
    }

    100% {
        opacity: 0;
        visibility: visible !important;
    }
}

@keyframes slide_disappear {
    0% {
        position: relative;
        opacity: 1;
        visibility: visible;
        left: 0;
    }

    100% {
        position: relative;
        opacity: 0;
        visibility: visible;
        left: 0;
    }
}