html {
  background-color: rgba(255, 255, 255, 0.5);
  padding: 0px;
  margin: 0px;
}
@media print {
  html {
    background-color: #fff !important;
  }
}

body {
  font-family: Arial, Helvetica, sans-serif;
  font-style: normal;
  color: whitesmoke;
  margin: 0px auto 0px auto;
  font-size: 16px;
  background: #151a1a;
  display: grid;
  grid-template-rows: auto auto;
  grid-template-columns: 2vw auto 2vw;
  grid-template-areas: ". main ." "footer footer footer";
}
body main {
  margin: 55px auto 0px auto;
  padding-top: 30px;
  text-align: justify;
  line-height: 1.6;
  width: 100% !important;
  grid-template-columns: 20em auto;
  justify-items: start;
  justify-content: start;
  column-gap: 50px;
  grid-area: main;
}
body main .content {
  overflow-x: auto;
  width: 100% !important;
  justify-self: center;
  margin-right: 2em;
}
body main .button,
body main .sv-btn {
  margin-top: 20px;
  transition: background-color 0.2s ease, border 0.2s ease, color 0.2s ease;
  background-color: transparent;
  border: solid 1px rgba(224, 208, 208, 0.3);
  color: white !important;
  cursor: pointer;
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  line-height: 1rem;
  padding: 1rem 1rem;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}
body main .content .button,
body main .content .sv-btn {
  background-color: transparent !important;
  color: white;
  border-radius: 0px !important;
  border: solid 1px rgba(160, 160, 160, 0.3) !important;
}
body main .content .table,
body main .content .sv-table {
  background-color: #151a1a !important;
  color: white !important;
  border-radius: 0px !important;
  border: solid 1px rgba(160, 160, 160, 0.3) !important;
}
body main .content .sv-title {
  background-color: #151a1a !important;
  color: white !important;
}
body main .content .sv-description {
  background-color: #151a1a !important;
  color: white !important;
}
body main .content .sv-radio__svg {
  border-color: white !important;
  color: white !important;
}
body main .content .sv-root-modern .sv-radio--checked .sv-radio__svg {
  fill: white !important;
}
body main .content .sv-text,
.sv-dropdown {
  color: white !important;
}
body main .content .sv-item {
  color: white !important;
}
body main .content .sv-question__required-text {
  color: white !important;
}

body main .landing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  grid-auto-rows: minmax(100px, auto);
}

body main .left-column {
  align-content: end;
  margin-left: 2rem;
}
body main .mid-column {
  align-content: center;
  margin: auto;
}
body main .mid-column .buttom-center {
  text-align: center;
  padding: 10px;
}

