@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --night: #001A23;
  --ivory: #FBF9EC;
}


body {
  color: var(--night);
  background-color: var(--ivory);
  font: normal 400 18px "Crimson Text", serif;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body.index {
  color: var(--night);
}

*{
  box-sizing: border-box;
}

a {
  color: var(--night);
  outline: none;
  text-decoration: underline;
}

a:hover {
  color: var(--night);
}

a.logo {
  background: url(logo1.png) center top no-repeat;
  background-size: contain;
  display: block;
  height: 115px;
  width: 220px;
}

h1 {
  color: var(--night);
  font: normal 400 30px "Montserrat", sans-serif;
  padding: 0;
}

.report-title {
  font: normal 700 40px "Montserrat", sans-serif !important;
  margin: 0 0 15px 0;
}

.consent-title {
text-align: center;
margin-top: 50px;
}

h2 {
  color: var(--night);
  font: normal 400 24px "Montserrat", sans-serif;
  margin-bottom: 15px;
  padding: 0;
}

h3 {
  color: var(--night);
  font: normal 700 20px/1.27em "Montserrat", sans-serif;
  margin: 1em 0;
  padding: 0;
}

img {
  border: 0;
  display: block;
}

ol, ul {
  margin: 1em 0;
  padding: 0 0 0 1.25em;
}

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;
}

.scroll-section {
  max-width: 800px;
  margin: 50px auto;
  padding: 40px 20px;
  border: 1px solid var(--night);
  max-height: 650px;
}

.scroll-title {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--night);
}

.scroll-box {
  background: var(--ivory);
  border: 1px solid var(--border);
  padding: 20px;
  height: 580px;        /* controls visible height */
  overflow-y: auto;     /* enables vertical scrolling */
  line-height: 1.6;
  color: var(--night);
}



/* header */

header {
  min-width: 1035px;
  display: flex;
  justify-content: center;
  background-color: var(--night);
}

.index header {
  border: none;
}

header > .contain {
  display: flex;
  justify-content: space-between;
  padding: 20px 25px;
}

.header-flex {
  gap: 710px;
}

#epAttention {
  padding: 10px 0;
  border-bottom: 1px solid var(--ivory);
  text-align: center;
  padding-bottom: 20px;
  font-size: 18px;
}

/* Top bar container */
.top-tier-header {
  position: relative;
  background-color: var(--night);
  height: 30px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 55px;
  z-index: 1000;
  width: 100%;
  max-width: none;
  min-width: 1200px;
}

/* Right-aligned wrapper */
.top-tier-right {
  display: flex;
  align-items: center;
  gap: 65px;
}

.top-tier-link {
  margin-top: 20px;
  font: normal 400 16px "Montserrat", sans-serif;
  text-decoration: none;
  color: var(--ivory);
}

.top-tier-link:hover {
  color: var(--ivory);
}

/* RESOURCES DROPDOWN */
.resources {
  position: relative;
  font: normal 400 16px "Montserrat", sans-serif;
  margin-top: 20px;
}

.resources > a {
  color: var(--ivory);
  text-decoration: none;
  cursor: pointer;
  padding: 6px 0;
  display: inline-block;
  align-items: center;
}

/* ▼ arrow */
.resources > a::after {
  content: "";
  width: 15px;
  height: 15px;
  margin-left: 3px;
  
  background-image: url("triangle.svg");
  background-size: contain;
  background-repeat: no-repeat;

  display: inline-block;
  transition: transform 0.25s ease;
  transform: translateY(1px);
}

/* Rotate arrow on hover */
.resources:hover > a::after {
  transform: translateY(1px) rotate(180deg);
}


/* Resources Dropdown menu */
.resources-menu {
  position: absolute;
  top: 32px;
  right: 0;
  background: var(--ivory);
  border: 1px solid var(--border);
  /* border-radius: 8px; */
  width: 160px;
  display: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  z-index: 999;
}

/* Hover to open */
.resources:hover .resources-menu {
  display: block;
}

/* Menu items */
.resources-menu a {
  display: block;
  padding: 8px 12px;
  color: var(--content-medium);
  font-size: 14px;
  text-decoration: none;
}

.resources-menu a:hover {
  background-color: var(--night);
  color: var(--ivory);
}

