@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --color-black: #000;
    --color-white: #fff;
    --color-dark-orange: #d93b1d;
    --color-light-orange: #ff724c;
    --color-light-green: #00be99;
    --color-dark-green: #007e6a;
    --color-dark-purple: #9c009f;
    --color-light-purple: #d460dd;
    --color-dark-grey: #353539;
    --color-light-grey: #d4d4d9;
}

/* Skip navigation */
.keyboard-shortcut {
    background: var(--color-white);
    color: var(--color-black);
    left: 0;
    padding: 6px 12px;
    position: absolute;
    top: -99px;
    z-index: 999;
}

.keyboard-shortcut:focus {
    top: 6px;
}

/* Focus indicator */
*:focus-visible {
    outline: 2px solid var(--color-dark-orange);
}

body {
    color: var(--color-black);
    font:
        normal 400 16px 'Inter',
        sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

* {
    box-sizing: border-box;
}

a {
    color: var(--color-black);
    outline: none;
    text-decoration: underline;
}

a:hover,
a:focus {
    color: var(--color-dark-orange);
}

.consent-text a {
    color: var(--color-dark-orange);
}

.logo {
    background: url(logo1.png) no-repeat center / contain;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 54px;
    width: 200px;
    text-decoration: none;
    color: var(--color-white);
    font-size: 20px;
}

h1 {
    font:
        normal 500 30px 'Inter',
        sans-serif;
    padding: 0;
}

h2 {
    font:
        normal 500 24px 'Inter',
        sans-serif;
    margin-bottom: 15px;
    padding: 0;
}

h3 {
    font:
        normal 700 20px/1.27em 'Inter',
        sans-serif;
    margin: 1em 0;
    padding: 0;
}

.report-page h3 {
    margin-top: 40px !important;
}

.faq-page h3 {
    font-size: 18px;
}

img {
    border: 0;
    display: block;
}

ol,
ul {
    margin: 1em 0;
    padding: 0 0 0 1.25em;

    li {
        margin: 10px 0;
    }
}

p {
    margin: 1em 0;
    padding: 0;
}

.contain {
    margin: 0 auto;
    width: 1200px;
}

.fill {
    min-width: 1200px;
    width: 100%;
}

.bottom {
    margin-bottom: 0;
    padding-bottom: 0;
}

.top {
    margin-top: 0;
    padding-top: 0;
}

/* header */
header {
    display: block;
    background-color: var(--color-black);
    border-bottom: 3px solid var(--color-dark-orange);
}

.question-page header {
    border-bottom: 3px solid var(--color-dark-purple) !important;
}

.issues-page header,
.follow-page header {
    border-bottom: 3px solid var(--color-dark-green) !important;
}

.faq-page header {
    border-bottom: 3px solid var(--color-dark-green) !important;
}

header > .contain {
    display: flex;
    justify-content: space-between;
    padding: 20px 0px;
    align-items: center;
}

#epAttention {
    padding: 10px 0;
    text-align: center;
}

#epLang {
    cursor: pointer;
    justify-content: space-between;
    position: relative;
    text-align: center;
    align-self: center;
    margin-left: auto;
    padding: 14px 10px;
}

#epLang > a {
    display: none;
}

#epLang a:hover {
    color: var(--color-black);
    text-decoration: none;
}

#epLangDrop {
    background: var(--color-dark-orange);
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

#epLang > div {
    color: var(--color-white);
    padding: 5px 0px 7px 5px;
}

#epLangDrop a {
    display: block;
    padding: 3px 10px;
}

#epLang:hover #epLangDrop {
    display: block;
}

/* Show dropdown when keyboard-activated via aria-expanded */
#epLangMenuToggle[aria-expanded='true'] ~ #epLangDrop {
    display: block;
}

