:root {
    --branding-color: #ff7404;
    --secondary-color: #2c2c2c;
    --header-height: 65px;
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
a {
    text-decoration: none;
}
p,
span,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--secondary-color);
}
.scroll-offset {
    position: absolute;
    top: calc(-1 * var(--header-height));
}
.section-headline {
    position: absolute;
    top: 60px;
    left: 5vw;
    z-index: 11;
}
.section-headline h4 {
    font-size: 22.5px;
    font-weight: 600;
    line-height: 30px;
    padding-right: 10px;
    text-transform: uppercase;
}
.section-headline-underline {
    height: 4.5px;
    width: calc(100% + 5vw);
    background-color: var(--branding-color);
    margin-left: -5vw;
    transform: skew(-20deg) translateX(-3px);
}
