:root {
  --header-height: 65px;
  --secondary-nav-height: 70px;
  --sticky-header-height: var(--header-height);
  --module-vspace: 120px;
    --fontFamilyEuclid: "Euclid", "Helvetica", sans-serif;
}
@media screen and (min-width: 1040px) {
  :root {
    --header-height: 70px;
    --sticky-header-height: calc(
      var(--header-height) + var(--secondary-nav-height)
    );
  }
}
@media screen and (max-width: 768px) {
  :root {
    --module-vspace: 60px;
  }
}

@font-face {
  font-family: "Euclid";
  src: url('../fonts/EuclidCircularA-Regular.woff2') format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Euclid";
  src: url('../fonts/EuclidCircularA-RegularItalic.woff2') format("woff2");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Euclid";
  src: url('../fonts/EuclidCircularA-Medium.woff2') format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Euclid";
  src: url('../fonts/EuclidCircularA-MediumItalic.woff2') format("woff2");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Euclid";
  src: url('../fonts/EuclidCircularA-Semibold.woff2') format("woff2");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Euclid";
  src: url('../fonts/EuclidCircularA-SemiBoldItalic.woff2') format("woff2");
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: "Euclid";
  src: url('../fonts/EuclidCircularA-Bold.woff2') format("woff2");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Euclid";
  src: url('../fonts/EuclidCircularA-BoldItalic.woff2') format("woff2");
  font-weight: 700;
  font-style: italic;
}
/* ==================================
 ------------ RESET CSS -----------
================================== */
html,
body,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
pre,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
center,
dl,
dt,
dd,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

html {
  box-sizing: border-box;
  font-size: 10px;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

nav ol,
nav ul:not(.list),
.list--reset ol,
.list--reset ul:not(.list) {
  margin: 0;
  padding: 0;
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
}

sub {
  vertical-align: sub;
}

sup {
  vertical-align: super;
}

small {
  font-size: 70%;
  line-height: normal;
}

select:empty {
  display: none;
}

*::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

*::-moz-placeholder {
  color: inherit;
  opacity: 1;
}

*:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

/* ---------- Animations ---------- */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* ==================================
 --------- DEFAULT STYLES ---------
================================== */
html {
  /*overscroll-behavior: none;*/
}

body {
  overscroll-behavior: none;
  overflow-x: hidden;
  overflow-y: scroll;
  color: #203E63;
  font-family: "Euclid", "Helvetica", sans-serif;
    font-family: var(--fontFamilyEuclid);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.4rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: none;
}

* {
  scroll-margin-top: var(--sticky-header-height);
}

/* ---------- TYPOGRAPHY ---------- */
h1,
.h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 4.6px;
  margin-bottom: 60px;
  letter-spacing: -0.5px;
}
@media only screen and (max-width: 768px) {
  h1,
.h1 {
    font-size: 3.5rem;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 480px) {
  h1,
.h1 {
    font-size: 3rem;
    line-height: 1.2;
  }
}

.module-header-title p {
  padding-top: 16px;
  font-size: 2.8rem;
  line-height: 3.8rem;
}
@media only screen and (max-width: 768px) {
  .module-header-title p {
    padding-top: 8px;
    font-size: 2rem;
    line-height: 2.4rem;
  }
}

h2,
.h2 {
  font-weight: 600;
  font-size: 32px;
  line-height: 38px;
  letter-spacing: -0.5px;
  margin-bottom: 2.4rem;
}
@media only screen and (max-width: 768px) {
  h2,
.h2 {
    font-size: 2.7rem;
    line-height: 1.2;
  }
}
h2.module_title,
.h2.module_title {
  margin-bottom: 45px;
}

.module-first-heading h2.module_title {
  font-size: 4.4rem;
}

h3,
.h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  color: #00213F;
}

h4,
.h4 {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0px;
  color: #00213F;
  margin-bottom: 20px;
}

h5,
.h5 {
  font-size: 1.28rem;
  margin-bottom: 12.8px;
  text-transform: uppercase;
}

h6, .h6 {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0px;
  color: #00213F;
}

.dark h1, .dark h2, .dark h3, .dark h4, .dark h5, .dark h6 {
  color: #fff;
}

a {
  text-decoration: none;
  color: #00213F;
}
a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

p {
  line-height: 2.4rem;
  font-weight: 400;
  font-size: 1.6rem;
  margin-top: 0;
  margin-bottom: 0;
}

p + p {
  margin-top: 1em; /* Adds space only to subsequent paragraphs */
}

/* ------------ COMMON ------------ */
img {
  max-width: 100%;
}

input[type=checkbox], input[type=radio] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
input[type=checkbox] + label, input[type=radio] + label {
  user-select: none;
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
input[type=checkbox] + label::before, input[type=radio] + label::before {
  content: "";
  display: inline-flex;
  align-items: center;
  width: 18px;
  height: 18px;
  border: 1px solid #767676;
  line-height: 1;
}
input[type=checkbox]:checked + label::before, input[type=radio]:checked + label::before {
  background-color: #D1AA63;
}
input[type=radio] + label::before {
  border-radius: 100%;
}
input::-ms-clear {
  display: none;
}

iframe {
  width: 100%;
}

/* ------- HACKS AND FIXES ------- */
.clearfix::before, .clearfix::after {
  content: " ";
  display: table;
}
.clearfix::after {
  clear: both;
}

/* ------------ LISTS ------------ */
.list {
  list-style-type: disc;
  padding-left: 30px;
  margin-top: 15px;
  margin-bottom: 15px;
  line-height: 1.5;
}
.list--ordered {
  list-style-type: decimal;
}
.list--alpha {
  list-style-type: lower-alpha;
}
.list--roman {
  list-style-type: lower-roman;
}
.list--inside {
  list-style-position: inside;
}

/* ------- BUTTONS / INPUTS ------- */
*::-webkit-input-placeholder {
  color: inherit;
}

*::-moz-placeholder {
  color: inherit;
}

*::-ms-input-placeholder {
  color: inherit;
}

.input,
.textarea,
.dropdown,
.upload,
.submit,
.button {
  display: inline-block;
  max-width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 13px 20px;
  background: transparent;
  border: 1px solid #D1AA63;
  color: #D1AA63;
  border-radius: 0;
  font-family: var(--fontFamilyEuclid);
  font-size: 1.4rem;
  margin: 17px;
}
.input::-ms-clear,
.textarea::-ms-clear,
.dropdown::-ms-clear,
.upload::-ms-clear,
.submit::-ms-clear,
.button::-ms-clear {
  display: none;
}

.dropdown {
  margin: 0;
  padding: 7px 8px;
  background: #DCE5EF url("../design/svg/dropdown-arrow.svg") no-repeat right 8px center;
  background-size: 24px 24px;
  padding-right: 40px;
  min-width: 81px;
  border-color: #738FB0;
  font-size: 1.4rem;
  line-height: 18px;
  border-radius: 4px;
  color: #00213F;
}
.dropdown::-ms-expand {
  display: none;
}

.submit,
.button,
.upload,
.dropdown {
  cursor: pointer;
}

.submit,
.button {
  text-transform: uppercase;
}

.textarea {
  width: 100%;
  resize: vertical;
  min-height: 150px;
}

.upload {
  line-height: 0;
}

.button {
  transition: 0.3s ease-in-out;
  border-color: #00213F;
  background: transparent;
  color: #00213F;
  padding: 15px 16px;
  text-align: center;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0px;
  text-transform: none;
  border-radius: 8px;
  margin: 0;
  width: max-content;
}
.button:hover, .button:focus {
  color: #fff;
  background: #00213F;
  border-color: #00213F;
  text-decoration: none;
}
.button:focus {
  outline-color: #BCCBDC;
}
.button--inverted {
  background: #00213F;
  border-color: #00213F;
  color: #fff;
}
.button--inverted:hover, .button--inverted:focus {
  color: #00213F;
  border-color: #BCCBDC;
  background: #BCCBDC;
}
.button--inverted:focus {
  outline-color: #00213F !important;
}
.button--inverted.js--disabled {
  background: #fff;
  border-color: #00213F;
  color: #00213F;
}
.button--dark {
  border-color: #D1AA63;
  background-color: #fff;
  color: #00213F;
  border-width: 2px;
}
.button--dark:hover, .button--dark:focus {
  background: #D1AA63;
  border-color: #D1AA63;
  color: #fff;
}
.button--dark:focus {
  outline-color: #D1AA63 !important;
}
.button--meeting {
  font-size: 1.3rem;
  background-color: #f1af0f;
  border-color: #f1af0f;
  color: #141c1f;
  font-weight: 700;
}
.button--meeting:hover, .button--meeting:focus {
  background-color: #dc9e27;
  border-color: #dc9e27;
  color: #141c1f;
}
.button--meeting:focus {
  outline-color: #dc9e27 !important;
}
.button--icon {
  background: #00213F;
  border-color: #00213F;
  color: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
}
.button--icon:hover, .button--icon:focus {
  color: #181A1B;
  background: #BCCBDC;
  border-color: #BCCBDC;
  outline-color: #BCCBDC !important;
}
.button--icon:hover::after, .button--icon:focus::after {
  transform: translateX(3px);
}
.button--icon:after {
  content: "";
  background: url("../design/svg/gold-arrow-circle.svg") no-repeat center center;
  display: block;
  background-size: contain;
  width: 32px;
  height: 32px;
  transition: transform 0.4s ease-in-out;
}
.button--icon-inverted {
  background: #fff;
  border-color: #fff;
  color: #00213F;
}
.button--icon-inverted:hover, .button--icon-inverted:focus {
  color: #181A1B;
  background: #DCE5EF;
  border-color: #DCE5EF;
  outline-color: #DCE5EF !important;
}
.button--icon-inverted:hover::after, .button--icon-inverted:focus::after {
  right: -5px;
}
.button--slider {
  padding: 7px 16px;
}
.button--slider.button--active {
  background-color: #00213F;
  color: #fff;
}
.button--download {
  padding: 22px 20px;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  width: max-content;
  text-align: left;
}
@media only screen and (max-width: 480px) {
  .button--download {
    width: 100%;
  }
}
.button--download:hover:after {
  filter: brightness(0) invert(1);
}
.button--download:after {
  content: "";
  background: url("../design/svg/download.svg") no-repeat center center;
  display: block;
  background-size: contain;
  min-width: 24px;
  width: 24px;
  height: 24px;
  transition: transform 0.4s ease-in-out;
}
.button--download.button--download-inverted {
  color: #fff;
  border-color: #fff;
}
.button--download.button--download-inverted::after {
  filter: brightness(0) invert(1);
}
.button--download.button--download-inverted:hover {
  color: #00213F;
  background-color: #DCE5EF;
  border-color: #DCE5EF;
}
.button--download.button--download-inverted:hover:after {
  filter: unset;
}

/* ------------ COOKIE MONSTER ------------ */
.cm .cm_close-button {
  opacity: 1;
}
.cm .cm_close-button::before, .cm .cm_close-button::after {
  background-color: #00213F;
}
.cm .cm_close-button:hover {
  opacity: 0.7;
}

/* ------------ TABLES ------------ */
.table {
  width: 100%;
  margin: 16px 0;
}
.table thead {
  background-color: #BCCBDC;
  color: #fff;
  font-size: 1.4rem;
}
.table thead th {
  text-align: left;
  text-transform: capitalize;
}
.table tbody tr:nth-child(odd) {
  background-color: #fff;
}
.table tbody tr:nth-child(even) {
  background-color: #DCE5EF;
}
.table th,
.table td,
.table tr > .grid_col {
  margin: 0;
  padding: 15px 10px;
}
.table th {
  color: #fff;
}
.table th[data-sorting=true]:hover {
  cursor: pointer;
}
.table--headless tr:nth-child(even) {
  background-color: transparent;
}
.table--headless tr:nth-child(odd) {
  background-color: #DCE5EF;
}
.table--headless tr:first-child {
  background-color: #00213F;
  text-align: left;
}
.table--headless tr:first-child td {
  color: #fff;
}
.table-wrapper {
  overflow-x: auto;
}
@media only screen and (max-width: 480px) {
  .table--responsive thead {
    display: none;
  }
  .table--responsive tbody {
    border-top: 2px solid #00213F;
    border-bottom: 2px solid #00213F;
  }
  .table--responsive td {
    display: block;
  }
  .table--responsive td::before {
    content: attr(data-heading) ": ";
    font-weight: bold;
  }
}
.table--analyst thead {
  background-color: transparent;
  color: inherit;
}
.table--analyst thead th {
  font-size: 1.8rem;
  line-height: 2.8rem;
  font-weight: 500;
  color: inherit;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.table--analyst thead th:nth-child(odd) {
  background-color: #fff;
}
.table--analyst thead th:nth-child(even) {
  background-color: #DCE5EF;
}
.table--analyst tbody tr:nth-child(odd),
.table--analyst tbody tr:nth-child(even) {
  background-color: transparent;
}
.table--analyst tbody th {
  color: #203E63;
}
.table--analyst tbody td {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.table--analyst tbody td:nth-child(odd) {
  background-color: #fff;
}
.table--analyst tbody td:nth-child(even) {
  background-color: #DCE5EF;
}

.highcharts-data-table .table tbody th {
  color: #203E63;
  text-align: left;
}

/* --------- SPECIAL BOXES -------- */
.code {
  margin: 32px 0;
  padding: 20px 15px;
  background: #DCE5EF;
  border-left: 3px solid rgba(0, 33, 63, 0.5);
  font-family: monospace, serif;
  font-size: 1.4rem;
  word-break: break-all;
  word-wrap: break-word;
  white-space: pre;
  overflow: hidden;
}
.code_comment {
  opacity: 0.5;
}

.quote {
  margin: 32px 0;
  padding: 20px 15px;
  background: #DCE5EF;
  border-left: 3px solid rgba(209, 170, 99, 0.5);
  font-size: 1.4rem;
  font-style: italic;
}
.quote p::before {
  margin-right: 5px;
  font-family: "q4-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\eb1b";
}
.quote p::after {
  margin-left: 5px;
  font-family: "q4-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\eb1c";
}

.our-projects .highcharts-background {
  fill: #141c1f;
}
@media only screen and (max-width: 1024px) {
  .our-projects .primary-cta {
    margin: 19px auto 0 auto;
  }
}
.our-projects .module_container--outer {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}
.our-projects #container-na {
  max-width: 100%;
  margin: 0 auto;
}
.our-projects .tooltip-metric {
  margin: 1rem 0;
}

.module_overview-careers a.primary-cta {
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .module_overview-careers a.primary-cta {
    margin: 0 auto;
  }
}

#highcharts-screen-reader-region-before-0,
#highcharts-screen-reader-region-after-0 > div {
  opacity: 1 !important;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #00213F;
}
.arrow-link:after {
  content: "";
  background: url("../design/svg/icon-arrow-right.svg") no-repeat center center;
  display: block;
  background-size: contain;
  width: 12px;
  height: 18px;
  transition: transform 0.4s ease-in-out;
}
.arrow-link:hover:after {
  transform: translateX(3px);
}

.download-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #00213F;
}
.download-link:after {
  content: "";
  background: url("../design/svg/download.svg") no-repeat center center;
  display: block;
  background-size: contain;
  width: 24px;
  height: 24px;
  transition: transform 0.4s ease-in-out;
}
.download-link:hover:after {
  transform: translateX(3px);
}
.module-share-buybacks .download-link {
  font-weight: 600;
}

a.email-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
a.email-link:before {
  content: "";
  background: url("../design/svg/mail-gold.svg") no-repeat center center;
  display: block;
  background-size: contain;
  width: 13px;
  height: 10px;
}
a.email-link.email-link--dark:before {
  background: url("../design/svg/mail-dark.svg") no-repeat center center;
}
a.email-link.email-link--alt {
  font-weight: 500;
}
a.email-link.email-link--alt:before {
  display: none;
}
a.email-link.email-link--alt:after {
  content: "";
  background: url("../design/svg/mail-alt.svg") no-repeat center center;
  display: block;
  background-size: contain;
  width: 16px;
  height: 16px;
}

a.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
a.phone-link:before {
  content: "";
  background: url("../design/svg/phone-gold.svg") no-repeat center center;
  display: block;
  background-size: contain;
  width: 13px;
  height: 10px;
}
a.phone-link.email-link--dark:before {
  background: url("../design/svg/phone-dark.svg") no-repeat center center;
}

.contact-split {
  display: grid;
  grid-template-columns: 231px 1fr;
  place-items: center;
  max-width: 530px;
  gap: 24px;
}
.contact-split h3 {
  margin-bottom: 0;
}
.contact-split .box {
  display: grid;
  gap: 9px;
}
@media only screen and (max-width: 1200px) {
  .contact-split {
    justify-content: start;
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .contact-split {
    justify-content: center;
    grid-template-columns: 1fr;
  }
  .contact-split .box--details {
    display: grid;
    justify-content: center;
    text-align: center;
  }
  .contact-split .box--details a {
    justify-self: center;
  }
}

.inline-tables {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
}
.inline-tables.two-column {
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media only screen and (max-width: 768px) {
  .inline-tables.two-column {
    grid-template-columns: 1fr;
  }
  .inline-tables.two-column th, .inline-tables.two-column td {
    width: 50%;
  }
}
@media only screen and (max-width: 1200px) {
  .inline-tables {
    gap: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .inline-tables {
    grid-template-columns: 1fr;
  }
}
.share-information .inline-tables th {
  width: 150px;
}

table {
  text-align: left;
  width: 100%;
}
table ul {
  padding-left: 20px;
}
table thead th {
  font-weight: 600;
  color: #00213F;
  padding: 8px 0;
  vertical-align: bottom;
}
@media only screen and (max-width: 480px) {
  table thead th {
    padding: 8px 4px;
  }
}
table tr {
  border-bottom: 1px solid #00213F;
}
table tbody th, table tbody td {
  padding: 16px 0;
  vertical-align: middle;
}
@media only screen and (max-width: 480px) {
  table tbody th, table tbody td {
    padding: 8px 4px;
  }
}
table tbody tr {
  border-bottom: 1px solid #738FB0;
}
table .vertical-align-top {
  vertical-align: top;
}
table .vertical-align-middle {
  vertical-align: middle;
}
table .vertical-align-baseline {
  vertical-align: b;
}
table.table--small td {
  font-size: 1.2rem;
}

.module-esg-ratings.module-split-boxes .split-boxes .box--content {
  justify-content: start;
}

.module {
  outline: none !important;
}

u {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ==================================
 -------- Q4 Modules Icons ---------
================================== */
.q4icons .q4icons_icon::before {
  font-family: "q4-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e91e";
  font-size: 18px;
  vertical-align: middle;
  display: inline-block;
  padding-right: 5px;
  min-width: 25px; /* min-width because sometimes icons don't align properly */
  text-align: right;
}
.q4icons .module_rss-link .q4icons_icon::before,
.q4icons .module_link-rss .q4icons_icon::before {
  content: "\eefa";
}
.q4icons .module_add-to-calendar-reveal .q4icons_icon::before {
  content: "\ea5f";
  padding-right: 5px;
}
.q4icons [href$=".mp3"] .q4icons_icon::before,
.q4icons [href$=".wmv"] .q4icons_icon::before,
.q4icons [href$=".MP3"] .q4icons_icon::before,
.q4icons [href$=".WMV"] .q4icons_icon::before {
  content: "\e952";
}
.q4icons [href$=".xls"] .q4icons_icon::before,
.q4icons [href$=".xlsx"] .q4icons_icon::before,
.q4icons [href$=".csv"] .q4icons_icon::before,
.q4icons [href$=".XLS"] .q4icons_icon::before,
.q4icons [href$=".XLSX"] .q4icons_icon::before,
.q4icons [href$=".CSV"] .q4icons_icon::before {
  content: "\eeae";
}
.q4icons [href$=".mp4"] .q4icons_icon::before,
.q4icons [href$=".flv"] .q4icons_icon::before,
.q4icons [href$=".avi"] .q4icons_icon::before,
.q4icons [href$=".MP4"] .q4icons_icon::before,
.q4icons [href$=".FLV"] .q4icons_icon::before,
.q4icons [href$=".AVI"] .q4icons_icon::before {
  content: "\e95e";
}
.q4icons [href$=".pdf"] .q4icons_icon::before,
.q4icons [href$=".PDF"] .q4icons_icon::before {
  content: "\e911";
}
.q4icons [href$=".ppt"] .q4icons_icon::before,
.q4icons [href$=".PPT"] .q4icons_icon::before,
.q4icons [href$=".pptx"] .q4icons_icon::before,
.q4icons [href$=".PPTX"] .q4icons_icon::before {
  content: "\e925";
}
.q4icons .module_link-webcast .q4icons_icon::before,
.q4icons .module_webcast-link .q4icons_icon::before {
  content: "\e912";
}
.q4icons .module_link-presentation .q4icons_icon::before {
  content: "\e913";
}
.q4icons .module_link-download .q4icons_icon::before {
  content: "\e910";
}
.q4icons .module_link-sec .q4icons_icon::before {
  content: "\e91e";
}
.q4icons .module_link-sec[href$=".pdf"] .q4icons_icon::before {
  content: "\e911";
}
.q4icons .module_link-sec[href$=".rtf"] .q4icons_icon::before {
  content: "\e91c";
}
.q4icons .module_link-sec[href$=".xls"] .q4icons_icon::before {
  content: "\e919";
}
.q4icons .module_link-sec[href$=".zip"] .q4icons_icon::before {
  content: "\e918";
}
.q4icons [href^="tel:"] .q4icons_icon::before {
  font-size: 1.6rem;
  vertical-align: text-bottom;
  font-family: "q4-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\ea1d";
}
.q4icons [href^="mailto:"] .q4icons_icon::before {
  font-size: 1.6rem;
  vertical-align: text-bottom;
  font-family: "q4-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\ea34";
}

/* ==================================
 ----------- TOAST GRID -----------
================================== */
.grid {
  list-style: none;
  margin-left: -20px;
}
.grid--flex {
  margin-left: -20px;
  box-sizing: border-box;
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
}
.grid--flex_column {
  flex-direction: column;
}
.grid--flex_row-reverse {
  flex-direction: row-reverse;
}
.grid--flex_column-reverse {
  flex-direction: column-reverse;
}
.grid--flex_justify-start {
  justify-content: flex-start;
  text-align: start;
}
.grid--flex_justify-center {
  justify-content: center;
  text-align: center;
}
.grid--flex_justify-end {
  justify-content: flex-end;
  text-align: end;
}
.grid--flex_align-top {
  align-items: flex-start;
}
.grid--flex_align-middle {
  align-items: center;
}
.grid--flex_align-bottom {
  align-items: flex-end;
}
.grid--flex_space-around {
  justify-content: space-around;
}
.grid--flex_space-between {
  justify-content: space-between;
}

.grid--flex .grid_col {
  display: block;
  margin-right: 0;
  flex: 0 0 auto;
}

.grid_col--12-of-12, .grid_col--8-of-8, .grid_col--7-of-7, .grid_col--6-of-6, .grid_col--5-of-5, .grid_col--4-of-4, .grid_col--3-of-3, .grid_col--2-of-2, .grid_col--1-of-1 {
  width: 100%;
}

.grid_col--6-of-12, .grid_col--4-of-8, .grid_col--3-of-6, .grid_col--2-of-4, .grid_col--1-of-2 {
  width: 50%;
}

.grid_col--4-of-12, .grid_col--2-of-6, .grid_col--1-of-3 {
  width: 33.3333333333%;
}

.grid_col--8-of-12, .grid_col--4-of-6, .grid_col--2-of-3 {
  width: 66.6666666667%;
}

.grid_col--3-of-12, .grid_col--2-of-8, .grid_col--1-of-4 {
  width: 25%;
}

.grid_col--9-of-12, .grid_col--6-of-8, .grid_col--3-of-4 {
  width: 75%;
}

.grid--flex .grid_col--12-of-12, .grid--flex .grid_col--8-of-8, .grid--flex .grid_col--7-of-7, .grid--flex .grid_col--6-of-6, .grid--flex .grid_col--5-of-5, .grid--flex .grid_col--4-of-4, .grid--flex .grid_col--3-of-3, .grid--flex .grid_col--2-of-2, .grid--flex .grid_col--1-of-1 {
  width: auto;
  flex-basis: 100%;
  max-width: 100%;
}

.grid--flex .grid_col--6-of-12, .grid--flex .grid_col--4-of-8, .grid--flex .grid_col--3-of-6, .grid--flex .grid_col--2-of-4, .grid--flex .grid_col--1-of-2 {
  width: auto;
  flex-basis: 50%;
  max-width: 50%;
}

.grid--flex .grid_col--4-of-12, .grid--flex .grid_col--2-of-6, .grid--flex .grid_col--1-of-3 {
  width: auto;
  flex-basis: 33.3333333333%;
  max-width: 33.3333333333%;
}

.grid--flex .grid_col--8-of-12, .grid--flex .grid_col--4-of-6, .grid--flex .grid_col--2-of-3 {
  width: auto;
  flex-basis: 66.6666666667%;
  max-width: 66.6666666667%;
}

.grid--flex .grid_col--3-of-12, .grid--flex .grid_col--2-of-8, .grid--flex .grid_col--1-of-4 {
  width: auto;
  flex-basis: 25%;
  max-width: 25%;
}

.grid--flex .grid_col--9-of-12, .grid--flex .grid_col--6-of-8, .grid--flex .grid_col--3-of-4 {
  width: auto;
  flex-basis: 75%;
  max-width: 75%;
}

.grid_col--push-12-of-12, .grid_col--push-8-of-8, .grid_col--push-7-of-7, .grid_col--push-6-of-6, .grid_col--push-5-of-5, .grid_col--push-4-of-4, .grid_col--push-3-of-3, .grid_col--push-2-of-2, .grid_col--push-1-of-1 {
  margin-left: 100%;
}

.grid_col--push-6-of-12, .grid_col--push-4-of-8, .grid_col--push-3-of-6, .grid_col--push-2-of-4, .grid_col--push-1-of-2 {
  margin-left: 50%;
}

.grid_col--push-4-of-12, .grid_col--push-2-of-6, .grid_col--push-1-of-3 {
  margin-left: 33.3333333333%;
}

.grid_col--push-8-of-12, .grid_col--push-4-of-6, .grid_col--push-2-of-3 {
  margin-left: 66.6666666667%;
}

.grid_col--push-3-of-12, .grid_col--push-2-of-8, .grid_col--push-1-of-4 {
  margin-left: 25%;
}

.grid_col--push-9-of-12, .grid_col--push-6-of-8, .grid_col--push-3-of-4 {
  margin-left: 75%;
}

.grid_col--pull-12-of-12, .grid_col--pull-8-of-8, .grid_col--pull-7-of-7, .grid_col--pull-6-of-6, .grid_col--pull-5-of-5, .grid_col--pull-4-of-4, .grid_col--pull-3-of-3, .grid_col--pull-2-of-2, .grid_col--pull-1-of-1 {
  margin-left: -100%;
}

.grid_col--pull-6-of-12, .grid_col--pull-4-of-8, .grid_col--pull-3-of-6, .grid_col--pull-2-of-4, .grid_col--pull-1-of-2 {
  margin-left: -50%;
}

.grid_col--pull-4-of-12, .grid_col--pull-2-of-6, .grid_col--pull-1-of-3 {
  margin-left: -33.3333333333%;
}

.grid_col--pull-8-of-12, .grid_col--pull-4-of-6, .grid_col--pull-2-of-3 {
  margin-left: -66.6666666667%;
}

.grid_col--pull-3-of-12, .grid_col--pull-2-of-8, .grid_col--pull-1-of-4 {
  margin-left: -25%;
}

.grid_col--pull-9-of-12, .grid_col--pull-6-of-8, .grid_col--pull-3-of-4 {
  margin-left: -75%;
}

.grid_col--1-of-5 {
  width: 20%;
}

.grid--flex .grid_col--1-of-5 {
  width: auto;
  flex-basis: 20%;
  max-width: 20%;
}

.grid_col--push-1-of-5 {
  margin-left: 20%;
}

.grid_col--pull-1-of-5 {
  margin-left: -20%;
}

.grid_col--2-of-5 {
  width: 40%;
}

.grid--flex .grid_col--2-of-5 {
  width: auto;
  flex-basis: 40%;
  max-width: 40%;
}

.grid_col--push-2-of-5 {
  margin-left: 40%;
}

.grid_col--pull-2-of-5 {
  margin-left: -40%;
}

.grid_col--3-of-5 {
  width: 60%;
}

.grid--flex .grid_col--3-of-5 {
  width: auto;
  flex-basis: 60%;
  max-width: 60%;
}

.grid_col--push-3-of-5 {
  margin-left: 60%;
}

.grid_col--pull-3-of-5 {
  margin-left: -60%;
}

.grid_col--4-of-5 {
  width: 80%;
}

.grid--flex .grid_col--4-of-5 {
  width: auto;
  flex-basis: 80%;
  max-width: 80%;
}

.grid_col--push-4-of-5 {
  margin-left: 80%;
}

.grid_col--pull-4-of-5 {
  margin-left: -80%;
}

.grid_col--1-of-6 {
  width: 16.6666666667%;
}

.grid--flex .grid_col--1-of-6 {
  width: auto;
  flex-basis: 16.6666666667%;
  max-width: 16.6666666667%;
}

.grid_col--push-1-of-6 {
  margin-left: 16.6666666667%;
}

.grid_col--pull-1-of-6 {
  margin-left: -16.6666666667%;
}

.grid_col--5-of-6 {
  width: 83.3333333333%;
}

.grid--flex .grid_col--5-of-6 {
  width: auto;
  flex-basis: 83.3333333333%;
  max-width: 83.3333333333%;
}

.grid_col--push-5-of-6 {
  margin-left: 83.3333333333%;
}

.grid_col--pull-5-of-6 {
  margin-left: -83.3333333333%;
}

.grid_col--1-of-7 {
  width: 14.2857142857%;
}

.grid--flex .grid_col--1-of-7 {
  width: auto;
  flex-basis: 14.2857142857%;
  max-width: 14.2857142857%;
}

.grid_col--push-1-of-7 {
  margin-left: 14.2857142857%;
}

.grid_col--pull-1-of-7 {
  margin-left: -14.2857142857%;
}

.grid_col--2-of-7 {
  width: 28.5714285714%;
}

.grid--flex .grid_col--2-of-7 {
  width: auto;
  flex-basis: 28.5714285714%;
  max-width: 28.5714285714%;
}

.grid_col--push-2-of-7 {
  margin-left: 28.5714285714%;
}

.grid_col--pull-2-of-7 {
  margin-left: -28.5714285714%;
}

.grid_col--3-of-7 {
  width: 42.8571428571%;
}

.grid--flex .grid_col--3-of-7 {
  width: auto;
  flex-basis: 42.8571428571%;
  max-width: 42.8571428571%;
}

.grid_col--push-3-of-7 {
  margin-left: 42.8571428571%;
}

.grid_col--pull-3-of-7 {
  margin-left: -42.8571428571%;
}

.grid_col--4-of-7 {
  width: 57.1428571429%;
}

.grid--flex .grid_col--4-of-7 {
  width: auto;
  flex-basis: 57.1428571429%;
  max-width: 57.1428571429%;
}

.grid_col--push-4-of-7 {
  margin-left: 57.1428571429%;
}

.grid_col--pull-4-of-7 {
  margin-left: -57.1428571429%;
}

.grid_col--5-of-7 {
  width: 71.4285714286%;
}

.grid--flex .grid_col--5-of-7 {
  width: auto;
  flex-basis: 71.4285714286%;
  max-width: 71.4285714286%;
}

.grid_col--push-5-of-7 {
  margin-left: 71.4285714286%;
}

.grid_col--pull-5-of-7 {
  margin-left: -71.4285714286%;
}

.grid_col--6-of-7 {
  width: 85.7142857143%;
}

.grid--flex .grid_col--6-of-7 {
  width: auto;
  flex-basis: 85.7142857143%;
  max-width: 85.7142857143%;
}

.grid_col--push-6-of-7 {
  margin-left: 85.7142857143%;
}

.grid_col--pull-6-of-7 {
  margin-left: -85.7142857143%;
}

.grid_col--1-of-8 {
  width: 12.5%;
}

.grid--flex .grid_col--1-of-8 {
  width: auto;
  flex-basis: 12.5%;
  max-width: 12.5%;
}

.grid_col--push-1-of-8 {
  margin-left: 12.5%;
}

.grid_col--pull-1-of-8 {
  margin-left: -12.5%;
}

.grid_col--3-of-8 {
  width: 37.5%;
}

.grid--flex .grid_col--3-of-8 {
  width: auto;
  flex-basis: 37.5%;
  max-width: 37.5%;
}

.grid_col--push-3-of-8 {
  margin-left: 37.5%;
}

.grid_col--pull-3-of-8 {
  margin-left: -37.5%;
}

.grid_col--5-of-8 {
  width: 62.5%;
}

.grid--flex .grid_col--5-of-8 {
  width: auto;
  flex-basis: 62.5%;
  max-width: 62.5%;
}

.grid_col--push-5-of-8 {
  margin-left: 62.5%;
}

.grid_col--pull-5-of-8 {
  margin-left: -62.5%;
}

.grid_col--7-of-8 {
  width: 87.5%;
}

.grid--flex .grid_col--7-of-8 {
  width: auto;
  flex-basis: 87.5%;
  max-width: 87.5%;
}

.grid_col--push-7-of-8 {
  margin-left: 87.5%;
}

.grid_col--pull-7-of-8 {
  margin-left: -87.5%;
}

.grid_col--1-of-12 {
  width: 8.3333333333%;
}

.grid--flex .grid_col--1-of-12 {
  width: auto;
  flex-basis: 8.3333333333%;
  max-width: 8.3333333333%;
}

.grid_col--push-1-of-12 {
  margin-left: 8.3333333333%;
}

.grid_col--pull-1-of-12 {
  margin-left: -8.3333333333%;
}

.grid_col--2-of-12 {
  width: 16.6666666667%;
}

.grid--flex .grid_col--2-of-12 {
  width: auto;
  flex-basis: 16.6666666667%;
  max-width: 16.6666666667%;
}

.grid_col--push-2-of-12 {
  margin-left: 16.6666666667%;
}

.grid_col--pull-2-of-12 {
  margin-left: -16.6666666667%;
}

.grid_col--5-of-12 {
  width: 41.6666666667%;
}

.grid--flex .grid_col--5-of-12 {
  width: auto;
  flex-basis: 41.6666666667%;
  max-width: 41.6666666667%;
}

.grid_col--push-5-of-12 {
  margin-left: 41.6666666667%;
}

.grid_col--pull-5-of-12 {
  margin-left: -41.6666666667%;
}

.grid_col--7-of-12 {
  width: 58.3333333333%;
}

.grid--flex .grid_col--7-of-12 {
  width: auto;
  flex-basis: 58.3333333333%;
  max-width: 58.3333333333%;
}

.grid_col--push-7-of-12 {
  margin-left: 58.3333333333%;
}

.grid_col--pull-7-of-12 {
  margin-left: -58.3333333333%;
}

.grid_col--10-of-12 {
  width: 83.3333333333%;
}

.grid--flex .grid_col--10-of-12 {
  width: auto;
  flex-basis: 83.3333333333%;
  max-width: 83.3333333333%;
}

.grid_col--push-10-of-12 {
  margin-left: 83.3333333333%;
}

.grid_col--pull-10-of-12 {
  margin-left: -83.3333333333%;
}

.grid_col--11-of-12 {
  width: 91.6666666667%;
}

.grid--flex .grid_col--11-of-12 {
  width: auto;
  flex-basis: 91.6666666667%;
  max-width: 91.6666666667%;
}

.grid_col--push-11-of-12 {
  margin-left: 91.6666666667%;
}

.grid_col--pull-11-of-12 {
  margin-left: -91.6666666667%;
}

.grid_col {
  box-sizing: border-box;
  display: inline-block;
  margin-right: -0.25em;
  min-height: 1px;
  padding-left: 20px;
  vertical-align: top;
}
@media (max-width: 480px) {
  .grid_col {
    display: block;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
}
@media (max-width: 1200px) and (min-width: 1025px) {
  .grid_col[class*=grid_col--lg-] {
    display: inline-block;
    margin-right: -0.24em;
  }
  .grid--flex .grid_col[class*=grid_col--lg-] {
    display: block;
    margin-right: 0;
  }
  .grid_col.grid_col--lg-1-of-1 {
    width: 100%;
  }
  .grid--flex .grid_col.grid_col--lg-1-of-1 {
    width: auto;
    flex-basis: 100%;
    max-width: 100%;
  }
  .grid_col.grid_col--lg-1-of-2, .grid_col.grid_col--lg-2-of-4 {
    width: 50%;
  }
  .grid--flex .grid_col.grid_col--lg-1-of-2, .grid--flex .grid_col.grid_col--lg-2-of-4 {
    width: auto;
    flex-basis: 50%;
    max-width: 50%;
  }
  .grid_col.grid_col--lg-1-of-3 {
    width: 33.3333333333%;
  }
  .grid--flex .grid_col.grid_col--lg-1-of-3 {
    width: auto;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .grid_col.grid_col--lg-2-of-3 {
    width: 66.6666666667%;
  }
  .grid--flex .grid_col.grid_col--lg-2-of-3 {
    width: auto;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .grid_col.grid_col--lg-1-of-4 {
    width: 25%;
  }
  .grid--flex .grid_col.grid_col--lg-1-of-4 {
    width: auto;
    flex-basis: 25%;
    max-width: 25%;
  }
  .grid_col.grid_col--lg-3-of-4 {
    width: 75%;
  }
  .grid--flex .grid_col.grid_col--lg-3-of-4 {
    width: auto;
    flex-basis: 75%;
    max-width: 75%;
  }
}
@media (max-width: 1024px) and (min-width: 769px) {
  .grid_col[class*=grid_col--lc-] {
    display: inline-block;
    margin-right: -0.24em;
  }
  .grid--flex .grid_col[class*=grid_col--lc-] {
    display: block;
    margin-right: 0;
  }
  .grid_col.grid_col--lc-1-of-1 {
    width: 100%;
  }
  .grid--flex .grid_col.grid_col--lc-1-of-1 {
    width: auto;
    flex-basis: 100%;
    max-width: 100%;
  }
  .grid_col.grid_col--lc-1-of-2, .grid_col.grid_col--lc-2-of-4 {
    width: 50%;
  }
  .grid--flex .grid_col.grid_col--lc-1-of-2, .grid--flex .grid_col.grid_col--lc-2-of-4 {
    width: auto;
    flex-basis: 50%;
    max-width: 50%;
  }
  .grid_col.grid_col--lc-1-of-3 {
    width: 33.3333333333%;
  }
  .grid--flex .grid_col.grid_col--lc-1-of-3 {
    width: auto;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .grid_col.grid_col--lc-2-of-3 {
    width: 66.6666666667%;
  }
  .grid--flex .grid_col.grid_col--lc-2-of-3 {
    width: auto;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .grid_col.grid_col--lc-1-of-4 {
    width: 25%;
  }
  .grid--flex .grid_col.grid_col--lc-1-of-4 {
    width: auto;
    flex-basis: 25%;
    max-width: 25%;
  }
  .grid_col.grid_col--lc-3-of-4 {
    width: 75%;
  }
  .grid--flex .grid_col.grid_col--lc-3-of-4 {
    width: auto;
    flex-basis: 75%;
    max-width: 75%;
  }
}
@media (max-width: 768px) and (min-width: 481px) {
  .grid_col[class*=grid_col--md-] {
    display: inline-block;
    margin-right: -0.24em;
  }
  .grid--flex .grid_col[class*=grid_col--md-] {
    display: block;
    margin-right: 0;
  }
  .grid_col.grid_col--md-1-of-1 {
    width: 100%;
  }
  .grid--flex .grid_col.grid_col--md-1-of-1 {
    width: auto;
    flex-basis: 100%;
    max-width: 100%;
  }
  .grid_col.grid_col--md-1-of-2, .grid_col.grid_col--md-2-of-4 {
    width: 50%;
  }
  .grid--flex .grid_col.grid_col--md-1-of-2, .grid--flex .grid_col.grid_col--md-2-of-4 {
    width: auto;
    flex-basis: 50%;
    max-width: 50%;
  }
  .grid_col.grid_col--md-1-of-3 {
    width: 33.3333333333%;
  }
  .grid--flex .grid_col.grid_col--md-1-of-3 {
    width: auto;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .grid_col.grid_col--md-2-of-3 {
    width: 66.6666666667%;
  }
  .grid--flex .grid_col.grid_col--md-2-of-3 {
    width: auto;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .grid_col.grid_col--md-1-of-4 {
    width: 25%;
  }
  .grid--flex .grid_col.grid_col--md-1-of-4 {
    width: auto;
    flex-basis: 25%;
    max-width: 25%;
  }
  .grid_col.grid_col--md-3-of-4 {
    width: 75%;
  }
  .grid--flex .grid_col.grid_col--md-3-of-4 {
    width: auto;
    flex-basis: 75%;
    max-width: 75%;
  }
}
@media (max-width: 480px) {
  .grid_col[class*=grid_col--sm-] {
    display: inline-block;
    margin-right: -0.24em;
  }
  .grid--flex .grid_col[class*=grid_col--sm-] {
    display: block;
    margin-right: 0;
  }
  .grid_col.grid_col--sm-1-of-2, .grid_col.grid_col--sm-2-of-4 {
    width: 50%;
  }
  .grid--flex .grid_col.grid_col--sm-1-of-2, .grid--flex .grid_col.grid_col--sm-2-of-4 {
    width: auto;
    flex-basis: 50%;
    max-width: 50%;
  }
  .grid_col.grid_col--sm-1-of-3 {
    width: 33.3333333333%;
  }
  .grid--flex .grid_col.grid_col--sm-1-of-3 {
    width: auto;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .grid_col.grid_col--sm-2-of-3 {
    width: 66.6666666667%;
  }
  .grid--flex .grid_col.grid_col--sm-2-of-3 {
    width: auto;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .grid_col.grid_col--sm-1-of-4 {
    width: 25%;
  }
  .grid--flex .grid_col.grid_col--sm-1-of-4 {
    width: auto;
    flex-basis: 25%;
    max-width: 25%;
  }
  .grid_col.grid_col--sm-3-of-4 {
    width: 75%;
  }
  .grid--flex .grid_col.grid_col--sm-3-of-4 {
    width: auto;
    flex-basis: 75%;
    max-width: 75%;
  }
  .grid--flex .grid_col {
    width: auto;
    flex-basis: 100%;
    max-width: 100%;
  }
}

.grid_col--centered {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.grid_col--d-first {
  float: left;
}
.grid--flex .grid_col--d-first {
  float: none;
  order: -1;
}

.grid_col--d-last {
  float: right;
}
.grid--flex .grid_col--d-last {
  float: none;
  order: 1;
}

.grid--no-gutter {
  margin-left: 0;
}
.grid--no-gutter .grid_col {
  padding-left: 0;
}
.grid--no-gutter .grid_col--span-all {
  margin-left: 0;
  width: 100%;
}

.grid--gutter {
  margin-left: -20px;
}
.grid--gutter .grid_col {
  padding-left: 20px;
}
.grid--gutter-40 {
  margin-left: -40px;
}
.grid--gutter-40 .grid_col {
  padding-left: 40px;
}

.grid--no-space .grid_col {
  margin-right: 0;
}

.grid_col--ab {
  vertical-align: bottom;
}

.grid_col--am {
  vertical-align: middle;
}

/* ==================================
 --------- UTILITY CLASSES --------
================================== */
.hidden:not([role=tabpanel]) {
  display: none !important;
}
.hidden[role=tabpanel] {
  display: none;
}

.disabled {
  opacity: 0.3;
  transition: none;
  pointer-events: none;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.inline {
  display: inline;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.vtop {
  vertical-align: top;
}

.vmiddle {
  vertical-align: middle;
}

.vbottom {
  vertical-align: bottom;
}

.right {
  float: right;
}

.left {
  float: left;
}

.text-bold {
  font-weight: 600;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.heading-right .module_title {
  text-align: right;
}

.heading-left .module_title {
  text-align: left;
}

.heading-center .module_title {
  text-align: center;
}

.text-justify {
  text-align: justify;
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.background--cover {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.background--brand {
  background-color: #00213F;
}

.background--dark-blue {
  background-color: #203e63;
}

.background--alt-brand {
  background-color: #D1AA63;
}

.background--dark {
  background-color: #141c1f;
  color: #fff;
}

.background--light {
  background-color: #fff;
}

.background--grey {
  background-color: #DCE5EF;
}

.background--grey-alt {
  background-color: #f7f7f7;
}

.background--light-blue {
  background-color: #dce5ef;
}

.background--dark-blue {
  background-color: #203e63;
}

.background--success {
  background-color: #006613;
}

.background--error {
  background-color: #b72121;
}

.background--fixed {
  background-attachment: fixed;
}
@media only screen and (max-width: 1024px) {
  .background--fixed {
    background-attachment: scroll;
  }
}

.color--brand {
  color: #00213F;
}

.color--light {
  color: #fff;
}

.color--dark {
  color: #141c1f;
}

.color--grey {
  color: #DCE5EF;
}

.color--success {
  color: #006613;
}

.color--error {
  color: #b72121;
}

.dark {
  color: #fff;
}
.dark a {
  color: #fff;
}

.splitbox {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  .splitbox {
    flex-direction: column;
    text-align: center;
  }
}
.splitbox > div {
  width: 50%;
}
@media only screen and (max-width: 1024px) {
  .splitbox > div {
    width: 100%;
  }
}

.splitbox_text--left {
  padding: 85px 80px 85px 130px;
}
@media only screen and (max-width: 1024px) {
  .splitbox_text--left {
    padding: 65px 60px;
  }
}
@media only screen and (max-width: 768px) {
  .splitbox_text--left {
    padding: 60px 13px;
  }
}

.primary-cta, .module-stock-historical .module_options-submit, .primary-cta--filled {
  transition: 0.3s ease-in-out;
  background-color: transparent;
  padding: 14px 20px;
  width: fit-content;
  display: block;
  border-radius: 50px;
  border: 2px solid #D1AA63;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.7rem;
  letter-spacing: 1.5px;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  margin: 0 auto;
}
.primary-cta:hover, .module-stock-historical .module_options-submit:hover, .primary-cta--filled:hover, .primary-cta:focus, .module-stock-historical .module_options-submit:focus, .primary-cta--filled:focus {
  background-color: #BCCBDC;
  border-color: #BCCBDC;
  color: #fff;
}

.module-stock-historical .module_options-submit, .primary-cta--filled {
  background-color: #D1AA63;
}

.secondary-cta {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.4rem;
  color: brand-color--alt;
}
.secondary-cta:hover {
  text-decoration: underline;
  color: brand-color--alt2;
}
.secondary-cta--alt {
  color: #fff;
}
.secondary-cta--alt:hover {
  color: #fff;
}

.hyperlink {
  color: #D1AA63;
  font-size: 1.6rem;
  line-height: 2.4rem;
}
.hyperlink:hover {
  text-decoration: underline;
  color: #BCCBDC;
}

.hyperlink--alt {
  color: #fff;
}
.hyperlink--alt:hover {
  color: #fff;
}

.module-stock-header_stock-price, .module-pipeline_footnotes {
  font-size: 1.2rem;
  line-height: 2.2rem;
}

.module-news-latest-latest-overview .module_date-time, .module-news-latest-overview .module_date-time {
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 400;
}

.module-pipeline .highcharts-subtitle {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
}

.module-news-latest-latest .module_headline-link, .module-news-latest .module_headline-link {
  font-size: 1.8rem;
  line-height: 2.8rem;
  font-weight: 500;
  /*text-transform: capitalize;*/
}

.img-container_zoom-effect {
  overflow: hidden;
}
.img-container_zoom-effect img {
  transition: all 0.25s ease-in-out;
}
.img-container_zoom-effect:hover img {
  transform: scale(1.05);
}

.no-margin-left {
  margin-left: 0;
}

.narrow-content h2 {
  max-width: 33ch;
}
.narrow-content p {
  max-width: 75ch;
}
.narrow-content.text-center h2,
.narrow-content.text-center p {
  margin-left: auto;
  margin-right: auto;
}

.text-lg {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0px;
}
@media only screen and (max-width: 480px) {
  .text-lg {
    font-size: 16px;
    line-height: 24px;
  }
}

.mb-45 {
  margin-bottom: 45px;
}

.mt-45 {
  margin-top: 45px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mt-32 {
  margin-top: 32px;
}

.mt-24 {
  margin-top: 24px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-20 {
  margin-bottom: 20px;
}

.p-0 {
  padding: 0;
}

.p-20 {
  padding: 20px;
}

.pl-20 {
  padding-left: 20px;
}

.pr-20 {
  padding-right: 20px;
}

.inline-flex {
  display: inline-flex;
}
@media only screen and (max-width: 768px) {
  .inline-flex {
    display: grid;
  }
}

.gap-45 {
  gap: 45px;
}
@media only screen and (max-width: 768px) {
  .gap-45 {
    gap: 20px;
  }
}

.gap-5 {
  gap: 5px;
}

.gap-8 {
  gap: 8px;
}

.place-items-center {
  display: grid;
  place-items: center;
}

.pane--content .module-extra-narrow .module_container--outer {
  max-width: 656px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.pane--content .module-narrow .module_container--outer {
  max-width: 870px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

@media only screen and (max-width: 768px) {
  .desktop-only {
    display: none;
  }
}

.mobile-only {
  display: none;
}
@media (max-width: 767px) {
  .mobile-only {
    display: block;
  }
}

/* ==================================
 --------- ACCESSIBILITY ----------
================================== */
input:focus,
select:focus,
textarea:focus,
button:focus,
[href]:focus,
[tabindex]:focus,
[contentEditable=true]:focus,
.module_add-to-calendar-reveal:focus,
a:focus,
input[type=checkbox]:focus + label::before,
input[type=radio]:focus + label::before,
.radio--btn input[type=radio]:focus + label {
  outline-width: 2px;
  outline-style: dotted;
  outline-color: inherit;
  outline-offset: 2px;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
}

#maincontent:focus {
  outline: 0;
}

.tooltip {
  position: absolute;
  padding: 2px 5px;
  color: black;
  background: white;
  line-height: normal;
  transform: translate(0, 0);
  z-index: 200;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
}
.tooltip[data-position=left] {
  transform: translate(-80%, 80%);
  margin-left: 0;
}
.tooltip[aria-hidden=true] {
  display: none;
}
.tooltip[aria-hidden=false] {
  display: block;
}

/* ---------- Javascript ---------- */
.js--loading::after {
  position: relative;
  left: 50%;
  display: inline-block;
  margin: 10px 0 10px -25px;
  font-family: "q4-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\eb27";
  font-size: 5rem;
  animation: spin 0.8s infinite linear;
}
.js--hidden:not([data-accordion]) {
  display: none !important;
}
.js--hidden[data-accordion] {
  display: none;
}
.js--visible {
  display: block;
}
.js--disabled {
  opacity: 0.3;
  transition: none;
  pointer-events: none;
}
.js--invalid input[type=text],
.js--invalid select {
  border: 1px solid #b72121 !important;
}
.js--invalid input[type=checkbox] {
  border-color: #b72121 !important;
}

/* ==================================
 ----------- MODULE CSS -----------
================================== */
/* -------- All Module CSS -------- */
.module_header, .module_back-to-top, .module_anchor-target, .module_file-size, .module_file-type, .module_file-text {
  display: none;
}
.module_nav, .module_headline, .module_location, .module_speakers, .module_links, .module_body, .module_options, .module_not-found {
  margin-bottom: 12px;
}
.module_add-to-calendar-reveal {
  color: #00213F;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0px;
}
.module_add-to-calendar-reveal:hover {
  color: #00213F;
}
.module_add-to-calendar-reveal .q4icons_icon:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-size: contain;
  background-image: url("../design/svg/calendar-icon-link.svg");
}
.module_add-to-calendar-list {
  display: none;
}
.module_add-to-calendar-list::after {
  content: "Select your Calendar";
  display: block;
  margin-top: 15px;
  font-size: 1.4rem;
  text-align: center;
}
.fancybox-container .module_add-to-calendar-list {
  padding: 0 30px;
}

.module_add-to-calendar-item {
  display: inline-block;
  margin: 0 10px;
}
.module_add-to-calendar-item--ics {
  display: none;
}
.module_add-to-calendar-link {
  font-size: 2.4rem;
}
.module_add-to-calendar.js--hidden {
  display: none;
}
.module_actions, .module_pager {
  margin-top: 20px;
}
.module_date-time {
  margin-bottom: 12px;
  font-size: 1.6rem;
  line-height: 24px;
  font-weight: 400;
  color: #2B2A32;
}
.module_error-container {
  display: block;
  margin-bottom: 30px;
  color: #b72121;
}
.module_error-container ul {
  padding-left: 18px;
  list-style-type: disc;
}
.module_error-container ul > li {
  line-height: 1.5;
}
.module_error-container > br {
  display: none;
}
.module_error-container > span {
  display: block;
  line-height: 1.5;
}
.module_error-container > span::before {
  font-family: "q4-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\ec6b";
  margin-right: 5px;
}
.module_headline-link {
  color: #00213F;
}
.module_headline-link:hover {
  text-decoration: underline;
}
.module_image {
  display: inline-block;
  max-width: 30%;
  margin-bottom: 16px;
}
.module_image--right {
  float: right;
  margin-left: 32px;
}
.module_image--left {
  float: left;
  margin-right: 32px;
}
.module_introduction {
  margin-bottom: 35px;
}
.module_item_link {
  position: inline-block;
  margin: 0 15px 10px 0;
  vertical-align: middle;
  font-size: 1.2rem;
  text-transform: uppercase;
}
.module_item_link:hover {
  text-decoration: underline;
  color: #BCCBDC;
}
.module_item_link > .module_item_link-text, .module_item_link > i, .module_item_link > span {
  vertical-align: middle;
}
.module_item_link[style="DISPLAY:block;"], .module_item_link[style="display: block;"] {
  display: inline-block !important;
}
.module_links > *,
.module_links li,
.module_links .module_presentation {
  display: inline;
}
@media only screen and (max-width: 480px) {
  .module_links > *,
.module_links li,
.module_links .module_presentation {
    display: block;
  }
}
.module_links.module_links--stack > *,
.module_links.module_links--stack li,
.module_links.module_links--stack .module_presentation {
  display: block;
}
.module_link-container {
  position: absolute;
  bottom: 20px;
  font-size: 1.2rem;
  text-transform: uppercase;
}
.module_link-container:hover {
  text-decoration: underline;
  color: #BCCBDC;
}
.module_loader {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin: 0;
  display: inline-block;
  animation: spin 1s linear infinite;
}
.module_message {
  display: block;
  margin: 16px 0;
}
.module_message[style$="hidden;"], .module_message:empty {
  display: none;
}
.module_message--success {
  color: #006613;
}
.module_message--success::before {
  font-family: "q4-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\ed71";
  margin-right: 5px;
}
.module_message--error {
  color: #b72121;
}
.module_message--error::before {
  font-family: "q4-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\ed4f";
  margin-right: 5px;
}
.module_message--validation_error {
  margin: 0;
}
.module_nav-link,
.module_nav .ModuleYearLink, .module_nav-link:visited,
.module_nav .ModuleYearLink:visited {
  display: inline-block;
  margin-right: 5px;
  padding: 15px 20px;
  border: 2px solid #00213F;
  color: #203E63;
  font-weight: normal;
}
.module_nav-link.selected, .module_nav-link.selected:visited,
.module_nav .ModuleYearLink.selected,
.module_nav .ModuleYearLink.selected:visited, .module_nav-link:visited.selected, .module_nav-link:visited.selected:visited,
.module_nav .ModuleYearLink:visited.selected,
.module_nav .ModuleYearLink:visited.selected:visited {
  background-color: #00213F;
  color: #fff;
}
@media only screen and (max-width: 480px) {
  .module_nav-link,
.module_nav .ModuleYearLink, .module_nav-link:visited,
.module_nav .ModuleYearLink:visited {
    margin-bottom: 10px;
  }
}
.module_options {
  margin-bottom: 30px;
}
.module_options-label, .module_options-select {
  margin-right: 10px;
}
@media only screen and (max-width: 480px) {
  .module_options-label, .module_options-select, .module_options-submit {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }
}
.module_pager a {
  color: #203E63;
}
.module_pager a[href] {
  color: #00213F;
}
.module_reminder {
  margin-top: 10px;
}
.module_reminder .grid_col {
  vertical-align: inherit;
}
.module_reminder .grid_col .button {
  margin: 0;
}
.module_reminder .module_label {
  margin-right: 10px;
}
.module_reminder.js--reminded {
  display: none;
}
.module_required {
  color: #203E63;
}
.module_required-text {
  font-size: 1.3rem;
  color: #203E63;
}
.module_rss {
  float: right;
  margin-top: 10px;
}
.module_speakers li {
  margin-bottom: 5px;
}
.module_view-all-link {
  font-size: 1.4rem;
  font-weight: bold;
  text-transform: uppercase;
}
.module_input[type=text], .module_input[type=email], .module_input[type=file], .module_dropdown,
.module textarea.module_input {
  display: block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* Text area demands width */
  width: 100%;
  max-width: none;
  padding: 11px 14px;
  border: 1px solid #767676;
  border-radius: 0;
  background-color: #fafafa;
  font-family: var(--fontFamilyEuclid);
  font-size: 1.2rem;
  color: #545b62;
}
.module_input[type=text]::-ms-clear, .module_input[type=email]::-ms-clear, .module_input[type=file]::-ms-clear, .module_dropdown::-ms-clear,
.module textarea.module_input::-ms-clear {
  display: none;
}
.module_input[type=text]:-ms-input-placeholder, .module_input[type=email]:-ms-input-placeholder, .module_input[type=file]:-ms-input-placeholder, .module_dropdown:-ms-input-placeholder,
.module textarea.module_input:-ms-input-placeholder {
  color: #141c1f !important;
}
.module textarea.module_input {
  resize: vertical;
  min-height: 150px;
}
.module_input[type=file], .module_dropdown {
  cursor: pointer;
}
.module_input[type=file] {
  line-height: 1;
}
.module_input--brand-alt[type=text] {
  display: inline-block;
  width: auto;
  border: 1px solid #D1AA63;
  background: transparent;
}
.module_dropdown {
  background: #fafafa url("../design/svg/q4-icon_chevron-down-black.svg") no-repeat right 20px center;
  background-size: 14px 14px;
}
.module_dropdown::-ms-expand {
  display: none;
}
.module-details .module_date-time {
  color: #00213F;
  margin-bottom: 15px;
}

.tab {
  position: relative;
}

.tab input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.tab__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.tab input:checked ~ .tab__content {
  max-height: 500rem;
}

/* Visual styles */
.accordion {
  overflow: hidden;
}

.tab__label,
.tab__close {
  cursor: pointer;
}

.tab__label {
  width: 100%;
  display: inline-flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0px;
  padding: 20px 0;
  border-top: 1px solid #738fb0;
}
.tab__label::before {
  display: none !important;
}

.tab__label::after {
  content: "";
  background-image: url("../design/svg/accordion-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease-in-out;
  transform: rotate(180deg);
}

.tab input:checked + .tab__label::after {
  transform: rotate(0deg);
}

.tab__content ul {
  list-style: none;
  padding-left: 16px;
}
.tab__content ul li {
  padding-left: 16px;
  margin-bottom: 24px;
  position: relative;
}
.tab__content ul li::before {
  content: "";
  background-image: url("../design/svg/list-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 26px;
  height: 17px;
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
}

.tab__close {
  justify-content: flex-end;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

.accordion--radio {
  --theme: var(--secondary);
}

/* Arrow animation */
/* - Investment Calculator Widget - */
.module-calculator p {
  font-size: 2rem;
}
.module-calculator .js--loading::after {
  left: auto;
  margin: 10px 0;
}
@media only screen and (min-width: 769px) {
  .module-calculator_fieldset {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
}
.module-calculator_legend {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.55;
  margin: 0 0 17px 0;
}
@media screen and (min-width: 901px) {
  .module-calculator_legend {
    float: left;
    margin: 23px 17px 0 0;
  }
}
.module-calculator_input {
  display: inline-block;
  position: relative;
}
.module-calculator_input:not(:last-of-type) {
  margin-right: 20px;
}
@media only screen and (max-width: 768px) {
  .module-calculator_input {
    display: block;
    text-align: left;
  }
  .module-calculator_input:not(:last-of-type) {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.module-calculator_input h4 {
  font-weight: normal;
  display: inline-block;
  margin: 0 25px 10px 0;
}
@media only screen and (max-width: 768px) {
  .module-calculator_input h4 {
    display: block;
  }
}
.module-calculator_input label {
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.8rem;
  text-align: left;
}
.module-calculator_input input[type=text] {
  border: 1px solid #bbb;
  display: inline-block;
  max-width: 190px;
  color: #D1AA63;
  font-size: 1.6rem;
}
@media only screen and (max-width: 768px) {
  .module-calculator_input input[type=text] {
    max-width: 100%;
  }
}
.module-calculator_input input[type=text].hasDatepicker {
  width: 150px;
  padding-right: 30px;
}
@media only screen and (max-width: 768px) {
  .module-calculator_input input[type=text].hasDatepicker {
    width: 100%;
  }
}
.module-calculator_input input[type=text].module_input--autocomplete {
  display: none;
  margin: auto;
}
.module-calculator_input input[type=text].module_input--autocomplete.js--revealed {
  display: block;
}
.module-calculator_input button {
  background: transparent;
  padding: 0;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  position: absolute;
  right: 10px;
  bottom: 13px;
  color: #00213F;
  cursor: pointer;
}
.module-calculator_input.module-calculator_reinvest-dividends {
  display: block;
}
.module-calculator_input-row {
  padding-bottom: 10px;
  margin-right: 25px;
  display: inline-block;
}
.module-calculator_input-row input[type=text] {
  margin-top: 10px;
  max-width: 300px;
}
.module-calculator_popup-container h2 {
  margin-top: 0;
  color: inherit;
}
@media screen and (min-width: 1024px) {
  .module-calculator_popup-container {
    min-width: 920px;
  }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .module-calculator_popup-container .table thead {
    display: none;
  }
  .module-calculator_popup-container .table tbody {
    border-top: 2px solid #00213F;
    border-bottom: 2px solid #00213F;
  }
  .module-calculator_popup-container .table td {
    display: block;
  }
  .module-calculator_popup-container .table td::before {
    content: attr(data-heading) ": ";
    font-weight: bold;
  }
}
.module-calculator_info td:first-child::before {
  content: none;
}
.module-calculator .module_actions {
  display: flex;
  justify-content: center;
}
.module-calculator .q4-icon_calendar {
  color: #D1AA63;
}

/* -------- Careers Module CSS ------- */
.module-careers .module-intro p {
  font-size: 2rem;
  line-height: 3rem;
}

.pane--content .module.careers-join-us {
  padding-top: 99px;
  padding-bottom: 99px;
}
@media only screen and (max-width: 480px) {
  .pane--content .module.careers-join-us {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.careers-join-us {
  background-image: url("../design/banner/careers-join-us.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}
.careers-join-us .module_container--inner {
  display: flex;
  justify-content: flex-end;
}
.careers-join-us .join-us-container {
  background-color: #00213F;
  padding: 48px 61px;
  max-width: 480px;
}
@media only screen and (max-width: 480px) {
  .careers-join-us .join-us-container {
    padding: 20px;
  }
}
.careers-join-us .join-us-container h2,
.careers-join-us .join-us-container .description {
  color: #fff;
}
.careers-join-us .join-us-container .description {
  margin-bottom: 30px;
}
.careers-join-us .join-us-container .cta {
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.5px;
  padding: 14px 24px;
  border: 2px solid #D1AA63;
  transition: 0.3s ease-in-out;
}
.careers-join-us .join-us-container .cta:hover {
  background-color: #D1AA63;
}

.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media only screen and (max-width: 768px) {
  .cards {
    grid-template-columns: 1fr;
  }
}
.cards .card {
  background-color: #DCE5EF;
  padding: 24px;
  border-radius: 24px;
}
.cards .card .card__icon {
  margin-bottom: 40px;
}
.cards .card h3 {
  margin-bottom: 16px;
}
.cards.cards--investment-highlights {
  grid-template-columns: 1fr 1fr 1fr;
}
@media only screen and (max-width: 768px) {
  .cards.cards--investment-highlights {
    grid-template-columns: 1fr;
  }
}
.cards.cards--investment-highlights .card {
  background-color: #fff;
}

/* -------- Contacts Module CSS ------- */
.module-contact-corporate .module_container--outer, .module-contact-transfer .module_container--outer {
  border-bottom: 1px solid #c4c4c4;
  padding-bottom: 14px;
}
.module-contact-corporate .q4icons_icon, .module-contact-transfer .q4icons_icon {
  margin-right: 10px;
}
.module-contact-corporate .q4icons a, .module-contact-transfer .q4icons a {
  display: inline-block;
  margin-bottom: 10px;
}
.module-contact-corporate_name, .module-contact-transfer_name {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.8rem;
}
.module-contact-corporate_title, .module-contact-transfer_title {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.4rem;
}
.module-contact-headquarters .module_container--outer {
  border-bottom: 1px solid #c4c4c4;
  padding-bottom: 24px;
}
.module-contact-headquarters .module_container--outer:last-child {
  border: none;
  padding-bottom: 0;
}
.module-contact-headquarters_address {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.4rem;
}
.module-contact-map {
  margin-top: -80px;
}
.module-contact-map .module_container--outer {
  max-width: unset !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.module-contact-map iframe {
  display: block;
}

/* - Committee Composition Widget - */
.module-committee .module_container--desktop .module_header {
  display: table-header-group;
}
@media only screen and (max-width: 768px) {
  .module-committee .module_container--desktop {
    display: none;
  }
}
.module-committee .module_container--tablet {
  display: none;
}
@media only screen and (max-width: 768px) {
  .module-committee .module_container--tablet {
    display: block;
  }
}
.module-committee .module_container--tablet .module-committee_name {
  padding: 10px 0;
  display: inline-block;
}
.module-committee .module_container--tablet .module-committee_icon {
  padding: 10px 0 10px 25px;
  display: inline-block;
  text-align: center;
}
.module-committee .module_container--tablet .module_header {
  border: 0 none;
}
.module-committee .module_container--tablet .module_items-container .grid_col {
  padding: 0;
}
.module-committee .module_header {
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-weight: normal;
  color: #141c1f;
}
.module-committee .module_item {
  padding: 0;
}
.module-committee .module_item ~ .module_item {
  border: 0;
}
.module-committee .module_item:nth-child(even) {
  background: #DCE5EF;
}
.module-committee .module_items-container {
  padding: 15px;
  margin: 0 0 15px 0;
  background: #DCE5EF;
}
.module-committee .grid_col {
  padding: 15px;
  text-align: center;
}
.module-committee .grid_col:first-child {
  text-align: left;
}
.module-committee_category {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.module-committee_category:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.module-committee_category .module_item:nth-child(even) {
  background: transparent;
}
.module-committee_category.js--active .module_header {
  color: #00213F;
}
.module-committee_category.js--active .module_header .module-committee_trigger::before {
  content: "\edba";
}
.module-committee_custom-role {
  margin-left: 5px;
}
.module-committee_bio {
  padding: 0 15px 20px;
  text-align: left;
}
.module-committee_bio p {
  margin: 0;
}
.module-committee_bio p:not(:last-of-type) {
  margin-bottom: 16px;
}
.module-committee_legend-container {
  padding: 20px 15px;
}
.module-committee_legend {
  display: inline-block;
  margin-right: 30px;
  margin-bottom: 5px;
}
.module-committee_legend [class*=q4-icon_] {
  margin-right: 5px;
}

.module-company-highlights .highlights {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}
@media only screen and (max-width: 1200px) {
  .module-company-highlights .highlights {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 768px) {
  .module-company-highlights .highlights {
    grid-template-columns: 1fr;
  }
}
.module-company-highlights h2 {
  margin-bottom: 40px;
}
.module-company-highlights h3,
.module-company-highlights span.counter {
  font-weight: 500;
  font-size: 64px;
  line-height: 120%;
  letter-spacing: -0.5px;
}
.Languagede-DE .module-company-highlights h3,
.Languagede-DE .module-company-highlights span.counter {
  font-size: 50px;
}
.module-company-highlights p {
  text-align: left;
}
.PageInvestorRelationsOverview .module-company-highlights p {
  text-align: center;
}

.pane--content .module_corporate-profile-1 img,
.pane--content .module_corporate-profile-2 img {
  width: 100%;
  display: block;
}
.pane--content .module.module_corporate-profile-1 {
  padding: 94px 0 100px;
}
@media screen and (max-width: 1150px) {
  .pane--content .module.module_corporate-profile-1 {
    padding: 74px 0 80px;
  }
}
@media only screen and (max-width: 1024px) {
  .pane--content .module.module_corporate-profile-1 {
    padding: 54px 0 60px;
  }
}
.pane--content .module.module_corporate-profile-2 {
  padding: 0 0 50px;
}
.pane--content .module.module_person-quotes-carousel.module_person-quotes-carousel-profile {
  padding-bottom: 100px;
}
@media screen and (max-width: 1150px) {
  .pane--content .module.module_person-quotes-carousel.module_person-quotes-carousel-profile {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 1024px) {
  .pane--content .module.module_person-quotes-carousel.module_person-quotes-carousel-profile {
    padding-bottom: 60px;
  }
}
.pane--content .full-width .module_container--outer {
  max-width: unset;
  padding-left: unset;
  padding-right: unset;
  margin-left: unset;
  margin-right: unset;
}

.module_corporate-profile-1 .grid_col:first-child {
  padding-right: 58px;
}
@media screen and (max-width: 1150px) {
  .module_corporate-profile-1 .grid_col:first-child {
    padding-right: 38px;
  }
}
@media only screen and (max-width: 1024px) {
  .module_corporate-profile-1 .grid_col:first-child {
    padding-right: 0;
  }
}

.module_corporate-profile-2 img {
  height: 100%;
  object-fit: cover;
}
.module_corporate-profile-2 .extra-padded {
  padding: 100px 88px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.module_corporate-profile-2 .extra-padded > * {
  max-width: 50.5rem;
}
@media screen and (max-width: 1150px) {
  .module_corporate-profile-2 .extra-padded {
    padding: 80px 68px;
  }
}
@media only screen and (max-width: 1024px) {
  .module_corporate-profile-2 .extra-padded {
    padding: 30px 20px 40px;
  }
}
@media only screen and (max-width: 768px) {
  .module_corporate-profile-2 .extra-padded {
    padding-left: 40px;
    order: -1;
  }
}
.module_corporate-profile-2 .primary-cta--filled {
  margin: 0;
}

/* -------- Media Coverage Module CSS ------- */
.module-coverage .module_options-container {
  display: inline-flex;
  flex-direction: column;
}
.module-coverage .module_options-container label {
  margin-bottom: 10px;
  font-size: 1.8rem;
  line-height: 2.8rem;
  font-weight: 500;
}
.module-coverage .module_options-container .dropdown {
  border: 1px solid #c4c4c4;
  font-size: 1.6rem;
  line-height: 2.4rem;
  min-width: 200px;
}
.module-coverage .module_date-time {
  font-size: 1.6rem;
  line-height: 2.4rem;
  margin-bottom: 10px;
}
.module-coverage .module_headline-link {
  font-size: 1.8rem;
  line-height: 2.8rem;
  font-weight: 500;
}

.diversity-matrix h3 {
  width: 78%;
  margin: 40px auto;
}
.diversity-matrix .bod-full {
  text-align: left;
  width: 100%;
}
.diversity-matrix .left {
  text-align: left;
  width: 30%;
}
.diversity-matrix .table tbody tr:nth-child(even),
.diversity-matrix .table tbody tr:nth-child(odd) {
  background-color: #fff !important;
}
.diversity-matrix table {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.diversity-matrix table thead {
  text-transform: none;
  font-size: 16px;
}
.diversity-matrix table thead th {
  color: #fff;
}
.diversity-matrix table thead .text-center {
  text-align: center;
}
.diversity-matrix table th {
  color: #203E63;
  text-transform: inherit;
}
.diversity-matrix table tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 0;
}
.diversity-matrix table tr .fw {
  width: 70%;
}
.diversity-matrix table tr .qw {
  width: 17.5%;
}
.diversity-matrix table tr .bold {
  font-weight: 700;
}
.diversity-matrix table tr .bod-dark {
  background-color: #BCCBDC !important;
  color: #fff;
}
.diversity-matrix table tr .bod-light {
  background-color: #DCE5EF !important;
}
.diversity-matrix table tr td {
  border-bottom: 0;
}

.mobile-total {
  display: none;
}

.diversity-matrix .table--responsive td::before {
  display: none !important;
}

.gender td {
  min-height: 77px;
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 768px) {
  .mobile-total {
    display: inline;
  }
  .diversity-matrix table tr .qw {
    display: none;
  }
  .diversity-matrix table tr.gender .qw {
    display: block;
    width: 100%;
    background-color: white !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .diversity-matrix table tr.gender .qw:nth-of-type(5) {
    border-bottom: 0;
  }
  .diversity-matrix .bod-full,
.diversity-matrix .left,
.diversity-matrix table tr .fw {
    width: 100%;
    text-align: center;
  }
  .gender,
.diversity-matrix table thead tr {
    flex-direction: column;
  }
  .mobile-hide {
    display: none !important;
  }
  .gender td {
    min-height: 0;
  }
}
.module-downloads h2 {
  margin-bottom: 40px;
}
.module-downloads .module_options {
  margin-bottom: 40px;
}
.module-downloads .module_container--outer {
  max-width: 100%;
}
.module-downloads .button--download {
  width: 100%;
}
.module-downloads .downloads {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 65px;
  row-gap: 25px;
}
@media only screen and (max-width: 1200px) {
  .module-downloads .downloads {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .module-downloads .downloads {
    grid-template-columns: repeat(1, 1fr);
  }
}

.file-downloads div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 24px;
}
@media only screen and (max-width: 768px) {
  .file-downloads div {
    grid-template-columns: 1fr;
  }
}
.file-downloads div a.document-download-link {
  padding: 16px 0;
  display: inline-flex;
  justify-content: space-between;
  border-bottom: 1px solid #738FB0;
}

/* --------- Event Module --------- */
.module-event .module_location, .module-event .module_speakers h4, .module-event .module_speakers .h4, .module-event .module_body {
  display: none;
}
.module-event .module_item {
  padding: 0;
  border: 0 none;
}
.module-event .module_item ~ .module_item {
  border-top: 0 none;
}
.module-event .module_item:not(:last-child) {
  margin-bottom: 10px;
}
.module-event .module_item-wrap {
  padding: 30px 30px 10px 30px;
}
.module-event .module_links {
  margin-bottom: 0;
}
.module-event .module_links.module_links--columns > *:not(ul) {
  width: 50%;
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (max-width: 480px) {
  .module-event .module_links.module_links--columns > *:not(ul) {
    display: block;
    width: auto;
  }
}
.module-event .module_links.module_links--columns > ul li {
  width: 50%;
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (max-width: 480px) {
  .module-event .module_links.module_links--columns > ul li {
    display: block;
    width: auto;
  }
}
.module-event .module_links.module_links--columns-3 > *:not(ul) {
  width: 33.33%;
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (max-width: 1200px) {
  .module-event .module_links.module_links--columns-3 > *:not(ul) {
    width: 50%;
  }
}
@media only screen and (max-width: 1024px) {
  .module-event .module_links.module_links--columns-3 > *:not(ul) {
    width: 33.33%;
  }
}
@media only screen and (max-width: 640px) {
  .module-event .module_links.module_links--columns-3 > *:not(ul) {
    width: 50%;
  }
}
@media only screen and (max-width: 480px) {
  .module-event .module_links.module_links--columns-3 > *:not(ul) {
    display: block;
    width: auto;
  }
}
.module-event .module_links.module_links--columns-3 > ul li {
  width: 33.33%;
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (max-width: 1200px) {
  .module-event .module_links.module_links--columns-3 > ul li {
    width: 50%;
  }
}
@media only screen and (max-width: 1024px) {
  .module-event .module_links.module_links--columns-3 > ul li {
    width: 33.33%;
  }
}
@media only screen and (max-width: 640px) {
  .module-event .module_links.module_links--columns-3 > ul li {
    width: 50%;
  }
}
@media only screen and (max-width: 480px) {
  .module-event .module_links.module_links--columns-3 > ul li {
    display: block;
    width: auto;
  }
}
.module-event .module_links--separator > *:not(:first-child)::before {
  content: "|";
  margin: 0 10px;
  font-size: 14px;
  vertical-align: top;
}
@media only screen and (max-width: 480px) {
  .module-event .module_links--separator > *:not(:first-child)::before {
    content: none;
  }
}
.module-event .module_links--separator .module_link {
  margin-right: 0;
}
.module-event .module_links--separator .module_attachments li:not(:first-child)::before,
.module-event .module_links--separator .module_financials li:not(:first-child)::before {
  content: "|";
  margin: 0 10px;
  font-size: 14px;
  vertical-align: top;
}
@media only screen and (max-width: 480px) {
  .module-event .module_links--separator .module_attachments li:not(:first-child)::before,
.module-event .module_links--separator .module_financials li:not(:first-child)::before {
    content: none;
  }
}
.module-event-details .module_speakers h4, .module-event-details .module_speakers .h4 {
  display: none;
}
.module-event-details .module_webcast:empty {
  display: none;
}
.module-event-details .module_links {
  margin-bottom: 0;
}
.module-event-details .module_links.module_links--columns > *:not(ul) {
  width: 50%;
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (max-width: 1024px) {
  .module-event-details .module_links.module_links--columns > *:not(ul) {
    display: inline;
    width: auto;
  }
}
@media only screen and (max-width: 480px) {
  .module-event-details .module_links.module_links--columns > *:not(ul) {
    display: block;
    width: auto;
  }
}
.module-event-details .module_links.module_links--columns > ul li {
  width: 50%;
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (max-width: 1024px) {
  .module-event-details .module_links.module_links--columns > ul li {
    display: inline;
    width: auto;
  }
}
@media only screen and (max-width: 480px) {
  .module-event-details .module_links.module_links--columns > ul li {
    display: block;
    width: auto;
  }
}
.module-event-details .module_links--separator > *:not(:first-child)::before {
  content: "|";
  margin: 0 10px;
  font-size: 14px;
  vertical-align: top;
}
@media only screen and (max-width: 480px) {
  .module-event-details .module_links--separator > *:not(:first-child)::before {
    content: none;
  }
}
.module-event-details .module_links--separator > .js--hidden:first-child + *::before {
  content: none;
}
.module-event-details .module_links--separator .module_link {
  margin-right: 0;
}
.module-event-details .module_links--separator .module_attachments li:not(:first-child)::before,
.module-event-details .module_links--separator .module_financials li:not(:first-child)::before {
  content: "|";
  margin: 0 10px;
  font-size: 14px;
  vertical-align: top;
}
@media only screen and (max-width: 480px) {
  .module-event-details .module_links--separator .module_attachments li:not(:first-child)::before,
.module-event-details .module_links--separator .module_financials li:not(:first-child)::before {
    content: none;
  }
}
.module-event-details .module_links--separator .module_add-to-calendar.js--hidden + .module_webcast::before,
.module-event-details .module_links--separator .module_add-to-calendar + .module_webcast:empty + *::before {
  content: none;
}
@media only screen and (max-width: 768px) {
  .module-event-details .module_reminder .grid_col {
    margin-bottom: 20px;
  }
}
.module-event-home {
  height: 100%;
  position: relative;
}
.module-event-home .module_container--content {
  margin-bottom: 50px;
}
.module-event-home .module_links {
  display: flex;
  flex-wrap: wrap;
}
.module-event-home .module_link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.module-event-home .module_link .q4icons_icon {
  display: grid;
  place-items: center;
}
.module-event-home .module_link-text {
  font-weight: 600;
  vertical-align: middle;
  padding: 5px 0;
}
.module-event-home .module_link:hover {
  text-decoration: none;
}
.module-event-home .module_link:hover .module_link-text {
  text-decoration: underline;
}
.module-event-home .module_link:hover .q4icons_icon {
  text-decoration: none;
}
.module-event-home .module_date-text {
  font-size: 16px;
  font-size: 1.6rem;
}
.module-event-home .module_headline-link {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0px;
}
.module-event-home .module_item {
  padding: 0;
}
.module-event-home .module_item:not(:last-child) {
  margin-bottom: 16px;
}
.module-event-home .module_item ~ .module_item {
  border-top: 1px solid #767676;
  padding-top: 54px;
}
.module-event-home.background--grey .module_item-wrap {
  background-color: #fff;
}
.module-event-home .button--cta {
  position: absolute;
  bottom: 60px;
}
.module-event-latest .module_item {
  margin: 0;
  border: none;
  text-align: left;
  padding-top: 0;
  padding-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .module-event-latest .module_item:first-child {
    width: 100%;
  }
}
.module-event-latest .module_item-wrap {
  padding: 30px;
  background-color: #DCE5EF;
}
.module-event-latest .module_links {
  margin: 0;
}
.module-event-latest.background--grey .module_item-wrap {
  background-color: #fff;
}
.module-event-upcoming .module_nav {
  display: none;
}
.module-event-upcoming .module_item:not(:last-child) {
  margin-bottom: 30px;
}
.module-event-upcoming .module_date-time {
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 400;
  margin-bottom: 10px;
}
.module-event-upcoming .module_headline-link {
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 2.8rem;
}
.module-event-upcoming .module_links {
  font-size: 1.2rem;
  font-weight: 600;
}
.module-event-calendar {
  padding-right: calc(100% - 500px);
}
.module-event-calendar_event-container {
  margin-top: 20px;
}
.module-event-calendar_splash i {
  font-size: 4rem;
  color: #00213F;
}
.module-event-calendar_splash p {
  font-size: 1.4rem;
  line-height: 1.2;
}
.module-event-calendar_controls {
  padding: 20px 15px;
  background-color: #00213F;
  color: #fff;
  text-align: center;
  font-size: 2.4rem;
}
.module-event-calendar_previous-month, .module-event-calendar_month, .module-event-calendar_next-month {
  display: inline-block;
}
.module-event-calendar_previous-month, .module-event-calendar_next-month {
  cursor: pointer;
}
.module-event-calendar_previous-month {
  float: left;
}
.module-event-calendar_next-month {
  float: right;
}
.module-event-calendar_day-container {
  text-align: center;
  border: 1px solid #DCE5EF;
  padding-bottom: 10px;
  display: table;
  table-layout: fixed;
  width: 100%;
}
.module-event-calendar_week {
  display: table-row;
  background-color: #DCE5EF;
  margin-bottom: 10px;
}
.module-event-calendar_days {
  display: table-row-group;
}
.module-event-calendar_days > div[role=row] {
  display: table-row;
}
.module-event-calendar_day {
  display: inline-block;
  position: relative;
  width: 14.285%;
  margin: 0;
  padding: 15px 0;
  border: none;
  background-color: transparent;
}
@media only screen and (max-width: 480px) {
  .module-event-calendar_day {
    padding: 5px 0;
  }
}
.module-event-calendar_day > span {
  display: block;
  max-width: 40px;
  margin-left: auto;
  margin-right: auto;
  padding: 8px 0;
  text-align: center;
  border-radius: 3px;
}
.module-event-calendar_day--name {
  padding: 15px 0;
  border: none;
}
@media only screen and (max-width: 480px) {
  .module-event-calendar_day--name {
    padding: 10px 0;
  }
}
.module-event-calendar_day--today:not(.module-event-calendar_day--adjacent-month) > span {
  background-color: #D1AA63;
  color: #fff;
}
.module-event-calendar_day--event {
  cursor: pointer;
}
.module-event-calendar_day--event > span {
  background-color: #00213F;
  color: #fff;
}
.module-event-calendar_day--adjacent-month {
  color: rgba(32, 62, 99, 0.1);
  pointer-events: none;
}
.module-event-calendar_day--adjacent-month::after {
  content: none;
}
@media only screen and (max-width: 480px) {
  .module-event-calendar_day {
    display: inline-block;
  }
}
.module-event-calendar .module_add-to-calendar {
  margin: 0;
}
.module-event-calendar_legend ul {
  padding: 0;
  margin: 15px 0 25px 0;
}
.module-event-calendar_legend li {
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding-left: 25px;
  margin-right: 30px;
}
.module-event-calendar_legend li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 16px;
  height: 16px;
  background-color: #00213F;
  border-radius: 3px;
}
.module-event-calendar_legend li.module-event-calendar_legend-item--current::before {
  background-color: #D1AA63;
}
@media only screen and (max-width: 768px) {
  .module-event-calendar {
    display: block;
  }
  .module-event-calendar_calendar-container, .module-event-calendar_event-container {
    display: block;
    width: 100%;
  }
  .module-event-calendar_calendar-container {
    padding-right: 0;
  }
  .module-event-calendar_event-container {
    margin-top: 20px;
  }
}
.module-event-archive .module_options {
  display: flex;
}
.module-event-archive .module_options-group {
  display: flex;
  flex-direction: column;
}
.module-event-archive .module_options-label {
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 28px;
}
.module-event-archive .module_options-select {
  border-color: #cfcfcf;
}
.module-event-archive .module_pager .pager_button {
  border-radius: 50%;
  color: #D1AA63;
  border-color: transparent;
}
.module-event-archive .module_pager .pager_button.js--active {
  color: #fff;
  background-color: #D1AA63;
}

.module-event {
  height: 100%;
}

.module-events-and-presentations .module_add-to-calendar-reveal .q4icons_icon:before {
  content: "";
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
}
.module-events-and-presentations .q4icons .module_link-download .q4icons_icon::before {
  content: "";
  background-image: url("../design/svg/download.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
}

:root {
  --evgBodyTextColor: #585555;
  --evgBorderColor: #dddddd;
  --evgPrimaryColor: #00213F;
  --evgAltColor: #6f3a8f;
  --evgBrand1Color: #ffffff;
  --evgBrand2Color: #ffffff;
  --evgBrand3Color: #ffffff;
  --evgBrand4Color: #ffffff;
  --evgBrand5Color: #ffffff;
  --evgLightColor: #ffffff;
  --evgGreyColor: #fafafa;
  --evgGreyDarkColor: #374448;
  --evgDarkColor: #283033;
  --evgDarkenColor: rgba(0, 0, 0, 0.05);
  --evgLightenColor: rgba(255, 255, 255, 0.05);
  --evgLightOverlayColor: rgba(255, 255, 255, 0.6);
  --evgDarkOverlayColor: rgba(0, 0, 0, 0.6);
  --evgErrorColor: #b72121;
  --evgSuccessColor: #006613;
  --evgInheritColor: inherit;
  --evgBannersStaticBackgroundImageAltText: inherit;
  --evgBannersStaticBackgroundImagePosition: inherit;
  --evgBannersStaticBackgroundImageSizing: inherit;
  --evgBannersStaticBackgroundVideoShowOnTablet: block;
  --evgBannersStaticMinimumHeightSizeL: px;
  --evgBannersStaticMinimumHeightSizeM: px;
  --evgBannersStaticMinimumHeightSizeS: px;
  --evgBannersStaticBorderRadius: px;
  --evgBannersStaticBannerCoverage: bannerAndHeader;
  --evgPaddingContainerPadding: 20px;
  --evgPaddingItemPadding: 30px;
  --evgModuleNameFontTypography: h2;
  --evgModuleNameFontFamily: var(--fontFamilyEuclid) !important;
  --evgModuleNameFontSizeL: calc(var(--evgRootFontSize) * 3.6);
  --evgModuleNameFontSizeM: calc(var(--evgRootFontSize) * 2.7);
  --evgModuleNameFontSizeS: calc(var(--evgRootFontSize) * 2.7);
  --evgModuleNameFontColor: var(--evgBodyTextColor);
  --evgModuleNameFontWeight: normal;
  --evgModuleNameFontLineHeight: 1.3;
  --evgModuleNameFontCapitalization: none;
  --evgModuleNameFontAlignment: left;
  --evgModuleItemUnderline: 0;
  --evgModuleItemUnderlineStyle: solid;
  --evgModuleItemUnderlineColor: var(--evgBodyTextColor);
  --evgModuleItemTitleFontTypography: h4;
  --evgModuleItemTitleFontFamily: var(--fontFamilyEuclid) !important;
  --evgModuleItemTitleFontSizeL: calc(var(--evgRootFontSize) * 1.6);
  --evgModuleItemTitleFontSizeM: calc(var(--evgRootFontSize) * 1.6);
  --evgModuleItemTitleFontSizeS: calc(var(--evgRootFontSize) * 1.6);
  --evgModuleItemTitleFontColor: var(--evgBodyTextColor);
  --evgModuleItemTitleFontHoverColor: var(--evgLightColor);
  --evgModuleItemTitleFontFocusColor: var(--evgLightColor);
  --evgModuleItemTitleFontWeight: normal;
  --evgModuleItemTitleFontLineHeight: 1.4;
  --evgModuleItemTitleFontCapitalization: none;
  --evgModuleItemSubtitleFontTypography: h5;
  --evgModuleItemSubtitleFontFamily: var(--fontFamilyEuclid) !important;
  --evgModuleItemSubtitleFontSizeL: calc(var(--evgRootFontSize) * 1.3);
  --evgModuleItemSubtitleFontSizeM: calc(var(--evgRootFontSize) * 1.3);
  --evgModuleItemSubtitleFontSizeS: calc(var(--evgRootFontSize) * 1.3);
  --evgModuleItemSubtitleFontColor: var(--evgAltColor);
  --evgModuleItemSubtitleFontWeight: normal;
  --evgModuleItemSubtitleFontLineHeight: 1.3;
  --evgModuleItemSubtitleFontCapitalization: none;
  --evgModuleBackgroundColor: var(--evgBrand1Color);
  --evgModuleBackgroundItemBackgroundColor: var(--evgBrand1Color);
  --evgModuleBackgroundBorderRadius: 0px;
  --evgModuleBackgroundItemBorderRadius: 0px;
  --evgDateTimeFontTypography: caption;
  --evgDateTimeFontFamily: var(--fontFamilyEuclid) !important;
  --evgDateTimeFontSizeL: calc(var(--evgRootFontSize) * 1.3);
  --evgDateTimeFontSizeM: calc(var(--evgRootFontSize) * 1.3);
  --evgDateTimeFontSizeS: calc(var(--evgRootFontSize) * 1.3);
  --evgDateTimeFontColor: var(--evgAltColor);
  --evgDateTimeFontWeight: normal;
  --evgDateTimeFontLineHeight: 1.3;
  --evgDateTimeFontCapitalization: none;
  --evgBodyFontColor: var(--evgBodyTextColor);
  --evgHyperlinkFontTypography: body;
  --evgHyperlinkFontFamily: var(--fontFamilyEuclid) !important;
  --evgHyperlinkFontSizeL: calc(var(--evgRootFontSize) * 1.6);
  --evgHyperlinkFontSizeM: calc(var(--evgRootFontSize) * 1.6);
  --evgHyperlinkFontSizeS: calc(var(--evgRootFontSize) * 1.6);
  --evgHyperlinkFontColor: var(--evgAltColor);
  --evgHyperlinkFontHoverColor: var(--evgPrimaryColor);
  --evgHyperlinkFontFocusColor: var(--evgAltColor);
  --evgHyperlinkFontWeight: normal;
  --evgHyperlinkFontStyle: normal;
  --evgHyperlinkFontLineHeight: 1.3;
  --evgHyperlinkFontCapitalization: none;
  --evgHyperlinkDecorationTextDecoration: none;
  --evgHyperlinkDecorationTextDecorationHover: none;
  --evgHyperlinkDecorationTextDecorationFocus: none;
  --evgHyperlinkDecorationTextDecorationColor: var(--evgInheritColor);
  --evgHyperlinkDecorationTextDecorationHoverColor: var(--evgInheritColor);
  --evgHyperlinkDecorationTextDecorationFocusColor: var(--evgInheritColor);
  --evgButtonFontTypography: body;
  --evgButtonFontFamily: var(--fontFamilyEuclid) !important;
  --evgButtonFontSizeL: calc(var(--evgRootFontSize) * 1.6);
  --evgButtonFontSizeM: calc(var(--evgRootFontSize) * 1.6);
  --evgButtonFontSizeS: calc(var(--evgRootFontSize) * 1.6);
  --evgButtonFontColor: var(--evgLightColor);
  --evgButtonFontHoverColor: var(--evgLightColor);
  --evgButtonFontFocusColor: var(--evgLightColor);
  --evgButtonFontWeight: normal;
  --evgButtonFontStyle: normal;
  --evgButtonFontLineHeight: 1.3;
  --evgButtonFontCapitalization: none;
  --evgButtonBorderColor: var(--evgPrimaryColor);
  --evgButtonBorderHoverColor: var(--evgAltColor);
  --evgButtonBorderFocusColor: var(--evgAltColor);
  --evgButtonBorderRadius: 0;
  --evgButtonBackgroundColor: var(--evgPrimaryColor);
  --evgButtonBackgroundHoverColor: var(--evgAltColor);
  --evgButtonBackgroundFocusColor: var(--evgAltColor);
  --evgButtonPaddingItemPadding: initial;
  --evgButtonPaddingVerticalPadding: 20px;
  --evgButtonPaddingTop: initial;
  --evgButtonPaddingBottom: initial;
  --evgButtonPaddingLeft: initial;
  --evgButtonPaddingRight: initial;
  --evgButtonDecorationTextDecoration: none;
  --evgButtonDecorationTextDecorationHover: none;
  --evgButtonDecorationTextDecorationFocus: none;
  --evgButtonDecorationTextDecorationColor: var(--evgLightColor);
  --evgButtonDecorationTextDecorationHoverColor: var(--evgLightColor);
  --evgButtonDecorationTextDecorationFocusColor: var(--evgLightColor);
  --evgButtonAltFontTypography: body;
  --evgButtonAltFontFamily: var(--fontFamilyEuclid) !important;
  --evgButtonAltFontSizeL: calc(var(--evgRootFontSize) * 1.6);
  --evgButtonAltFontSizeM: calc(var(--evgRootFontSize) * 1.6);
  --evgButtonAltFontSizeS: calc(var(--evgRootFontSize) * 1.6);
  --evgButtonAltFontColor: var(--evgPrimaryColor);
  --evgButtonAltFontHoverColor: var(--evgLightColor);
  --evgButtonAltFontFocusColor: var(--evgLightColor);
  --evgButtonAltFontWeight: normal;
  --evgButtonAltFontStyle: normal;
  --evgButtonAltFontLineHeight: 1.3;
  --evgButtonAltFontCapitalization: none;
  --evgButtonAltBorderColor: var(--evgLightColor);
  --evgButtonAltBorderHoverColor: var(--evgPrimaryColor);
  --evgButtonAltBorderFocusColor: var(--evgPrimaryColor);
  --evgButtonAltBorderRadius: 0;
  --evgButtonAltBackgroundColor: var(--evgLightColor);
  --evgButtonAltBackgroundHoverColor: var(--evgPrimaryColor);
  --evgButtonAltBackgroundFocusColor: var(--evgPrimaryColor);
  --evgButtonAltPaddingItemPadding: initial;
  --evgButtonAltPaddingVerticalPadding: 20px;
  --evgButtonAltPaddingTop: initial;
  --evgButtonAltPaddingBottom: initial;
  --evgButtonAltPaddingLeft: initial;
  --evgButtonAltPaddingRight: initial;
  --evgButtonAltDecorationTextDecoration: none;
  --evgButtonAltDecorationTextDecorationHover: none;
  --evgButtonAltDecorationTextDecorationFocus: none;
  --evgButtonAltDecorationTextDecorationColor: var(--evgLightColor);
  --evgButtonAltDecorationTextDecorationHoverColor: var(--evgLightColor);
  --evgButtonAltDecorationTextDecorationFocusColor: var(--evgLightColor);
  --evgDropdownFontTypography: body;
  --evgDropdownFontFamily: var(--fontFamilyEuclid) !important;
  --evgDropdownFontSizeL: calc(var(--evgRootFontSize) * 1.6);
  --evgDropdownFontSizeM: calc(var(--evgRootFontSize) * 1.6);
  --evgDropdownFontSizeS: calc(var(--evgRootFontSize) * 1.6);
  --evgDropdownFontColor: var(--evgAltColor);
  --evgDropdownFontFocusColor: var(--evgAltColor);
  --evgDropdownFontWeight: normal;
  --evgDropdownFontLineHeight: 1.3;
  --evgDropdownFontCapitalization: none;
  --evgDropdownBorderColor: var(--evgAltColor);
  --evgDropdownBorderFocusColor: var(--evgAltColor);
  --evgDropdownBorderRadius: 0;
  --evgDropdownBackgroundColor: var(--evgLightColor);
  --evgDropdownBackgroundFocusColor: var(--evgLightColor);
  --evgAccordionContentFontColor: var(--evgBodyTextColor);
  --evgAccordionContentBackgroundColor: var(--evgGreyColor);
  --evgAccordionFontTypography: h4;
  --evgAccordionFontFamily: var(--fontFamilyEuclid) !important;
  --evgAccordionFontSizeL: calc(var(--evgRootFontSize) * 1.6);
  --evgAccordionFontSizeM: calc(var(--evgRootFontSize) * 1.6);
  --evgAccordionFontSizeS: calc(var(--evgRootFontSize) * 1.6);
  --evgAccordionFontColor: var(--evgAltColor);
  --evgAccordionFontAltColor: var(--evgPrimaryColor);
  --evgAccordionFontFocusColor: var(--evgAltColor);
  --evgAccordionFontWeight: normal;
  --evgAccordionFontStyle: normal;
  --evgAccordionFontLineHeight: 1.5;
  --evgAccordionFontCapitalization: none;
  --evgAccordionSecondaryFontTypography: caption;
  --evgAccordionSecondaryFontFamily: Inter;
  --evgAccordionSecondaryFontSizeL: calc(var(--evgRootFontSize) * 1.6);
  --evgAccordionSecondaryFontSizeM: calc(var(--evgRootFontSize) * 1.6);
  --evgAccordionSecondaryFontSizeS: calc(var(--evgRootFontSize) * 1.6);
  --evgAccordionSecondaryFontColor: var(--evgAltColor);
  --evgAccordionSecondaryFontAltColor: var(--evgPrimaryColor);
  --evgAccordionSecondaryFontWeight: normal;
  --evgAccordionSecondaryFontStyle: normal;
  --evgAccordionSecondaryFontLineHeight: 1.3;
  --evgAccordionSecondaryFontCapitalization: none;
  --evgAccordionSecondaryFontActiveColor: primary;
  --evgAccordionBorderColor: var(--evgGreyColor);
  --evgAccordionBorderHoverColor: var(--evgGreyColor);
  --evgAccordionBorderFocusColor: var(--evgGreyColor);
  --evgAccordionBorderActiveColor: var(--evgGreyColor);
  --evgAccordionBorderRadius: 0px;
  --evgAccordionBackgroundColor: var(--evgBorderColor);
  --evgAccordionBackgroundHoverColor: var(--evgBorderColor);
  --evgAccordionBackgroundFocusColor: var(--evgBorderColor);
  --evgAccordionBackgroundActiveColor: var(--evgBorderColor);
  --evgAccordionPaddingItemPadding: 20px;
  --evgTabsTabGaps: 3px;
  --evgTabsContainerPaddingLeftRight: 15px;
  --evgTabsContainerPaddingTop: 10px;
  --evgTabsFontTypography: body;
  --evgTabsFontFamily: var(--fontFamilyEuclid) !important;
  --evgTabsFontSizeL: calc(var(--evgRootFontSize) * 1.6);
  --evgTabsFontSizeM: calc(var(--evgRootFontSize) * 1.6);
  --evgTabsFontSizeS: calc(var(--evgRootFontSize) * 1.6);
  --evgTabsFontColor: var(--evgLightColor);
  --evgTabsFontAltColor: var(--evgPrimaryColor);
  --evgTabsFontHoverColor: var(--evgPrimaryColor);
  --evgTabsFontWeight: normal;
  --evgTabsFontLineHeight: 1.3;
  --evgTabsFontCapitalization: none;
  --evgTabsBorderColor: var(--evgInheritColor);
  --evgTabsBorderHoverColor: var(--evgInheritColor);
  --evgTabsBorderActiveColor: var(--evgInheritColor);
  --evgTabsBorderRadius: 0;
  --evgTabsBackgroundColor: var(--evgPrimaryColor);
  --evgTabsSecondaryBackgroundColor: var(--evgPrimaryColor);
  --evgTabsSecondaryBackgroundHoverColor: var(--evgLightColor);
  --evgTabsSecondaryBackgroundActiveColor: var(--evgLightColor);
  --evgListBulletStyle: disc;
  --evgListBulletColor: var(--evgPrimaryColor);
  --evgListFontTypography: body;
  --evgListFontFamily: var(--fontFamilyEuclid) !important;
  --evgListFontSizeL: calc(var(--evgRootFontSize) * 1.6);
  --evgListFontSizeM: calc(var(--evgRootFontSize) * 1.6);
  --evgListFontSizeS: calc(var(--evgRootFontSize) * 1.6);
  --evgListFontColor: var(--evgBodyTextColor);
  --evgListFontWeight: normal;
  --evgListFontStyle: normal;
  --evgListFontLineHeight: 1;
  --evgListFontCapitalization: none;
  --evgListDecorationTextDecoration: none;
  --evgListDecorationTextDecorationHover: inherit;
  --evgListDecorationTextDecorationFocus: inherit;
  --evgListDecorationTextDecorationColor: var(--evgInheritColor);
  --evgTableZebra: inherit;
  --evgTableRowUnderline: 1px solid;
  --evgTableFontTypography: body;
  --evgTableFontFamily: var(--fontFamilyEuclid) !important;
  --evgTableFontSizeL: calc(var(--evgRootFontSize) * 1.6);
  --evgTableFontSizeM: calc(var(--evgRootFontSize) * 1.6);
  --evgTableFontSizeS: calc(var(--evgRootFontSize) * 1.6);
  --evgTableFontColor: var(--evgLightColor);
  --evgTableFontWeight: normal;
  --evgTableFontLineHeight: 1;
  --evgTableFontCapitalization: none;
  --evgTableSecondaryFontTypography: body;
  --evgTableSecondaryFontFamily: var(--fontFamilyEuclid) !important;
  --evgTableSecondaryFontSizeL: calc(var(--evgRootFontSize) * 1.6);
  --evgTableSecondaryFontSizeM: calc(var(--evgRootFontSize) * 1.6);
  --evgTableSecondaryFontSizeS: calc(var(--evgRootFontSize) * 1.6);
  --evgTableSecondaryFontColor: var(--evgPrimaryColor);
  --evgTableSecondaryFontAltColor: var(--evgBodyTextColor);
  --evgTableSecondaryFontWeight: normal;
  --evgTableSecondaryFontLineHeight: 1.5;
  --evgTableSecondaryFontCapitalization: none;
  --evgTableBorderColor: var(--evgBorderColor);
  --evgTableBorderRadius: 0;
  --evgTableBackgroundColor: var(--evgPrimaryColor);
  --evgTableBackgroundAltColor: var(--evgBorderColor);
  --evgTableSecondaryBackgroundColor: var(--evgLightColor);
  --evgTableSecondaryBackgroundAltColor: var(--evgGreyColor);
  --evgTableShowNavigationArrows: initial;
  --evgStockChartStockChartMainColor: var(--evgPrimaryColor);
  --evgStockChartStockChartMarkerColor: var(--evgAltColor);
  --evgStockChartStockChartDividerColor: var(--evgGreyColor);
  --evgStockChartStockChartTimelineSelectorColor: var(--evgPrimaryColor);
  --evgStockChartFontTypography: caption;
  --evgStockChartFontFamily: var(--fontFamilyEuclid) !important;
  --evgStockChartFontSizeL: calc(var(--evgRootFontSize) * 1.6);
  --evgStockChartFontSizeM: calc(var(--evgRootFontSize) * 1.6);
  --evgStockChartFontSizeS: calc(var(--evgRootFontSize) * 1.6);
  --evgStockChartFontColor: var(--evgBodyTextColor);
  --evgStockChartFontWeight: normal;
  --evgStockChartFontLineHeight: 1.2;
  --evgStockChartFontCapitalization: uppercase;
  --evgStockChartBackgroundColor: var(--evgLightColor);
  --evgPaginationAlignment: left;
  --evgPaginationFontTypography: caption;
  --evgPaginationFontFamily: var(--fontFamilyEuclid) !important;
  --evgPaginationFontSizeL: calc(var(--evgRootFontSize) * 1.6);
  --evgPaginationFontSizeM: calc(var(--evgRootFontSize) * 1.6);
  --evgPaginationFontSizeS: calc(var(--evgRootFontSize) * 1.6);
  --evgPaginationFontColor: var(--evgPrimaryColor);
  --evgPaginationFontAltColor: var(--evgLightColor);
  --evgPaginationFontHoverColor: var(--evgLightColor);
  --evgPaginationFontWeight: normal;
  --evgPaginationFontLineHeight: 1.2;
  --evgPaginationFontCapitalization: uppercase;
  --evgPaginationBorderColor: var(--evgPrimaryColor);
  --evgPaginationBorderHoverColor: var(--evgPrimaryColor);
  --evgPaginationBorderActiveColor: var(--evgPrimaryColor);
  --evgPaginationBorderRadius: 0;
  --evgPaginationBackgroundColor: var(--evgLightColor);
  --evgPaginationBackgroundHoverColor: var(--evgPrimaryColor);
  --evgPaginationBackgroundActiveColor: var(--evgPrimaryColor);
  --evgPaginationOutlineFocusColor: var(--evgPrimaryColor);
  --evgInputPlaceholderColor: var(--evgGreyColor);
  --evgInputShowPlaceholder: visible;
  --evgInputFontTypography: body;
  --evgInputFontFamily: var(--fontFamilyEuclid) !important;
  --evgInputFontSizeL: calc(var(--evgRootFontSize) * 1.6);
  --evgInputFontSizeM: calc(var(--evgRootFontSize) * 1.6);
  --evgInputFontSizeS: calc(var(--evgRootFontSize) * 1.6);
  --evgInputFontColor: var(--evgBodyTextColor);
  --evgInputFontWeight: normal;
  --evgInputFontLineHeight: 1;
  --evgInputFontCapitalization: none;
  --evgInputSecondaryFontTypography: body;
  --evgInputSecondaryFontFamily: var(--fontFamilyEuclid) !important;
  --evgInputSecondaryFontSizeL: calc(var(--evgRootFontSize) * 1.6);
  --evgInputSecondaryFontSizeM: calc(var(--evgRootFontSize) * 1.6);
  --evgInputSecondaryFontSizeS: calc(var(--evgRootFontSize) * 1.6);
  --evgInputSecondaryFontColor: var(--evgBodyTextColor);
  --evgInputSecondaryFontWeight: normal;
  --evgInputSecondaryFontLineHeight: 1;
  --evgInputSecondaryFontCapitalization: capitalize;
  --evgInputBorderColor: var(--evgBorderColor);
  --evgInputBorderFocusColor: var(--evgPrimaryColor);
  --evgInputBorderRadius: 0;
  --evgInputBackgroundColor: var(--evgLightColor);
  --evgRadioCheckboxFillStyle: var(--evgBodyTextColor);
  --evgRadioCheckboxFillColor: var(--evgBodyTextColor);
  --evgRadioCheckboxFillActiveColor: var(--evgAltColor);
  --evgRadioCheckboxSecondaryBorderColor: var(--evgLightColor);
  --evgRadioCheckboxSecondaryBorderActiveColor: var(--evgAltColor);
  --evgRadioCheckboxSecondaryFillStyle: var(--evgBodyTextColor);
  --evgRadioCheckboxSecondaryFillColor: var(--evgBodyTextColor);
  --evgRadioCheckboxSecondaryFillActiveColor: var(--evgAltColor);
  --evgRadioCheckboxFontTypography: body;
  --evgRadioCheckboxFontFamily: Arial;
  --evgRadioCheckboxFontSizeL: calc(var(--evgRootFontSize) * 1.6);
  --evgRadioCheckboxFontSizeM: calc(var(--evgRootFontSize) * 1.6);
  --evgRadioCheckboxFontSizeS: calc(var(--evgRootFontSize) * 1.6);
  --evgRadioCheckboxFontColor: var(--evgLightColor);
  --evgRadioCheckboxFontWeight: normal;
  --evgRadioCheckboxFontLineHeight: 1.2;
  --evgRadioCheckboxFontCapitalization: none;
  --evgRadioCheckboxBorderColor: var(--evgLightColor);
  --evgRadioCheckboxBorderActiveColor: var(--evgAltColor);
  --evgRadioCheckboxBorderRadius: 0;
  --evgCalendarDayFontTypography: body;
  --evgCalendarDayFontFamily: Inter;
  --evgCalendarDayFontSizeL: calc(var(--evgRootFontSize) * 1.4);
  --evgCalendarDayFontSizeM: calc(var(--evgRootFontSize) * 1.4);
  --evgCalendarDayFontSizeS: calc(var(--evgRootFontSize) * 1.4);
  --evgCalendarDayFontColor: var(--evgBodyTextColor);
  --evgCalendarDayFontWeight: normal;
  --evgCalendarDayFontLineHeight: 1;
  --evgCalendarDayFontCapitalization: capitalize;
  --evgCalendarLegendFontTypography: caption;
  --evgCalendarLegendFontFamily: Inter;
  --evgCalendarLegendFontSizeL: calc(var(--evgRootFontSize) * 1.4);
  --evgCalendarLegendFontSizeM: calc(var(--evgRootFontSize) * 1.4);
  --evgCalendarLegendFontSizeS: calc(var(--evgRootFontSize) * 1.4);
  --evgCalendarLegendFontColor: var(--evgBodyTextColor);
  --evgCalendarLegendFontWeight: normal;
  --evgCalendarLegendFontLineHeight: 1;
  --evgCalendarLegendFontCapitalization: capitalize;
  --evgCalendarDotPrimaryColor: var(--evgPrimaryColor);
  --evgCalendarDotSecondaryColor: var(--evgSuccessColor);
  --evgCalendarFontTypography: caption;
  --evgCalendarFontFamily: Inter;
  --evgCalendarFontSizeL: calc(var(--evgRootFontSize) * 1.4);
  --evgCalendarFontSizeM: calc(var(--evgRootFontSize) * 1.4);
  --evgCalendarFontSizeS: calc(var(--evgRootFontSize) * 1.4);
  --evgCalendarFontColor: var(--evgBodyTextColor);
  --evgCalendarFontAltColor: var(--evgLightColor);
  --evgCalendarFontHoverColor: var(--evgLightColor);
  --evgCalendarFontFocusColor: var(--evgBodyTextColor);
  --evgCalendarFontWeight: normal;
  --evgCalendarFontLineHeight: 1.2;
  --evgCalendarFontCapitalization: uppercase;
  --evgCalendarFontDisabledColor: var(--evgGreyColor);
  --evgCalendarSecondaryFontTypography: caption;
  --evgCalendarSecondaryFontFamily: Inter;
  --evgCalendarSecondaryFontSizeL: calc(var(--evgRootFontSize) * 1.6);
  --evgCalendarSecondaryFontSizeM: calc(var(--evgRootFontSize) * 1.6);
  --evgCalendarSecondaryFontSizeS: calc(var(--evgRootFontSize) * 1.6);
  --evgCalendarSecondaryFontColor: var(--evgLightColor);
  --evgCalendarSecondaryFontWeight: 600;
  --evgCalendarSecondaryFontLineHeight: 1.5;
  --evgCalendarSecondaryFontCapitalization: capitalize;
  --evgCalendarBorderColor: var(--evgBorderColor);
  --evgCalendarBorderRadius: 0;
  --evgCalendarBackgroundColor: var(--evgLightColor);
  --evgCalendarBackgroundHoverColor: var(--evgAltColor);
  --evgCalendarBackgroundActiveColor: var(--evgPrimaryColor);
  --evgCalendarSecondaryBackgroundColor: var(--evgPrimaryColor);
  --evgCalendarSecondaryBackgroundAltColor: var(--evgLightColor);
  --evgCardDropShadow: var(--dropShadowBottomRight);
  --evgCardDropShadowHover: none;
  --evgCardBorderColor: var(--evgLightColor);
  --evgCardBorderHoverColor: var(--evgLightColor);
  --evgCardBorderActiveColor: var(--evgLightColor);
  --evgCardBorderRadius: 0px;
  --evgCardBackgroundColor: var(--evgLightColor);
  --evgCardBackgroundHoverColor: var(--evgLightColor);
  --evgCardBackgroundActiveColor: var(--evgLightColor);
  --evgCardPaddingTop: 20px;
  --evgCardPaddingBottom: 20px;
  --evgCardPaddingLeft: 20px;
  --evgCardPaddingRight: 20px;
  --evgBodyFontFamily: var(--fontFamilyEuclid) !important;
  --evgBodyFontSizeL: calc(var(--evgRootFontSize) * 1.6);
  --evgBodyFontSizeM: calc(var(--evgRootFontSize) * 1.6);
  --evgBodyFontSizeS: calc(var(--evgRootFontSize) * 1.6);
  --evgBodyFontColor: var(--evgBodyTextColor);
  --evgBodyFontWeight: normal;
  --evgBodyLineHeight: 1.5;
  --evgBodyCapitalization: none;
  --evgLinkTypography: body;
  --evgLinkFontFamily: var(--fontFamilyEuclid) !important;
  --evgLinkFontSizeL: calc(var(--evgRootFontSize) * 1.6);
  --evgLinkFontSizeM: calc(var(--evgRootFontSize) * 1.6);
  --evgLinkFontSizeS: calc(var(--evgRootFontSize) * 1.6);
  --evgLinkFontColor: var(--evgBodyTextColor);
  --evgLinkFontWeight: normal;
  --evgLinkLineHeight: 1.5;
  --evgLinkCapitalization: none;
  --evgH1FontFamily: var(--fontFamilyEuclid) !important;
  --evgH1FontSizeL: calc(var(--evgRootFontSize) * 6);
  --evgH1FontSizeM: calc(var(--evgRootFontSize) * 4.5);
  --evgH1FontSizeS: calc(var(--evgRootFontSize) * 3.6);
  --evgH1FontColor: var(--evgBodyTextColor);
  --evgH1FontWeight: normal;
  --evgH1LineHeight: 1.5;
  --evgH1Capitalization: none;
  --evgH2FontFamily: var(--fontFamilyEuclid) !important;
  --evgH2FontSizeL: calc(var(--evgRootFontSize) * 3.6);
  --evgH2FontSizeM: calc(var(--evgRootFontSize) * 2.7);
  --evgH2FontSizeS: calc(var(--evgRootFontSize) * 2.7);
  --evgH2FontColor: var(--evgBodyTextColor);
  --evgH2FontWeight: normal;
  --evgH2LineHeight: 1.5;
  --evgH2Capitalization: none;
  --evgH3FontFamily: var(--fontFamilyEuclid) !important;
  --evgH3FontSizeL: calc(var(--evgRootFontSize) * 2.4);
  --evgH3FontSizeM: calc(var(--evgRootFontSize) * 2.4);
  --evgH3FontSizeS: calc(var(--evgRootFontSize) * 2.4);
  --evgH3FontColor: var(--evgBodyTextColor);
  --evgH3FontWeight: normal;
  --evgH3LineHeight: 1.5;
  --evgH3Capitalization: none;
  --evgH4FontFamily: var(--fontFamilyEuclid) !important;
  --evgH4FontSizeL: calc(var(--evgRootFontSize) * 1.6);
  --evgH4FontSizeM: calc(var(--evgRootFontSize) * 1.6);
  --evgH4FontSizeS: calc(var(--evgRootFontSize) * 1.6);
  --evgH4FontColor: var(--evgBodyTextColor);
  --evgH4FontWeight: normal;
  --evgH4LineHeight: 1.5;
  --evgH4Capitalization: none;
  --evgH5FontFamily: var(--fontFamilyEuclid) !important;
  --evgH5FontSizeL: calc(var(--evgRootFontSize) * 1.2);
  --evgH5FontSizeM: calc(var(--evgRootFontSize) * 1.2);
  --evgH5FontSizeS: calc(var(--evgRootFontSize) * 1.2);
  --evgH5FontColor: var(--evgBodyTextColor);
  --evgH5FontWeight: normal;
  --evgH5LineHeight: 1.5;
  --evgH5Capitalization: none;
  --evgCaptionFontFamily: Inter;
  --evgCaptionFontSizeL: calc(var(--evgRootFontSize) * 1);
  --evgCaptionFontSizeM: calc(var(--evgRootFontSize) * 1);
  --evgCaptionFontSizeS: calc(var(--evgRootFontSize) * 1);
  --evgCaptionFontColor: var(--evgBodyTextColor);
  --evgCaptionFontWeight: normal;
  --evgCaptionLineHeight: 1.2;
  --evgCaptionCapitalization: uppercase;
  --evgNavigationsMainDisplay: var(--evgBodyTextColor);
  --evgNavigationsMainSiteLogoUrl: url("https://flatexdegiro2024corp.s4.q4web.com/preview");
  --evgNavigationsMainSiteLogoUrlLink: url("https://flatexdegiro2024corp.s4.q4web.com/preview");
  --evgNavigationsMainSiteLogoAltText: Logo Alt Text;
  --evgNavigationsMainSiteLogoOpenLinkInNewTab: var(--evgBodyTextColor);
  --evgNavigationsMainCurrentPageIndicator: var(--evgBodyTextColor);
  --evgNavigationsMainLinkAlignment: right;
  --evgNavigationsMainDropdownBackgroundHoverColor: var(--evgInheritColor);
  --evgNavigationsMainDropdownBackgroundActiveColor: var(--evgInheritColor);
  --evgNavigationsMainDropdownLinkTypography: body;
  --evgNavigationsMainDropdownLinkFontSizeL: calc(var(--evgRootFontSize) * 1.6);
  --evgNavigationsMainDropdownLinkColor: var(--evgBodyTextColor);
  --evgNavigationsMainDropdownLinkActiveColor: var(--evgInheritColor);
  --evgNavigationsMainDropdownLinkTextDecorationActiveColor: var(--evgInheritColor);
  --evgNavigationsMainDropdownLinkFontFamily: var(--fontFamilyEuclid) !important;
  --evgNavigationsMainDropdownLinkFontCapitalization: none;
  --evgNavigationsMainDropdownLinkFontWeight: normal;
  --evgNavigationsMainDropdownLinkFontStyle: normal;
  --evgNavigationsMainSearchFontSizeL: calc(var(--evgRootFontSize) * 1.6);
  --evgNavigationsMainSearchFontColor: var(--evgBodyTextColor);
  --evgNavigationsMainMobileMenuSeparatorColor: var(--evgBorderColor);
  --evgNavigationsMainMobileSearchFontColor: var(--evgBodyTextColor);
  --evgNavigationsMainMobileLinkTypography: body;
  --evgNavigationsMainMobileLinkFontFamily: var(--fontFamilyEuclid)!important;
  --evgNavigationsMainMobileLinkFontSizeM: calc(var(--evgRootFontSize) * 1.6);
  --evgNavigationsMainMobileLinkFontSizeS: calc(var(--evgRootFontSize) * 1.6);
  --evgNavigationsMainMobileLinkFontWeight: normal;
  --evgNavigationsMainMobileLinkFontStyle: normal;
  --evgNavigationsMainMobileLinkLineHeight: 1.5;
  --evgNavigationsMainMobileLinkCapitalization: none;
  --evgNavigationsMainMobileLinkTextDecoration: none;
  --evgNavigationsMainMobileLinkTextDecorationHover: none;
  --evgNavigationsMainMobileLinkTextDecorationFocus: none;
  --evgNavigationsMainMobileLinkColor: var(--evgBodyTextColor);
  --evgNavigationsMainMobileLinkTextDecorationActive: none;
  --evgNavigationsMainMobileLinkFontWeightActive: normal;
  --evgNavigationsMainLinkTypography: caption;
  --evgNavigationsMainLinkFontFamily: Inter;
  --evgNavigationsMainLinkFontSize: calc(var(--evgRootFontSize) * 1.6);
  --evgNavigationsMainLinkFontWeight: normal;
  --evgNavigationsMainLinkFontStyle: normal;
  --evgNavigationsMainLinkLineHeight: 1.5;
  --evgNavigationsMainLinkCapitalization: none;
  --evgNavigationsMainLinkTextDecoration: none;
  --evgNavigationsMainLinkTextDecorationHover: none;
  --evgNavigationsMainLinkTextDecorationFocus: none;
  --evgNavigationsMainLinkPrescrollColor: var(--evgBodyTextColor);
  --evgNavigationsMainLinkScrollColor: var(--evgBodyTextColor);
  --evgNavigationsSecondaryLinkTypography: caption;
  --evgNavigationsSecondaryLinkFontFamily: Inter;
  --evgNavigationsSecondaryLinkFontSize: calc(var(--evgRootFontSize) * 1.6);
  --evgNavigationsSecondaryLinkFontWeight: normal;
  --evgNavigationsSecondaryLinkFontStyle: normal;
  --evgNavigationsSecondaryLinkLineHeight: 1.5;
  --evgNavigationsSecondaryLinkCapitalization: none;
  --evgNavigationsSecondaryLinkTextDecoration: none;
  --evgNavigationsSecondaryLinkTextDecorationHover: none;
  --evgNavigationsSecondaryLinkTextDecorationFocus: none;
  --evgNavigationsSecondaryLinkPrescrollColor: var(--evgBodyTextColor);
  --evgNavigationsSecondaryLinkScrollColor: var(--evgBodyTextColor);
  --evgFooterPrimaryColor: var(--evgPrimaryColor);
  --evgFooterSecondaryColor: var(--evgPrimaryColor);
  --evgFooterImagePosition: top left;
  --evgFooterImageSizing: cover;
  --evgNavigationsCorporateBackgroundPrescrollColor: var(--evgPrimaryColor);
  --evgNavigationsCorporateBackgroundScrollColor: var(--evgAltColor);
  --evgNavigationsCorporateLinkTypography: caption;
  --evgNavigationsCorporateLinkFontFamily: Inter;
  --evgNavigationsCorporateLinkFontSize: calc(var(--evgRootFontSize) * 1.6);
  --evgNavigationsCorporateLinkFontWeight: normal;
  --evgNavigationsCorporateLinkFontStyle: normal;
  --evgNavigationsCorporateLinkLineHeight: 1;
  --evgNavigationsCorporateLinkCapitalization: none;
  --evgNavigationsCorporateLinkPrescrollColor: var(--evgBodyTextColor);
  --evgNavigationsCorporateLinkScrollColor: var(--evgBodyTextColor);
  --evgNavigationsCorporateCurrentPageIndicator: var(--evgBodyTextColor);
  --evgNavigationsCorporateLinkAlignment: right;
  --evgNavigationsCorporateMobileBackgroundPrescrollColor: var(--evgPrimaryColor);
  --evgNavigationsCorporateMobileBackgroundScrollColor: var(--evgPrimaryColor);
  --evgNavigationsCorporateMobileHamburgerColor: var(--evgPrimaryColor);
  --evgNavigationsCorporateMobileMenuSeparatorColor: var(--evgBorderColor);
  --evgNavigationsCorporateMobileNavigationBackgroundColor: var(--evgPrimaryColor);
  --evgNavigationsCorporateMobileNavigationColor: var(--evgPrimaryColor);
  --evgNavigationsCorporateMobileSearchBackgroundColor: var(--evgPrimaryColor);
  --evgNavigationsCorporateMobileSearchFontColor: var(--evgPrimaryColor);
  --evgNavigationsCorporateMobileLinkTypography: caption;
  --evgNavigationsCorporateMobileLinkFontFamily: Inter;
  --evgNavigationsCorporateMobileLinkFontSizeM: calc(var(--evgRootFontSize) * 1.6);
  --evgNavigationsCorporateMobileLinkFontSizeS: calc(var(--evgRootFontSize) * 1.6);
  --evgNavigationsCorporateMobileLinkFontWeight: normal;
  --evgNavigationsCorporateMobileLinkFontStyle: normal;
  --evgNavigationsCorporateMobileLinkLineHeight: 1.2;
  --evgNavigationsCorporateMobileLinkCapitalization: none;
  --evgNavigationsCorporateMobileLinkTextDecoration: none;
  --evgNavigationsCorporateMobileLinkTextDecorationHover: none;
  --evgNavigationsCorporateMobileLinkTextDecorationFocus: none;
  --evgNavigationsCorporateMobileLinkColor: var(--evgPrimaryColor);
  --evgNavigationsCorporateMobileLinkHoverColor: var(--evgDarkColor);
  --evgNavigationsCorporateMobileLinkFocusColor: var(--evgPrimaryColor);
  --evgNavigationsCorporateMobileLinkTextDecorationColor: var(--evgPrimaryColor);
  --evgNavigationsCorporateMobileLinkTextDecorationHoverColor: var(--evgDarkColor);
  --evgNavigationsCorporateMobileLinkTextDecorationFocusColor: var(--evgPrimaryColor);
  --evgCookiesBannerBackgroundColor: var(--evgLightColor);
  --evgCookiesBannerAcceptButtonFontTypography: body;
  --evgCookiesBannerAcceptButtonFontFamily: var(--fontFamilyEuclid) !important;
  --evgCookiesBannerAcceptButtonFontSizeL: calc(var(--evgRootFontSize) * 1.6);
  --evgCookiesBannerAcceptButtonFontSizeM: calc(var(--evgRootFontSize) * 1.6);
  --evgCookiesBannerAcceptButtonFontSizeS: calc(var(--evgRootFontSize) * 1.6);
  --evgCookiesBannerAcceptButtonFontColor: var(--evgLightColor);
  --evgCookiesBannerAcceptButtonFontHoverColor: var(--evgLightColor);
  --evgCookiesBannerAcceptButtonFontFocusColor: var(--evgLightColor);
  --evgCookiesBannerAcceptButtonFontWeight: normal;
  --evgCookiesBannerAcceptButtonFontStyle: normal;
  --evgCookiesBannerAcceptButtonFontLineHeight: 1.3;
  --evgCookiesBannerAcceptButtonFontCapitalization: none;
  --evgCookiesBannerAcceptButtonBorderColor: var(--evgPrimaryColor);
  --evgCookiesBannerAcceptButtonBorderHoverColor: var(--evgAltColor);
  --evgCookiesBannerAcceptButtonBorderFocusColor: var(--evgAltColor);
  --evgCookiesBannerAcceptButtonBorderRadius: 0;
  --evgCookiesBannerAcceptButtonBackgroundColor: var(--evgPrimaryColor);
  --evgCookiesBannerAcceptButtonBackgroundHoverColor: var(--evgAltColor);
  --evgCookiesBannerAcceptButtonBackgroundFocusColor: var(--evgAltColor);
  --evgCookiesBannerAcceptButtonPaddingItemPadding: initial;
  --evgCookiesBannerAcceptButtonPaddingVerticalPadding: 20px;
  --evgCookiesBannerAcceptButtonPaddingTop: initial;
  --evgCookiesBannerAcceptButtonPaddingBottom: initial;
  --evgCookiesBannerAcceptButtonPaddingLeft: initial;
  --evgCookiesBannerAcceptButtonPaddingRight: initial;
  --evgCookiesBannerAcceptButtonDecorationTextDecoration: none;
  --evgCookiesBannerAcceptButtonDecorationTextDecorationHover: none;
  --evgCookiesBannerAcceptButtonDecorationTextDecorationFocus: none;
  --evgCookiesBannerAcceptButtonDecorationTextDecorationColor: var(--evgLightColor);
  --evgCookiesBannerAcceptButtonDecorationTextDecorationHoverColor: var(--evgLightColor);
  --evgCookiesBannerAcceptButtonDecorationTextDecorationFocusColor: var(--evgLightColor);
  --evgCookiesBannerRejectButtonFontTypography: body;
  --evgCookiesBannerRejectButtonFontFamily: var(--fontFamilyEuclid) !important;
  --evgCookiesBannerRejectButtonFontSizeL: calc(var(--evgRootFontSize) * 1.6);
  --evgCookiesBannerRejectButtonFontSizeM: calc(var(--evgRootFontSize) * 1.6);
  --evgCookiesBannerRejectButtonFontSizeS: calc(var(--evgRootFontSize) * 1.6);
  --evgCookiesBannerRejectButtonFontColor: var(--evgPrimaryColor);
  --evgCookiesBannerRejectButtonFontHoverColor: var(--evgLightColor);
  --evgCookiesBannerRejectButtonFontFocusColor: var(--evgLightColor);
  --evgCookiesBannerRejectButtonFontWeight: normal;
  --evgCookiesBannerRejectButtonFontStyle: normal;
  --evgCookiesBannerRejectButtonFontLineHeight: 1.3;
  --evgCookiesBannerRejectButtonFontCapitalization: none;
  --evgCookiesBannerRejectButtonBorderColor: var(--evgLightColor);
  --evgCookiesBannerRejectButtonBorderHoverColor: var(--evgPrimaryColor);
  --evgCookiesBannerRejectButtonBorderFocusColor: var(--evgPrimaryColor);
  --evgCookiesBannerRejectButtonBorderRadius: 0;
  --evgCookiesBannerRejectButtonBackgroundColor: var(--evgLightColor);
  --evgCookiesBannerRejectButtonBackgroundHoverColor: var(--evgPrimaryColor);
  --evgCookiesBannerRejectButtonBackgroundFocusColor: var(--evgPrimaryColor);
  --evgCookiesBannerRejectButtonPaddingItemPadding: initial;
  --evgCookiesBannerRejectButtonPaddingVerticalPadding: 20px;
  --evgCookiesBannerRejectButtonPaddingTop: initial;
  --evgCookiesBannerRejectButtonPaddingBottom: initial;
  --evgCookiesBannerRejectButtonPaddingLeft: initial;
  --evgCookiesBannerRejectButtonPaddingRight: initial;
  --evgCookiesBannerRejectButtonDecorationTextDecoration: none;
  --evgCookiesBannerRejectButtonDecorationTextDecorationHover: none;
  --evgCookiesBannerRejectButtonDecorationTextDecorationFocus: none;
  --evgCookiesBannerRejectButtonDecorationTextDecorationColor: var(--evgLightColor);
  --evgCookiesBannerRejectButtonDecorationTextDecorationHoverColor: var(--evgLightColor);
  --evgCookiesBannerRejectButtonDecorationTextDecorationFocusColor: var(--evgLightColor);
  --evgCookiesBannerPreferenceButtonFontTypography: body;
  --evgCookiesBannerPreferenceButtonFontFamily: var(--fontFamilyEuclid) !important;
  --evgCookiesBannerPreferenceButtonFontSizeL: calc(var(--evgRootFontSize) * 1.6);
  --evgCookiesBannerPreferenceButtonFontSizeM: calc(var(--evgRootFontSize) * 1.6);
  --evgCookiesBannerPreferenceButtonFontSizeS: calc(var(--evgRootFontSize) * 1.6);
  --evgCookiesBannerPreferenceButtonFontColor: var(--evgPrimaryColor);
  --evgCookiesBannerPreferenceButtonFontHoverColor: var(--evgLightColor);
  --evgCookiesBannerPreferenceButtonFontFocusColor: var(--evgLightColor);
  --evgCookiesBannerPreferenceButtonFontWeight: normal;
  --evgCookiesBannerPreferenceButtonFontStyle: normal;
  --evgCookiesBannerPreferenceButtonFontLineHeight: 1.3;
  --evgCookiesBannerPreferenceButtonFontCapitalization: none;
  --evgCookiesBannerPreferenceButtonBorderColor: var(--evgLightColor);
  --evgCookiesBannerPreferenceButtonBorderHoverColor: var(--evgPrimaryColor);
  --evgCookiesBannerPreferenceButtonBorderFocusColor: var(--evgPrimaryColor);
  --evgCookiesBannerPreferenceButtonBorderRadius: 0;
  --evgCookiesBannerPreferenceButtonBackgroundColor: var(--evgLightColor);
  --evgCookiesBannerPreferenceButtonBackgroundHoverColor: var(--evgPrimaryColor);
  --evgCookiesBannerPreferenceButtonBackgroundFocusColor: var(--evgPrimaryColor);
  --evgCookiesBannerPreferenceButtonPaddingItemPadding: initial;
  --evgCookiesBannerPreferenceButtonPaddingVerticalPadding: 20px;
  --evgCookiesBannerPreferenceButtonPaddingTop: initial;
  --evgCookiesBannerPreferenceButtonPaddingBottom: initial;
  --evgCookiesBannerPreferenceButtonPaddingLeft: initial;
  --evgCookiesBannerPreferenceButtonPaddingRight: initial;
  --evgCookiesBannerPreferenceButtonDecorationTextDecoration: none;
  --evgCookiesBannerPreferenceButtonDecorationTextDecorationHover: none;
  --evgCookiesBannerPreferenceButtonDecorationTextDecorationFocus: none;
  --evgCookiesBannerPreferenceButtonDecorationTextDecorationColor: var(--evgLightColor);
  --evgCookiesBannerPreferenceButtonDecorationTextDecorationHoverColor: var(--evgLightColor);
  --evgCookiesBannerPreferenceButtonDecorationTextDecorationFocusColor: var(--evgLightColor);
  --evgCookiesBannerCloseButtonIconColor: var(--evgPrimaryColor);
  --evgCookiesBannerHeadingFontFamily: var(--fontFamilyEuclid) !important;
  --evgCookiesBannerHeadingFontSizeL: calc(var(--evgRootFontSize) * 2.4);
  --evgCookiesBannerHeadingFontSizeM: calc(var(--evgRootFontSize) * 2.4);
  --evgCookiesBannerHeadingFontSizeS: calc(var(--evgRootFontSize) * 2.4);
  --evgCookiesBannerHeadingFontColor: var(--evgBodyTextColor);
  --evgCookiesBannerHeadingFontWeight: normal;
  --evgCookiesBannerHeadingFontLineHeight: 1.5;
  --evgCookiesBannerHeadingFontCapitalization: none;
  --evgCookiesBannerDescriptionFontFamily: var(--fontFamilyEuclid) !important;
  --evgCookiesBannerDescriptionFontSizeL: calc(var(--evgRootFontSize) * 1.6);
  --evgCookiesBannerDescriptionFontSizeM: calc(var(--evgRootFontSize) * 1.6);
  --evgCookiesBannerDescriptionFontSizeS: calc(var(--evgRootFontSize) * 1.6);
  --evgCookiesBannerDescriptionFontColor: var(--evgBodyTextColor);
  --evgCookiesBannerDescriptionFontWeight: normal;
  --evgCookiesBannerDescriptionFontLineHeight: 1.5;
  --evgCookiesBannerDescriptionFontCapitalization: none;
  --evgCookiesLinkTypography: caption;
  --evgCookiesLinkFontSizeL: calc(var(--evgRootFontSize) * 1.6);
  --evgCookiesLinkFontSizeM: calc(var(--evgRootFontSize) * 1.4);
  --evgCookiesLinkFontSizeS: calc(var(--evgRootFontSize) * 1.4);
  --evgCookiesLinkColor: var(--evgPrimaryColor);
  --evgCookiesLinkHoverColor: var(--evgAltColor);
  --evgCookiesLinkFocusColor: var(--evgBodyTextColor);
  --evgCookiesLinkLineHeight: 2.0;
  --evgCookiesLinkTextDecoration: none;
  --evgCookiesLinkTextDecorationHover: underline solid;
  --evgCookiesLinkTextDecorationFocus: none;
  --evgCookiesLinkTextDecorationColor: var(--evgAltColor);
  --evgCookiesLinkTextDecorationHoverColor: var(--evgAltColor);
  --evgCookiesLinkTextDecorationFocusColor: var(--evgAltColor);
  --evgCookiesPaneBackgroundColor: var(--evgLightColor);
  --evgCookiesPaneCloseButtonFontTypography: body;
  --evgCookiesPaneCloseButtonFontFamily: var(--fontFamilyEuclid) !important;
  --evgCookiesPaneCloseButtonFontSizeL: calc(var(--evgRootFontSize) * 1.6);
  --evgCookiesPaneCloseButtonFontSizeM: calc(var(--evgRootFontSize) * 1.6);
  --evgCookiesPaneCloseButtonFontSizeS: calc(var(--evgRootFontSize) * 1.6);
  --evgCookiesPaneCloseButtonFontColor: var(--evgPrimaryColor);
  --evgCookiesPaneCloseButtonFontHoverColor: var(--evgLightColor);
  --evgCookiesPaneCloseButtonFontFocusColor: var(--evgLightColor);
  --evgCookiesPaneCloseButtonFontWeight: normal;
  --evgCookiesPaneCloseButtonFontStyle: normal;
  --evgCookiesPaneCloseButtonFontLineHeight: 1.3;
  --evgCookiesPaneCloseButtonFontCapitalization: none;
  --evgCookiesPaneCloseButtonBorderColor: var(--evgLightColor);
  --evgCookiesPaneCloseButtonBorderHoverColor: var(--evgPrimaryColor);
  --evgCookiesPaneCloseButtonBorderFocusColor: var(--evgPrimaryColor);
  --evgCookiesPaneCloseButtonBorderRadius: 0;
  --evgCookiesPaneCloseButtonBackgroundColor: var(--evgLightColor);
  --evgCookiesPaneCloseButtonBackgroundHoverColor: var(--evgPrimaryColor);
  --evgCookiesPaneCloseButtonBackgroundFocusColor: var(--evgPrimaryColor);
  --evgCookiesPaneCloseButtonPaddingItemPadding: initial;
  --evgCookiesPaneCloseButtonPaddingVerticalPadding: 20px;
  --evgCookiesPaneCloseButtonPaddingTop: initial;
  --evgCookiesPaneCloseButtonPaddingBottom: initial;
  --evgCookiesPaneCloseButtonPaddingLeft: initial;
  --evgCookiesPaneCloseButtonPaddingRight: initial;
  --evgCookiesPaneCloseButtonDecorationTextDecoration: none;
  --evgCookiesPaneCloseButtonDecorationTextDecorationHover: none;
  --evgCookiesPaneCloseButtonDecorationTextDecorationFocus: none;
  --evgCookiesPaneCloseButtonDecorationTextDecorationColor: var(--evgLightColor);
  --evgCookiesPaneCloseButtonDecorationTextDecorationHoverColor: var(--evgLightColor);
  --evgCookiesPaneCloseButtonDecorationTextDecorationFocusColor: var(--evgLightColor);
  --evgCookiesPaneSwitchOnBackgroundColor: var(--evgPrimaryColor);
  --evgCookiesPaneSwitchOnTextColor: var(--evgBodyTextColor);
  --evgCookiesPaneSwitchOffBackgroundColor: var(--evgGreyDarkColor);
  --evgCookiesPaneSwitchOffTextColor: var(--evgPrimaryColor);
  --evgCookiesPaneLineSeparatorColor: var(--evgGreyColor);
  --evgCookiesPaneAlwaysActiveColor: var(--evgSuccessColor);
  --evgCookiesPaneAllAcceptedColor: var(--evgSuccessColor);
  --evgCookiesPaneAllRejectedColor: var(--evgErrorColor);
  --evgCookiesPaneSomeAcceptedColor: var(--evgBodyTextColor);
  --evgCookiesPaneWarningBackgroundColor: var(--evgLightColor);
  --evgCookiesPaneWarningBorderColor: var(--evgBrand5Color);
  --evgCookiesPaneWarningIconColor: var(--evgBrand5Color);
  --evgCookiesPaneHeadingFontFamily: var(--fontFamilyEuclid) !important;
  --evgCookiesPaneHeadingFontSizeL: calc(var(--evgRootFontSize) * 2.4);
  --evgCookiesPaneHeadingFontSizeM: calc(var(--evgRootFontSize) * 2.4);
  --evgCookiesPaneHeadingFontSizeS: calc(var(--evgRootFontSize) * 2.4);
  --evgCookiesPaneHeadingFontColor: var(--evgBodyTextColor);
  --evgCookiesPaneHeadingFontWeight: normal;
  --evgCookiesPaneHeadingFontLineHeight: 1.5;
  --evgCookiesPaneHeadingFontCapitalization: none;
  --evgCookiesPaneSubheadingFontFamily: var(--fontFamilyEuclid) !important;
  --evgCookiesPaneSubheadingFontSizeL: calc(var(--evgRootFontSize) * 1.2);
  --evgCookiesPaneSubheadingFontSizeM: calc(var(--evgRootFontSize) * 1.2);
  --evgCookiesPaneSubheadingFontSizeS: calc(var(--evgRootFontSize) * 1.2);
  --evgCookiesPaneSubheadingFontColor: var(--evgBodyTextColor);
  --evgCookiesPaneSubheadingFontWeight: normal;
  --evgCookiesPaneSubheadingFontLineHeight: 1.5;
  --evgCookiesPaneSubheadingFontCapitalization: none;
  --evgCookiesPaneBodyFontFamily: var(--fontFamilyEuclid) !important;
  --evgCookiesPaneBodyFontSizeL: calc(var(--evgRootFontSize) * 1.6);
  --evgCookiesPaneBodyFontSizeM: calc(var(--evgRootFontSize) * 1.6);
  --evgCookiesPaneBodyFontSizeS: calc(var(--evgRootFontSize) * 1.6);
  --evgCookiesPaneBodyFontColor: var(--evgBodyTextColor);
  --evgCookiesPaneBodyFontWeight: normal;
  --evgCookiesPaneBodyFontLineHeight: 1.5;
  --evgCookiesPaneBodyFontCapitalization: none;
  --evgCookiesFloatingButtonTypography: caption;
  --evgCookiesFloatingButtonFontFamily: Inter;
  --evgCookiesFloatingButtonFontSizeL: calc(var(--evgRootFontSize) * 1.4);
  --evgCookiesFloatingButtonFontSizeM: calc(var(--evgRootFontSize) * 1.4);
  --evgCookiesFloatingButtonFontSizeS: calc(var(--evgRootFontSize) * 1.4);
  --evgCookiesFloatingButtonFontWeight: normal;
  --evgCookiesFloatingButtonFontStyle: normal;
  --evgCookiesFloatingButtonLineHeight: 1.6;
  --evgCookiesFloatingButtonCapitalization: none;
  --evgCookiesFloatingButtonTextDecoration: none;
  --evgCookiesFloatingButtonTextDecorationHover: none;
  --evgCookiesFloatingButtonTextDecorationFocus: none;
  --evgCookiesFloatingButtonTextDecorationColor: var(--evgPrimaryColor);
  --evgCookiesFloatingButtonTextDecorationHoverColor: var(--evgPrimaryColor);
  --evgCookiesFloatingButtonTextDecorationFocusColor: var(--evgPrimaryColor);
  --evgCookiesFloatingButtonFontColor: var(--evgLightColor);
  --evgCookiesFloatingButtonFontHoverColor: var(--evgLightColor);
  --evgCookiesFloatingButtonFontFocusColor: var(--evgLightColor);
  --evgCookiesFloatingButtonBorderRadius: 4px;
  --evgCookiesFloatingButtonBorderColor: var(--evgPrimaryColor);
  --evgCookiesFloatingButtonBorderHoverColor: var(--evgAltColor);
  --evgCookiesFloatingButtonBorderFocusColor: var(--evgAltColor);
  --evgCookiesFloatingButtonBackgroundColor: var(--evgPrimaryColor);
  --evgCookiesFloatingButtonBackgroundHoverColor: var(--evgAltColor);
  --evgCookiesFloatingButtonBackgroundFocusColor: var(--evgAltColor);
  --evgCookiesFloatingButtonVerticalPadding: 20px;
  --evergreen-grid-col: 1;
  --evergreen-grid-col-tablet: 1;
  --evergreen-grid-col-mobile: 1;
  --evergreen-grid-col-p: 0;
  --evergreen-grid-col-p-tablet: 0;
  --evergreen-grid-col-p-mobile: 0;
  --evergreen-grid-col-bg: transparent;
}

.PageInvestorRelationsReports .layout .evergreen,
.PageInvestorRelationsReporting .layout .evergreen {
  padding: 0;
  box-sizing: border-box;
  background-color: unset;
}
.PageInvestorRelationsReports .layout .evergreen-container--outer,
.PageInvestorRelationsReporting .layout .evergreen-container--outer {
  max-width: unset;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  margin-top: auto;
  margin-bottom: auto;
}
.PageInvestorRelationsReports .layout .evergreen .evergreen-accordion-content,
.PageInvestorRelationsReporting .layout .evergreen .evergreen-accordion-content {
  background-color: unset;
}
.PageInvestorRelationsReports .layout .evergreen .evergreen-accordion--active .evergreen-accordion-header,
.PageInvestorRelationsReports .layout .evergreen .evergreen-accordion--active .evergreen-accordion-header button.accordion-toggle,
.PageInvestorRelationsReporting .layout .evergreen .evergreen-accordion--active .evergreen-accordion-header,
.PageInvestorRelationsReporting .layout .evergreen .evergreen-accordion--active .evergreen-accordion-header button.accordion-toggle {
  display: none;
}
.PageInvestorRelationsReports .layout .evergreen-financial-accordion-card-container,
.PageInvestorRelationsReporting .layout .evergreen-financial-accordion-card-container {
  display: grid;
  gap: 20px;
  padding: 0;
}
.PageInvestorRelationsReports .layout .evergreen-financial-accordion-card-header,
.PageInvestorRelationsReporting .layout .evergreen-financial-accordion-card-header {
  background: #00213F !important;
  color: #fff !important;
  padding: 10px 25px;
  border-radius: 0;
}
.PageInvestorRelationsReports .layout .evergreen h4,
.PageInvestorRelationsReporting .layout .evergreen h4 {
  color: #fff !important;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}
.PageInvestorRelationsReports .layout .evergreen .evergreen-accordion,
.PageInvestorRelationsReporting .layout .evergreen .evergreen-accordion {
  border-top: none;
}
.PageInvestorRelationsReports .layout .evergreen-financial-accordion-card,
.PageInvestorRelationsReporting .layout .evergreen-financial-accordion-card {
  border: 1px solid #738FB0 !important;
  border-radius: 8px;
}
.PageInvestorRelationsReports .layout .evergreen-accordion .evergreen-accordion-content-text,
.PageInvestorRelationsReporting .layout .evergreen-accordion .evergreen-accordion-content-text {
  padding: 25px;
  margin-bottom: 0;
  margin-top: 0;
  overflow: hidden;
}
.PageInvestorRelationsReports .layout .evergreen .evergreen-accordion-content-text p a,
.PageInvestorRelationsReports .layout .evergreen .evergreen-accordion-content-text a:not([class*=evergreen-link--button]),
.PageInvestorRelationsReporting .layout .evergreen .evergreen-accordion-content-text p a,
.PageInvestorRelationsReporting .layout .evergreen .evergreen-accordion-content-text a:not([class*=evergreen-link--button]) {
  color: #00213F;
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  text-transform: none;
}
.PageInvestorRelationsReports .layout .evergreen-financial-accordion-links-container-inner,
.PageInvestorRelationsReporting .layout .evergreen-financial-accordion-links-container-inner {
  display: grid;
  gap: 10px 25px;
  align-items: start;
}
.PageInvestorRelationsReports .layout .evergreen-financial-accordion-card-links-container,
.PageInvestorRelationsReporting .layout .evergreen-financial-accordion-card-links-container {
  background: unset !important;
}
.PageInvestorRelationsReports .layout .evergreen .evergreen-accordion:last-child,
.PageInvestorRelationsReporting .layout .evergreen .evergreen-accordion:last-child {
  border-bottom: none !important;
}
.PageInvestorRelationsReports .layout .evergreen-financial-accordion-container .evergreen-year-options,
.PageInvestorRelationsReporting .layout .evergreen-financial-accordion-container .evergreen-year-options {
  margin-bottom: 45px;
}

.layout .evergreen-dropdown-wrapper:before {
  display: none;
}

.layout .evergreen .evergreen-dropdown {
  margin: 0;
  background: #DCE5EF url("../design/svg/dropdown-arrow.svg") no-repeat right 8px center;
  background-size: 24px 24px;
  padding: 13px 20px;
  padding-right: 44px;
  min-width: 120px;
  border-color: #738FB0;
  font-size: 1.4rem;
  line-height: 18px;
  border-radius: 4px;
  color: #00213F;
  max-width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-family: var(--fontFamilyEuclid);
}

.PageInvestorRelationsReporting .layout .evergreen-financial--accordion .evergreen-financial-accordion-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}
.PageInvestorRelationsReporting .layout .evergreen-financial--accordion .evergreen-financial-accordion-link:before {
  display: none;
}
.PageInvestorRelationsReporting .layout .evergreen-financial--accordion .evergreen-financial-accordion-link [aria-label*=Finanzmitteilung] .evergreen-module-icon::before,
.PageInvestorRelationsReporting .layout .evergreen-financial--accordion .evergreen-financial-accordion-link [aria-label*="Financial Release"] .evergreen-module-icon::before {
  content: "";
  background-image: url("../design/svg/doc-icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 34px;
  height: 34px;
}
.PageInvestorRelationsReporting .layout .evergreen-financial--accordion .evergreen-financial-accordion-link [aria-label*=Präsentation] .evergreen-module-icon::before,
.PageInvestorRelationsReporting .layout .evergreen-financial--accordion .evergreen-financial-accordion-link [aria-label*=Presentation] .evergreen-module-icon::before {
  content: "";
  background-image: url("../design/svg/presentation-icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 34px;
  height: 34px;
}
.PageInvestorRelationsReporting .layout .evergreen-financial--accordion .evergreen-financial-accordion-link [aria-label*=Pressemitteilung] .evergreen-module-icon::before,
.PageInvestorRelationsReporting .layout .evergreen-financial--accordion .evergreen-financial-accordion-link [aria-label*="Press Release"] .evergreen-module-icon::before {
  content: "";
  background-image: url("../design/svg/pr-icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 34px;
  height: 34px;
}
.PageInvestorRelationsReporting .layout .evergreen-financial--accordion .evergreen-financial-accordion-link [aria-label*=Webcast] .evergreen-module-icon::before {
  content: "";
  background-image: url("../design/svg/webcast-icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 34px;
  height: 34px;
}
.PageInvestorRelationsReporting .layout .evergreen-financial--accordion .evergreen-financial-accordion-link .evergreen-module-icon-link::before {
  content: "";
  background-image: url("../design/svg/webcast-icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 34px;
  height: 34px;
}

/* ---------- FAQ Module ---------- */
.module-faq_question {
  margin-top: 0;
  cursor: pointer;
  position: relative;
}
.module-faq_question button {
  width: 100%;
  text-align: left;
}
.module-faq_answer {
  padding: 15px;
  margin: 0 0 15px 0;
}
.module-faq_answer p:first-child {
  margin-top: 0;
}
.module-faq_answer p:last-child {
  margin-bottom: 0;
}
.module-faq .module_item {
  padding: 0;
  border-top: 1px solid #738FB0;
}
.module-faq .module_item:last-child {
  border-bottom: 1px solid #738FB0;
}
.module-faq .module_item > h4, .module-faq .module_item > .h4 {
  margin: 0;
  padding: 0;
  color: #00213F;
}
.module-faq .module_item > h4 button, .module-faq .module_item > .h4 button {
  color: inherit;
  width: 100%;
  padding: 20px 0;
  font-family: var(--fontFamilyEuclid);
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  background: unset;
  border: unset;
}
.module-faq .module_item > h4 button::before, .module-faq .module_item > .h4 button::before {
  content: "";
  background-image: url("../design/svg/accordion-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 32px;
  height: 32px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
}
.module-faq .module_item.js--active > h4, .module-faq .module_item.js--active > .h4 {
  color: #00213F;
}
.module-faq .module_item.js--active > h4 button::before, .module-faq .module_item.js--active > .h4 button::before {
  transform: translateY(-50%) rotate(0deg);
}
.module-faq .module_item.js--active button {
  color: #00213F;
}
.module-faq .toggle-all {
  margin-bottom: 30px;
}
.module-faq .toggle-all .button {
  letter-spacing: 1.5px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 50px;
  background-color: #D1AA63;
  margin-left: 0;
}
.module-faq .toggle-all .button:hover {
  background-color: #BCCBDC;
}

/* --- Financial Report Modules --- */
.module-financial-year .module_options {
  text-align: left;
}
.module-financial-year .module_cover {
  margin-bottom: 15px;
}
.module-financial-year .module_cover img {
  display: inline-block;
  vertical-align: top;
}
.module-financial-year .module_item {
  padding: 0;
}
.module-financial-year .module_item ~ .module_item {
  border: none;
}
.module-financial-year .module_fiscal {
  text-transform: none;
}
.module-financial-year .module_link {
  font-weight: 600;
}
.module-financial-year .module_link .q4icons_icon {
  content: url("../design/svg/pdf-icon.svg");
  height: 16px;
  margin-right: 15px;
}
.module-financial-year-option1 .module-financial_year {
  text-align: center;
}
.module-financial-year-option1 .module-financial_annual-archive {
  position: relative;
}
.module-financial-year-option1 .module-financial_annual-archive .module_links--stack {
  margin-top: 90px;
  position: absolute;
}
@media only screen and (max-width: 768px) {
  .module-financial-year-option1 .module-financial_annual-archive .module_links--stack {
    position: relative;
    margin-top: 75px;
  }
}
@media only screen and (max-width: 480px) {
  .module-financial-year-option1 .module-financial_annual-archive .module_links--stack {
    margin-top: 0;
  }
}
@media only screen and (max-width: 768px) {
  .module-financial-year-option1 .module-financial_annual-archive {
    margin-top: 25px;
  }
}
.module-financial-year-option1 .module_options {
  position: absolute;
  left: 50%;
}
@media only screen and (max-width: 480px) {
  .module-financial-year-option1 .module_options {
    position: relative;
    left: 0;
  }
}
.module-financial-year-option1 .module_options-label {
  color: #333;
  font-size: 1.2rem;
  font-weight: 500;
}
.module-financial-year-option1 .module_options-select {
  border-color: #dfdfdf;
  min-width: 172px;
}
.module-financial-year-option1 .module_options-label, .module-financial-year-option1 .module_options-select {
  margin-left: 5px;
  display: block;
}
@media only screen and (max-width: 480px) {
  .module-financial-year-option1 .module_options-label, .module-financial-year-option1 .module_options-select {
    margin-left: 0;
  }
}
.module-financial-year-option1 .module_doc {
  margin-bottom: 18px;
}
.module-financial-year-option1 .module_doc-title {
  text-transform: none;
  font-weight: 500;
  margin: 0 0 10px 0;
}
.module-financial-year-option1 .module_links {
  margin: 0;
}
.module-financial-year-option2 {
  background-color: #DCE5EF;
}
.module-financial-year-option3 .module_cover {
  text-align: right;
}
.module-financial-year-option3 .module_cover img {
  width: 195px;
}
@media only screen and (max-width: 768px) {
  .module-financial-year-option3 .module_cover {
    text-align: center;
  }
  .module-financial-year-option3 .module_cover img {
    max-width: 100%;
  }
}
@media only screen and (min-width: 1220px) {
  .module-financial-year-option3 .module_cover {
    text-align: right;
    padding-left: 0;
    padding-right: 27px;
  }
}
.module-financial-year-option3 .module table {
  width: 100%;
}
.module-financial-year-option3 .module table tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
}
.module-financial-year-option3 .module table td.module-financial-table_item.visible-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  padding: 20px 37px;
}
.module-financial-year-option3 .module table td.module-financial-table_item.visible-track span {
  margin-left: 5px;
  margin-right: 5px;
}
@media only screen and (max-width: 540px) {
  .module-financial-year-option3 .module table td.module-financial-table_item.visible-track span {
    width: 50%;
    margin: 0 0 10px;
  }
}
.module-financial-year-option3 .module table .module-financial-table_column-year {
  opacity: 0;
  visibility: hidden;
  position: relative;
  transform: translateX(0);
  z-index: 1;
  transition: transform 500ms ease, opacity 600ms ease-in, visibility 600ms ease-in;
}
.module-financial-year-option3 .module table .module-financial-table_column-year.visible-track {
  opacity: 1;
  display: block;
  visibility: visible;
}
.module-financial-year-option3 .module_link {
  margin-bottom: 18px;
}
.module-financial-year-option3 .module_link-text {
  background: url("../design/svg/q4-icon_chevron-right.svg") no-repeat right center;
  vertical-align: baseline;
  padding-right: 17px;
  transition: 0.3s ease-in;
}
.module-financial-year-option3 .module_link-text:hover {
  padding-right: 22px;
}
.module-financial-year-option3 .module_link .q4icons_icon {
  height: 27px;
}
@media only screen and (max-width: 480px) {
  .module-financial-year-option3 .module_link .q4icons_icon {
    height: 20px;
    margin-right: 10px;
  }
}
@media only screen and (min-width: 1220px) {
  .module-financial-year-option3 .module_links {
    padding-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1220px) {
  .module-financial-year-option3 .module_links {
    padding-left: 25px;
  }
}
@media only screen and (max-width: 768px) {
  .module-financial-year-option3 .module_links {
    text-align: center;
  }
}
@media only screen and (max-width: 768px) {
  .module-financial-year-option3 .module_docs {
    display: inline-block;
    text-align: left;
    margin-left: 70px;
  }
}
@media only screen and (max-width: 480px) {
  .module-financial-year-option3 .module_docs {
    margin-right: calc(50% - 65vw);
    margin-left: calc(50% - 50vw);
  }
}
.module-financial-year-option3 .splide__arrow--next {
  right: 0;
}
.module-financial-year-option3 .splide__arrow--prev {
  left: 0;
}
.module-financial-quarter .module_options label {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 1.8rem;
}
.module-financial-quarter .module_options select {
  font-size: 1.6rem;
  line-height: 2.4rem;
}
.module-financial-quarter .module_item {
  padding: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.module-financial-quarter .module_item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.module-financial-quarter .module_item.js--active h3 button::before {
  content: "\edba";
}
.module-financial-quarter .module_item.js--active button::before {
  content: "\edba";
}
.module-financial-quarter .module_links {
  background-color: #DCE5EF;
  margin: 0 0 15px 0;
  padding: 30px 15px;
}
.module-financial-quarter .module_links > .grid_col {
  display: inline-block;
  padding-right: 20px;
}
.module-financial-quarter .module_link {
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
}
.module-financial-quarter .module_link-text {
  margin-left: 0.9rem;
}
.module-financial-quarter .module-financial_year-text {
  padding: 0;
  margin: 0;
  color: #333;
  text-transform: uppercase;
  font-family: var(--fontFamilyEuclid);
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
}
.module-financial-quarter .module-financial_year-text button {
  cursor: pointer;
  background: transparent;
  border: none;
  color: inherit;
  text-align: left;
  text-transform: uppercase;
  font-family: var(--fontFamilyEuclid);
  font-weight: inherit;
  font-size: inherit;
  width: 100%;
  padding: 20px 0;
}
.module-financial-quarter .module-financial_year-text button::before {
  float: right;
  font-family: "q4-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\edc2";
  color: #D1AA63;
}
.module-financial-table .module_container--content {
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  -webkit-box-shadow: 0 0 33px -18px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0 0 33px -18px rgba(0, 0, 0, 0.75);
  box-shadow: 0 0 33px -18px rgba(0, 0, 0, 0.75);
}
.module-financial-table table {
  width: 100%;
}
.module-financial-table table caption {
  caption-side: bottom;
  text-align: left;
  padding: 5px 15px;
  font-size: 1.2rem;
}
.module-financial-table table tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
}
.module-financial-table table td.module-financial-table_item.visible-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  padding: 20px 37px;
}
.module-financial-table table td.module-financial-table_item.visible-track span {
  margin-left: 5px;
  margin-right: 5px;
}
@media only screen and (max-width: 540px) {
  .module-financial-table table td.module-financial-table_item.visible-track span {
    width: 50%;
    margin: 0 0 10px;
  }
}
.module-financial-table table .module-financial-table_column-year {
  opacity: 0;
  visibility: hidden;
  position: relative;
  transform: translateX(0);
  z-index: 1;
  transition: transform 500ms ease, opacity 600ms ease-in, visibility 600ms ease-in;
}
.module-financial-table table .module-financial-table_column-year.visible-track {
  opacity: 1;
  display: block;
  visibility: visible;
}
.module-financial-table_column {
  padding: 20px 15px;
  width: 25%;
}
.module-financial-table_column:not(thead):not(th) {
  background-color: #fff;
}
.module-financial-table_column-year {
  text-align: center;
  user-select: none;
}
.module-financial-table_column-report {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  background: #DCE5EF;
  text-align: left;
}
.module-financial-table_column.doc:not(:last-child) {
  margin-right: 15px;
}
.module-financial-table_container-years {
  display: inline-block;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.module-financial-table .doc-link--missing:hover {
  color: #D1AA63;
  cursor: not-allowed;
}
.module-financial-table .doc-missing {
  opacity: 0.3;
}
.module-financial-table_header {
  display: flex;
  background-color: #BCCBDC;
  color: #fff;
}
.module-financial-table_header-year {
  padding: 20px 15px;
  flex: 0 0 auto;
}
.module-financial-table_header .module-financial-table_track {
  display: inline-flex;
}
.module-financial-table_track {
  display: flex;
  will-change: transform;
  transition: transform 500ms ease;
  z-index: 1;
}
.module-financial-table_track-arrow {
  background: transparent;
  box-shadow: none;
  background-color: transparent;
  border: none;
  color: white;
  font-size: 1.6rem;
  position: absolute;
  top: 23px;
  z-index: 3;
}
.module-financial-table_track-arrow:not(.module-financial-table_track-arrow--disabled) {
  cursor: pointer;
}
.module-financial-table_track-arrow--disabled {
  opacity: 0.3;
}
.module-financial-table_track-arrow--left {
  left: 20px;
}
.module-financial-table_track-arrow--right {
  right: 20px;
}
.module-financial-table_track td {
  background-color: white;
}
@media screen and (min-width: calc(768px + 1px)) {
  .module-financial-mashup .module_options {
    margin-bottom: 0;
  }
}
.module-financial-mashup .grid_col {
  margin-right: 0;
}
.module-financial-mashup_item {
  margin-left: 0;
  padding: 20px 20px 20px 0;
  border: 1px solid #203E63;
}
.module-financial-mashup_item .grid_col > :first-child {
  margin-top: 0;
}
.module-financial-mashup .module_body {
  max-height: 300px;
  overflow: hidden;
  position: relative;
}
.module-financial-mashup .module_body > *:first-child, .module-financial-mashup .module_body > style + p {
  margin-top: 0;
}
.module-financial-mashup .module_body::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50px;
  z-index: 1;
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0.5) 0%, rgb(255, 255, 255) 70%, rgb(255, 255, 255) 100%);
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.5) 0%, rgb(255, 255, 255) 70%, rgb(255, 255, 255) 100%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, rgb(255, 255, 255) 70%, rgb(255, 255, 255) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#70ffffff", endColorstr="#ffffff", GradientType=0);
}
.module-financial-mashup h4,
.module-financial-mashup .h4 {
  margin-top: 16px;
}
.module-financial-mashup .module-financial-mashup_documents .h4 {
  margin-top: 0;
}
.module-financial-mashup .module-financial-mashup_documents .module_links + h4, .module-financial-mashup .module-financial-mashup_documents .module_links + .h4 {
  margin-top: 30px;
}
.module-financial-mashup .module-financial-mashup_documents .module_links > div {
  background-color: #DCE5EF;
  padding: 15px;
  margin-bottom: 1px;
}
.module-financial-mashup .module-financial-mashup_documents .module_links .module_link {
  margin: 0;
  font-weight: 600;
}
.module-financial-mashup .module-financial-mashup_documents .module_links .module_link-text {
  margin-left: 0.9rem;
}
.module-financial-mashup .module-financial-mashup_documents .module_links--dark a {
  color: #203E63;
}
.module-financial-mashup .module-financial-mashup_documents .module_links--dark a span:last-child {
  font-size: 0.8rem;
  margin-left: 0.5rem;
}
.module-financial-mashup_news .h3 {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.8rem;
}
.module-financial-mashup_news .h4 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 3rem;
}
.module-financial-mashup_news .module_links {
  font-weight: 600;
}
.module-financial-mashup .button {
  width: 100%;
  min-width: auto;
  border-radius: 25px 25px 0 0;
  border-bottom: 0;
  outline-offset: 2px;
}
.module-financial-mashup .button.js--selected {
  background: #BCCBDC;
  color: #fff;
}
@media only screen and (min-width: calc(768px + 1px)) {
  .module-financial-mashup .module_options--mobile {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .module-financial-mashup .module_options--desktop {
    display: none;
  }
}
.module-financial-latest {
  position: relative;
  z-index: 0;
  background-image: url("../design/banner/banner-financial-latest.jpg");
}
.module-financial-latest::before {
  content: "";
  background-color: rgba(20, 28, 31, 0.8);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.module-financial-latest .grid_col {
  margin-bottom: 25px;
}
.module-financial-latest .module_link {
  margin: 0;
}
.module-financial-latest .module_link .q4icons_icon::before {
  display: inline-block;
  font-size: 5rem;
  padding: 0;
  width: 92px;
  height: 92px;
  line-height: 92px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 100%;
  transition: background-color 0.25s ease-in-out;
}
.module-financial-latest .module_link.module_link-presentation .q4icons_icon::before {
  content: "\e913" !important;
}
.module-financial-latest .module_link:hover .q4icons_icon::before {
  background-color: white;
}
.module-financial-latest .module_link:hover .module_link-text {
  color: #fff;
  text-decoration: inherit;
}
.module-financial-latest .module_link-text {
  display: block;
  margin: 15px 0 0;
  font-size: 1.8rem;
  text-transform: none;
  font-weight: 500;
}
.module-financial-latest .module-financial_type-text {
  margin-top: 10px;
  font-size: 4.8rem;
  line-height: 5.8rem;
  font-weight: 500;
  text-align: center;
}
.module-financial-latest .module-financial_year-text {
  margin-top: 15px;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 3.4rem;
  letter-spacing: 2px;
}
@media only screen and (max-width: 1024px) {
  .module-financial-latest .module_links {
    border-left: 0;
  }
  .module-financial-latest .module_link {
    margin: 0 0 15px;
  }
  .module-financial-latest .grid_col {
    vertical-align: middle;
  }
}
.module-financial-latest .button--cta:hover {
  color: #fff;
  text-decoration: underline;
}
.module-financial-latest .button--dark {
  background-color: transparent;
}
.module-financial-latest .button--dark:hover, .module-financial-latest .button--dark:focus {
  background-color: #D1AA63;
}
@media only screen and (max-width: 768px) {
  .module-financial-latest .module_item > div:first-child {
    margin-bottom: 30px;
  }
}
.module-financial-columns_item {
  display: grid;
  grid-template-columns: repeat(auto-fill, 28rem);
  gap: 2rem;
  grid-auto-flow: row;
}
@media only screen and (max-width: 480px) {
  .module-financial-columns_item {
    grid-template-columns: 1fr;
    align-items: center;
  }
}
.module-financial-columns .module_options {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.module-financial-columns .module_options label {
  display: block;
  font-size: 1.8rem;
  margin-right: 0;
  margin-bottom: 1.8rem;
  width: 18.2rem;
}
.module-financial-columns .module_options select {
  font-size: 1.6rem;
  line-height: 2.4rem;
  width: 18.2rem;
}
.module-financial-columns .module_item {
  background-color: #fff;
  width: 280px;
  margin-bottom: 3rem;
  border-radius: 5px;
  padding: 0;
  border: none;
  -webkit-box-shadow: 0 2px 25px rgba(0, 0, 0, 0.077087);
  box-shadow: 0 2px 25px rgba(0, 0, 0, 0.077087);
}
.module-financial-columns .module_item:first-child .module-financial_year-text {
  color: #fff;
  width: 100%;
  background-color: #BCCBDC;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.module-financial-columns .module-financial_year-text {
  color: #00213F;
  background-color: #eceff0;
  font-family: var(--fontFamilyEuclid);
  width: 13rem;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 2.8rem;
  padding: 1rem 0 1rem 2.4rem;
  margin: 0;
  border-top-left-radius: 5px;
  transition: 0.2s;
}
.module-financial-columns .module_links a {
  position: relative;
  text-transform: none;
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.8rem;
  margin: 2.2rem 0 0 2rem;
}
.module-financial-columns .module_links a:not(:last-child)::before {
  content: "";
  position: absolute;
  height: 1px;
  width: 195px; /* or 100px */
  left: 1.2rem;
  bottom: -1.3rem;
  border-bottom: 2px solid #efefef;
}
.module-financial-columns .module_links .module_link-text {
  margin-left: 3rem;
}

.module-financial-calendar .slick-slider {
  padding: 0;
}

/* ------ Formbuilder Module ------ */
.module-form-request {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}
.module-form-request .module_actions button {
  margin: 0;
}
.module-form--custom.module {
  padding-top: 0;
}
.module-form--custom .module_container--content {
  display: none;
}
.module-form--custom .module_container--content.js--visible {
  display: block;
}
.module-form .module_container--content {
  margin-left: -20px;
}
@media only screen and (max-width: 768px) {
  .module-form .module_container--content {
    margin-left: 0;
  }
}
.module-form .module_error-container li[style="visibility: hidden;"] {
  display: none;
}
.module-form .module_required {
  margin-left: 3px;
}
.module-form .module_container--captcha > div {
  margin: 0;
  padding: 0;
}
.module-form .module_container--captcha > div .ErrorMessage {
  display: block;
  margin-top: 10px;
  font-size: 1.4rem;
  color: #b72121;
}
.module-form .module_container--captcha > div .ErrorMessage[style="visibility: hidden;"] {
  display: none;
}
.module-form_item {
  display: inline-block;
  width: 50%;
  margin-bottom: 20px;
  padding-left: 20px;
  vertical-align: top;
}
.module-form_item > label,
.module-form_item legend {
  display: inline-block;
  margin-bottom: 5px;
  font-size: 1.2rem;
}
.module-form_item legend {
  float: left;
  margin-bottom: 15px;
  font-size: 1.6rem;
}
.module-form_item legend ~ ul {
  clear: both;
  padding-left: 10px;
  font-size: 12px;
}
.module-form_item ul li:not(:last-of-type) {
  padding-bottom: 5px;
}
.module-form_item--document-request, .module-form_item--are-you-an-investor {
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .module-form_item {
    width: 100%;
    padding-left: 0;
  }
}
.module-form_error-text {
  color: #b72121;
  margin: 0 0 15px 0;
}
.module-form_error-text[style*="visibility:hidden"], .module-form_error-text[style*="visibility: hidden"] {
  display: none;
}
.module-form .CaptchaContainer {
  display: block;
}
.module-form .CaptchaContainer input[type=text] {
  width: 100%;
}
.fancybox-slide--form .fancybox-content {
  margin: 10px auto;
  max-width: 1000px;
  width: 80% !important;
  height: calc(100% - 20px);
  overflow: visible;
}
@media only screen and (max-width: 480px) {
  .fancybox-slide--form .fancybox-content {
    width: 95% !important;
  }
}
.fancybox-slide--form_confirmation .fancybox-content {
  max-width: 700px;
}
.fancybox-slide--form .fancybox-button--close {
  display: none;
}

.module-form button[type=submit] {
  min-width: 18rem;
}

.module-form--meeting {
  padding: 0 20px !important;
  background-color: #fff;
}
.module-form--meeting .module_container--outer {
  padding: 0 !important;
}
.module-form--meeting_header {
  padding: 20px !important;
}
.module-form--meeting_header .module_container--outer {
  padding: 0 !important;
}
@media screen and (min-width: 769px) {
  .module-form--meeting_header {
    padding: 20px !important;
  }
  .module-form--meeting_header .grid {
    direction: rtl;
  }
  .module-form--meeting_header .grid .grid_col {
    direction: ltr;
  }
}
.module-form--meeting_header-intro {
  font-size: 1.3rem;
}
@media only screen and (max-width: 768px) {
  .module-form--meeting_header-intro {
    text-align: center;
  }
}
.module-form--meeting_header-intro h3,
.module-form--meeting_header-intro .h3 {
  margin: 0 0 10px 0;
  color: inherit;
  font-size: 2.6rem;
}
.module-form--meeting_header-intro p {
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .module-form--meeting_header-logo {
    text-align: center;
    margin-bottom: 10px;
  }
}
.module-form--meeting_header-logo span {
  font-size: 1.1rem;
  display: block;
}
.module-form--meeting_header-logo img {
  margin: 5px;
}
.module-form--meeting_footer {
  background-color: #00213F;
  color: #fff;
  font-size: 1.3rem;
}
.module-form--meeting_footer img {
  margin-right: 20px;
  vertical-align: bottom;
}
.module-form--meeting .module_introduction {
  font-size: 1.3rem;
  margin: 0;
}
.module-form--meeting .module_introduction > p:first-child {
  margin-top: 0;
  padding-top: 13px;
}
.module-form--meeting .module-form_item label,
.module-form--meeting .module-form_item legend {
  line-height: 15px;
  vertical-align: top;
}
.module-form--meeting .module-form_item--namehidden .module_input {
  margin-top: 20px;
}
.module-form--meeting .module-form_item--namehidden label {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
}
@media only screen and (min-width: 769px) {
  .module-form--meeting .module-form_item--additional-information-optional {
    width: 75%;
  }
}
.module-form--meeting .module-form_item--date-request-optional {
  position: relative;
}
@media only screen and (min-width: 769px) {
  .module-form--meeting .module-form_item--date-request-optional {
    width: 25%;
  }
}
.module-form--meeting .module-form_item--date-request-optional::before {
  font-family: "q4-icons"; /* stylelint-disable-line font-family-no-missing-generic-family-keyword */
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e921";
  position: absolute;
  right: 20px;
  bottom: calc(50% - 19px);
  color: #616161;
  display: none;
}
.module-form--meeting .module-form_item--date-request-optional .ui-datepicker-trigger {
  position: absolute;
  right: 13px;
  top: 35px;
  background: transparent;
  border: none;
}
.module-form--meeting .module-form_item--current-shareholder {
  display: block;
}
.module-form--meeting .module-form_item--current-shareholder legend {
  margin-bottom: 0;
}
@media only screen and (max-width: 480px) {
  .module-form--meeting .module-form_item--current-shareholder legend {
    display: block;
    float: none;
  }
}
.module-form--meeting .module-form_item--current-shareholder ul {
  display: inline-block;
  padding-left: 20px;
}
@media only screen and (max-width: 480px) {
  .module-form--meeting .module-form_item--current-shareholder ul {
    display: block;
    padding-left: 0;
    padding-top: 10px;
  }
}
.module-form--meeting .module-form_item--current-shareholder ul li {
  padding-left: 20px;
  display: inline-block;
  vertical-align: top;
}
@media only screen and (max-width: 480px) {
  .module-form--meeting .module-form_item--current-shareholder ul li {
    padding-left: 0;
    padding-right: 20px;
  }
}
.module-form--meeting .module-form_item--consent-checkbox {
  width: 100%;
}
.module-form--meeting .module-form_item--consent-checkbox label {
  padding-left: 30px;
  position: relative;
}
.module-form--meeting .module-form_item--consent-checkbox label::before, .module-form--meeting .module-form_item--consent-checkbox label::after {
  position: absolute;
  left: 0;
  top: 50% !important;
  transform: translateY(-50%);
}
.module-form--meeting .module-form_item--consent-checkbox label::after {
  left: 3px;
}
.module-form--meeting .module-form_itemCaptcha {
  position: relative;
  padding-left: 25px;
}
.module-form--meeting .module-form_itemCaptcha input[type=text] {
  color: #203E63;
}
.module-form--meeting .module_dropdown {
  color: #203E63;
}
.module-form--meeting .module_input {
  color: #203E63;
}
.module-form--meeting .module_required {
  display: none;
}
.module-form--meeting .module_actions {
  margin: 0 -20px;
  padding: 20px;
  background-color: #374448;
  text-align: right;
  color: #fff;
}
.module-form--meeting .module_actions .module_link {
  color: #fff;
  margin: 0 15px 0 0;
  text-decoration: none;
  text-transform: none;
  font-size: 1.4rem;
}
.module-form--meeting .module_actions [type=submit][disabled] {
  opacity: 0.5;
  pointer-events: none;
}
.module-form--meeting .module_actions button {
  color: #fff;
}
.module-form--meeting .module_actions button.button-close {
  background: none;
  border: 0;
  cursor: pointer;
}
.module-form--meeting .module_actions button:focus {
  outline-color: #fff;
}
.module-form--meeting_confirmation {
  font-size: 1.8rem;
  text-align: center;
  max-width: 520px;
  margin: auto;
}
.module-form--meeting_confirmation .module_container--inner::before {
  font-family: "q4-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e920";
  font-size: 4.6rem;
  color: #141c1f;
  display: block;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  .module-form--meeting .module-form_item--namehidden .module_input {
    margin-top: 0;
  }
}

/* ------ Glossary Module ------ */
.module-glossary .module_header {
  display: block;
}
.module-glossary .module_header table {
  width: 100%;
  table-layout: fixed;
}
.module-glossary .module_header table a {
  color: #203E63;
  font-weight: normal;
}
.module-glossary .module_header table a[href] {
  color: #00213F;
}

/* ---------- HISTORY Module ---------- */
.module-history .history-content {
  padding: 0 18px;
}
.module-history h2 {
  margin-bottom: 80px;
}
.module-history .option-1 {
  padding: 0 calc(6% + 25px);
}
.module-history .option-1 .splide__arrow {
  opacity: 1;
  width: 32px;
  height: 32px;
  background-color: #D1AA63;
}
.module-history .option-1 .splide__arrow svg {
  fill: #00213F;
}
.module-history .option-1 h3 {
  color: #fff;
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 400;
  margin: 0;
}
.module-history .option-1 .module_date-time {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  padding-top: 37px;
}
.module-history .option-1 .module_description {
  display: none;
}
.module-history .option-1 .splide__slide {
  padding: 0 20px;
}
.module-history .option-1 .splide__slide img {
  display: none;
}
.module-history .option-1 .splide__slide::before {
  content: "";
  display: block;
  background: #fff;
  height: 18px;
  width: 18px;
  border-radius: 100px;
  z-index: 999;
  position: relative;
  right: 20px;
  top: 10px;
  outline: 8px solid #00213F;
}
.module-history .option-1 .splide__slide::after {
  content: "";
  position: absolute;
  display: block;
  height: 48px;
  width: 1px;
  background: #fff;
  border-radius: 100%;
  top: 22px;
  left: 8px;
  z-index: 0;
  margin: auto;
  transform: translateZ(-1px);
}
.module-history .option-1 .splide__slide.is-active {
  color: #D1AA63;
}
.module-history .option-1 .splide__slide.is-active::before {
  background: #D1AA63;
}
.module-history .option-1 .splide__slide.is-active h3 {
  color: #D1AA63;
}
.module-history .option-1 .splide__slide.is-active .module_date-time {
  color: #D1AA63;
}
.module-history .option-1 .splide__slide.is-active .module_description {
  color: #D1AA63;
}
.module-history .option-1 .splide__arrow {
  top: 50%;
  transform: translateY(-50%);
}
.module-history .option-1::before {
  content: "";
  position: relative;
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 100px;
  top: 20px;
  z-index: 0;
  margin: auto;
  transform: translateZ(-1px);
}
.module-history .option-2 {
  padding-top: 30px;
}
.module-history .option-2 h3 {
  color: #00213F;
  font-size: 1.8rem;
  line-height: 2.8rem;
  font-weight: 500;
  margin: 10px 0;
}
.module-history .option-2 .module_date-time {
  color: #D1AA63;
  font-size: 2.8rem;
  line-height: 3.4rem;
  font-weight: 700;
  margin: 10px 0;
}
.module-history .option-2 .splide__slide {
  position: relative;
}
.module-history .option-2 .splide__slide:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 25px;
  right: -18px;
  width: 1px;
  height: 85%;
  background-color: #e0e0e0;
}
.module-history .option-2 .splide__slide img {
  width: 100%;
}
.module-history .option-2 .splide__arrow {
  top: 0;
}
.module-history .option-2 .splide__arrow--prev {
  right: 64px;
  left: unset;
}
.module-history .option-2 .splide__arrow--next {
  right: 0;
}
.module-history .option-3 {
  display: flex;
}
.module-history .option-3 h3 {
  color: #00213F;
  font-size: 1.8rem;
  line-height: 2.8rem;
  font-weight: 500;
  margin: 10px 0;
}
.module-history .option-3 img {
  width: 100%;
}
.module-history .option-3 .module_date-time {
  color: #D1AA63;
  font-size: 2.8rem;
  line-height: 3.4rem;
  font-weight: 700;
  margin: 10px 0;
}
.module-history .option-3 .list-left {
  margin-top: -25px;
  flex-basis: 50%;
}
.module-history .option-3 .list-left .module-item {
  text-align: right;
  position: relative;
  padding-right: 15%;
  padding-left: 15%;
}
.module-history .option-3 .list-left .module-item:not(:first-child) {
  margin-top: 40px;
}
.module-history .option-3 .list-left .module-item:nth-child(even) {
  display: none;
}
.module-history .option-3 .list-left .module-item::before {
  content: "";
  display: block;
  background: #00213F;
  height: 18px;
  width: 18px;
  border-radius: 100px;
  z-index: 0;
  position: absolute;
  right: -11px;
  top: 10px;
}
.module-history .option-3 .list-left .module-item::after {
  content: "";
  position: absolute;
  display: block;
  height: 1px;
  width: 10%;
  background: #141c1f;
  border-radius: 100%;
  right: 0;
  top: 18px;
  z-index: 0;
  margin: auto;
  transform: translateZ(-1px);
}
@media only screen and (max-width: 480px) {
  .module-history .option-3 .list-left {
    display: none;
  }
}
.module-history .option-3 .list-right {
  flex-basis: 50%;
}
.module-history .option-3 .list-right .module-item {
  position: relative;
  padding-left: 15%;
  padding-right: 15%;
}
.module-history .option-3 .list-right .module-item:not(:first-child) {
  margin-top: 40px;
}
.module-history .option-3 .list-right .module-item:nth-child(odd) {
  display: none;
}
@media only screen and (max-width: 480px) {
  .module-history .option-3 .list-right .module-item:nth-child(odd) {
    display: block;
  }
}
.module-history .option-3 .list-right .module-item:nth-child(2) {
  margin-top: 25%;
}
.module-history .option-3 .list-right .module-item::before {
  content: "";
  display: block;
  background: #00213F;
  height: 18px;
  width: 18px;
  border-radius: 100px;
  z-index: 0;
  position: absolute;
  left: -11px;
  top: 10px;
}
.module-history .option-3 .list-right .module-item::after {
  content: "";
  position: absolute;
  display: block;
  height: 1px;
  width: 10%;
  background: #141c1f;
  border-radius: 100%;
  left: 0;
  top: 18px;
  z-index: 0;
  margin: auto;
  transform: translateZ(-1px);
}
@media only screen and (max-width: 480px) {
  .module-history .option-3 .list-right {
    flex-basis: 100%;
    margin-top: -25px;
  }
}
.module-history .option-3 .list-divider {
  background-color: #00213F;
  position: relative;
  width: 5px;
}
.module-history .option-4 {
  padding: 0 40px;
  position: relative;
}
.module-history .option-4 h3 {
  color: #545b62;
  font-size: 1.2rem;
  line-height: 2.2rem;
  font-weight: 400;
  margin: 0;
}
.module-history .option-4 .splide__track {
  margin: 0 10px;
}
.module-history .option-4 .splide__list {
  align-items: flex-end;
}
.module-history .option-4 .splide__slide {
  border: 0;
}
.module-history .option-4 .splide__slide img {
  display: none;
}
.module-history .option-4 .splide__slide .module_date-time {
  color: #fff;
  background-color: #D1AA63;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.8rem;
  width: fit-content;
  padding: 5px 25px;
  position: relative;
  right: 35px;
  margin-bottom: 20px;
}
.module-history .option-4 .splide__slide .module_date-time::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 0 solid transparent;
  border-top: 8px solid #D1AA63;
  clear: both;
}
.module-history .option-4 .splide__slide .module_description {
  display: none;
}
.module-history .option-4 .splide__slide .module_item {
  padding: 5px 25px 25px;
  margin: 25px 7px 55px;
  position: relative;
  box-shadow: 0 2px 10px 0 rgba(51, 51, 51, 0.2980392157);
  background-color: #fff;
}
.module-history .option-4 .splide__slide .module_item ~ .module_item {
  border-top: none;
  background-color: #fff;
}
.module-history .option-4 .splide__slide .module_item::before {
  content: "";
  display: block;
  background: #D1AA63;
  height: 9px;
  width: 9px;
  border-radius: 100px;
  z-index: 999;
  position: absolute;
  bottom: -55px;
  left: 40%;
}
.module-history .option-4 .splide__slide .module_item::after {
  content: "";
  position: absolute;
  left: 42%;
  top: 100%;
  width: 0;
  height: 0;
  border-left: 0 solid transparent;
  border-right: 38px solid transparent;
  border-top: 35px solid #fff;
  clear: both;
  filter: drop-shadow(-2px 4px 3px rgba(51, 51, 51, 0.2980392157));
}
.module-history .option-4 .splide__slide:focus {
  outline-offset: -2px;
}
.module-history .option-4 .splide__slide.is-active {
  border: 0;
}
.module-history .option-4 .splide__slide.is-active .module_item {
  background-color: #BCCBDC;
}
.module-history .option-4 .splide__slide.is-active .module_item h3 {
  color: #fff;
  font-weight: 700;
}
.module-history .option-4 .splide__slide.is-active .module_item .module_date-time {
  color: #D1AA63;
  background-color: #fff;
}
.module-history .option-4 .splide__slide.is-active .module_item .module_description {
  display: block;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 2.2rem;
  color: #fff;
}
.module-history .option-4 .splide__slide.is-active .module_item::before {
  background: #297ac5;
}
.module-history .option-4 .splide__slide.is-active .module_item::after {
  border-top: 35px solid #BCCBDC;
}
.module-history .option-4 .splide__arrow {
  bottom: -35px;
  top: unset;
}
.module-history .option-4::before {
  content: "";
  position: absolute;
  display: block;
  height: 2px;
  background: #e0e0e0;
  border-radius: 100px;
  bottom: 3px;
  width: calc(100% - 60px);
  z-index: 0;
  margin: auto;
  right: 0;
  left: 0;
}

.icon-boxes {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 40px;
  width: 100%;
}
.icon-boxes .icon-box {
  display: grid;
  width: 12%;
  flex-grow: 1;
  gap: 18px;
  min-width: 134px;
}
@media (max-width: 870px) {
  .icon-boxes .icon-box {
    width: 12%;
    max-width: 12%;
  }
}
@media only screen and (max-width: 768px) {
  .icon-boxes .icon-box {
    width: 44%;
    max-width: 44%;
  }
}
@media only screen and (max-width: 480px) {
  .icon-boxes .icon-box {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    text-align: center;
  }
}
.icon-boxes .icon-box .icon-box__icon {
  display: grid;
  width: 100%;
  justify-content: start;
}
@media only screen and (max-width: 480px) {
  .icon-boxes .icon-box .icon-box__icon {
    justify-content: center;
  }
}
.icon-boxes.icon-boxes--large {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 20px;
  row-gap: 24px;
}
.icon-boxes.icon-boxes--large .icon-boxes__icon {
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
@media only screen and (max-width: 768px) {
  .icon-boxes.icon-boxes--large {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 480px) {
  .icon-boxes.icon-boxes--large {
    grid-template-columns: 1fr;
  }
}
.icon-boxes.icon-boxes--large p {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0px;
  text-align: center;
}

/* ------------------ IR Overview > Why Invest ------------------- */
@media screen and (min-width: 481px) {
  .module-ir-overview-why-invest .splide__slide:not(:last-child) {
    position: relative;
  }
  .module-ir-overview-why-invest .splide__slide:not(:last-child) .module-ir-overview-why-invest_column::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    right: -24px;
    width: 1px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
  }
}
.module-ir-overview-why-invest_title {
  font-family: var(--fontFamilyEuclid);
  font-size: 4.8rem;
  font-weight: 500;
  line-height: 1.21;
  color: #D1AA63;
}
.module-ir-overview-why-invest_detail {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.56;
}

#why-invest {
  margin-bottom: 77px;
}
@media screen and (min-width: 769px) {
  #why-invest {
    margin-bottom: 57px;
  }
  #why-invest .splide__arrow:disabled {
    opacity: 0;
  }
}
#why-invest .splide__arrows {
  position: absolute;
  bottom: -60px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 24px;
}
#why-invest .splide__arrow {
  position: relative;
  top: unset;
  left: unset;
  right: unset;
  transform: unset;
}

/* ---------- Job Modules --------- */
.module-job-details_description-container {
  margin-bottom: 35px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.module-job-details_description {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.module-job-details_description label {
  font-weight: normal;
}
.module-job-details_description input {
  width: auto;
  max-width: none;
  padding: 0;
  border: none;
  float: right;
  font-family: var(--fontFamilyEuclid);
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 0;
}
@media only screen and (max-width: 480px) {
  .module-job-details_description label::after {
    content: ":";
  }
  .module-job-details_description input {
    display: block;
    float: none;
    margin-top: 5px;
  }
}
.module-job-details .grid_col {
  padding: 15px 20px;
}
.module-job-application_table {
  display: block;
  width: 100%;
  margin-left: -20px;
  font-size: 0;
}
.module-job-application_table tr {
  display: inline-block;
  width: 50%;
  margin-bottom: 20px;
  padding-left: 20px;
  vertical-align: top;
  font-size: 1.6rem;
}
.module-job-application_table tr:last-child {
  margin-bottom: 0;
}
.module-job-application_table tr.module-job-application_cover-letter-text, .module-job-application_table tr.module-job-application_resume-text {
  width: 100%;
}
.module-job-application_table tr td {
  display: block;
  position: relative;
}
.module-job-application_table tr label {
  display: inline-block;
  margin-bottom: 5px;
  font-size: 1.4rem;
}
@media only screen and (max-width: 768px) {
  .module-job-application_table {
    margin-left: 0;
  }
  .module-job-application_table tr {
    width: 100%;
    padding-left: 0;
  }
}
.module-job-application .module_required {
  font-size: 1.4rem;
}

/* ----- Miscellaneous Modules ---- */
.module-script {
  display: none;
}

.module-slideshow_ratio {
  padding-bottom: 56.25%;
  /* this should be changed with aspecRatio option in widget */
  position: relative;
}
.module-slideshow_viewer:not(.grid_col) {
  display: inline-block;
  width: 100%;
  max-width: 640px;
}
.module-slideshow_viewer:not(.grid_col):not(:last-child) {
  margin-bottom: 25px;
}
.module-slideshow_featured {
  padding: 0 40px;
}
@media (max-width: 1024px) {
  .module-slideshow_featured {
    padding: unset;
  }
}
.module-slideshow_title {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0px;
  margin-bottom: 20px;
}
.module-slideshow_date {
  color: #00213F;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.4rem;
  margin-bottom: 10px;
}
.module-slideshow .module_links > * + * {
  margin-top: 15px;
}
.module-slideshow_link {
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
}
.module-slideshow iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
}

.module-rss p + h2 {
  margin: 40px 0 30px;
}

.module-presentation-latest .module_item {
  border-bottom: 1px solid #767676;
  padding-bottom: 15px;
  margin-bottom: 45px;
}

/* ------ Navigation Modules ------ */
.nav_close {
  display: none;
}
.nav_guide {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
@media only screen and (max-width: 1024px) {
  .nav_guide {
    display: none;
  }
}
.nav a[tabindex="-1"]:focus {
  /* navigation needs this for accessibility purpose  */
  outline-width: 2px !important;
  outline-style: dotted !important;
  outline-color: inherit !important;
}
.nav--main {
  text-align: right;
  font-size: 1.3rem;
}
.nav--main button.submenu-trigger {
  /* removing default button styling for dropdown menu buttons */
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font-family: var(--fontFamilyEuclid);
  font-size: inherit;
}
.nav--main li {
  display: inline-block;
  position: relative;
}
.nav--main li a {
  display: block;
  padding: 10px 5px;
  color: #203E63;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media only screen and (max-width: 1200px) {
  .nav--main li a {
    text-transform: none;
    letter-spacing: 0;
  }
}
.nav--main li.selected > a, .nav--main li.expanded:not(.home) > a,
.nav--main li a:hover,
.nav--main li a:focus,
.nav--main li button:focus a {
  color: #00213F;
}
.nav--main .level2 {
  display: inline-block;
  vertical-align: top;
}
.nav--main .level2 > li {
  padding: 10px 0;
}
.nav--main .level3 {
  display: none;
  background-color: #00213F;
  padding: 20px 10px;
  text-align: left;
  white-space: nowrap;
  position: absolute;
  z-index: 200;
  left: calc(50% - 30px);
  top: 100%;
  min-width: 200px;
}
.nav--main .level3::before {
  content: "";
  border-bottom: 11px solid #00213F;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  position: absolute;
  top: -10px;
  left: 15px;
}
.nav--main li:last-child > .level3 {
  right: calc(50% - 30px);
  left: auto;
}
.nav--main li:last-child > .level3::before {
  left: auto;
  right: 15px;
}

.nav--main li.sfHover > .level3 {
  display: block;
}

.nav--main .level3 li {
  display: block;
}
.nav--main .level3 li.selected > a, .nav--main .level3 li.expanded > a {
  color: #fff;
}
.nav--main .level3 a {
  color: #fff;
  padding: 10px;
  text-transform: none;
}
.nav--main .level3 a:hover, .nav--main .level3 a:focus {
  color: #fff;
  text-decoration: underline;
}
.nav--main .js--expanded .level3 {
  display: block;
}
.nav--secondary {
  background: #DCE5EF;
  text-align: center;
}
.js--sticky .nav--secondary {
  position: fixed;
  width: 100%;
  z-index: 200;
  box-shadow: rgba(20, 28, 31, 0.2) 0 2px 20px;
}

@media only screen and (max-width: 1024px) {
  .nav--secondary {
    display: none;
  }
}
.nav--secondary .level1 {
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media only screen and (max-width: 1024px) {
  .nav--secondary .level1 {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }
}
.nav--secondary .level1 > li {
  display: none;
}
.nav--secondary .level1 > li.selected, .nav--secondary .level1 > li.expanded {
  display: block;
}
.nav--secondary .level1 > li.selected > a, .nav--secondary .level1 > li.expanded > a {
  display: none;
}
.nav--secondary .level2 > li {
  display: none;
}
.nav--secondary .level2 > li.selected, .nav--secondary .level2 > li.expanded {
  display: block;
}
.nav--secondary .level2 > li.selected > a, .nav--secondary .level2 > li.expanded > a {
  display: none;
}
.nav--secondary .level2 > li.has-children:focus .level3[style*=none] {
  display: block !important;
}
.nav--secondary .level3 {
  text-align: center;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: center;
}
@media screen and (min-width: 1025px) {
  .nav--secondary .level3 {
    /* to override superfish on desktop */
    display: flex !important;
    opacity: 1 !important;
  }
}

.nav--secondary .level3 > li {
  display: inline-block;
  vertical-align: top;
}
.nav--secondary .level3 > li a {
  background-color: #DCE5EF;
  color: #00213F;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 17px 34px;
  font-size: 14px;
  line-height: 100%;
  font-weight: 500;
  height: 100%;
}
.nav--secondary .level3 > li a:hover, .nav--secondary .level3 > li a:focus {
  background: #BCCBDC;
  text-decoration: none;
}
.nav--secondary .level3 > li a:focus {
  outline: none;
}
.nav--secondary .level3 > li.selected a {
  background: #BCCBDC;
}
.nav--sitemap {
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: var(--module-vspace);
  padding-bottom: var(--module-vspace);
}
.nav--sitemap a {
  display: inline-block;
}
.nav--sitemap .level1 > li:not(:last-of-type),
.nav--sitemap .level2 > li:not(:last-of-type) {
  margin-bottom: 35px;
}
.nav--sitemap .level1 > li > h2,
.nav--sitemap .level2 > li > h2 {
  margin-bottom: 5px;
  line-height: 2.4rem;
}
.nav--sitemap .level1 > li > h2 > a, .nav--sitemap .level1 > li > h2 > a:visited,
.nav--sitemap .level2 > li > h2 > a,
.nav--sitemap .level2 > li > h2 > a:visited {
  margin-bottom: 15px;
  font-size: 2.4rem;
  color: #141c1f;
  text-transform: uppercase;
  font-weight: normal;
}
.nav--sitemap .level2 {
  margin-top: 20px;
}
.nav--sitemap .level2 > li > h2 a {
  margin-bottom: 5px;
}
.nav--sitemap .level3 > li {
  padding: 5px 0;
  padding-left: 15px;
}
.nav--sitemap .level3 > li > h3, .nav--sitemap .level3 > li > a {
  font-size: 1.4rem;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0;
}
.nav--sitemap .level4 > li {
  padding: 5px 0;
  padding-left: 15px;
}

/* ==================================
 ---------- NEW NAV START ----------
================================== */
.nav--mobile {
  display: none;
  width: 100%;
  background-color: #00213F;
  overflow-y: auto;
  position: fixed;
  will-change: transform;
  top: 0;
  height: 100%;
  box-shadow: rgba(0, 0, 0, 0.2) 0 8px 24px;
  z-index: 300;
  overflow: initial;
}
.nav--mobile.right {
  right: 0;
}
.nav--mobile.left {
  left: 0;
  transform: translateX(-100%);
}
.nav--mobile.top {
  right: 0;
  transform: translateY(-120%);
}
@media only screen and (max-width: 768px) {
  .nav--mobile.top {
    transform: translateY(-200%);
  }
}
.js--mobile .nav--mobile {
  transform: translateY(56px);
}
.Sectioninvestor-relations .js--mobile .nav--mobile {
  transform: translateY(88px);
}

@media only screen and (min-width: 1042px) {
  .nav--mobile {
    display: none;
  }
}
.nav--mobile--toggle {
  display: none;
  font-size: 1.6rem;
  color: #fff;
  background: transparent;
  border: 0 none;
  margin: 0;
  padding: 0;
  outline-color: #141c1f;
  position: absolute;
  top: 21px;
  right: 0 !important;
}
.nav--mobile--toggle[aria-expanded=false] {
  color: #fff;
}
.nav--mobile--toggle [class^=q4-icon_]:focus,
.nav--mobile--toggle [class*=" q4-icon_"]:focus {
  outline: none;
}
.nav--mobile--toggle .q4-icon_menu.close {
  display: none;
}
@media only screen and (max-width: 1042px) {
  .nav--mobile--toggle {
    display: block;
  }
}
.nav--mobile--toggle.right {
  right: 20px;
}
.nav--mobile--inner_toggle_container .nav--mobile--toggle {
  position: static;
  color: #fff;
  float: none;
  transform: translate(-20px, -36px);
}
.nav--mobile--inner_toggle_container .nav--mobile--toggle .q4-icon_menu.close {
  display: block;
}
.nav--mobile--inner_toggle_container .nav--mobile--toggle .q4-icon_menu.close::before {
  content: "\ed6d";
  font-size: 15px;
}
.nav--mobile--inner_toggle_container .nav--mobile--toggle.right {
  margin-left: auto;
}
.nav--mobile--inner_toggle_container .nav--mobile--toggle [class^=q4-icon_]::before,
.nav--mobile--inner_toggle_container .nav--mobile--toggle [class*=" q4-icon_"]::before {
  font-size: 2.5rem;
  content: "\ed6d";
}
.nav--mobile--search_container {
  display: block;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: #fff;
  font-size: 1.4rem;
  padding: 17px 24px;
  min-height: 73px;
  background-color: #00213F;
  width: 100%;
}
.nav--mobile--search_container--input {
  -webkit-box-shadow: 0 0 0 30px #00213F inset !important;
  -webkit-text-fill-color: #fff !important;
  border: none;
  border-bottom: 1px solid;
  left: 0;
  padding: 10px 35px 10px 0;
  width: 90%;
  color: #fff !important;
  font-size: 16px;
  line-height: 19.5px;
  font-weight: 500;
  -webkit-appearance: none;
  font-family: var(--fontFamilyEuclid);
}
.nav--mobile--search_container--btn {
  position: absolute;
  right: 20px;
  font-size: 23px;
  color: #fff;
  background-color: transparent;
  border: none;
  padding: 10px 15px;
}
.nav--mobile--expand--topMenu--menuItem, .nav--mobile--panel--topMenu--menuItem {
  display: block;
  position: relative;
  width: fit-content;
}
.nav--mobile--expand--topMenu--menuItem:hover, .nav--mobile--panel--topMenu--menuItem:hover {
  text-decoration: underline;
}
.nav--mobile--expand--topMenu--menuItem .link,
.nav--mobile--expand--topMenu--menuItem .button, .nav--mobile--panel--topMenu--menuItem .link,
.nav--mobile--panel--topMenu--menuItem .button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 0;
  margin: 0 10px;
  width: calc(100% - 20px);
  font-weight: normal;
  letter-spacing: 0.5px;
  background-color: transparent;
  text-transform: capitalize;
  color: #fff;
  border: none;
  min-width: auto;
  transition: none;
}
.nav--mobile--expand--topMenu--menuItem .link:focus,
.nav--mobile--expand--topMenu--menuItem .button:focus, .nav--mobile--panel--topMenu--menuItem .link:focus,
.nav--mobile--panel--topMenu--menuItem .button:focus {
  outline-color: #fff !important;
  border-radius: 0;
}
.nav--mobile--expand--topMenu--menuItem.selected > a .icon,
.nav--mobile--expand--topMenu--menuItem.selected > a .text,
.nav--mobile--expand--topMenu--menuItem.selected > button .icon,
.nav--mobile--expand--topMenu--menuItem.selected > button .text, .nav--mobile--expand--topMenu--menuItem.expanded > a .icon,
.nav--mobile--expand--topMenu--menuItem.expanded > a .text,
.nav--mobile--expand--topMenu--menuItem.expanded > button .icon,
.nav--mobile--expand--topMenu--menuItem.expanded > button .text, .nav--mobile--panel--topMenu--menuItem.selected > a .icon,
.nav--mobile--panel--topMenu--menuItem.selected > a .text,
.nav--mobile--panel--topMenu--menuItem.selected > button .icon,
.nav--mobile--panel--topMenu--menuItem.selected > button .text, .nav--mobile--panel--topMenu--menuItem.expanded > a .icon,
.nav--mobile--panel--topMenu--menuItem.expanded > a .text,
.nav--mobile--panel--topMenu--menuItem.expanded > button .icon,
.nav--mobile--panel--topMenu--menuItem.expanded > button .text {
  font-weight: bold;
  color: #fff;
}
.nav--mobile--expand--topMenu--menuItem .button, .nav--mobile--panel--topMenu--menuItem .button {
  width: fit-content;
  border: none;
  font-family: var(--fontFamilyEuclid);
  font-size: inherit;
  font-style: inherit;
  min-width: auto;
}
.nav--mobile--expand--topMenu--menuItem .button .text, .nav--mobile--panel--topMenu--menuItem .button .text {
  display: inline-block;
}
.nav--mobile--expand--topMenu--menuItem .button .icon, .nav--mobile--panel--topMenu--menuItem .button .icon {
  margin-left: 5px;
  display: inline-block;
}
.nav--mobile--expand--topMenu--menuItem .button .icon.q4-icon_chevron-right, .nav--mobile--panel--topMenu--menuItem .button .icon.q4-icon_chevron-right {
  font-size: 8px;
  font-weight: bold;
}
.nav--mobile--expand--topMenu--menuItem.has-innerMenu > button:hover, .nav--mobile--panel--topMenu--menuItem.has-innerMenu > button:hover {
  text-decoration: underline;
}
.nav--mobile--expand--innerMenu, .nav--mobile--panel--innerMenu {
  margin-left: 25px !important;
}
.nav--mobile--panel--topMenu {
  padding: 20px 20px 15px 9px !important;
  max-height: 100vh;
  overflow-y: auto;
}
.nav--mobile--panel--topMenu--menuItem {
  position: static;
  display: block;
}
.nav--mobile--panel--innerMenu {
  margin-left: 0 !important;
  will-change: transform;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 20px 20px 60px 9px !important;
  background-color: #00213F;
  overflow-y: auto;
}
.nav--mobile--panel--innerMenu.right {
  right: 0;
  transform: translateX(100%);
}
.nav--mobile--panel--innerMenu.left {
  left: 0;
  transform: translateX(-100%);
}
.nav--mobile--panel--innerMenu--menuItem {
  position: static;
}
.nav--mobile--panel--innerMenu--menuItem:hover {
  text-decoration: underline;
}
.nav--mobile--panel--innerMenu--menuItem.has-innerMenu > button:hover {
  text-decoration: underline;
}
.nav--mobile--panel--innerMenu--menuItem:not(.panel-control) {
  margin-left: 20px;
}
.nav--mobile--panel--innerMenu--menuItem.selected > a .icon,
.nav--mobile--panel--innerMenu--menuItem.selected > a .text,
.nav--mobile--panel--innerMenu--menuItem.selected > button .icon,
.nav--mobile--panel--innerMenu--menuItem.selected > button .text, .nav--mobile--panel--innerMenu--menuItem.expanded > a .icon,
.nav--mobile--panel--innerMenu--menuItem.expanded > a .text,
.nav--mobile--panel--innerMenu--menuItem.expanded > button .icon,
.nav--mobile--panel--innerMenu--menuItem.expanded > button .text {
  font-weight: bold;
}
.nav--mobile--panel--innerMenu .panel-control {
  margin-top: 13px;
}
.nav--mobile--panel--innerMenu .panel-control .button {
  justify-content: start;
  font-weight: 500;
}
.nav--mobile--panel--innerMenu .panel-control .button .icon {
  margin-left: 0;
  margin-right: 8px;
  height: fit-content;
}
.nav--mobile--panel--innerMenu .panel-control .button .icon::before {
  font-weight: bold;
  font-size: 10px;
  position: relative;
  top: -3px;
}
.nav--desktop {
  font-size: 1.4rem;
}
@media only screen and (max-width: 1042px) {
  .nav--desktop {
    display: none !important;
  }
}
.nav--desktop.hoz {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
}
.nav--desktop--search_container {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-family: var(--fontFamilyEuclid);
  font-style: italic;
  color: #D1AA63;
}
.nav--desktop--search_container .q4-icon_search::before {
  content: "";
  width: 32px;
  height: 32px;
  background-image: url("../design/svg/search-icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
}
.nav--desktop--search_container--input {
  display: none;
  background-color: #fff;
  -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0) inset !important;
  -webkit-text-fill-color: #203E63 !important;
  border: none;
  position: absolute;
  top: calc(100% + 19px);
  border-radius: 4px;
  right: 0;
  padding: 10px 35px 10px 15px;
    font-family: var(--fontFamilyEuclid);
}
.nav--desktop--search_container--input:focus {
  outline-color: #fff;
}
.nav--desktop--search_container--btn {
  position: relative;
  font-size: 15px;
  color: #fff;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.nav--desktop .level0 {
  outline-color: #fff !important;
}
.nav--desktop .level0 > .selected > .link::after, .nav--desktop .level0 > .selected > .button::after,
.nav--desktop .level0 > .expanded > .link::after,
.nav--desktop .level0 > .expanded > .button::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: 8px;
  left: 0;
}
.nav--desktop--list--topMenu {
  display: flex;
  gap: 30px;
  width: 100%;
}
.nav--desktop--list--topMenu--menuItem {
  display: inline-block;
  vertical-align: middle;
  margin: 0 5px;
}
.nav--desktop--list--topMenu--menuItem:hover > ul.nav--desktop--list--innerMenu {
    display: inline-flex !important;
    position: absolute;
    top: 100%;
    opacity: 1 !important;
}
.nav--desktop--list--topMenu--menuItem:hover > .link::after, .nav--desktop--list--topMenu--menuItem:hover > .button::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: 8px;
  left: 0;
}
.nav--desktop--list--topMenu--menuItem:hover .q4-icon_chevron-down {
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.nav--desktop--list--topMenu--menuItem .link,
.nav--desktop--list--topMenu--menuItem .button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  padding: 20px 10px;
  margin: 0 0;
  width: 100%;
  background: transparent;
  font-family: var(--fontFamilyEuclid);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0;
  color: #fff;
  border-radius: 0;
  text-transform: unset;
}
.nav--desktop--list--topMenu--menuItem .link:hover,
.nav--desktop--list--topMenu--menuItem .button:hover {
  text-decoration: none;
}
.nav--desktop--list--topMenu--menuItem .link:focus,
.nav--desktop--list--topMenu--menuItem .button:focus {
  outline-color: transparent;
}
.nav--desktop--list--topMenu--menuItem .link:focus:before,
.nav--desktop--list--topMenu--menuItem .button:focus:before {
  content: "";
  background: none;
  z-index: -1;
  display: block;
  width: 100%;
  height: 40px;
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  left: 0;
  outline-width: 2px;
  outline-style: dotted;
  outline-color: inherit;
  outline-offset: -1px;
  outline-color: #fff;
}
.nav--desktop--list--topMenu--menuItem .button {
  border: none;
  min-width: auto;
  transition: none;
}
.nav--desktop--list--topMenu--menuItem .button:focus {
  outline-color: transparent;
  border-radius: 0;
}
.nav--desktop--list--topMenu--menuItem .button .text {
  display: inline-block;
}
.nav--desktop--list--topMenu--menuItem .button .icon {
  margin-left: 5px;
  display: inline-block;
  font-size: 0.75rem;
}
.nav--desktop--list--innerMenu {
  display: inline-flex;
  justify-content: center;
  max-width: 1220px;
  border-top: none;
  background-color: #00213F;
  position: absolute;
  min-width: 100vw !important;
  left: 50% !important;
  transform: translateX(-50%);
  transition: opacity 0.9s ease-in-out, display 0.9s ease-in-out;
  transition-delay: 0.3s;
  transition-behavior: allow-discrete;
}
.nav--desktop--list--innerMenu--menuItem {
  position: relative;
}
.nav--desktop--list--innerMenu .level2 {
  top: 0 !important;
  margin-left: 1px;
  border-top: 1px solid rgba(181, 176, 172, 0.4);
  z-index: 100;
}
.nav--desktop--list--innerMenu .link,
.nav--desktop--list--innerMenu .button {
  display: inline-flex;
  gap: 10px;
  padding: 17px 40px;
  color: #fff;
  text-transform: none;
  font-weight: 400;
  border-radius: 0;
  font-size: 1.4rem;
  font-weight: 500;
}
.nav--desktop--list--innerMenu .link:hover,
.nav--desktop--list--innerMenu .button:hover {
  color: #D1AA63;
}
.nav--desktop--list--innerMenu .link:focus,
.nav--desktop--list--innerMenu .button:focus {
  outline-color: transparent;
}
.nav--desktop--list--innerMenu > .selected > .link {
  color: #D1AA63;
}

/* ==================================
 ----------- NEW NAV END -----------
================================== */
.nav--desktop--container .nav--desktop {
  width: 100%;
  display: grid;
  justify-content: center;
  margin-left: -68px;
}
.nav--desktop--container .module_container--inner {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  position: relative;
  height: 56px;
}
.nav--desktop--container .module-logo {
  width: 68px;
  z-index: 200;
}

#langSwitcher {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  background-color: #00213F;
  color: #fff;
  border-color: #00213F;
    font-family: var(--fontFamilyEuclid);
  font-weight: 500;
  border: none;
  z-index: 9999999;
}
@media only screen and (max-width: 1042px) {
  #langSwitcher {
    right: 30px;
  }
}
.js--mobile #langSwitcher {
  display: none;
}

.nav--desktop--list--topMenu--menuItem:first-child {
  display: none;
}

/* -------- News Module CSS ------- */
.module-news .module_nav,
.module-news .module_thumbnail-link,
.module-news .module_more-link,
.module-news .module_links {
  display: none;
}
@media only screen and (max-width: 768px) {
  .module-news .module_options .grid_col {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 480px) {
  .module-news .module_rss {
    margin-top: 0;
  }
}
.module-news .module_item {
  padding-top: 40px;
  border-top: none;
  border-bottom: 1px solid #738FB0;
}
.module-news .module_item:first-child {
  padding-top: 0;
}
.module-news .module_options-container {
  display: inline-flex;
  flex-direction: column;
}
.module-news .module_options-container label {
  margin-bottom: 10px;
  font-size: 1.8rem;
  line-height: 2.8rem;
  font-weight: 500;
}
.module-news .module_date-time {
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #333;
}
.module-news .module_headline-link {
  font-size: 1.8rem;
  line-height: 2.8rem;
  font-weight: 500;
}
.module-news-latest {
  background-image: url("../design/banner/banner-latest-news.png");
}
.module-news-latest .splide__list {
  justify-content: space-between;
  width: 100%;
}
.module-news-latest .module_container--content {
  display: flex;
  justify-content: stretch;
  align-items: stretch;
  padding: 0;
  margin-bottom: 35px;
}
.module-news-latest .module_date-time {
  color: #fff;
  margin-bottom: 15px;
}
.module-news-latest .module_headline {
  margin-bottom: 20px;
}
.module-news-latest .module_headline-link:hover {
  color: #fff;
}
.module-news-latest .module_item {
  align-self: stretch;
  border: none;
  margin: 0;
  padding: 0 0 20px 0;
  position: relative;
  display: grid;
  flex-direction: column;
}
.module-news-latest .module_item-wrap {
  border-bottom: 1px solid #ddd;
  height: 100%;
}
.module-news-latest .module_item hr {
  position: absolute;
  bottom: 0;
  width: 100%;
  border: none;
}
.module-news-latest .module_link-text {
  font-weight: 600;
}
.module-news-latest .module_link-text:hover {
  color: #fff;
  text-decoration: underline;
}
.module-news-latest .module_link-text + .q4-icon_chevron-right {
  margin-left: 5px;
}
.module-news-latest .latest-news {
  width: 100%;
}
.module-news-latest.dark .button--cta:hover {
  color: #fff;
  text-decoration: underline;
}
.module-news-latest .slick-slide {
  float: none;
  height: auto;
}
.module-news-latest-overview {
  background-image: none;
}
.module-news-latest-overview .module_date-time {
  color: #203E63;
  margin-bottom: 15px;
}
.module-news-latest-overview .module_item hr {
  border: none;
  border-top: 1px solid #00213F;
  margin-top: 0;
  margin-bottom: 0;
}
.module-news-latest-overview .module_headline-link {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0px;
}
.module-news-latest-overview .module_headline-link:hover {
  color: #00213F;
}
.module-news-latest-overview .module_link-text:hover {
  color: #D1AA63;
}
.module-news-latest-latest {
  background-image: url("../design/banner/banner-latest-news.png");
}
.module-news-latest-latest .module_container--content {
  display: flex;
  justify-content: stretch;
  align-items: stretch;
  padding: 0;
  margin-bottom: 20px;
}
.module-news-latest-latest .module_container--content .slick-track {
  display: flex;
  justify-content: stretch;
  align-items: stretch;
}
.module-news-latest-latest .module_container--content .slick-list {
  width: 100%;
}
.module-news-latest-latest .module_date-time {
  color: #fff;
  margin-bottom: 15px;
}
.module-news-latest-latest .module_headline {
  margin-bottom: 40px;
}
.module-news-latest-latest .module_headline-link:hover {
  color: #fff;
}
.module-news-latest-latest .module_item {
  align-self: stretch;
  border: none;
  margin: 0;
  padding: 0 0 20px 20px;
  position: relative;
}
.module-news-latest-latest .module_item-wrap {
  border-bottom: 1px solid #ddd;
  height: 100%;
}
.module-news-latest-latest .module_item hr {
  position: absolute;
  bottom: 0;
  width: 90%;
  border: none;
  border-top: 1px solid #fff;
}
.module-news-latest-latest .module_link-container {
  position: absolute;
  bottom: 20px;
  font-size: 1.2rem;
  text-transform: uppercase;
}
.module-news-latest-latest .module_link-text {
  font-weight: 600;
}
.module-news-latest-latest .module_link-text:hover {
  color: #fff;
  text-decoration: underline;
}
.module-news-latest-latest .module_link-text + .q4-icon_chevron-right {
  margin-left: 5px;
}
.module-news-latest-latest .latest-news {
  width: 100%;
}
.module-news-latest-latest a:hover {
  text-decoration: underline;
}
.module-news-latest-latest.dark .button--cta:hover {
  color: #fff;
  text-decoration: underline;
}
.module-news-latest-latest .slick-slide {
  float: none;
  height: auto;
}
.module-news-latest-latest-overview {
  background-image: none;
}
.module-news-latest-latest-overview .module_date-time {
  color: #333;
}
.module-news-latest-latest-overview .module_item hr {
  border: none;
  border-top: 1px solid #BCCBDC;
}
.module-news-latest-latest-overview .module_headline-link:hover {
  color: #D1AA63;
}
.module-news-latest-latest-overview .module_link-text:hover {
  color: #D1AA63;
}
.module-news-details .module_view-all-link {
  margin-bottom: 10px;
}
.module-news-details .module_view-all-link--bottom {
  margin-top: 25px;
  margin-bottom: 0;
}
.module-news_category {
  display: none;
}
.module-news ul {
  margin: 16px 0;
  padding-left: 32px;
  list-style-type: disc;
}
.module-news ul li {
  line-height: 1.5;
}
.module-news .module_multimedia .module_link {
  margin: 0;
  display: block;
}
.module-news .module_multimedia-caption {
  margin-bottom: 16px;
}
.module-news .module_multimedia-caption .module_file-text {
  display: block;
}
.module-news .module_multimedia-caption .module_file-resolution {
  display: none;
}
.module-news .module_multimedia-image {
  width: 100%;
  float: none;
}
.module-news .module_multimedia-size {
  margin-top: 10px;
}
.module-news .module_multimedia-size .module_file-size {
  display: inline;
}
.module-news .module_multimedia-size .module_file-resolution::before {
  content: "(";
}
.module-news .module_multimedia-size .module_file-resolution::after {
  content: ")";
}
@media only screen and (max-width: 1024px) {
  .module-news .module_multimedia-size-item {
    margin-bottom: 30px;
  }
}

.module-news--grid h2 {
  line-height: inherit;
  margin-bottom: 24px;
}
.module-news--grid .module_container--content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
}
@media only screen and (max-width: 768px) {
  .module-news--grid .module_container--content {
    display: block;
  }
}
.module-news--grid .module_item {
  padding: 0;
}
.module-news--grid .module_item:first-child {
  grid-row: 1/span 2;
}
@media only screen and (max-width: 768px) {
  .module-news--grid .module_item:first-child {
    grid-row: 1;
    grid-column: 1/span 2;
  }
}
.module-news--grid .module_item:first-child img {
  height: 492px;
  object-fit: cover;
}
.module-news--grid .module_item:not(:first-child) {
  align-self: start;
}
@media only screen and (max-width: 768px) {
  .module-news--grid .module_item:not(:first-child) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.module-news--grid .module_item:not(:first-child) img {
  height: 156px;
  object-fit: cover;
}
@media only screen and (max-width: 768px) {
  .module-news--grid .module_item:not(:first-child) img {
    height: inherit;
    object-fit: none;
    width: inherit;
  }
}
.module-news--grid .module_item ~ .module_item {
  border-top: 0;
}
.module-news--grid .module_date-time {
  font-size: 16px;
  font-size: 1.6rem;
  margin-top: 15px;
}
.module-news--grid .module_headline {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
}
.module-news--grid .module_headline a:hover {
  text-decoration: underline;
  color: #D1AA63;
}
.module-news--grid img {
  display: block;
  width: 100%;
}

.module_overview-careers .overview-careers {
  background: #141c1f;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.module_overview-careers .overview-careers_content {
  padding: 7.5rem 8rem;
}
.module_overview-careers .overview-careers_content h2 {
  margin-bottom: 2.4rem;
}
.module_overview-careers .overview-careers_content p {
  margin-top: 0;
  margin-bottom: 2.4rem;
}
.module_overview-careers .overview-careers_image {
  background: url("../design/banner/overview-careers-bg.jpg") no-repeat center center;
  background-size: cover;
}
@media only screen and (max-width: 768px) {
  .module_overview-careers .module_container.module_container--outer {
    padding-left: 0;
    padding-right: 0;
  }
  .module_overview-careers .module_container.module_container--outer .overview-careers {
    grid-template-columns: 1fr;
  }
  .module_overview-careers .module_container.module_container--outer .overview-careers_content {
    display: grid;
    padding: 6rem 2rem;
    text-align: center;
    justify-items: center;
  }
  .module_overview-careers .module_container.module_container--outer .overview-careers_image {
    min-height: 375px;
  }
}

.module-our-portfolio--option-1 .section_title {
  margin-bottom: 25px;
}
.module-our-portfolio--option-1 .section_leadin {
  font-size: 2rem;
  max-width: 90%;
}
.module-our-portfolio--option-1 .splide {
  margin-top: 40px;
}
.module-our-portfolio--option-1 .splide__list {
  height: 412px;
  display: flex;
  align-items: flex-end;
}
.module-our-portfolio--option-1 .splide__arrows {
  position: absolute;
  top: -50px;
  right: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.module-our-portfolio--option-1 .splide__arrow {
  position: relative;
  transform: unset;
  top: unset;
  left: unset;
  right: unset;
}
.module-our-portfolio--option-1_tile {
  width: 100%;
  height: 393px;
  background-size: cover;
  background-position: bottom;
  position: relative;
  overflow: hidden;
  transition: height 2s;
  transition: background-size 2s;
}
.module-our-portfolio--option-1_tile:hover, .module-our-portfolio--option-1_tile:focus-within {
  height: 410px;
}
@media screen and (min-width: 640px) {
  .module-our-portfolio--option-1_tile:hover, .module-our-portfolio--option-1_tile:focus-within {
    background-repeat: no-repeat;
  }
}
.module-our-portfolio--option-1_tile:hover .module-our-portfolio--option-1_title-wrapper, .module-our-portfolio--option-1_tile:focus-within .module-our-portfolio--option-1_title-wrapper {
  top: 0%;
  background: rgba(0, 0, 0, 0.6);
}
.module-our-portfolio--option-1_tile:hover .module-our-portfolio--option-1_description, .module-our-portfolio--option-1_tile:focus-within .module-our-portfolio--option-1_description {
  opacity: 1;
}
.module-our-portfolio--option-1_title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 62px 24px 32px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), #141c1f 90%);
  position: absolute;
  top: 45%;
  color: white;
  transition: top 0.2s ease-in;
  height: 100%;
  width: 100%;
}
@media screen and (min-width: 640px) {
  .module-our-portfolio--option-1_title-wrapper {
    display: block;
    top: 60%;
  }
}
@media screen and (min-width: 820px) {
  .module-our-portfolio--option-1_title-wrapper {
    padding: 24px 32px;
  }
}
.module-our-portfolio--option-1_title {
  color: #fff;
  margin: 0;
  padding-bottom: 24px;
  position: relative;
  width: 100%;
  font-size: 2.6rem;
}
.module-our-portfolio--option-1_title::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #D1AA63;
}
.module-our-portfolio--option-1_description {
  display: block;
  color: white;
  font-size: 1.3rem;
  line-height: 1.5;
  margin: 24px 0;
  opacity: 0;
}
.module-our-portfolio--option-1_link {
  color: #fff;
  text-transform: uppercase;
  font-size: 1.3rem;
  font-weight: 500;
}
.module-our-portfolio--option-1_link:hover {
  color: #fff;
}
.module-our-portfolio--option-1_link:hover .text {
  text-decoration: underline;
}
.module-our-portfolio--option-1_link:hover .q4-icon_chevron-right {
  margin-left: 8px;
  text-decoration: none !important;
}
.module-our-portfolio--option-2 {
  background-color: #DCE5EF;
}
.module-our-portfolio--option-2 h2 {
  text-align: center;
  margin-bottom: 45px;
}
.module-our-portfolio--option-2_items {
  position: relative;
  margin-left: -12px;
  margin-right: -12px;
}
.module-our-portfolio--option-2_items::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  width: calc(100% - 24px);
  height: 1px;
  background-color: #e6eefb;
}
@media only screen and (max-width: 1024px) {
  .module-our-portfolio--option-2_items::after {
    display: none;
  }
}
.module-our-portfolio--option-2_items .grid_col {
  padding: 0 12px;
  margin-right: 0;
}
.module-our-portfolio--option-2_item {
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.module-our-portfolio--option-2_item:hover {
  border-color: #0f5ca3;
  transition: 0.3s ease-in;
}
.module-our-portfolio--option-2_item:hover img {
  height: 325px;
}
@media only screen and (max-width: 1024px) {
  .module-our-portfolio--option-2_item {
    margin: 0 auto 40px;
  }
}
.module-our-portfolio--option-2_title {
  font-size: 2.8rem;
  margin-bottom: 40px;
}
.module-our-portfolio--option-2_image {
  position: relative;
  height: 300px;
}
.module-our-portfolio--option-2_image img {
  position: absolute;
  bottom: 0;
  right: 0;
  transition: all 0.3s;
  height: 300px;
  width: 100%;
  object-fit: cover;
}
.module-our-portfolio--option-3 {
  position: relative;
  display: grid;
  justify-content: center;
  isolation: isolate;
  overflow: hidden;
  margin: 70px 0;
  padding: 0 !important;
}
.module-our-portfolio--option-3 .module_container--outer {
  max-width: unset;
  padding-left: unset;
  padding-right: unset;
  margin-left: unset;
  margin-right: unset;
}
.module-our-portfolio--option-3::after {
  content: "";
  height: 100%;
  width: 50vw;
  background-color: #DCE5EF;
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
}
@media only screen and (max-width: 1200px) {
  .module-our-portfolio--option-3::after {
    width: 100vw;
  }
}
.module-our-portfolio--option-3_wrapper {
  position: relative;
  display: grid;
  place-items: center;
  background-color: #DCE5EF;
  padding-bottom: 432px;
}
@media only screen and (max-width: 1200px) {
  .module-our-portfolio--option-3_wrapper {
    padding-bottom: 112px;
  }
}
.module-our-portfolio--option-3_wrapper .row {
  display: grid;
  grid-template-columns: 344px 1fr;
  justify-content: center;
  overflow: hidden;
  padding-top: 4.2rem;
  padding-bottom: 0;
  max-width: 1220px;
  padding-left: 20px;
  padding-right: 20px;
}
@media only screen and (max-width: 1200px) {
  .module-our-portfolio--option-3_wrapper .row {
    grid-template-columns: 1fr;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.module-our-portfolio--option-3_wrapper .row .column {
  display: grid;
  padding: 42px 39px;
}
.module-our-portfolio--option-3_wrapper .row .column p {
  max-width: 636px;
}
.module-our-portfolio--option-3_wrapper .row .column.title {
  padding: 42px 65px;
  border-right: 1px solid #876f42;
}
.module-our-portfolio--option-3_wrapper .row .column .primary-cta--filled {
  margin: unset;
  margin-top: 24px;
}
@media only screen and (max-width: 1200px) {
  .module-our-portfolio--option-3_wrapper .row .column {
    grid-template-rows: repeat(3, max-content);
    text-align: center;
    padding: 0;
  }
  .module-our-portfolio--option-3_wrapper .row .column.title {
    padding: unset;
    padding-top: 42px;
    border-right: none;
  }
  .module-our-portfolio--option-3_wrapper .row .column .primary-cta--filled {
    justify-self: center;
  }
}
.module-our-portfolio--option-3_slides {
  display: grid;
  position: absolute;
  bottom: 78px;
}
@media only screen and (max-width: 1200px) {
  .module-our-portfolio--option-3_slides {
    position: relative;
    bottom: unset;
    margin-top: 40px;
  }
}
@media only screen and (max-width: 1200px) {
  .module-our-portfolio--option-3_splide {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.module-our-portfolio--option-3_item {
  display: inline-block;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.module-our-portfolio--option-3_item img {
  width: 100%;
  height: 292px;
  object-fit: cover;
  transition: transform 0.2s linear;
}
.module-our-portfolio--option-3_item .label {
  display: inline-flex;
  gap: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 63px;
  width: 100%;
  align-items: center;
  padding: 0 32px;
  background-color: rgba(209, 170, 99, 0.9);
  color: #fff;
  font-size: 1.8rem;
  line-height: 2.8rem;
  font-weight: 500;
  transition: background-color 0.5s linear;
}
.module-our-portfolio--option-3_item .label::after {
  content: "";
  background: url("../design/svg/angle-white.svg") no-repeat center center;
  background-size: cover;
  height: 14px;
  width: 14px;
  display: inline-flex;
  transition: transform 0.6s ease;
}
.module-our-portfolio--option-3_item:hover img {
  transform: scale(104%);
}
.module-our-portfolio--option-3_item:hover .label {
  background-color: rgba(188, 203, 220, 0.9);
}
.module-our-portfolio--option-3_item:hover .label::after {
  transform: translateX(10px);
}
.module-our-portfolio--option-3 .splide__track {
  width: 150%;
  margin-left: -40px;
}
@media only screen and (max-width: 1200px) {
  .module-our-portfolio--option-3 .splide__track {
    width: unset;
    margin-left: unset;
  }
}
.module-our-portfolio--option-3 .splide__arrow--prev {
  left: calc(50% - 450px);
}
.module-our-portfolio--option-3 .splide__arrow--next {
  left: calc(50% - 385px);
}
.module-our-portfolio--option-3 .splide__arrow {
  bottom: 2em;
  transform: translateX(-50%);
  top: -150px;
}
@media only screen and (max-width: 1200px) {
  .module-our-portfolio--option-3 .splide__arrows {
    width: 100%;
    display: inline-flex;
    gap: 24px;
    justify-content: center;
    position: absolute;
    bottom: -87px;
  }
  .module-our-portfolio--option-3 .splide__arrow {
    top: unset;
    left: unset;
    right: unset;
    transform: unset;
    position: relative;
  }
  .module-our-portfolio--option-3 .splide__arrow--prev {
    left: unset;
  }
  .module-our-portfolio--option-3 .splide__arrow--next {
    left: unset;
  }
}
.module-our-portfolio_map.module--full-width .module_container--outer {
  padding-right: 0;
  padding-left: 0;
}
.module-our-portfolio_map .module-our-portfolio_map-container {
  display: flex;
  justify-content: space-between;
}
.module-our-portfolio_map .module-our-portfolio_map-container > div {
  width: 50%;
}
@media only screen and (max-width: 1200px) {
  .module-our-portfolio_map .module-our-portfolio_map-container {
    flex-direction: column;
  }
  .module-our-portfolio_map .module-our-portfolio_map-container > div {
    width: 100%;
  }
}
.module-our-portfolio_map .module-our-portfolio_overview-text {
  max-width: 610px;
  margin-left: auto;
  padding: 7rem 7.8rem 7rem 2.3rem;
}
.module-our-portfolio_map .module-our-portfolio_overview-text .button {
  margin-left: 0;
}
@media only screen and (max-width: 1200px) {
  .module-our-portfolio_map .module-our-portfolio_overview-text {
    max-width: unset;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
  }
  .module-our-portfolio_map .module-our-portfolio_overview-text .button {
    margin-left: 17px;
  }
}

.module_portfolio-overview-intro h2,
.module_portfolio-overview-intro h3, .module_portfolio-overview-content h2,
.module_portfolio-overview-content h3 {
  color: #585555;
}
.module_portfolio-overview .pane--content {
  padding-bottom: 85px;
}
@media only screen and (max-width: 768px) {
  .module_portfolio-overview .pane--content {
    padding-bottom: 55px;
  }
}

.pane--content .module.module_portfolio-overview-intro {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 768px) {
  .pane--content .module.module_portfolio-overview-intro {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.pane--content .module.module_portfolio-overview-content {
  padding-top: 85px;
  padding-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .pane--content .module.module_portfolio-overview-content {
    padding-top: 55px;
  }
}

@media screen and (min-width: 769px) {
  .module_portfolio-overview-content .grid_col:first-child {
    padding-right: 10px;
  }
  .module_portfolio-overview-content .grid_col:last-child {
    padding-left: 30px;
  }
  .module_portfolio-overview-content .grid_col > :first-child {
    margin-top: 0;
  }
}
.module_portfolio-overview-content .grid_col > :last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .module_portfolio-overview-content--mobile-img-first .grid_col:last-child {
    order: -1;
  }
}
.module_portfolio-overview-content img {
  display: block;
  width: 100%;
}

/* ---------- Pager ---------- */
.pager {
  margin: 15px 0;
}
.pager_list-item {
  display: inline-block;
  vertical-align: top;
  margin: 5px 0;
}
.pager_list-item:not(:last-child) button {
  margin-right: 5px;
}
.pager_dots {
  margin-right: 5px;
  appearance: none;
  border: 1px solid #00213F;
  color: #00213F;
  background-color: #DCE5EF;
  border-radius: 3px;
  width: 35px;
  height: 35px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 35px;
  text-align: center;
  cursor: default;
}
.pager_button {
  appearance: none;
  border: 1px solid #738FB0;
  color: #00213F;
  font-family: var(--fontFamilyEuclid);
  font-size: 1.2rem;
  background-color: transparent;
  width: 35px;
  height: 35px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  font-weight: 500;
  cursor: pointer;
  border-radius: 50%;
}
.pager_button:not(.js--disabled):hover {
  border: 1px solid #00213F;
  background-color: #00213F;
  color: #fff;
}
.pager_button.js--active {
  color: #fff;
  background-color: #00213F;
  border: 1px solid #00213F;
}
.pager_button.js--active:focus {
  outline: 2px dotted black;
}
.pager_button.js--disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}
.pager_button [class^=q4-icon_],
.pager_button [class*=" q4-icon_"] {
  color: inherit;
  font-size: 1rem;
  pointer-events: none;
}
.pager_button--next, .pager_button--prev {
  background-color: #D1AA63;
  border: 1px solid #D1AA63;
}
.pager_button--next:hover, .pager_button--prev:hover {
  color: #fff;
  background-color: #00213F;
  border: 1px solid #00213F;
}

.pagination-container {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.pagination-info {
  font-size: 14px;
  color: #666;
}

.pagination-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pagination-btn,
.page-btn {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid #738FB0;
  background: transparent;
  color: #00213F;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
    font-family: var(--fontFamilyEuclid);
}

.pagination-btn:hover:not(:disabled),
.page-btn:hover {
  background: #738FB0;
}

.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.page-btn.active {
  background: #00213F;
  color: white;
  border-color: #00213F;
}

.page-numbers {
  display: flex;
  gap: 5px;
  align-items: center;
}

.pagination-ellipsis {
  padding: 8px 4px;
  color: #666;
}

@media (max-width: 768px) {
  .pagination-container {
    flex-direction: column;
    text-align: center;
  }
  .pagination-controls {
    flex-wrap: wrap;
    justify-content: center;
  }
}
/* ------ Person List Module ------ */
.module-person .module-person_description,
.module-person .module-person_res-photo-container,
.module-person .module_comma {
  display: none;
}
.module-person .module-person_name-container {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 100%;
  opacity: 0;
  visibility: hidden;
  text-align: center;
  cursor: pointer;
}
.module-person .module-person_name-container h3 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  margin: 0;
  transform: translate(-50%, -50%);
  color: #fff;
}
.module-person .module-person_name-container a {
  color: #fff;
}
.module-person .module-person_name {
  display: block;
  font-size: 1.8rem;
  text-transform: uppercase;
}
.module-person-list {
  display: grid;
  grid-template-columns: repeat(3, 296px);
  justify-content: center;
  column-gap: 20px;
  row-gap: 40px;
  width: 100%;
}
@media only screen and (max-width: 1200px) {
  .module-person-list {
    grid-template-columns: repeat(2, 296px);
  }
}
@media only screen and (max-width: 768px) {
  .module-person-list {
    display: grid;
    grid-template-columns: 296px;
    justify-content: center;
    gap: 40px;
  }
}
.module-person-list_person {
  padding: 0;
  margin-bottom: 0;
  margin-right: 0;
  cursor: pointer;
  background-color: transparent;
  border: none;
  font: inherit;
  position: relative;
}
.module-person-list_person::before {
  content: "+";
  z-index: 100;
  border-radius: 100%;
  font-size: 3rem;
  font-weight: 400;
  color: #00213F;
  background: #D1AA63;
  display: gridx;
  place-items: center;
  position: absolute;
  width: 3.2rem;
  height: 3.2rem;
  line-height: 28px;
  bottom: 0;
  right: 0;
  transition: all 0.3s ease-in-out;
}
.module-person-list_person.fancybox-content::before {
  display: none;
}
.module-person-carousel .module-person-list_person:hover::before, .module-person-carousel .module-person-list_person:focus::before {
  background: #00213F;
  color: #D1AA63;
}
.module-person-carousel .module-person-list_person:hover .module-person-list_person-photo img, .module-person-carousel .module-person-list_person:focus .module-person-list_person-photo img {
  border-radius: 16px;
}
.module-person-carousel .module-person-list_person:hover .module-person-list_photo-container::before, .module-person-carousel .module-person-list_person:focus .module-person-list_photo-container::before {
  color: white;
  background-color: #D1AA63;
}

.module-person-list_person h3,
.module-person-list_person .h3 {
  color: #000;
  font-size: 2rem;
  line-height: 32px;
  margin-top: 18px;
  margin-bottom: 8px;
}
.module-person-list_person_title {
  color: #333;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.4rem;
  margin: 0;
}
.module-person-list .module-person-list_photo-container {
  text-align: center;
  position: relative;
  max-width: 296px;
}
.module-person-list .module-person-list_photo-container img {
  display: block;
  margin: 0 auto;
  object-fit: cover;
  aspect-ratio: 1/1;
  width: 100%;
  border-radius: 16px;
}
.module-person-list--modal {
  padding: 0;
}
.module-person-list.js--selected img {
  border-color: #00213F;
}
.module-person-list_person.fancybox-content {
  max-width: 102rem;
  padding: 6rem 6rem 6rem 4rem;
}
@media only screen and (max-width: 1024px) {
  .module-person-list_person.fancybox-content {
    padding: 5rem 5rem 5rem 3rem;
  }
}
@media only screen and (max-width: 768px) {
  .module-person-list_person.fancybox-content {
    padding: 4rem 5rem 4rem 3rem;
  }
}
@media only screen and (max-width: 768px) {
  .module-person-list_person.fancybox-content {
    padding-right: 2rem;
    padding-left: 0;
  }
}
.module-person-list_person > .fancybox-button.fancybox-close-small {
  border-radius: 50%;
  border: 2px solid #D1AA63;
  background: #D1AA63;
  opacity: 1;
  width: 3rem;
  height: 3rem;
  padding: 0;
  right: 3.3rem;
  top: 2.1rem;
  transition: background 0.2s ease-out;
}
@media only screen and (max-width: 1024px) {
  .module-person-list_person > .fancybox-button.fancybox-close-small {
    right: 2rem;
    top: 1.6rem;
  }
}
@media only screen and (max-width: 480px) {
  .module-person-list_person > .fancybox-button.fancybox-close-small {
    right: 0.7rem;
    top: 0.9rem;
  }
}
.module-person-list_person > .fancybox-button.fancybox-close-small svg {
  color: #00213F;
  font-size: 1.36rem;
  transition: color 0.2s ease-out;
}
.module-person-list_person > .fancybox-button.fancybox-close-small:hover, .module-person-list_person > .fancybox-button.fancybox-close-small:focus {
  border-color: #00213F;
  background: #00213F;
}
.module-person-list_person > .fancybox-button.fancybox-close-small:hover svg, .module-person-list_person > .fancybox-button.fancybox-close-small:focus svg {
  color: #D1AA63;
}
.module-person .module-person_suffix .module_comma {
  display: none;
}
.module-person .module-person_suffix:empty + .module-person_title .module_comma {
  display: none;
}
.module-person .module_item {
  position: relative;
  padding: 0 0 20px 20px;
  border: none;
}
.module-person .module_item:hover .module-person_name-container {
  opacity: 1;
  visibility: visible;
}
.module-person .module_item .module-person_name {
  display: block;
  font-size: 2.8rem;
}
.module-person .module_item .module-person_suffix,
.module-person .module_item .module-person_title {
  font-size: 1.6rem;
}
.module-person .module_item ~ .module_item {
  border-top: 0 none;
}
.module-person .module-person_photo-container {
  text-align: center;
  border-radius: 100%;
  overflow: hidden;
}
.module-person .module-person_photo-container img {
  display: inline-block;
  vertical-align: top;
  margin: 0 auto;
  width: 100%;
}
.module-person .module-person_res-photo-container {
  display: none;
}
.module-person_suffix, .module-person_title {
  font-size: 1.3rem;
}
.fancybox-container .module-person_module_item {
  max-width: 1220px;
}
.fancybox-container .module-person_photo-container, .fancybox-container .module-person_name-container {
  display: inline-block;
  vertical-align: middle;
}
.fancybox-container .module-person_name-container {
  position: static;
  background: transparent;
  opacity: 1;
  visibility: visible;
  cursor: initial;
}
.fancybox-container .module-person_name-container h3 {
  position: static;
  transform: none;
}
.fancybox-container .module-person_name-container a {
  color: #203E63;
}
@media only screen and (max-width: 768px) and (min-width: 641px) {
  .fancybox-container .module-person_name-container {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }
  .fancybox-container .module-person_name-container h3,
.fancybox-container .module-person_name-container .h3 {
    margin-top: 0;
  }
}
.fancybox-container .module-person_photo-container {
  max-width: 24.2rem;
  margin-right: 2.8rem;
}
.fancybox-container .module-person_photo-container img {
  display: block;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 16px;
  margin: 0;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .fancybox-container .module-person_photo-container {
    margin-right: 15px;
    margin-bottom: 35px;
  }
}
@media only screen and (max-width: 768px) and (min-width: 641px) {
  .fancybox-container .module-person_photo-container {
    max-width: none;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 2rem 2fr;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
  }
}
@media only screen and (max-width: 480px) {
  .fancybox-container .module-person_photo-container {
    margin-right: 0;
    max-width: none;
    display: block;
  }
}
.fancybox-container .module-person_title {
  font-size: 1.6rem;
  font-weight: 400;
  color: #00213F;
}
.fancybox-container .module-person_description p {
  margin-top: 0;
}

.module-person-accordion .module-person_name-container {
  color: #00213F;
  padding: 0;
  cursor: pointer;
}
.module-person-accordion .module-person_name-container h3,
.module-person-accordion .module-person_name-container .h3 {
  margin: 0;
}
.module-person-accordion .module-person_name-container h3 button,
.module-person-accordion .module-person_name-container .h3 button {
  background: transparent;
  border: none;
  font-weight: 600;
  font-family: var(--fontFamilyEuclid);
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0px;
  vertical-align: middle;
  color: #00213F;
  margin: 0;
  padding: 18px 0;
  position: relative;
  text-align: left;
  width: 100%;
  border-bottom: 1px solid #738FB0;
}
.module-person-accordion .module-person_name-container h3 button::before,
.module-person-accordion .module-person_name-container .h3 button::before {
  content: "";
  background-image: url("../design/svg/accordion-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 32px;
  height: 32px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease-in-out;
}
.module-person-accordion .module_item {
  padding: 0;
  border-top: 1px solid #c4c4c4;
}
.module-person-accordion .module_item:first-child {
  border-top: none;
}
.module-person-accordion .module_item:last-child {
  border-bottom: 1px solid #c4c4c4;
}
.module-person-accordion .module_item.js--active h3, .module-person-accordion .module_item.js--active .h3 {
  color: #D1AA63;
}
.module-person-accordion .module_item.js--active h3 button::before, .module-person-accordion .module_item.js--active .h3 button::before {
  transform: translateY(-50%) rotate(180deg);
}
.module-person-accordion .module-person_name {
  margin-right: 16px;
}
@media screen and (max-width: 640px) {
  .module-person-accordion .module-person_name {
    display: block;
  }
}
.module-person-accordion .module-person_title {
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 400;
}
.module-person-accordion .module_comma {
  display: none;
}
.module-person-accordion .module-person_description-container {
  padding: 16px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .module-person-accordion .module-person_description-container {
    flex-direction: column;
  }
}
.module-person-accordion .module-person_photo-container {
  float: left;
  margin: 0 25px 0 0;
  min-width: 240px;
  min-height: 240px;
  border-radius: 16px;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .module-person-accordion .module-person_photo-container {
    float: none;
    margin: 0 auto 15px auto;
    text-align: center;
  }
}
.module-person-accordion .module-person_photo-container img {
  display: block;
  margin: auto;
  width: 296px;
  height: 296px;
  object-fit: cover;
}
.module-person-accordion .module-person_description > *:first-child {
  margin-top: 0;
}
.module-person-accordion .module-person_res-photo-container > span {
  margin-right: 10px;
}
@media only screen and (max-width: 768px) {
  .module-person-accordion .module-person_res-photo-container > span {
    display: block;
    margin: 0 0 10px 0;
  }
}
.module-person-carousel_list.slick-slider {
  padding: 0;
}
.module-person-carousel_list .slick-list {
  margin: 0 40px;
  width: auto;
}
.module-person-carousel_list .slick-slide > div {
  padding: 2px;
}
.module-person-carousel_list .slick-arrow {
  padding: 10px;
  color: #00213F;
  border: 1px solid #00213F;
  border-radius: 100%;
  width: 40px;
  height: 40px;
}
.module-person-carousel_list h3 {
  font-size: 1.8rem;
  text-align: center;
}
.module-person-carousel_list .module-person_name {
  display: block;
  margin-bottom: 5px;
}
.module-person-carousel_details.slick-slider {
  padding: 0;
}
.module-person-carousel_person {
  padding: 0 20px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  font: inherit;
}
@media only screen and (max-width: 480px) {
  .module-person-carousel_person {
    padding: 0;
  }
}
.module-person-carousel_person img {
  margin: 5px;
  padding: 5px;
  border: 2px solid transparent;
  border-radius: 100%;
}
.module-person-carousel_person.js--selected img {
  border-color: #00213F;
}
.module-person-carousel .module-person_suffix .module_comma {
  display: none;
}
.module-person-carousel .module-person_suffix:empty + .module-person_title .module_comma {
  display: none;
}
.module-person-carousel .module_item .module-person_name {
  display: block;
  font-size: 2.8rem;
}
.module-person-carousel .module_item .module-person_suffix,
.module-person-carousel .module_item .module-person_title {
  font-size: 1.6rem;
}
.module-person-carousel .module_item ~ .module_item {
  border-top: 0 none;
}
.module-person-carousel .module-person_photo-container {
  text-align: center;
}
.module-person-carousel .module-person_photo-container img {
  display: inline-block;
  vertical-align: top;
  margin: 0 auto;
}
.module-person-carousel .module-person_res-photo-container {
  display: none;
}
.module-person-details .module_title {
  display: none;
}
.module-person-details .module_comma {
  display: none;
}
.module-person-details_photo-container, .module-person-details_name-container {
  display: inline-block;
  vertical-align: middle;
}
.module-person-details_photo-container {
  max-width: 30%;
  margin-right: 40px;
}
@media only screen and (max-width: 768px) {
  .module-person-details_photo-container {
    margin-right: 15px;
    margin-bottom: 35px;
  }
}
@media only screen and (max-width: 480px) {
  .module-person-details_photo-container {
    margin-right: 0;
    max-width: none;
  }
}
.module-person-details_name {
  display: block;
  margin-bottom: 10px;
  font-size: 3.6rem;
  color: #00213F;
}
.module-person-details_title {
  display: block;
  font-size: 2.4rem;
}
.module-person-details_description-container {
  margin-top: 40px;
}

.cv_download {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  font-style: Semibold;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0px;
  margin-top: 14px;
}
.cv_download::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("../design/svg/download.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.pane--content .module.module_person-quotes-carousel {
  padding-top: 60px;
  padding-bottom: 60px;
}
.pane--content .module.module_person-quotes-carousel-profile {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 768px) {
  .pane--content .module.module_person-quotes-carousel-profile {
    padding-top: 0;
    padding-bottom: 60px;
  }
}

.module.module_person-quotes-carousel .person-carousel .split {
  display: grid;
  grid-template-columns: 46.44fr 50.86fr;
  gap: 20px 69px;
}
@media only screen and (max-width: 1024px) {
  .module.module_person-quotes-carousel .person-carousel .split {
    gap: 20px 40px;
  }
}
@media only screen and (max-width: 768px) {
  .module.module_person-quotes-carousel .person-carousel .split {
    grid-template-columns: 1fr;
  }
}
.module.module_person-quotes-carousel .person-carousel .split .content {
  padding-bottom: 50px;
}
.module.module_person-quotes-carousel .person-carousel .split .content blockquote {
  position: relative;
  font-size: 2.8rem;
  line-height: 3.4rem;
  font-weight: 700;
  margin-top: 36px;
  margin-bottom: 1.6rem;
}
.module.module_person-quotes-carousel .person-carousel .split .content blockquote::before {
  content: "";
  background: url("../design/svg/quote-icon.svg") no-repeat center center;
  background-size: cover;
  width: 22px;
  height: 19px;
  display: block;
  position: absolute;
  top: -36px;
}
.module.module_person-quotes-carousel .person-carousel .split .content figcaption {
  text-align: left;
  font-size: 1.8rem;
  font-weight: 500;
}
.module.module_person-quotes-carousel .person-carousel .split .content figcaption .title {
  font-size: 1.2rem;
  line-height: 2.2rem;
  font-weight: 400;
}
.module.module_person-quotes-carousel .person-carousel .split .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.module.module_person-quotes-carousel .splide__arrows {
  position: absolute;
  bottom: 0;
  left: 46.44%;
  margin-left: 49px;
  display: flex;
  gap: 24px;
}
@media only screen and (max-width: 1024px) {
  .module.module_person-quotes-carousel .splide__arrows {
    margin-left: 34px;
  }
}
@media only screen and (max-width: 768px) {
  .module.module_person-quotes-carousel .splide__arrows {
    left: 0;
    margin-left: 0;
  }
}
.module.module_person-quotes-carousel .splide__arrow {
  position: relative;
  top: unset;
  right: unset;
  bottom: unset;
  left: unset;
  transform: unset;
  width: 40px;
  height: 40px;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}
.module.module_person-quotes-carousel .splide__arrow svg {
  fill: #D1AA63;
}

.module-pipeline .highcharts-container {
  height: 500px !important;
}
.module-pipeline .highcharts-root {
  position: relative;
  z-index: 10;
  font-family: var(--fontFamilyEuclid) !important;
  font-size: 10px !important;
  height: 500px;
}
.module-pipeline .highcharts-background {
  fill: transparent;
}
.module-pipeline .highcharts-title {
  font-size: 3.6rem !important;
  font-weight: 700;
  line-height: 4.6rem;
  margin-bottom: 30px;
  transform: translateY(10px);
  fill: #fff !important;
}
@media only screen and (max-width: 768px) {
  .module-pipeline .highcharts-title {
    font-size: 27px;
  }
}
.module-pipeline .highcharts-subtitle {
  fill: #fff !important;
}
.module-pipeline .highcharts-series {
  transform: translate(-119px, 153px) scale(1.1, 1) !important;
}
.module-pipeline .highcharts-point {
  border-top-left-radius: 0 !important;
}
.module-pipeline .highcharts-grid-line {
  stroke-dasharray: 1, 5;
  opacity: 0.6;
}
.module-pipeline .highcharts-xaxis-labels text {
  font-weight: 500;
  font-size: 1.8rem !important;
  line-height: 2.8rem;
  color: #fff;
  fill: #fff !important;
}
.module-pipeline .highcharts-data-label text {
  font-size: 1.6rem !important;
  line-height: 2.4rem;
  font-weight: 400 !important;
}
.module-pipeline .highcharts-text-outline {
  stroke-width: 0;
}
.module-pipeline_footnotes {
  text-align: center;
  margin-top: 60px;
}

.overview-pipeline_background {
  position: relative;
  background-image: url("../design/corporate_landing/overview-pipeline.png");
  background-size: cover;
}
.overview-pipeline_background::before {
  content: " s";
  background-color: #000;
  opacity: 0.7;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
}
.overview-pipeline_background .module-pipeline_footnotes {
  color: #fff;
  z-index: 0;
  position: relative;
}

/* ------ Presentation Module ------ */
.module-presentation .module_body {
  display: none;
}
.module-presentation .module_item {
  padding: 0;
  border: 0 none;
}
.module-presentation .module_item ~ .module_item {
  border-top: 0 none;
}
.module-presentation .module_item:not(:last-child) {
  margin-bottom: 10px;
}
.module-presentation .module_item-wrap {
  padding: 30px 30px 10px 30px;
}
.module-presentation-latest .module_links {
  display: flex;
  flex-wrap: wrap;
}
.module-presentation-latest .module_link {
  margin: 0 15px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.module-presentation-latest .module_link-text {
  font-weight: 600;
  vertical-align: middle;
  padding: 5px 0;
}
.module-presentation-latest .module_link .q4icons_icon {
  display: grid;
  place-items: center;
}
.module-presentation-latest .module_link:hover {
  text-decoration: none;
}
.module-presentation-latest .module_link:hover .module_link-text {
  text-decoration: underline;
}
.module-presentation-latest .module_headline-link {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}
.module-presentation-latest .module-slideshow_viewer {
  display: block;
}
.module-presentation-latest .grid_col {
  position: relative;
}
.module-presentation-latest .grid_col .button {
  margin: 0;
  position: absolute;
  bottom: 0;
}
@media only screen and (max-width: 1024px) {
  .module-presentation-latest .grid_col .button {
    position: unset;
    margin-bottom: 20px;
  }
}

/* ------ Q4 Preview Toolbar ------ */
body.PreviewBody {
  margin: 0;
  background-position: 0;
}
body.PreviewBody .PreviewToolBar {
  position: fixed;
  top: 100%;
  bottom: auto;
  width: 100%;
  margin: 0;
  padding: 35px 20px;
  border: 0;
  background: #141c1f;
  font-size: 0;
  text-align: left;
  color: #fff;
  z-index: 100;
}
body.PreviewBody .PreviewToolBar.js--open {
  top: auto;
  bottom: 0;
}
body.PreviewBody .PreviewToolBar .PreviewTrigger {
  position: absolute;
  top: 0;
  left: 10px;
  padding: 20px;
  background: #141c1f;
  transform: translate(0, -100%);
  font-size: 2.4rem;
  cursor: pointer;
}
body.PreviewBody .PreviewToolBar .PreviewTrigger.js--active i::before {
  content: "\ed6d";
}
body.PreviewBody .PreviewToolBar .PreviewFloatLeft,
body.PreviewBody .PreviewToolBar .PreviewDateControls {
  display: inline-block;
  vertical-align: middle;
}
body.PreviewBody .PreviewToolBar .PreviewFloatLeft::before,
body.PreviewBody .PreviewToolBar .PreviewDateControls::before {
  font-size: 1.6rem;
  margin-right: 15px;
  line-height: 50px;
}
body.PreviewBody .PreviewToolBar .PreviewFloatLeft {
  float: none;
}
body.PreviewBody .PreviewToolBar .PreviewFloatLeft::before {
  content: "Select Preview Type:";
}
body.PreviewBody .PreviewToolBar .PreviewDateControls {
  float: right;
}
body.PreviewBody .PreviewToolBar .PreviewDateControls::before {
  content: "Select Preview Date:";
}
body.PreviewBody .PreviewToolBar img {
  display: none;
}
body.PreviewBody .PreviewToolBar input[type=radio],
body.PreviewBody .PreviewToolBar label,
body.PreviewBody .PreviewToolBar input[type=text],
body.PreviewBody .PreviewToolBar select,
body.PreviewBody .PreviewToolBar input[type=submit] {
  display: inline-block;
  margin-right: 5px;
  font-family: var(--fontFamilyEuclid) !important;
  font-weight: 300;
  font-size: 1.4rem;
  text-transform: uppercase;
  vertical-align: baseline;
}
body.PreviewBody .PreviewToolBar input[type=text],
body.PreviewBody .PreviewToolBar select,
body.PreviewBody .PreviewToolBar input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 15px 20px;
  border: 0;
  border-radius: 0;
}
body.PreviewBody .PreviewToolBar label + input[type=radio] {
  margin-left: 15px;
}
body.PreviewBody .PreviewToolBar input[type=text] {
  min-width: 110px;
}
body.PreviewBody .PreviewToolBar select {
  padding: 15px 35px 15px 20px;
  background: #fff url("../design/svg/q4-icon_chevron-down-black.svg") no-repeat right 10px center;
  background-size: 14px 14px;
}
body.PreviewBody .PreviewToolBar select::-ms-expand {
  display: none;
}
body.PreviewBody .PreviewToolBar input[type=submit] {
  background: #00213F;
  color: #fff !important;
}
@media only screen and (max-width: 1024px) {
  body.PreviewBody .PreviewToolBar .PreviewFloatLeft,
body.PreviewBody .PreviewToolBar .PreviewDateControls {
    display: block;
    float: none;
    margin-bottom: 15px;
  }
  body.PreviewBody .PreviewToolBar .PreviewFloatLeft::before,
body.PreviewBody .PreviewToolBar .PreviewDateControls::before {
    display: block;
  }
}
@media only screen and (max-width: 768px) {
  body.PreviewBody .PreviewToolBar input[type=radio],
body.PreviewBody .PreviewToolBar label,
body.PreviewBody .PreviewToolBar input[type=text],
body.PreviewBody .PreviewToolBar select,
body.PreviewBody .PreviewToolBar input[type=submit] {
    margin-bottom: 5px;
  }
}

.module-publications .publications-articles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.module-publications .publications-pagination-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}
.module-publications .publications-pagination-info {
  font-size: 14px;
  color: #666;
}
.module-publications .publications-pagination-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}
.module-publications .pagination-btn,
.module-publications .page-btn {
  border: 1px solid #738FB0;
  background: #fff;
  cursor: pointer;
  color: #00213F;
  border-radius: 50%;
  font-size: 14px;
}
.module-publications .pagination-btn:hover:not(:disabled),
.module-publications .page-btn:hover {
  background: #f5f5f5;
}
.module-publications .pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.module-publications .page-btn.active {
  background: #00213F;
  color: white;
  border-color: #00213F;
}
.module-publications .publications-prev-btn,
.module-publications .publications-next-btn {
  display: grid;
  place-items: center;
  height: 30px;
  width: 30px;
  border-color: #D1AA63;
  background-color: #D1AA63;
}
.module-publications .publications-page-numbers {
  display: flex;
  gap: 5px;
  align-items: center;
}
.module-publications .pagination-ellipsis {
  padding: 8px 4px;
  color: #666;
}
.module-publications .article-item {
  border: 1px solid #738FB0;
  border-radius: 8px;
  padding: 30px;
  border-radius: 6px;
}
.module-publications .article-date {
  color: #203E63;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  margin-bottom: 8px;
}
.module-publications .article-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0px;
  color: #00213F;
  margin-bottom: 25px;
}
.module-publications .article-title a:hover {
  text-decoration: underline;
}
.module-publications .article-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.module-publications .read-more-link {
  color: #00213F;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.module-publications .read-more-link:after {
  content: "";
  background-image: url("../design/svg/link-icon-7.svg");
  display: block;
  width: 13px;
  height: 13px;
}
.module-publications .read-more-link:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .module-publications .publications-pagination-container {
    flex-direction: column;
    text-align: center;
  }
  .module-publications .publications-pagination-controls {
    flex-wrap: wrap;
    justify-content: center;
  }
  .module-publications .publications-articles {
    grid-template-columns: 1fr;
  }
  .module-publications .article-item {
    padding: 12px;
  }
  .module-publications .article-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* -------- Search Results: Accessible Datepicker -------- */
.ui-datepicker.ui-widget {
  padding: 5px;
}

/* reduce input width... */
.module-search-results .form_field--date .form_input {
  width: calc(100% - 40px);
  vertical-align: top;
  display: inline-block;
  height: 45px;
}

/* to make room for button */
.module-search-results .ui-datepicker-trigger {
  width: 40px;
  vertical-align: top;
  display: inline-block;
  height: 45px;
  background: #fff;
  border: 1px solid #979797;
  border-left: none;
}
_::-webkit-full-page-media,
_:future, :root .module-search-results .ui-datepicker-trigger {
  /* For Safari only */
  margin: 2px 0;
}

.module-search-results .ui-datepicker-trigger:hover {
  cursor: pointer;
}

/* button icon ('module-search-results .form_field--date:after' content copied to this style and then removed since new datepicker trigger exists) */
.q4-icon_calendar-results::before {
  content: "\e921";
  font-size: 16px;
  color: #00213F;
}

.ui-datepicker .ui-datepicker-buttonpane button {
  padding: 5px 10px;
  text-transform: uppercase;
  border-radius: 3px;
  border: 0 none;
  margin-left: 15px;
  font-size: 14px;
  font-weight: normal;
  height: 30px;
  vertical-align: top;
  display: inline-block;
  background-color: #00213F;
  outline-color: #00213F;
  color: #fff;
  min-width: auto;
  font-family: var(--fontFamilyEuclid);
}

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-close {
  background-color: #374448;
  outline-color: #374448;
  color: #fff;
}

.ui-datepicker .ui-widget-header {
  background: #fff;
}

.ui-datepicker .ui-state-active,
.ui-datepicker.ui-widget-content .ui-state-active,
.ui-datepicker .ui-widget-header .ui-state-active,
.ui-datepicker a.ui-button:active,
.ui-datepicker .ui-button:active,
.ui-datepicker .ui-button.ui-state-active:hover,
.ui-datepicker .ui-state-active a,
.ui-datepicker .ui-state-active a:link,
.ui-datepicker .ui-state-active a:visited {
  color: #fff;
  background-color: #00213F;
}

/* -------- Search Modules -------- */
.module-search_toggle {
  margin: 0;
  font-size: 1.6rem;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #D1AA63;
  cursor: pointer;
}
.module-search_toggle.js--active {
  color: #00213F;
}
.module-search_input[type=text] {
  opacity: 0;
  visibility: hidden;
  border-color: #00213F;
  background-color: #00213F;
  color: #fff;
  width: 100%;
  max-width: 380px;
  padding: 15px 20px;
  margin: 0;
  font-size: 1.8rem;
  text-transform: uppercase;
  position: absolute;
  top: calc(100% + 25px);
  right: 25px;
  transition: 0.3s ease-in-out;
}
.js--header-small .module-search_input[type=text] {
  top: 100%;
}

.module-search_input[type=text].js--revealed {
  opacity: 1;
  visibility: visible;
}
.module-search_button {
  display: none;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 15px;
  height: 15px;
  padding: 0;
  border: 0;
  background: transparent url("../design/svg/q4-icon_buttons.svg");
  background-position: 0 -100%;
  background-size: 300%;
  font-size: 0;
  cursor: pointer;
}
.module-search-results {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 25px;
  padding-right: 25px;
}
.module-search-results .form_fields-right input {
  width: 100%;
  border-color: z;
  color: #979797;
}
.module-search-results .form_field {
  margin-bottom: 25px;
}
.module-search-results .form_field--date {
  position: relative;
}
.module-search-results .form_field--search {
  margin-bottom: 35px;
}
.module-search-results .form_label {
  color: #545b62;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  display: block;
  margin-bottom: 7px;
}
.module-search-results .form_select {
  color: #979797;
  font-size: 14px;
  width: 100%;
  min-width: auto;
  border-color: #979797;
  display: block !important;
}
.module-search-results .form_select + .sbHolder {
  display: none;
}
.module-search-results .form_input {
  width: 100%;
  border: 1px solid #979797;
  color: #979797;
  padding: 13px 20px;
  margin: 0;
  display: block;
  font-family: var(--fontFamilyEuclid);
  font-size: 1.4rem;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.module-search-results_link {
  color: #00213F;
  margin-bottom: 20px;
  display: inline-block;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0px;
}
.module-search-results_item {
  box-shadow: inset 0 1px 0 0 rgba(204, 201, 196, 0.3), inset 0 -1px 0 0 rgba(204, 201, 196, 0.3);
  padding: 30px 0;
}
.module-search-results_url, .module-search-results_result a {
  word-wrap: break-word;
}
.module-search-results_url {
  display: none;
}
.module-search-results_result::after {
  content: "";
  display: table;
  clear: both;
}
.module-search-results_description {
  color: #545b62;
  font-size: 14px;
  text-shadow: 0 1px 0 #fff;
  line-height: 1.5;
  font-weight: 400;
}
.module-search-results_summary {
  color: #545b62;
  font-size: 20px;
  line-height: 21px;
  text-shadow: 1px 1px #fff;
  font-weight: 400;
  margin: 0 0 30px;
}
.module-search-results_summary span {
  color: #105ca3;
}
.module-search-results .pager_text {
  display: none;
}
.module-search-results .daterangepicker .calendar-table .prev span {
  top: 5px;
}
.module-search-results .daterangepicker .calendar-table .prev span::before {
  content: "\e90f";
  font-size: 16px;
}
.module-search-results .daterangepicker .calendar-table .next span {
  top: 5px;
}
.module-search-results .daterangepicker .calendar-table .next span::before {
  content: "\e90d";
  font-size: 16px;
}
@media only screen and (max-width: 768px) {
  .module-search-results .form-fields-right .grid_col {
    padding-left: 0;
  }
  .module-search-results .form-fields--pages {
    margin-top: 25px;
    display: block;
    width: 100%;
  }
  .module-search-results .form-fields--search {
    width: 100%;
  }
}
@media only screen and (max-width: 500px) {
  .module-search-results .form_field.form_field--date {
    overflow: visible;
  }
}

/* -------- SEC Module CSS -------- */
.module-sec .module_header-text {
  padding: 15px 8px;
  color: #fff;
}
.module-sec .module_table {
  width: 100%;
}
.module-sec .module_table caption {
  caption-side: bottom;
  text-align: left;
  padding: 8px 8px;
  font-size: 1.2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.module-sec .module_table thead > tr > th {
  background-color: #BCCBDC;
  text-align: left;
}
.module-sec .module_table tr {
  border: none;
}
.module-sec .module_table tr:nth-child(odd) {
  background-color: #DCE5EF;
}
.module-sec .module_table td {
  padding: 15px 8px;
}
@media only screen and (max-width: 480px) {
  .module-sec .module_table th,
.module-sec .module_table td {
    font-size: 1.2rem;
  }
  .module-sec .module_table th {
    padding: 10px 8px;
  }
  .module-sec .module_table td {
    padding: 8px;
  }
}
.module-sec .module_download-list-item {
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  .module-sec .module_download-list-item {
    display: block;
    text-align: center;
    margin-bottom: 12px;
  }
  .module-sec .module_options select {
    display: block;
    margin: 10px 0;
  }
}
.module-sec .module_link-sec {
  margin: 0;
}
@media only screen and (max-width: 480px) {
  .module-sec .module_rss {
    margin-bottom: 10px;
  }
}

.module-skip_link {
  position: absolute;
  top: -100px;
  left: 50%;
  padding: 15px 20px;
  transform: translate(-50%, 0);
  transition: 0.5s ease-in-out;
  z-index: 9999;
  width: 100%;
  text-align: center;
}
.module-skip_link:focus, .module-skip_link:active {
  top: 0;
  color: #fff;
  background: #00213F;
  outline-color: #00213F;
}
.module-skip_link:hover {
  text-decoration: underline;
}

/* ------ Slider ------ */
.module-slider .module_container--outer {
  display: table;
  width: 100%;
  table-layout: fixed;
}
.module-slider .module_container--inner {
  display: table-cell;
  vertical-align: middle;
  height: 390px;
}
.module-slider .slick-slider {
  padding: 0 40px;
}
.module-slider .slick-slider .slick-slide {
  float: none;
  display: inline-block;
  vertical-align: middle;
  padding: 0 5px;
}
.module-slider .slick-arrow::before {
  font-size: 30px;
}
.module-slider .module_add-to-calendar-reveal {
  color: #fff;
}
.module-slider .module-slider_title h1 {
  margin: 0;
}
.module-slider .module_loader {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.module-slider_description {
  font-size: 2.4rem;
  margin-top: 10px;
}
.module-slider_description .module_date-time {
  font-size: inherit;
}
.module-slider_description p {
  margin: 10px 0;
}
.module-slider_description p:first-child {
  margin-top: 0;
  margin-bottom: 10px;
}
.module-slider_description .module_links {
  margin-top: 10px;
  margin-bottom: 0;
}

.module-split-boxes .split-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.module-split-boxes .split-boxes .box--image {
  display: grid;
  place-items: center;
}
.module-split-boxes .split-boxes .box--content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .module-split-boxes .split-boxes {
    grid-template-columns: 1fr;
  }
  .module-split-boxes .split-boxes .box--image {
    grid-row: 1;
  }
}
.module-split-boxes .split-boxes .button {
  margin-top: 20px;
}
.module-split-boxes.module-overview .split-boxes {
  grid-template-columns: 616px 1fr;
  gap: 79px;
}
@media only screen and (max-width: 1200px) {
  .module-split-boxes.module-overview .split-boxes {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media only screen and (max-width: 768px) {
  .module-split-boxes.module-overview .split-boxes {
    grid-template-columns: 1fr;
  }
}
.module-split-boxes.module-contacts .split-boxes {
  width: 100%;
  justify-content: center;
  grid-template-columns: 1fr 1fr;
  gap: 79px;
}
@media only screen and (max-width: 1200px) {
  .module-split-boxes.module-contacts .split-boxes {
    grid-template-columns: 1fr;
    place-items: center;
    gap: 32px;
  }
}
@media only screen and (max-width: 480px) {
  .module-split-boxes.module-contacts .split-boxes {
    grid-template-columns: 1fr;
  }
}
.module-split-boxes.module-ir-overview .split-boxes {
  grid-template-columns: 1fr 509px;
  gap: 75px;
}
@media only screen and (max-width: 1200px) {
  .module-split-boxes.module-ir-overview .split-boxes {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media only screen and (max-width: 768px) {
  .module-split-boxes.module-ir-overview .split-boxes {
    grid-template-columns: 1fr;
  }
}
.module-split-boxes.module-our-brokerage-platforms .split-boxes {
  grid-template-columns: 1fr 533px;
  gap: 150px;
}
@media only screen and (max-width: 1200px) {
  .module-split-boxes.module-our-brokerage-platforms .split-boxes {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media only screen and (max-width: 768px) {
  .module-split-boxes.module-our-brokerage-platforms .split-boxes {
    grid-template-columns: 1fr;
  }
}
.module-split-boxes.module-everybody-is-an-investor .split-boxes {
  grid-template-columns: 533px 1fr;
  gap: 138px;
}
@media only screen and (max-width: 1200px) {
  .module-split-boxes.module-everybody-is-an-investor .split-boxes {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media only screen and (max-width: 768px) {
  .module-split-boxes.module-everybody-is-an-investor .split-boxes {
    grid-template-columns: 1fr;
  }
}
.module-split-boxes.module-events-and-presentations .split-boxes {
  grid-template-columns: 1fr 1fr;
  gap: 140px;
}
@media only screen and (max-width: 1200px) {
  .module-split-boxes.module-events-and-presentations .split-boxes {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media only screen and (max-width: 768px) {
  .module-split-boxes.module-events-and-presentations .split-boxes {
    grid-template-columns: 1fr;
    gap: 45px;
  }
}
.module-split-boxes.module-split-boxes-narrow .module_container--outer {
  max-width: 870px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.module-split-boxes.module-split-boxes-narrow .split-boxes {
  gap: 40px;
}
.module-split-boxes.module-split-boxes-narrow .split-boxes .box--image {
  width: 403px;
}
@media only screen and (max-width: 1200px) {
  .module-split-boxes.module-split-boxes-narrow .split-boxes .box--image {
    width: 100%;
  }
}
.module-split-boxes.module-split-boxes-narrow .split-boxes .box--content {
  width: 387px;
}
@media only screen and (max-width: 1200px) {
  .module-split-boxes.module-split-boxes-narrow .split-boxes .box--content {
    width: 100%;
  }
}
@media only screen and (max-width: 1200px) {
  .module-split-boxes.module-split-boxes-narrow .split-boxes {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media only screen and (max-width: 768px) {
  .module-split-boxes.module-split-boxes-narrow .split-boxes {
    grid-template-columns: 1fr;
  }
}
.module-split-boxes.module-split-boxes-narrow.module-esg-ratings .split-boxes {
  grid-template-columns: 285px 1fr;
  gap: 75px;
}
.module-split-boxes.module-split-boxes-narrow.module-esg-ratings .split-boxes .box--content {
  width: 285px;
}
@media only screen and (max-width: 1200px) {
  .module-split-boxes.module-split-boxes-narrow.module-esg-ratings .split-boxes .box--content {
    width: 100%;
  }
}
@media only screen and (max-width: 1200px) {
  .module-split-boxes.module-split-boxes-narrow.module-esg-ratings .split-boxes {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media only screen and (max-width: 768px) {
  .module-split-boxes.module-split-boxes-narrow.module-esg-ratings .split-boxes {
    grid-template-columns: 1fr;
  }
}
.module-split-boxes.module-split-boxes-narrow.module-awards .split-boxes {
  gap: 53px;
}
.module-split-boxes.module-split-boxes-narrow.module-awards h2 {
  margin-bottom: 45px;
}
.module-split-boxes.module-split-boxes-narrow.module-awards .box {
  display: grid;
  place-items: center;
  gap: 10px;
}
.module-split-boxes.module-split-boxes-narrow.module-awards .box img {
  width: 50px;
  height: 50px;
}

@media only screen and (max-width: 768px) {
  .box.box--table {
    overflow-x: auto;
  }
}

/* ------ Stock Chart Widget ------ */
.module-stock-chart [data-highcharts-chart].js--hidden {
  display: block !important;
  max-height: 0;
  overflow: hidden;
}
.module-stock-chart fieldset {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.module-stock-chart button.ui-datepicker-trigger {
  background-color: #DCE5EF;
  font-size: 1.6rem;
  line-height: 24px;
  color: #203E63;
  padding: 0;
  padding-right: 0;
  padding-left: 0;
  height: 24px;
  width: 44px;
  border-radius: 4px;
  border: none;
  outline: none;
}
.module-stock-chart button.ui-datepicker-trigger .q4-icon_calendar {
  display: grid;
  height: 100%;
  place-items: center;
  max-width: 44px;
  padding: 0;
  min-width: 0;
}
.module-stock-chart button.ui-datepicker-trigger .q4-icon_calendar::before {
  content: "\ea5f";
  font-size: 1.8rem;
}
.module-stock-chart .highcharts-legend {
  transform: translateY(-8px);
}
.module-stock-chart .highcharts-legend > rect {
  fill: none;
}
.module-stock-chart .highcharts-legend-item text[style*="#CCC"] {
  fill: #767676 !important;
  color: #767676 !important;
}
.module-stock-chart .highcharts-legend-item text {
  font-weight: 400 !important;
}
.module-stock-chart .highcharts-legend-item rect[fill="#CCC"] {
  fill: #767676 !important;
}
.module-stock-chart .highcharts-legend-item:first-child path {
  stroke: #D1AA63 !important;
}
.module-stock-chart .highcharts-legend-item:first-child text {
  cursor: default !important;
  color: #333 !important;
  fill: #333 !important;
}
.module-stock-chart .highcharts-series-group .highcharts-series-2 path {
  stroke-width: 2px;
}
.module-stock-chart .highcharts-navigator rect.highcharts-navigator-mask-inside {
  fill: rgba(188, 203, 220, 0.6);
}
.module-stock-chart .highcharts-navigator-handle {
  stroke: #BCCBDC;
  fill: #BCCBDC;
  cursor: ew-resize;
}
.module-stock-chart .highcharts-navigator-handle-right rect, .module-stock-chart .highcharts-navigator-handle-left rect {
  stroke-width: 0;
  fill: #00213F;
}
.module-stock-chart .highcharts-navigator-handle-right path, .module-stock-chart .highcharts-navigator-handle-left path {
  stroke: #fff;
}
.module-stock-chart .highcharts-scrollbar g:first-of-type rect, .module-stock-chart .highcharts-scrollbar-thumb {
  fill: #f2f2f2;
  stroke: #f2f2f2;
}
.module-stock-chart .highcharts-range-selector {
  box-sizing: content-box;
}
.module-stock-chart .highcharts-range-input rect {
  stroke: #ccc;
  fill: #f2f2f2;
}
.module-stock-chart .highcharts-button rect, .module-stock-chart .highcharts-input-group rect {
  stroke-width: 0;
  fill: #DCE5EF;
}
.module-stock-chart .highcharts-button text, .module-stock-chart .highcharts-input-group text {
  fill: #203E63;
}
.module-stock-chart .highcharts-container > svg > .highcharts-button {
  display: none;
}
.module-stock-chart .highcharts-data-table-button, .module-stock-chart .highcharts-data-table-button button {
  text-transform: uppercase;
  text-align: left;
  color: inherit;
  width: 100%;
  border: none;
  background-color: inherit;
  cursor: pointer;
}
.module-stock-chart .highcharts-data-table thead th {
  font-size: 1.6rem;
}
.module-stock-chart .highcharts-table-caption {
  display: none;
}
.module-stock-chart .highcharts-graph {
  stroke: #141c1f !important;
}
.module-stock-chart .highcharts-label {
  font-size: 1.6rem;
}
.module-stock-chart .highcharts-label text {
  fill: #333 !important;
}
.module-stock-chart .highcharts-axis-labels text {
  fill: #333 !important;
}
.module-stock-chart_accessible-datepickers span,
.module-stock-chart_accessible-datepickers input {
  background-color: #DCE5EF;
  font-size: 1.6rem;
  line-height: 24px;
  font-family: var(--fontFamilyEuclid);
  color: #203E63;
  padding: 0 10px;
  height: 24px;
  border-radius: 4px;
  border: none;
  outline: none;
  min-width: 120px;
}
@media screen and (max-width: 768px) {
  .module-stock-chart_accessible-datepickers {
    display: none;
  }
}
.module-stock-chart .button {
  display: inline-block;
  margin: 0;
}
.module-stock-datatable_accessible-datepicker--from > span {
  margin-left: 0 !important;
}
@media screen and (max-width: 400px) {
  .module-stock-datatable_accessible-datepicker {
    display: block;
  }
  .module-stock-datatable_accessible-datepicker > span {
    margin-left: 0 !important;
  }
  .module-stock-datatable_accessible-datepicker--from {
    padding-top: 10px;
    margin-bottom: 10px;
  }
}

.module-stock-chart .highcharts-series-0 path:first-child {
  stroke: #00213F !important;
}

.module-stock-chart .highcharts-series-1 path:first-child {
  stroke: #D1AA63 !important;
}

.module-stock-chart .highcharts-series-2 path:first-child {
  stroke: #009FDF !important;
}

.module-stock-chart .highcharts-series-3 path:first-child {
  stroke: #F1625B !important;
}

.module-stock-chart .highcharts-series-4 path:first-child {
  stroke: #09BE9A !important;
}

.module-stock-chart .highcharts-series-5 path:first-child {
  stroke: #6E83FC !important;
}

.module-stock-chart button.ui-datepicker-trigger .q4-icon_calendar::before {
  content: "";
  background-image: url("../design/svg/calendar-icon-link.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
}

.q4icons [href$=".pdf"] .q4icons_icon::before, .q4icons [href$=".PDF"] .q4icons_icon::before {
  content: "";
  background-image: url("../design/svg/pdf.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
}

.module-stock-chart .highcharts-label.highcharts-tooltip-box text tspan:first-child {
  fill: #203E63 !important;
}

.highcharts-legend-box {
  width: 100% !important;
}

/* ------ Stock Header Module ----- */
.module-stock-header {
  padding: 5px 0;
  vertical-align: middle;
}
.module-stock-header--desktop {
  text-align: right;
  max-height: 34px;
}
.module-stock-header--mobile {
  padding: 0 20px 54px;
}
@media only screen and (max-width: 480px) {
  .module-stock-header--mobile > span {
    display: block;
  }
}
.module-stock-header .module_container--outer {
  display: inline-block;
  width: 100%;
  position: relative;
  color: #fff;
}
.module-stock-header_link {
  font-size: 12px;
  line-height: 22px;
}
.module-stock-header_link:focus {
  outline: 2px dotted #fff;
}
.module-stock-header_description1 {
  display: block;
  font-size: 2.2rem;
  margin: 15px 0;
}
@media only screen and (max-width: 768px) {
  .module-stock-header_description1 {
    text-align: center;
    margin: 0;
  }
}
@media only screen and (max-width: 480px) {
  .module-stock-header_description1 {
    text-align: left;
  }
}
.module-stock-header_stock-price {
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .module-stock-header_stock-price {
    text-align: center;
  }
}
@media only screen and (max-width: 480px) {
  .module-stock-header_stock-price {
    text-align: left;
  }
}
.module-stock-header_stock-price:not(last-child) {
  margin-right: 14px;
}
.module-stock-header_change, .module-stock-header_percent-change {
  display: inline-block;
  margin: 10px 0;
  font-size: 2rem;
}
@media only screen and (max-width: 768px) {
  .module-stock-header_change, .module-stock-header_percent-change {
    margin: 0;
  }
}
.module-stock-header_percent-change::before {
  content: "(";
}
.module-stock-header_percent-change .module-stock-header_indicator {
  display: none;
}
.module-stock-header_percent-change::after {
  content: ")";
}
.module-stock-header_volume {
  display: none;
  margin-bottom: 32px;
}
.module-stock-header_volume::before {
  content: "Volume ";
  font-weight: bold;
}
.module-stock-header_description3, .module-stock-header_date {
  display: block;
  font-size: 1.2rem;
  margin: 10px 0;
}
.module-stock-header_volume-text {
  display: none;
}

.js--header-small .module-stock-header {
  transform: translateY(-100px);
  max-height: 0;
  display: none;
}

/* ------ Stock Header Module ----- */
.module-stock-banner {
  background-color: #DCE5EF;
  padding: 40px;
  border-radius: 24px;
  height: fit-content;
}
@media only screen and (max-width: 768px) {
  .module-stock-banner {
    text-align: left;
    margin: 0;
  }
}
.module-stock-banner_link:focus {
  outline-offset: 2px;
  outline-color: #fff;
}
.module-stock-banner .stock-banner-content {
  display: grid;
  gap: 24px;
}
.module-stock-banner .stock-banner-content .tickers {
  display: inline-flex;
  justify-content: space-between;
  width: 100%;
}
.module-stock-banner .stock-banner-content .price {
  display: inline-flex;
  justify-content: space-between;
  align-items: baseline;
  width: 100%;
}
@media only screen and (max-width: 1200px) {
  .module-stock-banner .stock-banner-content .price {
    display: grid;
  }
}
.module-stock-banner .stock-banner-content .price .module-stock-banner_down {
  color: #F1625B;
}
.module-stock-banner .stock-banner-content .price .module-stock-banner_up {
  color: #008000;
}
.module-stock-banner .stock-banner-content .meta {
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  display: grid;
}
.module-stock-banner_stock-price {
  display: block;
  font-weight: 500;
  font-size: 64px;
  line-height: 120%;
  letter-spacing: -0.5px;
  color: #00213F;
}
@media only screen and (max-width: 768px) {
  .module-stock-banner_stock-price {
    font-size: 48px;
    line-height: 1.2;
  }
}
.module-stock-banner_change, .module-stock-banner_percent-change {
  display: inline-block;
  font-size: 1.6rem;
  line-height: 24px;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .module-stock-banner_change, .module-stock-banner_percent-change {
    margin: 0;
  }
}
.module-stock-banner_percent-change::before {
  content: "(";
}
.module-stock-banner_percent-change .module-stock-header_indicator {
  display: none;
}
.module-stock-banner_percent-change::after {
  content: ")";
}
.module-stock-banner_volume {
  display: none;
  margin-bottom: 32px;
}
.module-stock-banner_volume::before {
  content: "Volume ";
  font-weight: bold;
}
.module-stock-banner_description3, .module-stock-banner_date {
  display: block;
  font-size: 1.2rem;
  line-height: 22px;
}
.module-stock-banner_volume-text {
  display: none;
}

/* ------ Stock Quote Module ------ */
.module-stock_table {
  width: 100%;
  text-align: left;
}
.module-stock_table caption {
  caption-side: bottom;
  padding: 24px 0 0 0;
  font-size: 1.4rem;
  color: #426389;
}
.module-stock_table th,
.module-stock_table td {
  border-bottom: 1px solid #738FB0;
}
.module-stock_table td.spacer {
  border-bottom: none;
  width: 24px;
}
@media only screen and (max-width: 768px) {
  .module-stock_table td.spacer {
    display: none;
  }
}
.module-stock_table span {
  display: block;
  padding: 20px 15px;
}
@media only screen and (max-width: 480px) {
  .module-stock_table span {
    padding: 16px 0;
    font-size: 14px;
    text-align: left;
  }
}
@media only screen and (max-width: 768px) {
  .module-stock.module-stock-historical .module-stock_empty {
    display: none;
  }
}
.module-stock_lookup-title {
  display: none;
}
.module-stock_up {
  color: #006613;
}
.module-stock_down {
  color: #b72121;
}
.module-stock_date {
  margin-top: 25px;
  text-align: right;
  font-style: italic;
  font-size: 1.4rem;
}
.module-stock-historical {
  font-size: 1.6rem;
}
@media only screen and (max-width: 768px) {
  .module-stock-historical .module_options-label, .module-stock-historical .module_options-select, .module-stock-historical .module_options-submit {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }
}
.module-stock-historical .module_options-legend {
  line-height: 1.55;
  margin: 0 0 17px 0;
}
@media screen and (min-width: 901px) {
  .module-stock-historical .module_options-legend {
    float: left;
    margin: 18px 17px 0 0;
  }
}
.module-stock-historical .module_options-submit {
  margin: 0;
  align-self: flex-end;
}
.module-stock-historical .module_options-legend, .module-stock-historical .module_options-label, .module-stock-historical .module_options-label-date {
  font-size: 1.8rem;
  font-weight: 500;
}
.module-stock-historical .module_options-label-date {
  display: block;
  margin-top: 8px;
}
@media only screen and (min-width: 769px) {
  .module-stock-historical .module_options-fieldset {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .module-stock-historical .module_options-label {
    margin-right: 24px;
    text-align: left;
  }
  .module-stock-historical .module_options-select {
    min-width: 165px;
    margin-right: 0;
  }
}
.module-stock-historical .module_container--content {
  text-align: left;
}
.module-stock .stock-historical-range .module_options > *:not(:last-of-type) {
  margin-bottom: 20px;
}

/* - MailingList Subscribe Module - */
.module-subscribe .module_title {
  text-transform: unset;
}
.module-subscribe_table {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}
.module-subscribe_table label,
.module-subscribe_table span {
  font-size: 1.2rem;
  line-height: 2.2rem;
}
.module-subscribe_table tbody {
  width: 100%;
  display: block;
}
.module-subscribe_table-input .module_input {
  line-height: 2.2rem;
}
.module-subscribe .button {
  width: 215px;
  border-radius: 50px;
  margin-left: 0;
  margin-right: 0;
  padding: 14px 24px;
  font-weight: 600;
  letter-spacing: 1.5px;
  background: #D1AA63;
}
.module-subscribe .button:hover {
  background: #BCCBDC;
}
.module-subscribe_form {
  font-size: 0;
}
.module-subscribe_form tr {
  display: inline-block;
  width: 50%;
  margin-bottom: 20px;
  vertical-align: top;
  font-size: 1.6rem;
}
.module-subscribe_form tr:nth-child(even) {
  padding-left: 10px;
}
.module-subscribe_form tr:nth-child(odd) {
  padding-right: 10px;
}
.module-subscribe_form tr.module-subscribe_notes-text {
  margin: 0;
}
.module-subscribe_form tr.module-subscribe_notes-text, .module-subscribe_form tr.module-subscribe_notes-input {
  display: block;
  width: 100%;
  padding: 0;
}
@media only screen and (max-width: 768px) {
  .module-subscribe_form tr {
    width: 100%;
  }
  .module-subscribe_form tr:nth-child(even) {
    padding-left: 0;
  }
  .module-subscribe_form tr:nth-child(odd) {
    padding-right: 0;
  }
}
.module-subscribe_form td {
  display: block;
}
.module-subscribe_form label {
  display: inline-block;
  margin-bottom: 5px;
}
.module-subscribe_mailing-list {
  font-size: 1.4rem;
  line-height: 1.1;
}
.module-subscribe_mailing-list tr.module-subscribe_list-header td {
  padding-bottom: 15px;
}
.module-subscribe_mailing-list tr table td {
  padding-bottom: 10px;
}
.module-subscribe_mailing-list tr table tr:last-child td {
  padding-bottom: 0;
}
.module-subscribe_unsubscribe {
  font-size: 1rem;
  display: none;
}
.module-subscribe .module_required {
  font-size: 1.4rem;
}
.module-subscribe .module_required-text {
  margin-top: 20px;
}
.module-subscribe .module_introduction {
  margin-bottom: 0;
}

/* MailingList Unsubscribe Module */
.module-unsubscribe .module_title {
  text-transform: capitalize;
}
.module-unsubscribe .button {
  width: 215px;
  border-radius: 50px;
  margin-left: 0;
  margin-right: 0;
  padding: 14px 24px;
  font-weight: 600;
  letter-spacing: 1.5px;
  background: #D1AA63;
}
.module-unsubscribe .button:hover {
  background: #BCCBDC;
}
.module-unsubscribe_table {
  width: 50%;
}
@media only screen and (max-width: 768px) {
  .module-unsubscribe_table {
    width: 100%;
  }
}
.module-unsubscribe_table td {
  padding-right: 10px;
}
@media only screen and (max-width: 768px) {
  .module-unsubscribe_table td {
    padding-right: 0;
  }
}
.module-unsubscribe_table label {
  display: inline-block;
  font-size: 1.2rem;
  line-height: 2.2rem;
  margin-bottom: 5px;
}
.module-unsubscribe_table .module_input[type=email] {
  background-color: #fafafa;
  border: 1px solid #c4c4c4;
  font-size: 1.2rem;
  line-height: 2.2rem;
}

.module_our-brands .module_title {
  font-family: var(--fontFamilyEuclid);
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 46px;
  text-align: center;
  color: #333;
  text-transform: capitalize;
}
.module_our-brands .splide .module_item {
  border-top: 0;
  text-align: center;
  padding: 0;
}
.module_our-brands .splide ul.splide__pagination {
  display: none;
}
.module_our-brands .splide .splide__arrow {
  top: 56%;
}
.module_our-brands .splide .splide__arrow--prev {
  left: 0;
}
.module_our-brands .splide .splide__arrow--next {
  right: 0;
}
.module_our-brands .splide__list {
  align-items: center;
}

.pane--content .module.module_our-values {
  padding-bottom: 111px;
}

.module_our-values {
  position: relative;
  background-color: #DCE5EF;
  overflow: hidden;
}
.module_our-values .grid {
  position: relative;
}
.module_our-values-items {
  padding-left: 0;
}
@media only screen and (max-width: 768px) {
  .module_our-values-items {
    padding-left: 10px;
  }
}
.module_our-values-items .splide {
  left: -85px;
  width: 300%;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .module_our-values-items .splide {
    left: 0;
    width: unset;
  }
}
.module_our-values-items .splide__arrows {
  position: absolute;
  bottom: -64px;
  left: 10px;
  display: flex;
  gap: 17px;
}
@media only screen and (max-width: 768px) {
  .module_our-values-items .splide__arrows {
    left: unset;
    right: 0;
  }
}
.module_our-values-items .splide__arrow {
  position: relative;
  top: unset;
  left: unset;
  right: unset;
  transform: unset;
}
.module_our-values-items .splide li {
  max-width: 295px;
  background-color: #fff;
  margin: 0 10px;
}
@media only screen and (max-width: 768px) {
  .module_our-values-items .splide li {
    max-width: 100%;
  }
}
.module_our-values-text {
  padding-top: 35px;
  padding-right: 110px;
}
@media only screen and (max-width: 768px) {
  .module_our-values-text {
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 100px;
  }
}
.module_our-values::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 46%;
  height: 100%;
  z-index: 0;
  background-image: url("../design/banner/careers-our-values.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
}
@media screen and (min-width: 480px) and (max-width: 768px) {
  .module_our-values::after {
    left: 0;
    top: 45%;
    height: 60%;
    width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .module_our-values::after {
    left: 0;
    top: 50%;
    height: 55%;
    width: 100%;
  }
}
.module_our-values .value-contents {
  padding: 50px 25px;
}
.module_our-values .value-contents :last-child {
  margin-bottom: 0;
}
.module_our-values p:last-child {
  margin-top: 30px;
}

/* ==================================
 ---------- SUSTAINABILITY ---------
================================== */
@media only screen and (max-width: 768px) {
  .page--sustainability .pane--banner .pane_inner {
    display: block;
    text-align: center;
  }
}
.page--sustainability .pane--banner .module-page-title {
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .page--sustainability .pane--banner .module-page-title {
    max-width: none;
    text-align: center;
  }
}
.page--sustainability .pane--content .module_sustainability-strategy {
  padding-bottom: 37px;
}
.page--sustainability .pane--content .section-env-commit,
.page--sustainability .pane--content .section-social-commit {
  padding-top: 40px;
  padding-bottom: 40px;
}

@media only screen and (min-width: 1024px) {
  .section-env-commit .section-layout {
    display: flex;
  }
  .section-env-commit .section-layout div {
    flex-basis: 50%;
  }
  .section-env-commit {
    background: url("../images/sustainability-page/sustainable_env-commitment.jpg"), #f3f7f9;
    background-position: left;
    background-repeat: no-repeat;
    background-size: 43% auto, cover;
  }
  .section-social-commit {
    background: url("../images/sustainability-page/sustainable_social-commitment.jpg") no-repeat right center;
    background-size: 43% auto;
  }
  .section-social-commit .section-layout {
    display: flex;
  }
  .section-social-commit .section-layout .content {
    flex-basis: 50%;
  }
  .background_sustainability-social-commit {
    display: none;
  }
}
@media only screen and (max-width: 1023px) {
  .background_sustainability-env-commit {
    background: url("../images/sustainability-page/sustainable_env-commitment.jpg") no-repeat center;
    background-size: cover;
    margin-bottom: 20px;
    height: 400px;
  }
}
.background_sustainability-social-commit {
  background: url("../images/sustainability-page/sustainable_social-commitment.jpg") no-repeat center;
  background-size: cover;
  margin-bottom: 20px;
  height: 400px;
}

.sustainability-report {
  max-width: 250px;
}
.sustainability-report .module_link {
  margin: 25px 0 0 0;
  text-transform: none;
  font-size: 2.1rem;
  position: relative;
  padding-left: 30px;
}
.sustainability-report .q4icons [href$=".pdf"] .q4icons_icon::before,
.sustainability-report .q4icons [href$=".PDF"] .q4icons_icon::before {
  position: absolute;
  left: 0;
  top: 5px;
  content: "\e910";
}
@media only screen and (max-width: 768px) {
  .sustainability-report {
    max-width: none;
    text-align: center;
    margin: 50px auto 0 auto;
  }
}
.sustainability-values {
  background-color: #00213F;
  color: #fff;
  background-image: url("../design/banner/sustainability-values-banner.jpg");
  background-size: cover;
  background-position: center;
}
.sustainability-values_item:not(:first-child) {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(226, 226, 226, 0.5);
}
.sustainability-values_grid {
  align-items: center;
}
.sustainability-values_icon {
  font-size: 5rem;
}
.sustainability-values_number {
  font-size: 3.6rem;
}
.sustainability-values_slideshow iframe {
  left: 0;
  top: 0;
}
@media only screen and (max-width: 1024px) {
  .sustainability-values_slideshow {
    text-align: center;
  }
}
@media only screen and (max-width: 768px) {
  .sustainability-values_grid {
    text-align: center;
  }
  .sustainability-values_number {
    display: block;
    margin-top: 10px;
  }
}
.sustainability-commitment.module {
  padding: 0 !important;
}
.pane--content .sustainability-commitment .module_container--outer {
  max-width: none;
  padding: 0;
}

.sustainability-commitment_row {
  display: flex;
  align-items: center;
}
.sustainability-commitment_row--reverse {
  flex-direction: row-reverse;
}
.sustainability-commitment_image {
  flex: 0 0 auto;
}
.sustainability-commitment_image img {
  vertical-align: top;
}
.sustainability-commitment_content {
  flex: 1 1 auto;
  padding-left: 8vw;
  padding-right: 8vw;
}
.sustainability-commitment .button--cta {
  padding-right: 0;
}
.sustainability-commitment .button--cta::after {
  position: static;
  margin-left: 5px;
  vertical-align: top;
  transition-property: margin-left;
}
.sustainability-commitment .button--cta:hover::after, .sustainability-commitment .button--cta:focus::after {
  margin-left: 10px;
}
@media screen and (min-width: 1201px) {
  .pane--content .sustainability-commitment--social.module {
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 1200px) {
  .pane--content .sustainability-commitment .module_container--outer {
    padding-left: 20px;
    padding-right: 20px;
  }
  .sustainability-commitment_image {
    flex: auto;
    flex-basis: 25%;
  }
  .sustainability-commitment_content {
    flex: auto;
    flex-basis: 75%;
    padding-left: 20px;
    padding-right: 0;
  }
  .sustainability-commitment_row--reverse .sustainability-commitment_content {
    padding-left: 0;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .sustainability-commitment_image {
    flex-basis: 33.33%;
  }
  .sustainability-commitment_content {
    flex-basis: 66.66%;
  }
}
@media only screen and (max-width: 768px) {
  .sustainability-commitment_row {
    display: block;
  }
  .sustainability-commitment_image {
    padding-bottom: 30px;
  }
  .sustainability-commitment_content {
    padding-left: 0;
    padding-right: 0;
  }
}
.sustainability-governance {
  background-color: #00213F;
  color: #fff;
  background-image: linear-gradient(to bottom, rgba(0, 33, 63, 0.8), rgba(0, 33, 63, 0.8)), url("../images/sustainability-page/sustainable_govern-commitment.jpg");
  background-size: cover;
  background-position: center;
  padding-top: 50px !important;
  padding-bottom: 30px !important;
}
.sustainability-governance .button--cta {
  padding-right: 0;
}
.sustainability-governance .button--cta:hover {
  color: #fff;
}
.sustainability-governance .button--cta::after {
  position: static;
  margin-left: 5px;
  vertical-align: top;
  transition-property: margin-left;
}
.sustainability-governance .button--cta:hover::after, .sustainability-governance .button--cta:focus::after {
  margin-left: 10px;
}
.sustainability-awards .module_title {
  word-break: break-word;
}
.sustainability-awards .module_container--widget {
  margin-bottom: 30px;
  padding: 0;
}
.sustainability-awards_image {
  padding: 20px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  margin-top: 5px;
  transition: transform 0.6s ease;
}
.sustainability-awards_image:hover {
  transform: translateY(-5px);
}
.sustainability-awards_title {
  margin-top: 30px;
}
.sustainability-awards .button--cta {
  padding-right: 0;
}
.sustainability-awards .button--cta::after {
  position: static;
  margin-left: 5px;
  vertical-align: top;
  transition-property: margin-left;
}
.sustainability-awards .button--cta:hover::after, .sustainability-awards .button--cta:focus::after {
  margin-left: 10px;
}
@media only screen and (max-width: 1024px) {
  .sustainability-awards_item {
    margin-bottom: 30px;
  }
  .sustainability-awards_title {
    margin-top: 20px;
  }
}
.sustainability-news .module_container--widget {
  display: flex;
  justify-content: stretch;
  align-items: stretch;
  padding: 0;
  margin-bottom: 20px;
}
.sustainability-news .module_item {
  margin: 0;
  padding: 0 0 0 20px;
  border: none;
  display: flex;
  align-self: stretch;
}
.sustainability-news .module_item-wrap {
  border-bottom: 1px solid rgba(0, 33, 63, 0.5);
  padding-bottom: 40px;
  height: 100%;
}
.sustainability-news .module_date-time {
  color: #203E63;
}
.sustainability-news .slick-arrow {
  left: 50%;
  right: auto;
  top: auto;
  bottom: 20px;
}
.sustainability-news .slick-prev {
  transform: translateX(-100%);
}
.sustainability-news .slick-next {
  transform: translateX(100%);
}

@supports (outline-offset: -2px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 2px dotted #141c1f;
    outline-offset: -2px;
  }
}
.splide.is-focus-in .splide__arrow:focus {
  outline: 2px dotted #141c1f;
  outline-offset: 2px;
}
.splide__arrow {
  opacity: 1;
  width: 40px;
  height: 40px;
  background-color: #fff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15);
}
.splide__arrow svg {
  fill: #D1AA63;
}
.splide__arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.splide__arrow:disabled:hover {
  background: #fff;
}
.splide__arrow:disabled:hover svg {
  fill: #D1AA63;
}
.splide__arrow:hover {
  background: #D1AA63;
}
.splide__arrow:hover svg {
  fill: #fff;
}
.splide__arrow:focus {
  outline: 2px solid #D1AA63;
}
.splide__pagination__page {
  background: #fff;
  width: 8px;
  height: 7.87px;
  margin: 3px 5px;
  opacity: 0.4;
}
.splide__pagination__page.is-active {
  transform: unset;
  opacity: 1;
}

/* Corporate Overview Banner Slider */
.module-banner-slider .splide__pagination {
  bottom: 28px;
}
.module-banner-slider .splide.banners {
  width: 100vw;
  height: 700px;
  position: relative;
  left: calc(-50vw + 50%);
}
@media only screen and (max-width: 768px) {
  .module-banner-slider .splide.banners {
    height: 550px;
  }
}
.module-banner-slider .splide__track {
  height: 100%;
}
.module-banner-slider .splide__slide .small {
  font-size: 1.8rem;
  line-height: 28px;
  font-weight: 500;
  text-align: center;
}
.module-banner-slider .splide__slide .h1 {
  text-align: center;
  margin-top: 24px;
  margin-bottom: 24px;
}
.module-banner-slider .splide__overlay {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.7) 90%, transparent 100%);
  padding: 0 20px;
}
.module-banner-slider .splide__overlay > * {
  max-width: 960px;
}

.page--overview .layout--home .pane--banner {
  padding-top: 0;
}
.page--overview .layout--home .pane--content_inner {
  padding-top: 0;
}

/* Banners */
.layout--one-column .pane--banner {
  height: 126px;
  display: grid;
  place-items: center;
  width: 100%;
  align-items: center;
  margin-top: 56px;
  color: #fff;
}
.Sectioninvestor-relations .layout--one-column .pane--banner {
  margin-top: 90px;
}
.layout--one-column .pane--banner h1 {
  margin-bottom: 0;
}
.layout--one-column .pane--banner .pane_inner {
  position: relative;
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}

.PageSiteMap .pane--banner, .PagePageNotFound .pane--banner, .PageOverview .pane--banner {
  height: 300px;
  background: #00213F url("../design/banner/banner-overview.jpg") center center;
  background-size: cover;
}
.PageCompanyAboutUs .pane--banner, .about-banner .pane--banner, .Sectionabout-us .pane--banner, .SectionAboutHistory .pane--banner {
  background: #00213F url("../design/banner/banner-about-us.jpg") center center;
  background-size: cover;
}
.PageCompanyManagementBoard .pane--banner {
  background: #00213F url("../design/banner/banner-management-board.jpg") center center;
  background-size: cover;
}
.PageCompanySupervisoryBoard .pane--banner {
  background: #00213F url("../design/banner/banner-supervisory-board.jpg") center center;
  background-size: cover;
}
.PageCompanyCorporateGovernance .pane--banner {
  background: #00213F url("../design/banner/banner-governance.jpg") center center;
  background-size: cover;
}
.PageESGOverview .pane--banner {
  background: #00213F url("../design/banner/banner-esg.jpg") center center;
  background-size: cover;
}
.PageESGEnvironment .pane--banner {
  background: #00213F url("../design/banner/banner-environment.jpg") center center;
  background-size: cover;
}
.PageESGSocial .pane--banner {
  background: #00213F url("../design/banner/banner-social.jpg") center center;
  background-size: cover;
}
.PageESGCorporateGovernance .pane--banner {
  background: #00213F url("../design/banner/banner-corporate-governance.jpg") center center;
  background-size: cover;
}
.PageESGComplianceRiskManagement .pane--banner {
  background: #00213F url("../design/banner/banner-compliance-and-risk-management.jpg") center center;
  background-size: cover;
}
.PageESGReportsRatings .pane--banner {
  background: #00213F url("../design/banner/banner-reports-and-ratings.jpg") center center;
  background-size: cover;
}
.PageCareerJobs .pane--banner {
  background: #00213F url("../design/banner/banner-jobs.jpg") center center;
  background-size: cover;
}
.PageCareerDualStudies .pane--banner {
  background: #00213F url("../design/banner/banner-dual-studies.jpg") center center;
  background-size: cover;
}
.PageInvestorRelationsOverview .pane--banner {
  background: #00213F url("../design/banner/banner-investor-relations.jpg") center center;
  background-size: cover;
}
.PageNewsroomContact .pane--banner {
  background: #00213F url("../design/banner/banner-newsroom-contact.jpg") center center;
  background-size: cover;
}
.projects-banner .pane--banner, .SectionOurProducts .pane--banner, .Sectionour-portfolio .pane--banner {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 90%, transparent 100%), url("../design/banner/ourproduct-banner.jpg") center center;
  background-size: cover;
}
.PageInvestorRelations .pane--banner {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 90%, transparent 100%), url("../design/banner/investor-hero-banner.jpg") center center;
  background-size: cover;
}
.PageNewsroomMediaLibrary .pane--banner {
  background: #00213F url("../design/banner/banner-newsroom-contact.jpg") center center;
  background-size: cover;
}
.Sectioninvestor-relations .pane--banner, .Sectionresources .pane--banner, .ParentSection_stock-info .pane--banner, .ParentSection_governance .pane--banner, .ParentSection_financials .pane--banner, .Sectioninvestor-news .pane--banner, .Sectionevents .pane--banner, .Sectionpresentations .pane--banner {
  background: #00213F url("../design/banner/banner-investor-relations.jpg") center center;
  background-size: cover;
}
.PageBankAG .pane--banner {
  background: #00213F url("../design/banner/banner-bank-ag.jpg") center center;
  background-size: cover;
}
.PageBankAGBankAGFAQs .pane--banner {
  background: #00213F url("../design/banner/banner-bank-ag-faq.jpg") center center;
  background-size: cover;
}
.PageBankAGBankAGPSD2 .pane--banner {
  background: #00213F url("../design/banner/banner-bank-ag-psd2.jpg") center center;
  background-size: cover;
}
.PageBankAGBankAGImprint .pane--banner {
  background: #00213F url("../design/banner/banner-bank-ag-imprint.jpg") center center;
  background-size: cover;
}
.PageBankAGBankAGGTCampPrivacyPolicy .pane--banner {
  background: #00213F url("../design/banner/banner-bank-ag-gtc.jpg") center center;
  background-size: cover;
}
.PageInvestorRelationsPublications .pane--banner {
  background: #00213F url("../design/banner/banner-publications.jpg") center center;
  background-size: cover;
}
.PageInvestorRelationsReporting .pane--banner {
  background: #00213F url("../design/banner/banner-reporting.jpg") center center;
  background-size: cover;
}
.PageInvestorRelationsFinancialCalendar .pane--banner {
  background: #00213F url("../design/banner/banner-financial-calendar.jpg") center center;
  background-size: cover;
}
.PageInvestorRelationsAGM .pane--banner {
  background: #00213F url("../design/banner/banner-agm.jpg") center center;
  background-size: cover;
}
.PageNewsroomNews .pane--banner {
  background: #00213F url("../design/banner/banner-news.jpg") center center;
  background-size: cover;
}
.PageCareers .pane--banner {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 90%, transparent 100%), url("../design/banner/careers-banner.jpg") center center;
  background-size: cover;
}
.PageSustainability .pane--banner {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 90%, transparent 100%), url("../design/banner/sustainability-banner.jpg") center center;
  background-size: cover;
}
.PageTermsofUse .pane--banner, .PagePrivacyPolicy .pane--banner, .PageCookiesPolicy .pane--banner, .PageSearchResults .pane--banner, .PageSiteMap .pane--banner {
  background: #00213F url("../design/banner/banner-overview.jpg") center center;
  background-size: cover;
}
.PageInvestorRelationsShare .pane--banner {
  background: #00213F url("../design/banner/banner-share.jpg") center center;
  background-size: cover;
}

.layout--one-column.js--header-small .pane--banner {
  margin-top: 56px;
}

.module_link-boxes .grid_col:nth-of-type(1) .module-inner-item {
  background-image: linear-gradient(180deg, rgba(20, 28, 31, 0) 0%, rgba(20, 28, 31, 0) 27.66%, rgba(20, 28, 31, 0.9) 80.06%), url("../images/link-box/governance.jpg");
}
.module_link-boxes .grid_col:nth-of-type(2) .module-inner-item {
  background-image: linear-gradient(180deg, rgba(20, 28, 31, 0) 0%, rgba(20, 28, 31, 0) 27.66%, rgba(20, 28, 31, 0.9) 80.06%), url("../images/link-box/history.jpg");
}
.module_link-boxes .grid_col:nth-of-type(3) .module-inner-item {
  background-image: linear-gradient(180deg, rgba(20, 28, 31, 0) 0%, rgba(20, 28, 31, 0) 27.66%, rgba(20, 28, 31, 0.9) 80.06%), url("../images/link-box/our-people.jpg");
}
.module_link-boxes .module-inner-item {
  background-size: cover;
  background-position: center;
  height: 216px;
  position: relative;
  transition: 0.5s ease-in-out;
}
.module_link-boxes .module-inner-item .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: 0.5s ease;
  background-color: #2431d8;
}
.module_link-boxes .module-inner-item:hover, .module_link-boxes .module-inner-item:focus-within {
  -webkit-box-shadow: -1px 7px 15px 0 rgba(0, 0, 0, 0.45);
  box-shadow: -1px 7px 15px 0 rgba(0, 0, 0, 0.45);
  transform: translateY(-20px);
}
.module_link-boxes .module-inner-item:hover .overlay, .module_link-boxes .module-inner-item:focus-within .overlay {
  opacity: 1;
}
.module_link-boxes .module-inner-item:hover .overlay-learn-more, .module_link-boxes .module-inner-item:focus-within .overlay-learn-more {
  opacity: 1;
}
.module_link-boxes .module-inner-item:hover .overlay-learn-more:hover, .module_link-boxes .module-inner-item:focus-within .overlay-learn-more:hover {
  text-decoration: underline;
}
.module_link-boxes .module-inner-item .module-slide-title {
  font-size: 28px;
  line-height: 1.2142857143;
  position: relative;
  top: 145px;
  left: 30px;
  z-index: 1;
  color: #fff;
}
.module_link-boxes .module-inner-item .overlay-learn-more {
  opacity: 0;
  transition: 0.5 ease;
  text-transform: uppercase;
  position: relative;
  top: 180px;
  font-size: 12px;
  left: 30px;
}
.module_link-boxes .module-inner-item .overlay-learn-more a {
  color: #fff;
}

/* ------------------ Why Invest Page ------------------- */
.module-key_facts {
  background-color: #DCE5EF;
}
.module-key_facts-image-container {
  display: flex;
  justify-content: center;
}
.module-key_facts-image img {
  max-width: 575px;
  width: 100%;
  text-align: center;
}
.module-key_facts-facts {
  width: 100%;
}
.module-key_facts-facts-container {
  padding: 20px;
}
@media only screen and (max-width: 768px) {
  .module-key_facts-facts-container {
    padding: 40px 0;
    text-align: center;
  }
}
.module-key_facts-fact-item {
  display: flex;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid #141c1f;
}
@media only screen and (max-width: 768px) {
  .module-key_facts-fact-item {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
}
.module-key_facts-fact-item img {
  width: 100%;
  max-width: 52px;
}
.module-key_facts-fact_stat {
  width: 40%;
  font-size: 2.8rem;
  font-weight: 700;
  margin: 0;
  padding: 0 20px 0 17px;
}
@media screen and (max-width: 1150px) {
  .module-key_facts-fact_stat {
    width: 55%;
  }
}
@media only screen and (max-width: 768px) {
  .module-key_facts-fact_stat {
    max-width: 150px;
  }
}
.module-key_facts-fact_text {
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .module-key_facts-fact_text {
    text-align: center;
  }
}
.module-why-win_item {
  display: flex;
  padding-bottom: 40px;
}
.module-why-win_icon {
  padding-right: 24px;
  margin-top: -25px;
}
.module-key_figures {
  position: relative;
  background-image: url("../design/banner/key-figures-banner.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #141c1f;
}
.module-key_figures::before {
  content: "";
  background-color: rgba(20, 28, 31, 0.8);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}
.module-key_figures-container {
  color: #fff;
  position: relative;
}
.module-key_figures .module-why-invest_column h3 {
  color: #fff;
  font-size: 48px;
  font-size: 4.8rem;
  font-weight: 500;
  line-height: 5.8rem;
  font-family: var(--fontFamilyEuclid);
  font-style: normal;
}
.module-key_figures .module-why-invest_figures {
  margin: 20px 0;
}
.module-key_figures .module-why-invest_figures .grid_col:not(:last-of-type) {
  border-right: 1px solid #2431d8;
}
@media only screen and (max-width: 1024px) {
  .module-key_figures .module-why-invest_figures .grid_col:not(:last-of-type) {
    border-right: none;
  }
  .module-key_figures .module-why-invest_figures .grid_col:first-of-type::after {
    position: absolute;
    content: "";
    background-color: #2431d8;
    height: 60%;
    width: 1px;
    margin-left: 25%;
    top: 150px;
  }
}
@media only screen and (max-width: 480px) {
  .module-key_figures .module-why-invest_figures .grid_col:first-of-type::after {
    display: none;
  }
}
.module-world-presence .module_container--inner {
  background-color: #f3f7f9;
}
.module-world-presence-container {
  background-image: url("../design/banner/world-map-bg.svg");
  padding: 80px 50px;
  text-align: center;
  position: relative;
}
@media only screen and (max-width: 480px) {
  .module-world-presence-container {
    padding: 40px 20px;
  }
}
.module-world-presence-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media only screen and (max-width: 768px) {
  .module-world-presence-cards {
    flex-direction: column;
  }
}
.module-world-presence-card {
  max-width: 320px;
  color: #fff;
  padding: 30px;
}
@media only screen and (max-width: 768px) {
  .module-world-presence-card {
    max-width: 100%;
  }
}
.module-world-presence-card:first-child {
  background-color: #151f9f;
}
.module-world-presence-card:last-child {
  background-color: #2431d8;
}
.module-world-presence-figure {
  font-size: 6rem;
  font-weight: 700;
  line-height: 7.2rem;
  color: #fff;
}
.module-tabs-content-toggle-container {
  display: flex;
  list-style: none;
  padding-inline-start: 0;
  justify-content: center;
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  .module-tabs-content-toggle-container {
    flex-direction: column;
  }
}
.module-tabs-content-toggle {
  background-color: #fff;
  border: 1px solid #DCE5EF;
  padding: 15px;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2rem;
  position: relative;
  color: #00213F;
  min-width: 230px;
  cursor: pointer;
  transition: 0.25s ease-in-out;
  z-index: 2;
  font-family: var(--fontFamilyEuclid);
}
@media only screen and (max-width: 768px) {
  .module-tabs-content-toggle {
    width: 100%;
  }
}
.module-tabs-content-toggle::after {
  transition: 0.25s ease-in-out;
  content: "";
  position: absolute;
  bottom: -20px;
  left: calc(50% - 20px);
  z-index: 1;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid transparent;
}
@media only screen and (max-width: 768px) {
  .module-tabs-content-toggle::after {
    content: none;
  }
}
.module-tabs-content-toggle[aria-selected=true], .module-tabs-content-toggle:active, .module-tabs-content-toggle:hover, .module-tabs-content-toggle:focus {
  color: #fff;
  transition: 200ms ease-in-out;
}
.module-tabs-content-toggle[aria-selected=true], .module-tabs-content-toggle:active {
  background-color: #BCCBDC;
}
.module-tabs-content-toggle[aria-selected=true]::after, .module-tabs-content-toggle:active::after {
  border-top-color: #BCCBDC;
}
.module-tabs-content-toggle:hover, .module-tabs-content-toggle:focus[aria-selected=false] {
  background-color: #D1AA63;
}
.module-tabs-content-toggle:hover::after, .module-tabs-content-toggle:focus[aria-selected=false]::after {
  border-top-color: #D1AA63;
}
.module-tabs-content-toggle:focus {
  outline-color: #00213F;
  outline-offset: 2px;
  z-index: 3;
}
@media only screen and (max-width: 768px) {
  .module-tabs-content-container .grid {
    padding-left: 0;
  }
}
.module-tabs-content-container .image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.module-quote-section .img-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.module-quote-section .img-container img {
  max-width: 592px;
  width: 100%;
}
.module-quote-section .quote-container {
  padding: 50px;
}
@media only screen and (max-width: 768px) {
  .module-quote-section .quote-container {
    margin-top: 40px;
    padding: 20px;
  }
}
.module-quote-section .quote-container .quote {
  font-size: 2.8rem;
  line-height: 3.4rem;
  font-weight: 700;
  font-style: normal;
  border: none;
  background: none;
  margin: 0;
  position: relative;
  vertical-align: center;
  display: block;
}
.module-quote-section .quote-container .quote::before {
  position: absolute;
  top: -20px;
  color: #D1AA63;
  content: "";
  background: url("../design/svg/quote-icon.svg") no-repeat center center;
  background-size: cover;
  width: 22px;
  height: 19px;
  display: block;
}
.module-quote-section .quote-container .quote-author-container {
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  font-size: 1.8rem;
  line-height: 2.4rem;
}
.module-what-we-do .module_container--inner {
  display: flex;
}
.module-what-we-do .video_container {
  width: 50%;
  position: relative;
  overflow: hidden;
  padding-top: 28.25%;
}
.module-what-we-do .responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.module-what-we-do_content {
  width: 50%;
  padding: 100px 88px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

/* Footer Quicklinks Module */
@media (min-width: 768px) {
  .pane--footer .module-links.desktop--hidden {
    display: none !important;
  }
}
.pane--footer .module-links_list {
  display: flex;
  flex-wrap: wrap;
}
.pane--footer .module-links_list-item-link {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  text-transform: capitalize;
}
.pane--footer .module-links .QuickLinkRow,
.pane--footer .module-links .QuickLinkRowAlt {
  width: 50%;
}

/* ==================================
 ----------- LAYOUT CSS -----------
================================== */
/* ------- iframe layout CSS ------ */
.layout--iframe .pane--content .module_container--outer {
  max-width: none;
}

/* ==================================
 ------------ BLANK CSS -----------
================================== */
/* -------- Layout Specific ------- */
.layout .layout_inner {
  position: relative;
  overflow-y: clip;
}
.layout .layout_inner[aria-hidden=true] {
  pointer-events: none;
}
.layout .layout_inner[aria-hidden=true] .nav--mobile--toggle {
  pointer-events: auto;
}
@media only screen and (max-width: 1042px) {
  .layout.js--mobile {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
  }
}

/* --------- Pane Specific -------- */
.pane--header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #00213F;
  box-shadow: rgba(20, 28, 31, 0.2) 0 2px 20px;
  z-index: 201;
  transition: 0.3s ease-in-out;
  display: grid;
  place-items: center;
}
.pane--header .pane_inner {
  max-width: 1220px;
  width: 100%;
}
@media (max-width: 1270px) {
  .pane--header .pane_inner {
    padding: 0 20px;
  }
}
.pane--header .module-logo a {
  display: grid;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.pane--header .module-logo a:focus {
  outline: 2px dotted #fff;
}
.pane--header .layout_toggle {
  display: none;
  text-align: right;
}
.pane--header .layout_toggle-button {
  font-size: 3.4rem;
  color: #00213F;
  background: transparent;
  padding: 0;
  border: 0 none;
}
.js--mobile .pane--header .layout_toggle [class^=q4-icon_]::before,
.js--mobile .pane--header .layout_toggle [class*=" q4-icon_"]::before {
  font-size: 2.5rem;
  content: "\ed6d";
}

@media only screen and (max-width: 1042px) {
  .pane--header .module-logo {
    padding-top: 0;
  }
  .pane--header .module-logo img {
    margin-bottom: 0;
  }
  .pane--header .layout_toggle {
    display: inline-block;
  }
  .pane--header .nav,
.pane--header .module-search {
    display: none;
  }
}
.pane--content .module {
  padding-top: var(--module-vspace);
  padding-bottom: var(--module-vspace);
}
.pane--content .module_container--outer {
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media only screen and (min-width: 769px) {
  .module-container-padding .module_container--outer {
    padding-left: calc(25px + 5%);
    padding-right: calc(25px + 5%);
  }
}
.pane--content .module--no-padding {
  padding-top: 0;
  padding-bottom: 0;
}
.pane--content .module--no-padding-top {
  padding-top: 0;
}
.pane--content .module--no-padding-bottom {
  padding-bottom: 0;
}
.pane--content .module--landing-page-padding {
  padding: 10rem 0;
}
@media only screen and (max-width: 768px) {
  .pane--content .module--landing-page-padding {
    padding: 6rem 0;
  }
}
.pane--content .module--full-width .module_container--outer {
  max-width: 2560px;
}
.pane--content .module-home-esg {
  padding-top: 132px;
  padding-bottom: 132px;
}
.pane--footer .social_links, .pane--footer2 .social_links {
  display: inline-flex;
  gap: 16px;
  justify-content: end;
  width: 100%;
}
.pane--footer {
  padding: 40px 0;
  display: none;
}
.PageInvestorRelationsContact .pane--footer, .PageInvestorRelationsOverview .pane--footer {
  display: block;
}
.pane--footer .pane_inner {
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.pane--footer .pane_inner .footer-wrapper .FooterPaneDiv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
@media only screen and (max-width: 1200px) {
  .pane--footer .pane_inner .footer-wrapper .FooterPaneDiv {
    gap: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .pane--footer .pane_inner .footer-wrapper .FooterPaneDiv {
    grid-template-columns: 1fr;
  }
}
.pane--footer .pane_inner .footer-wrapper .FooterPaneDiv > span {
  position: relative;
  display: grid;
  padding: 40px;
  border-radius: 24px;
  background-color: #203e63;
}
.pane--footer .social {
  margin: 34px 0 38px;
}
.pane--footer .social_links span {
  background-color: rgba(255, 255, 255, 0.3);
}
@media screen and (min-width: 1025px) {
  .pane--footer .social--mobile {
    display: none;
  }
}
.pane--footer .module-logo--footer img {
  vertical-align: top;
}
.pane--footer .module-logo--footer hr {
  margin: 16px 0 40px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.15);
  border: none;
}
.pane--footer .module_title {
  margin: 0 0 20px 0;
  color: inherit;
  font-size: 2.8rem;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 34px;
  margin-top: 0;
}
.pane--footer .module_error-container {
  color: #fff;
  margin-bottom: 20px;
}
.pane--footer .module_message--error {
  color: #fff;
}
.pane--footer .module-contact [class^=q4-icon_],
.pane--footer .module-contact [class*=" q4-icon_"] {
  margin-right: 5px;
}
.pane--footer .module-contact_name {
  margin-bottom: 0;
  margin-top: 28px;
}
.pane--footer .module-contact_title {
  font-size: 1.2rem;
  margin-top: 0;
}
.pane--footer .module_introduction {
  display: none;
}
.pane--footer .module-links {
  text-transform: uppercase;
  font-size: 1.4rem;
}
.pane--footer .module-links li:not(:last-child) {
  margin-bottom: 10px;
}
.pane--footer .module-subscribe h3 {
  margin-bottom: 34px;
}
.pane--footer .module-subscribe_list-header, .pane--footer .module-subscribe_email .module_required {
  display: none;
}
.pane--footer .module-subscribe_form {
  padding-right: 160px;
}
@media only screen and (max-width: 480px) {
  .pane--footer .module-subscribe_form {
    padding-right: 0;
  }
}
.pane--footer .module-subscribe_form tbody {
  display: block;
}
.pane--footer .module-subscribe_form tr {
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
}
.pane--footer .module-subscribe_form td {
  padding: 0;
  border: none;
}
.pane--footer .module-subscribe_table-wrap {
  position: relative;
}
.pane--footer .module-subscribe_mailing-list {
  margin: 20px 0 10px;
}
.pane--footer .module-subscribe_list > td {
  padding: 0;
}
.pane--footer .module-subscribe_list table {
  display: block;
  width: 100%;
}
.pane--footer .module-subscribe_list table tr {
  display: inline-block;
  vertical-align: top;
  width: 33.3333%;
}
@media only screen and (max-width: 768px) {
  .pane--footer .module-subscribe_list table tr {
    width: auto;
    display: block;
  }
}
.pane--footer .module-subscribe label {
  display: none;
}
.pane--footer .module-subscribe input[type=checkbox] + label::before {
  border-color: #fff;
  background-color: transparent;
  transform: translateY(0%);
}
.pane--footer .module-subscribe .module-subscribe_submit-button {
  margin: 0;
}
.pane--footer .module-subscribe input[type=checkbox]:checked + label::after {
  content: "";
  position: absolute;
  left: 5px;
  width: 8px;
  height: 8px;
  background-color: #fff;
}
.pane--footer .module-subscribe input[type=text],
.pane--footer .module-subscribe input[type=email] {
  border-color: #fff;
  color: #fff;
  border-radius: 8px;
  padding: 8px;
  height: 50px;
  font-size: 16px;
  font-weight: 500;
  background-color: transparent;
  border: 1px solid #fff;
}
.pane--footer .module-subscribe input[type=text]::placeholder,
.pane--footer .module-subscribe input[type=email]::placeholder {
  color: #fff;
}
.pane--footer .module-subscribe input[type=text]:focus,
.pane--footer .module-subscribe input[type=email]:focus {
  outline-offset: 2px;
  outline-color: #fff;
}
.pane--footer .module-subscribe .module_actions {
  margin: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  max-width: 165px;
  text-align: center;
}
@media only screen and (max-width: 480px) {
  .pane--footer .module-subscribe .module_actions {
    position: static;
    margin-top: 10px;
    margin-bottom: 20px;
    text-align: left;
  }
}
.pane--footer .module-subscribe .module_actions .button {
  width: 100%;
  border: 1px solid #fff;
  background-color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  min-width: unset;
  line-height: 20px;
  letter-spacing: 0px;
  width: 140px;
  padding: 8px 8px 8px 16px;
}
.pane--footer .module-subscribe .module_actions .button:hover {
  background-color: #e6e9eb;
  border: 1px solid #e6e9eb;
  color: #181a1b;
}
.pane--footer .module-subscribe .module_actions .button:after {
  content: "";
  background-image: url("../design/svg/mail-icon-footer.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 32px;
  height: 32px;
}
.pane--footer .module-subscribe .module_actions .button:focus {
  outline-offset: 2px;
  outline-color: #fff !important;
}
.pane--footer .module-subscribe_unsubscribe {
  display: block;
}
@media only screen and (max-width: 768px) {
  .pane--footer .module-subscribe {
    width: 100%;
  }
}
.pane--footer .module-subscribe_message--success {
  color: #00cc25;
}
.pane--footer .module_message--success {
  color: #fff;
}
.pane--footer2 {
  padding: 40px 0 24px 0;
  background-color: #001a31;
  font-size: 1.6rem;
  line-height: 20px;
}
@media screen and (max-width: 850px) {
  .pane--footer2 {
    text-align: center;
  }
}
.pane--footer2 .pane_inner {
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.pane--footer2 .pane_inner .footer2-wrapper {
  display: grid;
  grid-template-columns: max-content max-content max-content;
  justify-content: space-between;
  grid-template-rows: 1fr max-content max-content;
}
@media only screen and (max-width: 1200px) {
  .pane--footer2 .pane_inner .footer2-wrapper {
    grid-template-columns: 1fr;
    width: 100%;
    justify-content: center;
    grid-template-rows: 1fr;
    gap: 20px;
  }
}
.pane--footer2 .pane_inner .footer2-wrapper span:first-child {
  grid-column: span 3;
}
@media only screen and (max-width: 1200px) {
  .pane--footer2 .pane_inner .footer2-wrapper span:first-child {
    grid-column: unset;
  }
}
.pane--footer2 .pane_inner .footer2-wrapper span:first-child .footer-logo-social {
  display: grid;
  grid-template-columns: 1fr max-content;
  align-items: start;
  gap: 20px;
  width: 100%;
  height: 100%;
  margin-bottom: 40px;
}
.pane--footer2 .pane_inner .footer2-wrapper span:first-child .footer-logo-social > a {
  display: grid;
  align-items: center;
  height: 100%;
}
@media only screen and (max-width: 768px) {
  .pane--footer2 .pane_inner .footer2-wrapper span:first-child .footer-logo-social {
    grid-template-columns: 1fr;
    justify-content: center;
  }
  .pane--footer2 .pane_inner .footer2-wrapper span:first-child .footer-logo-social a {
    justify-self: center;
  }
}
.pane--footer2 .social.social--mobile {
  display: grid;
}
@media only screen and (max-width: 768px) {
  .pane--footer2 .social.social--mobile {
    justify-content: center;
  }
}
.pane--footer2 .social.social--mobile .social_contact {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 8px;
}
.pane--footer2 .module-cta {
  width: 100vw;
  position: relative;
  left: calc(-50vw + 50%);
  margin-left: 10px;
  background-color: #f1af0f;
  margin-bottom: 23px;
}
.pane--footer2 .module-cta .button--meeting {
  display: block;
  font-size: 1.3rem;
  color: #141c1f;
  font-weight: 500;
  padding: 23px 35px;
  height: auto;
  border: none;
  text-align: center;
  margin: auto;
}
.pane--footer2 .module-cta .button--meeting:hover {
  background-color: #dc9e27;
  color: #141c1f;
}
.pane--footer2 .module-cta .button--meeting:focus {
  outline-color: #f1af0f !important;
}
.pane--footer2 .module-links {
  margin-top: unset;
  display: inline-block;
}
.pane--footer2 .module-links_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .pane--footer2 .module-links_list {
    justify-content: center;
  }
}
@media only screen and (max-width: 480px) {
  .pane--footer2 .module-links_list {
    display: grid;
    justify-content: center;
  }
}
.pane--footer2 .module-links_list li:not(:first-child)::before {
  content: "|";
  margin: 0 10px;
}
@media only screen and (max-width: 480px) {
  .pane--footer2 .module-links_list li:not(:first-child)::before {
    display: none;
  }
}
.pane--footer2 .module-q4-credits {
  padding-top: 20px;
  display: inline-block;
}
.pane--footer2 .copyright {
  margin-top: 0;
  display: inline-block;
}
.pane--footer2 .social_links span {
  background-color: #fff;
}
@media only screen and (max-width: 1024px) {
  .pane--footer2 .social {
    display: none;
  }
}
.pane--credits .pane_inner {
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.layout_footer {
  background-color: #00213F;
  color: #fff;
}
.layout_footer a {
  color: inherit;
}

/* --------- Page Specific -------- */
/* -------- Module Specific ------- */
.module-dividends .table {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}
.module-dividends .table th {
  width: 25%;
}
.module-dividends .table th,
.module-dividends .table td {
  font-size: 1.6rem;
  line-height: 2.4rem;
  padding: 20px 30px;
}
@media (max-width: 620px) {
  .module-dividends .table--responsive thead {
    display: none;
  }
  .module-dividends .table--responsive tbody {
    border-top: none;
    border-bottom: none;
  }
  .module-dividends .table--responsive tr {
    display: flex;
    flex-direction: column;
  }
  .module-dividends .table--responsive td::before {
    content: attr(data-heading) ": ";
    font-weight: bold;
  }
}

/* HOME: Latest Presentation & Events */
.module-presentation-events .module-presentation-latest {
  height: 100%;
  position: relative;
}
@media only screen and (min-width: 1025px) {
  .module-presentation-events .module-presentation-latest .module_container--content {
    padding-right: 25px;
  }
  .module-presentation-events .module-presentation-latest .module_container--content > .grid {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
  }
  .module-presentation-events .module-presentation-latest .module_container--content > .grid > .grid_col {
    position: relative;
  }
}
.module-presentation-events .module-presentation-latest .button--cta {
  position: absolute;
  bottom: 10px;
}
.module-presentation-events .module-slideshow_link-container {
  margin-bottom: 50px;
}
@media only screen and (max-width: 1024px) {
  .module-presentation-events .module-slideshow_link-container {
    margin-bottom: 25px;
  }
}

.module-cta [class*=q4-icon_]::before {
  font-size: 16px;
  margin-right: 10px;
  vertical-align: sub;
}

.module-home-esg {
  background: rgba(20, 28, 31, 0.8) url("../design/banner/banner-home-esg.png") top center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
}
.module-home-esg_title {
  text-transform: none;
  margin-bottom: 24px;
}
.module-home-esg .h4 {
  font-weight: 500;
  text-transform: none;
  margin: 24px 100px;
}
.module-home-esg a {
  display: inline-block;
}
@media screen and (max-width: 1024px) {
  .module-home-esg .h4 {
    margin: 24px 0;
  }
}

.button-row {
  display: inline-flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  gap: 45px;
}
@media only screen and (max-width: 480px) {
  .button-row {
    display: grid;
    place-items: center;
    text-align: center;
  }
  .button-row .button.button--icon {
    width: 100%;
    justify-content: space-between;
  }
}

.contact-boxes {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, max-content);
  justify-content: center;
  column-gap: 124px;
  row-gap: 53px;
}
.contact-boxes h3 {
  margin-bottom: 9px;
}
@media only screen and (max-width: 768px) {
  .contact-boxes {
    gap: 40px;
  }
}
@media only screen and (max-width: 480px) {
  .contact-boxes {
    grid-template-columns: max-content;
  }
}

.module-key-ir-documents h2 {
  color: #fff;
  margin-bottom: 40px;
}
.module-key-ir-documents h3 {
  color: #fff;
}
.module-key-ir-documents .key-ir-documents {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 20px;
}
@media only screen and (max-width: 768px) {
  .module-key-ir-documents .key-ir-documents {
    grid-template-columns: 1fr;
  }
}
.module-key-ir-documents .key-ir-documents .item {
  display: grid;
  place-items: center;
  gap: 16px;
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .module-key-ir-documents .key-ir-documents {
    grid-template-columns: 1fr;
  }
}

.LanguageSwitch,
.LanguageSwitchde {
  position: absolute;
  top: 0;
  right: 0;
  visibility: hidden;
  background: red;
  color: white;
}

.monthly-metrics {
  display: inline-flex;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #00213F;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .monthly-metrics {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }
}
.monthly-metrics h3 {
  background-color: #00213F;
  color: #fff;
  padding: 18px 32px;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0px;
  display: grid;
  vertical-align: middle;
  text-align: center;
  min-width: max-content;
  height: 63px;
  border: none;
}
.monthly-metrics .kpis {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .monthly-metrics .kpis {
    grid-template-columns: 1fr;
    width: 100%;
  }
}
.monthly-metrics .button--kpi {
  border: none;
  border-right: 1px solid #738fb0;
  padding: 5px;
  border-radius: 0;
  margin: 0;
  height: 63px;
  display: grid;
  place-items: center;
  width: 100%;
}
.monthly-metrics .button--kpi:last-child {
  border-right: none;
}
@media only screen and (max-width: 768px) {
  .monthly-metrics .button--kpi {
    border-right: none;
    border-bottom: 1px solid #738fb0;
  }
}
.monthly-metrics span {
  display: grid;
  place-items: center;
  padding: 5px;
  width: 100%;
  height: 100%;
  height: 63px;
  color: #738fb0;
  border-right: 1px solid #738fb0;
}
.monthly-metrics span:first-child {
  border-right: 1px solid #738fb0;
}
.monthly-metrics span:last-child {
  border-right: none;
}
@media only screen and (max-width: 768px) {
  .monthly-metrics span {
    border-right: none;
    border-bottom: 1px solid #738fb0;
  }
  .monthly-metrics span:last-child {
    border-bottom: none;
  }
}

main .module_container.module_container--inner p a {
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 0.7;
}
main .module_container.module_container--inner p a:hover {
  opacity: 1;
}

.module-esg-ratings table {
  caption-side: bottom;
}
.module-esg-ratings table caption {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0px;
  text-align: left;
  color: #426389;
  padding: 8px 0;
}
.module-esg-ratings table td {
  font-size: 16px;
}
.module-esg-ratings table th:nth-child(3),
.module-esg-ratings table td:nth-child(3) {
  width: 140px;
  text-align: right;
}

.module-share-buyback-news #newsList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  height: 100%;
}
@media only screen and (max-width: 768px) {
  .module-share-buyback-news #newsList {
    grid-template-columns: 1fr;
  }
}
.module-share-buyback-news #newsList .module_item {
  height: 100%;
  display: grid;
  gap: 0;
  grid-template-rows: max-content 1fr max-content;
  border-bottom: 1px solid #203e63;
}
.module-share-buyback-news #newsList .module_item .button {
  margin-top: auto;
}

.agm-card hr {
  margin-bottom: 45px;
}
.agm-card .button--download {
  padding: 15px 16px;
}
.agm-card .agm-list {
  display: grid;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.agm-card .agm-list ul.agm-list {
  margin-bottom: 45px;
}
.agm-card .agm-list li {
  border-bottom: 1px solid #203e63;
  padding-bottom: 24px;
}
.agm-card .agm-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.agm-card header {
  display: grid;
  gap: 0px;
}
.agm-card header p,
.agm-card header h4 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  letter-spacing: 0px;
  text-align: left;
  color: #203e63;
  margin-bottom: 0;
}
.agm-card header time {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 0px;
  text-align: left;
  color: #203e63;
  margin-bottom: 0;
}
.agm-card p a {
  opacity: 1 !important;
  text-decoration: none !important;
}
.agm-card p a:hover {
  text-decoration: underline !important;
}
.agm-card p a:hover:after {
  transform: none !important;
}
.agm-card .download-link {
  margin-top: 12px;
  font-size: 14px;
  line-height: 100%;
  font-weight: 600;
  text-decoration: none;
}

/* Media Center Gallery */
.media-center_container.grid--flex {
  row-gap: 30px;
}

.gallery_item {
  margin: 5px;
  cursor: pointer;
  position: relative;
  transition: 0.3s ease-in-out;
  min-height: 50px;
  min-height: 50px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.gallery_item:hover .gallery_overlay,
.gallery_item:focus .gallery_overlay,
.gallery_item.js--focused .gallery_overlay {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.5);
}

.gallery_item:hover .gallery_icon,
.gallery_item:focus .gallery_icon,
.gallery_item.js--focused .gallery_icon {
  visibility: visible;
  opacity: 1;
}

.gallery_item img {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery_overlay {
  position: absolute;
  font-size: 0;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: transparent;
  transition: 0.3s ease-in-out;
  opacity: 0;
}

.gallery_link {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery_icons {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.gallery_icon {
  display: inline-block;
  margin: 6px;
  opacity: 0;
  transition: opacity 0.5s ease-in-out 0.3s;
  outline-color: #fff !important;
}

.gallery_icon:hover {
  transition: opacity 0.5s ease-in-out 0.3s, transform 0.3s ease-in-out;
  transform: scale(1.1);
}

.gallery_icon::before {
  content: "\e910";
  display: block;
  background-color: #00213f;
  border-radius: 50%;
  font-size: 20px;
  font-family: "q4-icons" !important;
  padding: 10px;
  color: #ffffff;
}

.gallery_icon--download::before {
  font-family: "q4-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e924";
}

.gallery_icon--print::before {
  font-family: "q4-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e922";
}

.gallery--grid {
  display: flex;
}

.gallery--grid.gallery_column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Bug 336 */
.module-split-boxes.module-split-boxes-narrow.module-esg-ratings .split-boxes table {
  table-layout: fixed;
}
.module-split-boxes.module-split-boxes-narrow.module-esg-ratings .split-boxes table th:first-child {
  width: 35%;
}
.module-split-boxes.module-split-boxes-narrow.module-esg-ratings .split-boxes table th:nth-child(2) {
  width: 20%;
}
.module-split-boxes.module-split-boxes-narrow.module-esg-ratings .split-boxes table th:nth-child(3) {
  width: 45%;
}
@media only screen and (max-width: 480px) {
  .module-split-boxes.module-split-boxes-narrow.module-esg-ratings .split-boxes table td {
    width: 100%;
    text-align: left;
  }
  .module-split-boxes.module-split-boxes-narrow.module-esg-ratings .split-boxes table td:not(:last-child) {
    padding-bottom: 5px;
  }
  .module-split-boxes.module-split-boxes-narrow.module-esg-ratings .split-boxes table td:not(:first-child) {
    padding-top: 5px;
  }
}
@media screen and (min-width: 481px) {
  .module-split-boxes.module-split-boxes-narrow.module-esg-ratings .split-boxes {
    display: block;
  }
  .module-split-boxes.module-split-boxes-narrow.module-esg-ratings .split-boxes .box--content {
    width: 100%;
    margin-bottom: 30px;
  }
}

/* Branding on the banner */
a#CybotCookiebotDialogPoweredbyCybot,
div#CybotCookiebotDialogPoweredByText {
  display: none;
}

/* Branding on the Privacy trigger */
#CookiebotWidget .CookiebotWidget-body .CookiebotWidget-main-logo {
  display: none;
}

/* Bug 681 */
.module-shareholder-structure.module-split-boxes .box--content {
  justify-content: flex-start;
}
.module-shareholder-structure.module-split-boxes table th {
  padding-top: 0;
  vertical-align: top;
}

.table--shareholder-information thead th:nth-child(2) {
  padding: 0 5px;
}
.table--shareholder-information thead th:nth-child(2),
.table--shareholder-information thead th:nth-child(3) {
  text-align: right;
}
.table--shareholder-information tbody td:nth-child(2) {
  width: 100px;
  padding: 0 5px;
}
.table--shareholder-information tbody td:nth-child(3) {
  width: 160px;
}
.table--shareholder-information tbody td:nth-child(2),
.table--shareholder-information tbody td:nth-child(3) {
  text-align: right;
}


.supervisory-faqs .module_item .module-faq_question button {
  width: 100%;
  display: inline-flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0px;
  padding: 20px 0;
  border-top: 1px solid #738fb0;
}
.supervisory-faqs .module_item .module-faq_answer > ul {
  margin: 0;
}

.evergreen .evergreen-container {
    --evgHyperlinkFontFamily: var(--fontFamilyEuclid) !important;
    --fontFamily: var(--fontFamilyEuclid) !important;
    --evgBodyFontFamily: var(--fontFamilyEuclid) !important;
    font-family: var(--fontFamilyEuclid) !important;
}

.nav--desktop--list--innerMenu {
    transition-delay: 3s;
}