@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/* GT Ultra Median */
@font-face { font-family: 'GT Ultra Median'; src: url('GT-Ultra-Median-Light.otf') format('opentype'); font-weight: 300; font-style: normal; }
@font-face { font-family: 'GT Ultra Median'; src: url('GT-Ultra-Median-Regular.otf') format('opentype'); font-weight: 400; font-style: normal; }
@font-face { font-family: 'GT Ultra Median'; src: url('GT-Ultra-Median-Bold.otf') format('opentype'); font-weight: 700; font-style: normal; }
@font-face { font-family: 'GT Ultra Median'; src: url('GT-Ultra-Median-Black.otf') format('opentype'); font-weight: 900; font-style: normal; }

/* PP Mori */
@font-face { font-family: 'PP Mori'; src: url('PPMori-Extralight.otf') format('opentype'); font-weight: 200; font-style: normal; }
@font-face { font-family: 'PP Mori'; src: url('PPMori-Regular.otf') format('opentype'); font-weight: 400; font-style: normal; }
@font-face { font-family: 'PP Mori'; src: url('PPMori-Semibold.otf') format('opentype'); font-weight: 600; font-style: normal; }

:root {
  --color-black: #000;
  --color-white: #fff;
  --color-orange: #ff4500;
  --color-blue: #06bab1;
  --color-dark-teal: #006B73;
  --color-navy: #151D29;
  --color-grey: #c7c7c7;
  --color-main-background: #F6F6F6;
}

/* 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-blue);
}

body {
  background-color: var(--color-main-background);
  color: var(--color-black);
  font: normal 200 18px "PP Mori", 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-blue);
}

a.logo {
  background: url(logo1.svg) center top no-repeat;
  background-size: contain;
  display: block;
  height: 50px;
  width: 150px;
}

h1 {
  font: normal 400 30px "GT Ultra Median", sans-serif;
  padding: 0;
}

.report-page h1 {
  font: normal 700 24px "GT Ultra Median", sans-serif;
  color: var(--color-dark-teal);
  padding: 0;
}

.follow-page h1 {
  font: normal 700 24px "GT Ultra Median", sans-serif;
  color: var(--color-dark-teal);
  padding: 0;
}

.phone-page h1 {
  font: normal 700 24px "GT Ultra Median", sans-serif;
  color: var(--color-dark-teal);
  padding: 0;
}

.faq-page h1 {
  font: normal 700 24px "GT Ultra Median", sans-serif;
  color: var(--color-dark-teal);
  padding: 0;
}

.issues-page h1 {
  font: normal 700 24px "GT Ultra Median", sans-serif;
  color: var(--color-dark-teal);
  padding: 0;
}

h2 {
  font: normal 700 24px "GT Ultra Median", sans-serif;
  color: var(--color-dark-teal);
  margin-bottom: 15px;
  padding: 0;
}

.report-page h2 {
  font: normal 600 20px/1.27em "PP Mori", sans-serif;
  color: var(--color-navy);
  margin: 1em 0;
  padding: 0;
}

.phone-page h2 {
  font: normal 600 20px/1.27em "PP Mori", sans-serif;
  color: var(--color-navy);
  margin: 1em 0;
  padding: 0;
}

h3 {
  font: normal 600 20px/1.27em "PP Mori", sans-serif;
  margin: 1em 0;
  padding: 0;
}

.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-main-background);
}


header>.contain {
  display: flex;
  justify-content: space-between;
  padding: 20px 0px;
  align-items: center;
}

#epAttention {
  font: normal 300 13px "PP Mori", sans-serif;
  padding: 10px 0;
  text-align: left;
}

.lang-icon {
  background: url(lang-icon.png) center center no-repeat;
  background-size: contain;
  display: block;
  height: 23px;
  width: 24px;
  margin-right: -38px;
}

#epLang {
    cursor: pointer;
    justify-content: space-between;
    position: relative;
    text-align: center;
    width: 120px;
}

#epLang > a {
    display: none;
}

#epLang a:hover {
    color: #333;
}

#epLangDrop {
    background: var(--color-navy);
    color: var(--color-white);
    display: none;
    position: absolute;
    left: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

#epLang > div {
    padding: 5px 0px 7px 5px;
    font: normal 400 16px "GT Ultra Median", sans-serif;
    color: var(--color-navy);
}

#epLangDrop a {
    display: block;
    padding: 5px 10px;
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
}

#epLangDrop a:hover {
    background: var(--color-dark-teal);
    color: var(--color-white);
}

#epLang:hover #epLangDrop {
    display: block;
}

nav ul {
  display: flex;
  font: normal 400 16px "GT Ultra Median", sans-serif;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

.header-nav {
  border-right: 2px solid var(--color-grey);
  padding-right: 25px;
  height: 65px;
  align-items: center;
  align-content: center;
  align-self: center;
  margin-left: 440px;
}


nav a {
  color: var(--color-navy);
  display: inline-block;
  padding: 0 10px;
  text-decoration: none;
}

nav a:hover,
nav a:focus {
  text-decoration: none !important;
}

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;
}

nav a:hover,
nav a:focus {
  color: var(--color-dark-teal);
  text-decoration: underline;
}

.banner {
  background: var(--color-navy) url(banner.png) no-repeat center center;
  background-size: cover;
  min-height: 400px;
  display: block;
  padding: 50px 0 100px;
}

.banner-text {
  margin-top: 100px
}

.banner-text h1 {
  color: var(--color-white);
  font: normal 700 50px "GT Ultra Median", sans-serif;
  /* margin: 0 auto; */
  /* text-align: center; */
  /* width: 800px; */
}

