:root {
    --color-white: #fff;
    --color-grey-mercury: #ebebeb;
    --color-grey-abalaster: #fafafa;
    --color-grey-smoke: #f2f2f2;
    --color-grey-button: #ddd;
    --color-grey-silver: #ccc;
    --color-grey-light: #d9d9d9;
    --color-grey-dark: #777;
    --color-blue-primary: #002060;
    --color-blue-prussian-hover: #00325f;
    --color-blue-prussian: #00305d;
    --color-blue-light: #d9e3ec;
    --color-blue-fresh: #0a7feb;
    --color-green: #00b050;
    --color-green-bitter-lemon: #cddb2e;
    --color-green-rio: #bdcb22;
    --color-yellow: #f6e420;
    --color-black: #444;
    --color-red: #d00000;
    --color-box-shadow: rgba(0, 0, 0, 0.12156862745098039);
    --color-box-shadow-hover: rgba(0, 0, 0, 0.3803921568627451);
    --color-backdrop: rgba(0, 0, 0, 0.8);
    --gradient-primary: 180deg, var(--color-white) 0%, #f7f7f7 75%, #e6e6e6 100%;
    --gradient-secondary: 45deg, #69a03b 0%, #f6e420 100%;
    --gradient-tertiary: 342deg, #69a03b 0%, #f6e420 100%;
    --gradient-blue: 180deg, var(--color-blue-primary) 0%,
    var(--color-blue-prussian) 100%;
    --gradient-teaser-hero: linear-gradient(
            90deg,
            rgba(246, 228, 32, 0.35) 0%,
            rgba(69, 197, 227, 0.45)
    );
    --gradient-calc: linear-gradient(
            90deg,
            rgba(191, 214, 48, 0.65) 0%,
            rgba(69, 197, 227, 0.65)
    );
    --font-title-hg: 3.5rem;
    --font-title-xl: 2.875rem;
    --font-title-ml: 2.5rem;
    --font-title-lg: 2.25rem;
    --font-title-xm: 2rem;
    --font-title-md: 1.75rem;
    --font-title-mobile-xl: 2.375rem;
    --font-title-mobile-lg: 1.875rem;
    --font-text-lg: 1.5rem;
    --font-text-md: 1.25rem;
    --font-text-rg: 1.125rem;
    --font-text-sm: 1rem;
    --font-text-sx: 0.9375rem;
    --font-text-xs: 0.875rem;
    --font-footer: 0.8125rem;
    --font-mention: 0.75rem;
    --border-radius: 50px;
    --border-radius-form: 2px;
    --box-shadow: 6px 4px 6px var(--color-box-shadow);
    --box-shadow-hover: 6px 4px 6px var(--color-box-shadow-hover);
    --box-shadow-button: 2px 2px 16px var(--color-box-shadow);
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-size: 62.5%;
    font-family: Arial, sans-serif;
    font-weight: 400;
}

/* HEADER */
header {
    display: flex;
    flex-direction: column;
    width: 100%;
}

header .header-top {
    display: flex;
    width: 100%;
}

header img {
    width: 252px;
    height: 253px;
    margin-bottom: -100px;
    padding-left: 35px;
    z-index: 1000;
    position: relative;
}

header nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    width: 100%;
    height: 65px;
    padding: 0 2rem;
    background-color: var(--color-blue-primary);
}

header div.spacer {
    width: 150px;
    height: 10px;
}

header a {
    text-decoration: none;
    font-size: 2rem;
    color: var(--color-white);
    cursor: pointer;
}

header a:hover {
    color: var(--color-green);
}

/* INSTRUCTIONS */
section.instructions {
    margin: 35px 15px;
}

section.instructions h1 {
    font-size: 3rem;
    margin: 35px 0;
    color: var(--color-blue-primary);
    font-weight: bold;
}

section.instructions h2 {
    font-size: 2rem;
    margin: 15px 0;
    color: var(--color-green);
    font-weight: bold;
}

section.instructions p {
    font-size: 1.5rem;
    color: var(--color-black);
    font-weight: 600;
    max-width: 1000px;
}

section.instructions h3 {
    font-size: 1.5rem;
    margin: 25px 0;
    color: var(--color-blue-primary);
    font-weight: 600;
    max-width: 900px;
}

section.instructions ol {
    margin: 5px 20px;
}

section.instructions ol li {
    font-size: 1.5rem;
    line-height: 30px;
    color: var(--color-black);
}

/* PATCHES */
section.patches {
    display: flex;
    flex-direction: column;
    margin: 35px 15px;
}

section.patches h3 {
    font-size: 1.5rem;
    margin: 10px 0;
    color: var(--color-blue-primary);
    font-weight: 600;
    max-width: 900px;
    text-align: left;
}

section.patches table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border: 1px solid var(--color-blue-primary);
}

section.patches table thead {
    background-color: var(--color-blue-primary);
    color: var(--color-white);
}

section.patches table thead th {
    padding: 10px 0;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    border: 1px solid var(--color-blue-primary);
}

section.patches table tbody tr {
    border: 1px solid var(--color-blue-primary);
}

section.patches table tbody tr td {
    padding: 10px 0;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    border: 1px solid var(--color-blue-primary);
}

section.patches table tbody tr td p, section.patches table tbody tr td a {
    font-size: 1.5rem;
    text-align: center;
}

section.patches table tbody tr td.rowspan {
    max-width: 150px;
}

section.patches table tbody tr td a {
    color: var(--color-green);
}

section.patches table tbody tr td a:hover {
    color: var(--color-blue-primary);
}

section.patches table tbody tr td a {
    color: var(--color-blue-primary);
}

section.patches table tbody tr td ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

section.patches table tbody tr td ul li {
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    border: 1px solid var(--color-blue-primary);
    padding: 5px 10px;
    border-radius: var(--border-radius);
    background-color: var(--color-blue-primary);
    color: var(--color-white);
}

/* FOOTNOTES */
section.footnotes {
    margin: 35px 15px;
}

section.footnotes p {
    font-size: 1.5rem;
    line-height: 30px;
    color: var(--color-black);
    font-weight: bold;
}

/* FOOTER */
footer {
    display: flex;
    padding: 45px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    background: var(--color-blue-primary);
    color: var(--color-white);
    width: 100%;
}

footer span.upper {
    font-size: 1.2rem;
    text-transform: uppercase;
}

footer div.footer-text {
    align-self: center;
    margin-left: 35px;
    max-width: 1400px;
}

footer h3 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
}

footer p {
    font-size: 1rem;
    line-height: 1.4rem;
}

footer a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 1.2rem;
}

footer ul.footer-social {
    display: flex;
    margin-top: -11rem;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    gap: 8px;
}

footer li img {
    width: 35px;
    cursor: pointer;
}

footer li img:hover {
    transform: scale(1.1);
}
