@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');

*{
  box-sizing: border-box;
}

*:focus-visible {
    outline: 2px solid blue;
}

body {
  color: #333;
  font: normal 400 14px/1.5 "Space Grotesk", sans-serif;
  margin: 0;
}

.keyboard-shortcut {
  left: 6px;
  position: absolute;
  top: -99px
}
 
/* adjust styling to match page branding */
.keyboard-shortcut:focus {
  background-color: #fff;
  color: black;
  font-size: 14px;
  font-weight: 700;
  padding: 15px 20px;
  top: 6px;
  z-index: 5
}

a {
  color: #33658a;
  outline: none;
  text-decoration: underline;
}

a:hover {
  color: #333;
}

img {
  border: 0;
  display: block;
}

ol, ul {
  margin: 1em 0;
  padding: 0 0 0 1.25em;
}

p {
  margin: 1em 0;
  padding: 0;
  font-size: 17px;
  font-weight: 600;
}

.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;
}

#epLang {
  align-items: center;
  color: #000;
  cursor: pointer;
  display: flex;
  font: normal 600 14px/1 "Space Grotesk", sans-serif;
  justify-content: flex-end;
  margin: 10px auto -4px;
  min-height: 36px;
  padding-right: 20px;
  position: relative;
  text-transform: uppercase;
}

#epLang > div {
  align-items: center;
  border: 1px solid #c9d5df;
  border-radius: 6px;
  display: inline-flex;
  gap: 10px;
  background-color: #fff;
  position: relative;
}

#epLangToggle {
  align-items: center;
  background: transparent;
  border: 0;
  color: #000;
  display: inline-flex;
  font: normal 600 14px/1 "Space Grotesk", sans-serif;
  gap: 10px;
  padding: 9px 14px;
}

#epLangToggle::after {
  content: "";
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #33658a;
  transform: rotate(0deg);
  transition: transform 0.2s ease;
}

#epLang.open #epLangToggle::after {
  transform: rotate(180deg);
}

#epLangDrop {
  background: #fff;
  border: 1px solid #c9d5df;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  display: none;
  left: auto;
  margin-top: 0;
  min-width: 170px;
  padding: 6px;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  transform: translateY(-4px);
  transition: transform 0.2s ease;
  z-index: 20;
}

#epLang.open #epLangDrop {
  display: block;
  transform: translateY(0);
}

#epLang a {
  border-radius: 6px;
  color: #1c4a66;
  display: block;
  font: normal 600 13px/1.2 "Space Grotesk", sans-serif;
  padding: 9px 10px;
  text-decoration: none;
}

#epLang a:hover,
#epLang a:focus-visible {
  background: #ebf6ff;
  color: #123247;
}

@media (max-width: 1220px) {
  #epLang {
    margin-right: 14px;
  }
}

header .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

a.logo {
  background: url(logo1.png) center top no-repeat;
  background-size: contain;
  display: inline-block;
  height: 50px;
  margin: 20px 30px 20px 10px;
  width: 165px;
}

nav ul {
  align-items: center;
  display: flex;
  flex-grow: 0;
  list-style: none;
  padding: 0;
}

nav a {
  color: #000000;
  display: inline-block;
  font: normal 600 15px/25px "Space Grotesk", sans-serif;
  padding: 0 20px;
  text-align: center;
  text-decoration: none;
}

nav a:hover {
  color: #00b2a9 ;
}

#epAttention {
  padding: 18px 0;
  text-align: center;
  background-color: #00b2a9;
  color: #000;
  font-size: 16px;
  font-weight: 600;
}

/* content */

main {
  display: block;
  padding: 30px 0 50px;
}

section {
  display: flex;
  justify-content: space-between;
}

div.col-left {
  padding: 0 10px;
  width: 58%;
}

div.col-right {
  padding: 0 10px;
  width: 38%;
}

h1 {
  font: normal 700 35px "Space Grotesk", sans-serif;
  padding: 0;
  color: #000;
}

h2 {
  font: normal 700 24px "Space Grotesk", sans-serif;
  padding: 0;
  color: #000;
}

h3 {
  font: normal 500 19px "Space Grotesk", sans-serif;
  margin: 1em 0;
  padding: 0;
  color: #000;
}

#epEmergency {}

#epDDN {
  font-weight: bold;
  white-space: nowrap;
}

.listor {
  list-style: none;
  margin: 1em 0;
}

#epDataPrivacy {
  display: inline-block;
  vertical-align: top;
  margin-bottom: 25px;
}

#epDataPrivacy .online, #epDataPrivacy .phone, #epDataPrivacy .output {
  display:none;
}

#epDataPrivacy ol.dropDowns {
  list-style: none;
  margin: 0;
  padding: 0;
}

select {
  font: normal 400 14px "Space Grotesk", sans-serif;
  margin: 2px 0 15px;
  padding: 5px;
  width: 100%;
}

button {
  background: #33658a;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 18px;
}

button:hover {
  background: #333;
  color: #fff;
}

button:disabled {
  background: #ddd;
  cursor: default;
}

button:hover:disabled {
  background: #ddd;
}

.nowrap {
  white-space: nowrap;
}

#epPhone {
  display: inline-block
}

button {
  cursor: pointer;
}

button:disabled {
  background: #808080;
  cursor: not-allowed;
}

/* footer */

footer {
  font-size: 14px;
  padding: 20px 0;
}

#epNAVEXFooter th {
  display: none;
}

#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;
}

#epNAVEXFooter .line1 {
  margin-block-end: 0;
}

footer nav ul {
  justify-content: center;
  margin-block-start: 0;
}

footer nav li a {
  color: #333;
  font-size: 14px;
  text-decoration: none;
}

footer nav > a:hover {
  margin: 0 auto;
  color: #333;
}