.header {
    position: relative;
    padding: 100px 30px;
    min-height: 75vh;
    background-position: 50% 10%;
    background-size: cover;
    background-repeat: no-repeat;
}
.header::before {
    position: absolute;
    inset: 0;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background-image: linear-gradient(#54545445, #000000A8);
}


/* Overlays */
.header .overlay-top {
    position: absolute;
    left: 50%;
    top: 0; 
    transform: translate(-50%, -40%);
}
.header .overlay-top > img {
    width: 109px;
    height: auto;
}
.header .overlay-bottom {
    position: absolute;
    bottom: 0;
    left: 50%; 
    transform: translate(-50%, 50%);
}
.header .overlay-bottom > div {
    position: relative;
}
.header .overlay-bottom .tekst {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 10px);
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 2.4px;
    color: #484848;
    white-space: nowrap;
    text-transform: uppercase;
}


.header .wrapper{
	margin-top: 300px;
} 

.header .title {
    width: 100%;
    text-align: center;
    font-size: 120px;
    line-height: 122px;
    color: white;
    z-index: 1;
}

.header .excerpt {
    display: block;
    margin-top: 5px;
    width: 100%;
    text-align: center;
    font-size: 40px;
    line-height: 60px;
    color: white;
    z-index: 1;
}

.header .button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 24px;
    gap: 32px;
    width: 100%;
    z-index: 1;
}
.header .button-container .button {
    text-align: center;
}
.header .button-container .button:nth-child(odd) {
    color: white;
    background-color: #A1AB96;
}
.header .button-container .button:nth-child(even) {
    color: white;
    background-color: transparent;
    border-color: white;
}


@media screen and (max-width: 1180px) and (orientation: portrait),
screen and (max-width: 1024px) {
	.header .wrapper{
		margin-bottom: unset;
	}
    .header .overlay-top {
        display: none;
    }
}


@media screen and (max-width: 767px) {
    .header {
        padding: 85px 15px;
        min-height: unset;
    }

    .header .title {
        font-size: 46px;
        line-height: 52px;
    }
    .header .excerpt {
        margin-top: 8px;
        font-size: 26px;
        line-height: 30px;
    }
    .header .button-container {
        margin-top: 22px;
        gap: 12px;
    }
    .header .button-container .button {
        width: 100%;
        max-width: 274px;
    }
}