* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

body {
    font-family: Arial, sans-serif;

}

.wrapper {
    margin: auto;
    width: 100%;
    max-width: 110vw;
    min-height: 80vh;
    padding-top: 180px;
}

.header-container {
    width: 100%;

    border-bottom: 1px solid #000;
    box-shadow: 0px 2px 0px rgb(0 0 0 / 0.2);
    background-color: #fff;
    position: fixed;
}

.header-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 164px;
    min-height: 180px;
    padding: 0 5em;
    max-width: 100%;
}

.header-logo {
    font-size: 1.25rem;
    letter-spacing: -1.5px;
    font-weight: 500;
}

.header-nav {
    max-width: 100%;
    transition: all 0.3s ease-out;
}

.nav-list {
    display: flex;
    justify-content: space-between;
    align-content: center;
    gap: 48px;
}

.nav-item,
.nav-item-button {
    font-size: 1.25rem;
    list-style: none;
}

.nav-item {
    margin: auto;
}

.nav-item a {
    text-decoration: none;
    color: #000;
}

.nav-item a:hover {
    text-decoration: underline;
}

.nav-item-button>button {
    font-size: 1.25rem;
    color: #fff;
    background-color: #000;

    border-radius: .5em;
    padding: .3em .7em;
}

.hamburger {
    display: none;
}

.nav-item-button>button:hover {
    background-color: #ccc;
}

.headline-container {
    min-height: 20vh;
    padding: 6.25em 5em;
}

.headline-content {
    display: flex;
    align-items: center;
    column-gap: 40px;
    /* justify-content: space-between; */
}

.headline-content-text {
    width: 724px;
    margin-right: 5.938rem;
}


.headline-content-text h1 {
    font-size: 4em;

    margin: 0 0 1.5rem 0;
}

.headline-content-text>label {
    color: #828282;
    font-size: 1.5em;
    margin: 0 0 1.5rem 0;
}

.img-responsive {
    width: 100%;
    height: auto;
}

.headline-content-text p {
    font-size: 1.25em;
}


footer {
    width: 100%;
}

.footer-container {
    padding: 0 5em;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-content: center;
    border-top: 1px solid #000;
    padding-top: 2.938em;
}

.footer-nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 0 10px;

}

.footer-nav-list {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 187px;
}

.footer-nav-list>li {
    list-style: none;
    padding-bottom: 1.5em;
}

.footer-nav-list>li:nth-child(1) {
    font-weight: bold;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-content: space-between;
    padding: 20px 0;
}


@media(max-width: 650px) {
    .header-content{
        padding: 0 30px;
    }

    .hamburger {
        display: block;
    }
    .header-nav {
        position: fixed;
        top: 180px;
        left: 0;
        width: 100%;
        padding: 1px 0px;
        background-color: #fff;
        transform: translate(-100%);
        transition: all 0.3s ease-in-out;
    }

    .nav-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px 0px;
        row-gap: 20px;
    }

    .nav-list.active {
        transform: translate(100%);
        background-color: #fff;
    }

    .ham-menu {
        height: 20px;
        width: 20px;
        margin-top: 5px;
        margin-left: 0;
        position: relative;
    }

    .ham-menu span {
        height: 3px;
        width: 100%;
        background-color: #000;
        border-radius: 20px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: all 0.3s ease-in-out;
    }

    .ham-menu span:nth-child(1) {
        top: 25%;
    }

    .ham-menu span:nth-child(3) {
        top: 75%;
    }

    .ham-menu.active span:nth-child(1) {
        top: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .ham-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .ham-menu.active span:nth-child(3) {
        top: 50%;
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    .headline-content {
        flex-direction: column;
    }

    .headline-container {
        min-height: 20vh;
        padding: 3em;
    }

    .headline-content-text {
        width: 100%;
        text-align: center;
        margin-right: 0;
    }

    .footer-content {
        padding-top: 1em;
        display: block;
    }

    .footer-logo {
        text-align: center;
        line-height: 4em;
    }

    .footer-nav-list {
        padding-left: 10px;
    }
}

@media (max-width: 990px) {
    .headline-content {
        flex-direction: column;
    }

    .headline-container {
        min-height: 20vh;
        padding: 3em;
    }

    .headline-content-text {
        width: 100%;
        text-align: center;
        margin-right: 0;
    }
    .headline-content-image
    {
        margin-top: 40px;
    }

    .footer-nav {
        justify-content: center;
        gap: 0 20px;
    }

    .footer-content {
        padding-top: 1em;
        display: block;

    }

    .footer-logo {
        text-align: center;
        line-height: 4em;
    }

    .footer-nav-list {
        padding-left: 10px;
        width: 80px;
    }
}