/* Language Drop Down */
#epLang {
    z-index: 999; /* ensure it's above everything */
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    white-space: nowrap; /* prevents text wrapping */
    margin-top: 27px;
    font: normal 400 16px "Montserrat", sans-serif;
    border-bottom: 7px solid transparent;
    color: var(--ivory);
}

#epLang::after {
    content: "";
    width: 15px;
    height: 15px;

    background-image: url("triangle.svg");
    background-size: contain;
    background-repeat: no-repeat;

    display: inline-block;
    margin-left: 3px;

    transform: translateY(1px);
    transition: transform 0.25s ease;
}

#epLang:hover::after {
    transform: translateY(1px) rotate(180deg);
}

#epLang > a {
    display: none;
    text-decoration: none;
    color: var(--night) !important;
}

#epLang a:hover {
    background-color: var(--night);
    color: var(--ivory);
}

#epLangDrop {
    background: var(--ivory);
    display: none;
    position: absolute;
    right: 0;
    top: 40px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    width: 140px;
    
}

#epLang > div {
    padding: 5px 0px 3px 5px;
}

#epLangDrop a {
    display: block;
    padding: 3px 10px;
    color: var(--night);
    text-decoration: none;
    font: normal 400 14px "Montserrat", sans-serif;
    padding: 8px 12px;
}

#epLang:hover #epLangDrop {
    display: block;
    
}

nav {
  background-color: var(--night);
  display: flex;
  font: normal 400 16px "Montserrat", sans-serif;
  justify-content: space-between;
  align-items: center;
}

nav:lang(fr) {
  font-size: 15px;
}

nav a {
  color: var(--ivory);
  display: inline-block;
  padding: 0 15px;
  text-decoration: none;
}

nav a:hover {
  color: var(--ivory);
}

.banner.fill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 400px;        /* your requirement */
  width: 100%;
  background-color: var(--night);  /* your color */
  overflow: hidden;
}

.otherPages-banner.fill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 200px;        /* your requirement */
  width: 100%;
  background-color: var(--night);  /* your color */
  overflow: hidden;
}


/* LEFT SIDE */
.banner-left {
  flex: 1;
  padding: 40px;
  text-align: center;
}

.banner-left-otherPages {
  flex: 1;
  padding: 40px;
  text-align: end;
}

.banner-left h1 {
  font: normal 700 60px "Montserrat", sans-serif;
  line-height: 1.2;
  color: var(--ivory);
  margin: 0;
}

.banner-left-otherPages h1 {
  font: normal 700 60px "Montserrat", sans-serif;
  line-height: 1.2;
  color: var(--ivory);
  margin: 0;
}

