@font-face {
    font-family: "DIN Pro";
    src: url(/fonts/DINNextLTPro-Regular.ttf) format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "DIN Pro";
    src: url(/fonts/DINNextLTPro-Bold.ttf) format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --bs-body-font-family: "DIN Pro", -apple-system, BlinkMacSystemFont,
        "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji",
        "Segoe UI Emoji", "Segoe UI Symbol";
}

body {
    font-size:1.375rem; /* 22px (assuming 16px root) */
}

p {
    line-height:1.5;
    margin-bottom:2rem;
}

h1 {
    font-size:2rem;
    line-height:1.5;
    font-weight:700;
}

h2 {
    font-size: 3.25rem;
    line-height: 1.2;
    font-weight: 700;
    color: #1C4C36;
}

strong {
    color:#1C4C36;
}

img.border {
    --bs-border-width: 2px;
    --bs-border-color: #C14225;
    --bs-border-style: solid;
    border-radius: 1.5rem;
}

a {
    text-decoration:none;
    color: inherit;
}

.small {
    font-size:0.875rem;
}

.border-top-gradient {
    /* gradient from #F3CD24 to #AC8400 */
    border-top: 9px solid;
    border-image: linear-gradient(to right, #F3CD24, #AC8400) 1;
}

.legal-notices p {
    margin: 0;
}

#hero-banner {
    background-size: cover;
    background-position: center;
    min-height: 385px;
}

@media (max-width: 768px) {

    body {
        font-size: 1.125rem; /* 18px (assuming 16px root) */
    }

    #hero-banner {
        min-height: 258px;
    }
}