.banner-text p {
  color: var(--color-white);
  font: normal 400 20px "PP Mori", sans-serif;
  /* margin: 0 auto; */
  /* text-align: center; */
  /* width: 650px; */
}

.buttons {
  display: flex;
  justify-content: space-between;
  padding: 10px 25px;
  justify-content: center;
  gap: 50px;
}

.buttons a {
  align-items: center;
  background: url() no-repeat center 30px;
  background-size: contain;
  box-sizing: border-box;
  color: var(--color-dark-teal);
  display: flex;
  margin: 10px 0;
  padding: 115px 15px 20px;
  text-decoration: none;
  width: 16%;
  transition: all 0.2s ease;
}
.buttons a:hover {
    transform: scale(1.03);
    text-decoration: underline;
}

.buttons a.report {
  background-image: url(report.png);
  background-size: contain;
}

.buttons a.phone {
  background-image: url(phone.png);
  background-size: contain;
}

.buttons a.follow {
  background-image: url(follow.png);
  background-size: contain;
}

.buttons span.title {
  display: block;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  width: 100%;
  margin-top: 110px;
}

/* content */

main {
  display: block;
  padding: 30px 0 70px;
}

.mainHome {
  padding: 50px 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;
}

.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: 45px 45px;
  width: 50%;
  margin-right: 30px;
  border: 3px solid var(--color-grey);
  border-radius: 20px;
  text-align: center;
}

.col-left h3 {
  text-align: center;
}

.col-right h3 {
  text-align: center;
}

.col-right {
  padding: 45px 45px;
  border: 3px solid var(--color-grey);
  border-radius: 20px;
  width: 50%;
  text-align: center;     
}

#epEmergency {
  font: normal 300 13px "PP Mori", sans-serif;
  padding: 10px 0;
  text-align: left;
}

#epEmergency br {
  display: none;
}

#epDDN {
  font-weight: bold;
  white-space: nowrap;
}

.listor {
  list-style: none;
  margin: 1em 0;
}

.follow-up-div {
  width: 100%;
}

#epFollowUp { 
  list-style-type: none;
  padding: 0;
}
#epFollowUp li {
  margin-bottom: 20px;
}
#epFollowUp input {
  margin-top: 10px;
  width: 40%;
  height: 30px;
  border: 1px solid var(--color-grey);
  border-radius: 4px;
}
#epFollowUp label {
  display: block;
}

/* dp and phone */
#epDataPrivacy .online,
#epDataPrivacy .phone,
#epDataPrivacy .output {
  display: block;
}

#epDataPrivacy ol.dropDowns {
  list-style: none;
  margin: 0;
  padding: 0;
}

#epDataPrivacy .text {
  color: var(--color-navy);
}


select {
  font: normal 400 14px "PP Mori", sans-serif;
  margin: 5px 0 15px;
  min-width: 355px;
  padding: 5px;
  height: 35px;
  border: 1px solid var(--color-grey);
  border-radius: 4px;
}

