:root {
  --header-height: 65px;
  --secondary-nav-height: 70px;
  --sticky-header-height: var(--header-height);
  /* Colors: */
  --map-d0dde2: #d0dde2;
  --map-93adb7: #93adb7;
  --map-e7f4ee: #e7f4ee;
  --discovery-dark-blue-005679: #005679;
  --discovery-medium-blue-196786: #196786;
  --discovery-light-blue-0e7ca6: #0e7ca6;
  --discovery-reverse-gold-fabf0e: #fabf0e;
  --discovery-dark-gold-c79d2d: #c79d2d;
  --gradient-text-262020: #262020;
  --body-text-495b64: #495b64;
  --bg-fcffff: #fcffff;
  --unnamed-color-ffffff: #ffffff;
  --table-alt-rows-eaeff0: #eaeff0;
  --tablegray-d1d9dd: #d1d9dd;
  --unnamed-color-3d474d: #3d474d;
  /* Font/text values */
  --unnamed-font-family-montserrat: Montserrat;
  --unnamed-font-family-karla: Karla;
  --unnamed-font-style-normal: normal;
  --unnamed-font-weight-600: 600px;
  --unnamed-font-weight-800: 800px;
  --unnamed-font-weight-bold: bold;
  --unnamed-font-weight-normal: normal;
  --unnamed-font-size-18: 18px;
  --unnamed-font-size-20: 20px;
  --unnamed-font-size-22: 22px;
  --unnamed-font-size-23: 23px;
  --unnamed-font-size-26: 26px;
  --unnamed-font-size-27: 27px;
  --unnamed-font-size-30: 30px;
  --unnamed-font-size-35: 35px;
  --unnamed-font-size-40: 40px;
  --unnamed-font-size-50: 50px;
  --unnamed-font-size-70: 70px;
  --unnamed-character-spacing-0: 0px;
  --unnamed-character-spacing--0-18: -0.18px;
  --unnamed-character-spacing--0-22: -0.22px;
  --unnamed-character-spacing--0-3: -0.3px;
  --unnamed-character-spacing-0-7: 0.7px;
  --unnamed-character-spacing--0-09: -0.09px;
  --unnamed-character-spacing--0-23: -0.23px;
  --unnamed-character-spacing--0-27: -0.27px;
  --unnamed-character-spacing--0-35: -0.35px;
  --unnamed-line-spacing-23: 23px;
  --unnamed-line-spacing-24: 24px;
  --unnamed-line-spacing-25: 25px;
  --unnamed-line-spacing-30: 30px;
  --unnamed-line-spacing-32: 32px;
  --unnamed-line-spacing-35: 35px;
  --unnamed-line-spacing-40: 40px;
  --unnamed-line-spacing-45: 45px;
  --unnamed-line-spacing-90: 90px;
  --unnamed-text-transform-uppercase: uppercase;
}
@media screen and (min-width: 1040px) {
  :root {
    --header-height: 70px;
    --sticky-header-height: calc(
      var(--header-height) + var(--secondary-nav-height)
    );
  }
}

/* Character Styles */
/* ==================================
 ------------ 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 ---------
================================== */
body {
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: none;
  font-family: var(--unnamed-font-family-karla);
  font-style: var(--unnamed-font-style-normal);
  font-weight: var(--unnamed-font-weight-normal);
  font-size: var(--unnamed-font-size-27);
  line-height: var(--unnamed-line-spacing-35);
  letter-spacing: var(--unnamed-character-spacing--0-27);
  color: var(--body-text-495b64);
}

* {
  scroll-margin-top: var(--sticky-header-height);
}

/* ---------- TYPOGRAPHY ---------- */
h1,
.h1 {
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 60px;
}
@media only screen and (max-width: 768px) {
  h1,
.h1 {
    font-size: 4.5rem;
  }
}
@media only screen and (max-width: 480px) {
  h1,
.h1 {
    font-size: 3.6rem;
  }
}

h2,
.h2,
.pane--footer .module_title {
  font-family: var(--unnamed-font-family-montserrat);
  font-style: var(--unnamed-font-style-normal);
  font-weight: var(--unnamed-font-weight-600);
  font-size: var(--unnamed-font-size-40);
  line-height: var(--unnamed-line-spacing-45);
  letter-spacing: var(--unnamed-character-spacing-0);
  color: var(--discovery-dark-blue-005679);
  margin-bottom: 25px;
  color: var(--discovery-dark-blue-005679);
  font-weight: 600;
}
@media only screen and (max-width: 1024px) {
  h2,
.h2,
.pane--footer .module_title {
    font-size: 25px;
    line-height: 45px;
  }
}

.module-first-heading h2.module_title {
  font-size: 4.4rem;
}

h3,
.h3 {
  /*font-size: 2.8rem;
  font-weight: 700;
  line-height: 3.4rem;
  margin: 24px 0 16px 0;
  color: $brand-color;*/
  font-family: var(--unnamed-font-family-montserrat);
  font-style: var(--unnamed-font-style-normal);
  font-weight: var(--unnamed-font-weight-800);
  font-size: var(--unnamed-font-size-26);
  line-height: var(--unnamed-line-spacing-45);
  letter-spacing: var(--unnamed-character-spacing-0);
  color: var(--discovery-dark-blue-005679);
  text-transform: var(--unnamed-text-transform-uppercase);
  font-weight: 800;
}
@media only screen and (max-width: 1024px) {
  h3,
.h3 {
    font-size: 18px;
    line-height: 45px;
  }
}
@media only screen and (max-width: 480px) {
  h3,
.h3 {
    line-height: initial;
  }
}

h4,
.h4 {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.8rem;
  margin-top: 24px;
  margin-bottom: 16px;
}

h5,
.h5 {
  font-size: 1.28rem;
  margin-bottom: 12.8px;
  text-transform: uppercase;
}

a {
  text-decoration: none;
}

a:not(.button) {
  text-decoration: none;
  color: #0e7ca6;
}
a:not(.button):hover {
  color: #0e7ca6;
}

p,
.pane--content ul,
.pane--content ol,
.pane--content table {
  /*line-height: 2.4rem;
  font-weight: 400;
  font-size: 1.6rem;*/
  font-family: var(--unnamed-font-family-karla);
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  letter-spacing: 0px;
}
@media only screen and (max-width: 1024px) {
  p,
.pane--content ul,
.pane--content ol,
.pane--content table {
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: -0.15px;
  }
}

/* ------------ 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: #0e7ca6;
}
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 #0e7ca6;
  color: #0e7ca6;
  border-radius: 0;
  font-family: "Karla", sans-serif;
  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;
  background: transparent url("../design/svg/dropdown-arrow.svg") no-repeat right 20px center;
  background-size: 14px 8px;
  padding-right: 44px;
  padding-top: 11px;
  padding-bottom: 11px;
  min-width: 120px;
  border-radius: 0px;
  border: 1px solid #c79d2d;
  font-family: var(--unnamed-font-family-karla);
  font-weight: 400;
  font-size: 20px;
  line-height: 23px;
  letter-spacing: 0px;
  color: #005679;
}
.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;
}

.pane--banner .button,
.pane--content .button,
.pane--footer .button {
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1607843137);
  border-radius: 0 !important;
  min-width: 188px;
  max-width: 100%;
}
@media only screen and (max-width: 1024px) {
  .pane--banner .button,
.pane--content .button,
.pane--footer .button {
    font-size: 15px;
    line-height: 18px;
    letter-spacing: 0px;
    padding: 10px 13px;
  }
}
.pane--banner .button::before,
.pane--content .button::before,
.pane--footer .button::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--discovery-dark-gold-c79d2d) 0% 0% no-repeat padding-box;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.3s all;
}
.pane--banner .button:hover::before,
.pane--content .button:hover::before,
.pane--footer .button:hover::before {
  width: 100%;
}

.button {
  border-color: #0e7ca6;
  background: #0e7ca6;
  color: #fff;
  padding: 15px 22px;
  border-radius: 0px;
  text-transform: uppercase;
  background: var(--discovery-dark-blue-005679) 0% 0% no-repeat padding-box;
  border: 1px solid var(--discovery-dark-gold-c79d2d);
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-bold) 21px/var(--unnamed-line-spacing-24) var(--unnamed-font-family-karla);
  letter-spacing: var(--unnamed-character-spacing-0);
  color: var(--unnamed-color-ffffff);
  text-align: center;
  position: relative;
  /*&--cta {
    border: 0 none;
    padding: 0 25px 0 0;
    font-size: 1.4rem;
    background: transparent;
    color: $brand-color--alt;
    position: relative;
    min-width: auto;
    &:hover,
    &:focus {
      color: $brand-color;
      background: transparent;
      //outline-color: $brand-color !important;
      &::after {
        right: -5px;
      }
    }
    &::after {
      @include icon(e90d);

      font-size: 20px;
      vertical-align: middle;
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      transition: right 0.5s;
    }
  }*/
}
.button:hover, .button:focus {
  background: var(--discovery-light-blue-0e7ca6) 0% 0% no-repeat padding-box;
}
.button--inverted {
  background: #0e7ca6;
  border-color: #0e7ca6;
}
.button--inverted:hover, .button--inverted:focus {
  border-color: #0e7ca6;
  background: #0e7ca6;
}
.button--inverted.js--disabled {
  background: #fff;
  border-color: #0e7ca6;
  color: #0e7ca6;
}
.button--dark {
  border-color: #0e7ca6;
  background-color: #fff;
  color: #0e7ca6;
  border-width: 2px;
}
.button--dark:hover, .button--dark:focus {
  background: #0e7ca6;
  border-color: #0e7ca6;
  color: #fff;
}
.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--plus {
  padding: 0px !important;
  position: relative;
  font-family: var(--unnamed-font-family-karla);
  font-weight: 500;
  font-size: 15px;
  line-height: 15px;
  letter-spacing: 0px;
  text-transform: capitalize;
  color: var(--discovery-light-blue-0e7ca6);
  text-decoration: none !important;
}
.button--plus::before {
  content: "";
  height: 9px;
  width: 1px;
  background-color: var(--discovery-light-blue-0e7ca6);
  position: absolute;
  right: 4px;
  bottom: 4px;
  transition: 0.3s ease-in-out all;
  opacity: 1;
}
.button--plus::after {
  content: "";
  height: 1px;
  width: 9px;
  background-color: var(--discovery-light-blue-0e7ca6);
  position: relative;
  display: inline-block;
  bottom: 4px;
  transition: 0.3s ease-in-out all;
  margin-left: 6px;
}
@media screen and (min-width: 1025px) {
  .button--plus--18 {
    font-family: var(--unnamed-font-family-karla);
    font-weight: 600;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: 0px;
  }
  .button--plus--18::before {
    bottom: 6px;
  }
  .button--plus--18:after {
    bottom: 5px;
  }
}
.button--plus:hover::before, .button--plus:focus::before {
  opacity: 0;
  right: 10px;
}
.button--plus:hover::after, .button--plus:focus::after {
  width: 23px;
}
.button--load-more {
  cursor: pointer;
  background-color: transparent;
  border: none;
  position: relative;
  margin-top: 25px;
  text-align: right;
  margin-left: auto;
  display: table;
}
.button--load-more::after {
  bottom: 5px;
}

/* ------------ COOKIE MONSTER ------------ */
.cm .cm_close-button {
  opacity: 1;
}
.cm .cm_close-button::before, .cm .cm_close-button::after {
  background-color: #0e7ca6;
}
.cm .cm_close-button:hover {
  opacity: 0.7;
}

/* ------------ TABLES ------------ */
.table {
  width: 100%;
  margin: 16px 0;
  position: relative;
  position: relative;
}
.table::before, .table::after {
  content: "";
  height: 5px;
  width: 100%;
  background: url("../design/top-bar-tables.png");
  position: absolute;
  top: -5px;
  left: 0;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.table::after {
  top: unset;
  bottom: -5px;
}
.table thead {
  background: var(--discovery-dark-blue-005679);
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-800) 17px/20px var(--unnamed-font-family-montserrat);
  letter-spacing: var(--unnamed-character-spacing-0);
  color: var(--unnamed-color-ffffff);
  font-weight: 800;
}
.table thead th {
  text-align: left;
  text-transform: uppercase;
  padding: 20px 11px 23px;
  border-bottom: 2px solid #fabf0e;
}
.table tbody tr {
  border-bottom: 1px solid #d1d9dd;
}
.table tbody tr:nth-child(odd) {
  background-color: #fff;
}
.table tbody tr:nth-child(even) {
  background-color: #eaeff0;
}
.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 td {
  font-family: var(--unnamed-font-family-karla);
  font-weight: 400;
  font-size: 17px;
  line-height: 20px;
  letter-spacing: 0px;
}
.table td:not(:last-child),
.table th:not(:last-child) {
  border-right: 1px solid #d1d9dd;
}
.table--headless tr:nth-child(even) {
  background-color: transparent;
}
.table--headless tr:nth-child(odd) {
  background-color: #eaeff0;
}
.table--headless tr:first-child {
  background-color: #0e7ca6;
  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 #0e7ca6;
    border-bottom: 2px solid #0e7ca6;
  }
  .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: #eaeff0;
}
.table--analyst tbody tr:nth-child(odd),
.table--analyst tbody tr:nth-child(even) {
  background-color: transparent;
}
.table--analyst tbody th {
  color: #495b64;
}
.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: #eaeff0;
}

.highcharts-data-table .table tbody th {
  color: #495b64;
  text-align: left;
}

/* --------- SPECIAL BOXES -------- */
.code {
  margin: 32px 0;
  padding: 20px 15px;
  background: #eaeff0;
  border-left: 3px solid rgba(14, 124, 166, 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: #eaeff0;
  border-left: 3px solid rgba(14, 124, 166, 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;
}

ul li::marker {
  color: #c79d2d;
}

/* ==================================
 -------- 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-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 !important;
}

.lowercase {
  text-transform: lowercase;
}

.background--cover {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.background--brand {
  background-color: #0e7ca6;
}

.background--alt-brand {
  background-color: #0e7ca6;
}

.background--dark {
  background-color: #141c1f;
  color: #fff;
}

.background--light {
  background-color: #fff;
}

.background--grey {
  background-color: #eaeff0;
}

.background--grey-alt {
  background-color: #f7f7f7;
}

.background--blue {
  background-color: var(--discovery-dark-blue-005679);
}

.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: #0e7ca6;
}

.color--light {
  color: #fff;
}

.color--dark {
  color: #141c1f;
}

.color--grey {
  color: #eaeff0;
}

.color--success {
  color: #006613;
}

.color--error {
  color: #b72121;
}

.dark {
  color: #fff;
  background-color: #141c1f;
}
.dark a {
  color: #fff;
}
.dark .button {
  background-color: transparent;
}
.dark .button:hover {
  background-color: #0e7ca6;
}

.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 #0e7ca6;
  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: #151f9f;
  border-color: #151f9f;
  color: #fff;
}

.module-stock-historical .module_options-submit, .primary-cta--filled {
  background-color: #0e7ca6;
}

.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: #0e7ca6;
  font-size: 1.6rem;
  line-height: 2.4rem;
}
.hyperlink:hover {
  text-decoration: underline;
  color: #151f9f;
}

.hyperlink--alt {
  color: #fff;
}
.hyperlink--alt:hover {
  color: #fff;
}

.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 .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;
}

.gold-text .module_title,
.gold-text .title {
  color: var(--discovery-reverse-gold-fabf0e);
}
.gold-text .button--plus {
  color: var(--discovery-reverse-gold-fabf0e) !important;
}
.gold-text .button--plus::before, .gold-text .button--plus::after {
  background-color: var(--discovery-reverse-gold-fabf0e);
}

.background--blue {
  background: var(--discovery-dark-blue-005679) 0% 0% no-repeat padding-box;
}
.background--blue .h3 {
  color: var(--discovery-reverse-gold-fabf0e);
}
/* ==================================
 --------- 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;*/
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible,
button:focus-visible,
[href]:focus-visible,
[tabindex]:focus-visible,
[contentEditable=true]:focus-visible,
.module_add-to-calendar-reveal:focus-visible,
a:focus-visible,
input[type=checkbox]:focus-visible + label::before,
input[type=radio]:focus-visible + label::before,
.radio--btn input[type=radio]:focus-visible + label {
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #005fcc;
  border-radius: 4px !important;
  outline: none !important;
}

svg a:focus,
svg a:focus-visible {
  outline: #005fcc auto 5px !important;
}

.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: 5px;
  font-family: Arial, sans-serif;
  color: black;
  background: white;
  line-height: normal;
  transform: translate(0, -50%);
  z-index: 200;
  font-size: 12px;
  white-space: nowrap;
  margin-left: 5px;
}
.tooltip[data-position=left] {
  transform: translate(-100%, -50%);
  margin-left: -5px;
}
.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: 10px;
}
.module_add-to-calendar-reveal {
  color: #0e7ca6;
  cursor: pointer;
}
.module_add-to-calendar-reveal:hover {
  color: #0e7ca6;
}
.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-top: 7px;
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-normal) var(--unnamed-font-size-18)/var(--unnamed-line-spacing-23) var(--unnamed-font-family-karla);
  letter-spacing: var(--unnamed-character-spacing-0);
  color: var(--body-text-495b64);
}
@media only screen and (max-width: 1024px) {
  .module_date-time {
    font-size: 15px;
  }
}
.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 {
  font-family: var(--unnamed-font-family-karla);
  font-style: var(--unnamed-font-style-normal);
  font-weight: var(--unnamed-font-weight-normal);
  font-size: var(--unnamed-font-size-18);
  line-height: var(--unnamed-line-spacing-25);
  letter-spacing: var(--unnamed-character-spacing--0-09);
  color: var(--unnamed-color-ffffff);
}
.module_headline-link {
  color: #495b64;
  font-family: var(--unnamed-font-family-karla);
  font-style: var(--unnamed-font-style-normal);
  font-weight: var(--unnamed-font-weight-normal);
  font-size: var(--unnamed-font-size-18);
  line-height: var(--unnamed-line-spacing-25);
  letter-spacing: var(--unnamed-character-spacing--0-09);
  color: var(--unnamed-color-ffffff);
}
.module_headline-link:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 1024px) {
  .module_headline-link {
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0px;
  }
}
.module_headline-text,
.module_headline-text p:not([class*=module_date-time]),
.module_headline-text span:not([class*=module_date-time]) {
  font-family: var(--unnamed-font-family-montserrat);
  font-style: var(--unnamed-font-style-normal);
  font-weight: var(--unnamed-font-weight-bold);
  font-size: var(--unnamed-font-size-18);
  line-height: var(--unnamed-line-spacing-25);
  letter-spacing: var(--unnamed-character-spacing--0-18);
  color: var(--discovery-dark-blue-005679);
}
@media only screen and (max-width: 1024px) {
  .module_headline-text,
.module_headline-text p:not([class*=module_date-time]),
.module_headline-text span:not([class*=module_date-time]) {
    font-size: 18px;
    line-height: 23px;
  }
}
.module_headline-text p {
  margin: 0;
}
.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: #151f9f;
}
.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;
}
.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: #151f9f;
}
.module_loader {
  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 #0e7ca6;
  color: #495b64;
  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: #0e7ca6;
  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: #495b64;
}
.module_pager a[href] {
  color: #0e7ca6;
}
.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: #495b64;
}
.module_required-text {
  font-size: 1.3rem;
  color: #495b64;
}
.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_input[type=search], .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;
  background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;
  border: 1px solid var(--discovery-dark-gold-c79d2d);
  border-radius: 0;
  font-family: inherit;
  font-size: 1.2rem;
  color: #005679;
  border-radius: 0px;
  border: 1px solid #c79d2d;
  font-family: var(--unnamed-font-family-karla);
  font-weight: 400;
  font-size: 20px;
  line-height: 23px;
  letter-spacing: 0px;
}
.module_input[type=text]::-ms-clear, .module_input[type=email]::-ms-clear, .module_input[type=file]::-ms-clear, .module_input[type=search]::-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_input[type=search]:-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 $brand-color--alt;
    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: #0e7ca6;
  margin-bottom: 15px;
}

/* - 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: #0e7ca6;
  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: #0e7ca6;
  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 #0e7ca6;
    border-bottom: 2px solid #0e7ca6;
  }
  .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: #0e7ca6;
}

/* -------- 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: #0e7ca6;
  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 #0e7ca6;
  transition: 0.3s ease-in-out;
}
.careers-join-us .join-us-container .cta:hover {
  background-color: #0e7ca6;
}

/* -------- Contacts Module CSS ------- */
.module-contact-corporate .module_container--outer, .module-contact-transfer .module_container--outer {
  position: relative;
}
.module-contact-corporate .q4icons_icon, .module-contact-transfer .q4icons_icon {
  margin-right: 10px;
  display: none;
}
.module-contact-corporate .q4icons a, .module-contact-transfer .q4icons a {
  display: block;
  margin-top: 10px;
  text-decoration: underline;
}
.module-contact-corporate .q4icons a[href*=tel], .module-contact-transfer .q4icons a[href*=tel] {
  text-decoration: none;
  color: var(--body-text-495b64);
}
.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-corporate .divider, .module-contact-transfer .divider {
  margin-top: 31px;
  margin-bottom: 19px;
  border-top: 1px solid #c79d2d;
}
.module-contact-corporate .module_title, .module-contact-transfer .module_title {
  margin-bottom: 28px;
  text-transform: none;
}
.module-contact-corporate p, .module-contact-transfer p {
  margin: 0;
}
.module-contact-corporate .module-contact-corporate_name, .module-contact-transfer .module-contact-corporate_name {
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-bold) var(--unnamed-font-size-22)/var(--unnamed-line-spacing-30) var(--unnamed-font-family-montserrat);
  letter-spacing: var(--unnamed-character-spacing--0-22);
  color: var(--discovery-dark-blue-005679);
  margin-bottom: 18px;
}
@media only screen and (max-width: 1024px) {
  .module-contact-corporate .module-contact-corporate_name, .module-contact-transfer .module-contact-corporate_name {
    font-size: 18px;
    leading-trim: NONE;
    line-height: initial;
    letter-spacing: 0px;
  }
}
.module-contact-corporate {
  padding-bottom: 50px !important;
  position: relative;
}
.module-contact-corporate::after {
  content: "";
  position: absolute;
  height: 3px;
  background: linear-gradient(90deg, #bd8b26 0%, #fcba32 10%, #c08d26 20%, #a19574 30%, #a6afb5 40%, #bac4c9 50%, #929aa1 60%, #a59368 70%, #bc8c28 80%, #ebb934 90%, #bd8b26 100%);
  width: 100%;
  bottom: 0;
  left: 0;
}
.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: #eaeff0;
}
.module-committee .module_items-container {
  padding: 15px;
  margin: 0 0 15px 0;
  background: #eaeff0;
}
.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: #0e7ca6;
}
.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;
}

.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: #495b64;
  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: #151f9f !important;
  color: #fff;
}
.diversity-matrix table tr .bod-light {
  background-color: #eaeff0 !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;
  }
}
/* ----- Download List Module ----- */
.module-downloads .module_nav {
  display: none;
}
.module-downloads .module_item {
  padding: 24px 0 14px;
  border-bottom: 1px solid #c79d2d;
  display: flex;
  align-items: center;
  column-gap: 40px;
  justify-content: space-between;
  line-height: 0;
  border-top: none;
}
.module-downloads .module_item:first-child {
  padding-top: 0;
}
@media only screen and (max-width: 480px) {
  .module-downloads .module_item {
    display: block;
  }
  .module-downloads .module_item .module_headline-text {
    margin-bottom: 10px;
  }
}
.module-downloads .module_item .module_headline-text,
.module-downloads .module_item .module_headline-text p {
  font-family: var(--unnamed-font-family-montserrat);
  font-style: var(--unnamed-font-style-normal);
  font-weight: var(--unnamed-font-weight-bold);
  font-size: var(--unnamed-font-size-18);
  line-height: var(--unnamed-line-spacing-25);
  letter-spacing: var(--unnamed-character-spacing--0-18);
  color: var(--discovery-dark-blue-005679);
}
@media only screen and (max-width: 1024px) {
  .module-downloads .module_item .module_headline-text,
.module-downloads .module_item .module_headline-text p {
    font-size: 18px;
    line-height: 23px;
  }
}
.module-downloads .module_item .module_headline-text p {
  margin: 0;
}
.module-downloads .module_item .module_links {
  margin: 0;
  position: relative;
  top: 0px;
  min-width: 165px;
}
@media only screen and (max-width: 1024px) {
  .module-downloads .module_item .module_links {
    min-width: 140px;
  }
}
.module-downloads .module_item .module_links .button--plus {
  margin-left: 32px;
}
@media screen and (max-width: 991px) {
  .module-downloads .module_item .module_links .button--plus {
    display: table;
    margin-left: unset;
  }
  .module-downloads .module_item .module_links .button--plus:first-child:not(:last-child) {
    margin-bottom: 10px;
  }
}
.module-downloads_thumbnail, .module-downloads_description, .module-downloads_date {
  display: none;
}
.module-downloads_title {
  position: relative;
}
.module-downloads_title-link {
  margin: 0 20px 0 0;
  font-size: 1.6rem;
  line-height: 2.4rem;
}
.module-downloads .q4icons_icon {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
.module-downloads--bigger .module_links {
  text-align: right;
}
@media screen and (min-width: 1025px) {
  .module-downloads--bigger .module_item .module_headline-text span {
    font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-normal) var(--unnamed-font-size-18)/var(--unnamed-line-spacing-23) var(--unnamed-font-family-karla);
    letter-spacing: var(--unnamed-character-spacing-0);
    color: var(--body-text-495b64);
  }
}
@media screen and (max-width: 991px) {
  .module-downloads--bigger .module_item .button--plus::after {
    bottom: 5px;
  }
}

.module-downloads-card .module_container--content {
  display: flex;
  flex-wrap: wrap;
}
.module-downloads-card .module_item {
  padding: 15px 0;
  border-top: none;
  transition: all 0.2s ease-in-out;
  position: relative;
  bottom: 0;
}
.module-downloads-card .module_item:hover {
  bottom: 7px;
}
.module-downloads-card .module_item:hover .module-downloads-card_title-link {
  box-shadow: none;
}
.module-downloads-card_title {
  margin: 0 25px 10px 0;
  height: calc(100% - 35px);
}
.module-downloads-card_title-link {
  position: relative;
  width: 100%;
  background-color: #fff;
  color: #000;
  padding: 25px 10px;
  padding-left: 60px;
  font-size: 1.6rem;
  line-height: 2.4rem;
  text-transform: capitalize;
  border-radius: 5px;
  border: 1px solid #0e7ca6;
  box-shadow: 0 2px 0 #2431d8;
  display: flex;
  align-items: center;
  height: 100%;
}
.module-downloads-card_revision {
  font-size: 1.2rem;
  line-height: 2.6rem;
  color: #535456;
}
.module-downloads-card .q4icons_icon {
  position: absolute;
  color: #0e7ca6;
  top: 50%;
  left: 10px;
  transform: translate(0, -50%);
}
.module-downloads-card .q4icons_icon::before {
  font-size: 30px;
}

/* --------- Event Module --------- */
.module-event .module {
  /*&_item {
    padding: 0;
    border: 0 none;
    & ~ .module_item {
      border-top: 0 none;
    }
    &:not(:last-child) {
      margin-bottom: 10px;
    }
    &-wrap {
      padding: 30px 30px 10px 30px;
    }
  }*/
}
.module-event .module_location, .module-event .module_speakers h4, .module-event .module_speakers .h4, .module-event .module_body {
  display: none;
}
.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 {
  /*&_links--separator {
    > *:not(:first-child)::before {
      content: '|';
      margin: 0 10px;
      font-size: 14px;
      vertical-align: top;
      @include layout-small {
        content: none;
      }
    }
    > .js--hidden:first-child + *::before {
      content: none;
    }
    .module_link {
      margin-right: 0;
    }
    .module_attachments li:not(:first-child)::before,
    .module_financials li:not(:first-child)::before {
      content: '|';
      margin: 0 10px;
      font-size: 14px;
      vertical-align: top;
      @include layout-small {
        content: none;
      }
    }
    // fix event details
    .module_add-to-calendar.js--hidden + .module_webcast::before,
    .module_add-to-calendar + .module_webcast:empty + *::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;
  }
}
@media only screen and (max-width: 768px) {
  .module-event-details .module_reminder .grid_col {
    margin-bottom: 20px;
  }
}
.module-event-home {
  height: 100%;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .module-event-home {
    margin-top: 25px;
    margin-left: -25px;
    margin-right: -25px;
    padding-left: 25px;
    padding-right: 25px;
    background: #eaeff0;
  }
}
.module-event-home .module_container--content {
  margin-bottom: 50px;
}
.module-event-home .module_links {
  display: flex;
  flex-wrap: wrap;
}
.module-event-home .module_link {
  margin: 0 15px 0 0;
}
.module-event-home .module_link-text {
  font-weight: 600;
  vertical-align: middle;
  padding: 5px 0;
}
.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-size: 18px;
  font-size: 1.8rem;
}
.module-event-home .module_item {
  padding: 0;
}
.module-event-home .module_item:not(:last-child) {
  margin-bottom: 10px;
}
.module-event-home .module_item ~ .module_item {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 20px;
  margin-top: 20px;
}
.module-event-home.background--grey .module_item-wrap {
  background-color: #fff;
}
.module-event-home .button--cta {
  position: absolute;
  bottom: 60px;
}
.module-event-home .button {
  margin: 0;
  position: absolute;
  bottom: 70px;
}
@media only screen and (max-width: 1024px) {
  .module-event-home .button {
    position: unset;
    margin-bottom: 20px;
  }
}
.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: #eaeff0;
}
.module-event-latest .module_links {
  margin: 0;
}
.module-event-latest.background--grey .module_item-wrap {
  background-color: #fff;
}
.module-event-upcoming .module {
  /*&_date-time {
    font-size: 1.6rem;
    line-height: 2.4rem;
    font-weight: 400;
    margin-bottom: 10px;
  }
  &_headline {
    &-link {
      font-weight: 500;
      font-size: 1.8rem;
      line-height: 2.8rem;
    }
  }
  &_links {
    font-size: 1.2rem;
    font-weight: 600;
  }*/
}
.module-event-upcoming .module_nav {
  display: none;
}
.module-event-upcoming--ev-page .module_headline-text a {
  display: block;
}
.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: #0e7ca6;
}
.module-event-calendar_splash p {
  font-size: 1.4rem;
  line-height: 1.2;
}
.module-event-calendar_controls {
  padding: 20px 15px;
  background-color: #0e7ca6;
  color: #fff;
  text-align: center;
  font-size: 2.4rem;
}
.module-event-calendar_controls button {
  color: inherit;
  background-color: transparent;
  border: 0;
  padding: 5px 0;
}
.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 #eaeff0;
  padding-bottom: 10px;
  display: table;
  table-layout: fixed;
  width: 100%;
}
.module-event-calendar_week {
  display: table-row;
  background-color: #eaeff0;
  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: #0e7ca6;
  color: #fff;
}
.module-event-calendar_day--event {
  cursor: pointer;
}
.module-event-calendar_day--event > span {
  background-color: #0e7ca6;
  color: #fff;
}
.module-event-calendar_day--adjacent-month {
  color: rgba(73, 91, 100, 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: #0e7ca6;
  border-radius: 3px;
}
.module-event-calendar_legend li.module-event-calendar_legend-item--current::before {
  background-color: #0e7ca6;
}
@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: #0e7ca6;
  border-color: transparent;
}
.module-event-archive .module_pager .pager_button.js--active {
  color: #fff;
  background-color: #0e7ca6;
}

.module-upcoming-events-agm {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.module-upcoming-events-agm .grid_col.full {
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .module-upcoming-events-agm .module-event-upcoming {
    padding-top: 77px !important;
    padding-bottom: 62px !important;
  }
}
@media screen and (min-width: 1025px) {
  .module-upcoming-events-agm .module-event-upcoming:not(.full) {
    padding-right: 10px;
  }
}
@media screen and (min-width: 1025px) {
  .module-upcoming-events-agm .module-annual-general-meeting {
    padding-top: 77px !important;
    padding-bottom: 36px !important;
    padding-left: 30px;
  }
}
@media only screen and (max-width: 1024px) {
  .module-upcoming-events-agm .module-annual-general-meeting {
    margin-bottom: 30px;
  }
}
.module-upcoming-events-agm .module-annual-general-meeting .module-agm {
  padding-bottom: 0 !important;
}
.module-upcoming-events-agm .module-annual-general-meeting .module_item {
  padding: 0;
}
.module-upcoming-events-agm .module-annual-general-meeting .module_item .module_row {
  display: flex;
  flex-wrap: wrap;
  padding-top: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #c79d2d;
}
.module-upcoming-events-agm .module-annual-general-meeting .module_item .module_row:first-child {
  border-top: 2px solid #c79d2d;
}
.module-upcoming-events-agm .module-annual-general-meeting .module_item .module_row .module_title {
  width: 35%;
  padding-right: 20px;
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-bold) var(--unnamed-font-size-18)/var(--unnamed-line-spacing-25) var(--unnamed-font-family-montserrat);
  letter-spacing: var(--unnamed-character-spacing--0-18);
  color: var(--discovery-dark-blue-005679);
}
.module-upcoming-events-agm .module-annual-general-meeting .module_item .module_row .module_text {
  width: 65%;
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-normal) var(--unnamed-font-size-18)/var(--unnamed-line-spacing-23) var(--unnamed-font-family-karla);
  letter-spacing: var(--unnamed-character-spacing-0);
  color: var(--body-text-495b64);
}
.module-upcoming-events-agm .module-annual-general-meeting .module_item .module_row .module_text .module_item {
  border-bottom: none;
}
.module-upcoming-events-agm .module-annual-general-meeting .module_item .module_row .module_text .module_item:not(:last-child) {
  margin-bottom: 10px;
}

/* ---------- 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;
  background-color: #eaeff0;
}
.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 #c4c4c4;
}
.module-faq .module_item:last-child {
  border-bottom: 1px solid #c4c4c4;
}
.module-faq .module_item > h4, .module-faq .module_item > .h4 {
  margin: 0;
  padding: 0;
  color: #0e7ca6;
}
.module-faq .module_item > h4 button, .module-faq .module_item > .h4 button {
  color: inherit;
  width: 100%;
  padding: 20px 0;
  font-family: "Karla", sans-serif;
  font-size: 1.8rem;
  line-height: 2.8rem;
  font-weight: 500;
  background: unset;
  border: unset;
}
.module-faq .module_item > h4 button::before, .module-faq .module_item > .h4 button::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: "\edc2";
  float: right;
  margin-left: 10px;
  color: #0e7ca6;
  font-weight: 700;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.module-faq .module_item.js--active > h4, .module-faq .module_item.js--active > .h4 {
  color: #0e7ca6;
}
.module-faq .module_item.js--active > h4 button::before, .module-faq .module_item.js--active > .h4 button::before {
  content: "\edba";
}
.module-faq .module_item.js--active button {
  color: #0e7ca6;
}
.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: #0e7ca6;
  margin-left: 0;
}
.module-faq .toggle-all .button:hover {
  background-color: #151f9f;
}

/* --- 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: #eaeff0;
}
.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: 1340px) {
  .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: 1340px) {
  .module-financial-year-option3 .module_links {
    padding-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1340px) {
  .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: #eaeff0;
  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: Montserrat, sans-serif;
  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: inherit;
  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: #0e7ca6;
}
.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: #eaeff0;
  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: #0e7ca6;
  cursor: not-allowed;
}
.module-financial-table .doc-missing {
  opacity: 0.3;
}
.module-financial-table_header {
  display: flex;
  background-color: #151f9f;
  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 #495b64;
}
.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: #eaeff0;
  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: #495b64;
}
.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: #151f9f;
  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: #0e7ca6;
}
@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: #151f9f;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.module-financial-columns .module-financial_year-text {
  color: #0e7ca6;
  background-color: #eceff0;
  font-family: "Montserrat", serif;
  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;
}

@media screen and (min-width: 1025px) {
  .module-financial-quarter {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
}
.module-financial-quarter .module_title {
  color: #fabf0e;
}
.module-financial-quarter p,
.module-financial-quarter li {
  color: #fff;
}
.module-financial-quarter .module-financial_year-text {
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-bold) var(--unnamed-font-size-20)/var(--unnamed-line-spacing-25) var(--unnamed-font-family-montserrat);
  color: var(--unnamed-color-ffffff);
  text-transform: none;
}
@media only screen and (max-width: 1024px) {
  .module-financial-quarter .module-financial_year-text {
    line-height: initial;
    font-size: 18px;
  }
}
.module-financial-quarter .module-financial_year-text .small {
  font-size: 14px;
  display: block;
  font-weight: 500;
  font-style: italic;
  margin-top: 5px;
}
@media screen and (max-width: 1300px) {
  .module-financial-quarter .module-financial_year-text {
    line-height: initial;
  }
}
.module-financial-quarter .module_item {
  display: flex;
  justify-content: space-between;
  border: none;
  border-bottom: 1px solid #c79d2d !important;
}
@media only screen and (max-width: 480px) {
  .module-financial-quarter .module_item {
    flex-wrap: wrap;
  }
}
.module-financial-quarter .module_item .module_links {
  margin: 0;
  padding: 0 0 0 30px;
  background-color: transparent;
  border: none;
  min-width: 240px;
  text-align: right;
  position: relative;
  top: -9px;
}
@media only screen and (max-width: 480px) {
  .module-financial-quarter .module_item .module_links {
    width: 100%;
    text-align: left;
    top: 0;
    padding-left: 0;
  }
  .module-financial-quarter .module_item .module_links div:first-child .module_link-text {
    margin-left: 0;
  }
}
@media screen and (max-width: 1300px) {
  .module-financial-quarter .module_item {
    padding-bottom: 10px;
  }
}
.module-financial-quarter .module_item:not(:first-child) {
  padding-top: 10px;
}
.module-financial-quarter .module_item .button--plus {
  color: #fabf0e;
}
.module-financial-quarter .module_item .button--plus::before, .module-financial-quarter .module_item .button--plus::after {
  background-color: #fabf0e;
}
@media screen and (min-width: 1025px) {
  .module-financial-quarter .module-financial-statements-and-aif,
.module-financial-quarter .module-regulatory-filings {
    padding-top: 61px !important;
    padding-bottom: 62px !important;
  }
}
.module-financial-quarter .module-financial-statements-and-aif {
  flex-basis: 70%;
  max-width: 70%;
  padding-right: 52px;
}
@media only screen and (max-width: 1024px) {
  .module-financial-quarter .module-financial-statements-and-aif {
    padding-right: 0;
    flex-basis: 100%;
    max-width: 100%;
  }
}
.module-financial-quarter .module-regulatory-filings {
  flex-basis: 30%;
  max-width: 30%;
}
@media only screen and (max-width: 1024px) {
  .module-financial-quarter .module-regulatory-filings {
    flex-basis: 100%;
    max-width: 100%;
    margin-top: 30px;
  }
}

/* ------ 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: #0e7ca6;
  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: #495b64;
}
.module-form--meeting .module_dropdown {
  color: #495b64;
}
.module-form--meeting .module_input {
  color: #495b64;
}
.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: #495b64;
  font-weight: normal;
}
.module-glossary .module_header table a[href] {
  color: #0e7ca6;
}

/* ---------- HISTORY Module ---------- */
.module-history .option-1 {
  padding: 0 calc(6% + 25px);
}
.module-history .option-1 h3 {
  color: #333;
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 400;
  margin: 0;
}
.module-history .option-1 .module_date-time {
  color: #333;
  font-size: 1.2rem;
  padding-top: 27px;
}
.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: #0e7ca6;
  height: 18px;
  width: 18px;
  border-radius: 100px;
  z-index: 999;
  position: relative;
  right: 20px;
  top: 10px;
}
.module-history .option-1 .splide__slide::after {
  content: "";
  position: absolute;
  display: block;
  height: 48px;
  width: 1px;
  background: #0e7ca6;
  border-radius: 100%;
  top: 22px;
  left: 8px;
  z-index: 0;
  margin: auto;
  transform: translateZ(-1px);
}
.module-history .option-1 .splide__slide.is-active {
  padding: 0 0 0 40px;
}
.module-history .option-1 .splide__slide.is-active::before {
  content: "";
  background-image: url("../design/svg/oval-active.svg");
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  right: 40px;
  top: 0;
}
.module-history .option-1 .splide__slide.is-active::after {
  left: 20px;
}
.module-history .option-1 .splide__arrow {
  top: 22px;
}
.module-history .option-1::before {
  content: "";
  position: relative;
  display: block;
  height: 5px;
  background: #0e7ca6;
  border-radius: 100px;
  top: 22px;
  z-index: 0;
  margin: auto;
  transform: translateZ(-1px);
}
.module-history .option-2 {
  padding-top: 30px;
}
.module-history .option-2 h3 {
  color: #0e7ca6;
  font-size: 1.8rem;
  line-height: 2.8rem;
  font-weight: 500;
  margin: 10px 0;
}
.module-history .option-2 .module_date-time {
  color: #0e7ca6;
  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: #0e7ca6;
  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: #0e7ca6;
  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: #0e7ca6;
  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: #0e7ca6;
  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: #0e7ca6;
  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: #0e7ca6;
  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 #0e7ca6;
  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: #0e7ca6;
  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: #151f9f;
}
.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: #0e7ca6;
  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 #151f9f;
}
.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;
}

/* ------------------ 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: "Montserrat", serif;
  font-size: 4.8rem;
  font-weight: 500;
  line-height: 1.21;
  color: #0e7ca6;
}
.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: "Karla", sans-serif;
  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 {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 2.8rem;
}
.module-slideshow_date {
  color: #0e7ca6;
  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;
}

/* ------ 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: inherit;
  font-size: inherit;
}
.nav--main li {
  display: inline-block;
  position: relative;
}
.nav--main li a {
  display: block;
  padding: 10px 5px;
  color: #495b64;
  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: #0e7ca6;
}
.nav--main .level2 {
  display: inline-block;
  vertical-align: top;
}
.nav--main .level2 > li {
  padding: 10px 0;
}
.nav--main .level3 {
  display: none;
  background-color: #0e7ca6;
  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 #0e7ca6;
  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: #0d7096;
  text-align: center;
  line-height: 1.25;
  letter-spacing: 1px;
  display: none;
}
.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: 1340px;
  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: #0d7096;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 15px 20px;
}
.nav--secondary .level3 > li a:hover, .nav--secondary .level3 > li a:focus {
  background: #2b2a32;
}
.nav--secondary .level3 > li a:focus {
  margin: 2px;
  padding: 13px 18px;
}
.nav--secondary .level3 > li.selected a {
  background: #2b2a32;
}
.nav--sitemap {
  max-width: 1340px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 42px;
  padding-bottom: 42px;
}
.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: 320px;
  max-width: 100%;
  background: var(--bg-fcffff) 0% 0% no-repeat padding-box;
  overflow-y: auto;
  position: fixed;
  will-change: transform;
  top: 0;
  height: calc(100% - 95px);
  box-shadow: rgba(0, 0, 0, 0.2) 0 8px 24px;
  z-index: 300;
  overflow: initial;
  -webkit-transform: translate(0px, 95px);
  transform: translate(0px, 95px);
  right: 0;
  transition: unset !important;
  padding-bottom: 25px;
}
@media screen and (min-width: 1150px) {
  .nav--mobile {
    display: none !important;
  }
}
.nav--mobile::before, .nav--mobile:after {
  content: "";
  height: 5px;
  width: 100%;
  display: block;
  background: url("../design/svg/dropdown-top-bar.svg");
  background-position: center;
}
.nav--mobile:after {
  position: absolute;
  bottom: 0;
}
.nav--mobile--toggle {
  display: none;
  font-size: 1.6rem;
  color: var(--discovery-dark-blue-005679);
  background: transparent;
  border: 0 none;
  margin: 0;
  padding: 0;
  outline-color: var(--discovery-dark-blue-005679);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0px;
  cursor: pointer;
  float: none;
}
.nav--mobile--toggle[aria-expanded=false] {
  color: var(--discovery-dark-blue-005679);
}
.nav--mobile--toggle [class^=q4-icon_]:focus,
.nav--mobile--toggle [class*=" q4-icon_"]:focus {
  outline: none;
}
.nav--mobile--toggle [class^=q4-icon_]::before,
.nav--mobile--toggle [class*=" q4-icon_"]::before {
  content: "";
  background: url("../design/svg/mobile-hamburger-menu-btn.svg");
  width: 33px;
  height: 27px;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media only screen and (max-width: 1150px) {
  .nav--mobile--toggle {
    display: block;
  }
}
.nav--mobile--inner_toggle_container .nav--mobile--toggle {
  position: absolute;
  color: var(--discovery-dark-blue-005679);
  float: none;
  -webkit-transform: translate(-19px, -41px);
  top: 1px;
  right: 2px;
}
.nav--mobile--inner_toggle_container .nav--mobile--toggle .q4-icon_menu {
  display: block;
}
.nav--mobile--inner_toggle_container .nav--mobile--toggle .q4-icon_menu::before {
  content: "";
  background-image: url("../design/svg/mobile-close-btn.svg");
}
.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: unicode('ed6d');*/
}
.nav--mobile--search_container {
  display: none;
  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: #0d1315;
  width: 100%;
}
.nav--mobile--search_container--input {
  -webkit-box-shadow: 0 0 0 30px #0d1315 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: "Karla", sans-serif;
}
.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, .nav--mobile--panel--topMenu {
  padding-left: 40px !important;
  padding-right: 40px !important;
  text-align: left;
  height: 100%;
  overflow: auto;
}
.nav--mobile--expand--topMenu--menuItem, .nav--mobile--panel--topMenu--menuItem {
  display: block;
  position: relative;
  width: 100%;
  padding: 10px 0 0;
  overflow: auto;
}
.nav--mobile--expand--topMenu--menuItem:first-child, .nav--mobile--panel--topMenu--menuItem:first-child {
  padding-top: 20px;
}
.nav--mobile--expand--topMenu--menuItem:hover, .nav--mobile--panel--topMenu--menuItem:hover {
  text-decoration: none;
}
.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: 0px 0;
  margin: 0 0px;
  font-weight: normal;
  letter-spacing: 0.5px;
  background-color: transparent;
  text-transform: capitalize;
  color: var(--discovery-dark-blue-005679);
  border: none;
  min-width: auto;
  transition: none;
  font-family: "Montserrat", serif !important;
  font-size: 15px !important;
  font-weight: 600;
  line-height: 19px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--discovery-dark-blue-005679);
  text-align: left;
  outline-color: var(--discovery-dark-blue-005679);
  text-decoration: none !important;
  background: none !important;
}
.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: var(--discovery-dark-blue-005679) !important;
  border-radius: 0;
}
.nav--mobile--expand--topMenu--menuItem .link:hover,
.nav--mobile--expand--topMenu--menuItem .button:hover, .nav--mobile--panel--topMenu--menuItem .link:hover,
.nav--mobile--panel--topMenu--menuItem .button:hover {
  color: #0e7ca6;
}
.nav--mobile--expand--topMenu--menuItem .link .icon,
.nav--mobile--expand--topMenu--menuItem .button .icon, .nav--mobile--panel--topMenu--menuItem .link .icon,
.nav--mobile--panel--topMenu--menuItem .button .icon {
  display: none !important;
}
.nav--mobile--expand--topMenu--menuItem.selected > a .text,
.nav--mobile--expand--topMenu--menuItem.selected > button .text, .nav--mobile--expand--topMenu--menuItem.expanded > a .text,
.nav--mobile--expand--topMenu--menuItem.expanded > button .text, .nav--mobile--panel--topMenu--menuItem.selected > a .text,
.nav--mobile--panel--topMenu--menuItem.selected > button .text, .nav--mobile--panel--topMenu--menuItem.expanded > a .text,
.nav--mobile--panel--topMenu--menuItem.expanded > button .text {
  border-bottom: 5px solid #c79d2d;
}
.nav--mobile--expand--topMenu--menuItem .button, .nav--mobile--panel--topMenu--menuItem .button {
  width: fit-content;
  border: none;
  font-family: inherit;
  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: none;
}
.nav--mobile--expand--innerMenu, .nav--mobile--panel--innerMenu {
  width: 100%;
  text-align: left;
}
.nav--mobile--expand--innerMenu .link,
.nav--mobile--expand--innerMenu .button, .nav--mobile--panel--innerMenu .link,
.nav--mobile--panel--innerMenu .button {
  color: #495b64;
  text-transform: none;
  font-family: "Karla", sans-serif !important;
  font-size: 17px !important;
  letter-spacing: -0.17px;
  line-height: 22px;
  font-weight: 400;
  text-align: left;
  /*@include layout-large {
      text-align: center;
      padding: 10px 5px;
      margin: 0;
      letter-spacing: 0;
    }*/
  display: flex;
}
.nav--mobile--expand--innerMenu .link::before,
.nav--mobile--expand--innerMenu .button::before, .nav--mobile--panel--innerMenu .link::before,
.nav--mobile--panel--innerMenu .button::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 11px;
  background: url("../design/dropdown-triangle-icon.svg");
  background-position: center;
  background-size: cover !important;
  background-repeat: no-repeat;
  position: relative;
  top: 6px;
}
.nav--mobile--expand--innerMenu .link:hover,
.nav--mobile--expand--innerMenu .button:hover, .nav--mobile--panel--innerMenu .link:hover,
.nav--mobile--panel--innerMenu .button:hover {
  color: var(--discovery-light-blue-0e7ca6);
  font-weight: 500;
}
.nav--mobile--expand--innerMenu .link:hover:before,
.nav--mobile--expand--innerMenu .button:hover:before, .nav--mobile--panel--innerMenu .link:hover:before,
.nav--mobile--panel--innerMenu .button:hover:before {
  background: url("../design/dropdown-triangle-icon-active.svg");
}
.nav--mobile--expand--innerMenu .link:focus,
.nav--mobile--expand--innerMenu .button:focus, .nav--mobile--panel--innerMenu .link:focus,
.nav--mobile--panel--innerMenu .button:focus {
  outline-color: var(--discovery-dark-blue-005679) !important;
}
.nav--mobile--expand--innerMenu .link.toggled, .nav--mobile--expand--innerMenu .link[aria-current=page],
.nav--mobile--expand--innerMenu .button.toggled,
.nav--mobile--expand--innerMenu .button[aria-current=page], .nav--mobile--panel--innerMenu .link.toggled, .nav--mobile--panel--innerMenu .link[aria-current=page],
.nav--mobile--panel--innerMenu .button.toggled,
.nav--mobile--panel--innerMenu .button[aria-current=page] {
  font-weight: bold;
  color: #0e7ca6;
}
.nav--mobile--expand--innerMenu .link.toggled::before, .nav--mobile--expand--innerMenu .link[aria-current=page]::before,
.nav--mobile--expand--innerMenu .button.toggled::before,
.nav--mobile--expand--innerMenu .button[aria-current=page]::before, .nav--mobile--panel--innerMenu .link.toggled::before, .nav--mobile--panel--innerMenu .link[aria-current=page]::before,
.nav--mobile--panel--innerMenu .button.toggled::before,
.nav--mobile--panel--innerMenu .button[aria-current=page]::before {
  width: 11px;
  height: 11px;
  background: url("../design/dropdown-triangle-icon-active.svg");
}
.nav--mobile--expand--innerMenu--menuItem, .nav--mobile--panel--innerMenu--menuItem {
  margin: 0 !important;
  padding-bottom: 11px;
}
.nav--mobile--expand--innerMenu--menuItem:first-child, .nav--mobile--panel--innerMenu--menuItem:first-child {
  padding-top: 5px;
}
.nav--mobile--expand--innerMenu--menuItem:last-child, .nav--mobile--panel--innerMenu--menuItem:last-child {
  padding-bottom: 5px;
}
.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: #141c1f;
  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: none;
}
.nav--mobile--panel--innerMenu--menuItem.has-innerMenu > button:hover {
  text-decoration: none;
}
.nav--mobile--panel--innerMenu--menuItem:not(.panel-control) {
  margin-left: 20px;
}
.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: 1150px) {
  .nav--desktop {
    display: none !important;
  }
}
.nav--desktop.hoz {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
}
.nav--desktop--search_container {
  display: none;
  position: relative;
  font-size: 1.4rem;
  font-family: "Montserrat", serif;
  font-style: italic;
  color: #0e7ca6;
}
.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: #141c1f !important;
  border: 1px solid #374448;
  position: absolute;
  top: calc(100% + 19px);
  right: 0;
  padding: 10px 35px 10px 15px;
  font-family: "Montserrat", serif;
  font-style: italic;
}
.nav--desktop--search_container--input:focus {
  outline-color: var(--discovery-dark-blue-005679);
}
.nav--desktop--search_container--btn {
  position: relative;
  font-size: 15px;
  color: #fff;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.nav--desktop .level0 {
  outline-color: var(--discovery-dark-blue-005679) !important;
}
.nav--desktop .level0 > .selected::before,
.nav--desktop .level0 > .expanded::before {
  content: "";
  background-image: linear-gradient(to right, #c79d2d 100%, rgba(255, 255, 255, 0) 0%);
  background-position: bottom;
  background-size: 7px 5px;
  background-repeat: repeat-x;
  position: absolute;
  width: 100%;
  height: 5px;
  bottom: 16px;
}
.nav--desktop .level0 > .selected > .link, .nav--desktop .level0 > .selected .button,
.nav--desktop .level0 > .expanded > .link,
.nav--desktop .level0 > .expanded .button {
  color: var(--discovery-light-blue-0e7ca6);
}
.nav--desktop--list--topMenu {
  display: flex;
  justify-content: flex-end;
  margin: 0 0px !important;
  width: 100%;
  column-gap: 22px;
}
@media only screen and (max-width: 1290px) {
  .nav--desktop--list--topMenu {
    column-gap: 15px;
  }
}
.nav--desktop--list--topMenu--menuItem {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  margin: 0 0px;
}
.nav--desktop--list--topMenu--menuItem:hover {
  background-image: linear-gradient(to right, #fff 100%, rgba(255, 255, 255, 0) 0%);
  background-position: bottom;
  background-size: 7px 5px;
  background-repeat: repeat-x;
}
.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);
}
@media screen and (max-width: 1540px) {
  .nav--desktop--list--topMenu--menuItem:last-child .level1 {
    left: unset !important;
    right: -20px !important;
  }
}
.nav--desktop--list--topMenu--menuItem .link,
.nav--desktop--list--topMenu--menuItem .button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 12px 0 21px;
  margin: 0 0;
  width: 100%;
  background: transparent;
  font-family: "Montserrat", serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 19px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--discovery-dark-blue-005679);
  text-align: left;
  outline-color: var(--discovery-dark-blue-005679);
  /*@include layout-large {
    text-align: center;
    padding: 10px 5px;
    margin: 0;
    letter-spacing: 0;
  }*/
}
.nav--desktop--list--topMenu--menuItem .link:hover,
.nav--desktop--list--topMenu--menuItem .button:hover {
  color: var(--discovery-light-blue-0e7ca6);
}
.nav--desktop--list--topMenu--menuItem .button {
  border: none;
  min-width: auto;
  transition: none;
}
.nav--desktop--list--topMenu--menuItem .button:focus {
  outline-color: var(--discovery-dark-blue-005679) !important;
  border-radius: 0;
}
.nav--desktop--list--topMenu--menuItem .button .text {
  display: inline-block;
}
.nav--desktop--list--topMenu--menuItem .button .icon {
  margin-left: 5px;
  display: none;
  font-size: 0.75rem;
}
.nav--desktop--list--innerMenu {
  display: none;
  border-top: none;
  background-color: #fcffff;
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.1607843137);
  min-width: 240px;
  outline-color: var(--discovery-dark-blue-005679);
  position: absolute;
  width: max-content !important;
}
.nav--desktop--list--innerMenu::before {
  content: "";
  height: 5px;
  background: url("../design/dropdown-top-bar.svg");
  background-size: cover;
  background-position: center;
  width: 100%;
  display: block;
  border-top: 1px solid #2587ad;
}
.nav--desktop--list--innerMenu--menuItem {
  position: relative;
  padding: 0 28px 15px;
}
.nav--desktop--list--innerMenu--menuItem:first-child {
  padding-top: 21px;
}
.nav--desktop--list--innerMenu--menuItem:last-child {
  padding-bottom: 22px;
}
.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 {
  padding: 0px;
  color: #141c1f;
  text-transform: none;
  font-weight: 400;
  border-radius: 0;
  color: #495b64;
  text-transform: none;
  font-family: "Karla", sans-serif;
  font-size: 17px;
  letter-spacing: -0.17px;
  line-height: 22px;
}
.nav--desktop--list--innerMenu .link::before,
.nav--desktop--list--innerMenu .button::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 11px;
  background: url("../design/dropdown-triangle-icon.svg");
  background-position: center;
  background-size: cover !important;
  background-repeat: no-repeat;
}
.nav--desktop--list--innerMenu .link:hover,
.nav--desktop--list--innerMenu .button:hover {
  color: var(--discovery-light-blue-0e7ca6);
  font-weight: 500;
}
.nav--desktop--list--innerMenu .link:hover:before,
.nav--desktop--list--innerMenu .button:hover:before {
  background: url("../design/dropdown-triangle-icon-active.svg");
}
.nav--desktop--list--innerMenu .link:focus,
.nav--desktop--list--innerMenu .button:focus {
  outline-color: var(--discovery-dark-blue-005679) !important;
}
.nav--desktop--list--innerMenu .link.toggled, .nav--desktop--list--innerMenu .link[aria-current=page],
.nav--desktop--list--innerMenu .button.toggled,
.nav--desktop--list--innerMenu .button[aria-current=page] {
  font-weight: bold;
  color: #0e7ca6;
}
.nav--desktop--list--innerMenu .link.toggled::before, .nav--desktop--list--innerMenu .link[aria-current=page]::before,
.nav--desktop--list--innerMenu .button.toggled::before,
.nav--desktop--list--innerMenu .button[aria-current=page]::before {
  width: 11px;
  height: 11px;
  background: url("../design/dropdown-triangle-icon-active.svg");
}

@media screen and (max-width: 1150px) {
  .pane--header .nav--desktop--container {
    position: absolute !important;
    right: 28px !important;
    left: unset !important;
    bottom: 25px;
  }
}
.nav--desktop + .nav--mobile--toggle {
  right: 0;
  position: absolute;
}
@media only screen and (max-width: 480px) {
  .nav--desktop + .nav--mobile--toggle {
    right: -7px;
  }
}

.nav--mobile .nav--mobile--toggle {
  opacity: 1;
}
.nav--mobile .nav--mobile--toggle .q4-icon_menu::before {
  background-image: none;
}

.js--mobile .nav--desktop + .nav--mobile--toggle .q4-icon_menu::before {
  background-image: url("../design/svg/mobile-close-btn.svg");
}

/* ==================================
 ----------- NEW NAV END -----------
================================== */
/* -------- News Module CSS ------- */
.module-news-list {
  padding-top: 0px !important;
  padding-bottom: 45px !important;
}
.module-news-list .module_links {
  min-width: 300px !important;
}
@media screen and (max-width: 991px) {
  .module-news-list .module_links {
    min-width: 150px !important;
  }
}
@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 {
  /*&_headline-link {
    font-size: 1.8rem;
    line-height: 2.8rem;
    font-weight: 500;
  }*/
}
.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_options-container .dropdown {
  border: 1px solid #c4c4c4;
  font-size: 1.6rem;
  line-height: 2.4rem;
  min-width: 200px;
}
.module-news .module_date-time {
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #333;
}
.module-news-latest {
  background-image: url("../design/banner/banner-latest-news.png");
}
.module-news-latest .module_container--content {
  display: flex;
  justify-content: stretch;
  align-items: stretch;
  padding: 0;
  margin-bottom: 0px;
  flex-wrap: wrap;
  row-gap: 58px;
}
.module-news-latest .module_container--content .slick-track {
  display: flex;
  justify-content: stretch;
  align-items: stretch;
}
.module-news-latest .module_container--content .slick-list {
  width: 100%;
}
.module-news-latest .module_date-time {
  color: #fff;
  margin-bottom: 15px;
}
.module-news-latest .module_headline {
  margin-bottom: 40px;
}
.module-news-latest .module_headline-link:hover {
  color: #fff;
}
.module-news-latest .module_item {
  align-self: stretch;
  border: none;
  margin: 0;
  padding: 0 0 0px 20px;
  position: relative;
}
.module-news-latest .module_item-wrap {
  height: 100%;
}
.module-news-latest .module_item hr {
  position: absolute;
  bottom: 0;
  width: 90%;
  border: none;
  border-top: 1px solid #fff;
}
.module-news-latest .module_link-text {
  /*font-weight: 600;
  &:hover {
    color: $light-color;
    text-decoration: underline;
  }
  & + .q4-icon_chevron-right {
    margin-left: 5px;
  }*/
}
.module-news-latest .latest-news {
  width: 100%;
}
.module-news-latest a:hover {
  text-decoration: underline;
}
.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 {
  /*&_link-text {
    &:hover {
      color: $brand-color--alt;
    }
  }*/
}
.module-news-latest-overview .module_title {
  color: var(--discovery-reverse-gold-fabf0e);
}
.module-news-latest-overview .module_date-time {
  color: #333;
}
.module-news-latest-overview .module_item hr {
  border: none;
  border-top: 1px solid #151f9f;
}
.module-news-latest-overview .module_headline-link {
  text-transform: none;
}
.module-news-latest-overview .module_headline-link:hover {
  color: #0e7ca6;
  text-decoration: none;
}
.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 #151f9f;
}
.module-news-latest-latest-overview .module_headline-link:hover {
  color: #0e7ca6;
}
.module-news-latest-latest-overview .module_link-text:hover {
  color: #0e7ca6;
}
.module-news-details {
  padding-top: 30px !important;
  padding-bottom: 166px !important;
}
@media only screen and (max-width: 1024px) {
  .module-news-details {
    padding-bottom: 30px !important;
  }
}
.module-news-details .module_container--outer {
  max-width: 928px !important;
}
.module-news-details img {
  float: none !important;
}
.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-details .module_body {
  margin-bottom: 0;
}
.module-news-details .module_body p:last-child {
  margin: 0;
}
.module-news-details h2,
.module-news-details .h2,
.module-news-details .module_multimedia-title {
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-bold) var(--unnamed-font-size-22)/var(--unnamed-line-spacing-30) var(--unnamed-font-family-montserrat);
  letter-spacing: var(--unnamed-character-spacing--0-22);
  color: var(--discovery-dark-blue-005679);
  margin: unset;
}
.module-news-details .callout-title {
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-bold) var(--unnamed-font-size-30)/var(--unnamed-line-spacing-40) var(--unnamed-font-family-montserrat);
  letter-spacing: var(--unnamed-character-spacing--0-3);
  color: var(--discovery-dark-blue-005679);
  margin: unset;
}
.module-news-details .callout-text {
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-normal) var(--unnamed-font-size-27)/var(--unnamed-line-spacing-35) var(--unnamed-font-family-karla);
  letter-spacing: var(--unnamed-character-spacing--0-27);
  color: var(--body-text-495b64);
  margin: unset;
  margin-top: 10px;
}
.module-news-details .module_multimedia-title {
  margin-bottom: 15px;
}
.module-news-details .module_multimedia * {
  font-size: 18px;
}
.module-news-details .module_multimedia .grid_col {
  width: 50%;
}
.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-blog {
  padding-top: 58px !important;
}
.module-news-blog .module_item {
  align-items: unset;
  border: none;
  position: relative;
}
.module-news-blog .module_item::after {
  content: "";
  height: 3px;
  width: 100vw;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: linear-gradient(90deg, #bd8b26 0%, #fcba32 10%, #c08d26 20%, #a19574 30%, #a6afb5 40%, #bac4c9 50%, #929aa1 60%, #a59368 70%, #bc8c28 80%, #ebb934 90%, #bd8b26 100%);
}
.module-news-blog .module_item:not([style*="display: none"]):has(+ div[style*="display: none"])::after, .module-news-blog .module_item:last-child::after {
  display: none;
}
.module-news-blog .module_text,
.module-news-blog .module_img {
  flex-basis: calc(50% - 20px);
  max-width: calc(50% - 20px);
}
@media only screen and (max-width: 1024px) {
  .module-news-blog .module_text,
.module-news-blog .module_img {
    flex-basis: 100%;
    max-width: 100%;
  }
}
@media only screen and (max-width: 1024px) {
  .module-news-blog .module_image {
    aspect-ratio: 636/358;
  }
}
@media only screen and (max-width: 1024px) {
  .module-news-blog .module_text {
    margin-top: 20px;
  }
}
.module-news-blog .module-downloads .module_item {
  padding-top: 66px;
  padding-bottom: 66px;
}
@media only screen and (max-width: 1024px) {
  .module-news-blog .module-downloads .module_item {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .module-news-blog .module-downloads .module_item:last-child {
    padding-bottom: 0;
  }
}
.module-news-blog .module-downloads .module_item:first-child {
  padding-top: 0;
}
.module-news-blog .module-downloads .module_item .module_headline-text p {
  font: normal normal 600 40px/45px Montserrat;
  letter-spacing: 0px;
  color: #005679;
}
@media only screen and (max-width: 1024px) {
  .module-news-blog .module-downloads .module_item .module_headline-text p {
    font-family: var(--unnamed-font-family-montserrat);
    font-weight: 600;
    font-size: 25px;
    line-height: initial;
    letter-spacing: 0px;
  }
}
.module-news-blog .module-downloads .module_item .module_date-time {
  margin-top: 12px;
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-bold) var(--unnamed-font-size-18)/var(--unnamed-line-spacing-25) var(--unnamed-font-family-montserrat);
  letter-spacing: var(--unnamed-character-spacing--0-18);
  color: var(--discovery-dark-blue-005679);
  margin-bottom: 55px;
}
@media only screen and (max-width: 1024px) {
  .module-news-blog .module-downloads .module_item .module_date-time {
    margin-bottom: 20px;
  }
}
.module-news-blog .module-downloads .module_item .module_body {
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-normal) var(--unnamed-font-size-18)/var(--unnamed-line-spacing-23) var(--unnamed-font-family-karla);
  letter-spacing: var(--unnamed-character-spacing-0);
  color: var(--body-text-495b64);
  margin-bottom: 0px;
  padding-bottom: 100px;
  position: relative;
}
.module-news-blog .module-downloads .module_item .module_body > div:not([class]) {
  margin-bottom: 35px;
}
@media only screen and (max-width: 1024px) {
  .module-news-blog .module-downloads .module_item .module_body {
    padding-bottom: 0;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: -0.15px;
  }
  .module-news-blog .module-downloads .module_item .module_body > div:not([class]) {
    margin-bottom: 20px;
  }
  .module-news-blog .module-downloads .module_item .module_body .module_tags {
    position: relative;
    margin-top: 20px;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: -0.15px;
  }
}
.module-news-blog .module-downloads .module_item .module_tags {
  position: absolute;
  left: 0;
  bottom: 0;
  margin: 0;
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-normal) var(--unnamed-font-size-18)/var(--unnamed-line-spacing-23) var(--unnamed-font-family-karla);
  letter-spacing: var(--unnamed-character-spacing-0);
  color: var(--body-text-495b64);
}

.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: #0e7ca6;
}
.module-news--grid img {
  display: block;
  width: 100%;
}

.pane--content .module.module-news-latest-overview {
  padding-top: 32px;
  padding-bottom: 57px;
  position: relative;
}
.pane--content .module.module-news-latest-overview p {
  color: #fff;
}
.pane--content .module.module-news-latest-overview::before, .pane--content .module.module-news-latest-overview::after {
  content: "";
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #bd8b26 0%, #fcba32 10%, #c08d26 20%, #a19574 30%, #a6afb5 40%, #bac4c9 50%, #929aa1 60%, #a59368 70%, #bc8c28 80%, #ebb934 90%, #bd8b26 100%);
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.pane--content .module.module-news-latest-overview::after {
  background: linear-gradient(90deg, #bd8b26 0%, #fcba32 10%, #c08d26 20%, #a19574 30%, #a6afb5 40%, #bac4c9 50%, #929aa1 60%, #a59368 70%, #bc8c28 80%, #ebb934 90%, #bd8b26 100%);
  top: unset;
  bottom: 0;
}
.pane--content .module.module-news-latest-overview .button--plus {
  color: var(--discovery-reverse-gold-fabf0e);
  font-weight: 500;
}
.pane--content .module.module-news-latest-overview .button--plus::before, .pane--content .module.module-news-latest-overview .button--plus::after {
  background-color: var(--discovery-reverse-gold-fabf0e);
}
.pane--content .module.module-news-latest-overview .module_date-time {
  font-family: var(--unnamed-font-family-montserrat);
  font-style: var(--unnamed-font-style-normal);
  font-weight: var(--unnamed-font-weight-bold);
  font-size: var(--unnamed-font-size-20);
  line-height: var(--unnamed-line-spacing-24);
  letter-spacing: var(--unnamed-character-spacing-0);
  color: var(--unnamed-color-ffffff);
  text-transform: var(--unnamed-text-transform-uppercase);
  color: #fff;
  margin-bottom: 8px;
}
@media only screen and (max-width: 1024px) {
  .pane--content .module.module-news-latest-overview .module_date-time {
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0px;
  }
}
.pane--content .module.module-news-latest-overview .module_headline,
.pane--content .module.module-news-latest-overview .module_headline-link {
  color: #fff;
}
.pane--content .module.module-news-latest-overview .module_headline {
  margin-bottom: 16px;
}
.pane--content .module.module-news-latest-overview .module_links {
  line-height: 0;
  margin-bottom: 0;
}

.PageBlogDetail .module-details .logo-date {
  margin-bottom: 32px;
}
.PageBlogDetail .module-details .logo-date img {
  width: 98px;
  margin-bottom: 5px;
}
.PageBlogDetail .module-details .module-details_title {
  margin-bottom: 35px;
}
@media only screen and (max-width: 1024px) {
  .PageBlogDetail .module-details .module-details_title {
    font-family: var(--unnamed-font-family-montserrat);
    font-weight: 600;
    font-size: 25px;
    line-height: initial;
    letter-spacing: 0px;
  }
}
.PageBlogDetail .module-details .blog-thumbnail {
  border: 1px solid #c79d2d;
  margin-bottom: 19px;
}
@media only screen and (max-width: 1024px) {
  .PageBlogDetail .module-details .blog-thumbnail {
    margin-bottom: 0;
  }
}
.PageBlogDetail .module-details .blog-thumbnail img {
  display: block;
}
.PageBlogDetail .module-details .module_tags {
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-normal) var(--unnamed-font-size-18)/var(--unnamed-line-spacing-23) var(--unnamed-font-family-karla);
  letter-spacing: var(--unnamed-character-spacing-0);
  color: var(--body-text-495b64);
  text-align: right;
  margin-bottom: 38px;
}
@media only screen and (max-width: 1024px) {
  .PageBlogDetail .module-details .module_tags {
    ont-weight: 400;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: -0.15px;
  }
}
.PageBlogDetail .module-details .module_related-document {
  display: none;
}

.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: #0e7ca6;
}
.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: #eaeff0;
}
.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: #eaeff0;
  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: #eaeff0;
  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(14, 124, 166, 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(21, 31, 159, 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 #0e7ca6;
  color: #0e7ca6;
  background-color: #eaeff0;
  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: none;
  color: #0e7ca6;
  font-family: "Karla", sans-serif;
  font-size: 1.6rem;
  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 #0e7ca6;
}
.pager_button:hover {
  background-color: var(--discovery-light-blue-0e7ca6);
  border-color: var(--discovery-light-blue-0e7ca6);
  color: #fff;
}
.pager_button.js--active {
  color: #fff;
  background-color: var(--discovery-dark-blue-005679);
  border-color: var(--discovery-dark-blue-005679);
}
.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 {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.pager_button--next:hover, .pager_button--prev:hover {
  color: #fff;
  background-color: #0e7ca6;
}

/* ------ 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 .module-person_name {
  font-family: var(--unnamed-font-family-montserrat);
  font-style: var(--unnamed-font-style-normal);
  font-weight: var(--unnamed-font-weight-800);
  font-size: var(--unnamed-font-size-26);
  line-height: var(--unnamed-line-spacing-45);
  letter-spacing: var(--unnamed-character-spacing-0);
  color: var(--discovery-dark-blue-005679);
  text-transform: var(--unnamed-text-transform-uppercase);
  font-weight: 800;
  margin-top: 10px;
  margin-bottom: 0px;
}
@media only screen and (max-width: 1024px) {
  .module-person-list .module-person_name {
    font-size: 18px;
    line-height: 45px;
  }
}
@media only screen and (max-width: 480px) {
  .module-person-list {
    margin: 0;
    padding: 0;
  }
  .module-person-list .grid_col {
    padding-left: 0;
  }
}
.module-person-list_person {
  padding: 0;
  margin-bottom: 65px;
  margin-right: 0;
  cursor: pointer;
  background-color: transparent;
  border: none;
  font: inherit;
}
.module-person-carousel .module-person-list_person:hover, .module-person-carousel .module-person-list_person:focus {
  /*h3,
  .h3 {
    color: $brand-color--alt;
  }
  .module-person-list_person-photo {
    opacity: 0.5;
  }
  .module-person-list_photo-container::before {
    color: white;
    background-color: $brand-color--alt;
  }*/
}
.module-person-carousel .module-person-list_person:hover .button--plus::before, .module-person-carousel .module-person-list_person:focus .button--plus::before {
  opacity: 0;
  right: 10px;
}
.module-person-carousel .module-person-list_person:hover .button--plus::after, .module-person-carousel .module-person-list_person:focus .button--plus::after {
  width: 23px;
}

@media only screen and (max-width: 480px) {
  .module-person-list_person {
    margin-bottom: 40px;
  }
}
.module-person-list_person h3,
.module-person-list_person .h3 {
  color: #333;
  font-size: 2.8rem;
  line-height: 1.45;
  margin-top: 2.1rem;
  margin-bottom: 0.7rem;
}
@media only screen and (max-width: 1024px) {
  .module-person-list_person h3,
.module-person-list_person .h3 {
    font-size: 2.6rem;
  }
}
@media only screen and (max-width: 768px) {
  .module-person-list_person h3,
.module-person-list_person .h3 {
    font-size: 2.4rem;
  }
}
.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;
}
.module-person-list .module-person-list_photo-container img {
  display: block;
  width: 100%;
  position: relative;
  top: 0;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center 5%;
  width: 310px;
}
.module-person-list .module-person-list_photo-container::before {
  z-index: 100;
  font-size: 1.2rem;
  color: #0e7ca6;
  position: absolute;
  width: 3.6rem;
  height: 3.6rem;
  line-height: 3.6rem;
  bottom: 0;
  right: 0;
  background-color: white;
}
.module-person-list--modal {
  padding: 0;
}
.module-person-list.js--selected img {
  border-color: #0e7ca6;
}
.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 #0e7ca6;
  opacity: 1;
  width: 2.46rem;
  height: 2.46rem;
  padding: 0;
  right: 3.23rem;
  top: 2.3rem;
  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: #0e7ca6;
  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 {
  background: #0e7ca6;
}
.module-person-list_person > .fancybox-button.fancybox-close-small:hover svg, .module-person-list_person > .fancybox-button.fancybox-close-small:focus svg {
  color: #fff;
}
.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: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-normal) var(--unnamed-font-size-18)/var(--unnamed-line-spacing-23) var(--unnamed-font-family-karla);
  letter-spacing: var(--unnamed-character-spacing-0);
  color: var(--body-text-495b64);
}
.module-person_title {
  margin-top: 0;
  margin-bottom: 0px;
}
.fancybox-container .module-person_photo-col {
  padding-right: 43px;
}
@media screen and (min-width: 1025px) {
  .fancybox-container .module-person_photo-col {
    flex-basis: 33%;
    max-width: 33%;
  }
}
@media only screen and (max-width: 768px) {
  .fancybox-container .module-person_photo-col {
    padding-right: 0;
  }
}
.fancybox-container .module-person_photo-col .module-person_name {
  font-family: var(--unnamed-font-family-montserrat);
  font-style: var(--unnamed-font-style-normal);
  font-weight: var(--unnamed-font-weight-800);
  font-size: var(--unnamed-font-size-26);
  line-height: var(--unnamed-line-spacing-45);
  letter-spacing: var(--unnamed-character-spacing-0);
  color: var(--discovery-dark-blue-005679);
  text-transform: var(--unnamed-text-transform-uppercase);
  font-weight: 800;
  margin-top: 10px;
  margin-bottom: 0px;
}
@media only screen and (max-width: 1024px) {
  .fancybox-container .module-person_photo-col .module-person_name {
    font-size: 18px;
    line-height: 45px;
  }
}
.fancybox-container .module-person_photo-col .module-person_title {
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-normal) var(--unnamed-font-size-18)/var(--unnamed-line-spacing-23) var(--unnamed-font-family-karla);
  letter-spacing: var(--unnamed-character-spacing-0);
  color: var(--body-text-495b64);
  margin: 0;
}
.fancybox-container .module-person_description-col .module-person_description {
  max-width: 739px;
}
@media only screen and (max-width: 1024px) {
  .fancybox-container .module-person_description-col .module-person_description {
    max-width: 100%;
    margin-top: 30px;
  }
}
@media screen and (min-width: 1025px) {
  .fancybox-container .module-person_description-col {
    flex-basis: 67%;
    max-width: 67%;
  }
}
.fancybox-container .module-person_module_item {
  max-width: 1340px;
}
.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: #495b64;
}
@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;*/
  /*@include layout-medium {
    margin-right: 15px;
    margin-bottom: 35px;
  }*/
  /*@media only screen and (max-width: $layout-medium) and (min-width: 641px) {
    max-width: none;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 2rem 2fr;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
  }*/
}
.fancybox-container .module-person_photo-container img {
  display: block;
  margin: 0;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center 5%;
  width: 310px;
}
@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: #0e7ca6;
}
.fancybox-container .module-person_description p {
  margin-top: 0;
}

.module-person-accordion .module-person_name-container {
  color: #0e7ca6;
  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;
  color: inherit;
  font-style: inherit;
  letter-spacing: 0.5px;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 2.8rem;
  margin: 0;
  padding: 25px 0;
  position: relative;
  text-align: left;
  width: 100%;
}
.module-person-accordion .module-person_name-container h3 button::before,
.module-person-accordion .module-person_name-container .h3 button::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: "\edc2";
  font-weight: 700;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.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: #0e7ca6;
}
.module-person-accordion .module_item.js--active h3 button::before, .module-person-accordion .module_item.js--active .h3 button::before {
  content: "\edba";
}
.module-person-accordion .module-person_name {
  margin-right: 10px;
}
@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: 15px;
  margin: 0 0 15px 0;
  background-color: #eaeff0;
  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: 198px;
  min-height: 198px;
}
@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;
  border-radius: 100%;
}
.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: #0e7ca6;
  border: 1px solid #0e7ca6;
  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: #0e7ca6;
}
.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: #0e7ca6;
}
.module-person-details_title {
  display: block;
  font-size: 2.4rem;
}
.module-person-details_description-container {
  margin-top: 40px;
}

.PageOurTeam {
  /*.fancybox-slide--current .fancybox-content {
    animation: fadeInLento 1s ease-in-out !important;
    transition: all 1s ease-in-out !important;
  }

  .fancybox-is-closing .fancybox-content {
    opacity: 0 !important;
    transition: opacity 1s ease-in-out !important;
  }

  .fancybox-is-closing .fancybox-stage {
    overflow: visible;
  }

  @keyframes fadeInLento {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  .fancybox-container,
  .fancybox-bg,
  .fancybox-stage {
    transition-duration: 1s !important;
  }*/
}
.PageOurTeam .module-person_module_item.grid.fancybox-content {
  background: var(--bg-fcffff);
  padding-right: 90px !important;
}
@media screen and (max-width: 1330px) {
  .PageOurTeam .module-person_module_item.grid.fancybox-content {
    max-width: 95%;
  }
}
@media only screen and (max-width: 1024px) {
  .PageOurTeam .module-person_module_item.grid.fancybox-content {
    padding-right: 44px !important;
  }
}
.PageOurTeam .module-person_module_item.grid.fancybox-content::before, .PageOurTeam .module-person_module_item.grid.fancybox-content::after {
  content: "";
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #bd8b26 0%, #fcba32 10%, #c08d26 20%, #a19574 30%, #a6afb5 40%, #bac4c9 50%, #929aa1 60%, #a59368 70%, #bc8c28 80%, #ebb934 90%, #bd8b26 100%);
  position: absolute;
  top: 0;
  left: 0;
}
.PageOurTeam .module-person_module_item.grid.fancybox-content::after {
  top: unset;
  bottom: 0;
}
.PageOurTeam .module-person_module_item.grid.fancybox-content .fancybox-close-small {
  opacity: 1;
  width: 50px;
  height: 50px;
  top: 30px;
  right: 20px;
  color: #0e7ca6;
  outline-width: 2px;
  outline-style: dotted;
  outline-color: inherit;
  outline-offset: 2px;
}
@media only screen and (max-width: 1024px) {
  .PageOurTeam .module-person_module_item.grid.fancybox-content .fancybox-close-small {
    top: 0;
    right: 0;
    padding: 5px;
    width: 40px;
    height: 40px;
  }
}
.PageOurTeam .module-person_module_item.grid.fancybox-content .fancybox-close-small svg path {
  fill: #0e7ca6;
  stroke-width: 1px;
  stroke: #0e7ca6;
}

.pane--content .module.module-person-carousel {
  padding-top: 20px;
  padding-top: 6px;
}
.pane--content .module.module-person-carousel .module-person_name, .pane--content .module.module-person-carousel .module-person_title {
  display: block;
}

.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: #0e7ca6;
}

.module-pipeline .highcharts-container {
  height: 500px !important;
}
.module-pipeline .highcharts-root {
  position: relative;
  z-index: 10;
  font-family: "Karla", sans-serif !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;
}
.module-presentation-latest .module_link-text {
  font-weight: 600;
  vertical-align: middle;
  padding: 5px 0;
}
.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: "Karla", sans-serif !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: #0e7ca6;
  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;
  }
}

/* -------- 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: #0e7ca6;
}

.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: #0e7ca6;
  outline-color: #0e7ca6;
  color: #fff;
  min-width: auto;
  font-family: "Karla", sans-serif;
}

.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: #0e7ca6;
}

/* -------- Search Modules -------- */
.module-search_toggle {
  margin: 0;
  font-size: 1.6rem;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #0e7ca6;
  cursor: pointer;
}
.module-search_toggle.js--active {
  color: #0e7ca6;
}
.module-search_input[type=text] {
  opacity: 0;
  visibility: hidden;
  border-color: #0e7ca6;
  background-color: #0e7ca6;
  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: var(--body-text-495b64);
  font-size: 20px;
  font-weight: 400;
  display: block;
  margin-bottom: 7px;
}
.module-search-results .form_select {
  width: 100%;
  min-width: auto;
  display: block !important;
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-normal) var(--unnamed-font-size-20)/var(--unnamed-line-spacing-23) var(--unnamed-font-family-karla);
  letter-spacing: var(--unnamed-character-spacing-0);
  color: var(--discovery-dark-blue-005679);
  border: 1px solid #c79d2d;
}
.module-search-results .form_select + .sbHolder {
  display: none;
}
.module-search-results .form_input {
  width: 100%;
  padding: 13px 20px;
  margin: 0;
  display: block;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-normal) var(--unnamed-font-size-20)/var(--unnamed-line-spacing-23) var(--unnamed-font-family-karla);
  letter-spacing: var(--unnamed-character-spacing-0);
  color: var(--discovery-dark-blue-005679);
  border: 1px solid #c79d2d;
}
.module-search-results_link {
  text-transform: uppercase;
  color: #105ca3;
  font-size: 14px;
  text-shadow: 0 1px 0 #fff;
  font-weight: 500;
  margin-bottom: 20px;
  display: inline-block;
}
.module-search-results_item {
  padding: 30px 0;
  border-bottom: 1px solid #d9a60e;
}
.module-search-results_item a {
  font-family: var(--unnamed-font-family-montserrat);
  font-style: var(--unnamed-font-style-normal);
  font-weight: var(--unnamed-font-weight-bold);
  font-size: var(--unnamed-font-size-18);
  line-height: var(--unnamed-line-spacing-25);
  letter-spacing: var(--unnamed-character-spacing--0-18);
  color: var(--discovery-dark-blue-005679);
  text-transform: none;
}
.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: var(--body-text-495b64);
  font-size: 16px;
  text-shadow: 0 1px 0 #fff;
  line-height: 1.5;
  font-weight: 400;
}
.module-search-results_summary {
  color: var(--body-text-495b64);
  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: #151f9f;
  text-align: left;
}
.module-sec .module_table tr {
  border: none;
}
.module-sec .module_table tr:nth-child(odd) {
  background-color: #eaeff0;
}
.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;
  text-transform: uppercase;
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-bold) 21px/var(--unnamed-line-spacing-24) var(--unnamed-font-family-karla);
  letter-spacing: var(--unnamed-character-spacing-0);
  color: var(--unnamed-color-ffffff);
  text-transform: uppercase;
}
.module-skip_link:focus, .module-skip_link:active {
  top: 0;
  color: #fff;
  background: var(--discovery-dark-blue-005679) 0% 0% no-repeat padding-box;
}
.module-skip_link:hover {
  background: var(--discovery-light-blue-0e7ca6) 0% 0% no-repeat padding-box;
  color: var(--unnamed-color-ffffff) !important;
}

/* ------ 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;
}

/* ------ Stock Chart Widget ------ */
.module-stock-chart [data-highcharts-chart].js--hidden {
  display: block !important;
  max-height: 0;
  overflow: hidden;
}
.module-stock-chart .highcharts-legend {
  transform: translateY(20px);
}
.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;
  color: var(--body-text-495b64) !important;
  fill: var(--body-text-495b64) !important;
}
.module-stock-chart .highcharts-legend-item rect[fill="#CCC"] {
  fill: #767676 !important;
}
.module-stock-chart .highcharts-legend-item rect {
  fill: #005679;
}
.module-stock-chart .highcharts-legend-item:first-child path {
  stroke: #0e7ca6 !important;
}
.module-stock-chart .highcharts-legend-item:first-child text {
  cursor: default !important;
  color: #333 !important;
  fill: #333 !important;
}
.module-stock-chart .highcharts-series-0 path:first-child {
  stroke: #333;
}
.module-stock-chart .highcharts-series-group .highcharts-series-2 path {
  stroke: #000;
  stroke-width: 1px;
}
.module-stock-chart .highcharts-navigator rect.highcharts-navigator-mask-inside {
  fill: rgba(0, 86, 121, 0.6);
}
.module-stock-chart .highcharts-navigator-handle {
  stroke: #005679;
  fill: #005679;
  cursor: ew-resize;
}
.module-stock-chart .highcharts-navigator-handle-right rect, .module-stock-chart .highcharts-navigator-handle-left rect {
  stroke-width: 0;
  fill: #0e7ca6;
}
.module-stock-chart .highcharts-navigator-handle-right path, .module-stock-chart .highcharts-navigator-handle-left path {
  stroke: #fff;
}
.module-stock-chart .highcharts-scrollbar .highcharts-scrollbar-button + path {
  fill: #005679 !important;
}
.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: rgba(0, 0, 0, 0.05);
}
.module-stock-chart .highcharts-button text, .module-stock-chart .highcharts-input-group text {
  fill: #495b64;
}
.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 {
  font-size: 1.6rem;
}
@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;
  }
}

/* ------ Stock Header Module ----- */
.module-stock-header {
  transition: max-height 0.25s ease-in;
  padding: 11px 0 22px;
  vertical-align: middle;
}
.module-stock-header .separator-line {
  padding-left: 5px;
}
.module-stock-header--desktop {
  text-align: right;
  max-height: unset;
  line-height: 0;
}
.module-stock-header--mobile {
  padding: 0 20px 54px;
  display: none;
}
@media only screen and (max-width: 480px) {
  .module-stock-header--mobile > span {
    display: none;
  }
}
@media only screen and (max-width: 1150px) {
  .module-stock-header--desktop .stocks,
.module-stock-header--desktop .social,
.module-stock-header--desktop .custom-top-links {
    display: none;
  }
}
.module-stock-header .module_container--outer {
  display: inline-block;
  width: 100%;
  position: relative;
  color: #fff;
  /*@include layout-medium {
    max-width: none;
    min-height: auto;
    display: block;
    text-align: left;
    padding: 20px;
  }*/
}
.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_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;
  margin: 10px 0;
}
.module-stock-header_volume-text {
  display: none;
}
.module-stock-header span {
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-normal) 14px/17px var(--unnamed-font-family-karla);
  letter-spacing: var(--unnamed-character-spacing-0);
  color: var(--body-text-495b64);
  text-align: left;
  letter-spacing: 0px;
  color: #495b64;
  line-height: 0;
}
.module-stock-header .stocks {
  margin-top: -10px;
}

/*.js--header-small .module-stock-header {
  transform: translateY(-100px);
  max-height: 0;
  transition: max-height 0.5s ease-out;
}*/
/* ------ Stock Header Module ----- */
.module-stock-banner {
  text-align: right;
  margin: 50px 0;
}
@media only screen and (max-width: 768px) {
  .module-stock-banner {
    text-align: left;
    margin: 0;
  }
}
.module-stock-banner .module_container--outer {
  display: inline-block;
  padding: 40px 25px;
  background: #0e7ca6;
  text-align: center;
  width: 100%;
  max-width: 260px;
  min-height: 270px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .module-stock-banner .module_container--outer {
    max-width: none;
    min-height: auto;
    display: block;
    text-align: left;
    padding: 20px;
  }
}
.module-stock-banner_link {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.module-stock-banner_link:focus {
  outline-offset: 2px;
  outline-color: #fff;
}
.module-stock-banner_description1 {
  display: block;
  font-size: 2.6rem;
  line-height: 34px;
  font-weight: 500;
  margin: 0 0 14px 0;
}
@media only screen and (max-width: 768px) {
  .module-stock-banner_description1 {
    text-align: center;
    margin: 0;
  }
}
@media only screen and (max-width: 480px) {
  .module-stock-banner_description1 {
    text-align: left;
  }
}
.module-stock-banner_stock-price {
  display: block;
  font-size: 4rem;
  line-height: 49px;
  color: #fff;
}
.module-stock-banner_stock-price::before {
  content: "$";
}
@media only screen and (max-width: 768px) {
  .module-stock-banner_stock-price {
    text-align: center;
  }
}
@media only screen and (max-width: 480px) {
  .module-stock-banner_stock-price {
    text-align: left;
  }
}
.module-stock-banner_change, .module-stock-banner_percent-change {
  display: inline-block;
  margin: 14px 0;
  font-size: 2rem;
  line-height: 30px;
  font-weight: 400;
}
@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;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .module-stock-banner {
    margin-left: -70px;
  }
}

/* ------ Stock Quote Module ------ */
.module-stock_table {
  width: 100%;
  text-align: left;
}
.module-stock_table caption {
  caption-side: bottom;
  padding: 5px 15px;
  font-size: 1.2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background-color: #eaeff0;
}
.module-stock_table th {
  background-color: #eaeff0;
}
.module-stock_table tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.module-stock_table span {
  display: block;
  padding: 20px 15px;
}
@media only screen and (max-width: 480px) {
  .module-stock_table span {
    padding: 15px 8px;
    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;
}
@media screen and (min-width: 1025px) {
  .module-stock-information .module-tabs_links {
    margin-bottom: 20px;
  }
}
.module-stock-information .module-stock-tabs .module-tabs_links {
  padding-left: 11px;
}
@media screen and (max-width: 600px) {
  .module-stock-information .module-stock-tabs .module-tabs_links {
    padding-left: 0;
  }
}
.module-stock-information .module-stock-tabs .module-tab-stock-quote_link {
  background: transparent;
  padding: 0;
  margin-right: 30px;
}
.module-stock-information .module-stock-tabs .module-tab-stock-quote_link:hover, .module-stock-information .module-stock-tabs .module-tab-stock-quote_link:focus {
  color: #0e7ca6;
}
.module-stock-information .module-stock-tabs .module-tab-stock-quote_link.js--selected {
  color: #0e7ca6;
}
.module-stock-information .module-stock-tabs .module-tab-stock-quote_link.js--selected::after {
  bottom: -4px;
}
@media screen and (max-width: 600px) {
  .module-stock-information .module-stock-tabs .module-tab-stock-quote_link.js--selected::after {
    bottom: -10px;
  }
}
.module-stock-information .module_container-stock {
  display: flex;
  flex-wrap: wrap;
}
.module-stock-information .module_container-stock .div#highcharts-screen-reader-region-before-1 {
  flex-basis: 100%;
  max-width: 100%;
}
.module-stock-information .module_container-stock .module-stock-chart {
  flex-basis: calc(100% - 346px);
  max-width: calc(100% - 346px);
  padding-right: 45px;
}
@media only screen and (max-width: 1200px) {
  .module-stock-information .module_container-stock .module-stock-chart {
    flex-basis: 100%;
    max-width: 100%;
    padding-right: 0;
  }
}
.module-stock-information .module_container-stock .module_stock-quote {
  flex-basis: 346px;
  max-width: 346px;
}
@media only screen and (max-width: 1200px) {
  .module-stock-information .module_container-stock .module_stock-quote {
    flex-basis: 100%;
    max-width: 100%;
  }
}

.module-stock-chart_accessible-datepickers span,
.module-stock-chart_accessible-datepickers input {
  font-family: var(--unnamed-font-family-karla);
}

.module-stock-table {
  margin-top: 30px;
}
.module-stock-table .grid_col:nth-child(1) .module_stock-row {
  border-top: 2px solid #c79d2d;
}
.module-stock-table .module_stock-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #c79d2d;
}
@media screen and (max-width: 300px) {
  .module-stock-table .module_stock-row {
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
  }
}
.module-stock-table .module_stock-row p {
  font-family: var(--unnamed-font-family-karla);
  font-weight: 400;
  font-size: 20px;
  line-height: 34px;
  letter-spacing: -0.2px;
  text-align: right;
  color: var(--body-text-495b64);
  text-align: left;
}
@media only screen and (max-width: 1024px) {
  .module-stock-table .module_stock-row p {
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: -0.15px;
  }
}
.module-stock-table .module-stock-title,
.module-stock-table .number-text {
  margin: 0;
}

/* - MailingList Subscribe Module - */
.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: $brand-color--alt;
    &:hover {
      background: $brand-color--alt2;
    }
  }*/
}
.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_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 {
  margin-bottom: 0;
}
@media only screen and (max-width: 1024px) {
  .module-unsubscribe .module_title h2 {
    line-height: initial;
  }
}
.module-unsubscribe .button {
  margin-left: 0;
  margin-right: 0;
}
.module-unsubscribe_table {
  width: 50%;
  /*.module_input[type='email'] {
    background-color: #fafafa;
    border: 1px solid #c4c4c4;
    font-size: 1.2rem;
    line-height: 2.2rem;
  }*/
}
@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_our-brands .module_title {
  font-family: Montserrat, sans-serif;
  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: #eaeff0;
  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: #0e7ca6;
  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: #0e7ca6;
  color: #fff;
  background-image: linear-gradient(to bottom, rgba(14, 124, 166, 0.8), rgba(14, 124, 166, 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(14, 124, 166, 0.5);
  padding-bottom: 40px;
  height: 100%;
}
.sustainability-news .module_date-time {
  color: #495b64;
}
.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%);
}

.page--sustainability .pane--content .module-overview .module_title {
  max-width: 650px;
}
.page--sustainability .pane--content .module-overview .module-overview_image .module_image .module_content img {
  object-position: 70% center;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
@media only screen and (max-width: 1024px) {
  .page--sustainability .pane--content .module-overview .module-overview_image .module_image .module_content img {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@media only screen and (max-width: 1024px) {
  .page--sustainability .pane--content .module-overview .module-overview_image {
    height: 550px;
  }
}
.page--sustainability .pane--content .module-overview p {
  max-width: 93%;
}
.page--sustainability .pane--content .module-overview .button {
  margin-left: 0;
  margin-bottom: 0;
}

@media screen and (min-width: 1025px) {
  .pane--content .module.module-sustainability-reports {
    padding-top: 35px;
    padding-bottom: 60px;
  }
}
.pane--content .module.module-sustainability-reports .module_title {
  text-transform: uppercase;
}

@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: #0e7ca6;
}
.splide__arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.splide__arrow:disabled:hover {
  background: #fff;
}
.splide__arrow:disabled:hover svg {
  fill: #0e7ca6;
}
.splide__arrow:hover {
  background: #0e7ca6;
}
.splide__arrow:hover svg {
  fill: #fff;
}
.splide__arrow:focus {
  outline: 2px solid #0e7ca6;
}
.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__slide .button {
  background-color: transparent;
  border-radius: 50px;
  border-color: #0e7ca6;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  line-height: 14px;
}
.module-banner-slider .splide__slide .button:hover {
  background: #0e7ca6;
}
.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 */
/*.pane--banner {
  @at-root .layout--one-column & {
    height: 500px;
    display: flex;
    align-items: center;
    @include layout-medium {
      height: 400px;
    }
    @include layout-small {
      height: 300px;
    }
  }
  .PageOverview & {
    @include banner-gradient('../design/banner/hero-banner.jpg');
  }

  .about-banner &,
  .Sectionabout-us &,
  .SectionAboutHistory & {
    @include banner-gradient('../design/banner/about-banner.jpg');
  }
  .projects-banner &,
  .SectionOurProducts &,
  .Sectionour-portfolio & {
    @include banner-gradient('../design/banner/ourproduct-banner.jpg');
  }

  .PageInvestorRelations & {
    @include banner-gradient('../design/banner/investor-hero-banner.jpg');
  }

  .PageInvestorRelationsInvestorOverview & {
    @include banner-gradient(
      '../design/banner/investor-overview-banner.jpg'
    );
  }

  .Sectioninvestor-relations &,
  .Sectionresources &,
  .ParentSection_stock-info &,
  .ParentSection_governance &,
  .ParentSection_financials &,
  .Sectioninvestor-news &,
  .Sectionevents &,
  .Sectionpresentations & {
    @include banner-gradient('../design/banner/investor-inner-banner.jpg');
  }

  .Sectionnewsroom &,
  .PageContact & {
    @include banner-gradient('../design/banner/newsroom-banner.jpg');
  }

  .PageCareers & {
    @include banner-gradient('../design/banner/careers-banner.jpg');
  }

  .PageSustainability & {
    @include banner-gradient('../design/banner/sustainability-banner.jpg');
  }

  .PageTermsofUse &,
  .PagePrivacyPolicy &,
  .PageCookiesPolicy &,
  .PageSearchResults &,
  .PageSiteMap & {
    @include banner-gradient('../design/banner/hero-banner.jpg');
  }
}
*/
.layout:not(.layout--home) .pane--banner {
  background-color: #fff;
}
.layout:not(.layout--home) .pane--banner .pane_inner {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.layout:not(.layout--home) .pane--banner .pane_inner .module_container--inner {
  max-width: 1340px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
.layout:not(.layout--home) .pane--banner .module-page-title {
  min-height: unset;
  height: auto;
  padding-top: 52px;
  padding-bottom: 52px;
}
@media only screen and (max-width: 1024px) {
  .layout:not(.layout--home) .pane--banner .module-page-title {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.layout:not(.layout--home) .pane--banner .module-page-title .module_title {
  font-family: var(--unnamed-font-family-montserrat);
  font-style: var(--unnamed-font-style-normal);
  font-weight: var(--unnamed-font-weight-600);
  font-size: var(--unnamed-font-size-50);
  line-height: var(--unnamed-line-spacing-45);
  letter-spacing: var(--unnamed-character-spacing-0);
  color: var(--discovery-dark-blue-005679);
  text-transform: var(--unnamed-text-transform-uppercase);
  font-weight: 600;
}
@media only screen and (max-width: 1024px) {
  .layout:not(.layout--home) .pane--banner .module-page-title .module_title {
    font-weight: 800;
    font-size: 28px;
    line-height: 33px;
    letter-spacing: 0.28px;
  }
}
.layout:not(.layout--home) .pane--banner .module-banner-description {
  background: var(--discovery-dark-blue-005679);
  padding-top: 57px;
  padding-bottom: 117px;
  position: relative;
  font-family: var(--unnamed-font-family-karla);
  font-style: var(--unnamed-font-style-normal);
  font-weight: var(--unnamed-font-weight-bold);
  font-size: var(--unnamed-font-size-23);
  line-height: var(--unnamed-line-spacing-32);
  letter-spacing: var(--unnamed-character-spacing--0-23);
  color: var(--unnamed-color-ffffff);
}
@media only screen and (max-width: 1024px) {
  .layout:not(.layout--home) .pane--banner .module-banner-description {
    padding-top: 45px;
  }
}
@media only screen and (max-width: 480px) {
  .layout:not(.layout--home) .pane--banner .module-banner-description {
    padding-bottom: 80px;
  }
}
.layout:not(.layout--home) .pane--banner .module-banner-description::before {
  content: "";
  height: 5px;
  width: 100%;
  background: linear-gradient(90deg, #bd8b26 0%, #fcba32 10%, #c08d26 20%, #a19574 30%, #a6afb5 40%, #bac4c9 50%, #929aa1 60%, #a59368 70%, #bc8c28 80%, #ebb934 90%, #bd8b26 100%);
  position: absolute;
  top: 0;
  left: 0;
}
.layout:not(.layout--home) .pane--banner .module-banner-description p {
  margin-top: 0;
  font-family: var(--unnamed-font-family-karla);
  font-style: var(--unnamed-font-style-normal);
  font-weight: var(--unnamed-font-weight-bold);
  font-size: var(--unnamed-font-size-23);
  line-height: var(--unnamed-line-spacing-32);
  letter-spacing: var(--unnamed-character-spacing--0-23);
  color: var(--unnamed-color-ffffff);
  text-align: center;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 1024px) {
  .layout:not(.layout--home) .pane--banner .module-banner-description p {
    font-family: Karla;
    font-size: 18px;
    line-height: 23px;
    letter-spacing: -0.18px;
  }
}
.layout:not(.layout--home) .pane--banner .module-banner-description::after {
  content: "";
  height: 112px;
  background: url("../design/top-angled-bar-under-video.png");
  background-position: center;
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  max-width: 100%;
  background-repeat: no-repeat;
  background-size: 100% 112px;
}
@media screen and (max-width: 1400px) {
  .layout:not(.layout--home) .pane--banner .module-banner-description::after {
    background-image: url("../design/svg/top-angled-bar-under-video.svg");
    background-size: cover;
  }
}
@media only screen and (max-width: 480px) {
  .layout:not(.layout--home) .pane--banner .module-banner-description::after {
    background-image: url("../design/svg/top-angled-bar-under-video-mobile.svg");
    height: 38px;
  }
}
.layout:not(.layout--home) .pane--banner .module-banner-description--ir .grid--flex.columns {
  flex-wrap: nowrap;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .layout:not(.layout--home) .pane--banner .module-banner-description--ir .grid--flex.columns {
    flex-wrap: wrap;
  }
}
.layout:not(.layout--home) .pane--banner .module-banner-description--ir .grid--flex .grid_col--1-of-4-custom {
  padding-bottom: 41px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.layout:not(.layout--home) .pane--banner .module-banner-description--ir .grid--flex .grid_col--1-of-4-custom:nth-child(1) {
  flex-basis: 25%;
  max-width: 25%;
}
.layout:not(.layout--home) .pane--banner .module-banner-description--ir .grid--flex .grid_col--1-of-4-custom:nth-child(2) {
  flex-basis: 26%;
  max-width: 26%;
}
.layout:not(.layout--home) .pane--banner .module-banner-description--ir .grid--flex .grid_col--1-of-4-custom:nth-child(3) {
  flex-basis: 19%;
  max-width: 19%;
}
.layout:not(.layout--home) .pane--banner .module-banner-description--ir .grid--flex .grid_col--1-of-4-custom:nth-child(4) {
  flex-basis: 24%;
  max-width: 24%;
}
.layout:not(.layout--home) .pane--banner .module-banner-description--ir .grid--flex .grid_col--1-of-4-custom a.button--plus.button--plus--18 {
  color: #fabf0e;
}
.layout:not(.layout--home) .pane--banner .module-banner-description--ir .grid--flex .grid_col--1-of-4-custom a.button--plus.button--plus--18::before, .layout:not(.layout--home) .pane--banner .module-banner-description--ir .grid--flex .grid_col--1-of-4-custom a.button--plus.button--plus--18::after {
  background-color: #fabf0e;
}
@media screen and (max-width: 1160px) {
  .layout:not(.layout--home) .pane--banner .module-banner-description--ir .grid--flex .grid_col--1-of-4-custom {
    flex-basis: 25% !important;
    max-width: 25% !important;
  }
  .layout:not(.layout--home) .pane--banner .module-banner-description--ir .grid--flex .grid_col--1-of-4-custom .block {
    display: inline;
  }
}
@media only screen and (max-width: 1024px) {
  .layout:not(.layout--home) .pane--banner .module-banner-description--ir .grid--flex .grid_col--1-of-4-custom {
    flex-basis: 50% !important;
    max-width: 50% !important;
  }
}
@media only screen and (max-width: 768px) {
  .layout:not(.layout--home) .pane--banner .module-banner-description--ir .grid--flex .grid_col--1-of-4-custom {
    flex-basis: 100% !important;
    max-width: 100% !important;
  }
}
.layout:not(.layout--home) .pane--banner .module-banner-description--ir .module_title {
  color: #fabf0e;
}
@media screen and (min-width: 1025px) {
  .layout:not(.layout--home) .pane--banner .module-banner-description--ir .module_title {
    margin-bottom: 50px;
  }
}
.layout:not(.layout--home) .pane--banner .module-banner-description--ir .title {
  text-transform: uppercase;
  text-align: left;
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-bold) var(--unnamed-font-size-18)/var(--unnamed-line-spacing-23) var(--unnamed-font-family-montserrat);
  letter-spacing: var(--unnamed-character-spacing--0-18);
  max-width: 100%;
  margin-left: unset;
  margin-right: unset;
}

.PageGovernance .layout:not(.layout--home) .pane--banner .module-banner-description p {
  max-width: 870px;
}

.PageDiscoveryAssetsOverview .layout:not(.layout--home) .pane--banner .module-banner-description p {
  max-width: 710px;
}

.PageProject .layout:not(.layout--home) .pane--banner .module_container--inner {
  max-width: 100%;
  padding: 0;
}
.PageProject .layout:not(.layout--home) .pane--banner .module-banner-video {
  background-color: #000000;
}
.PageProject .layout:not(.layout--home) .pane--banner .module-banner-video::after {
  display: none;
}
.PageProject .layout:not(.layout--home) .pane--banner .module-banner-video .video-banner {
  min-height: 650px;
  display: flex;
  align-items: flex-end;
  padding-top: 87px;
  padding-bottom: 87px;
}
.PageProject .layout:not(.layout--home) .pane--banner .module-banner-video .video-banner::before {
  background-color: rgba(0, 0, 0, 0);
}
@media only screen and (max-width: 1024px) {
  .PageProject .layout:not(.layout--home) .pane--banner .module-banner-video .video-banner {
    min-height: 500px;
  }
}
.PageProject .layout:not(.layout--home) .pane--banner .module-banner-video .text {
  background: rgba(0, 86, 121, 0.4362);
  width: 100%;
  max-width: 100%;
  padding: 15px 20px 22px;
}
.PageProject .layout:not(.layout--home) .pane--banner .module-banner-video .text .module_title {
  font-family: var(--unnamed-font-family-montserrat);
  font-weight: 600;
  font-size: 50px;
  leading-trim: NONE;
  line-height: 45px;
  letter-spacing: 0px;
  text-align: center;
  text-transform: uppercase;
  color: #fabf0e;
}
@media only screen and (max-width: 1024px) {
  .PageProject .layout:not(.layout--home) .pane--banner .module-banner-video .text .module_title {
    font-size: 28px;
    line-height: 33px;
    letter-spacing: 0.28px;
  }
}
.PageProject .layout:not(.layout--home) .module-banner-description {
  padding-top: 0px;
  padding-bottom: 0px;
  background: transparent;
}
.PageProject .layout:not(.layout--home) .module-banner-description .module_container--outer {
  background: var(--discovery-dark-blue-005679);
}
.PageProject .layout:not(.layout--home) .module-banner-description .module_container--outer .module_container--inner {
  max-width: 1340px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 35px;
  padding-bottom: 15px;
}
.PageProject .layout:not(.layout--home) .module-banner-description::after {
  background-image: url("../design/bottom-bar-projects.png");
  position: relative;
  height: 112px;
  display: block;
  background-size: 100% 100%;
}
@media screen and (max-width: 1400px) {
  .PageProject .layout:not(.layout--home) .module-banner-description::after {
    background-size: cover;
  }
}
@media only screen and (max-width: 480px) {
  .PageProject .layout:not(.layout--home) .module-banner-description::after {
    height: 50px;
  }
}

.PageCorderoSilver .layout:not(.layout--home) .pane--banner .module-banner-description .grid--flex {
  align-items: flex-start;
}
.PageCorderoSilver .layout:not(.layout--home) .pane--banner .module-banner-description .grid--flex .grid_col {
  width: 25%;
}
.PageCorderoSilver .layout:not(.layout--home) .pane--banner .module-banner-description .grid--flex .grid_col:nth-child(3) .title {
  max-width: 220px;
}
.PageCorderoSilver .layout:not(.layout--home) .pane--banner .module-banner-description .grid--flex .grid_col:nth-child(3) .bullet-text {
  max-width: 290px;
}
.PageCorderoSilver .layout:not(.layout--home) .pane--banner .module-banner-description .title {
  max-width: 300px;
}
.PageCorderoSilver .layout:not(.layout--home) .pane--banner .module-banner-description .bullet-text {
  max-width: 320px;
}
.PageCorderoSilver .layout:not(.layout--home) .pane--banner .module-banner-description .bullet-text p {
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-normal) var(--unnamed-font-size-18)/var(--unnamed-line-spacing-25) var(--unnamed-font-family-karla);
  letter-spacing: var(--unnamed-character-spacing--0-09);
  text-align: center !important;
}
.PageCorderoSilver .layout:not(.layout--home) .pane--banner .module-banner-description .bullet-text ul {
  margin-left: auto !important;
  margin-right: auto !important;
  display: table;
}

.PageSustainability .layout:not(.layout--home) .pane--banner .module-banner-description p {
  max-width: 820px;
}
@media screen and (min-width: 1025px) {
  .PageSustainability .layout:not(.layout--home) .pane--content .module_text-with-image:nth-child(5) p {
    max-width: 92%;
  }
}
@media screen and (min-width: 1025px) {
  .PageSustainability .layout:not(.layout--home) .pane--content .module-downloads .module_item .module_headline-text p {
    font: normal normal bold 20px/25px Montserrat;
    letter-spacing: -0.2px;
  }
}

.PageContactUs .layout:not(.layout--home) .pane--banner .module-banner-description p {
  max-width: 820px;
}

.layout--home .pane--banner .module_title {
  background: linear-gradient(90deg, #e1b11c 0%, #e1b11c 10%, #e1b11c 20%, #cbd7dd 30%, #cbd7dd 40%, #e1b11c 50%, #e1b11c 60%, #cbd7dd 70%, #cbd7dd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.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: #eaeff0;
}
.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: "Montserrat", serif;
  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 #eaeff0;
  padding: 15px;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2rem;
  position: relative;
  color: #0e7ca6;
  min-width: 230px;
  cursor: pointer;
  transition: 0.25s ease-in-out;
  z-index: 2;
  font-family: "Montserrat", sans-serif;
}
@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: #151f9f;
}
.module-tabs-content-toggle[aria-selected=true]::after, .module-tabs-content-toggle:active::after {
  border-top-color: #151f9f;
}
.module-tabs-content-toggle:hover, .module-tabs-content-toggle:focus[aria-selected=false] {
  background-color: #0e7ca6;
}
.module-tabs-content-toggle:hover::after, .module-tabs-content-toggle:focus[aria-selected=false]::after {
  border-top-color: #0e7ca6;
}
.module-tabs-content-toggle:focus {
  outline-color: #0e7ca6;
  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: #0e7ca6;
  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 */
/*.pane--footer .module-links {
  @media (min-width: 768px) {
    &.desktop--hidden {
      display: none !important;
    }
  }

  &_list {
    display: flex;
    flex-wrap: wrap;
    &-item-link {
      font-size: 16px;
      line-height: 24px;
      font-weight: 400;
      text-transform: capitalize;
    }
  }

  .QuickLinkRow,
  .QuickLinkRowAlt {
    width: 50%;
  }
}
*/
/* ==================================
 ----------- LAYOUT CSS -----------
================================== */
/* ------- iframe layout CSS ------ */
.layout--iframe .pane--content .module {
  padding: 21px 0;
}
.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] .nav--mobile--toggle {
  pointer-events: auto;
}
@media only screen and (max-width: 1150px) {
  .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: var(--bg-fcffff) 0% 0% no-repeat padding-box;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1607843137);
  z-index: 201;
  transition: 0.3s ease-in-out;
  border-bottom: 1px solid #2587ad;
  padding-top: 5px;
  /*@at-root .js--sticky & {
    background-color: transparentize($color: $dark-color, $amount: 0.05);
  }
  @at-root .js--mobile & {
    background-color: $dark-color;
  }*/
  /*&::before {
    content: '';
    display: block;
    height: 7px;
    width: 100%;
    background: #bd8b26;
    background: transparent
      linear-gradient(
        90deg,
        #bd8b26 0%,
        #c89428 10%,
        #d79e2b 20%,
        #e5a92e 30%,
        #f4b430 40%,
        #f9b731 50%,
        #ebad2f 60%,
        #dda32c 70%,
        #cf9929 80%,
        #c28f27 90%,
        #bd8b26 100%
      )
      0% 0% no-repeat padding-box;
  }
  &:after {
    content: '';
    display: inline-block;
    height: 7px;
    width: calc(50.15625% + 35px);
    background: #7a8b95;
    background: transparent
      linear-gradient(90deg, #7a8b95 0%, #c0c9cf 50%, #7a8b95 100%) 0% 0%
      no-repeat padding-box;
    position: absolute;
    top: 0;
    right: -35px;
    -webkit-transform: skewX(-59.97deg);
    transform: skewX(-59.97deg);
  }*/
}
.pane--header::before {
  content: "";
  display: block;
  height: 7px;
  width: 105%;
  background: url("../design/top-bar.svg");
  background-position: center;
  background-size: cover !important;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media only screen and (max-width: 1150px) {
  .pane--header {
    padding: 0;
  }
}
.pane--header .pane_inner {
  margin: 0 auto;
  max-width: 1362px;
  padding-left: 20px;
  padding-right: 20px;
  /*@media only screen and (max-width: 1290px) {
    margin: 0 20px;
  }*/
}
.pane--header .module-logo {
  padding-top: 0px;
  width: 257px;
}
@media only screen and (max-width: 1290px) {
  .pane--header .module-logo {
    width: 20%;
  }
}
@media only screen and (max-width: 1220px) {
  .pane--header .module-logo {
    width: 15%;
  }
}
@media only screen and (max-width: 1150px) {
  .pane--header .module-logo {
    width: auto;
  }
}
.pane--header .module-logo img {
  vertical-align: bottom;
  margin-bottom: 0px;
  max-width: 100%;
}
@media only screen and (max-width: 1220px) {
  .pane--header .module-logo img {
    vertical-align: middle;
  }
}
@media only screen and (max-width: 1150px) {
  .pane--header .module-logo img {
    width: 145px;
    vertical-align: middle;
    margin-top: 0px;
  }
}
.pane--header .nav--desktop--container {
  width: calc(100% - 257px);
  position: relative;
  left: 6px;
}
@media only screen and (max-width: 1290px) {
  .pane--header .nav--desktop--container {
    width: 80%;
  }
}
@media only screen and (max-width: 1220px) {
  .pane--header .nav--desktop--container {
    width: 85%;
  }
}
.pane--header .module,
.pane--header .nav {
  vertical-align: top;
}
.pane--header .layout_toggle {
  display: none;
  text-align: right;
}
.pane--header .layout_toggle-button {
  font-size: 3.4rem;
  color: #0e7ca6;
  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: 1150px) {
  .pane--header .pane_inner {
    padding-bottom: 10px;
  }
  .pane--header .module {
    vertical-align: middle;
  }
  .pane--header .module-stock-header {
    padding-top: 22px;
    padding-bottom: 5px;
  }
  .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--banner {
  color: #fff;
  background-color: #141c1f;
  /* IR Home Page  banner */
}
.pane--banner .pane_inner {
  position: relative;
  max-width: 1340px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.pane--banner .module-page-title {
  min-height: 180px;
  height: 1px;
  /* IE11 Fix */
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  text-align: center;
}
.layout--home .pane--banner .module-page-title {
  height: auto;
  min-height: auto;
  text-align: left;
  display: inline-block;
}

@media only screen and (max-width: 1024px) {
  .pane--banner .module-page-title {
    min-height: 105px;
  }
  .layout--home .pane--banner .module-page-title {
    margin-bottom: 50px;
  }
}
.pane--banner h1 {
  margin: 0;
}
@media only screen and (max-width: 1024px) {
  .pane--banner h1 {
    max-width: none;
  }
}
.ir-home-page .pane--banner.grid {
  margin-left: 0;
  padding-bottom: 85px;
  height: 792px;
}
@media only screen and (max-width: 1200px) {
  .ir-home-page .pane--banner.grid {
    height: auto;
  }
}
@media only screen and (max-width: 768px) {
  .ir-home-page .pane--banner.grid {
    padding-bottom: 0;
  }
}
.ir-home-page .pane--banner .pane_inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
@media only screen and (max-width: 768px) {
  .ir-home-page .pane--banner .pane_inner {
    display: block;
  }
}
.ir-home-page .pane--banner .module_title {
  width: 50%;
}

.pane--content .module {
  padding-top: 42px;
  padding-bottom: 42px;
}
@media only screen and (max-width: 1024px) {
  .pane--content .module {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.pane--content .module_container--outer {
  max-width: 1340px;
  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--thin {
  padding-top: 21px;
  padding-bottom: 21px;
}
.pane--content .module--thin-top {
  padding-top: 21px;
}
.pane--content .module--thin-bottom {
  padding-bottom: 21px;
}
.pane--content .module--thick {
  padding-top: 63px;
  padding-bottom: 63px;
}
.pane--content .module--thick-top {
  padding-top: 63px;
}
.pane--content .module--thick-bottom {
  padding-bottom: 63px;
}
.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-sitemap {
  padding-bottom: 21px;
}
.pane--content .module-home-esg {
  padding-top: 132px;
  padding-bottom: 132px;
}
.pane--footer .social_links, .pane--footer2 .social_links {
  display: inline-block;
}
.pane--footer .social_links .link, .pane--footer2 .social_links .link {
  margin: 0 6px;
  display: inline-block;
}
.pane--footer .social_links .link:last-child, .pane--footer2 .social_links .link:last-child {
  margin-right: 0;
}
@media only screen and (min-width: 1024px) and (max-width: 1028px) {
  .pane--footer .social_links .link, .pane--footer2 .social_links .link {
    margin: 0 3px;
  }
}
.pane--footer .social_links span, .pane--footer2 .social_links span {
  font-size: 16px;
  line-height: 24px;
  color: #060606;
  border-radius: 50%;
  padding: 5px;
}
.pane--footer {
  padding: 0px 0 0 0;
  /*.module:not(.module-embed) {
    padding-bottom: 40px;
  }*/
}
.pane--footer.grid {
  margin-left: 0;
}
.pane--footer .grid_col {
  margin-right: 0;
}
.pane--footer .pane_inner {
  max-width: 1340px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.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 {
  text-align: center;
  margin-top: 0;
}
@media only screen and (max-width: 1024px) {
  .pane--footer .module_title {
    margin-bottom: 15px;
  }
}
.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-contact h2::before {
  display: inline-block;
  position: relative;
  content: "";
  margin-right: 18px;
  vertical-align: middle;
  background-image: url("../design/footer-contact-us-logo.png");
  width: 35px;
  height: 35px;
  background-repeat: no-repeat;
}
.pane--footer .module_introduction {
  display: none;
}
.pane--footer .module-subscribe h3 {
  /*&::before {
    display: inline-block;
    position: relative;
    content: '';
    margin-right: 18px;
    vertical-align: middle;
    background-image: url('../design/footer-email-logo.png');
    width: 35px;
    height: 35px;
    background-repeat: no-repeat;
  }*/
}
.pane--footer .module-subscribe_list-header, .pane--footer .module-subscribe_email .module_required {
  display: none;
}
.pane--footer .module-subscribe_form {
  padding-right: 195px;
}
@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;
}
.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 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: $light-color;
  &:focus {
    outline-offset: 2px;
    outline-color: $light-color;
  }*/
  margin-bottom: 13px;
}
.pane--footer .module-subscribe input[type=text]::placeholder, .pane--footer .module-subscribe input[type=text],
.pane--footer .module-subscribe input[type=email]::placeholder,
.pane--footer .module-subscribe input[type=email] {
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-normal) var(--unnamed-font-size-20)/var(--unnamed-line-spacing-23) var(--unnamed-font-family-karla);
  letter-spacing: var(--unnamed-character-spacing-0);
  color: var(--discovery-dark-blue-005679);
}
.pane--footer .module-subscribe .module_actions {
  margin: 0;
  position: absolute;
  right: 0;
  top: 15%;
  width: 100%;
  max-width: unset;
  /*@include layout-medium {
    top: 10%;
  }
  @include layout-small {
    position: static;
    margin-top: 20px;
  }*/
  /*.button {
    width: 100%;
    border: 2px solid $brand-color--alt2;
    border-radius: 35px;
    font-weight: 600;
    line-height: 17px;
    letter-spacing: 1.5px;
    &:focus {
      outline-offset: 2px;
      outline-color: $light-color !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--footer .module-custom-footer-video-email {
  display: none;
}
.pane--footer .module-custom-footer-video-email .module-subscribe_unsubscribe {
  display: none;
}
.pane--footer .module-custom-footer-video-email .module_container--inner {
  padding-top: 60px !important;
  padding-bottom: 65px !important;
}
@media only screen and (max-width: 1024px) {
  .pane--footer .module-custom-footer-video-email .module_container--inner {
    padding-bottom: 57px !important;
  }
}
.layout--home .pane--footer .module-custom-footer-video-email {
  display: block;
}

@media only screen and (max-width: 1024px) {
  .pane--footer .module-custom-footer-video-email .grid--flex > .grid_col {
    flex-basis: 100%;
    max-width: 100%;
  }
  .pane--footer .module-custom-footer-video-email .grid_col {
    padding-left: 0;
  }
  .pane--footer .module-custom-footer-video-email .module_video-footer {
    margin-bottom: 42px;
  }
}
.pane--footer .module-custom-footer-video-email .module_container--inner {
  max-width: 1334px;
  margin: 0 auto;
  padding: 47px 20px 23px;
}
@media only screen and (max-width: 1024px) {
  .pane--footer .module-custom-footer-video-email .module_container--inner {
    padding-top: 32px !important;
  }
}
.pane--footer .module-custom-footer-video-email table {
  margin: 0;
}
.pane--footer .module-custom-footer-video-email .module-subscribe {
  background-color: transparent;
  max-width: 100%;
}
.pane--footer .module-custom-footer-video-email .module-subscribe .module_container--outer {
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.pane--footer .module-custom-footer-video-email .module-subscribe .module_container--inner {
  padding: 0px !important;
}
.pane--footer .module-custom-footer-video-email .module-subscribe p {
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-normal) var(--unnamed-font-size-23)/var(--unnamed-line-spacing-32) var(--unnamed-font-family-karla);
  letter-spacing: var(--unnamed-character-spacing--0-23);
  color: var(--body-text-495b64);
  text-align: center;
  margin-bottom: 31px;
  margin-top: -5px;
}
@media only screen and (max-width: 1024px) {
  .pane--footer .module-custom-footer-video-email .module-subscribe p {
    font-weight: 400 !important;
    font-size: 15px !important;
    line-height: 18px !important;
  }
}
.pane--footer .module-custom-footer-video-email .module-subscribe .module_required-txt {
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-normal) 14px/17px var(--unnamed-font-family-karla);
  letter-spacing: var(--unnamed-character-spacing-0);
  color: var(--body-text-495b64);
  text-align: left;
  margin: 12px 0 19px;
}
.pane--footer .module-custom-footer-video-email .module-subscribe 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;
}
.pane--footer .module-custom-footer-video-email .module-subscribe .module-subscribe_form {
  padding: 0;
}
.pane--footer .module-custom-footer-video-email .module-subscribe .module-subscribe_form tbody {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.pane--footer .module-custom-footer-video-email .module-subscribe .module-subscribe_form .module-subscribe_email {
  order: 1;
}
.pane--footer .module-custom-footer-video-email .module-subscribe .module-subscribe_form .module-subscribe_first-name {
  order: 2;
}
.pane--footer .module-custom-footer-video-email .module-subscribe .module-subscribe_form .module-subscribe_last-name {
  order: 3;
}
.pane--footer .module-custom-footer-video-email .module-subscribe .module-subscribe_form .module-subscribe_last-name input {
  margin-bottom: 0;
}
.pane--footer .module-custom-footer-video-email .module-subscribe .module_actions {
  position: relative;
  top: unset;
  left: unset;
  right: unset;
  bottom: unset;
}
.pane--footer .module-custom-footer-video-email .module-subscribe .module-subscribe_submit-button .button_text span {
  color: var(--discovery-dark-gold-c79d2d);
}
.pane--footer .module-custom-footer-video-email .module-subscribe .module-subscribe_submit-button .button_text:hover span {
  color: #fff !important;
}
.pane--footer .module-custom-footer-video-email .module-subscribe .module_error-container,
.pane--footer .module-custom-footer-video-email .module-subscribe .module_error-container p {
  font-size: 18px;
  line-height: initial;
  margin: 0;
}
.pane--footer .module-custom-footer-video-email .module-subscribe .module_error-container {
  margin-bottom: 20px;
}
.pane--footer .module-custom-footer-info {
  background: rgba(0, 86, 121, 0.91);
  position: relative;
}
.pane--footer .module-custom-footer-info::before {
  content: "";
  display: block;
  height: 5px;
  width: 100%;
  /*background: url($host + '../design/svg/topbar.svg');
  background-position: center;
  background-size: cover !important;*/
  background: linear-gradient(90deg, #bd8b26 0%, #fcba32 10%, #c08d26 20%, #a19574 30%, #a6afb5 40%, #bac4c9 50%, #929aa1 60%, #a59368 70%, #bc8c28 80%, #ebb934 90%, #bd8b26 100%);
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media only screen and (max-width: 1024px) {
  .pane--footer .module-custom-footer-info::before {
    background-image: url("../design/svg/topbar-mobile.svg");
  }
}
.pane--footer .module-custom-footer-info .module_container--inner {
  max-width: 1334px;
  margin: 0 auto;
  padding: 47px 0px 23px 0px;
}
@media only screen and (max-width: 1024px) {
  .pane--footer .module-custom-footer-info .module_container--inner {
    padding-right: 20px;
  }
}
.pane--footer .module-custom-footer-info .module-footer-quick-links {
  display: block !important;
}
.pane--footer .module-custom-footer-info .grid--flex .grid_col-text-one, .pane--footer .module-custom-footer-info .grid--flex .grid_col-text-three {
  width: auto;
  flex-basis: 35%;
  max-width: 35%;
}
.pane--footer .module-custom-footer-info .grid--flex .grid_col-text-two {
  width: auto;
  flex-basis: 30%;
  max-width: 30%;
}
.pane--footer .module-custom-footer-info .grid--flex .grid_col-text-one p {
  max-width: 430px;
}
.pane--footer .module-custom-footer-info .grid--flex .grid_col-text-two {
  text-align: center;
}
.pane--footer .module-custom-footer-info p.text-one {
  margin: 59px 0 0 0;
  max-width: 100%;
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-normal) 17px/var(--unnamed-line-spacing-23) var(--unnamed-font-family-karla);
  letter-spacing: var(--unnamed-character-spacing-0);
  color: var(--unnamed-color-ffffff);
  text-align: left;
}
.pane--footer .module-custom-footer-info .module_social {
  margin-top: 69px;
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-normal) var(--unnamed-font-size-18)/22px var(--unnamed-font-family-karla);
  letter-spacing: var(--unnamed-character-spacing-0);
  color: var(--unnamed-color-ffffff);
  text-align: left;
}
.pane--footer .module-custom-footer-info .module_social .module_social-text-and-links {
  display: flex;
  flex-wrap: wrap;
  column-gap: 24px;
  align-items: center;
  row-gap: 15px;
}
.pane--footer .module-custom-footer-info .module_social .module_social-links {
  display: flex;
  flex-wrap: wrap;
  column-gap: 12px;
}
.pane--footer .module-custom-footer-info .module_social .module_social-links a {
  display: flex;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;
  color: var(--discovery-dark-gold-c79d2d);
}
.pane--footer .module-custom-footer-info .module_logo {
  margin: 0 auto;
  display: table;
}
.pane--footer .module-custom-footer-info .module_logo img {
  margin: 0 auto;
  display: table;
}
.pane--footer .module-custom-footer-info .module_address {
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-normal) var(--unnamed-font-size-18)/var(--unnamed-line-spacing-23) var(--unnamed-font-family-karla);
  letter-spacing: var(--unnamed-character-spacing-0);
  color: var(--unnamed-color-ffffff);
  text-align: center;
  margin-top: 32px;
  margin-bottom: 66px;
}
.pane--footer .module-custom-footer-info p.last-text:last-child {
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-normal) var(--unnamed-font-size-18)/28px var(--unnamed-font-family-karla);
  letter-spacing: var(--unnamed-character-spacing-0);
  color: var(--unnamed-color-ffffff);
  margin: 0;
}
.pane--footer .module-custom-footer-info .module_susbcribe-button {
  margin-bottom: 12px;
}
.pane--footer .module-custom-footer-info .module_susbcribe-button .button {
  background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;
  border: 1px solid var(--discovery-dark-gold-c79d2d);
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-bold) 16px/19px var(--unnamed-font-family-karla);
  letter-spacing: var(--unnamed-character-spacing-0);
  color: var(--discovery-light-blue-0e7ca6);
  padding: 8px 14px;
  margin: 16px 0 0;
}
.pane--footer .module-custom-footer-info .module_susbcribe-button .icon {
  content: "";
  width: 90px;
  height: 90px;
  display: block;
  margin: 0 auto;
  position: relative;
  background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;
  border: 2px solid var(--discovery-dark-gold-c79d2d);
  box-shadow: 7px 9px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 100%;
}
.pane--footer .module-custom-footer-info .module_susbcribe-button .icon::before {
  content: "";
  background: url("../design/svg/mail-icon.svg");
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.pane--footer .module-custom-footer-info .module_susbcribe-button a {
  margin: 0 auto;
  display: table;
}
.pane--footer .module-custom-footer-info .module_susbcribe-button a:hover .button, .pane--footer .module-custom-footer-info .module_susbcribe-button a:focus .button {
  background: var(--discovery-light-blue-0e7ca6) 0% 0% no-repeat padding-box;
  color: var(--unnamed-color-ffffff);
}
.pane--footer .module-custom-footer-info .module_susbcribe-button a:hover .button::before, .pane--footer .module-custom-footer-info .module_susbcribe-button a:focus .button::before {
  width: 100%;
}
.pane--footer .module-custom-footer-info .module_susbcribe-button a:hover .icon, .pane--footer .module-custom-footer-info .module_susbcribe-button a:focus .icon {
  background: var(--discovery-light-blue-0e7ca6) 0% 0% no-repeat padding-box;
  border-width: 1px;
}
.pane--footer .module-custom-footer-info .module_susbcribe-button a:hover .icon::before, .pane--footer .module-custom-footer-info .module_susbcribe-button a:focus .icon::before {
  filter: brightness(0) saturate(100%) invert(95%) sepia(5%) saturate(21%) hue-rotate(149deg) brightness(104%) contrast(106%);
}
.pane--footer .module-custom-footer-info .module-footer-quick-links {
  padding-bottom: 0;
}
.pane--footer .module-custom-footer-info .module-footer-quick-links .module_container--inner {
  padding: 0;
}
.pane--footer .module-custom-footer-info .module-footer-quick-links .module_container--inner .module-links_list {
  margin: 50px 0 0 0;
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
  column-gap: 80px;
  list-style: none;
  padding: 0 0 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two equal columns */
  align-items: start; /* Aligns all items to the top of their row */
}
@media screen and (max-width: 1400px) {
  .pane--footer .module-custom-footer-info .module-footer-quick-links .module_container--inner .module-links_list {
    column-gap: 0px;
    padding-right: 20px;
    line-height: 25px;
  }
  .pane--footer .module-custom-footer-info .module-footer-quick-links .module_container--inner .module-links_list a {
    line-height: initial !important;
  }
}
@media screen and (max-width: 1200px) {
  .pane--footer .module-custom-footer-info .module-footer-quick-links .module_container--inner .module-links_list {
    max-width: 90%;
  }
}
.pane--footer .module-custom-footer-info .module-footer-quick-links .module_container--inner .module-links_list a {
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-normal) 15px/18px var(--unnamed-font-family-karla);
  letter-spacing: var(--unnamed-character-spacing-0);
  color: var(--unnamed-color-ffffff);
  text-transform: uppercase;
  position: relative;
  padding-left: 15px;
  display: block;
}
.pane--footer .module-custom-footer-info .module-footer-quick-links .module_container--inner .module-links_list a::before {
  content: "";
  margin-right: 5px;
  width: 10px;
  height: 10px;
  background-image: url("../design/svg/tirangle-footer.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 4px;
}
.pane--footer .module-custom-footer-info .module-footer-quick-links .module_container--inner .module-links_list a:hover {
  font-weight: 600;
}
.pane--footer .module-custom-footer-info .module-footer-quick-links .module_container--inner .module-links_list a:focus {
  font-weight: 800;
}
.pane--footer .module-custom-footer-info .module-footer-quick-links .module_container--inner .module-links_list a:hover::before, .pane--footer .module-custom-footer-info .module-footer-quick-links .module_container--inner .module-links_list a:focus::before {
  background-image: url("../design/svg/tirangle-footer-hover.svg");
}
.pane--footer .module-custom-footer-info .module-footer-quick-links .module_container--inner .module-links_list li {
  padding-bottom: 20px;
}
@media only screen and (max-width: 1024px) {
  .pane--footer .module-custom-footer-info .module_desktop {
    display: none;
  }
}
.pane--footer .module-custom-footer-info .module_mobile {
  display: none;
  padding-top: 30px;
  padding-bottom: 25px;
  padding-left: 0;
}
@media only screen and (max-width: 1024px) {
  .pane--footer .module-custom-footer-info .module_mobile {
    display: block;
  }
}
.pane--footer .module-custom-footer-info .module_mobile .module_address {
  margin-top: 16px;
  margin-bottom: 25px;
  font-size: 15px;
  line-height: 20px;
}
.pane--footer .module-custom-footer-info .module_mobile .module_social {
  margin: 0 auto 39px;
  display: table;
  text-align: center;
}
.pane--footer .module-custom-footer-info .module_mobile .module_social .module_social-links {
  row-gap: 15px;
  justify-content: center;
}
.pane--footer .module-custom-footer-info .module_mobile .module_social .module_social-text-and-links {
  justify-content: center;
}
.pane--footer .module-custom-footer-info .module_mobile .module_quick-links .module-links_list {
  margin: 0 0 38px;
  columns: 3;
  -webkit-columns: 3;
  -moz-columns: 3;
  padding: 0;
  max-width: 500px;
  column-gap: 5px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 1024px) {
  .pane--footer .module-custom-footer-info .module_mobile .module_quick-links .module-links_list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* Two equal columns */
    align-items: start; /* Aligns all items to the top of their row */
  }
}
@media screen and (max-width: 425px) {
  .pane--footer .module-custom-footer-info .module_mobile .module_quick-links .module-links_list {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    max-width: 290px;
    column-gap: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns */
    align-items: start; /* Aligns all items to the top of their row */
  }
}
@media screen and (max-width: 310px) {
  .pane--footer .module-custom-footer-info .module_mobile .module_quick-links .module-links_list {
    columns: 1;
    -webkit-columns: 1;
    -moz-columns: 1;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: table;
  }
  .pane--footer .module-custom-footer-info .module_mobile .module_quick-links .module-links_list li {
    padding-bottom: 10px;
  }
  .pane--footer .module-custom-footer-info .module_mobile .module_quick-links .module-links_list li:last-child {
    margin-bottom: 20px;
  }
}
.pane--footer .module-custom-footer-info .module_mobile .module_quick-links .module-links_list a {
  font-size: 14px;
  line-height: 16px;
}
.pane--footer .module-custom-footer-info .module_mobile p.text-one {
  margin: 0 0 50px;
  font-size: 15px;
  line-height: 20px;
  text-align: center;
}
.pane--footer .module-custom-footer-info .module_mobile p.last-text {
  margin-top: 30px;
  text-align: center;
}
.pane--footer2 {
  padding: 17px 0 20px 0;
  background-color: #fff;
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-normal) 16px/19px var(--unnamed-font-family-karla);
  letter-spacing: var(--unnamed-character-spacing-0);
  color: var(--body-text-495b64);
  text-align: center;
}
@media screen and (max-width: 850px) {
  .pane--footer2 {
    text-align: center;
  }
}
.pane--footer2 .pane_inner {
  max-width: 1340px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  /*display: grid;
  @media screen and (min-width: 851px) {
    grid-template-columns: repeat(3, 1fr);
    gap: 0 20px;
    > :nth-child(3) {
      justify-self: end;
    }
  }
  @media screen and (min-width: 1025px) {
    > :first-child,
    > :last-child {
      grid-row: 1 / span 2;
      align-self: center;
    }
    > :nth-child(2),
    > :nth-child(3) {
      justify-self: center;
    }
    > :nth-child(2) {
      grid-row: 1;
    }
    > :nth-child(3) {
      grid-row: 2;
    }
  }*/
}
.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-links {
  margin-top: unset;
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  .pane--footer2 .module-links {
    float: none;
    text-align: center;
  }
}
.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;
  }
}
.pane--footer2 .module-links_list li:not(:first-child)::before {
  content: "|";
  margin: 0 10px;
}
.pane--footer2 .module-q4-credits {
  display: inline-block;
}
.pane--footer2 .copyright {
  margin-top: 0;
  display: inline-block;
}
.pane--footer2 .social {
  text-align: right;
}
.pane--footer2 .social_links span {
  background-color: rgba(255, 255, 255, 0.7);
}
@media only screen and (max-width: 1024px) {
  .pane--footer2 .social {
    display: none;
  }
}
.pane--credits .pane_inner {
  max-width: 1340px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.layout_footer {
  background-color: transparent;
  color: #fff;
}
.layout_footer a {
  color: inherit;
}

/* --------- Page Specific -------- */
.page--no-alternating .pane--content {
  padding: 35px 0;
}
.page--no-alternating .module {
  padding-top: 21px;
  padding-bottom: 21px;
}

/* -------- Module Specific ------- */
.module-what-we-do {
  text-align: left;
}
.module-what-we-do .button {
  margin: 0;
}
.module-what-we-do_content h2 {
  margin: 0;
  text-transform: none;
}
@media only screen and (max-width: 1200px) {
  .module-what-we-do_content h2 {
    margin: 0 auto;
  }
}
.module-what-we-do_content p {
  font-weight: 400;
  margin: 2.4rem 0;
}
@media only screen and (max-width: 1200px) {
  .module-what-we-do {
    text-align: center;
  }
  .module-what-we-do .button {
    margin: 0 auto;
  }
}

/*.module-overview {
  .module_container {
    display: flex;
    justify-content: space-between;
  }

  &_content,
  &_image {
    width: 50%;
  }

  &_content {
    // 6.6rem @ 1440px -> 3.3rem @ 1200px
    // padding-right: clamp(3.3rem, -13.2000rem + 13.7500vw, 6.6rem);
    padding-right: 2.3rem;
    padding-left: 1.3rem;

    p {
      font-size: 2rem;
      line-height: 3rem;
    }
  }

  &_image {
    min-height: 29.8rem;
    height: 100%;
    background: url($host + '/design/overview.jpg') center center no-repeat;
    background-size: cover;
  }

  @include layout-large {
    .module_container {
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    &_content,
    &_image {
      width: 100%;
    }

    &_content {
      padding-right: 0;
      padding-bottom: 6.6rem;
      margin: 0 auto;
    }

    &_image {
      margin-left: 1.3rem;
    }
  }

  @include layout-medium {
    &_image {
      padding-left: 0;
    }
  }
  @include layout-small {
    &_image {
      min-height: 18rem;
      background: url($host + '/design/overview_mobile.jpg') center center
        no-repeat;
      background-size: cover;
    }
  }
}*/
.pane--content .module-overview {
  padding-top: 20px;
  padding-bottom: 54px;
  text-align: left;
}
.pane--content .module-overview .module_container {
  flex-direction: row;
  display: flex;
}
.pane--content .module-overview .module_image {
  width: 100%;
  height: 100%;
  margin: 0;
  max-width: 100%;
  border: 2px solid #c79d2d;
  position: relative;
  overflow: hidden;
}
.pane--content .module-overview .module_image .module_content {
  width: 100%;
  height: 100%;
  margin: 0;
  position: absolute;
  transition: 0.3s ease-in-out all;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1.01);
  transform: translate(-50%, -50%) scale(1.01);
}
.pane--content .module-overview .module_image .module_content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pane--content .module-overview .module_image .module_content:hover {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
  transform: translate(-50%, -50%) scale(1.1);
}
.pane--content .module-overview .module_title {
  font-family: var(--unnamed-font-family-montserrat);
  font-style: var(--unnamed-font-style-normal);
  font-weight: var(--unnamed-font-weight-bold);
  font-size: var(--unnamed-font-size-30);
  line-height: var(--unnamed-line-spacing-40);
  letter-spacing: var(--unnamed-character-spacing--0-3);
  color: var(--discovery-dark-blue-005679);
  max-width: 630px;
  margin-bottom: 19px;
  margin-top: 2px;
  margin-left: 0;
  text-transform: none;
}
.pane--content .module-overview p {
  margin: 0;
  font-family: var(--unnamed-font-family-karla);
  font-style: var(--unnamed-font-style-normal);
  font-weight: var(--unnamed-font-weight-normal);
  font-size: var(--unnamed-font-size-27);
  line-height: var(--unnamed-line-spacing-35);
  letter-spacing: var(--unnamed-character-spacing--0-27);
  color: var(--body-text-495b64);
  max-width: 95%;
}
.pane--content .module-overview .module-overview_image {
  width: 31.8%;
  padding-left: 10px;
}
.pane--content .module-overview .module-overview_image img.mobile {
  display: none;
}
@media screen and (max-width: 1200px) {
  .pane--content .module-overview .module-overview_image {
    height: 100%;
  }
}
@media screen and (max-width: 1350px) {
  .pane--content .module-overview .module-overview_image {
    padding-left: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .pane--content .module-overview .module-overview_image {
    height: 300px;
  }
}
@media only screen and (max-width: 768px) {
  .pane--content .module-overview .module-overview_image {
    height: 250px;
  }
}
@media only screen and (max-width: 480px) {
  .pane--content .module-overview .module-overview_image {
    height: 200px;
  }
}
.pane--content .module-overview .module-overview_content {
  width: 68.2%;
  padding-left: 46px;
}
@media only screen and (max-width: 1200px) {
  .pane--content .module-overview .module-overview_image {
    width: 40%;
  }
  .pane--content .module-overview .module-overview_content {
    width: 60%;
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .pane--content .module-overview .module_container {
    flex-direction: column;
  }
  .pane--content .module-overview .module-overview_image,
.pane--content .module-overview .module-overview_content {
    width: 100%;
  }
  .pane--content .module-overview .module-overview_content {
    order: 1;
  }
  .pane--content .module-overview .module-overview_image {
    order: 2;
  }
  .pane--content .module-overview .module-overview_image img {
    width: 100%;
  }
  .pane--content .module-overview .module-overview_content {
    padding-left: 20px;
    padding-bottom: 14px;
  }
  .pane--content .module-overview .module-overview_content p {
    max-width: 100%;
  }
}
@media only screen and (max-width: 1024px) {
  .pane--content .module-overview {
    padding-bottom: 15px;
  }
  .pane--content .module-overview .module-overview_image img.mobile {
    display: block;
  }
  .pane--content .module-overview .module-overview_image img.desktop {
    display: none;
  }
  .pane--content .module-overview .module_title {
    font-style: var(--unnamed-font-style-normal);
    font-size: var(--unnamed-font-size-18);
    line-height: var(--unnamed-line-spacing-23);
    letter-spacing: var(--unnamed-character-spacing--0-18);
    margin-left: 0;
  }
  .pane--content .module-overview p {
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: -0.15px;
  }
}
.pane--content .module-overview--quick-links {
  padding-top: 40px !important;
  padding-top: 43px !important;
}
@media only screen and (max-width: 1024px) {
  .pane--content .module-overview--quick-links {
    padding-top: 20px !important;
    padding-top: 20px !important;
  }
}
.pane--content .module-overview--quick-links .module_container--outer,
.pane--content .module-overview--quick-links .module_container--inner {
  width: 100%;
}
.pane--content .module-overview--quick-links .module-overview_content {
  padding-left: 20px;
  width: 33.3333333%;
}
@media only screen and (max-width: 1024px) {
  .pane--content .module-overview--quick-links .module-overview_content {
    width: 100%;
  }
}
.pane--content .module-overview--quick-links .module-overview_content .module_title {
  font-family: var(--unnamed-font-family-montserrat);
  font-style: var(--unnamed-font-style-normal);
  font-weight: var(--unnamed-font-weight-600);
  font-size: var(--unnamed-font-size-40);
  line-height: var(--unnamed-line-spacing-45);
  letter-spacing: var(--unnamed-character-spacing-0);
  color: var(--discovery-dark-blue-005679);
  font-weight: 600;
  margin-bottom: 42px;
}
@media only screen and (max-width: 1024px) {
  .pane--content .module-overview--quick-links .module-overview_content .module_title {
    font-size: 25px;
    line-height: 45px;
    margin: 0 auto 10px;
    text-align: center;
  }
}
.pane--content .module-overview--quick-links .module-overview_content ul {
  padding-left: 0;
  list-style: none;
  margin: 0;
  padding-bottom: 103px;
}
@media screen and (max-width: 1310px) {
  .pane--content .module-overview--quick-links .module-overview_content ul {
    max-width: 80%;
  }
}
@media only screen and (max-width: 1024px) {
  .pane--content .module-overview--quick-links .module-overview_content ul {
    max-width: 100%;
    padding-bottom: 0px;
    margin: 0 auto;
    display: table;
  }
}
@media screen and (max-width: 500px) {
  .pane--content .module-overview--quick-links .module-overview_content ul {
    margin-left: unset;
  }
}
@media screen and (max-width: 400px) {
  .pane--content .module-overview--quick-links .module-overview_content ul {
    max-width: 265px;
  }
}
.pane--content .module-overview--quick-links .module-overview_content ul li:not(:last-child) {
  padding-bottom: 20px;
}
@media only screen and (max-width: 1024px) {
  .pane--content .module-overview--quick-links .module-overview_content ul li:not(:last-child) {
    padding-bottom: 0px;
  }
}
.pane--content .module-overview--quick-links .module-overview_content ul .button--plus {
  font-weight: 600;
  font-size: 22px;
  line-height: 22px;
  letter-spacing: -0.33px;
  color: #005679;
}
@media only screen and (max-width: 1024px) {
  .pane--content .module-overview--quick-links .module-overview_content ul .button--plus {
    font-size: 18px;
    line-height: 18px;
    letter-spacing: -0.27px;
  }
}
.pane--content .module-overview--quick-links .module-overview_content ul .button--plus::before, .pane--content .module-overview--quick-links .module-overview_content ul .button--plus:after {
  background-color: #c79d2d;
}
.pane--content .module-overview--quick-links .module-overview_content ul .button--plus::before {
  width: 2px;
  height: 10px;
  bottom: 7px;
  right: 4px;
}
.pane--content .module-overview--quick-links .module-overview_content ul .button--plus::after {
  height: 2px;
  bottom: 5px;
}
.pane--content .module-overview--quick-links .module-overview_content ul .button--plus:not(:hover):not(:focus)::after {
  width: 10px;
}
.pane--content .module-overview--quick-links .module-overview_image {
  width: 66.6666666%;
}
@media only screen and (max-width: 1024px) {
  .pane--content .module-overview--quick-links .module-overview_image {
    width: 100%;
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  .pane--content .module-overview--careers {
    padding-top: 40px !important;
    padding-bottom: 59px !important;
  }
}
@media only screen and (max-width: 1024px) {
  .pane--content .module-overview--careers {
    padding-top: 0 !important;
  }
}
.pane--content .module-overview--careers .module-overview_image {
  width: 48%;
}
@media only screen and (max-width: 1024px) {
  .pane--content .module-overview--careers .module-overview_image {
    width: 100%;
  }
}
.pane--content .module-overview--careers .module-overview_content {
  width: 52%;
}
@media only screen and (max-width: 1024px) {
  .pane--content .module-overview--careers .module-overview_content {
    width: 100%;
  }
}
.pane--content .module-overview--careers .module_title {
  margin-bottom: 9px;
  margin-top: 13px;
}
@media only screen and (max-width: 1024px) {
  .pane--content .module-overview--careers .module_title {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (min-width: 1025px) {
  .pane--content .module-overview--discover-us {
    padding-bottom: 70px;
    padding-top: 50px;
  }
}
@media screen and (min-width: 1025px) {
  .pane--content .module-overview--discover-us .module-overview_image {
    width: 29%;
  }
  .pane--content .module-overview--discover-us .module-overview_content {
    width: 71%;
  }
}
.pane--content .module-overview--discover-us .module_title {
  margin-top: 0px;
  max-width: 100%;
}
.pane--content .module-overview--discover-us .buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 17px;
  margin-top: 47px;
  row-gap: 15px;
}
@media only screen and (max-width: 1024px) {
  .pane--content .module-overview--discover-us .buttons {
    margin-top: 22px;
    column-gap: 10px;
  }
}
.pane--content .module-overview--discover-us .buttons a {
  margin: 0;
  min-width: 220px;
}
.pane--content .module-overview--assets-overview {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 1025px) {
  .pane--content .module-overview--assets-overview {
    padding-bottom: 30px;
    padding-top: 20px;
  }
}
.pane--content .module-overview--assets-overview .title-and-button {
  column-gap: 25px;
  margin-bottom: 7px;
}
.pane--content .module-overview--assets-overview .title-and-button .button--plus {
  position: relative;
  top: -2px;
}
@media screen and (max-width: 1090px) {
  .pane--content .module-overview--assets-overview .title-and-button {
    flex-direction: column;
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
    row-gap: 10px;
  }
}
.pane--content .module-overview--assets-overview .module_title {
  text-transform: uppercase;
  margin: 0;
  font-weight: 800;
}
@media screen and (min-width: 1025px) {
  .pane--content .module-overview--assets-overview .module_title {
    font-size: 26px;
  }
}
.pane--content .module-overview--assets-overview .module-overview_image {
  position: relative;
  height: auto;
}
@media only screen and (max-width: 1024px) {
  .pane--content .module-overview--assets-overview .module-overview_image {
    margin-top: 20px;
  }
}
.pane--content .module-overview--assets-overview .module-overview_image svg {
  position: absolute;
  right: 30px;
  top: -140px;
  max-width: 770px;
}
@media screen and (min-width: 2000px) {
  .pane--content .module-overview--assets-overview .module-overview_image svg {
    top: -120px;
  }
}
@media only screen and (max-width: 1200px) {
  .pane--content .module-overview--assets-overview .module-overview_image svg {
    right: 0;
    max-width: 150%;
  }
}
@media only screen and (max-width: 1024px) {
  .pane--content .module-overview--assets-overview .module-overview_image svg {
    position: relative;
    top: unset;
    max-width: 100%;
    width: auto !important;
    height: auto !important;
  }
}
@media only screen and (max-width: 768px) {
  .pane--content .module-overview--assets-overview .module-overview_image svg {
    max-width: calc(100% + 100px);
    margin-left: -100px;
  }
}
@media only screen and (max-width: 1024px) {
  .pane--content .module-overview--assets-overview .module-overview_image svg #paths-to-hide .hidden {
    display: block !important;
  }
}
.pane--content .module-overview--assets-overview .module-overview_image {
  width: 45%;
}
@media only screen and (max-width: 1024px) {
  .pane--content .module-overview--assets-overview .module-overview_image {
    width: 100%;
  }
}
.pane--content .module-overview--assets-overview .module-overview_content {
  width: 55%;
}
@media only screen and (max-width: 1024px) {
  .pane--content .module-overview--assets-overview .module-overview_content {
    width: 100%;
  }
}
.pane--content .module-overview--assets-overview ul {
  font-family: var(--unnamed-font-family-karla);
  font-style: var(--unnamed-font-style-normal);
  font-weight: var(--unnamed-font-weight-normal);
  font-size: var(--unnamed-font-size-23);
  line-height: var(--unnamed-line-spacing-32);
  letter-spacing: var(--unnamed-character-spacing--0-23);
  color: var(--body-text-495b64);
  margin: 0 0 63px;
  padding-left: 20px;
}
@media only screen and (max-width: 1024px) {
  .pane--content .module-overview--assets-overview ul {
    font-size: 15px;
    line-height: 20px;
    letter-spacing: -0.15px;
  }
}
.pane--content .module-overview--assets-overview ul li:not(:last-child) {
  padding-bottom: 10px;
}
.pane--content .module-overview--assets-overview ul li::marker {
  color: #c79d2d;
}
.pane--content .module-overview--assets-overview ul:last-child {
  margin-bottom: 0;
}

.module-what-we-do .module_container {
  display: flex;
  justify-content: space-between;
  padding-right: 0 !important;
}
.module-what-we-do .module_container--inner {
  display: flex;
}
.module-what-we-do_content, .module-what-we-do_video {
  width: 50%;
}
@media only screen and (max-width: 1200px) {
  .module-what-we-do .video_container {
    width: 100%;
    padding-top: 56.25%;
  }
}
.module-what-we-do_content {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
  padding-right: 2rem;
}
.module-what-we-do_content p {
  font-size: 1.6rem;
  line-height: 2.4rem;
}
@media only screen and (max-width: 1200px) {
  .module-what-we-do_content {
    text-align: center;
  }
}
.module-what-we-do_video {
  position: relative;
  overflow: hidden;
  padding-top: 28.25%;
}
.module-what-we-do_video .responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media only screen and (max-width: 1200px) {
  .module-what-we-do {
    text-align: center;
  }
  .module-what-we-do .module_container {
    flex-direction: column-reverse;
  }
  .module-what-we-do_content, .module-what-we-do_video {
    width: 100%;
  }
  .module-what-we-do_content {
    padding: 6rem 4rem;
    margin: 0 auto;
  }
  .module-what-we-do_video {
    display: flex;
    padding-top: 56.25%;
  }
}
.module-what-we-do .button {
  margin-left: 0;
  margin-right: 0;
}
@media only screen and (max-width: 1200px) {
  .module-what-we-do .button {
    margin-left: auto;
    margin-right: auto;
  }
}

.module-portfolio .grid--flex {
  justify-content: space-between;
}
.module-portfolio .grid--flex .grid_col {
  flex-basis: auto;
  max-width: auto;
}
@media only screen and (max-width: 1024px) {
  .module-portfolio .grid--flex .grid_col {
    flex-basis: 100%;
    max-width: 100%;
    text-align: center;
  }
}
.module-portfolio .grid_col h3,
.module-portfolio .grid_col .h3 {
  margin-top: 0;
  font-family: var(--unnamed-font-family-montserrat);
  font-weight: 600;
  font-size: 26px;
  line-height: initial;
  letter-spacing: 0px;
  color: #fff;
  text-align: left;
  margin-bottom: 20px;
  text-transform: none;
}
@media only screen and (max-width: 1024px) {
  .module-portfolio .grid_col h3,
.module-portfolio .grid_col .h3 {
    text-align: center;
    border-top: 1px solid #c3d1d9;
    padding-top: 20px;
    margin-bottom: 5px;
    font-size: 25px;
    line-height: 45px;
  }
}
.module-portfolio .grid_col p {
  font-family: var(--unnamed-font-family-montserrat);
  font-weight: 700;
  font-size: 16px;
  line-height: initial;
  letter-spacing: 0px;
  color: #fff;
  text-align: left;
  margin: 0;
}
@media only screen and (max-width: 1024px) {
  .module-portfolio .grid_col p {
    text-align: center;
    font-size: 18px;
    line-height: initial;
  }
}
.module-portfolio_column {
  padding: 0 10px;
  text-align: center;
  position: relative;
}
.module-portfolio .slick-slide:not(:first-child) .module-portfolio_column,
.module-portfolio .grid_col {
  height: 100%;
}
.module-portfolio .slick-arrow::before {
  font-size: 20px;
  color: #0e7ca6;
}
@media only screen and (max-width: 1024px) {
  .module-portfolio .module-portfolio_column {
    padding-bottom: 30px;
  }
  .module-portfolio .grid_col:nth-of-type(3) .module-portfolio_column {
    border-left: 0;
  }
}
@media only screen and (max-width: 768px) {
  .module-portfolio .grid {
    padding-bottom: 0;
  }
}

.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 {
  background: -moz-linear-gradient(left, #fff 66.66667%, #eaeff0 66.66667%);
  background: -webkit-linear-gradient(left, #fff 66.66667%, #eaeff0 66.66667%);
  background: linear-gradient(to right, #fff 66.66667%, #eaeff0 66.66667%);
}
@media only screen and (max-width: 1024px) {
  .module-presentation-events {
    background: transparent;
  }
}
.module-presentation-events .module_container--inner > .grid {
  background: -moz-linear-gradient(left, #fff 66.66667%, #eaeff0 66.66667%);
  background: -webkit-linear-gradient(left, #fff 66.66667%, #eaeff0 66.66667%);
  background: linear-gradient(to right, #fff 66.66667%, #eaeff0 66.66667%);
}
@media only screen and (min-width: 1025px) {
  .module-presentation-events .module_container--inner > .grid {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
  }
}
@media only screen and (max-width: 1024px) {
  .module-presentation-events .module_container--inner > .grid {
    background: transparent;
  }
}
.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;
  }
}

/* Language switcher */
.pane--header .module_lang {
  display: inline-block;
}
.pane--header .social_links {
  margin-left: 176px;
}
.pane--header .social_links a {
  color: #c79d2d;
  font-size: 17px;
  margin: 0 23px;
}
.pane--header .social_links a:first-child {
  margin-left: 0;
}
.pane--header .social_links a:last-child {
  margin-right: 0;
}
.pane--header .social_links a [class*=q4-icon]::before {
  color: #c79d2d;
}
.pane--header .social_links a .q4-icon_instagram::before {
  width: 17px;
  height: 17px;
  position: relative;
  top: 2px;
}
.pane--header .social_links a .q4-icon_facebook {
  position: relative;
  top: -1px;
}
.pane--header .social_links a .q4-icon_linkedin {
  position: relative;
  top: -1px;
}
.pane--header .custom-top-links {
  margin-left: 30px;
}
.pane--header .custom-top-links a {
  font-size: 15px;
  line-height: 19px;
  text-transform: uppercase;
  color: var(--discovery-dark-blue-005679);
  font-family: "Montserrat", serif;
  font-weight: 600;
  margin-left: 45px;
}
.pane--header .custom-top-links a:hover {
  color: var(--discovery-light-blue-0e7ca6);
}
.pane--header .custom-top-links a.selected {
  position: relative;
}
.pane--header .custom-top-links a.selected::after {
  content: "";
  background-image: linear-gradient(to right, #c79d2d 100%, rgba(255, 255, 255, 0) 0%);
  background-position: bottom;
  background-size: 7px 5px;
  background-repeat: repeat-x;
  position: absolute;
  width: 100%;
  height: 5px;
  bottom: -5px;
  left: 0;
}
.pane--header .lang-switcher {
  margin-left: 30px;
}
.pane--header .lang-switcher span {
  font-family: "Karla", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  color: #495b64;
}
.pane--header .lang-switcher span.lang-desktop-text::before, .pane--header .lang-switcher span.lang-desktop-text:after {
  content: "";
  display: inline-block;
  width: 25px;
  height: 20px;
  background: var(--table-alt-rows-eaeff0) 0% 0% no-repeat padding-box;
  border: 1px solid var(--discovery-light-blue-0e7ca6);
  opacity: 1;
  vertical-align: middle;
  margin-right: 6px;
  margin-left: -3px;
  position: relative;
  top: -1px;
}
.pane--header .lang-switcher span.lang-desktop-text:after {
  display: none;
}
.pane--header .lang-switcher .current-language {
  margin-left: -3px;
}
.pane--header .lang-switcher .current-language:first-child {
  margin-right: -1px;
}
.pane--header .lang-switcher .current-language:first-child .lang-desktop-text::before {
  display: none;
}
.pane--header .lang-switcher .current-language:first-child .lang-desktop-text:after {
  display: inline-block;
  background: var(--discovery-light-blue-0e7ca6) 0% 0% no-repeat padding-box;
  border: 1px solid var(--discovery-light-blue-0e7ca6);
  opacity: 1;
  vertical-align: middle;
  margin-left: 6px;
  margin-right: 0;
}
.pane--header .lang-switcher .current-language:last-child .lang-desktop-text::before {
  background: var(--discovery-light-blue-0e7ca6) 0% 0% no-repeat padding-box;
}
.pane--header .lang-switcher .current-language:last-child .lang-desktop-text:before {
  margin-left: -1px;
}
.pane--header .lang-switcher a:first-child .lang-desktop-text::before {
  display: none;
}
.pane--header .lang-switcher a:first-child .lang-desktop-text:after {
  display: inline-block;
  background: var(--table-alt-rows-eaeff0) 0% 0% no-repeat padding-box;
  border: 1px solid var(--discovery-light-blue-0e7ca6);
  opacity: 1;
  vertical-align: middle;
  margin-left: 6px;
  margin-right: 0;
}
.pane--header .lang-switcher a.toggled-link .lang-desktop-text::before, .pane--header .lang-switcher a.toggled-link .lang-desktop-text::after {
  background: var(--discovery-light-blue-0e7ca6) 0% 0% no-repeat padding-box;
}
.pane--header .lang-switcher.toggled .current-language .lang-desktop-text {
  color: #b1c8d1;
}
.pane--header .lang-switcher.toggled .current-language .lang-desktop-text::after, .pane--header .lang-switcher.toggled .current-language .lang-desktop-text::before {
  background: #e6edf0 0% 0% no-repeat padding-box !important;
}

.custom-video {
  position: relative;
  margin: 0 auto;
  display: table;
}
.custom-video video,
.custom-video img {
  max-width: 628px;
  width: 100%;
  height: 100%;
  display: block;
  box-shadow: 0px 7px 17px rgba(0, 0, 0, 0.1607843137);
  border: 1px solid var(--discovery-dark-gold-c79d2d);
  object-fit: cover;
}
.custom-video--image a::before {
  content: "";
  width: 89px;
  height: 93px;
  background: url("../design/svg/video-play-button.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: 0.3s all;
}
@media screen and (max-width: 600px) {
  .custom-video--image a::before {
    width: 54px;
    height: 54px;
  }
}

.video-play-pause {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.video-play-pause::before {
  content: "";
  width: 89px;
  height: 93px;
  background: url("../design/svg/video-play-button.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: 0.3s all;
  opacity: 0;
}
@media screen and (max-width: 600px) {
  .video-play-pause::before {
    width: 54px;
    height: 54px;
  }
}
.video-play-pause.no-played::before {
  opacity: 1;
}
.video-play-pause:hover::before {
  opacity: 1;
}
.video-play-pause.play::before {
  opacity: 1;
  background-image: url("../design/svg/video-play-button.svg");
}
.video-play-pause.pause::before {
  background-image: url("../design/svg/video-pause-button.svg") !important;
}

.pane--banner {
  margin-top: 113px;
}
@media screen and (max-width: 1150px) {
  .pane--banner {
    margin-top: 92px;
  }
}

.layout--home .pane--banner .pane_inner {
  max-width: 100%;
  padding: 0;
}

.module-banner-video {
  position: relative;
}
.module-banner-video::after {
  content: "";
  height: 112px;
  background: url("../design/top-angled-bar-under-video.png");
  background-position: center;
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  max-width: 100%;
  background-repeat: no-repeat;
  background-size: 100% 112px;
}
@media screen and (max-width: 1400px) {
  .module-banner-video::after {
    background-image: url("../design/svg/top-angled-bar-under-video.svg");
    background-size: cover;
  }
}
@media only screen and (max-width: 480px) {
  .module-banner-video::after {
    background-image: url("../design/svg/top-angled-bar-under-video-mobile.svg");
    height: 38px;
  }
}
.module-banner-video h1,
.module-banner-video .module_title {
  font-family: var(--unnamed-font-family-montserrat);
  font-style: var(--unnamed-font-style-normal);
  font-weight: var(--unnamed-font-weight-800);
  font-size: var(--unnamed-font-size-70);
  line-height: var(--unnamed-line-spacing-90);
  letter-spacing: var(--unnamed-character-spacing-0-7);
  color: var(--unnamed-color-ffffff);
  font-weight: 700;
  text-transform: none;
}
@media only screen and (max-width: 1024px) {
  .module-banner-video h1,
.module-banner-video .module_title {
    font-family: var(--unnamed-font-family-montserrat);
    font-weight: 800;
    font-size: 28px;
    leading-trim: NONE;
    line-height: 33px;
    letter-spacing: 0.28px;
    text-align: center;
  }
}
.module-banner-video .video-banner {
  padding-top: 105px;
  padding-bottom: 171px;
}
@media only screen and (max-width: 1024px) {
  .module-banner-video .video-banner {
    padding-top: 47px;
    padding-bottom: 100px;
  }
}
@media only screen and (max-width: 480px) {
  .module-banner-video .video-banner {
    padding-bottom: 60px;
  }
}
.module-banner-video .video-banner::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}
.module-banner-video .video-banner video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* This is the magic line */
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}
.module-banner-video .video-banner .text {
  position: relative;
  z-index: 2;
  max-width: 982px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
  text-align: center;
}
.module-banner-video .video-banner .text p {
  max-width: 885px;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--unnamed-font-family-karla);
  font-style: var(--unnamed-font-style-normal);
  font-weight: var(--unnamed-font-weight-bold);
  font-size: var(--unnamed-font-size-35);
  line-height: var(--unnamed-line-spacing-40);
  letter-spacing: var(--unnamed-character-spacing--0-35);
  color: var(--unnamed-color-ffffff);
  margin-top: 16px;
  margin-bottom: 0;
}
@media only screen and (max-width: 1024px) {
  .module-banner-video .video-banner .text p {
    font-family: var(--unnamed-font-family-karla);
    font-weight: 700;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 23px;
    letter-spacing: -0.18px;
    text-align: center;
  }
}
.module-banner-video .video-banner .text .buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  column-gap: 50px;
  margin-top: 138px;
  row-gap: 15px;
}
@media only screen and (max-width: 1024px) {
  .module-banner-video .video-banner .text .buttons {
    margin-top: 22px;
    column-gap: 10px;
    width: calc(100% + 15px);
    margin-left: -6px;
  }
}
.module-banner-video .video-banner .text .buttons a {
  margin: 0;
  min-width: 230px;
}
@media only screen and (max-width: 1024px) {
  .module-banner-video .video-banner .text .buttons a {
    min-width: 190px;
  }
}

.title-and-button {
  display: flex;
  align-items: flex-end;
  column-gap: 19px;
  row-gap: 19px;
  margin-bottom: 29px;
}
.title-and-button .module_title {
  margin-bottom: 0;
}
.title-and-button .button--plus {
  margin-bottom: 6px;
}
.title-and-button .button--plus::after {
  bottom: 5px;
}
@media only screen and (max-width: 1024px) {
  .title-and-button {
    justify-content: space-between;
  }
  .title-and-button .button--plus {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 330px) {
  .title-and-button {
    flex-direction: column;
    justify-content: start;
    align-items: flex-start;
  }
}

.pane--content .module.module-wd-custom-columns {
  padding-top: 40px;
  padding-bottom: 50px;
}
@media only screen and (max-width: 1024px) {
  .pane--content .module.module-wd-custom-columns {
    padding-top: 20px;
    padding-bottom: 25px;
  }
}
@media only screen and (max-width: 768px) {
  .pane--content .module.module-wd-custom-columns {
    padding-bottom: 5px;
  }
}
.pane--content .module.module-wd-custom-columns .module_title {
  margin-bottom: 44px;
}
@media only screen and (max-width: 768px) {
  .pane--content .module.module-wd-custom-columns .module_title {
    margin-bottom: 20px;
  }
}
.pane--content .module.module-wd-custom-columns .grid_col {
  position: relative;
  border-left: 2px solid #e3ce96;
  padding-bottom: 44px;
  padding-right: 20px;
}
.pane--content .module.module-wd-custom-columns .grid_col:first-child {
  border: none;
}
@media only screen and (max-width: 768px) {
  .pane--content .module.module-wd-custom-columns .grid_col {
    border-left: none;
    position: relative;
    padding-bottom: 20px;
    padding-right: 0;
  }
  .pane--content .module.module-wd-custom-columns .grid_col::after {
    content: "";
    border-bottom: 1px solid #707070;
    display: block;
    margin-top: 14px;
  }
  .pane--content .module.module-wd-custom-columns .grid_col:not(:last-child) {
    margin-bottom: 20px;
  }
}
.pane--content .module.module-wd-custom-columns .h3 {
  margin-bottom: 22px;
}
.pane--content .module.module-wd-custom-columns .h3 .button--plus {
  position: absolute;
  bottom: 0;
  left: 20px;
}
.pane--content .module.module-wd-custom-columns .h3 .button--plus::before {
  bottom: 4px;
}
@media only screen and (max-width: 1024px) {
  .pane--content .module.module-wd-custom-columns .h3 .button--plus::before {
    bottom: 3px;
  }
}
@media only screen and (max-width: 768px) {
  .pane--content .module.module-wd-custom-columns .h3 .button--plus {
    position: relative;
    left: unset;
    margin-left: 10px;
  }
  .pane--content .module.module-wd-custom-columns .h3 .button--plus::before {
    bottom: 4px;
  }
}
@media screen and (max-width: 335px) {
  .pane--content .module.module-wd-custom-columns .h3 .button--plus {
    float: none;
    display: table;
    bottom: unset;
    margin-left: 0;
  }
}
.pane--content .module.module-wd-custom-columns p {
  margin-bottom: 0;
  font-family: var(--unnamed-font-family-karla);
  font-style: var(--unnamed-font-style-normal);
  font-weight: var(--unnamed-font-weight-normal);
  font-size: var(--unnamed-font-size-23);
  line-height: var(--unnamed-line-spacing-32);
  letter-spacing: var(--unnamed-character-spacing--0-23);
  color: var(--body-text-495b64);
}
@media only screen and (max-width: 1024px) {
  .pane--content .module.module-wd-custom-columns p {
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: -0.15px;
  }
}

.pane--content .module.module-stay-connected {
  overflow-x: hidden;
  padding-top: 0;
  padding-bottom: 0;
  background: linear-gradient(180deg, #bd8b26 0%, #c89428 10%, #d79e2b 20%, #e5a92e 30%, #f4b430 40%, #f9b731 50%, #ebad2f 60%, #dda32c 70%, #cf9929 80%, #c28f27 90%, #bd8b26 100%);
  position: relative;
}
.pane--content .module.module-stay-connected::before, .pane--content .module.module-stay-connected::after {
  content: "";
  background: linear-gradient(90deg, #bd8b26 0%, #fcba32 10%, #c08d26 20%, #a19574 30%, #a6afb5 40%, #bac4c9 50%, #929aa1 60%, #a59368 70%, #bc8c28 80%, #ebb934 90%, #bd8b26 100%);
  height: 5px;
  width: 100%;
  display: block;
}
.pane--content .module.module-stay-connected::after {
  background: linear-gradient(90deg, #bd8b26 0%, #fcba32 10%, #c08d26 20%, #a19574 30%, #a6afb5 40%, #bac4c9 50%, #929aa1 60%, #a59368 70%, #bc8c28 80%, #ebb934 90%, #bd8b26 100%);
  height: 3px;
}
.pane--content .module.module-stay-connected p {
  font-family: var(--unnamed-font-family-karla);
  font-weight: 500;
  font-size: 25px;
  line-height: 39px;
  letter-spacing: 0px;
  color: #262020;
  margin: 0;
}
@media only screen and (max-width: 1024px) {
  .pane--content .module.module-stay-connected p {
    font-weight: 400;
    font-size: 17px;
    line-height: 19px;
  }
}
.pane--content .module.module-stay-connected .grid_col {
  position: relative;
  padding-top: 16px;
  padding-bottom: 16px;
}
.pane--content .module.module-stay-connected .grid_col:last-child {
  text-align: center;
}
.pane--content .module.module-stay-connected .grid_col:last-child::before {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, #bd8b26 0%, #fcba32 10%, #c08d26 20%, #a19574 30%, #a6afb5 40%, #bac4c9 50%, #929aa1 60%, #a59368 70%, #bc8c28 80%, #ebb934 90%, #bd8b26 100%);
  background: linear-gradient(90deg, #7a8b95 0%, #c0c9cf 50%, #7a8b95 100%);
  /* Create the trapezoid shape: top-left, top-right, bottom-right, bottom-left */
  clip-path: polygon(80px 0%, 100% 0%, 100% 100%, 0% 100%);
  left: 0;
  width: 40vw;
  height: 100%;
  top: 0;
}
@media only screen and (max-width: 1024px) {
  .pane--content .module.module-stay-connected .grid_col:last-child::before {
    clip-path: polygon(50px 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}
@media only screen and (max-width: 1024px) {
  .pane--content .module.module-stay-connected .grid_col {
    padding-top: 22px;
    padding-bottom: 22px;
  }
  .pane--content .module.module-stay-connected .grid_col:first-child {
    flex-basis: 60%;
    max-width: 60%;
  }
  .pane--content .module.module-stay-connected .grid_col:last-child {
    flex-basis: 40%;
    max-width: 40%;
  }
  .pane--content .module.module-stay-connected .grid_col:last-child::before {
    width: 50vw;
  }
}
.pane--content .module.module-stay-connected .button {
  margin: 0;
  font-family: var(--unnamed-font-family-karla);
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0px;
  color: #0e7ca6;
  text-transform: uppercase;
  background-color: #fff;
  padding: 5px 12px 9px;
  font-weight: 500;
  position: absolute;
  top: 50%;
  left: calc(50% + 50px);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 168px;
  min-width: unset;
}
.pane--content .module.module-stay-connected .button span:not([class]) {
  position: relative;
  transition: 0.2s ease-in-out top;
  top: 0;
}
.pane--content .module.module-stay-connected .button .icon::before {
  content: "";
  background: url("../design/svg/mail-icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  width: 24px;
  height: 18px;
  margin-left: 15px;
  display: inline-block;
  position: relative;
  top: 3px;
}
.pane--content .module.module-stay-connected .button:hover, .pane--content .module.module-stay-connected .button:focus {
  background-color: var(--discovery-light-blue-0e7ca6);
  color: #fff;
}
.pane--content .module.module-stay-connected .button:hover span:not([class]), .pane--content .module.module-stay-connected .button:focus span:not([class]) {
  top: -2px;
}
.pane--content .module.module-stay-connected .button:hover .icon, .pane--content .module.module-stay-connected .button:focus .icon {
  -webkit-filter: brightness(0) saturate(100%) invert(98%) sepia(1%) saturate(2%) hue-rotate(159deg) brightness(119%) contrast(100%);
  filter: brightness(0) saturate(100%) invert(98%) sepia(1%) saturate(2%) hue-rotate(159deg) brightness(119%) contrast(100%);
}
@media only screen and (max-width: 1024px) {
  .pane--content .module.module-stay-connected .button {
    width: 110px;
    min-width: 0;
    padding: 8px;
  }
  .pane--content .module.module-stay-connected .button .now {
    display: none;
  }
  .pane--content .module.module-stay-connected .button .icon::before {
    width: 20px;
    height: 15px;
    margin-left: 8px;
    top: 3px;
  }
}
@media screen and (max-width: 600px) {
  .pane--content .module.module-stay-connected .button {
    left: calc(50% + 20px);
  }
}
@media screen and (max-width: 400px) {
  .pane--content .module.module-stay-connected .button {
    width: 100px;
  }
  .pane--content .module.module-stay-connected .button .icon::before {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5px;
  }
}

.layout--home .module-portfolio {
  padding-top: 37px !important;
  padding-bottom: 84px !important;
  position: relative;
}
.layout--home .module-portfolio::after {
  content: "";
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #bd8b26 0%, #fcba32 10%, #c08d26 20%, #a19574 30%, #a6afb5 40%, #bac4c9 50%, #929aa1 60%, #a59368 70%, #bc8c28 80%, #ebb934 90%, #bd8b26 100%);
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 1024px) {
  .layout--home .module-portfolio {
    padding-bottom: 40px !important;
  }
}
.layout--home .module-portfolio .module_title {
  margin-bottom: 50px;
  text-transform: none;
}
@media only screen and (max-width: 1024px) {
  .layout--home .module-portfolio .module_title {
    margin-bottom: 20px;
    text-align: center;
  }
}

.module-projects-overview {
  padding-top: 46px !important;
  padding-bottom: 72px !important;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .module-projects-overview {
    padding-top: 26px !important;
    padding-bottom: 40px !important;
  }
}
.module-projects-overview::before {
  content: "";
  background: linear-gradient(90deg, #bd8b26 0%, #fcba32 10%, #c08d26 20%, #a19574 30%, #a6afb5 40%, #bac4c9 50%, #929aa1 60%, #a59368 70%, #bc8c28 80%, #ebb934 90%, #bd8b26 100%);
  height: 3px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.module-projects-overview .title-and-button {
  margin-bottom: 25px;
}
.module-projects-overview .module_image {
  width: 100%;
  display: block;
  margin: 0;
  max-width: 100%;
  height: 375px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 33px;
}
@media only screen and (max-width: 1024px) {
  .module-projects-overview .module_image {
    height: 405px;
  }
}
@media only screen and (max-width: 768px) {
  .module-projects-overview .module_image {
    height: 205px;
  }
}
.module-projects-overview .module_image::before {
  content: "";
  height: 7px;
  width: 100%;
  background: linear-gradient(90deg, #b1971e 0%, #f1bd1a 50%, #b1971e 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.module-projects-overview .module_image--porcupine-complex {
  background-image: url("../design/home/porcupine-complex.jpeg");
}
.module-projects-overview .module_image--porcupine-complex p {
  max-width: 390px;
}
.module-projects-overview .module_image--cordero-project {
  background-image: url("../design/home/cordero-project.jpeg");
}
.module-projects-overview .module_image--cordero-project::before {
  background: linear-gradient(90deg, #7a8b95 0%, #c0c9cf 50%, #7a8b95 100%);
}
@media only screen and (max-width: 1024px) {
  .module-projects-overview .module_image--cordero-project p {
    max-width: 530px;
  }
}
.module-projects-overview .module_image .overlay {
  content: "";
  background: var(--discovery-dark-blue-005679);
  opacity: 0.69;
  mix-blend-mode: multiply;
  width: 100%;
  height: 100%;
  position: absolute;
  will-change: opacity;
  transform: translateZ(0);
  opacity: 0;
  transition: 0.3s ease-in-out all;
}
.module-projects-overview .module_image .module_txt {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: 0.4s ease-in-out all;
  top: -100%;
}
.module-projects-overview .module_image .module_txt,
.module-projects-overview .module_image .module_txt p {
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-bold) var(--unnamed-font-size-27)/39px var(--unnamed-font-family-montserrat);
  letter-spacing: var(--unnamed-character-spacing--0-27);
  color: var(--unnamed-color-ffffff);
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .module-projects-overview .module_image .module_txt,
.module-projects-overview .module_image .module_txt p {
    font-size: 18px;
    line-height: initial;
  }
}
.module-projects-overview .module_image .module_txt p {
  position: relative;
  text-transform: uppercase;
}
.module-projects-overview a.module_image-link {
  width: 100%;
  display: block;
  overflow: hidden;
}
.module-projects-overview a.module_image-link:hover .module_txt, .module-projects-overview a.module_image-link:focus .module_txt {
  opacity: 1;
  top: 0;
}
.module-projects-overview a.module_image-link:hover .overlay, .module-projects-overview a.module_image-link:focus .overlay {
  opacity: 0.69;
}
.module-projects-overview .grid_col {
  position: relative;
}
.module-projects-overview .grid_col:first-child {
  padding-right: 23px;
}
@media only screen and (max-width: 1024px) {
  .module-projects-overview .grid_col:first-child {
    padding-right: 0;
  }
}
.module-projects-overview .grid_col:last-child {
  padding-left: 23px;
}
@media only screen and (max-width: 1024px) {
  .module-projects-overview .grid_col:last-child {
    padding-left: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .module-projects-overview .grid_col {
    width: 100%;
  }
}
.module-projects-overview .title-and-button {
  column-gap: 5px;
}
@media screen and (min-width: 1025px) {
  .module-projects-overview .title-and-button .button--plus {
    position: absolute;
    left: 20px;
    bottom: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .module-projects-overview .title-and-button .module_title {
    width: calc(100% - 115px);
  }
}
@media screen and (max-width: 400px) {
  .module-projects-overview .title-and-button {
    flex-direction: column;
    align-items: flex-start;
  }
  .module-projects-overview .title-and-button .module_title {
    width: 100%;
  }
}

.module-right-values {
  position: relative;
}
.module-right-values .module_title {
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .module-right-values .module_title {
    margin-bottom: 0px;
  }
}
.module-right-values .module_top-image,
.module-right-values .module_bottom-image {
  width: 100vw;
  height: 116px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  background: url("../design/home/2ecd2824df71e0e33b2b2a3bd29aacc62caf0edc.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 30%;
}
.module-right-values .module_top-image::before {
  content: "";
  background: linear-gradient(90deg, #bd8b26 0%, #fcba32 10%, #c08d26 20%, #a19574 30%, #a6afb5 40%, #bac4c9 50%, #929aa1 60%, #a59368 70%, #bc8c28 80%, #ebb934 90%, #bd8b26 100%);
  height: 5px;
  display: block;
}
.module-right-values .module_bottom-image {
  height: 132px;
  background-position: center bottom;
}
@media only screen and (max-width: 768px) {
  .module-right-values .module_bottom-image {
    height: 100px;
  }
}
@media only screen and (max-width: 768px) {
  .module-right-values .module_bottom-image {
    height: 72px;
  }
}
.module-right-values .module_bottom-image::before {
  content: "";
  height: 112px;
  background: url("../design/home/ValuesTopBar.png");
  background-position: center;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  max-width: 100%;
  background-repeat: no-repeat;
  background-size: 100% 112px;
}
@media only screen and (max-width: 768px) {
  .module-right-values .module_bottom-image::before {
    height: 50px;
    background-size: 100% 100%;
    background-position: center bottom;
  }
}
@media screen and (max-width: 400px) {
  .module-right-values .module_bottom-image::before {
    height: 30px;
    background-size: auto 100%;
    background-position: center bottom;
  }
}
.module-right-values .module_bottom-image::after {
  content: "";
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #bd8b26 0%, #fcba32 10%, #c08d26 20%, #a19574 30%, #a6afb5 40%, #bac4c9 50%, #929aa1 60%, #a59368 70%, #bc8c28 80%, #ebb934 90%, #bd8b26 100%);
  position: absolute;
  bottom: 0;
}
.module-right-values .grid {
  position: relative;
}
.module-right-values .grid.module_values {
  margin-top: -70px;
  justify-content: center;
}
@media only screen and (max-width: 1024px) {
  .module-right-values .grid.module_values {
    margin-top: 20px;
  }
}
.module-right-values .grid.module_values a {
  display: block;
}
.module-right-values .grid.module_discover-more-link {
  text-align: center;
  position: relative;
  z-index: 2;
  position: absolute;
  left: 0px;
  width: 100%;
  bottom: 130px;
}
@media only screen and (max-width: 1024px) {
  .module-right-values .grid.module_discover-more-link {
    position: relative;
    bottom: unset;
    margin-bottom: 15px;
    margin-top: -10px;
  }
}
.module-right-values .grid .grid_col {
  text-align: center;
}
@media screen and (max-width: 350px) {
  .module-right-values .grid .grid_col {
    flex-basis: 100%;
    max-width: 100%;
  }
}
.module-right-values .grid .grid_col p {
  margin: 10px 0 0 -10px;
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-bold) var(--unnamed-font-size-22)/var(--unnamed-line-spacing-30) var(--unnamed-font-family-montserrat);
  letter-spacing: var(--unnamed-character-spacing--0-22);
  color: var(--discovery-dark-blue-005679);
  margin-bottom: 39px;
}
@media only screen and (max-width: 1024px) {
  .module-right-values .grid .grid_col p {
    font-weight: 700;
    font-size: 18px;
    line-height: 25px;
    letter-spacing: -0.18px;
    text-align: center;
  }
}
.module-right-values .grid .grid_col img {
  margin: 0 auto;
  display: table;
}
@media only screen and (max-width: 768px) {
  .module-right-values .grid .grid_col img {
    max-width: 100px;
  }
}

.module--custom-border-top {
  position: relative;
}
.module--custom-border-top::before {
  content: "";
  height: 5px;
  width: 100%;
  background: linear-gradient(90deg, #bd8b26 0%, #fcba32 10%, #c08d26 20%, #a19574 30%, #a6afb5 40%, #bac4c9 50%, #929aa1 60%, #a59368 70%, #bc8c28 80%, #ebb934 90%, #bd8b26 100%);
  position: absolute;
  top: 0;
  left: 0;
}

.module-values-mission-values {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}
.module-values-mission-values p {
  margin-bottom: 0;
}
.module-values-mission-values .module_title {
  text-transform: uppercase;
  margin-top: 34px;
  padding-bottom: 10px;
  border-bottom: 1px solid #c79d2d;
}
@media only screen and (max-width: 1024px) {
  .module-values-mission-values .module_title {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .module-values-mission-values .module_introduction-values {
    margin-bottom: 23px;
  }
}
.module-values-mission-values .module_introduction-values p {
  max-width: 1123px;
  font-family: var(--unnamed-font-family-karla);
  font-style: var(--unnamed-font-style-normal);
  font-weight: var(--unnamed-font-weight-normal);
  font-size: var(--unnamed-font-size-23);
  line-height: var(--unnamed-line-spacing-32);
  letter-spacing: var(--unnamed-character-spacing--0-23);
  color: var(--body-text-495b64);
}
@media only screen and (max-width: 1024px) {
  .module-values-mission-values .module_introduction-values p {
    font-family: var(--unnamed-font-family-karla);
    font-style: var(--unnamed-font-style-normal);
    font-weight: var(--unnamed-font-weight-normal);
    font-size: var(--unnamed-font-size-18);
    line-height: var(--unnamed-line-spacing-23);
    letter-spacing: var(--unnamed-character-spacing-0);
    color: var(--unnamed-color-3d474d);
  }
}
.module-values-mission-values .module_introduction-values p:last-child {
  margin-bottom: 0;
}
.module-values-mission-values .module_introduction-values .custom-txt {
  padding-right: 41px;
}
.module-values-mission-values .module_introduction-values .custom-txt p:first-child {
  margin-top: 0;
}
@media only screen and (max-width: 1024px) {
  .module-values-mission-values .module_introduction-values .custom-txt {
    padding-right: 0;
    margin-bottom: 25px;
  }
}
.module-values-mission-values .module_introduction-values .module_image {
  width: 100%;
  height: 100%;
  margin: 0;
  max-width: 100%;
  border: 2px solid #c79d2d;
  position: relative;
  overflow: hidden;
  min-height: 359px;
}
@media only screen and (max-width: 480px) {
  .module-values-mission-values .module_introduction-values .module_image {
    min-height: 250px;
  }
}
.module-values-mission-values .module_introduction-values .module_image .module_content {
  width: 100%;
  height: 100%;
  margin: 0;
  position: absolute;
  transition: 0.3s ease-in-out all;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1.01);
  transform: translate(-50%, -50%) scale(1.01);
}
.module-values-mission-values .module_introduction-values .module_image .module_content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}
@media only screen and (max-width: 768px) {
  .module-values-mission-values .module_introduction-values .module_image .module_content img {
    object-position: center;
  }
}
.module-values-mission-values .module_introduction-values .module_image .module_content:hover {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
  transform: translate(-50%, -50%) scale(1.1);
}
.module-values-mission-values .module_vision-mission {
  margin-bottom: 49px;
  row-gap: 20px;
}
@media only screen and (max-width: 1024px) {
  .module-values-mission-values .module_vision-mission {
    margin-bottom: 23px;
  }
}
.module-values-mission-values .module_vision-mission p {
  max-width: 545px;
}
@media only screen and (max-width: 1024px) {
  .module-values-mission-values .module_vision-mission p {
    max-width: 100% !important;
  }
}
.module-values-mission-values .module_our-values-dv {
  row-gap: 63px;
  justify-content: center;
  padding-bottom: 20px;
}
@media only screen and (max-width: 480px) {
  .module-values-mission-values .module_our-values-dv {
    row-gap: 40px;
  }
}
.module-values-mission-values .module_our-values-dv .module_introduction-values {
  margin-bottom: 52px;
}
@media only screen and (max-width: 1024px) {
  .module-values-mission-values .module_our-values-dv .module_introduction-values {
    margin-bottom: 0px;
  }
}
.module-values-mission-values .module_our-values-dv .module_introduction-values p {
  margin-top: 21px;
}
@media only screen and (max-width: 768px) {
  .module-values-mission-values .module_our-values-dv .module_introduction-values p {
    margin-top: 0;
  }
}
.module-values-mission-values .module_our-values-dv .module_custom-value {
  display: flex;
  column-gap: 25px;
  align-items: flex-start;
}
@media only screen and (max-width: 480px) {
  .module-values-mission-values .module_our-values-dv .module_custom-value {
    flex-direction: column;
    column-gap: 0;
    text-align: center;
  }
}
.module-values-mission-values .module_our-values-dv .module_custom-value img {
  width: 125px;
}
@media only screen and (max-width: 1024px) {
  .module-values-mission-values .module_our-values-dv .module_custom-value img {
    width: 100px;
  }
}
@media only screen and (max-width: 480px) {
  .module-values-mission-values .module_our-values-dv .module_custom-value img {
    margin: 0 auto;
  }
}
.module-values-mission-values .module_our-values-dv .module_custom-value .h4 {
  font-family: var(--unnamed-font-family-montserrat);
  font-style: var(--unnamed-font-style-normal);
  font-weight: var(--unnamed-font-weight-bold);
  font-size: var(--unnamed-font-size-22);
  line-height: var(--unnamed-line-spacing-30);
  letter-spacing: var(--unnamed-character-spacing--0-22);
  color: var(--discovery-dark-blue-005679);
  margin: 0 0 21px;
}
.module-values-mission-values .module_our-values-dv .module_custom-value p {
  max-width: 440px;
}
@media only screen and (max-width: 1024px) {
  .module-values-mission-values .module_our-values-dv .module_custom-value p {
    max-width: 100% !important;
  }
}
.module-values-mission-values .module_our-values-dv .module_custom-value--tp p {
  max-width: 480px;
}
.module-values-mission-values .module_our-values-dv .module_custom-value--rp p {
  max-width: 480px;
}
.module-values-mission-values .module_our-values-dv .module_custom-value--op {
  justify-content: center;
}
.module-values-mission-values .module_our-values-dv .module_custom-value--op p {
  max-width: 550px;
}
.module-values-mission-values .module_top-image,
.module-values-mission-values .module_bottom-image {
  width: 100vw;
  height: 116px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  background: url("../design/home/2ecd2824df71e0e33b2b2a3bd29aacc62caf0edc.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 30%;
}
.module-values-mission-values .module_top-image {
  /*&::before {
    content: '';
    background: linear-gradient(
      90deg,
      #bd8b26 0%,
      #fcba32 10%,
      #c08d26 20%,
      #a19574 30%,
      #a6afb5 40%,
      #bac4c9 50%,
      #929aa1 60%,
      #a59368 70%,
      #bc8c28 80%,
      #ebb934 90%,
      #bd8b26 100%
    );
    height: 5px;
    display: block;
  }*/
}
.module-values-mission-values .module_bottom-image {
  height: 132px;
  background-position: center bottom;
  /*&::after {
    content: '';
    width: 100%;
    height: 5px;
    background: linear-gradient(
      90deg,
      #bd8b26 0%,
      #fcba32 10%,
      #c08d26 20%,
      #a19574 30%,
      #a6afb5 40%,
      #bac4c9 50%,
      #929aa1 60%,
      #a59368 70%,
      #bc8c28 80%,
      #ebb934 90%,
      #bd8b26 100%
    );
    position: absolute;
    bottom: 0;
  }*/
}
@media only screen and (max-width: 768px) {
  .module-values-mission-values .module_bottom-image {
    height: 100px;
  }
}
@media only screen and (max-width: 768px) {
  .module-values-mission-values .module_bottom-image {
    height: 72px;
  }
}
.module-values-mission-values .module_bottom-image::before {
  content: "";
  height: 112px;
  background: url("../design/home/ValuesTopBar.png");
  background-position: center;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  max-width: 100%;
  background-repeat: no-repeat;
  background-size: 100% 112px;
}
@media only screen and (max-width: 768px) {
  .module-values-mission-values .module_bottom-image::before {
    height: 50px;
    background-size: 100% 100%;
    background-position: center bottom;
  }
}
@media screen and (max-width: 400px) {
  .module-values-mission-values .module_bottom-image::before {
    height: 30px;
    background-size: auto 100%;
    background-position: center bottom;
  }
}

.module-tabs {
  /* 2. Quitamos la transición y aplicamos la animación al contenedor activo */
  /* Cuando el elemento NO está oculto, se dispara la animación */
  /* Aseguramos que la clase hidden tenga prioridad para ocultar */
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(0px); /* Opcional: un pequeño salto hacia arriba */
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.module-tabs .module-item_container {
  display: none; /* Oculto por defecto */
}
.module-tabs .module-item_container:not(.js--hidden) {
  display: block;
  animation: fadeIn 1s ease forwards;
}
.module-tabs .js--hidden {
  display: none !important;
}
.module-tabs_links {
  position: relative;
  margin-bottom: 53px;
}
.module-tabs_links::after {
  content: "";
  height: 3px;
  background: linear-gradient(90deg, #bd8b26 0%, #fcba32 10%, #c08d26 20%, #a19574 30%, #a6afb5 40%, #bac4c9 50%, #929aa1 60%, #a59368 70%, #bc8c28 80%, #ebb934 90%, #bd8b26 100%);
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
@media screen and (max-width: 600px) {
  .module-tabs_links::after {
    bottom: -10px;
  }
}
.module-tabs_links .module-tabs_link {
  font-family: var(--unnamed-font-family-montserrat);
  font-weight: 400;
  font-size: 22px;
  line-height: 45px;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: var(--discovery-dark-blue-005679);
  margin-right: 38px;
  cursor: pointer;
}
@media screen and (max-width: 600px) {
  .module-tabs_links .module-tabs_link {
    display: table;
    line-height: initial;
    padding-bottom: 10px;
    margin-bottom: 10px;
    margin-right: unset;
  }
}
.module-tabs_links .module-tabs_link:hover, .module-tabs_links .module-tabs_link:focus {
  font-weight: 600;
  color: #0e7ca6;
}
.module-tabs_links .module-tabs_link.js--selected {
  font-weight: 800;
  position: relative;
  color: #0e7ca6;
}
.module-tabs_links .module-tabs_link.js--selected::after {
  content: "";
  height: 10px;
  width: 100%;
  background-color: #c79d2d;
  position: absolute;
  left: 0;
  bottom: -12px;
  z-index: 1;
}
@media screen and (max-width: 600px) {
  .module-tabs_links .module-tabs_link.js--selected::after {
    bottom: 0;
  }
}

.blue-strong-text {
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-bold) var(--unnamed-font-size-20)/var(--unnamed-line-spacing-32) var(--unnamed-font-family-montserrat) !important;
  font-weight: 600 !important;
  color: var(--discovery-dark-blue-005679) !important;
}
@media only screen and (max-width: 1024px) {
  .blue-strong-text {
    font-size: 18px !important;
    line-height: 23px !important;
  }
}

.module.module-governance {
  padding-top: 17px;
}
.module.module-governance .module-tabs_links {
  margin-bottom: 31px;
}
.module.module-governance .h3 {
  padding-bottom: 10px;
  border-bottom: 1px solid #c79d2d;
  text-transform: none;
  font-weight: 700;
}
@media screen and (min-width: 1025px) {
  .module.module-governance .h3 {
    font-size: 25px;
    line-height: 30px;
    letter-spacing: -0.25px;
  }
}
.module.module-governance .module_intro {
  margin-bottom: 33px;
  max-width: 1280px;
}
.module.module-governance .module_intro .h3 {
  text-transform: uppercase;
  margin-bottom: 20px;
}
.module.module-governance .bod-text {
  max-width: 1200px;
}
.module.module-governance .audit-text {
  max-width: 1280px;
}
.module.module-governance .ss-text {
  max-width: 1240px;
}
.module.module-governance .tech-text {
  max-width: 1200px;
}
.module.module-governance .module-downloads {
  margin-bottom: 50px;
  margin-top: 29px;
}
.module.module-governance .blue-strong-text {
  margin-top: 0;
}
@media screen and (max-width: 991px) {
  .module.module-governance .module_board-committee-composition .module_links {
    min-width: 200px;
  }
}
@media screen and (max-width: 991px) {
  .module.module-governance .button--plus::after {
    bottom: 5px;
  }
}

.module_intro .h3 {
  padding-bottom: 10px;
  border-bottom: 1px solid #c79d2d;
}
.module_intro p {
  font-family: var(--unnamed-font-family-karla);
  font-style: var(--unnamed-font-style-normal);
  font-weight: var(--unnamed-font-weight-normal);
  font-size: var(--unnamed-font-size-23);
  line-height: var(--unnamed-line-spacing-32);
  letter-spacing: var(--unnamed-character-spacing--0-23);
  color: var(--body-text-495b64);
}
@media only screen and (max-width: 1024px) {
  .module_intro p {
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: -0.15px;
  }
}

@media only screen and (max-width: 1024px) {
  .PageProject {
    overflow-x: hidden;
  }
}
.PageProject ul.list-disc.ml-8 li::marker {
  color: var(--body-text-495b64) !important;
}
.PageProject .module-tabs {
  display: flex;
}
.PageProject .layout:not(.layout--home) .pane--banner .module-banner-description {
  position: relative;
  z-index: 9;
}
.PageProject .layout:not(.layout--home) .pane--banner .module-banner-description .grid--flex {
  justify-content: space-between;
  row-gap: 30px;
}
@media screen and (max-width: 1040px) {
  .PageProject .layout:not(.layout--home) .pane--banner .module-banner-description .grid--flex .grid_col {
    width: 50%;
  }
  .PageProject .layout:not(.layout--home) .pane--banner .module-banner-description .grid--flex .grid_col .bullet-text {
    display: table;
  }
}
@media screen and (max-width: 650px) {
  .PageProject .layout:not(.layout--home) .pane--banner .module-banner-description .grid--flex .grid_col {
    width: 100%;
  }
}
.PageProject .layout:not(.layout--home) .pane--banner .module-banner-description img {
  margin: 0 auto;
  display: table;
  max-width: 141px;
  margin-bottom: 10px;
}
.PageProject .layout:not(.layout--home) .pane--banner .module-banner-description .title {
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-bold) var(--unnamed-font-size-18)/var(--unnamed-line-spacing-23) var(--unnamed-font-family-montserrat);
  letter-spacing: var(--unnamed-character-spacing--0-18);
  color: var(--discovery-reverse-gold-fabf0e);
  text-transform: uppercase;
  margin-bottom: 15px;
}
.PageProject .layout:not(.layout--home) .pane--banner .module-banner-description .bullet-text {
  margin: 0 auto;
  text-align: left;
}
.PageProject .layout:not(.layout--home) .pane--banner .module-banner-description .bullet-text p {
  margin-bottom: 3px;
  text-align: left;
}
.PageProject .layout:not(.layout--home) .pane--banner .module-banner-description .bullet-text ul {
  padding-left: 20px;
  margin: 0;
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-normal) var(--unnamed-font-size-18)/var(--unnamed-line-spacing-25) var(--unnamed-font-family-karla);
  letter-spacing: var(--unnamed-character-spacing--0-09);
}
.PageProject .layout:not(.layout--home) .pane--banner .module-banner-description .bullet-text ul li:not(:last-child) {
  padding-bottom: 3px;
}
.PageProject .layout:not(.layout--home) .pane--banner .module-banner-description .bullet-text ul li::marker {
  color: #c79d2d;
}
.PageProject .layout:not(.layout--home) .pane--banner .module-banner-description .bullet-text ul:last-child {
  margin-bottom: 0;
}
.PageProject .module-project-content {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: -115px;
  /*.masonry-wrapper {
    column-count: 3;
    column-gap: 15px;
    padding: 15px;
  }

  .masonry-item {
    break-inside: avoid;
    margin-bottom: 15px;
    background: #f4f4f4;
    //border-radius: 8px;
    overflow: hidden;
  }

  .masonry-item img {
    width: 100%;
    height: auto; 
    display: block;
  }*/
}
.PageProject .module-project-content > .module_container--outer {
  padding-left: 20px !important;
}
@media only screen and (max-width: 1024px) {
  .PageProject .module-project-content > .module_container--outer {
    padding-left: 0px !important;
  }
}
.PageProject .module-project-content .module_container--inner {
  padding-left: 0 !important;
}
.PageProject .module-project-content .container {
  display: flex;
  gap: 0px;
  padding: 0px;
}
.PageProject .module-project-content .sidebar,
.PageProject .module-project-content .main-content {
  flex: 0 0 auto;
}
.PageProject .module-project-content .sidebar {
  width: 337px;
  background: #ecf1f7;
  position: relative;
  padding-right: 26px;
}
.PageProject .module-project-content .sidebar::before {
  content: "";
  width: 50vw;
  position: absolute;
  height: 100%;
  background: #ecf1f7;
  right: 0;
  top: 0;
}
.PageProject .module-project-content .sticky-element {
  position: sticky;
  top: -30px;
  padding: 170px 0 0px 0px;
  background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;
  border: 1px solid var(--tablegray-d1d9dd);
}
.PageProject .module-project-content .main-content {
  width: calc(100% - 337px);
  /*background: #f0f0f0;
  height: 2000px;*/
  padding: 180px 0 0px 0px;
}
.PageProject .module-project-content .h3 {
  padding-bottom: 10px;
  border-bottom: 1px solid #c79d2d;
}
.PageProject .module-project-content .module_container {
  padding-left: 37px;
}
.PageProject .module-project-content .module_container--about {
  padding-bottom: 58px;
}
.PageProject .module-project-content .module_container--about .project-gallery img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.PageProject .module-project-content .module_container--about .module_intro {
  margin-top: 37px;
}
@media only screen and (max-width: 1200px) {
  .PageProject .module-project-content .module_container--about .module_intro {
    margin-right: 0;
  }
}
.PageProject .module-project-content .module_container--about .module_intro .big {
  margin: 0;
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-bold) 25px/var(--unnamed-line-spacing-40) var(--unnamed-font-family-montserrat);
  letter-spacing: var(--unnamed-character-spacing--0-3);
  color: var(--discovery-dark-blue-005679);
  line-height: 35px;
}
@media screen and (min-width: 1025px) {
  .PageProject .module-project-content .module_container--about .module_intro .big {
    max-width: 93%;
  }
}
.PageProject .module-project-content .module_container--about .module_intro .project-gallery {
  width: calc(100% + 100px);
}
@media screen and (max-width: 1516px) {
  .PageProject .module-project-content .module_container--about .module_intro .project-gallery {
    width: calc(100% + (100vw - 1283px) / 2 - 1px);
  }
}
@media screen and (max-width: 1330px) {
  .PageProject .module-project-content .module_container--about .module_intro .project-gallery {
    width: 100%;
  }
}
.PageProject .module-project-content .module_container--about .grid_col--intro {
  width: 43.5%;
}
@media only screen and (max-width: 1200px) {
  .PageProject .module-project-content .module_container--about .grid_col--intro {
    width: 100%;
    margin-bottom: 30px;
  }
}
.PageProject .module-project-content .module_container--about .grid_col--slider {
  width: 56.5%;
}
@media only screen and (max-width: 1200px) {
  .PageProject .module-project-content .module_container--about .grid_col--slider {
    width: 100%;
  }
}
.PageProject .module-project-content .module_container--about .buttons {
  display: flex;
  column-gap: 36px;
  row-gap: 20px;
}
.PageProject .module-project-content .module_container--about .module_last-text {
  margin-top: 45px;
}
@media only screen and (max-width: 1200px) {
  .PageProject .module-project-content .module_container--about .module_last-text {
    margin-top: 20px;
  }
}
.PageProject .module-project-content .module_container--about .module_last-text p {
  margin-top: 0;
}
.PageProject .module-project-content .module_container--about .module_last-text p:last-child {
  margin-bottom: 0;
}
.PageProject .module-project-content .module_container--exploration-potential {
  padding-top: 50px;
  padding-bottom: 60px;
  position: relative;
}
.PageProject .module-project-content .module_container--exploration-potential::after {
  content: "";
  position: absolute;
  width: calc((100vw - 1283px) / 2);
  height: 100%;
  background: var(--discovery-dark-blue-005679) 0% 0% no-repeat padding-box;
  top: 0;
  right: calc(0px - (100vw - 1283px) / 2 + 1px);
  z-index: -1;
}
@media screen and (max-width: 1325px) {
  .PageProject .module-project-content .module_container--exploration-potential::after {
    width: 20px;
    right: -19px;
  }
}
.PageProject .module-project-content .module_container--exploration-potential p.strong {
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-bold) var(--unnamed-font-size-18)/var(--unnamed-line-spacing-23) var(--unnamed-font-family-karla);
  letter-spacing: var(--unnamed-character-spacing-0);
  color: var(--unnamed-color-ffffff);
  text-transform: uppercase;
}
.PageProject .module-project-content .module_container--exploration-potential p:last-child {
  margin-bottom: 0;
}
.PageProject .module-project-content .module_container--highlights {
  padding-top: 44px;
  padding-bottom: 67px;
  position: relative;
}
.PageProject .module-project-content .module_container--highlights .h4 {
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-bold) var(--unnamed-font-size-22)/var(--unnamed-line-spacing-30) var(--unnamed-font-family-montserrat);
  letter-spacing: var(--unnamed-character-spacing--0-22);
  color: var(--discovery-dark-blue-005679);
}
.PageProject .module-project-content .module_container--highlights ul {
  padding-left: 20px;
}
.PageProject .module-project-content .module_container--highlights ul:last-of-type {
  margin-bottom: 0;
}
.PageProject .module-project-content .module_container--highlights ul li:not(:last-child) {
  padding-bottom: 10px;
}
.PageProject .module-project-content .module_container--community-resources {
  padding-top: 55px;
  padding-bottom: 43px;
}
.PageProject .module-project-content .module_container--community-resources .module-downloads {
  padding: 0 !important;
  margin-top: 42px;
}
.PageProject .module-project-content .module_container--community-resources .module-downloads .module_item .module_links {
  text-align: right;
  padding-right: 16px;
}
.PageProject .module-project-content .module_container--community-resources .module-downloads .module_item .module_links .button--plus {
  margin: 0;
  min-width: 135px;
}
@media only screen and (max-width: 480px) {
  .PageProject .module-project-content .module_container--community-resources .module-downloads .module_item .module_links .button--plus {
    text-align: left;
    min-width: unset;
  }
}
.PageProject .module-project-content .module_container--resources {
  padding-top: 36px;
  padding-bottom: 54px;
}
.PageProject .module-project-content .module_container--resources ul {
  padding-left: 20px;
  padding-bottom: 0;
}
.PageProject .module-project-content .module_container--resources ul:last-of-type {
  margin-bottom: 0;
}
.PageProject .module-project-content .module_container--resources p:last-of-type {
  margin-bottom: 0;
}
.PageProject .module-project-content .module_container--resources p.strong {
  text-transform: uppercase;
  font-weight: bold;
  margin-top: 28px;
}
.PageProject .module-project-content .module_container--resources table {
  margin-top: 37px;
  margin-bottom: 35px;
}
.PageProject .module-project-content .module_container--resources table thead th {
  vertical-align: middle;
  line-height: 17px;
  padding-top: 10px;
  padding-bottom: 11px;
  font-family: var(--unnamed-font-family-montserrat);
}
.PageProject .module-project-content .module_container--resources table thead th:not(:first-child) {
  text-align: center;
}
.PageProject .module-project-content .module_container--resources table thead th:not(:first-child) span {
  text-transform: none;
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-600) 17px/20px var(--unnamed-font-family-montserrat);
  letter-spacing: var(--unnamed-character-spacing-0);
  font-weight: 600;
}
.PageProject .module-project-content .module_container--resources table tbody td:not(:first-child) {
  text-align: center;
}
@media only screen and (max-width: 480px) {
  .PageProject .module-project-content .module_container--resources table tbody td:not(:first-child) {
    text-align: left;
  }
}
@media only screen and (max-width: 480px) {
  .PageProject .module-project-content .module_container--resources table tbody td {
    border-left: 1px solid #d1d9dd !important;
    border-right: 1px solid #d1d9dd !important;
  }
}
.PageProject .module-project-content .module_container--resources table tbody tr.results {
  background: var(--discovery-medium-blue-196786);
  color: #fff;
}
.PageProject .module-project-content .module_container--resources table tbody tr.results td {
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-bold) 17px/20px var(--unnamed-font-family-karla);
  letter-spacing: var(--unnamed-character-spacing-0);
}
.PageProject .module-project-content .module_container--resources table tbody tr.results td:first-child {
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-bold) 17px/20px var(--unnamed-font-family-montserrat);
}
@media only screen and (max-width: 480px) {
  .PageProject .module-project-content .module_container--resources table tbody tr.results td:first-child::before {
    display: none;
  }
}
.PageProject .module-project-content .module_container--geology-metallurgy {
  position: relative;
  padding-top: 49px;
  padding-bottom: 60px;
}
@media screen and (min-width: 1201px) {
  .PageProject .module-project-content .module_container--geology-metallurgy .big {
    max-width: 370px;
  }
}
.PageProject .module-project-content .module_container--geology-metallurgy .buttons {
  margin-top: 0;
}
.PageProject .module-project-content .module_container--metallurgy p.strong {
  text-transform: none;
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-bold) var(--unnamed-font-size-23)/var(--unnamed-line-spacing-32) var(--unnamed-font-family-karla);
  letter-spacing: var(--unnamed-character-spacing--0-23);
}
@media screen and (min-width: 1201px) {
  .PageProject .module-project-content .module_container--metallurgy p.strong {
    max-width: 90%;
  }
}
.PageProject .module-project-content .module_container--metallurgy a {
  color: #fabf0e;
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media screen and (min-width: 1201px) {
  .PageProject .module-project-content .module_container--metallurgy .pr-text-links {
    max-width: 93%;
  }
}
.PageProject .module-project-content .module_container--metallurgy ul {
  padding-left: 20px;
}
@media screen and (min-width: 1201px) {
  .PageProject .module-project-content .module_container--metallurgy ul li {
    max-width: 90%;
  }
}
.PageProject .module-project-content .module_container--metallurgy ul li::marker {
  color: #fabf0e;
}
.PageProject .module-project-content .module_container--metallurgy ul li:not(:last-child) {
  padding-bottom: 20px;
}
@media screen and (min-width: 1201px) {
  .PageProject .module-project-content .module_container--metallurgy ul li:nth-child(1) {
    max-width: 80%;
  }
}
@media screen and (min-width: 1201px) {
  .PageProject .module-project-content .module_container--metallurgy ul li:nth-child(4) {
    max-width: 95%;
  }
}
.PageProject .module-project-content .module_container--feasibility-studies .module_title {
  color: #fff;
}
.PageProject .module-project-content .module_container--feasibility-studies p.strong {
  font-family: var(--unnamed-font-family-karla);
  color: var(--unnamed-color-ffffff);
  text-transform: none;
}
@media screen and (min-width: 1025px) {
  .PageProject .module-project-content .module_container--feasibility-studies p.strong {
    font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-bold) var(--unnamed-font-size-23)/var(--unnamed-line-spacing-32) var(--unnamed-font-family-karla);
    letter-spacing: var(--unnamed-character-spacing--0-23);
  }
}
.PageProject .module-project-content .module_container--feasibility-studies ul {
  padding-left: 20px;
}
.PageProject .module-project-content .module_container--feasibility-studies ul li {
  max-width: 95%;
}
.PageProject .module-project-content .module_container--feasibility-studies ul li:nth-child(1), .PageProject .module-project-content .module_container--feasibility-studies ul li:nth-child(2), .PageProject .module-project-content .module_container--feasibility-studies ul li:nth-child(6), .PageProject .module-project-content .module_container--feasibility-studies ul li:nth-child(8) {
  max-width: 100%;
}
.PageProject .module-project-content .module_container--feasibility-studies ul li:not(:last-child) {
  padding-bottom: 20px;
}
.PageProject .module-project-content .module_container--feasibility-studies .buttons {
  margin-top: 50px;
}
.PageProject .module-project-content .module_container--feasibility-studies .buttons a:not(:last-child) {
  margin-bottom: 17px;
}
.PageProject .module-project-content .module_container--exploration-targets {
  padding-top: 40px;
  padding-bottom: 74px;
}
.PageProject .module-project-content .module_container--exploration-targets .module_title {
  margin-bottom: 9px;
}
.PageProject .module-project-content .module_container--exploration-targets .module_intro {
  margin-top: 21px;
}
@media screen and (min-width: 1025px) {
  .PageProject .module-project-content .module_container--exploration-targets .module_intro p {
    max-width: 98%;
  }
  .PageProject .module-project-content .module_container--exploration-targets .module_intro p.big {
    max-width: 95%;
  }
}
.PageProject .module-project-content .module_container--exploration-targets .module_intro p:not([class]) {
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-normal) var(--unnamed-font-size-18)/var(--unnamed-line-spacing-23) var(--unnamed-font-family-karla);
  letter-spacing: var(--unnamed-character-spacing-0);
  color: var(--body-text-495b64);
}
.PageProject .module-project-content .module_container--exploration-targets .module_intro p:not([class]):last-child {
  margin-bottom: 0;
}
.PageProject .module-project-content .module_container--exploration-targets .module_last-text {
  margin-top: 30px;
}
.PageProject .module-project-content .module_container--exploration-targets .module_last-text ul {
  padding-left: 20px;
}
@media screen and (min-width: 1025px) {
  .PageProject .module-project-content .module_container--exploration-targets .module_last-text ul li {
    max-width: 99%;
  }
}
.PageProject .module-project-content .module_container--exploration-targets .module_last-text ul li:not(:last-child) {
  padding-bottom: 37px;
}
.PageProject .module-project-content .module_container--exploration-targets .module_last-text .buttons {
  margin-top: 47px;
}
.PageProject .module-project-content .module_container .top-line,
.PageProject .module-project-content .module_container .bottom-line {
  background: linear-gradient(90deg, #bd8b26 0%, #fcba32 10%, #c08d26 20%, #a19574 30%, #a6afb5 40%, #bac4c9 50%, #929aa1 60%, #a59368 70%, #bc8c28 80%, #ebb934 90%, #bd8b26 100%);
  height: 3px;
  width: calc(100% + (100vw - 1283px) / 2 - 1px);
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 1325px) {
  .PageProject .module-project-content .module_container .top-line,
.PageProject .module-project-content .module_container .bottom-line {
    width: calc(100% + 20px);
  }
}
.PageProject .module-project-content .module_container .bottom-line {
  top: unset;
  bottom: 0;
}
.PageProject .module-project-content .module-item_container:not(.module-item_container--hoyle-pond) .module_container--resources p.strong {
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-bold) var(--unnamed-font-size-22)/var(--unnamed-line-spacing-30) var(--unnamed-font-family-montserrat);
  letter-spacing: var(--unnamed-character-spacing--0-22);
  color: var(--discovery-dark-blue-005679);
  text-transform: none !important;
}
.PageProject .module-project-content .module-item_container--pamour .module_container--resources ul {
  max-width: 800px;
}
.PageProject .module-project-content .module-item_container--dome-mill .module_container--about .module_intro .big {
  max-width: 390px;
}
@media only screen and (max-width: 1024px) {
  .PageProject .module-project-content .module-item_container--dome-mill .module_container--about .module_intro .big {
    max-width: 100%;
  }
}
.PageProject .module-project-content .masonry-wrapper {
  display: grid;
  /* Define columns */
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  /* Create tiny rows to allow granular height control */
  gap: 20px;
}
@media only screen and (max-width: 768px) {
  .PageProject .module-project-content .masonry-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
.PageProject .module-project-content .masonry-item a {
  display: block;
}
.PageProject .module-project-content .masonry-item img {
  width: 100%;
  display: block;
}
.PageProject .module-tabs_links {
  margin: 0;
}
.PageProject .module-tabs_links::after {
  display: none;
}
.PageProject .module-tabs_link,
.PageProject .module-tabs .module-tabs_links a {
  font-family: var(--unnamed-font-family-montserrat);
  font-weight: 500;
  font-size: 17px;
  line-height: initial;
  letter-spacing: 0px;
  text-transform: none;
  display: block;
  color: var(--body-text-495b64);
  padding: 17px 20px 17px 38px;
  position: relative;
  border-bottom: 1px solid #d1d9dd;
  margin: 0;
  width: 100%;
}
.PageProject .module-tabs_link:last-child,
.PageProject .module-tabs .module-tabs_links a:last-child {
  border-bottom: none;
}
.PageProject .module-tabs_link:hover,
.PageProject .module-tabs .module-tabs_links a:hover {
  font-weight: var(--unnamed-font-weight-bold);
  color: var(--discovery-dark-blue-005679);
}
.PageProject .module-tabs_link::after,
.PageProject .module-tabs .module-tabs_links a::after {
  display: none;
}
.PageProject .module-tabs_link.js--selected,
.PageProject .module-tabs .module-tabs_links a.js--selected {
  font-weight: var(--unnamed-font-weight-bold);
  color: var(--discovery-dark-blue-005679);
  text-transform: uppercase;
}
.PageProject .module-tabs_link.js--selected::before,
.PageProject .module-tabs .module-tabs_links a.js--selected::before {
  content: "";
  width: 19px;
  height: 37px;
  background: url("../design/svg/active-project.svg");
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 1024px) {
  .PageProject .module-project-content > .module_container--outer {
    padding-left: 0;
    padding-right: 0;
  }
  .PageProject .module-project-content .container {
    display: block;
  }
  .PageProject .module-project-content .container .sidebar,
.PageProject .module-project-content .container .main-content {
    width: 100%;
  }
  .PageProject .module-project-content .container .sidebar {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
  }
  .PageProject .module-project-content .container .sidebar .sticky-element {
    top: 0;
    position: relative;
    padding-top: 130px;
  }
  .PageProject .module-project-content .container .main-content {
    padding-top: 30px;
  }
  .PageProject .module-project-content .container .main-content .module_container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .PageProject .module-project-content .container .main-content .module_container--about .big {
    font-size: 18px;
    line-height: initial;
  }
}
@media screen and (max-width: 360px) {
  .PageProject .module_container--about .buttons {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

@media screen and (min-width: 1025px) {
  .PageProject .module-project-content .module-item_container--dome-mine .module_container--about .module_intro .big {
    max-width: 95%;
  }
}
@media screen and (min-width: 1025px) {
  .PageProject .module-project-content .module-item_container--hoyle-pond .module_container--about .module_last-text {
    max-width: 99.7%;
  }
  .PageProject .module-project-content .module-item_container--hoyle-pond .module_container--exploration-potential p {
    max-width: 95%;
  }
}
.PageProject .module-project-content .module-item_container--borden .module_container--exploration-potential ul {
  padding-left: 20px;
}
.PageProject .module-project-content .module-item_container--borden .module_container--exploration-potential ul li:not(:last-child) {
  padding-bottom: 10px;
}
.PageProject .module-project-content .module-item_container--borden .module_container--exploration-potential ul li::marker {
  color: #fabf0e;
}
@media screen and (min-width: 1025px) {
  .PageProject .module-project-content .module-item_container--borden .module_container--about .module_last-text {
    max-width: 100.5%;
  }
}
.PageProject .module-project-content .module-item_container--pamour .module_container--resources li:not(:last-child) {
  padding-bottom: 10px;
}
@media screen and (min-width: 1025px) {
  .PageProject .module-project-content .module-item_container--pamour .module_container--about .module_last-text {
    max-width: 99%;
  }
}
@media screen and (min-width: 1025px) {
  .PageProject .module-project-content .module-item_container--dome-mine .module_container--about .module_last-text {
    max-width: 99.9%;
  }
  .PageProject .module-project-content .module-item_container--dome-mine .module_container--exploration-potential p {
    max-width: 95%;
  }
  .PageProject .module-project-content .module-item_container--dome-mine .module_container--resources p:last-of-type {
    max-width: 99%;
  }
}
@media screen and (min-width: 1025px) {
  .PageProject .module-project-content .module-item_container--dome-mill .module_container--about .module_last-text {
    max-width: 100.5%;
  }
  .PageProject .module-project-content .module-item_container--dome-mill .module_container--exploration-potential p {
    max-width: 95%;
  }
  .PageProject .module-project-content .module-item_container--dome-mill .module_container--resources p:last-of-type {
    max-width: 99%;
  }
}
.PageProject .module-project-content .module-item_container--kidd-mine .module_container--resources {
  position: relative;
}

.PageCorderoSilver .pane--content .module_title {
  margin-bottom: 5px;
}
@media screen and (min-width: 1025px) {
  .PageCorderoSilver .module_container--about .module_last-text {
    max-width: 95%;
  }
}
@media screen and (min-width: 1025px) {
  .PageCorderoSilver .module_container--geology-metallurgy .module_last-text {
    max-width: 98%;
  }
}
@media screen and (min-width: 1025px) {
  .PageCorderoSilver .module_container--resources p.strong {
    font-size: 30px !important;
    line-height: 40px !important;
    max-width: 90%;
  }
  .PageCorderoSilver .module_container--resources .further-details {
    max-width: 700px;
  }
  .PageCorderoSilver .module_container--resources .further-details a {
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .PageCorderoSilver .module_container--resources .further-details-1 + .h3 + p.strong {
    max-width: 780px;
  }
  .PageCorderoSilver .module_container--resources .further-details-1 + .h3 + p.strong + p {
    max-width: 99%;
  }
}

.button-with-icon {
  display: table;
  margin-top: 21px;
}
.button-with-icon .button {
  background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;
  border: 1px solid var(--discovery-dark-gold-c79d2d);
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-bold) 16px/19px var(--unnamed-font-family-karla);
  letter-spacing: var(--unnamed-character-spacing-0);
  color: var(--discovery-light-blue-0e7ca6);
  padding: 8px 14px;
  margin: 16px 0 0;
  min-width: unset;
}
.button-with-icon .icon {
  content: "";
  width: 90px;
  height: 90px;
  display: block;
  margin: 0 auto;
  position: relative;
  background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;
  border: 2px solid var(--discovery-dark-gold-c79d2d);
  box-shadow: 7px 9px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 100%;
}
.button-with-icon .icon::before {
  content: "";
  background: url("../design/svg/chain.svg");
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.button-with-icon:hover .button, .button-with-icon:focus .button {
  background: var(--discovery-light-blue-0e7ca6) 0% 0% no-repeat padding-box;
  color: var(--unnamed-color-ffffff);
}
.button-with-icon:hover .button::before, .button-with-icon:focus .button::before {
  width: 100%;
}
.button-with-icon:hover .icon, .button-with-icon:focus .icon {
  background: var(--discovery-light-blue-0e7ca6) 0% 0% no-repeat padding-box;
  border-width: 1px;
}
.button-with-icon:hover .icon::before, .button-with-icon:focus .icon::before {
  background-image: url("../design/svg/chain-hover.svg");
}
.button-with-icon--location-map .icon::before {
  background-image: url("../design/svg/location-map.svg");
  background-position: center 40%;
}
.button-with-icon--location-map:hover .icon::before, .button-with-icon--location-map:focus .icon::before {
  background-image: url("../design/svg/location-map-hover.svg");
}
.button-with-icon--3d-map .icon::before {
  background-image: url("../design/svg/3d-map.svg");
}
.button-with-icon--3d-map:hover .icon::before, .button-with-icon--3d-map:focus .icon::before {
  background-image: url("../design/svg/3d-map-hover.svg");
}
.button-with-icon--no-icon {
  margin-top: 0;
}
.button-with-icon--no-icon .button {
  margin-top: 0;
}
@media screen and (max-width: 600px) {
  .button-with-icon--no-icon .button {
    text-align: left;
  }
}
.button-with-icon--no-icon .button > span {
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-600) 15px/18px var(--unnamed-font-family-karla);
  font-size: 15px;
  letter-spacing: var(--unnamed-character-spacing--0-23);
  text-transform: none;
  font-weight: 600;
  display: inline-block;
  padding-left: 5px;
  position: relative;
}
.button-with-icon--no-icon .button > span::before {
  content: "";
  height: 9px;
  width: 1px;
  background-color: var(--discovery-light-blue-0e7ca6);
  position: absolute;
  right: 4px;
  bottom: 5px;
  transition: 0.3s ease-in-out all;
  opacity: 1;
}
.button-with-icon--no-icon .button > span::after {
  content: "";
  height: 1px;
  width: 9px;
  background-color: var(--discovery-light-blue-0e7ca6);
  position: relative;
  display: inline-block;
  bottom: 4px;
  transition: 0.3s ease-in-out all;
  margin-left: 6px;
}
@media screen and (max-width: 600px) {
  .button-with-icon--no-icon .button > span {
    display: table;
    padding-left: 0;
  }
}
.button-with-icon--no-icon:hover .button > span::before, .button-with-icon--no-icon:hover .button > span::after, .button-with-icon--no-icon:focus .button > span::before, .button-with-icon--no-icon:focus .button > span::after {
  background-color: #fff !important;
}
.button-with-icon--no-icon:hover .button > span::before, .button-with-icon--no-icon:focus .button > span::before {
  opacity: 0;
  right: 10px;
}
.button-with-icon--no-icon:hover .button > span::after, .button-with-icon--no-icon:focus .button > span::after {
  width: 23px;
}

.project-gallery {
  /* Los puntos individuales */
  /* Opcional: Puntos de los extremos ligeramente más pequeños */
  /* Esto requiere una lógica de JS más compleja, pero con el desplazamiento basta para el efecto Instagram */
}
.project-gallery .splide__slide a {
  position: relative;
  overflow: auto;
  display: block;
  width: 100%;
  height: 100%;
}
.project-gallery .splide__slide a::before {
  content: "";
  opacity: 1;
  background-image: url("../design/svg/video-play-button.svg");
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.project-gallery .splide__pagination {
  bottom: 0px;
  left: -5px;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 0;
  display: flex !important;
  flex-wrap: nowrap !important;
  padding: 10px 0;
  transition: transform 0.3s ease;
  margin-top: 0px;
}
.project-gallery .splide__pagination button {
  border-radius: 0;
  width: 10px;
  height: 10px;
  background-color: #fabf0e;
  opacity: 1;
}
.project-gallery .splide__pagination button.is-active {
  background: linear-gradient(180deg, #7a8b95 0%, #c0c9cf 50%, #7a8b95 100%);
}
.project-gallery .splide__arrow {
  border-radius: 0;
  opacity: 1;
  width: 12px;
  height: 24px;
  top: unset;
  bottom: -5px;
  box-shadow: none;
  background: transparent;
}
.project-gallery .splide__arrow svg {
  display: none;
}
.project-gallery .splide__arrow[disabled] {
  opacity: 0.5;
}
.project-gallery .splide__arrow--prev {
  left: unset;
  right: 70px;
}
.project-gallery .splide__arrow--prev::before {
  content: url("../design/svg/prev-arrow.svg");
}
.project-gallery .splide__arrow--prev:hover::before {
  content: url("../design/svg/prev-arrow-hover.svg");
}
.project-gallery .splide__arrow--next {
  right: 50px;
}
.project-gallery .splide__arrow--next::before {
  content: url("../design/svg/next-arrow.svg");
}
.project-gallery .splide__arrow--next:hover::before {
  content: url("../design/svg/next-arrow-hover.svg");
}
@media only screen and (max-width: 1024px) {
  .project-gallery .splide__arrow--prev {
    right: 20px;
  }
  .project-gallery .splide__arrow--next {
    right: 0;
  }
}
.project-gallery .splide__pagination li {
  flex: 0 0 20px; /* Ancho fijo del punto + margen */
  /*margin: 0 2px;*/
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.project-gallery .splide__pagination__wrapper {
  overflow: hidden;
  width: 100px; /* Ajusta este ancho para mostrar ~5 puntos */
  position: relative;
  height: 40px;
}

.full-gallery a[data-type=video] {
  position: relative;
  overflow: auto;
  display: block;
  width: 100%;
  height: 100%;
}
.full-gallery a[data-type=video]::before {
  content: "";
  opacity: 1;
  background-image: url("../design/svg/video-play-button.svg");
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.PageCorderoSilver .project-gallery img {
  border: 1px solid #c79d2d;
}
.PageCorderoSilver .module-tabs .module-tabs_links a {
  line-height: 20px;
  min-height: 56px;
  display: flex;
  align-items: center;
}
.PageCorderoSilver .module-project-content .module_container--resources .table-container {
  max-width: 100%;
  overflow-x: auto;
}
.PageCorderoSilver .module-project-content .module_container--resources table.table thead th {
  vertical-align: top;
  font-weight: 800;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0px;
  position: relative;
  text-align: center;
}
.PageCorderoSilver .module-project-content .module_container--resources table.table thead th .block {
  position: absolute;
  bottom: 10px;
  width: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.PageCorderoSilver .module-project-content .module_container--resources table.table thead tr:first-child th {
  border-bottom: 1px solid #c79d2d;
}
.PageCorderoSilver .module-project-content .module_container--resources table.table thead tr:first-child th:nth-child(1), .PageCorderoSilver .module-project-content .module_container--resources table.table thead tr:first-child th:nth-child(2), .PageCorderoSilver .module-project-content .module_container--resources table.table thead tr:first-child th:nth-child(3) {
  border-bottom: none;
}
.PageCorderoSilver .module-project-content .module_container--resources table.table thead tr:nth-child(2) th {
  border-bottom: none;
  font-weight: 700;
  font-size: 12px;
  leading-trim: NONE;
  line-height: 15px;
  letter-spacing: -0.12px;
  text-transform: none;
}
.PageCorderoSilver .module-project-content .module_container--resources table.table thead tr:nth-child(2) th span {
  font-weight: 600;
}
.PageCorderoSilver .module-project-content .module_container--resources table.table tbody th {
  vertical-align: middle;
  font-family: var(--unnamed-font-family-montserrat);
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  color: var(--body-text-495b64);
  text-align: left;
}
.PageCorderoSilver .module-project-content .module_container--resources table.table tbody th[scope=rowgroup] {
  font-family: var(--unnamed-font-family-montserrat);
  font-weight: 800;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0px;
  color: var(--discovery-dark-blue-005679);
}
.PageCorderoSilver .module-project-content .module_container--resources table.table tbody tr td, .PageCorderoSilver .module-project-content .module_container--resources table.table tbody.results td {
  font-family: var(--unnamed-font-family-karla);
  font-weight: 400;
  font-size: 13px;
  line-height: 15px;
  letter-spacing: 0px;
  text-align: right;
}
.PageCorderoSilver .module-project-content .module_container--resources table.table tbody tr.bold th,
.PageCorderoSilver .module-project-content .module_container--resources table.table tbody tr.bold td, .PageCorderoSilver .module-project-content .module_container--resources table.table tbody.results.bold th,
.PageCorderoSilver .module-project-content .module_container--resources table.table tbody.results.bold td {
  font-weight: 700;
}
.PageCorderoSilver .module-project-content .module_container--resources table.table tbody tr:last-child {
  border-bottom: none;
}
.PageCorderoSilver .module-project-content .module_container--resources table.table tbody tr.results td,
.PageCorderoSilver .module-project-content .module_container--resources table.table tbody tr.results th {
  color: #fff;
}
.PageCorderoSilver .module-project-content .module_container--resources table.table tbody tr.results th {
  font-weight: 500;
}
.PageCorderoSilver .module-project-content .module_container--resources table.table tbody tr.results th[scope=rowgroup] {
  font-weight: 700 !important;
}
.PageCorderoSilver .module-project-content .module_container--resources table.table tbody tr.results.bold th {
  font-weight: 700;
}
.PageCorderoSilver .module-project-content .module_container--resources p.further-details-1 {
  margin-bottom: 75px;
}

.module-pillars {
  position: relative;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.module-pillars .module_title {
  text-transform: uppercase;
}
.module-pillars .module_intro {
  margin-top: 34px;
  margin-bottom: 44px;
}
@media only screen and (max-width: 1024px) {
  .module-pillars .module_intro {
    margin-bottom: 30px;
  }
}
.module-pillars .module_intro p {
  max-width: 1200px;
}
.module-pillars .module_intro p:last-child {
  margin-bottom: 0;
}
.module-pillars .module_top-image {
  margin-bottom: 44px;
}
.module-pillars .module_top-image,
.module-pillars .module_bottom-image {
  width: 100vw;
  height: 116px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  background: url("../design/home/2ecd2824df71e0e33b2b2a3bd29aacc62caf0edc.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 30%;
}
.module-pillars .module_bottom-image {
  height: 132px;
  background-position: center bottom;
}
@media only screen and (max-width: 768px) {
  .module-pillars .module_bottom-image {
    height: 100px;
  }
}
@media only screen and (max-width: 768px) {
  .module-pillars .module_bottom-image {
    height: 72px;
  }
}
.module-pillars .module_bottom-image::before {
  content: "";
  height: 112px;
  background: url("../design/home/ValuesTopBar.png");
  background-position: center;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  max-width: 100%;
  background-repeat: no-repeat;
  background-size: 100% 112px;
}
@media only screen and (max-width: 768px) {
  .module-pillars .module_bottom-image::before {
    height: 50px;
    background-size: 100% 100%;
    background-position: center bottom;
  }
}
@media screen and (max-width: 400px) {
  .module-pillars .module_bottom-image::before {
    height: 30px;
    background-size: auto 100%;
    background-position: center bottom;
  }
}
.module-pillars .module_bottom-image::after {
  content: "";
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #bd8b26 0%, #fcba32 10%, #c08d26 20%, #a19574 30%, #a6afb5 40%, #bac4c9 50%, #929aa1 60%, #a59368 70%, #bc8c28 80%, #ebb934 90%, #bd8b26 100%);
  position: absolute;
  bottom: 0;
}

.module_text-with-image {
  padding-bottom: 40px;
  margin-bottom: 40px;
  column-gap: 20px;
  position: relative;
}
.module_text-with-image::after {
  content: "";
  width: calc(100% - 20px);
  border-bottom: 1px solid #c79d2d;
  right: 0;
  position: absolute;
  bottom: 0px;
}
.module_text-with-image .grid_col {
  flex-basis: calc(50% - 10px);
  max-width: calc(50% - 10px);
}
@media only screen and (max-width: 768px) {
  .module_text-with-image .grid_col {
    flex-basis: 100%;
    max-width: 100%;
  }
}
.module_text-with-image .module_image {
  width: 100%;
  height: 100%;
  margin: 0;
  max-width: 100%;
  border: 2px solid #c79d2d;
  position: relative;
  overflow: hidden;
  min-height: 359px;
}
@media only screen and (max-width: 480px) {
  .module_text-with-image .module_image {
    min-height: 250px;
  }
}
.module_text-with-image .module_image .module_content {
  width: 100%;
  height: 100%;
  margin: 0;
  position: absolute;
  transition: 0.3s ease-in-out all;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1.01);
  transform: translate(-50%, -50%) scale(1.01);
}
.module_text-with-image .module_image .module_content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}
@media only screen and (max-width: 768px) {
  .module_text-with-image .module_image .module_content img {
    object-position: center;
  }
}
.module_text-with-image .module_image .module_content:hover {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
  transform: translate(-50%, -50%) scale(1.1);
}
.module_text-with-image .module_text--550 p {
  max-width: 550px;
}
.module_text-with-image .module_text--590 p {
  max-width: 590px;
}
.module_text-with-image .module_text--580 p {
  max-width: 580px;
}
.module_text-with-image .module_text--600 p {
  max-width: 600px;
}
.module_text-with-image .h3 {
  margin-top: 24px;
  text-transform: none;
  letter-spacing: var(--unnamed-character-spacing--0-22);
  font-family: var(--unnamed-font-family-montserrat);
  font-weight: bold;
}
@media screen and (min-width: 1025px) {
  .module_text-with-image .h3 {
    font-size: 22px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 1024px) {
  .module_text-with-image .h3 {
    line-height: initial;
  }
  .module_text-with-image .h3 span.block {
    display: inline-block;
  }
}
.module_text-with-image--inverted .module_img {
  order: 2;
}
.module_text-with-image--inverted .module_txt {
  order: 1;
}
.module_text-with-image--no-border {
  margin-bottom: 0;
}
.module_text-with-image--no-border::after {
  display: none;
}
@media only screen and (max-width: 768px) {
  .module_text-with-image {
    margin-bottom: 45px;
  }
  .module_text-with-image .h3 {
    margin-top: 0;
  }
  .module_text-with-image .module_img {
    order: 2;
  }
  .module_text-with-image .module_txt {
    order: 1;
  }
}

.module-latest-presentation-fact-sheet .module_title {
  margin-bottom: 42px;
}
@media only screen and (max-width: 1024px) {
  .module-latest-presentation-fact-sheet .module_title {
    margin-bottom: 5px;
  }
}
.module-latest-presentation-fact-sheet .module_item {
  padding: 0;
}
.module-latest-presentation-fact-sheet .module-presentation-ir {
  flex-basis: 55%;
  max-width: 55%;
  padding-right: 79px;
}
.module-latest-presentation-fact-sheet .module-fact-sheet-ir {
  flex-basis: 45%;
  max-width: 45%;
}
@media only screen and (max-width: 1024px) {
  .module-latest-presentation-fact-sheet .module-fact-sheet-ir {
    margin-top: 20px;
  }
}
.module-latest-presentation-fact-sheet .module_image {
  height: 100%;
  margin: 0;
  max-width: 100%;
  border: 2px solid #c79d2d;
  position: relative;
  overflow: hidden;
}
.module-latest-presentation-fact-sheet .module_image .module_content {
  width: 100%;
  height: 100%;
  margin: 0;
  position: relative;
  transition: 0.3s ease-in-out all;
}
.module-latest-presentation-fact-sheet .module_image .module_content img {
  width: auto;
  max-height: 351px;
  object-fit: cover;
  display: block;
  min-width: 100%;
}
.module-latest-presentation-fact-sheet .module_image .module_content:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
@media only screen and (max-width: 1024px) {
  .module-latest-presentation-fact-sheet .module-presentation-ir,
.module-latest-presentation-fact-sheet .module-fact-sheet-ir {
    flex-basis: 100%;
    max-width: 100%;
    padding-right: 0;
  }
}

.module-share-structure {
  position: relative;
}
.module-share-structure::after {
  content: "";
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #bd8b26 0%, #fcba32 10%, #c08d26 20%, #a19574 30%, #a6afb5 40%, #bac4c9 50%, #929aa1 60%, #a59368 70%, #bc8c28 80%, #ebb934 90%, #bd8b26 100%);
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (min-width: 1025px) {
  .module-share-structure {
    padding-top: 79px !important;
    padding-bottom: 70px !important;
  }
}
.module-share-structure .module_title {
  margin-bottom: 0;
}
.module-share-structure .module_title + p {
  margin: 5px 0 0 0;
}
.module-share-structure .module-stock-title {
  padding-right: 30px;
}
.module-share-structure .module-stock-title {
  width: 65%;
  text-align: left;
}
.module-share-structure .number-text {
  width: 35%;
  text-align: left;
}
@media screen and (max-width: 600px) {
  .module-share-structure .module-stock-title,
.module-share-structure .number-text {
    width: 100%;
    padding-right: 0;
  }
}
.module-share-structure_content {
  padding-bottom: 75px;
}
@media only screen and (max-width: 1024px) {
  .module-share-structure_content {
    padding-bottom: 20px;
  }
}
.module-share-structure .module-share-structure_content {
  flex-basis: 55%;
  max-width: 55%;
  padding-right: 79px;
}
.module-share-structure .module-share-structure_image {
  flex-basis: 45%;
  max-width: 45%;
}
@media only screen and (max-width: 1024px) {
  .module-share-structure .module-share-structure_content,
.module-share-structure .module-share-structure_image {
    flex-basis: 100%;
    max-width: 100%;
    padding-right: 0;
  }
}
.module-share-structure .module_image {
  width: 100%;
  height: 100%;
  margin: 0;
  max-width: 100%;
  border: 2px solid #c79d2d;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .module-share-structure .module_image {
    height: 300px;
    margin-top: 20px;
  }
}
.module-share-structure .module_image .module_content {
  width: 100%;
  height: 100%;
  margin: 0;
  position: absolute;
  transition: 0.3s ease-in-out all;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1.01);
  transform: translate(-50%, -50%) scale(1.01);
}
.module-share-structure .module_image .module_content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.module-share-structure .module_image .module_content:hover {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
  transform: translate(-50%, -50%) scale(1.1);
}

.PageContactUs .module-custom-footer-video-email {
  display: block;
}
@media screen and (min-width: 1025px) {
  .PageContactUs .module-custom-footer-video-email .module_container--inner {
    padding-top: 55px !important;
    padding-bottom: 58px !important;
  }
}
.PageContactUs .module-custom-footer-video-email .custom-video {
  height: 100%;
  box-shadow: 0px 7px 17px rgba(0, 0, 0, 0.1607843137);
  border: 1px solid var(--discovery-dark-gold-c79d2d);
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .PageContactUs .module-custom-footer-video-email .custom-video {
    width: 100%;
  }
}
.PageContactUs .module-custom-footer-video-email .custom-video img {
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease-in-out all;
  -webkit-transform: scale(1.01);
  transform: scale(1.01);
}
@media only screen and (max-width: 1024px) {
  .PageContactUs .module-custom-footer-video-email .custom-video img {
    max-width: 100%;
  }
}
.PageContactUs .module-custom-footer-video-email .custom-video:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.PageContactUs .module-custom-footer-video-email .module_video-footer .module_title {
  display: none;
}
.PageContactUs .module-custom-footer-video-email .module-subscribe .module_container--outer {
  max-width: 100%;
  text-align: left;
}
.PageContactUs .module-custom-footer-video-email .module-subscribe .module_title {
  font-family: Montserrat;
  font-weight: 800;
  font-size: 26px;
  line-height: 45px;
  letter-spacing: 0px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.PageContactUs .module-custom-footer-video-email .module-subscribe .module_message.module_message--error + div {
  margin-top: 5px;
}
.PageContactUs .module-custom-footer-video-email .module-subscribe p {
  margin-bottom: 18px;
}
.PageContactUs .module-custom-footer-video-email .module-subscribe .module_title,
.PageContactUs .module-custom-footer-video-email .module-subscribe p {
  text-align: left;
}
.PageContactUs .module-custom-footer-video-email .module-subscribe .module_title.last-text,
.PageContactUs .module-custom-footer-video-email .module-subscribe p.last-text {
  margin-top: 19px;
  margin-bottom: 0;
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-normal) 14px/17px var(--unnamed-font-family-karla);
  letter-spacing: var(--unnamed-character-spacing-0);
  color: var(--body-text-495b64);
}
.PageContactUs .module-custom-footer-video-email .module-subscribe .module_title.last-text a,
.PageContactUs .module-custom-footer-video-email .module-subscribe p.last-text a {
  color: #007baf;
  text-decoration: underline;
  text-transform: uppercase;
  font-weight: var(--unnamed-font-weight-bold);
  display: block;
}
.PageContactUs .module-custom-footer-video-email .module-subscribe .module-subscribe_table {
  max-width: 420px;
}

.module-media {
  position: relative;
}
@media screen and (min-width: 1025px) {
  .module-media {
    padding-top: 64px !important;
    padding-bottom: 0 !important;
  }
}
.module-media::before {
  content: "";
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #bd8b26 0%, #fcba32 10%, #c08d26 20%, #a19574 30%, #a6afb5 40%, #bac4c9 50%, #929aa1 60%, #a59368 70%, #bc8c28 80%, #ebb934 90%, #bd8b26 100%);
  position: absolute;
  top: 0;
  left: 0;
}
.module-media .module_bottom-image {
  margin-top: 42px;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  background: url("../design/home/2ecd2824df71e0e33b2b2a3bd29aacc62caf0edc.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  height: 132px;
  background-position: center bottom;
}
@media only screen and (max-width: 768px) {
  .module-media .module_bottom-image {
    height: 100px;
  }
}
@media only screen and (max-width: 768px) {
  .module-media .module_bottom-image {
    height: 72px;
  }
}
.module-media .module_bottom-image::before {
  content: "";
  height: 112px;
  background: url("../design/home/ValuesTopBar.png");
  background-position: center;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  max-width: 100%;
  background-repeat: no-repeat;
  background-size: 100% 112px;
}
@media only screen and (max-width: 768px) {
  .module-media .module_bottom-image::before {
    height: 50px;
    background-size: 100% 100%;
    background-position: center bottom;
  }
}
@media screen and (max-width: 400px) {
  .module-media .module_bottom-image::before {
    height: 30px;
    background-size: auto 100%;
    background-position: center bottom;
  }
}
.module-media .module_bottom-image::after {
  content: "";
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #bd8b26 0%, #fcba32 10%, #c08d26 20%, #a19574 30%, #a6afb5 40%, #bac4c9 50%, #929aa1 60%, #a59368 70%, #bc8c28 80%, #ebb934 90%, #bd8b26 100%);
  position: absolute;
  bottom: 0;
}
.module-media .custom-video a {
  position: relative;
  display: block;
}
.module-media .custom-video a::before {
  z-index: 2;
}
@media only screen and (max-width: 1024px) {
  .module-media .custom-video {
    margin-left: 0;
  }
}
.module-media .custom-video .module_headline-text {
  margin-top: 21px;
}
.module-media .custom-video .module_date-time {
  margin-top: 7px;
}
.module-media .module_content {
  padding-top: 75px;
  padding-left: 47px;
}
@media only screen and (max-width: 1024px) {
  .module-media .module_content {
    padding-left: 20px;
    padding-top: 30px;
  }
  .module-media .module_content .button--plus {
    margin-left: auto !important;
  }
}
@media only screen and (max-width: 480px) {
  .module-media .module_content .button--plus {
    margin-left: unset !important;
  }
}
.module-media .module_content .module_item {
  padding-top: 28px;
  padding-bottom: 36px;
}
.module-media .module_content .module_item:first-child {
  border-top: 2px solid #c79d2d;
}
.module-media .module_content .module_item .module_links {
  text-align: right;
}

.module_item--with-border {
  padding-top: 21px !important;
  padding-bottom: 19px !important;
  border-bottom: 1px solid #c79d2d !important;
}
.module_item--with-border:first-child {
  border-top: 2px solid #c79d2d;
}

.module-analyst-coverage {
  position: relative;
}
@media screen and (min-width: 1025px) {
  .module-analyst-coverage {
    padding-top: 55px !important;
    padding-bottom: 66px !important;
  }
}
.module-analyst-coverage::before {
  content: "";
  background: linear-gradient(90deg, #bd8b26 0%, #fcba32 10%, #c08d26 20%, #a19574 30%, #a6afb5 40%, #bac4c9 50%, #929aa1 60%, #a59368 70%, #bc8c28 80%, #ebb934 90%, #bd8b26 100%);
  height: 3px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.module-analyst-coverage .grid_col--1-of-1:last-child {
  margin-top: 39px;
}
@media only screen and (max-width: 1024px) {
  .module-analyst-coverage .grid_col--1-of-1:last-child {
    margin-top: 20px;
  }
}
.module-analyst-coverage .grid_col--1-of-1:last-child p {
  max-width: 1235px;
}
@media screen and (min-width: 1025px) {
  .module-analyst-coverage .evergreen-widget--analyst-coverage {
    padding-right: 23px;
  }
  .module-analyst-coverage .evergreen-widget--analyst-coverage + .grid_col {
    padding-left: 43px;
  }
}
.module-analyst-coverage .evergreen-widget--analyst-coverage .table--analyst th,
.module-analyst-coverage .evergreen-widget--analyst-coverage .table--analyst td {
  padding-right: 20px;
}
.module-analyst-coverage .module_image {
  width: 100%;
  height: 100%;
  margin: 0;
  max-width: 100%;
  border: 2px solid #c79d2d;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .module-analyst-coverage .module_image {
    height: 300px;
    margin-top: 20px;
  }
}
.module-analyst-coverage .module_image .module_content {
  width: 100%;
  height: 100%;
  margin: 0;
  position: absolute;
  transition: 0.3s ease-in-out all;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1.01);
  transform: translate(-50%, -50%) scale(1.01);
}
.module-analyst-coverage .module_image .module_content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.module-analyst-coverage .module_image .module_content:hover {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
  transform: translate(-50%, -50%) scale(1.1);
}
.module-analyst-coverage .table {
  margin: 0;
}
.module-analyst-coverage .table::before, .module-analyst-coverage .table::after {
  display: none;
}
.module-analyst-coverage .table th {
  text-transform: none;
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-bold) var(--unnamed-font-size-20)/34px var(--unnamed-font-family-karla);
  color: var(--body-text-495b64);
}
.module-analyst-coverage .table td {
  font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-normal) var(--unnamed-font-size-20)/var(--unnamed-line-spacing-35) var(--unnamed-font-family-karla);
  color: var(--body-text-495b64);
}
.module-analyst-coverage .table th,
.module-analyst-coverage .table td {
  padding: 5px 0;
  background: transparent !important;
  border: none;
}
.module-analyst-coverage .table thead tr {
  border-top: none;
  border-bottom: 2px solid #c79d2d;
}
.module-analyst-coverage .table thead tr th {
  padding-top: 0;
}
.module-analyst-coverage .table tbody tr {
  border-bottom: 1px solid #c79d2d;
}
@media only screen and (max-width: 1024px) {
  .module-analyst-coverage .table th,
.module-analyst-coverage .table td {
    font-size: 15px;
    line-height: 20px;
    letter-spacing: -0.15px;
  }
}

.module_options-tabs .module_options-select {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.module_options-tabs .module_options-select::after {
  content: "";
  display: block;
  background: linear-gradient(90deg, #bd8b26 0%, #fcba32 10%, #c08d26 20%, #a19574 30%, #a6afb5 40%, #bac4c9 50%, #929aa1 60%, #a59368 70%, #bc8c28 80%, #ebb934 90%, #bd8b26 100%);
  height: 3px;
  width: 100%;
}
.module_options-tabs .module_options-select li {
  min-width: 50px;
  display: inline-block;
  margin-right: 21.5px;
  font-family: var(--unnamed-font-family-montserrat);
  font-weight: 400;
  font-size: 22px;
  leading-trim: NONE;
  line-height: 45px;
  letter-spacing: 0px;
  position: relative;
  margin-left: 11px;
  cursor: pointer;
}
@media only screen and (max-width: 1024px) {
  .module_options-tabs .module_options-select li {
    font-size: 20px;
  }
}
.module_options-tabs .module_options-select li:hover, .module_options-tabs .module_options-select li:focus {
  font-weight: 700;
}
.module_options-tabs .module_options-select li.js--selected {
  font-weight: 800;
}
.module_options-tabs .module_options-select li.js--selected::after {
  content: "";
  position: absolute;
  height: 10px;
  width: 100%;
  background: #fabf0e;
  right: 0;
  bottom: -6px;
}
.module_options-tabs--blue {
  margin-bottom: 45px;
}
.module_options-tabs--blue li {
  color: var(--discovery-dark-blue-005679);
}
.module_options-tabs--blue li.js--selected, .module_options-tabs--blue li:hover, .module_options-tabs--blue li:focus {
  color: #0e7ca6;
}

.module-details a[style*="color: blue"] {
  color: #0e7ca6 !important;
}
.module-details span[style*="color: blue"] {
  color: var(--body-text-495b64) !important;
}
.module-details [style*="font-family: Lato, sans-serif;"] {
  font-family: var(--unnamed-font-family-karla) !important;
}
.module-details .q4-icon_pdf {
  display: none;
}
.module-details .module_details-title,
.module-details .module-details_title {
  font: normal normal 600 40px/45px Montserrat;
  letter-spacing: 0px;
  color: #005679;
  text-transform: none;
  margin-bottom: 35px;
}
.module-details .module_date-time {
  margin-top: 0;
}
.module-details .module_date-time::first-letter {
  text-transform: uppercase;
}
.module-details .module_date-time,
.module-details .module_location,
.module-details .module_reminder {
  font: normal normal normal 18px/23px var(--unnamed-font-family-karla);
  letter-spacing: var(--unnamed-character-spacing-0);
  color: var(--body-text-495b64);
}
.module-details .module_reminder .module_label {
  display: block;
}
.module-details .module_reminder .grid_col:has(.button) {
  position: relative;
}
.module-details .module_reminder .grid_col:has(.button) .button {
  padding-top: 11px;
  padding-bottom: 11px;
}
.module-details .module_reminder .grid_col:has(.button)::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--discovery-dark-gold-c79d2d) 0% 0% no-repeat padding-box;
  position: absolute;
  bottom: 0;
  left: 20px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  z-index: 2;
}
.module-details .module_reminder .grid_col:has(.button):hover::before {
  width: calc(100% - 20px);
}
.module-details .module_links a {
  font-family: var(--unnamed-font-family-karla);
  font-weight: 500;
  font-size: 15px;
  line-height: 15px;
  letter-spacing: 0px;
  margin-right: 31px;
  position: relative;
}
.module-details .module_links a::before {
  content: "";
  height: 9px;
  width: 1px;
  background-color: var(--discovery-light-blue-0e7ca6);
  position: absolute;
  right: 4px;
  bottom: 4px;
  transition: 0.3s ease-in-out all;
  opacity: 1;
}
.module-details .module_links a::after {
  content: "";
  height: 1px;
  width: 9px;
  background-color: var(--discovery-light-blue-0e7ca6);
  position: relative;
  display: inline-block;
  bottom: 4px;
  transition: 0.3s ease-in-out all;
  margin-left: 6px;
}
.module-details .module_links a:hover::before, .module-details .module_links a:focus::before {
  opacity: 0;
  right: 10px;
}
.module-details .module_links a:hover::after, .module-details .module_links a:focus::after {
  width: 23px;
}
.module-details .module_links .q4icons_icon {
  display: none;
}
.module-details .module_view-all-link {
  display: none;
}

.PageBlog .layout:not(.layout--home) .pane--banner img {
  margin: 28px auto 38px;
  display: table;
}
@media only screen and (max-width: 1024px) {
  .PageBlog .layout:not(.layout--home) .pane--banner img {
    margin: 20px auto 20px;
  }
}
.PageBlog .layout:not(.layout--home) .pane--banner .grid--flex {
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  .PageBlog .layout:not(.layout--home) .pane--banner .module_input {
    margin: 0 auto 30px;
    max-width: 500px;
  }
}
.PageBlog .layout:not(.layout--home) .pane--banner .module-banner-description p {
  max-width: 850px;
}
.PageBlog .layout:not(.layout--home) .module_image {
  width: 100%;
  height: 100%;
  margin: 0;
  max-width: 100%;
  border: 2px solid #c79d2d;
  position: relative;
  overflow: hidden;
}
.PageBlog .layout:not(.layout--home) .module_image .module_content {
  width: 100%;
  height: 100%;
  margin: 0;
  position: absolute;
  transition: 0.3s ease-in-out all;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1.01);
  transform: translate(-50%, -50%) scale(1.01);
}
.PageBlog .layout:not(.layout--home) .module_image .module_content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.PageBlog .layout:not(.layout--home) .module_image .module_content:hover {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
  transform: translate(-50%, -50%) scale(1.1);
}

.PageSearch .pane--banner .module-page-title {
  position: relative;
}
.PageSearch .pane--banner .module-page-title::after {
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(90deg, #bd8b26 0%, #fcba32 10%, #c08d26 20%, #a19574 30%, #a6afb5 40%, #bac4c9 50%, #929aa1 60%, #a59368 70%, #bc8c28 80%, #ebb934 90%, #bd8b26 100%);
}

@media only screen and (max-width: 480px) {
  .pane--content a:not([class]) {
    overflow-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: break-word;
    word-break: break-word;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
  }
}

.module-item_container--bod-c .module_intro .h3,
.module-item_container--estma .module_intro .h3 {
  font-weight: 800;
}
@media screen and (min-width: 1025px) {
  .module-item_container--bod-c .module_intro .h3,
.module-item_container--estma .module_intro .h3 {
    font-size: 26px;
    line-height: 45px;
  }
}

@media screen and (min-width: 1025px) {
  .module-item_container--estma .module-downloads .module_headline-text p {
    font-size: 20px;
    line-height: 25px;
  }
}

.pane--content .module.module-latest-presentation-fact-sheet {
  padding-top: 0px;
}
.pane--content .module.module-latest-presentation-fact-sheet .module-latest-presentation,
.pane--content .module.module-latest-presentation-fact-sheet .module-latest-fact-sheet {
  padding-top: 42px;
}
@media only screen and (max-width: 1024px) {
  .pane--content .module.module-latest-presentation-fact-sheet .module-latest-presentation,
.pane--content .module.module-latest-presentation-fact-sheet .module-latest-fact-sheet {
    padding-top: 0px;
  }
}

.PageContactUs #SubscriberConfirmation {
  padding-left: 20px;
}
@media only screen and (max-width: 1024px) {
  .PageContactUs #SubscriberConfirmation {
    padding-left: 0;
  }
}

.Languagees-ES .layout--home .module-banner-video .video-banner .text p {
  max-width: 985px;
}
.Languagees-ES .module-financial-quarter .module_item {
  padding-bottom: 10px;
}
.Languagees-ES .module-financial-quarter .module_item .module-financial_year-text {
  line-height: initial;
}
.Languagees-ES .nav--desktop--list--topMenu {
  column-gap: 15px;
}
.Languagees-ES .nav--desktop--list--topMenu--menuItem > .link, .Languagees-ES .nav--desktop--list--topMenu--menuItem > .button {
  font-size: 14px;
}
@media screen and (max-width: 1240px) {
  .Languagees-ES .nav--desktop--list--topMenu {
    column-gap: 12px;
  }
}
.Languagees-ES .pane--footer .module-custom-footer-info .module-footer-quick-links .module_container--inner .module-links_list {
  column-gap: 20px;
}
@media screen and (max-width: 1360px) {
  .Languagees-ES .pane--footer .module-custom-footer-info .module-footer-quick-links .module_container--inner .module-links_list {
    padding-left: 0px;
  }
}
@media screen and (max-width: 1250px) {
  .Languagees-ES .pane--footer .module-custom-footer-info .module-footer-quick-links .module_container--inner .module-links_list {
    column-gap: 0px;
  }
}
@media only screen and (max-width: 1024px) {
  .Languagees-ES .pane--footer .module-custom-footer-info .module-footer-quick-links .module_container--inner .module-links_list {
    column-gap: 10px;
    max-width: 700px;
  }
}
@media screen and (max-width: 700px) {
  .Languagees-ES .pane--footer .module-custom-footer-info .module-footer-quick-links .module_container--inner .module-links_list {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    max-width: 350px;
    column-gap: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}
@media screen and (max-width: 400px) {
  .Languagees-ES .pane--footer .module-custom-footer-info .module-footer-quick-links .module_container--inner .module-links_list {
    column-gap: 10px;
    grid-template-columns: 3fr 4fr;
  }
}
@media screen and (max-width: 360px) {
  .Languagees-ES .pane--footer .module-custom-footer-info .module-footer-quick-links .module_container--inner .module-links_list {
    columns: 1;
    -webkit-columns: 1;
    -moz-columns: 1;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: table;
  }
  .Languagees-ES .pane--footer .module-custom-footer-info .module-footer-quick-links .module_container--inner .module-links_list li {
    padding-bottom: 10px;
  }
  .Languagees-ES .pane--footer .module-custom-footer-info .module-footer-quick-links .module_container--inner .module-links_list li:last-child {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .Languagees-ES .pane--header .social_links {
    margin-left: 170px;
  }
}
@media screen and (max-width: 405px) {
  .Languagees-ES .module-news-latest-overview .title-and-button {
    flex-direction: column;
    justify-content: start;
    align-items: flex-start;
  }
  .Languagees-ES .pane--content .module.module-wd-custom-columns .h3 .button--plus {
    float: none;
    display: table;
    bottom: unset;
    margin-left: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .Languagees-ES .pane--content .module.module-stay-connected .button {
    width: 150px;
  }
  .Languagees-ES .pane--content .module.module-stay-connected .button .icon::before {
    top: 2px;
  }
}
@media screen and (max-width: 460px) {
  .Languagees-ES .pane--content .module.module-stay-connected .button {
    width: 120px;
  }
  .Languagees-ES .pane--content .module.module-stay-connected .button .icon {
    display: block;
  }
  .Languagees-ES .pane--content .module.module-stay-connected .button .icon::before {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 360px) {
  .Languagees-ES .pane--content .module.module-stay-connected .button {
    font-size: 15px;
    width: 110px;
    margin-left: -5px;
  }
}
@media screen and (max-width: 1380px) {
  .Languagees-ES .pane--content .module-overview--quick-links .module-overview_content ul {
    max-width: 65%;
  }
}
@media only screen and (max-width: 1024px) {
  .Languagees-ES .pane--content .module-overview--quick-links .module-overview_content ul {
    max-width: 100%;
  }
}
@media screen and (max-width: 360px) {
  .Languagees-ES .pane--content .module-overview--quick-links .module-overview_content ul {
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
  }
}
.Languagees-ES .module-projects-overview .title-and-button .button--plus {
  min-width: 120px;
  text-align: right;
}
@media screen and (max-width: 400px) {
  .Languagees-ES .module-projects-overview .title-and-button .button--plus {
    text-align: left;
    min-width: unset;
  }
}
@media screen and (max-width: 400px) {
  .Languagees-ES .module-upcoming-events-agm .title-and-button {
    flex-direction: column;
    justify-content: start;
    align-items: flex-start;
  }
}
@media screen and (max-width: 1200px) and (min-width: 1025px) {
  .Languagees-ES .module-financial-statements-and-aif {
    flex-basis: 65%;
    max-width: 65%;
  }
  .Languagees-ES .module-regulatory-filings {
    flex-basis: 35%;
    max-width: 35%;
  }
}

/* Bug 20, 21 */
.PageProjectPorcupine .layout:not(.layout--home) .pane--banner .module-banner-description .title {
  text-align: left;
}
.PageProjectPorcupine .layout:not(.layout--home) .pane--banner .module-banner-description .bullet-text {
  max-width: 275px;
  margin-left: unset;
  margin-right: unset;
}
@media screen and (max-width: 1260px) {
  .PageProjectPorcupine .layout:not(.layout--home) .pane--banner .module-banner-description .grid_col {
    width: 50%;
  }
  .PageProjectPorcupine .layout:not(.layout--home) .pane--banner .module-banner-description .title {
    text-align: center;
  }
  .PageProjectPorcupine .layout:not(.layout--home) .pane--banner .module-banner-description .bullet-text {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 700px) {
  .PageProjectPorcupine .layout:not(.layout--home) .pane--banner .module-banner-description .grid_col {
    width: 100%;
  }
}

.mb-10 {
  margin-bottom: 10px !important;
}
.mb-16 {
  margin-bottom: 16px !important;
}
.mb-20 {
  margin-bottom: 20px !important;
}

/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyJmaWxlOi8vL1VzZXJzL2p1bGlldGFkZWxnYWRvL0RvY3VtZW50cy9HaXRodWIvcTQtYmxhbmtfdGVtcGxhdGUvY3NzL2Rpc2NvdmVyeXNpbHZlcjIwMjZjb3JwL192YXJpYWJsZXMuc2NzcyIsImZpbGU6Ly8vVXNlcnMvanVsaWV0YWRlbGdhZG8vRG9jdW1lbnRzL0dpdGh1Yi9xNC1ibGFua190ZW1wbGF0ZS9jc3MvX2dsb2JhbC9fbWl4aW5zLnNjc3MiLCJmaWxlOi8vL1VzZXJzL2p1bGlldGFkZWxnYWRvL0RvY3VtZW50cy9HaXRodWIvcTQtYmxhbmtfdGVtcGxhdGUvY3NzL19nbG9iYWwvX3Jlc2V0LnNjc3MiLCJmaWxlOi8vL1VzZXJzL2p1bGlldGFkZWxnYWRvL0RvY3VtZW50cy9HaXRodWIvcTQtYmxhbmtfdGVtcGxhdGUvY3NzL19nbG9iYWwvX2FuaW1hdGlvbnMuc2NzcyIsImZpbGU6Ly8vVXNlcnMvanVsaWV0YWRlbGdhZG8vRG9jdW1lbnRzL0dpdGh1Yi9xNC1ibGFua190ZW1wbGF0ZS9jc3MvZGlzY292ZXJ5c2lsdmVyMjAyNmNvcnAvX2RlZmF1bHQuc2NzcyIsImZpbGU6Ly8vVXNlcnMvanVsaWV0YWRlbGdhZG8vRG9jdW1lbnRzL0dpdGh1Yi9xNC1ibGFua190ZW1wbGF0ZS9jc3MvZGlzY292ZXJ5c2lsdmVyMjAyNmNvcnAvX3E0aWNvbnMuc2NzcyIsImZpbGU6Ly8vVXNlcnMvanVsaWV0YWRlbGdhZG8vRG9jdW1lbnRzL0dpdGh1Yi9xNC1ibGFua190ZW1wbGF0ZS9jc3MvX2dsb2JhbC9wbHVnaW5zL19ncmlkLnNjc3MiLCJmaWxlOi8vL1VzZXJzL2p1bGlldGFkZWxnYWRvL0RvY3VtZW50cy9HaXRodWIvcTQtYmxhbmtfdGVtcGxhdGUvY3NzL2Rpc2NvdmVyeXNpbHZlcjIwMjZjb3JwL191dGlsaXR5LnNjc3MiLCJmaWxlOi8vL1VzZXJzL2p1bGlldGFkZWxnYWRvL0RvY3VtZW50cy9HaXRodWIvcTQtYmxhbmtfdGVtcGxhdGUvY3NzL19nbG9iYWwvX2FjY2Vzc2liaWxpdHkuc2NzcyIsImZpbGU6Ly8vVXNlcnMvanVsaWV0YWRlbGdhZG8vRG9jdW1lbnRzL0dpdGh1Yi9xNC1ibGFua190ZW1wbGF0ZS9jc3MvX2dsb2JhbC9famF2YXNjcmlwdC5zY3NzIiwiZmlsZTovLy9Vc2Vycy9qdWxpZXRhZGVsZ2Fkby9Eb2N1bWVudHMvR2l0aHViL3E0LWJsYW5rX3RlbXBsYXRlL2Nzcy9kaXNjb3ZlcnlzaWx2ZXIyMDI2Y29ycC9tb2R1bGVzL19hbGwuc2NzcyIsImZpbGU6Ly8vVXNlcnMvanVsaWV0YWRlbGdhZG8vRG9jdW1lbnRzL0dpdGh1Yi9xNC1ibGFua190ZW1wbGF0ZS9jc3MvZGlzY292ZXJ5c2lsdmVyMjAyNmNvcnAvbW9kdWxlcy9fY2FsY3VsYXRvci5zY3NzIiwiZmlsZTovLy9Vc2Vycy9qdWxpZXRhZGVsZ2Fkby9Eb2N1bWVudHMvR2l0aHViL3E0LWJsYW5rX3RlbXBsYXRlL2Nzcy9kaXNjb3ZlcnlzaWx2ZXIyMDI2Y29ycC9tb2R1bGVzL19jYXJlZXJzLnNjc3MiLCJmaWxlOi8vL1VzZXJzL2p1bGlldGFkZWxnYWRvL0RvY3VtZW50cy9HaXRodWIvcTQtYmxhbmtfdGVtcGxhdGUvY3NzL2Rpc2NvdmVyeXNpbHZlcjIwMjZjb3JwL21vZHVsZXMvX2NvbnRhY3Quc2NzcyIsImZpbGU6Ly8vVXNlcnMvanVsaWV0YWRlbGdhZG8vRG9jdW1lbnRzL0dpdGh1Yi9xNC1ibGFua190ZW1wbGF0ZS9jc3MvZGlzY292ZXJ5c2lsdmVyMjAyNmNvcnAvbW9kdWxlcy9fY29tbWl0dGVlLnNjc3MiLCJmaWxlOi8vL1VzZXJzL2p1bGlldGFkZWxnYWRvL0RvY3VtZW50cy9HaXRodWIvcTQtYmxhbmtfdGVtcGxhdGUvY3NzL2Rpc2NvdmVyeXNpbHZlcjIwMjZjb3JwL21vZHVsZXMvX2NvcnBvcmF0ZS1wcm9maWxlLnNjc3MiLCJmaWxlOi8vL1VzZXJzL2p1bGlldGFkZWxnYWRvL0RvY3VtZW50cy9HaXRodWIvcTQtYmxhbmtfdGVtcGxhdGUvY3NzL2Rpc2NvdmVyeXNpbHZlcjIwMjZjb3JwL21vZHVsZXMvX2NvdmVyYWdlLnNjc3MiLCJmaWxlOi8vL1VzZXJzL2p1bGlldGFkZWxnYWRvL0RvY3VtZW50cy9HaXRodWIvcTQtYmxhbmtfdGVtcGxhdGUvY3NzL2Rpc2NvdmVyeXNpbHZlcjIwMjZjb3JwL21vZHVsZXMvX2RpdmVyc2l0eS1tYXRyaXguc2NzcyIsImZpbGU6Ly8vVXNlcnMvanVsaWV0YWRlbGdhZG8vRG9jdW1lbnRzL0dpdGh1Yi9xNC1ibGFua190ZW1wbGF0ZS9jc3MvZGlzY292ZXJ5c2lsdmVyMjAyNmNvcnAvbW9kdWxlcy9fZG93bmxvYWRzLnNjc3MiLCJmaWxlOi8vL1VzZXJzL2p1bGlldGFkZWxnYWRvL0RvY3VtZW50cy9HaXRodWIvcTQtYmxhbmtfdGVtcGxhdGUvY3NzL2Rpc2NvdmVyeXNpbHZlcjIwMjZjb3JwL21vZHVsZXMvX2V2ZW50LnNjc3MiLCJmaWxlOi8vL1VzZXJzL2p1bGlldGFkZWxnYWRvL0RvY3VtZW50cy9HaXRodWIvcTQtYmxhbmtfdGVtcGxhdGUvY3NzL2Rpc2NvdmVyeXNpbHZlcjIwMjZjb3JwL21vZHVsZXMvX2ZhcS5zY3NzIiwiZmlsZTovLy9Vc2Vycy9qdWxpZXRhZGVsZ2Fkby9Eb2N1bWVudHMvR2l0aHViL3E0LWJsYW5rX3RlbXBsYXRlL2Nzcy9kaXNjb3ZlcnlzaWx2ZXIyMDI2Y29ycC9tb2R1bGVzL19maW5hbmNpYWwuc2NzcyIsImZpbGU6Ly8vVXNlcnMvanVsaWV0YWRlbGdhZG8vRG9jdW1lbnRzL0dpdGh1Yi9xNC1ibGFua190ZW1wbGF0ZS9jc3MvZGlzY292ZXJ5c2lsdmVyMjAyNmNvcnAvbW9kdWxlcy9fZm9ybS5zY3NzIiwiZmlsZTovLy9Vc2Vycy9qdWxpZXRhZGVsZ2Fkby9Eb2N1bWVudHMvR2l0aHViL3E0LWJsYW5rX3RlbXBsYXRlL2Nzcy9fZ2xvYmFsL19mb3JtLW1lZXRpbmcuc2NzcyIsImZpbGU6Ly8vVXNlcnMvanVsaWV0YWRlbGdhZG8vRG9jdW1lbnRzL0dpdGh1Yi9xNC1ibGFua190ZW1wbGF0ZS9jc3MvZGlzY292ZXJ5c2lsdmVyMjAyNmNvcnAvbW9kdWxlcy9fZ2xvc3Nhcnkuc2NzcyIsImZpbGU6Ly8vVXNlcnMvanVsaWV0YWRlbGdhZG8vRG9jdW1lbnRzL0dpdGh1Yi9xNC1ibGFua190ZW1wbGF0ZS9jc3MvZGlzY292ZXJ5c2lsdmVyMjAyNmNvcnAvbW9kdWxlcy9faGlzdG9yeS5zY3NzIiwiZmlsZTovLy9Vc2Vycy9qdWxpZXRhZGVsZ2Fkby9Eb2N1bWVudHMvR2l0aHViL3E0LWJsYW5rX3RlbXBsYXRlL2Nzcy9kaXNjb3ZlcnlzaWx2ZXIyMDI2Y29ycC9tb2R1bGVzL19pci1vdmVydmlldy13aHktaW52ZXN0LnNjc3MiLCJmaWxlOi8vL1VzZXJzL2p1bGlldGFkZWxnYWRvL0RvY3VtZW50cy9HaXRodWIvcTQtYmxhbmtfdGVtcGxhdGUvY3NzL2Rpc2NvdmVyeXNpbHZlcjIwMjZjb3JwL21vZHVsZXMvX2pvYi5zY3NzIiwiZmlsZTovLy9Vc2Vycy9qdWxpZXRhZGVsZ2Fkby9Eb2N1bWVudHMvR2l0aHViL3E0LWJsYW5rX3RlbXBsYXRlL2Nzcy9kaXNjb3ZlcnlzaWx2ZXIyMDI2Y29ycC9tb2R1bGVzL19taXNjZWxsYW5lb3VzLnNjc3MiLCJmaWxlOi8vL1VzZXJzL2p1bGlldGFkZWxnYWRvL0RvY3VtZW50cy9HaXRodWIvcTQtYmxhbmtfdGVtcGxhdGUvY3NzL2Rpc2NvdmVyeXNpbHZlcjIwMjZjb3JwL21vZHVsZXMvX25hdmlnYXRpb24uc2NzcyIsImZpbGU6Ly8vVXNlcnMvanVsaWV0YWRlbGdhZG8vRG9jdW1lbnRzL0dpdGh1Yi9xNC1ibGFua190ZW1wbGF0ZS9jc3MvZGlzY292ZXJ5c2lsdmVyMjAyNmNvcnAvbW9kdWxlcy9fbmF2LXYyLnNjc3MiLCJmaWxlOi8vL1VzZXJzL2p1bGlldGFkZWxnYWRvL0RvY3VtZW50cy9HaXRodWIvcTQtYmxhbmtfdGVtcGxhdGUvY3NzL2Rpc2NvdmVyeXNpbHZlcjIwMjZjb3JwL21vZHVsZXMvX25ld3Muc2NzcyIsImZpbGU6Ly8vVXNlcnMvanVsaWV0YWRlbGdhZG8vRG9jdW1lbnRzL0dpdGh1Yi9xNC1ibGFua190ZW1wbGF0ZS9jc3MvZGlzY292ZXJ5c2lsdmVyMjAyNmNvcnAvbW9kdWxlcy9fb3ZlcnZpZXctY2FyZWVycy5zY3NzIiwiZmlsZTovLy9Vc2Vycy9qdWxpZXRhZGVsZ2Fkby9Eb2N1bWVudHMvR2l0aHViL3E0LWJsYW5rX3RlbXBsYXRlL2Nzcy9kaXNjb3ZlcnlzaWx2ZXIyMDI2Y29ycC9tb2R1bGVzL19wb3J0Zm9saW8uc2NzcyIsImZpbGU6Ly8vVXNlcnMvanVsaWV0YWRlbGdhZG8vRG9jdW1lbnRzL0dpdGh1Yi9xNC1ibGFua190ZW1wbGF0ZS9jc3MvZGlzY292ZXJ5c2lsdmVyMjAyNmNvcnAvbW9kdWxlcy9fcG9ydGZvbGlvLW92ZXJ2aWV3LnNjc3MiLCJmaWxlOi8vL1VzZXJzL2p1bGlldGFkZWxnYWRvL0RvY3VtZW50cy9HaXRodWIvcTQtYmxhbmtfdGVtcGxhdGUvY3NzL2Rpc2NvdmVyeXNpbHZlcjIwMjZjb3JwL21vZHVsZXMvX3BhZ2VyLnNjc3MiLCJmaWxlOi8vL1VzZXJzL2p1bGlldGFkZWxnYWRvL0RvY3VtZW50cy9HaXRodWIvcTQtYmxhbmtfdGVtcGxhdGUvY3NzL2Rpc2NvdmVyeXNpbHZlcjIwMjZjb3JwL21vZHVsZXMvX3BlcnNvbi5zY3NzIiwiZmlsZTovLy9Vc2Vycy9qdWxpZXRhZGVsZ2Fkby9Eb2N1bWVudHMvR2l0aHViL3E0LWJsYW5rX3RlbXBsYXRlL2Nzcy9kaXNjb3ZlcnlzaWx2ZXIyMDI2Y29ycC9tb2R1bGVzL19wZXJzb24tcXVvdGVzLWNhcm91c2VsLnNjc3MiLCJmaWxlOi8vL1VzZXJzL2p1bGlldGFkZWxnYWRvL0RvY3VtZW50cy9HaXRodWIvcTQtYmxhbmtfdGVtcGxhdGUvY3NzL2Rpc2NvdmVyeXNpbHZlcjIwMjZjb3JwL21vZHVsZXMvX3BpcGVsaW5lcy5zY3NzIiwiZmlsZTovLy9Vc2Vycy9qdWxpZXRhZGVsZ2Fkby9Eb2N1bWVudHMvR2l0aHViL3E0LWJsYW5rX3RlbXBsYXRlL2Nzcy9kaXNjb3ZlcnlzaWx2ZXIyMDI2Y29ycC9tb2R1bGVzL19wcmVzZW50YXRpb24uc2NzcyIsImZpbGU6Ly8vVXNlcnMvanVsaWV0YWRlbGdhZG8vRG9jdW1lbnRzL0dpdGh1Yi9xNC1ibGFua190ZW1wbGF0ZS9jc3MvZGlzY292ZXJ5c2lsdmVyMjAyNmNvcnAvbW9kdWxlcy9fcHJldmlldy10b29sYmFyLnNjc3MiLCJmaWxlOi8vL1VzZXJzL2p1bGlldGFkZWxnYWRvL0RvY3VtZW50cy9HaXRodWIvcTQtYmxhbmtfdGVtcGxhdGUvY3NzL2Rpc2NvdmVyeXNpbHZlcjIwMjZjb3JwL21vZHVsZXMvX3NlYXJjaC5zY3NzIiwiZmlsZTovLy9Vc2Vycy9qdWxpZXRhZGVsZ2Fkby9Eb2N1bWVudHMvR2l0aHViL3E0LWJsYW5rX3RlbXBsYXRlL2Nzcy9kaXNjb3ZlcnlzaWx2ZXIyMDI2Y29ycC9tb2R1bGVzL19zZWMuc2NzcyIsImZpbGU6Ly8vVXNlcnMvanVsaWV0YWRlbGdhZG8vRG9jdW1lbnRzL0dpdGh1Yi9xNC1ibGFua190ZW1wbGF0ZS9jc3MvZGlzY292ZXJ5c2lsdmVyMjAyNmNvcnAvbW9kdWxlcy9fc2tpcC5zY3NzIiwiZmlsZTovLy9Vc2Vycy9qdWxpZXRhZGVsZ2Fkby9Eb2N1bWVudHMvR2l0aHViL3E0LWJsYW5rX3RlbXBsYXRlL2Nzcy9kaXNjb3ZlcnlzaWx2ZXIyMDI2Y29ycC9tb2R1bGVzL19zbGlkZXIuc2NzcyIsImZpbGU6Ly8vVXNlcnMvanVsaWV0YWRlbGdhZG8vRG9jdW1lbnRzL0dpdGh1Yi9xNC1ibGFua190ZW1wbGF0ZS9jc3MvZGlzY292ZXJ5c2lsdmVyMjAyNmNvcnAvbW9kdWxlcy9fc3RvY2stY2hhcnQuc2NzcyIsImZpbGU6Ly8vVXNlcnMvanVsaWV0YWRlbGdhZG8vRG9jdW1lbnRzL0dpdGh1Yi9xNC1ibGFua190ZW1wbGF0ZS9jc3MvZGlzY292ZXJ5c2lsdmVyMjAyNmNvcnAvbW9kdWxlcy9fc3RvY2staGVhZGVyLnNjc3MiLCJmaWxlOi8vL1VzZXJzL2p1bGlldGFkZWxnYWRvL0RvY3VtZW50cy9HaXRodWIvcTQtYmxhbmtfdGVtcGxhdGUvY3NzL2Rpc2NvdmVyeXNpbHZlcjIwMjZjb3JwL21vZHVsZXMvX3N0b2NrLWJhbm5lci5zY3NzIiwiZmlsZTovLy9Vc2Vycy9qdWxpZXRhZGVsZ2Fkby9Eb2N1bWVudHMvR2l0aHViL3E0LWJsYW5rX3RlbXBsYXRlL2Nzcy9kaXNjb3ZlcnlzaWx2ZXIyMDI2Y29ycC9tb2R1bGVzL19zdG9jay1xdW90ZS5zY3NzIiwiZmlsZTovLy9Vc2Vycy9qdWxpZXRhZGVsZ2Fkby9Eb2N1bWVudHMvR2l0aHViL3E0LWJsYW5rX3RlbXBsYXRlL2Nzcy9kaXNjb3ZlcnlzaWx2ZXIyMDI2Y29ycC9tb2R1bGVzL19zdWJzY3JpYmUuc2NzcyIsImZpbGU6Ly8vVXNlcnMvanVsaWV0YWRlbGdhZG8vRG9jdW1lbnRzL0dpdGh1Yi9xNC1ibGFua190ZW1wbGF0ZS9jc3MvZGlzY292ZXJ5c2lsdmVyMjAyNmNvcnAvbW9kdWxlcy9fdW5zdWJzY3JpYmUuc2NzcyIsImZpbGU6Ly8vVXNlcnMvanVsaWV0YWRlbGdhZG8vRG9jdW1lbnRzL0dpdGh1Yi9xNC1ibGFua190ZW1wbGF0ZS9jc3MvZGlzY292ZXJ5c2lsdmVyMjAyNmNvcnAvbW9kdWxlcy9fb3VyLWJyYW5kcy5zY3NzIiwiZmlsZTovLy9Vc2Vycy9qdWxpZXRhZGVsZ2Fkby9Eb2N1bWVudHMvR2l0aHViL3E0LWJsYW5rX3RlbXBsYXRlL2Nzcy9kaXNjb3ZlcnlzaWx2ZXIyMDI2Y29ycC9tb2R1bGVzL19vdXItdmFsdWVzLnNjc3MiLCJmaWxlOi8vL1VzZXJzL2p1bGlldGFkZWxnYWRvL0RvY3VtZW50cy9HaXRodWIvcTQtYmxhbmtfdGVtcGxhdGUvY3NzL2Rpc2NvdmVyeXNpbHZlcjIwMjZjb3JwL21vZHVsZXMvX3N1c3RhaW5hYmlsaXR5LnNjc3MiLCJmaWxlOi8vL1VzZXJzL2p1bGlldGFkZWxnYWRvL0RvY3VtZW50cy9HaXRodWIvcTQtYmxhbmtfdGVtcGxhdGUvY3NzL2Rpc2NvdmVyeXNpbHZlcjIwMjZjb3JwL21vZHVsZXMvX3NwbGlkZS1nbG9iYWwuc2NzcyIsImZpbGU6Ly8vVXNlcnMvanVsaWV0YWRlbGdhZG8vRG9jdW1lbnRzL0dpdGh1Yi9xNC1ibGFua190ZW1wbGF0ZS9jc3MvZGlzY292ZXJ5c2lsdmVyMjAyNmNvcnAvbW9kdWxlcy9fc3BsaWRlLWJhbm5lci5zY3NzIiwiZmlsZTovLy9Vc2Vycy9qdWxpZXRhZGVsZ2Fkby9Eb2N1bWVudHMvR2l0aHViL3E0LWJsYW5rX3RlbXBsYXRlL2Nzcy9kaXNjb3ZlcnlzaWx2ZXIyMDI2Y29ycC9tb2R1bGVzL19iYW5uZXJzLnNjc3MiLCJmaWxlOi8vL1VzZXJzL2p1bGlldGFkZWxnYWRvL0RvY3VtZW50cy9HaXRodWIvcTQtYmxhbmtfdGVtcGxhdGUvY3NzL2Rpc2NvdmVyeXNpbHZlcjIwMjZjb3JwL21vZHVsZXMvX2xpbmstYm94ZXMuc2NzcyIsImZpbGU6Ly8vVXNlcnMvanVsaWV0YWRlbGdhZG8vRG9jdW1lbnRzL0dpdGh1Yi9xNC1ibGFua190ZW1wbGF0ZS9jc3MvZGlzY292ZXJ5c2lsdmVyMjAyNmNvcnAvbW9kdWxlcy9fd2h5LWludmVzdC5zY3NzIiwiZmlsZTovLy9Vc2Vycy9qdWxpZXRhZGVsZ2Fkby9Eb2N1bWVudHMvR2l0aHViL3E0LWJsYW5rX3RlbXBsYXRlL2Nzcy9kaXNjb3ZlcnlzaWx2ZXIyMDI2Y29ycC9tb2R1bGVzL19xdWlja2xpbmtzLnNjc3MiLCJmaWxlOi8vL1VzZXJzL2p1bGlldGFkZWxnYWRvL0RvY3VtZW50cy9HaXRodWIvcTQtYmxhbmtfdGVtcGxhdGUvY3NzL19nbG9iYWwvbGF5b3V0cy9faWZyYW1lLnNjc3MiLCJmaWxlOi8vL1VzZXJzL2p1bGlldGFkZWxnYWRvL0RvY3VtZW50cy9HaXRodWIvcTQtYmxhbmtfdGVtcGxhdGUvY3NzL2Rpc2NvdmVyeXNpbHZlcjIwMjZjb3JwL19ibGFuay5zY3NzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFxQkE7RUFDRTtFQUNBO0VBQ0E7QUFRQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtBQUVBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0FBN0RBO0VBSkY7SUFLSTtJQUNBO0FBQUE7QUFBQTs7OztBQzhSSjtBQ3pUQTtBQUFBO0FBQUE7QUFJQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtFQXNFRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7OztBQUdGO0FBQ0E7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtFQVdFOzs7QUFHRjtFQUNFO0VBQ0EsV0ZPVTs7O0FFSlo7QUFBQTtBQUFBO0VBR0U7OztBQUtBO0FBQUE7QUFBQTtBQUFBO0VBRUU7RUFDQTtFQUNBOzs7QUFJSjtBQUFBO0VBRUU7OztBQUdGO0FBQUE7QUFBQTtBQUFBO0VB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QUdJOzs7O0FBS047QUFBQTtFQUVFOzs7QUFLRTtFQUNFOzs7QUNqdEJOO0FBQUE7QUFBQTtBQUlFO0VKd0VBLGFEaUNVO0VDaENWO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUVBO0VBQ0E7RUFDQTtFSS9FRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0FBRUY7QUFBQTtFQUVFOztBQUVGO0VBQ0U7RUFDQTs7QUFFRjtBQUFBO0FBQUE7QUFBQTtFQUlFOztBQUVGO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtFQU1FOztBQUVGO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtFQU1FOztBQUVGO0FBQUE7RUFFRTs7QUFFRjtBQUFBO0FBQUE7QUFBQTtFQUlFOztBQUVGO0FBQUE7RUFFRTs7QUFFRjtFQUNFOztBQUVGO0VBQ0U7O0FBRUY7RUFDRTs7QUFFRjtFQUNFOztBQUVGO0VBQ0U7O0FBRUY7RUFDRTs7QUFFRjtFQUNFOztBQUVGO0VBQ0U7RUFDQTtFSkxGLGFEaUNVO0VDaENWO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUVBO0VBQ0E7RUFDQTs7QUlGQTtFQUNFO0VBQ0E7RUpWRixhRGlDVTtFQ2hDVjtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFFQTtFQUNBO0VBQ0E7OztBS3RGRjtBQUFBO0FBQUE7QUE0QkE7RUFDRTtFQUNBOztBQUNBO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOztBQUNBO0VBQ0U7O0FBRUY7RUFDRTs7QUFFRjtFQUNFOztBQUVGO0VBQ0U7RUFDQTs7QUFFRjtFQUNFO0VBQ0E7O0FBRUY7RUFDRTtFQUNBOztBQUVGO0VBQ0U7O0FBRUY7RUFDRTs7QUFFRjtFQUNFOztBQUVGO0VBQ0U7O0FBRUY7RUFDRTs7O0FBS047RUFDRTtFQUNBO0VBQ0E7OztBQUdGO0VBQ0U7OztBQUVGO0VBQ0U7OztBQUVGO0VBQ0U7OztBQUVGO0VBQ0U7OztBQUVGO0VBQ0U7OztBQUtGO0VBQ0U7OztBQUdGO0VBQ0U7RUFDQTtFQUNBOzs7QUFFRjtFQUNFO0VBQ0E7RUFDQTs7O0FBRUY7RUFDRTtFQUNBO0VBQ0E7OztBQUVGO0VBQ0U7RUFDQTtFQUNBOzs7QUFFRjtFQUNFO0VBQ0E7RUFDQTs7O0FBT0Y7RUFDRTtFQUNBO0VBQ0E7OztBQUdGO0VBQ0U7OztBQUVGO0VBQ0U7OztBQUVGO0VBQ0U7OztBQUVGO0VBQ0U7OztBQUVGO0VBQ0U7OztBQUtGO0VBQ0U7OztBQUdGO0VBQ0U7OztBQUVGO0VBQ0U7OztBQUVGO0VBQ0U7OztBQUVGO0VBQ0U7OztBQUVGO0VBQ0U7OztBQUtGO0VBQ0U7OztBQU9FO0VBZ0JJOzs7QUFHSjtFQWlCSTtFQUNBO0VBQ0E7OztBQUlGO0VBZ0JJOzs7QUFLSjtFQWdCSTs7O0FBL0VOO0VBZ0JJOzs7QUFHSjtFQWlCSTtFQUNBO0VBQ0E7OztBQUlGO0VBZ0JJOzs7QUFLSjtFQWdCSTs7O0FBL0VOO0VBZ0JJOzs7QUFHSjtFQWlCSTtFQUNBO0VBQ0E7OztBQUlGO0VBZ0JJOzs7QUFLSjtFQWdCSTs7O0FBL0VOO0VBZ0JJOzs7QUFHSjtFQWlCSTtFQUNBO0VBQ0E7OztBQUlGO0VBZ0JJOzs7QUFLSjtFQWdCSTs7O0FBL0VOO0VBZ0JJOzs7QUFHSjtFQWlCSTtFQUNBO0VBQ0E7OztBQUlGO0VBZ0JJOzs7QUFLSjtFQWdCSTs7O0FBL0VOO0VBZ0JJOzs7QUFHSjtFQWlCSTtFQUNBO0VBQ0E7OztBQUlGO0VBZ0JJOzs7QUFLSjtFQWdCSTs7O0FBL0VOO0VBZ0JJOzs7QUFHSjtFQWlCSTtFQUNBO0VBQ0E7OztBQUlGO0VBZ0JJOzs7QUFLSjtFQWdCSTs7O0FBL0VOO0VBZ0JJOzs7QUFHSjtFQWlCSTtFQUNBO0VBQ0E7OztBQUlGO0VBZ0JJOzs7QUFLSjtFQWdCSTs7O0FBL0VOO0VBZ0JJOzs7QUFHSjtFQWlCSTtFQUNBO0VBQ0E7OztBQUlGO0VBZ0JJOzs7QUFLSjtFQWdCSTs7O0FBL0VOO0VBZ0JJOzs7QUFHSjtFQWlCSTtFQUNBO0VBQ0E7OztBQUlGO0VBZ0JJOzs7QUFLSjtFQWdCSTs7O0FBL0VOO0VBZ0JJOzs7QUFHSjtFQWlCSTtFQUNBO0VBQ0E7OztBQUlGO0VBZ0JJOzs7QUFLSjtFQWdCSTs7O0FBL0VOO0VBZ0JJOzs7QUFHSjtFQWlCSTtFQUNBO0VBQ0E7OztBQUlGO0VBZ0JJOzs7QUFLSjtFQWdCSTs7O0FBL0VOO0VBZ0JJOzs7QUFHSjtFQWlCSTtFQUNBO0VBQ0E7OztBQUlGO0VBZ0JJOzs7QUFLSjtFQWdCSTs7O0FBL0VOO0VBZ0JJOzs7QUFHSjtFQWlCSTtFQUNBO0VBQ0E7OztBQUlGO0VBZ0JJOzs7QUFLSjtFQWdCSTs7O0FBL0VOO0VBZ0JJOzs7QUFHSjtFQWlCSTtFQUNBO0VBQ0E7OztBQUlGO0VBZ0JJOzs7QUFLSjtFQWdCSTs7O0FBL0VOO0VBZ0JJOzs7QUFHSjtFQWlCSTtFQUNBO0VBQ0E7OztBQUlGO0VBZ0JJOzs7QUFLSjtFQWdCSTs7O0FBL0VOO0VBZ0JJOzs7QUFHSjtFQWlCSTtFQUNBO0VBQ0E7OztBQUlGO0VBZ0JJOzs7QUFLSjtFQWdCSTs7O0FBL0VOO0VBZ0JJOzs7QUFHSjtFQWlCSTtFQUNBO0VBQ0E7OztBQUlGO0VBZ0JJOzs7QUFLSjtFQWdCSTs7O0FBL0VOO0VBZ0JJOzs7QUFHSjtFQWlCSTtFQUNBO0VBQ0E7OztBQUlGO0VBZ0JJOzs7QUFLSjtFQWdCSTs7O0FBL0VOO0VBZ0JJOzs7QUFHSjtFQWlCSTtFQUNBO0VBQ0E7OztBQUlGO0VBZ0JJOzs7QUFLSjtFQWdCSTs7O0FBL0VOO0VBZ0JJOzs7QUFHSjtFQWlCSTtFQUNBO0VBQ0E7OztBQUlGO0VBZ0JJOzs7QUFLSjtFQWdCSTs7O0FBL0VOO0VBZ0JJOzs7QUFHSjtFQWlCSTtFQUNBO0VBQ0E7OztBQUlGO0VBZ0JJOzs7QUFLSjtFQWdCSTs7O0FBWVY7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBLGNBN1FtQjtFQThRbkI7O0FBQ0E7RUFQRjtJQVFJO0lBQ0E7SUFDQTtJQUNBOzs7QUFFRjtFQUNFO0lBQ0U7SUFDQTs7RUFDUztJQUNQO0lBQ0E7O0VBR0o7SUFDRTs7RUFDUztJQUNQO0lBQ0E7SUFDQTs7RUFHSjtJQUNFOztFQUNTO0lBQ1A7SUFDQTtJQUNBOztFQUdKO0lBQ0U7O0VBQ1M7SUFDUDtJQUNBO0lBQ0E7O0VBR0o7SUFDRTs7RUFDUztJQUNQO0lBQ0E7SUFDQTs7RUFHSjtJQUNFOztFQUNTO0lBQ1A7SUFDQTtJQUNBOztFQU1KO0lBQ0U7O0VBQ1M7SUFDUDtJQUNBO0lBQ0E7OztBQUlOO0VBQ0U7SUFDRTtJQUNBOztFQUNTO0lBQ1A7SUFDQTs7RUFHSjtJQUNFOztFQUNTO0lBQ1A7SUFDQTtJQUNBOztFQUdKO0lBQ0U7O0VBQ1M7SUFDUDtJQUNBO0lBQ0E7O0VBR0o7SUFDRTs7RUFDUztJQUNQO0lBQ0E7SUFDQTs7RUFHSjtJQUNFOztFQUNTO0lBQ1A7SUFDQTtJQUNBOztFQUdKO0lBQ0U7O0VBQ1M7SUFDUDtJQUNBO0lBQ0E7O0VBTUo7SUFDRTs7RUFDUztJQUNQO0lBQ0E7SUFDQTs7O0FBSU47RUFDRTtJQUNFO0lBQ0E7O0VBQ1M7SUFDUDtJQUNBOztFQUdKO0lBQ0U7O0VBQ1M7SUFDUDtJQUNBO0lBQ0E7O0VBR0o7SUFDRTs7RUFDUztJQUNQO0lBQ0E7SUFDQTs7RUFHSjtJQUNFOztFQUNTO0lBQ1A7SUFDQTtJQUNBOztFQUdKO0lBQ0U7O0VBQ1M7SUFDUDtJQUNBO0lBQ0E7O0VBR0o7SUFDRTs7RUFDUztJQUNQO0lBQ0E7SUFDQTs7RUFPSjtJQUNFOztFQUNTO0lBQ1A7SUFDQTtJQUNBOzs7QUFJTjtFQUNFO0lBQ0U7SUFDQTs7RUFDUztJQUNQO0lBQ0E7O0VBR0o7SUFDRTs7RUFDUztJQUNQO0lBQ0E7SUFDQTs7RUFHSjtJQUNFOztFQUNTO0lBQ1A7SUFDQTtJQUNBOztFQUdKO0lBQ0U7O0VBQ1M7SUFDUDtJQUNBO0lBQ0E7O0VBR0o7SUFDRTs7RUFDUztJQUNQO0lBQ0E7SUFDQTs7RUFNSjtJQUNFOztFQUNTO0lBQ1A7SUFDQTtJQUNBOztFQUdLO0lBQ1A7SUFDQTtJQUNBOzs7O0FBTU47RUFDRTtFQUNBO0VBQ0E7OztBQUlGO0VBQ0U7O0FBQ1M7RUFDUDtFQUNBOzs7QUFLSjtFQUNFOztBQUNTO0VBQ1A7RUFDQTs7O0FBS0o7RUFDRTs7QUFF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QUNBO0VBQ0U7RUFDQTtFQUVBO0VBQ0E7RUFDQTs7QUFDQTtFQUNFOztBQUVGO0VBQ0U7O0FBR0Y7QUFBQTtBQUFBO0FBRUU7QUFBQTtBQUFBO0VBR0E7RUFDQTtFQUVBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOztBQUNBO0FBQUE7QUFBQTtFQUNFO0VBQ0E7O0FBRUY7QUFBQTtBQUFBO0VBQ0U7O0FBRUY7QUFBQTtBQUFBO0VBQ0U7O0FBZUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtFQUNFOztBQUtOO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOztBQUVBO0VBQ0U7O0FBR0Y7RUFDRTtFQUNBOztBQUNBO0VBQ0U7RUFDQTs7QUFLSjtFQUNFOztBQU1SO0VBRUU7RUFDQTs7QUFDQTtBQUFBO0FBQUE7RUFFRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0FBQ0E7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0VBTUE7O0FBQ0E7QUFBQTtBQUFBO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7QUFFRjtBQUFBO0FBQUE7RUFDRTtFQUNBOztBQUNBO0FBQUE7QUFBQTtFQUNFOztBQUdKO0FBQUE7QUFBQTtFQUNFOztBQUVGO0FBQUE7QUFBQTtBQUFBO0FBQUE7RUFFRTtFQUNBOztBQUNBO0FBQUE7QUFBQTtBQUFBO0FBQUE7RUFDRTtFQUNBO0VBQ0E7O0FBSU47RUFDRTtFQUNBOztBQUNBO0VBQ0U7O0FBRUY7RUFDRTs7QUFPTjtFQUNFO0VBQ0E7RUFDQTs7QUFDQTtFQUNFO0VBQ0E7O0FBSUo7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0Esa0I5QjFOSztFOEIyTkw7O0FBRUE7RUFDRTtFQUNBOztBQUdGO0VBQ0U7RUFDQTs7QUFHRjtFQUNFOztBQUNBO0VBQ0U7O0FBRUY7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O0FBRUY7RUFDRTtFQUNBOztBQUNBO0VBQ0U7RUFDQTtFQUNBOztBQUVGO0VBQ0U7O0FBRUY7RUFDRTtFQUdBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0E1RHhsQlY7RTREZ2xCUTtJQVdJO0lBQ0E7SUFDQTs7O0FBR0o7RUFDRTtFQUdBO0VBQ0E7RUFDQTtFQUNBOztBQUVGO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7QUFFRjtFQUNFOztBQUNBO0VBQ0U7RUFDQTtFQUNBOztBQUVGO0VBQ0U7O0FBRUY7RUFDRTs7QUFFRjtFQUNFOztBQUNBO0VBQ0U7O0FBSU47RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBOztBQUlFO0VBQ0U7O0FBR0E7RUFDRTs7QUFLUjtBQUFBO0VBRUU7RUFDQTtFQUNBOztBQUVGO0VBQ0U7O0FBSU47RUFDRTtFQUNBOztBQUNBO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7QUFDQTtBQUFBO0FBQUE7RUFHQTtFQWNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0E1RGxzQlI7RTREd3FCTTtJQTZCSTs7O0FBSUY7RUFDRTtFQUNBO0VBRUE7O0E1RDdzQlY7RTREeXNCUTtJQU1JOzs7QUFHSjtFQUNFOztBQU1BO0VBRUU7RUFDQTtFQUNBOztBQUVGO0VBQ0U7RUFDQTtFQUNBOztBQUdBO0VBQ0U7O0FBR0o7RUFDRTs7QUFJTjtFQUNFO0VBQ0E7RUFDQTtFQUdBO0VBQ0E7RUFDQTs7QUFFRjtFQUNFO0VBQ0E7RUFHQTtFQUNBO0VBQ0E7O0FBRUE7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBOztBQUVGO0VBQ0U7RUFDQTtFQUNBOztBQUNBO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBRUE7O0FBSU47RUFFRTtFQUNBOztBQUNBO0VBQ0U7RUFDQTs7QUFHSjtFQUNFO0VBR0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7QUFHQTtFQUNFO0VBR0E7RUFDQTtFQUNBOztBQUdKO0VBQ0U7O0FBQ0E7RUFDRTtFQUNBO0VBQ0E7RUFHQTtFQUNBO0VBQ0E7RUFDQTs7QUFF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QTtFQUNFOztBQUVGO0VBQ0U7O0FBQ0E7RUFDRTtFQUNBO0VBS0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7QUFLUjtFQUNFOztBQUNBO0VBQ0UsYTdEcG1FTTtFNkRxbUVOO0VBQ0E7RUFDQTtFQUNBOztBQUVFO0VBRUU7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOztBQUVGO0VBQ0U7O0FBSU47RUFDRTs7QUFDQTtFQUNFOztBQUVFO0VBQ0U7O0FBRUY7RUFDRTtFQUNBO0VBRUE7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7QUFNRjtFQUNFOztBQUdGO0VBQ0U7O0FBT0o7RUFDRTs7QUFFRjtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOztBQU9BO0VBRUU7O0FBU0o7RUFDRTs7QUFDQTtFQUVFOzs7QUFRWjtFQUNFO0VBQ0E7RUFDQTs7QUFDQTtBQUFBO0VBRUU7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0FBSUU7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7QUFDQTtFQWRGO0lBZUk7SUFDQTs7OztBQU1WO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7QUFDQTtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0FBQ0E7RUFmRjtJQWdCSTtJQUNBOzs7QUFJRjtFQUNFOztBQUlGO0VBQ0U7O0FBSUY7RUFDRTtFQUNBOztBQUlGO0VBQ0U7OztBQUtOO0VBQ0U7O0FBQ0E7RUFGRjtJQUdJOzs7O0FBS0E7RUFDRTtFQUNBOzs7QUFJTjtFQUNFOztBQUNBO0VBQ0U7RUFDQTtFQUNBO0VBRUE7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7QUFDQTtFQWhCRjtJQWlCSTtJQUNBOzs7QTVEOXlFSjtFNEQ0eEVBO0lBc0JJO0lBQ0E7OztBQUdKO0FBQUE7RTVEam5FQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFNEQ4bUVFO0VBQ0E7O0E1RHAwRUY7RTREZzBFQTtBQUFBO0lBTUk7SUFDQTtJQUNBO0lBQ0E7SUFDQTtJQUNBO0lBQ0E7OztBQUdKO0VBQ0U7RUFDQTs7QTVEajFFRjtFNEQrMEVBO0lBSUk7SUFDQTs7O0E1RDEwRUo7RTREcTBFQTtJQVFJOzs7QUFFRjtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0FBRUY7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOztBQUVGO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0FBQ0E7RUFDRTtFQUNBO0VBQ0E7RTVEOWxFTjtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFNEQwbEVNO0VBQ0E7O0E1RDMzRU47RTREcTNFSTtJQVFJO0lBQ0E7SUFDQTtJQUNBO0lBQ0E7SUFDQTtJQUNBOzs7QUFJSjtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOztBNUQ5NEVOO0U0RHU0RUk7SUFTSTtJQUNBO0lBQ0E7SUFDQTs7O0FBRUY7RUFDRTtFQUNBOztBNUR2NUVSO0U0RHE1RU07SUFJSTs7OztBQVFaO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7QUFDQTtFQUNFOztBQUVGO0VBQ0U7O0FBQ0E7RUFDRTs7QTVENzZFSjtFNERpNkVGO0lBaUJJOztFQUNBO0lBQ0U7OztBQUdKO0VBdEJGO0lBdUJJO0lBQ0E7SUFDQTs7OztBQUlKO0VBQ0U7RUFDQTs7QTVEaDhFQTtFNEQ4N0VGO0lBSUk7SUFDQTs7O0E1RDk3RUY7RTREeTdFRjtJQVFJOzs7QUFFRjtFQUNFOztBNURwOEVGO0U0RG04RUE7SUFHSTs7O0FBR0o7RUFDRTtFQUNBO0VBQ0E7RUFDQTs7QUFDQTtFQUNFOztBNUQvOEVKO0U0RHk4RUE7SUFTSTtJQUNBO0lBQ0E7SUFDQTs7RUFDQTtJQUNFO0lBQ0E7SUFDQTtJQUNBOztFQUVGO0lBQ0U7OztBQUlOO0VBQ0U7O0FBQ0E7RUFDRTtFQUNBO0VBQ0E7O0FBQ0E7RUFDRTs7QTVENytFTjtFNEQ0K0VJO0lBR0k7OztBNUQxK0VSO0U0RG0rRUU7SUFZSTtJQUNBO0lBR0E7O0VBQ0E7SUFDRTs7O0FBR0o7RUFyQkY7SUFzQkk7SUFDQTtJQUNBO0lBQ0E7OztBQUlOO0VBQ0U7RTVENXFFRjtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7QUFoV0E7RTREcWdGQTtJQUlJO0lBQ0E7SUFDQTtJQUNBOzs7O0FBS047RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQWNBOztBQUNBO0VBRUU7RUFDQTtFQWNBO0VBQ0E7RUFDQTs7QUFFRjtFQUNFO0VBY0E7O0FBRUY7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7QTVEamxGRjtFNEQwa0ZBO0lBVUk7SUFDQTtJQUNBOzs7QUFTSjtFQUNFO0VBQ0E7RUFDQTs7QUFFQTtFQUNFOztBQUNBO0VBQ0U7RUFDQTtFQUNBO0VBZUE7QUFPQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0E1RHBvRk47RTREc21GSTtJQWdDSTs7O0E1RHRvRlI7RTREK2xGQTtJQTRDSTtJQUNBOztFQUNBO0lBQ0U7SUFDQTs7RUFFRjtJQUNFO0lBQ0E7O0VBQ0E7SUFDRTs7O0FBS1I7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBRUE7RUFDQTtFQUNBO0VBQ0Esa0I3RHJwRlU7RTZEc3BGVjtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0FBRUE7RUFDRTtFQUNBO0VBQ0E7O0FBR0E7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOztBQUdKO0VBRUU7RUFDQSxPN0R2ckZROztBNkR3ckZSO0VBQ0U7O0FBRUY7RUFDRTtFQUVBOztBNUQ3c0ZOO0U0RDBwRkE7SUF3REk7SUFDQTtJQUNBOztFQUNBO0lBQ0U7O0VBR0E7SUFDRTtJQUNBO0lBQ0E7SUFDQTs7O0FBSU47RUF2RUY7SUF3RUk7OztBQUVGO0VBMUVGO0lBMkVJOztFQUVFO0lBQ0U7SUFDQTtJQUNBO0lBQ0E7Ozs7QUFRUjtFQUNFO0VBQ0E7RUFDQTs7QUFDQTtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBY0E7RUFDQTtFQUNBO0VBQ0E7O0E1RDV3Rko7RTREbXZGQTtJQTRCSTs7O0FBRUY7RUFDRTtFQUNBOztBNURueEZKO0U0RGl4RkU7SUFJSTtJQUNBOzs7O0FBTVI7RUFDRTtFQUNBO0VBQ0E7O0E1RC94RkE7RTRENHhGRjtJQUtJO0lBQ0E7OztBQUVGO0VBQ0U7RUFDQTtFQWNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0FBRUY7RUFDRTs7QUFFRjtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOztBNUR2MEZGO0U0RDZ6RkE7SUFZSTs7O0E1RHAwRko7RTREd3pGQTtJQWVJOzs7QUFFRjtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0FBRUY7RUFDRTs7QUFDQTtFQUNFOztBQUdKO0VBQ0U7O0FBQ0E7RUFDRTs7QTVEajJGTjtFNER5MkZNO0lBQ0U7OztBQUlOO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7RUFFQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7QUFFRjtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOztBQUNBO0FBQUE7RUFFRTtFQUdBO0VBQ0E7RUFDQTs7QTVEOTRGTjtFNER1NEZJO0FBQUE7SUFTSTtJQUNBOzs7QUFHSjtFQUNFO0VBQ0E7O0FBSU47RUFDRTtFQUNBO0VBQ0E7O0FBSUU7RUFDRTtFQUNBOztBQUVGO0VBQ0U7O0FBSU47RUFDRTs7QUFDQTtFQUNFOztBNUQ3NkZKO0U0RDQ2RkU7SUFHSTs7O0FBR0o7RUFDRTs7QTVEbjdGSjtFNERrN0ZFO0lBR0k7OztBNURyN0ZOO0U0RDA2RkE7SUFlSTs7O0FBR0o7RUFDRTs7QUFFRTtFQURGO0lBRUk7SUFDQTtJQUNBOzs7QTVEbDhGTjtFNERzOEZJO0lBQ0U7OztBQUdKO0VBZEY7SUFlSTtJQUNBOztFQUNBO0lBQ0U7Ozs7QUFNUjtFQUNFOztBQUNBO0VBQ0U7O0E1RHY5RkY7RTREczlGQTtJQUdJOzs7QUFHSjtBQUFBO0VBRUU7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOztBQUdBO0VBQ0U7RUFDQTtFQWNBO0VBQ0E7O0FBR0o7RUFDRTtFQUNBOztBNUQxL0ZGO0U0RHcvRkE7SUFJSTs7O0E1RDUvRko7RTREdy9GQTtJQU9JOzs7QUFFRjtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0E1RC9nR0o7RTREaWdHRTtJQWdCSTtJQUNBO0lBQ0E7OztBQUVGO0VBcEJGO0lBcUJJO0lBQ0E7SUFDQTs7O0FBR0o7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQWNBO0VBQ0E7O0FBR0o7RUFDRTs7QUFDQTtFQUNFO0VBQ0E7O0E1RDFqR0o7RTREd2pHRTtJQUlJOzs7QUFFRjtFQUNFOztBQUdKO0VBQ0U7RUFFQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0E1RDFrR0o7RTREa2tHRTtJQVVJO0lBQ0E7SUFDQTtJQUNBOzs7QUFHSjtFQUNFOztBQUNBO0VBRkY7SUFHSTtJQUNBOzs7QUFFRjtFQUNFO0VBQ0E7RUFHQTtFQUNBO0VBQ0E7O0E1RC9sR047RTREd2xHSTtJQVVJO0lBQ0E7SUFDQTtJQUNBO0lBQ0E7OztBQUdKO0VBQ0U7RUFDQTs7QTVEdG1HTjtFNERvbUdJO0lBSUk7Ozs7QUFPVjtFQUNFOztBQUNBO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7RUFjQTtFQUNBO0VBQ0E7OztBQUlKO0VBQ0U7RUFDQTs7QUFDQTtFQUNFOztBQUVGO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7O0E1RHhwR0Y7RTREb3BHQTtJQU1JOzs7QTVEMXBHSjtFNEQ2cEdBO0lBR0k7OztBQUVGO0VBQ0U7RTVEejBGSjtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7QUFoV0E7RTREa3FHRTtJNUQxMUZGO0lBQ0E7SUFDQTtJQUNBO0lBQ0E7SUFDQTtJQUNBOzs7QTREMDFGSTtFQUNFOztBQUdKO0VBQ0U7O0FBRUU7RUFDRTs7QTVEaHJHUjtFNEQ0cUdFO0lBUUk7SUFDQTs7O0FBR0o7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOztBNUR0ckdKO0U0RDhxR0U7SUFVSTs7O0FBRUY7RUFDRTtFQUNBO0VBQ0E7RUFFQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0FBQ0E7RUFDRTtFQUNBO0VBQ0E7RUFDQTs7QTVEOXNHUjtFNEQwc0dNO0lBT0k7OztBQUdKO0VBQ0U7RUFDQTs7QUFLUjtFQUNFO0VBQ0E7O0E1RGx1R0Y7RTREZ3VHQTtJQUlJOzs7QUFFRjtFQUNFOztBNUR2dUdKO0U0RHN1R0U7SUFHSTs7O0FBSU47RUFDRTtFQUNBO0VBQ0E7O0E1RHR1R0Y7RTREbXVHQTtJQUtJOzs7QUFFRjtFQUNFOztBNURydkdKO0U0RG92R0U7SUFHSTs7O0FBRUY7RUFDRTs7QTVEcnZHTjtFNERvdkdJO0lBR0k7OztBQUlOO0VBQ0U7RUFDQTtFQUNBOztBNUR6dkdKO0U0RHN2R0U7SUFNSTtJQUNBO0lBQ0E7OztBQUdGO0VBQ0U7O0E1RDV3R047RTREMndHSTtJQUdJOzs7QTVEcHdHUjtFNERpd0dJO0lBTUk7OztBQUdKO0U1RHRoR0o7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RTREa2hHTTs7QUFFRjtFQUNFOztBNUR6eEdOO0U0RHd4R0k7SUFHSTs7O0FBSUY7RUFDRTs7QUFJRjtFQUNFOztBQUdKO0VBQ0U7O0FBQ0E7RUFDRTs7QUFLUjtBQUFBO0VBRUU7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOztBQUVGO0FBQ0U7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7O0FBb0JGO0VBQ0U7RUFDQTtBQWlDQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7O0E1RC8yR0Y7RTRENDBHQTtJQUlJOzs7QTVEaDFHSjtFNEQ0MEdBO0lBT0k7OztBQUVGO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7QTVEbjJHSjtFNERxMUdFO0lBZ0JJO0lBQ0E7SUFDQTs7O0FBRUY7RUFwQkY7SUFxQkk7SUFDQTtJQUNBOzs7O0FBMkJSO0FBWUU7QUFLQTtBQU1BOztBQXRCQTtFQUNFO0lBQ0U7SUFDQTs7RUFFRjtJQUNFO0lBQ0E7OztBQUtKO0VBQ0U7O0FBSUY7RUFDRTtFQUNBOztBQUlGO0VBQ0U7O0FBRUY7RUFDRTtFQUNBOztBQUNBO0VBQ0U7RUFDQTtFQUNBO0VBY0E7RUFDQTtFQUNBO0VBQ0E7O0FBQ0E7RUFyQkY7SUFzQkk7OztBQUdKO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOztBQUNBO0VBVkY7SUFXSTtJQUNBO0lBQ0E7SUFDQTtJQUNBOzs7QUFFRjtFQUVFO0VBQ0E7O0FBRUY7RUFDRTtFQUNBO0VBQ0E7O0FBQ0E7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOztBQUNBO0VBVEY7SUFVSTs7OztBQVFaO0VBQ0U7RUFHQTtFQUNBOztBNURwL0dBO0U0RCsrR0Y7SUFPSTtJQUNBOzs7O0FBSUo7RUFDRTs7QUFDQTtFQUNFOztBQUVGO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7O0FBQ0E7RUFMRjtJQU1JO0lBQ0E7SUFDQTs7O0FBR0o7RUFDRTtFQUNBOztBQUNBO0VBQ0U7RUFDQTs7QUFHSjtFQUNFOztBQUVGO0VBQ0U7O0FBRUY7RUFDRTs7QUFFRjtFQUNFOztBQUVGO0VBQ0U7RUFDQTs7QUFFRjtFQUNFOztBQUtFO0VBREY7SUFFSTs7O0FBS0o7RUFDRTtJQUNFOzs7O0FBT047RUFDRTtFQUNBOztBQUVGO0U1RGx1R0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0FBaFdBO0U0RDRqSEE7SUFHSTtJQUNBO0lBQ0E7SUFDQTs7OztBNURsa0hKO0U0RHVrSEY7SUFFSTs7O0FBR0E7RUFDRTs7QUFHSjtFQUNFOztBQUlFO0VBQ0U7RUFDQTs7QUFDQTtFQUNFO0VBQ0E7O0FBQ0E7RUFDRTtJQUNFOztFQUNBO0lBQ0U7OztBQUlOO0VBQ0U7SUFDRTs7O0FBS047RUFDRTtFQUNBO0VBQ0E7RUFDQTs7QUFFRjtFQUNFO0VBR0E7RUFDQTtFQUNBO0VBQ0E7O0FBRUY7RUFDRTtFQUNBOztBQUNBO0VBQ0U7RUFDQTs7QUFFRjtFQUNFO0VBQ0E7RUFDQTtFQUdBOztBQUVFO0VBQ0U7O0FBRUY7RUFDRTs7QUFHSjtFQUNFOztBQU9aO0VBQ0U7RUFDQTtFQUNBO0FBNGVBO0FBQUE7QUFBQTtBQUFBO0FBQUE7O0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7O0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTs7QUEzZUE7RUFDRTs7QTVENXBISjtFNEQycEhFO0lBR0k7OztBQUdKO0VBQ0U7O0FBRUY7RUFDRTtFQUNBO0VBQ0E7O0FBRUY7QUFBQTtFQUVFOztBQUVGO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7O0FBQ0E7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7QUFHSjtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0FBRUY7RUFDRTtBQUNBO0FBQUE7RUFFQTs7QUFFRjtFQUNFO0VBQ0E7O0FBRUY7RUFDRTs7QUFDQTtFQUNFOztBQUVFO0VBQ0U7RUFDQTtFQUNBOztBQUdKO0VBQ0U7O0E1RDl0SFI7RTRENnRITTtJQU9JOzs7QUFFRjtFQUNFO0VBQ0E7RUFJQTtFQUNBO0VBQ0E7O0FBQ0E7RUFURjtJQVVJOzs7QUFHSjtFQUNFOztBQUNBO0VBRkY7SUFHSTs7O0FBRUY7RUFMRjtJQU1JOzs7QUFJTjtFQUNFOztBNUQ5dkhSO0U0RDZ2SE07SUFHSTtJQUNBOzs7QUFHSjtFQUNFOztBNURyd0hSO0U0RG93SE07SUFHSTs7O0FBR0o7RUFDRTtFQUNBO0VBQ0E7O0FBRUY7RUFDRTs7QTVEaHhIUjtFNEQrd0hNO0lBSUk7OztBQUVGO0VBQ0U7O0FBQ0E7RUFDRTs7QUFLUjtFQUNFO0VBQ0E7RUFDQTs7QUFFQTtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFFQTtFQUNBO0VBQ0E7O0FBQ0E7RUFWRjtJQVdJO0lBQ0E7OztBQUlGO0VBQ0U7RUFHQTtFQUNBO0VBQ0E7O0FBRUY7RUFDRTs7QUFJTjtFQUNFO0VBQ0E7RUFDQTs7QUFDQTtFQUNFO0VBR0E7RUFDQTs7QUFFRjtFQUNFOztBQUNBO0VBQ0U7O0FBR0E7RUFDRTs7QUFLUjtFQUNFO0VBQ0E7O0FBQ0E7RUFDRTtFQUNBOztBQUNBO0VBQ0U7RUFDQTs7QUFDQTtFQUNFO0VBQ0E7O0E1RGwxSFo7RTREZzFIVTtJQUlJO0lBQ0E7OztBQU1WO0VBQ0U7RUFDQTs7QUFFQTtFQUNFO0VBQ0E7O0FBQ0E7RUFDRTs7QUFJRjtFQUNFOztBQUVGO0VBQ0U7RUFDQTtFQUNBOztBQUdKO0VBQ0U7RUFDQTs7QUFFRTtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0FBQ0E7RUFDRTs7QUFDQTtFQUNFO0VBQ0E7RUFHQTtFQUNBOztBQU9KO0VBQ0U7O0E1RDE0SGQ7RTREeTRIWTtJQUdJOzs7QTVENTRIaEI7RTREdzRIVTtJQVFJO0lBQ0E7OztBQUlGO0VBQ0U7RUFDQSxPN0RsNUhGOztBNkRvNUhFO0VBQ0U7RUFHQTs7QUFFQTtFQUNFOztBNURoNkhsQjtFNERvNkhvQjtJQUNFOzs7QUFVbEI7RUFDRTtFQUNBO0VBQ0E7O0FBRUU7RUFERjtJQUVJOzs7QUFHSjtFQUNFOztBQUlGO0VBQ0U7RUFDQTtFQUdBOztBQUNBO0VBTkY7SUFPSTs7O0FBR0o7RUFDRTtFQUNBO0VBQ0E7O0FBR0E7RUFERjtJQUVJOzs7QUFHSjtFQUNFOztBQUVFO0VBREY7SUFFSTs7O0FBRUY7RUFDRTs7QUFFRjtFQUNFOztBQUdBO0VBREY7SUFFSTs7O0FBSUY7RUFERjtJQUVJOzs7QUFPUjtFQUNFLE83RHYrSEk7O0E2RHkrSE47RUFDRTtFQUVBO0VBQ0E7O0FBQ0E7RUFMRjtJQU1JO0lBR0E7OztBQUlKO0VBQ0U7O0FBQ0E7RUFDRTs7QUFDQTtFQUlFOztBQUVGO0VBQ0U7O0FBSU47RUFDRTs7QUFFRTtFQUNFOztBQUtSO0VBQ0U7RUFDQTs7QUFDQTtFQUNFOztBQUVGO0VBQ0U7O0FBQ0E7RUFDRTtJQUNFOztFQUVGO0lBQ0U7OztBQUdKO0VBQ0U7RUFHQTtFQUNBOztBQUNBO0VBQ0U7O0FBSU47RUFDRTs7QUFDQTtFQUNFOztBQUVFO0VBREY7SUFFSTs7O0FBRUY7RUFDRTs7QUFJTjtFQUNFOztBQUlOO0FBQUE7RUFFRTtFQWNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0FBQ0E7RUFyQkY7QUFBQTtJQXNCSTs7O0FBR0o7RUFDRTtFQUNBOztBQU1FO0VBQ0U7RUFJQTtFQUNBO0VBQ0E7O0FBTUY7RUFDRTs7QUFLSjtFQUNFOztBNUQvbklSO0U0RDhuSU07SUFHSTs7O0FBeUJSO0VBQ0U7QUFDQTtFQUNBO0FBQ0E7RUFDQTs7QTVEMXBJSjtFNERxcElFO0lBT0k7OztBQU1GO0VBQ0U7O0FBSUo7RUFDRTtFQUNBOztBQUlGO0VBQ0U7O0FBQ0E7RUFDRTs7QUFHSjtBQUFBO0VBRUU7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0FBQ0E7QUFBQTtFQUNFOztBQUVGO0FBQUE7RUFDRTtFQUNBOztBQUVGO0FBQUE7RUFDRTs7QUFFRjtBQUFBO0VBQ0U7RUFDQTtFQUNBOztBQUNBO0FBQUE7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7QTVEL3RJUjtFNERzdUlJO0lBQ0U7SUFDQTs7RUFFRjtJQUNFOztFQUNBO0FBQUE7SUFFRTs7RUFFRjtJQUNFO0lBQ0E7SUFDQTs7RUFDQTtJQUNFO0lBQ0E7SUFDQTs7RUFHSjtJQUNFOztFQUNBO0lBQ0U7SUFDQTs7RUFFRTtJQUNFO0lBQ0E7OztBQVFkO0VBRUk7SUFDRTtJQUNBO0lBQ0E7Ozs7QUFVSjtFQUpGO0lBS0k7OztBQUlGO0VBQ0U7SUFDRTs7RUFFRjtJQUNFOzs7QUFNRjtFQUNFOztBQUVFO0VBQ0U7O0FBRUY7RUFDRTs7QUFLUjtFQUNFO0lBQ0U7OztBQU9BO0VBQ0U7O0FBSU47RUFDRTtJQUNFOzs7QUFLSjtFQUNFO0lBQ0U7O0VBRUY7SUFDRTs7RUFFRjtJQUNFOzs7QUFLSjtFQUNFO0lBQ0U7O0VBRUY7SUFDRTs7RUFFRjtJQUNFOzs7QUFLSjtFQUNFOzs7QUFNRjtFQUNFOztBQUtBO0VBREY7SUFFSTs7O0FBTUY7RUFERjtJQUVJOzs7QUFLSjtFQUNFO0lBQ0U7SUFDQTtJQUNBOztFQUVGO0lBQ0U7O0VBQ0E7SUFDRTtJQUNBOztFQUdKO0lBQ0U7O0VBQ0E7SUFDRTs7OztBQU9WO0VBc0NFO0VBQ0E7O0FBdENBO0VBQ0U7RUFDQTtFQUNBO0VBRUE7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7QUFFRjtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOztBQUNBO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7QUFRRjtFQUNFO0VBQ0E7O0FBQ0E7RUFDRTs7QUFHSjtFQUNFO0VBQ0E7O0FBQ0E7RUFDRTs7QUFNRjtFQUNFO0VBQ0E7O0FBTUE7RUFDRTs7QUFPSjtFQUNFOztBQU9BO0VBQ0U7O0FBS1I7RUFDRTs7QUFDQTtFQUNFOztBQUNBO0VBRkY7SUFHSTs7O0FBRUY7RUFDRTtFQUdBO0VBQ0E7RUFFQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOztBQUNBO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOztBQUVGO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOztBQUVGO0VBbENGO0lBbUNJO0lBQ0E7OztBQU9GO0VBRUU7O0FBRUY7RUFDRTtFQUNBOztBQUVGO0VBQ0U7OztBQU9WO0FBNEdFO0FBT0E7QUFDQTs7QUFsSEU7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBOztBQUNBO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOztBQUlOO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUVBO0VBQ0E7RUFJQTtFQUVBO0VBQ0E7O0FBR0E7RUFDRTtFQUVBO0VBQ0E7RUFDQTtFQUNBOztBQUNBO0VBQ0U7O0FBU047RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOztBQUNBO0VBQ0U7O0FBRUY7RUFDRTs7QUFFRjtFQUNFO0VBQ0E7O0FBQ0E7RUFDRTs7QUFHQTtFQUNFOztBQUlOO0VBQ0U7O0FBQ0E7RUFDRTs7QUFHQTtFQUNFOztBNUQ3b0pSO0U0RG1wSkk7SUFDRTs7RUFFRjtJQUNFOzs7QUFNTjtFQUNFO0FBQ0E7RUFDQTs7QUFNRjtFQUNFO0VBQ0E7RUFFQTtFQUNBOzs7QUFJRjtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0FBQ0E7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7OztBQU9GO0VBQ0U7O0FBR0o7RUFDRTtFQUNBO0VBQ0E7RUFDQTs7QUFHQTtFQUNFO0VBQ0E7O0FBSUU7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7QUFFQTtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7QUFLQTtFQUNFOztBQUNBO0VBR0U7O0FBS0o7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7QUFDQTtFQUNFOztBQU9SO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0FBQ0E7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0FBTUY7RUFDRTtFQUNBO0VBQ0E7RUFDQTtF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dUJJO0lBQ0E7OztBQUVGO0VBMUJGO0lBMkJJO0lBQ0E7SUFDQTtJQUNBO0lBQ0E7SUFDQTtJQUNBOztFQUNBO0lBQ0U7O0VBQ0E7SUFDRTs7O0FBT1I7RUFERjtJQUVJOzs7QUFNSjtFQUNFO0lBQ0U7SUFDQTtJQUNBOztFQUVGO0lBQ0U7SUFDQTtJQUNBO0lBQ0E7OztBNUQ5K0xKO0U0RGsvTEE7SUFFSTs7RUFDQTtJQUNFOzs7QUFHSjtFQVBGO0lBUUk7O0VBQ0E7SUFDRTs7RUFDQTtJQUNFO0lBQ0E7OztBQUlOO0VBakJGO0lBa0JJO0lBQ0E7SUFDQTs7O0FBS0Y7RUFERjtJQUVJOzs7QTVENWdNSjtFNEQwZ01BO0lBS0k7OztBQUVGO0VBUEY7SUFRSTtJQUNBO0lBQ0E7OztBQUlGO0VBQ0U7RUFDQTs7QUFDQTtFQUhGO0lBSUk7SUFDQTs7O0FBTUo7RUFDRTtJQUNFO0lBQ0E7SUFDQTs7O0FBS047RUFDRTtJQUNFO0lBQ0E7O0VBR0Y7SUFDRTtJQUNBOzs7O0FBS047QUFLRTtFQUNFOztBQUVGO0VBQ0U7RUFDQTtFQUNBOztBQUVGO0VBQ0U7SUFDRTs7RUFFRjtJQUNFOztFQUVGO0lBQ0U7SUFDQTs7O0FBSUo7RUFDRTtJQUNFOzs7O0FBTUo7RUFDRTs7QUFFRjtFQUNFOztBQUVGO0VBQ0UiLCJmaWxlIjoiZmlsZTovLy9Vc2Vycy9qdWxpZXRhZGVsZ2Fkby9Eb2N1bWVudHMvR2l0aHViL3E0LWJsYW5rX3RlbXBsYXRlL2Nzcy9kaXNjb3ZlcnlzaWx2ZXIyMDI2Y29ycC9nbG9iYWxfbWFzdGVyLmNzcyJ9 */