/* Strip browser button defaults so the toggle inherits the selector's appearance */
#epLangMenuToggle {
    background: transparent;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    font: normal 400 18px 'Inter', sans-serif;
    padding: 5px 0px 7px 5px;
    width: 100%;
    margin: auto 0;
}

nav ul {
    display: flex;
    font:
        normal 400 18px 'Inter',
        sans-serif;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

nav a {
    color: var(--color-white);
    display: inline-block;
    padding: 0 10px;
    text-decoration: none;
}

nav a:hover,
nav a:focus {
    text-decoration: underline;
    color: var(--color-white);
    text-decoration-color: var(--color-dark-orange);
    text-decoration-thickness: 2px;
    text-underline-offset: 8px;
}

.faq-section-index a {
    text-decoration: underline;
    color: var(--color-black) !important;
}

.faq-section-index a:hover {
    text-decoration: underline;
}

nav ul.faq-section-index {
    display: block;
    list-style: disc;
    margin: 0 0 20px 50px;
}

nav ul.faq-section-index li {
    display: list-item;
    margin: 10px 0;
}

.banner {
    background:
        linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
        url(banner.jpg) center center / cover no-repeat;
    min-height: 700px;
    display: block;
    padding: 50px 0 50px;
    border-bottom: 3px solid var(--color-dark-orange);
}

.buttons {
    display: flex;
    justify-content: center;
    padding: 10px 25px;
    margin-top: 600px;
    gap: 150px;
}

.buttons a {
    align-items: center;
    background: var(--color-black) url() no-repeat left;
    background-position: 20px center;
    box-sizing: border-box;
    color: var(--color-white);
    display: flex;
    margin: 10px 0;
    padding: 25px 15px 25px;
    text-decoration: none;
    width: 20%;
    border: 3px solid var(--color-dark-orange);
    padding-left: 60px;
}

.buttons a:hover,
.buttons a:focus {
    background-color: var(--color-dark-orange);
    border: 3px solid var(--color-black);
}

.buttons a.report {
    background-image: url(report-red.svg);
}

.buttons a.question {
    background-image: url(ask-red.svg);
}

.buttons a.follow {
    background-image: url(follow-red.svg);
}

.buttons a.report:hover {
    background-image: url(report-white.svg) !important;
}

.buttons a.question:hover {
    background-image: url(ask-white.svg) !important;
}

.buttons a.follow:hover {
    background-image: url(follow-white.svg) !important;
}

.buttons span.title {
    display: block;
    font-size: 22px;
    text-align: center;
    width: 100%;
}

/* content */

main {
    display: block;
    padding: 30px 0 70px;
}

.mainHome {
    padding: 0px 0 50px;
}

section {
    display: block;
}

section.flex {
    display: flex;
    padding: 20px 0;
}

.text-index {
    margin-top: 50px;
}

[class^='col-'] {
    /* Applies to all CSS classes that start with "col-" */
    vertical-align: top;
}

.flex {
    display: flex;
}

.report-strip {
    display: flex;
    background-color: var(--color-dark-green);
    width: 100%;
    margin-top: 20px;
    gap: 100px;
    height: 100px;
    align-items: center;
}

.report-strip h1 {
    color: var(--color-white);
}

.report-icon {
    background: url(report-white.svg) no-repeat;
    width: 100px;
    margin-left: 25px;
    margin-top: 5px;
}

.qrcode {
    background: url(QRcode.png) no-repeat;
    background-size: cover;
    width: 200px;
    height: 200px;
    justify-self: center;
}

.question-strip {
    display: flex;
    background-color: var(--color-dark-purple);
    width: 100%;
    margin-top: 20px;
    gap: 100px;
    height: 100px;
    align-items: center;
}

.question-strip h1 {
    color: var(--color-white);
}

.question-icon {
    background: url(ask-white.svg) no-repeat;
    background-size: contain;
    width: 81px;
    margin-left: 25px;
    margin-top: 8px;
    height: 55px;
}

.phone-strip {
    display: flex;
    background-color: var(--color-dark-purple);
    width: 100%;
    margin-top: 20px;
    gap: 100px;
    height: 100px;
    align-items: center;
}

.phone-strip h1 {
    color: var(--color-white);
}

.phone-icon {
    background: url(phone.svg) no-repeat;
    background-size: contain;
    width: 81px;
    margin-left: 25px;
    margin-top: 8px;
    height: 55px;
}

.follow-icon {
    background: url(follow-white.svg) no-repeat;
    background-size: contain;
    width: 81px;
    margin-left: 25px;
    margin-top: 5px;
    height: 66px;
}

.follow-strip {
    display: flex;
    background-color: var(--color-dark-green);
    width: 100%;
    margin-top: 20px;
    gap: 100px;
    height: 100px;
    align-items: center;
}

.follow-strip h1 {
    color: var(--color-white);
}

.col-100 {
    display: inline-block;
    padding: 10px 25px;
    width: 100%;
}

.col-66 {
    display: inline-block;
    padding: 10px 25px;
    vertical-align: top;
    width: 66%;
}

.col-50 {
    /* Column-50 is technically 49% so columns do not break to a new line in all browsers */
    display: inline-block;
    padding: 10px 25px;
    width: 49%;
}

.col-33 {
    display: inline-block;
    padding: 10px 25px;
    width: 33%;
}

.col-left {
    padding: 10px 0px;
    width: 60%;
}

.col-right {
    padding: 10px 0px;
    width: 38%;
}

#epEmergency {
    padding: 10px 0;
    text-align: center;
}