/* RIGHT SIDE (IMAGE) */
.banner-right {
  flex: 1;
  width: 300px;
  background-image: url('banner.jpg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 345px;
  margin-bottom: 50px;
}

.banner-right-report {
  flex: 1;
  width: 150px;
  height: 150px;
  margin-bottom: 50px;

  mask: url('Online.svg') center/contain no-repeat;
  -webkit-mask: url('Online.svg') center/contain no-repeat;

  background-color: var(--ivory);
}

.banner-right-phone {
  flex: 1;
  width: 150px;
  height: 150px;
  margin-bottom: 50px;

  mask: url('Phone.svg') center/contain no-repeat;
  -webkit-mask: url('Phone.svg') center/contain no-repeat;

  background-color: var(--ivory);
}

.banner-right-question {
  flex: 1;
  width: 150px;
  height: 150px;
  margin-bottom: 50px;

  mask: url('Question.svg') center/contain no-repeat;
  -webkit-mask: url('Question.svg') center/contain no-repeat;

  background-color: var(--ivory);
}

.banner-right-follow {
  flex: 1;
  width: 150px;
  height: 150px;
  margin-bottom: 50px;

  mask: url('FollowUp.svg') center/contain no-repeat;
  -webkit-mask: url('FollowUp.svg') center/contain no-repeat;

  background-color: var(--ivory);
}

.banner-right-faq {
  flex: 1;
  width: 150px;
  height: 150px;
  margin-bottom: 50px;

  mask: url('faq.svg') center/contain no-repeat;
  -webkit-mask: url('faq.svg') center/contain no-repeat;

  background-color: var(--ivory);
}

.button-section {
  height: 320px;
}

.buttons {
  display: flex;
  justify-content: space-between;
  height: 320px;
  color: var(--night);
}

.buttons a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  background-color: var(--ivory);
  color: var(--night);
  box-sizing: border-box;
  padding: 115px 15px 20px;
  text-decoration: none;
  width: 25%;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.buttons a:hover {
  background-color: var(--night);
  color: var(--ivory);
}
.buttons a::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  background-color: var(--night); /* icon color */
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

/* change icon color on hover */
.buttons a:hover::before {
  background-color: var(--ivory);
}


.buttons a.report::before {
  mask-image: url(Online.svg);
  -webkit-mask-image: url(Online.svg);
}

.buttons a.phone::before {
  mask-image: url(Phone.svg);
  -webkit-mask-image: url(Phone.svg);
}

.buttons a.question::before {
  mask-image: url(Question.svg);
  -webkit-mask-image: url(Question.svg);
}

.buttons a.follow::before {
  mask-image: url(FollowUp.svg);
  -webkit-mask-image: url(FollowUp.svg);
}



.buttons span.title {
  font: normal 700 22px "Montserrat", sans-serif;
  display: block;
  text-align: center;
  width: 100%;
  margin-top: 25px;
  padding-top: 90px;
}

.buttons span.title:lang(da) {
  /* font-size: 19px; */
}

.buttons span.roll-text {
  margin-top: 35px;
  font: normal 500 12px "Montserrat", sans-serif;
  margin-bottom: 15px;
  line-height: 20px;
  text-align: center;
  width: 100%;
  max-height: 40px;
}

.buttons span.roll-text:lang(fr) {
  margin-top: 15px;
}

.buttons span.roll-text:lang(da) {
  margin-top: 15px;
}

.buttons span.roll-text:lang(no) {
  margin-top: 15px;
}

.buttons a:hover span.title {
}

.buttons a:hover span.roll-text {
  display: block;
}

/* brands section */

.brand-logos {
  min-width: 1200px;
  background: var(--night);
  padding: 1rem 0;
}


/* 9 logos per row */
.logo-grid {
  min-width: 1200px;
  display: inline-grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 1rem;
  justify-items: center;
  margin: 0 auto;
  padding: 0 2rem;
  align-items: center;
}
.logo-grid-row {
  max-width: 1200px;
  display: flex;
  justify-content: space-around;
  margin: 0px auto;
}
.logo {
  width: 120px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin: auto;
  display: block;
}


/* Individual logo backgrounds */
.brandAdmirable   { background-image: url('Admirable_logo.png'); }
.brand1   { background-image: url('brand-1.png'); }
.brand2   { background-image: url('brand-2.png'); }
.brand3   { background-image: url('brand-3.png'); }
.brand4   { background-image: url('brand-4.png'); }
.brand5   { background-image: url('brand-5.png'); }
.brand6   { background-image: url('brand-6.png'); }
.brand7   { background-image: url('brand-7.png'); }
.brandAmplify   { background-image: url('Amplify_logo.png'); }

.brand8   { background-image: url('brand-8.png'); }
.brand9   { background-image: url('brand-9.png'); }
.brand10  { background-image: url('brand-10.png'); }
.brand11  { background-image: url('brand-11.png'); }
.brand12  { background-image: url('brand-12.png'); }
.brand13  { background-image: url('brand-13.png'); }
.brand14  { background-image: url('brand-14.png'); }
.brandSignature  { background-image: url('Signature_logo.png'); }
/* content */

main {
  display: block;
}

.mainHome {
}

section {
  display: block;
}

.flex {
  display: flex;
}

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 {
  margin-right: 2%;
  padding: 10px 25px;
  width: 60%;
}

.col-right {
  padding: 10px 25px;
  width: 38%;
}

#epEmergency {
  padding: 10px 0;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}

#epEmergency br {
  display: none;
}

#epEmergency strong {
  display: inline-block;
  margin-right: 7px;
}

#epDDN {
  font-weight: bold;
  white-space: nowrap;
}

.listor {
  list-style: none;
  margin: 1em 0;
}

/* dp and phone */

#epDataPrivacy .online, #epDataPrivacy .phone, #epDataPrivacy .output {
  display: none;
}

#epDataPrivacy ol.dropDowns {
  list-style: none;
  margin: 0;
  padding: 0;
}