/* todo set margin top/bottom of the following 2 buttons,
   currently no margin when buttons stacked on top of each other
*/
body main .buttom-tool {
  display: inline-flex;
  padding: 12px 28px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  background: var(--Keppel, #43bcab);
  color: var(--Eerie-black, #1e2525);
  margin-right: 10px;

  /* btn */
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%; /* 22.4px */
  text-transform: uppercase;
}
body main .buttom-about {
  display: inline-flex;
  padding: 12px 28px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--White, #fff);
  border-radius: 4px;
  background: var(--Charcoal, #2b4146);
  /* btn */
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%; /* 22.4px */
  text-transform: uppercase;
}

body main .eu-banner {
  grid-column: 1/-1;
  justify-items: auto;
  padding: 2rem;
  padding-top: 4rem;
  background: var(--Eerie-black, #1e2525);
  display: flex;
}
body main .eu-banner p {
  color: var(--Seasalt-NEW, #c2c2c2);
  text-align: left;
}

.eu-text {
  padding-left: 2rem;
}

body main .tool-background {
  justify-items: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
}
.background-header {
  grid-column: 1 / 4;
  text-align: center; 
}
.tool-info-text {
    grid-column: span 1;
    margin: auto;

    h2 {
      text-align: center;
    }
}
.contact-area {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: auto;
}

.contact-card {
  margin: auto;
  text-align: center;

  img {
    border-radius: 50%;
  }
}


.tool-info-image {
  grid-column: span 2;
  margin: auto;
}

@media screen and (max-width: 900px) {
  body main {
    margin: 8px;
    text-align: left;
    width: auto;
  }
}
@media print {
  body main {
    font-size: 12px;
    width: 100%;
    color: #000 !important;
    line-height: 1.2;
  }
}
body footer {
  grid-area: footer;
}

h3,
h4,
h5 {
  font-weight: 500;
  line-height: 1.2;
}

h1 {
  color: white;
  text-align: center;
  font-size: 52px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 62.4px */
  letter-spacing: 1.3px;
}
h2 {
  color: var(--White, #fff);
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%; /* 44.8px */
}

hr {
  color: white;
}

a {
  color: #fdcd42;
  text-decoration: none;
  overflow-wrap: break-word;
  word-break: break-word;
}

p {
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 25.2px */
}

@media print {
  a {
    color: #000;
    page-break-inside: avoid;
  }
}
a:hover {
  text-decoration: underline;
}
a.tag {
  color: #ec9534;
  border-color: #ec9534;
  border: 1px solid;
  padding: 1px 0.5rem 1px 0.5rem;
  border-radius: 0.2rem;
  text-align: center;
  vertical-align: middle;
}
a.tag:hover {
  color: #004b76;
  text-decoration: none;
}
a svg {
  vertical-align: text-bottom;
}

.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

code {
  background-color: #eee;
}

pre {
  margin: 0;
  white-space: pre-wrap;
  white-space: -moz-pre-wrap;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  word-wrap: break-word;
  font-size: 12px;
}
pre code {
  background-color: #fff;
}

huge {
  font-size: 2em;
  line-height: 1.2;
}

larger {
  font-size: 1.6em;
  line-height: 1.2;
}

large {
  font-size: 1.2em;
  line-height: 1.2;
}

small {
  font-size: 0.8em;
}

strong {
  font-weight: bold;
}

figure {
  padding: 2px;
  margin: 10px 30px 20px 30px;
  display: table;
}

figure img {
  display: block;
  margin: auto;
  border: 1px solid #eee;
  box-sizing: border-box;
}

figcaption {
  display: table-caption;
  caption-side: bottom;
  text-align: center;
  font-size: 0.8em;
  color: #ec9534;
  font-weight: bold;
}

ul {
  color: #151a1a;
}

body > header {
  background: #151a1a;
  display: flex;
  justify-content: space-between;
  height: 5.5em;
  left: 0;
  line-height: 3.5em;
  font-weight: bold;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
}
body > header .nav {
  min-height: 100px;
  overflow: hidden;
  width: 100%;
  overflow: visible;
  flex: 1;
  line-height: inherit;
  margin-left: 1.5em;
}
@media (max-width: 899px) {
  body > header .nav {
    display: none;
  }
}
@media print {
  body > header .nav {
    display: none;
  }
}
body > header .nav ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
  padding-top: 0;
  box-sizing: border-box;
}
body > header .nav ul li {
  position: relative;
  display: inline-block;
  background-color: #151a1a;
  color: white;
  padding-top: 20px;
  max-height: 100px;
  line-height: 1;
  padding-left: 1em;
  padding-right: 1em;
  padding-bottom: 16px;
}
body > header .nav ul li a {
  border-bottom: 0;
  font-size: 0.7em;
  font-weight: bold;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: white;
  line-height: 1.75;
}
body > header .nav ul li a img {
  vertical-align: middle;
}
body > header .nav ul.sub-menu {
  overflow: auto;
  padding-left: 0;
  margin-left: -25px;
  margin-right: -20px;
  width: inherit;
  display: none;
  position: absolute;
  top: 55px;
  background-color: #004b76;
  border: solid 1px rgba(255, 255, 255, 0.3);
}
body > header .nav ul.sub-menu li {
  position: static;
  padding-top: 10px;
  border-left: 0 !important;
  margin-left: 0 !important;
  padding-bottom: 10px !important;
  height: 27px;
  display: block;
  white-space: nowrap;
}
body > header .nav li:hover > .sub-menu,
body > header .nav ul.sub-menu:hover {
  display: block;
}
body > header .grid-header {
  display: grid;
  grid-template-columns: 40% auto;
  height: 100%;
}
body > header .grid-header .flex-logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
body > header .grid-header .flex-logo img {
  display: flex;
  height: 40px;
  margin-left: 0.5rem;
  margin-right: 1rem;
  vertical-align: middle;
}
body > header .grid-header .flex-logo a {
  color: #fff;
  text-decoration: none;
}
body > header .grid-header .flex-menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
body > header .grid-header .flex-menu .flex-item {
  display: flex;
  align-items: center;
  align-content: stretch;
  height: 100%;
}
body > header .grid-header .flex-menu .flex-item a {
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  height: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
body > header .grid-header .flex-menu .flex-item a:hover {
  color: #ffffff;
  background-color: #004b76;
  transition: background-color 0.4s ease;
}
body > header .grid-header .flex-menu .flex-item a.is-active {
  color: #fff;
  background-color: #004b76;
}

.nav-mobile {
  display: none;
  background: #fff;
  border-bottom: 1px solid #dad8de;
  height: 60px;
}
@media (max-width: 899px) {
  .nav-mobile {
    display: block;
  }
}
.nav-mobile input {
  display: none;
}
.nav-mobile input + label {
  position: absolute;
  top: 20px;
  right: 20px;
  height: 20px;
  width: 30px;
  z-index: 5;
}
.nav-mobile input + label span {
  position: absolute;
  width: 100%;
  height: 2px;
  top: 50%;
  margin-top: -1px;
  left: 0;
  display: block;
  background: #333333;
  transition: 0.5s;
}
.nav-mobile input + label span:first-child {
  top: 2px;
}
.nav-mobile input + label span:last-child {
  top: 18px;
}
.nav-mobile label:hover {
  cursor: pointer;
}
.nav-mobile input:checked + label span {
  opacity: 0;
  top: 50%;
}
.nav-mobile input:checked + label span:first-child {
  opacity: 1;
  transform: rotate(405deg);
}
.nav-mobile input:checked + label span:last-child {
  opacity: 1;
  transform: rotate(-405deg);
}
.nav-mobile input ~ .flex-menu {
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0px;
  z-index: 3;
  transition: 0.5s;
  transition-delay: 0.5s;
  margin-top: 50px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.nav-mobile input ~ .flex-menu .flex-item {
  display: flex;
  justify-content: center;
  opacity: 0;
  width: 100%;
}
.nav-mobile input ~ .flex-menu .flex-item a {
  display: flex;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  padding-top: 1rem;
  padding-bottom: 1rem;
  width: 100%;
}
.nav-mobile input ~ .flex-menu .flex-item a:hover {
  color: #fff;
  background-color: #004b76;
  transition: background-color 0.4s ease;
}
.nav-mobile input ~ .flex-menu .flex-item a.is-active {
  color: #fff;
  background-color: #004b76;
}
.nav-mobile input ~ .flex-menu .flex-item img {
  display: flex;
  height: 50px;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.nav-mobile input:checked ~ .flex-menu {
  height: 100%;
  transition-delay: 0s;
}
.nav-mobile input:checked ~ .flex-menu .flex-item {
  opacity: 1;
  transition-delay: 0.5s;
}
.nav-mobile .logo-text {
  float: left;
  position: relative;
  height: 0;
  font-size: 30pt;
  font-weight: bold;
  margin-top: 10px;
  margin-left: 15px;
  z-index: 5;
}

footer {
  background-color: #1e2525;
  margin-top: 3rem;
  height: 6rem;
}

.legal {
  grid-column: 1 / 5;
  display: flex;
  justify-content: center;
  padding-top: 1rem;
  align-items: center;
  color: #fff;
  background-color: #000;
  font-size: 20px;
}
footer .legal a {
  color: #fff;
  padding-left: 4rem;
}

.footer-grid {
  max-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 2fr 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  color: #f8f8f8;
  font-size: 20px;
  margin: auto;
}
.footer-daisec {
  background-color: #fdcd42;
  display: inline-block;
  text-align: center;
}
.footer-daisec img {
  width: 80%;
  margin-top: 2rem;
}
.footer-daisec div {
  color: black;
}

.footer-partner {
  background-color: #3d8c89;
  display: inline-block;
  text-align: center;
}
.footer-partner img {
  width: 50%;
  margin-top: 1rem;
  margin-left: 1rem;
}

.footer-context {
  background-color: #375c67;
  align-content: center;
  text-align: end;
}
.footer-context p {
  padding: 4rem;
  font-size: larger;
}

.footer-eu {
  background-color: #fff;
  text-align: center;
  display: inline-block;
}
.footer-eu img {
  width: 50%;
  margin-top: 2rem;
}