#epEmergency br {
    display: none;
}

#epDDN {
    font-weight: bold;
    white-space: nowrap;
}

.listor {
    list-style: none;
    margin: 1em 0;
}

#epFollowUp {
    list-style-type: none;
    padding: 0;
}
#epFollowUp li {
    margin-bottom: 20px;
}
#epFollowUp input {
    margin-top: 10px;
}
#epFollowUp label {
    display: block;
}

/* dp and phone */
#epDataPrivacy .online,
#epDataPrivacy .output {
    display: block;
}

#epDataPrivacy .phone {
    display: none;
}

#epDataPrivacy ol.dropDowns {
    list-style: none;
    margin: 0;
    padding: 0;
}

#epDataPrivacy .text {
    color: var(--color-black);
}

select {
    font:
        normal 400 14px 'Inter',
        sans-serif;
    margin: 5px 0 15px;
    min-width: 355px;
    padding: 5px;
}

button,
.cont,
.submit,
#epConsentContinue,
#epConsentCancel {
    background: var(--color-dark-orange);
    border-radius: 4px;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    font:
        normal 500 16px 'Inter',
        sans-serif;
    padding: 8px 15px;
    margin: 4px 0px 20px;
    text-decoration: none;
}

.follow-page .cont,
.follow-page .submit,
.follow-page #epConsentContinue,
.follow-page #epConsentCancel {
    background: var(--color-dark-green);
}

.follow-page .cont:hover,
.follow-page .submit:hover,
.follow-page #epConsentContinue:hover,
.follow-page #epConsentCancel:hover,
.follow-page .cont:focus,
.follow-page .submit:focus,
.follow-page #epConsentContinue:focus,
.follow-page #epConsentCancel:focus {
    background: var(--color-black);
    color: var(--color-white);
    transition: all 0.2s ease 0s;
}
#epConsentCancel:hover,
button:focus,
.cont:focus,
.submit:focus,
#epConsentContinue:focus,
#epConsentCancel:focus {
    background: var(--color-black);
    color: var(--color-white);
    transition: all 0.2s ease 0s;
}

button:disabled,
button:disabled:hover,
input.submit:disabled,
input.submit:disabled:hover {
    background: #ccc;
    cursor: default;
}

.nowrap {
    white-space: nowrap;
}

