* {
    box-sizing: border-box;
    font-family: Poppins;
}

body {
    width: 100%;
    min-height: 100vh;
    margin: 0;
    position: relative;
}

.maxWidth1960 {
    width: 100%;
    height: 100%;
    max-width: 1960px;
}

header {
    background-color: #E3E9EF;
    height: 119px;
    padding: 0 52px;
    display: flex;
    justify-content: center;
    box-shadow: 0px 5px 4px 0px #00000040;
    z-index: 10;
    position: relative;
}

.header_content {
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.header_menu {
    display: flex;
    gap: 40px;

    span,
    a {
        text-decoration: none;
        color: black;
        font-size: 20px;

        &:hover {
            cursor: pointer;
        }
    }
}

.logo {
    height: 110px;

    &:hover {
        cursor: pointer;
    }
}

#content {
    width: 100%;
    background-color: #E3E9EF;
    min-height: calc(100vh - 350px);
    height: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    position: relative;
    padding: 24px;
}

footer {
    width: 100%;
    height: 224px;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.footer_top {
    height: 100%;
    max-width: 1960px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 162px;
    margin-bottom: 32px;
}

.footer_bottom {
    height: fit-content;
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 44px;

    a {
        text-decoration: none;
        color: #00000080;

        &:hover {
            cursor: pointer;
        }
    }
}

.footer_contacts p {
    margin: 4px;
}

#copyright {
    position: absolute;
    margin: 0;
    bottom: 8px;
    right: 8px;
}

/* Default */
h1 {
    font-size: 48px;
    color: #062E4E;
    margin: 0;
    z-index: 100;
}

h2 {
    font-size: 24px;
    color: #062E4E;
}

input {
    outline: none;
}

button {
    z-index: 999;

    &:hover {
        cursor: pointer;
    }
}

.text_start {
    text-align: start;
}


/* home style */
#home {
    font-size: 20px;
    padding-bottom: 120px;
}

.home_img {
    height: 720px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#white_shadow_background {
    position: absolute;
    width: 1000px;
    height: 500px;

    @media (max-width: 1000px) {
        width: 800px;
    }

    @media (max-width: 800px) {
        width: 700px;
    }

    @media (max-width: 700px) {
        width: 99vw;
    }
}

#home_img_big {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 720px;
    max-height: calc(100vh - 119px);
    object-fit: cover;
}

.headlineText {
    font-size: 32px;
    color: #062E4E;
    margin-top: 8px;
    z-index: 200;
}

#vorteile {
    p {
        max-width: 903px;
        font-size: 20px;
    }
}

.white_shadow_box {
    max-width: 949px;
    width: 100%;
    min-height: 408px;
    height: fit-content;
    border-radius: 16px;
    box-shadow: 0px 5px 5px 0px #00000040;
    background-color: white;
}

.vorteile_box {
    margin-top: 120px;
    margin-bottom: 166px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    padding: 24px;

    h3 {
        margin: 0 0 24px 0;
    }
}

.vorteile_inner_points {
    display: flex;
    flex-direction: column;
    text-align: start;
    width: fit-content;
    font-size: 20px;

    span {
        display: block;
        padding-left: 18px;
        text-indent: -18px;
    }
}

#arrorUp {
    position: absolute;
    right: 52px;
    bottom: 52px;
    border: none;
    background-color: transparent;
    height: 32px;
    width: 32px;

    &:hover {
        cursor: pointer;
    }
}

.contact_button {
    width: 307px;
    height: 52px;
    border: none;
    border-radius: 16px;
    background-color: #062E4E;
    color: white;
    font-size: 16px;
}

/* contact style */
#contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: start;
    max-width: 100%;

    h2 {
        width: 100%;
        font-size: 24px;
        color: #062E4E;
    }
}

.contact_box {
    width: 949px;
    max-width: 100%;
    height: 440px;
    box-shadow: 0px 5px 5px 0px #00000040;
    background-color: white;
    border-radius: 16px;
    padding: 52px;
    position: relative;
}

#contactForm {
    display: flex;
    flex-direction: column;
    width: 652px;
    max-width: 100%;
    gap: 24px;

    input {
        border: none;
        border-bottom: #00000040 solid 1px;
        font-size: 16px;
    }
}

#formMessage {
    margin: 16px 0;
    color: #062E4E;
}

.submit_btn {
    position: absolute;
    bottom: 52px;
    left: 52px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    width: 132px;
    height: 46px;
    border: none;
    border-radius: 23px;
    background-color: #062E4E;
    color: white;
}

#response {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    width: 949px;

    h2 {
        text-align: start;
        width: 100%;
        font-size: 24px;
        color: #062E4E;
    }

    .reponse_inner_box {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 24px;

        h2 {
            text-align: center;
            margin: 0;
        }

        p {
            margin: 0;
            font-size: 24px;
        }
    }
}

@media (max-width: 900px) {
    footer {
        height: fit-content;
    }

    .footer_top {
        flex-direction: column;
        gap: 54px;
        margin: 48px 0;
    }
}

@media (max-width: 800px) {
    .header_menu {
        display: none;
    }

    .logo_footer,
    .logo {
        max-width: 100%;
    }

    .home_img {
        height: 35vh;
    }

    #home_img_big {
        height: 35vh;
    }

    .vorteile_inner_points {
        span {
            font-size: 16px;
        }
    }

    h1 {
        font-size: 40px;
    }

    .headlineText {
        font-size: 24px;
    }

    .contact_button {
        width: 224px;
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 24px;
    }

    .headlineText {
        font-size: 16px;
    }

    .contact_button {
        width: 188px;
        height: 36px;
        font-size: 12px;
    }

    #vorteile {
        p {
            font-size: 16px;
        }
    }

    .footer_bottom {
        justify-content: flex-start;
        margin-left: 8px;
    }

    .submit_btn {
        bottom: 24px;
    }
}