*:last-child {
    margin-bottom: 0;
}

.wrapper {
    overflow: hidden;
}

body {
    font-family: 'Arial', serif;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0.64px;
    color: var(--bodyColor);
    font-weight: 400;
}

h1 {
    color: var(--white);
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.96px;
    font-weight: 400;
    text-transform: uppercase;
    font-family: 'Matiz-Bh', serif;
}

h2,
.heading-xl {
    font-size: 23px;
    line-height: 28px;
    letter-spacing: 1.84px;
    font-weight: 400;
    font-family: 'Matiz-Bh', serif;
    text-transform: uppercase;
    color: var(--bodyColor);
}

h3,
.heading-l {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 1.82px;
    text-transform: uppercase;
    font-family: 'Hanken-Grotesk-Bh', serif;
    color: var(--braun);
    font-weight: 300;
}

h4,
.heading-m {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.96px;
    font-weight: 400;
    font-family: 'Matiz-Bh', serif;
}

h5,
.heading-s {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 1px;
    font-family: 'Noto-Serif-Bh', serif;
    font-weight: 700;
    font-style: italic;
    text-transform: none;
}

@media(min-width: 768px) {
    h1 {
        font-size: 18px;
        line-height: 26px;
        letter-spacing: 1.08px;
    }

    h2,
    .heading-xl {
        font-size: 40px;
        line-height: 50px;
        letter-spacing: 3.2px;
    }

    h3,
    .heading-l {
        font-size: 18px;
        line-height: 28px;
        letter-spacing: 2.34px;
    }

    h4,
    .heading-m {
        font-size: 25px;
        line-height: 34px;
        letter-spacing: 1.5px;
    }

    h5,
    .heading-s {
        font-size: 20px;
        line-height: 30px;
    }
}

@media(min-width: 1024px) {
    h1 {
        font-size: 36px;
        line-height: 45px;
        letter-spacing: 2.16px;
    }

    h2,
    .heading-xl {
        font-size: 75px;
        line-height: 80px;
        letter-spacing: 6px;
    }

    h3,
    .heading-l {
        font-size: 30px;
        line-height: 36px;
        letter-spacing: 3.9px;
    }

    h4,
    .heading-m {
        font-size: 40px;
        line-height: 55px;
        letter-spacing: 2.4px;
    }

    h5,
    .heading-s {
        font-size: 30px;
        line-height: 30px;
        letter-spacing: 1.5px;
    }
}

a {
    color: var(--braun);
}

a:hover {
    color: var(--blue);
}

a:active {
    color: var(--braun);
}

ul {
    margin: 0;
    padding: 0;
}

.list li {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.32px;
    font-weight: 700;
    position: relative;
    list-style: none;
    padding-left: 30px;
    margin-bottom: 10px;
}

.list li:before {
    content: '';
    background-image: url('../images/icons/icon-list.svg');
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 9px;
    left: 0;
    width: 15px;
    height: 8px;
}

.list li:last-child {
    margin-bottom: 0;
}


/* Button styles */

button,
.button {
    transition: all 0.3s ease-in-out;
    padding: 3px 11px;
    font-size: 13px;
    line-height: 24px;
    letter-spacing: 1.3px;
    font-weight: 500;
    display: inline-block;
    cursor: pointer;
    color: var(--white);
    background-color: rgba(75, 70, 70, .3);
    text-transform: uppercase;
    text-align: center;
    font-family: 'Hanken-Grotesk-Bh', serif;
    border-radius: 20px;
    box-shadow: inset 0 0 0 1.5px var(--white);
}

button:hover,
button:active,
.button:hover,
.button:active {
    background-color: rgba(27, 104, 130, .5);
    color: var(--white);
}

.button {
    min-width: 230px;
}

@media(min-width: 768px) {
    button,
    .button {
        font-size: 14.5px;
        letter-spacing: 1.45px;
        padding: 6px 11px;
    }

    .button {
        min-width: 244px;
    }
}

@media(min-width: 1280px) {
    button,
    .button {
        font-size: 16px;
        letter-spacing: 1.6px;
        padding: 8px 11px;
    }

    .button {
        min-width: 332px;
    }
}