button,
#epConsentContinue,
#epConsentCancel {
    background: var(--color-dark-orange);
    border-radius: 4px;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    font:
        normal 500 16px 'Inter',
        sans-serif;
    padding: 8px 15px;
    margin: 4px 0px 20px;
}

.question-page button,
.question-page #epConsentContinue,
.question-page #epConsentCancel {
    background: var(--color-dark-purple);
}

.follow-page #epConsentContinue,
.follow-page #epConsentCancel {
    background: var(--color-dark-green) !important;
}

button:hover,
#epConsentContinue:hover,
#epConsentCancel:hover,
button:focus,
#epConsentContinue:focus,
#epConsentCancel:focus {
    background: var(--color-black);
    color: var(--color-white);
    transition: all 0.2s ease 0s;
}

button:disabled {
    background: var(--color-grey);
    cursor: default;
}

button:hover:disabled {
    background: var(--color-grey);
}

.nowrap {
    white-space: nowrap;
}

#epIssues {
    width: 100%;
}

#epIssues .category {
    display: flex;
    margin-bottom: 20px;
}

#epIssues .category {
    background: var(--color-black);
}

#epIssues .catdesc {
    display: none;
}

#epIssues .catname {
    color: #fff;
    font:
        normal 700 20px 'Inter',
        sans-serif;
    padding: 20px 20px 20px 30px;
    width: 24%;
}

#epIssues .details {
    font:
        normal 400 11px 'Inter',
        sans-serif;
    position: absolute;
    right: 7px;
    text-decoration: underline;
    top: 3px;
}

#epIssues .issue {
    padding-bottom: 30px;
    padding-left: 10px;
    /* padding: 0 5px 0 10px; */
    position: relative;
    border-bottom: 1px solid var(--color-light-grey);
}

#epIssues .issue:last-of-type {
    margin-bottom: 0;
    border-bottom: none;
}

#epIssues .issue:hover {
    background: var(--color-light-grey);
}

#epIssues .issuebox {
    background: var(--color-white);
    width: 76%;
    border: 1px solid var(--color-light-grey);
}

#epIssues .name {
    font:
        normal 400 16px/20px 'Inter',
        sans-serif;
    padding: 5px 0;
}

#epIssues .desc {
    color: var(--color-dark-grey);
    font-size: 14px;
    padding: 0 60px 0px 15px;
}

input.text-input {
    margin: 5px 0 20px;
    min-width: 300px;
    padding: 5px;
}

/* footer */
footer {
    background: var(--color-black);
    color: var(--color-white);
    font-size: 14px;
    border-top: 3px solid var(--color-dark-orange);
    padding: 20px 0;
    margin-top: auto;
}

.question-page footer {
    border-top: 3px solid var(--color-dark-purple) !important;
}

.follow-page footer {
    border-top: 3px solid var(--color-dark-green) !important;
}

.faq-page footer {
    border-top: 3px solid var(--color-dark-green) !important;
}

footer th {
    display: none;
}

footer td {
    padding: 5px 0 0 !important;
}

#epNAVEXFooter {
    color: var(--color-light-grey);
    display: flex;
    justify-content: space-between;
    direction: ltr !important;
    font-size: 14px;
    margin: 0 auto;
    padding: 0px 0px;
    text-align: center;
    width: 1200px;
}

#epNAVEXFooter .line1 {
    margin-block-end: 0;
}

#epNAVEXFooter .line2 {
    margin-top: 10px;
}

footer nav ul {
    justify-content: center;
    margin-block-start: 0;
}

footer nav li a {
    font-size: 14px;
    color: var(--color-light-grey);
    text-decoration: none;
}

footer nav li a:hover,
footer nav li a:focus {
    text-decoration: none;
}

footer nav > a:hover,
footer nav > a:focus {
    margin: 0 auto;
}

footer table {
    font-size: 12px;
    margin: 15px auto 0 !important;
    width: 1000px !important;
}
