*:last-child {
    margin-bottom: 0;
}

body {
    font-family: 'Arial';
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.28px;
    color: var(--bodyColor);
    font-weight: 400;
}

h1 {
    color: #3D3D3D;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.96px;
    font-family: 'LexendDeca-Bh';
    font-weight: 700;
    text-transform: uppercase;
}

h2,
.heading-xl {
    color: var(--dark);
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 1.6px;
    font-family: 'Sen-Bh';
    font-weight: 800;
    text-transform: uppercase;
}

h3,
.heading-l {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 1.56px;
    text-transform: uppercase;
    font-family: 'LexendDeca-Bh';
    color: var(--beige);
    font-weight: 700;
}

h4,
.heading-m {
    color: #3D3D3D;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 1.6px;
    font-family: 'Sen-Bh';
    font-weight: 800;
    text-transform: uppercase;
}

h5,
.heading-s {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 1px;
    font-family: 'Noto-Serif-Bh';
    font-weight: 700;
    color: var(--grey);
    font-style: italic;
	text-transform: none;
}

@media(min-width: 768px) {
    h1 {
        font-size: 18px;
        line-height: 26px;
        letter-spacing: 1.44px;
    }

    h2,
    .heading-xl {
        font-size: 32px;
        line-height: 40px;
        letter-spacing: 2.56px;
    }

    h3,
    .heading-l {
        font-size: 18px;
        line-height: 28px;
        letter-spacing: 2.34px;
    }

    h4,
    .heading-m {
        font-size: 25px;
        line-height: 32px;
        letter-spacing: 2.5px;
    }
}

@media(min-width: 1024px) {
    h1 {
        font-size: 20px;
        line-height: 34px;
        letter-spacing: 1.6px;
    }

    h2,
    .heading-xl {
        font-size: 56px;
        line-height: 65px;
        letter-spacing: 4.48px;
    }

    h3,
    .heading-l {
        font-size: 22px;
        line-height: 36px;
        letter-spacing: 2.86px;
    }

    h4,
    .heading-m {
        font-size: 35px;
        line-height: 60px;
        letter-spacing: 3.5px;
    }

    h5,
    .heading-s {
        font-size: 30px;
        line-height: 30px;
        letter-spacing: 1.5px;
    }
}

a {
    color: var(--green);
}

a:hover {
    color: var(--lightBlue);
}

a:active {
    color: var(--green);
}

ul {
    margin: 0;
    padding: 0;
}

.list li {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.28px;
    color: var(--dark);
    font-weight: 400;
    position: relative;
    list-style: none;
    padding-left: 28px;
    margin-bottom: 10px;
    font-style: italic;
}

.list li:before {
    content: '';
    background-image: url('../icons/icon-list.svg');
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 8px;
    left: 0;
    width: 10px;
    height: 10px;
}

.list li:last-child {
    margin-bottom: 0;
}


/* Button styles */

button,
.button {
    transition: all 0.3s ease-in-out;
    padding: 5px 11px;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: 1.04px;
    font-weight: 700;
    display: inline-block;
    cursor: pointer;
    color: var(--white);
    background-color: var(--green);
    text-transform: uppercase;
    text-align: center;
    font-family: 'LexendDeca-Bh';
}

button:hover,
button:active,
.button:hover,
.button:active {
    background-color: var(--grey);
}

.button {
    min-width: 190px;
}

@media(min-width: 768px) {
    .button {
        min-width: 224px;
    }

    button,
    .button {
        font-size: 15px;
        letter-spacing: 1.2px;
    }
}

@media(min-width: 1024px) {

    .button {
        min-width: 283px;
    }
}

/* Font Styles/Alignment */
.relative {
    position: relative;
}


.bright,
.bright a,
.bright h1,
.bright h2,
.bright h3,
.bright h4,
.bright h5,
.bright h6,
.bright li,
.bright p {
    color: var(--white);
}

.bold,
.bold a,
.bold h1,
.bold h2,
.bold h3,
.bold h4,
.bold h5,
.bold h6,
.bold li,
.bold p {
    font-weight: 700;
}

.center,
.center a,
.center h1,
.center h2,
.center h3,
.center h4,
.center h5,
.center h6,
.center p,
.center li {
    text-align: center;
}

.capital-text,
.capital-text a,
.capital-text h1,
.capital-text h2,
.capital-text h3,
.capital-text h4,
.capital-text h5,
.capital-text h6,
.capital-text p,
.capital-text li {
    text-transform: uppercase;
}