button,
.cont,
.submit,
#epConsentContinue,
#epConsentCancel {
  background: var(--color-dark-teal);
  border-radius: 4px;
  border: none;
  color: var(--color-white);
  cursor: pointer;
  font: normal 500 16px 'PP Mori', sans-serif;
  padding: 8px 15px;
  margin: 4px 0px 20px;
  text-decoration: none;
}

button:hover,
.cont:hover,
.submit:hover,
#epConsentContinue:hover,
#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-blue);
  border-radius: 4px;
  border: none;
  color: var(--color-white);
  cursor: pointer;
  font: normal 500 16px 'PP Mori', sans-serif;
  padding: 8px 15px;
  margin: 4px 0px 20px;
}

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;
}

/* Container: simple vertical list */
#epIssues {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Each issue block */
.issue {
  background: #BBBEC2;
  border-radius: 12px;
  padding: 16px;
  color: #fff;
  font-size: 18px;
  line-height: 1.4;
}
.issue .name {
  color: #1C2633;
}

/* Row that holds name + details */
.issue {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Make name + details appear on the same line */
.issue .name,
.issue .details {
  display: inline-block;
}
.issue .name:hover {
    color: var(--color-blue);
}
/* Flex row for top line */
.issue .name,
.issue .details {
  margin: 0;
}

/* Wrap the top row */
.issue > .name,
.issue > .details {
  /* nothing needed here */
}

/* Use this to align them on one line */
.issue {
  position: relative;
}

.issue .name {
  font: normal 600 16px "GT Ultra Median", sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  padding-right: 80px; /* space so text doesn't overlap Details */
}

.issue .details {
  position: absolute;
  right: 16px;
  top: 12px;
  font-size: 14px;
  color: var(--color-white);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  background: #1C2633;
}

/* Description */
.issue .desc {
  display: none;
  font-size: 14px;
  background: var(--color-dark-teal);
  padding: 12px;
  border-radius: 8px;
}

/* Expanded state */
.issue .details[aria-expanded="true"] + .desc {
  display: block;
}

/* Keyboard focus */
.issue .details:focus {
  outline: 3px solid var(--color-blue);
  outline-offset: 1px;
}



/* Two independent columns */
.faq-columns {
  column-count: 2;
  column-gap: 40px;
}

/* Prevent items from splitting between columns */
.faq-columns details {
  break-inside: avoid;
  margin-bottom: 20px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.faq-columns details:hover {
  background-color: var(--color-dark-teal);
  color: var(--color-white);
}

/* Summary (question) styling */
.faq-columns summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  list-style: none;
  position: relative;
  padding-right: 20px;
}

/* Remove default arrow */
.faq-columns summary::-webkit-details-marker {
  display: none;
}

/* Custom arrow */
.faq-columns summary::after {
  content: url("arrow-down.svg");
  display: inline-block;
  position: absolute;
  right: 0;
  top: 2px;
  transition: transform 0.2s ease;
}

/* Rotate arrow when open */
.faq-columns details[open] summary::after {
  transform: rotate(-180deg);
}

/* Answer text */
.faq-columns p {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.5;
}

/* footer */
footer {
  background-color: var(--color-navy);
  color: var(--color-white);
  font-size: 14px;
  padding: 20px 0;
  margin-top: auto
}

footer th {
  display: none;
}

footer td {
  padding: 5px 0 0 !important;
}

#epNAVEXFooter {
  display: flex;
  flex-direction: column;
  justify-content: center;
  direction: ltr !important;
  font-size: 14px;
  margin: 0 auto;
  padding: 0px 0px;
  text-align: center;
  width: 1200px;
  font: normal 300 13px "PP Mori", sans-serif;
}

#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: normal 300 13px "PP Mori", sans-serif;
  color: var(--color-white)!important;
  font-size: 14px;
  text-decoration: underline;
}

footer nav li a:hover,
footer nav li a:focus {
  text-decoration: underline;
}

footer nav>a:hover,
footer nav>a:focus {
  margin: 0 auto;
}

footer table {
  font-size: 12px;
  margin: 15px auto 0 !important;
  width: 1000px !important;
}

section.fqa_container, section#report, section#follow {
    margin-top: 50px;
}
div#epPhone th {
    font-weight: 500;
}