#epDataPrivacy .text {
  color: var(--night);
}

#epPhone{
}
  

select {
  font: normal 400 14px "Crimson Text", sans-serif;
  margin: 5px 0 15px;
  min-width: 355px;
  padding: 5px;
  border: 2px solid var(--night);
  background-color: var(--ivory);
}

button, .submit {
  background: var(--ivory);
  border: none;
  color: var(--night);
  border: 2px solid var(--night);
  cursor: pointer;
  font-size: 17px;
  margin: 15px 0;
  padding: 6px 24px;
  text-decoration: none;
}

button:disabled, button:disabled:hover, input.submit:disabled, input.submit:disabled:hover {
  background: #ccc;
  cursor: default;
}

button:hover, .submit:hover {
  color: var(--ivory);
  background: var(--night);
}

.nowrap {
  white-space: nowrap;
}

/* issues */

#epIssues {
  width: 100%;
}

#epIssues .category {
  display: flex;
  margin-bottom: 20px;
  border: 1px solid var(--night);
  background-color: var(--ivory);
}

#epIssues .category{
  background: var(--night);
}


#epIssues .catdesc {
  display: none;
}

#epIssues .catname {
  color: var(--ivory);
  font: normal 700 20px "Montserrat", sans-serif;
  padding: 20px 20px 20px 30px;
  width: 24%;
  align-content: center;
}

#epIssues .details {
  font: normal 600 12px "Montserrat", sans-serif;
  position: absolute;
  right: 7px;
  text-decoration: none;
  top: 3px;
  padding: 5px;
}

#epIssues .issue {
  margin-bottom: 10px;
  padding: 0 5px 0 20px;
  position: relative;
}

#epIssues .issue:last-of-type {
  margin-bottom: 0;
}

#epIssues .issue:hover {
  background-color: var(--night);
  color: var(--ivory);
}

#epIssues .issuebox {
  background: var(--ivory);
  width: 76%;
}

#epIssues .name {
  font: normal 700 16px "Montserrat", sans-serif;
  padding: 5px 0;
}

#epIssues .name:hover {
  font: normal 700 16px "Montserrat", sans-serif;
  padding: 5px 0;
  color: var(--ivory);
}

#epIssues .name:hover ~ .desc {
  color: var(--ivory);
}

#epIssues .desc {
  color: var(--night);
  font-size: 14px;
  padding: 0 60px 10px 15px;
}

#epIssues .desc:hover {
  color: var(--ivory);
}

input.text-input  {
  
  margin: 5px 0 20px;
  min-width: 300px;
  padding: 5px;
  background-color: var(--ivory);
}

.follow-page section span {
  font-size: 18px;
}

.follow-top-text {
  margin-top: 50px;
}

/* footer */

footer {
  background-color: var(--night);
  color: var(--ivory);
  font-size: 14px;
  padding: 20px 0;
  margin-top: auto;
}

footer a {
  color: var(--ivory);
  text-decoration: none;
}

footer a:hover {
  color: var(--ivory);
}

footer th {
  display: none;
}

footer td {
  padding: 5px 0 0 !important;
}

footer .line1 {
  float: left;
  padding-left: 10px;
}

footer .line2 {
  color: #fff;
  float: right;
  padding-right: 10px;
}

footer .line2 a {
  text-decoration: none;
}

footer .line2 a:hover {}

footer table {
  font-size: 12px;
  margin: 15px auto 0 !important;
  width: 1200px !important;
}


.faq {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.faq-title-container {
  text-align: center;
  height: 60px;
  border-bottom: 1px solid var(--night);
}

.faq-title {
  font: normal 700 24px "Montserrat", sans-serif;
  margin-bottom: 20px;
  color: var(--night);
}

.faq-item {
  border-bottom: 1px solid var(--night);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  text-align: left;
  font: normal 500 20px "Montserrat", sans-serif;
  color: var(--night);
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background-color: var(--ivory);
  color: var(--night);
}

.faq-arrow {
  width: 32px;
  height: 32px;
  background: url(down-arrow.svg) no-repeat center / contain;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding-right: 20px;
}

.faq-answer p {
  margin: 0;
  padding: 0 0 20px 0;
  color: var(--night);
}

.active-tab {
  font-weight: bold;
}