:root {
    --primary: #3553A0;
    --primaryLight: #0283C7;
    --secondary: #D95620;
    --secondaryLight: #F1914C;
    --headerColor: #1a1a1a;
    --bodyTextColor: #4e4b66;
    --bodyTextColorWhite: #fafbfc;
    /* 16px - 18px */
    --topperFontSize: clamp(calc(16/16 * 1rem), 1.6vw, calc(18/16 * 1rem));
    /* 31px - 49px */
    --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
    --bodyFontSize: 1rem;
    /* 60px - 100px top and bottom */
    --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
}

body,
html {
    margin: 0;
    padding: 0;
    font-family: "Tuffy", Arial, sans-serif;
    font-size: 105%;
    color: var(--bodyTextColor);
}

*,
*:before,
*:after {
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
}

h1,
h2,
h3,
h4 {
    font-family: "Tuffy", Arial, sans-serif;
    font-weight: 700;
    color: var(--headerColor);
    font-size: var(--headerFontSize);
}

.bold {
    font-weight: 700;
}

.italic {
    font-style: italic;
}

.cs-topper {
    font-size: var(--topperFontSize);
    line-height: 1.2em;
    text-transform: uppercase;
    text-align: inherit;
    letter-spacing: .05em;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
    display: block;
}

.cs-title {
    font-size: var(--headerFontSize);
    font-weight: 700;
    line-height: 1.2em;
    text-align: inherit;
    max-width: 43.75rem;
    margin: 0 0 1rem 0;
    color: var(--headerColor);
    position: relative;
}

.cs-text {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    max-width: 40.625rem;
    margin: 0;
    color: var(--bodyTextColor);
}