/*Figtree Font import*/
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');

@font-face {
  font-family: "Helvetica Neue LT W04";
  font-style: normal;
  font-weight: 200;
  src: url("../fonts/HelveticaNeueLTW04_31488870_987a786f.woff2") format("woff2");
}

@font-face {
  font-family: "Helvetica Neue LT W04";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/HelveticaNeueLTW04_41488882_2d984993.woff2") format("woff2");
}

@font-face {
  font-family: "Helvetica Neue LT W04";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/HelveticaNeueLTW04_65Md_fb55f958.woff2") format("woff2");
}

@font-face {
  font-family: "Helvetica Neue LT W04";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/HelveticaNeueLTW04_71488918_5e8b5661.woff2") format("woff2");
}

/*==================================
------------ 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;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

html {
  font-size: 10px;
}

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;
  color: #333132;
  /* font-family: "Helvetica Neue LT W04", sans-serif; */
  font-family: "Figtree", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.66667;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: none;
}

/*---------- TYPOGRAPHY ----------*/
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5 {
  font-weight: 500;
}

h1,
.h1 {
  font-size: 5.6rem;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
}

@media only screen and (max-width: 768px) {
  h1,
  .h1 {
      font-size: 3.6rem;
  }
}

h2,
.h2 {
  font-size: 4.6rem;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
  word-wrap: break-word;
}

h3,
.h3 {
  font-size: 3.6rem;
  line-height: 1.2;
  margin: 10px 0 16px 0;
}

h4,
.h4 {
  font-size: 3rem;
  line-height: 1.33333;
  margin-top: 16px;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
  font-weight: 600;
}

h5,
.h5 {
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: 12.8px;
  letter-spacing: 0.01em;
}

h6,
.h6 {
  font-size: 2.2rem;
  line-height: 1.54545;
  margin-bottom: 12.8px;
  letter-spacing: 0.01em;
  font-weight: 500;
}

p {
  margin: 0 0 15px;
}

a {
  text-decoration: none;
  color: #ff5000;
  transition: color 0.3s ease-in-out;
}

a:hover {
  text-decoration: underline;
}

/*------------ COMMON ------------*/
img {
  max-width: 100%;
  vertical-align: top;
}

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;
}

input[type="checkbox"] + label:before,
input[type="radio"] + label:before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 1px solid #333132;
  margin-right: 8px;
  line-height: 1;
}

input[type="checkbox"]:checked + label:before,
input[type="radio"]:checked + label:before {
  width: 12px;
  height: 12px;
  border-width: 4px;
}

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 -------*/
.input,
.textarea,
.dropdown,
.upload,
.submit,
.button {
  display: inline-block;
  max-width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 14.5px 20px;
  background: transparent;
  border: 1px solid #333132;
  color: #333132;
  border-radius: 0;
  /* font-family: "Helvetica Neue LT W04", sans-serif; */
  font-family: "Figtree", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
}

.input,
.dropdown,
.upload,
.submit {
  height: 49px;
}

.input::-ms-clear,
.textarea::-ms-clear,
.dropdown::-ms-clear,
.upload::-ms-clear,
.submit::-ms-clear,
.button::-ms-clear {
  display: none;
}

.submit,
.button,
.upload,
.dropdown {
  cursor: pointer;
}

.textarea {
  width: 100%;
  resize: vertical;
}

.upload {
  line-height: 0;
}

.button {
  transition: 0.3s ease-in-out;
  padding: 0 28px 5px 0;
  position: relative;
  border: none;
  font-size: 1.6rem;
  line-height: 1.1875;
  letter-spacing: 0.01em;
  font-weight: 500;
}

.button:before {
  content: "";
  width: calc(100% - 10px);
  height: 2px;
  position: absolute;
  transition: width 0.3s ease-in-out;
  left: 0;
  bottom: 0;
  background-color: #ff5000;
}

.button:hover {
  text-decoration: none;
  color: #ff5000;
}

.button:hover:before {
  width: 100%;
}

.button:after {
  content: "\e917";
  font-family: "q4-icons";
  font-size: 9.5px;
  position: absolute;
  right: 10px;
  bottom: 8px;
  line-height: 1;
  letter-spacing: 0;
  transition: 0.3s ease-in-out;
}

.button:hover:after {
  right: 0;
}

.button.module_reminder-button,
.button--outline,
.button.module-subscribe_submit-button {
  border: 1px solid #ff5000;
  background: transparent;
  padding: 14px 28px;
  transition: 0.3s ease-in-out;
  text-transform: uppercase;
  font-size: 1.6rem;
  line-height: 1.1875;
  letter-spacing: 0.06em;
}

.button.module_reminder-button,
.button--outline {
  height: 49px;
}

.button.module_reminder-button:after,
.button.module_reminder-button:before,
.button--outline:after,
.button--outline:before,
.button.module-subscribe_submit-button:after,
.button.module-subscribe_submit-button:before {
  display: none;
}

.button.module_reminder-button.module_reminder-button:hover,
.button.module_reminder-button:hover,
.button.module_reminder-button.module-subscribe_submit-button:hover,
.button--outline.module_reminder-button:hover,
.button--outline:hover,
.button--outline.module-subscribe_submit-button:hover,
.button.module-subscribe_submit-button.module_reminder-button:hover,
.button.module-subscribe_submit-button:hover,
.button.module-subscribe_submit-button.module-subscribe_submit-button:hover {
  color: #fff;
  background: #ff5000;
}

.button--inverted {
  color: #ff5000;
}

.button--inverted:hover {
  color: #333132;
}

.button--inverted.js--disabled {
  color: #ff5000;
}

.button--dark {
  color: #fff;
}

.button--dark:hover {
  color: #fff;
}

.button--dark:hover:before {
  background: #fff;
}

.button--yellow {
  background-color: #ff5000;
  border-color: #ff5000;
  color: #fff;
}

.button--yellow:hover {
  background-color: #ff5000;
  border-color: #ff5000;
  color: #fff;
  outline-color: #ff5000 !important;
}

.button--meeting {
  padding: 10px 15px;
}

.button--meeting:after,
.button--meeting:before {
  display: none;
}

.button--more {
  padding: 5px 5px 46px;
}

.button--more.js--active {
  display: none;
}

.button--more:before {
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 100%;
  border: 1px solid #ff5000;
  position: absolute;
  transition: background 0.3s ease-in;
  bottom: 0;
  top: auto;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  background-color: transparent;
}

.button--more:hover {
  text-decoration: none;
  color: #ff5000;
}

.button--more:hover:before {
  background: #ff5000;
  width: 24px;
}

.button--more:after {
  content: "\e918";
  font-family: "q4-icons";
  font-size: 1.1rem;
  position: absolute;
  left: 50%;
  top: auto;
  right: auto;
  transform: translateX(-50%) rotate(90deg);
  bottom: 16px;
  z-index: 2;
  color: #333132;
}

.dark .button--outline {
  border-color: #fff;
  color: #fff;
}

.dark .button--outline:hover {
  background-color: #fff;
  color: #ff5000;
}

.dropdown {
  padding: 15.5px 50px 15.5px 20px;
  background: transparent url("../design/svg/dropdown-arrow-down.svg") no-repeat right 20px center;
  background-size: 11px 7px;
  min-width: 120px;
  border: 1px solid #333132;
  transition: border 0.3s ease-in-out;
  font-weight: 600;
}

.dropdown:hover {
  box-shadow: 0 0 0px 1px #000;
}

.dropdown::-ms-expand {
  display: none;
}

/*------------ TABLES ------------*/
.table {
  width: 100%;
  margin: 16px 0;
  font-size: 16px;
  line-height: 1.67;
  letter-spacing: 0.01em;
}

.table thead {
  border-bottom: 1px solid #ac968b;
}

.table thead th {
  text-align: center;
  font-weight: 500;
}

.table thead th:first-child {
  text-align: left;
}

.table th,
.table td,
.table tr > .grid_col {
  margin: 0;
  padding: 11px 8px;
  text-align: center;
  vertical-align: middle;
}

.table tbody td:first-child {
  text-align: left;
}

.table tbody {
  border-bottom: 1px solid #ac968b;
}

.table tbody tr + tr {
  border-top: 1px solid #ac968b;
}

.table-wrapper {
  overflow-x: auto;
}

.table--left-header thead th:first-child {
  text-align: left;
}

.table--left-header tbody tr td:first-child {
  font-weight: 400;
}

.table--small thead {
  background-color: transparent;
  border-bottom: none;
}

.table--small thead th {
  text-align: center;
}

.table--small tr:nth-child(even) {
  background-color: transparent;
}

.table--small th,
.table--small td {
  margin: 0;
  padding: 14.5px 3px;
}

.table--small tbody {
  border-bottom: none;
}

.table--small th {
  color: #fff;
  font-weight: 600;
  padding: 0;
  border: 1px solid #ff5000;
}

.table--small th span {
  background-color: #ff5000;
  display: block;
  padding: 3px 30px;
  position: relative;
}

.table--small th:not(:last-child) span:after {
  content: "";
  top: 0;
  bottom: 0;
  right: -9px;
  width: 20px;
  background: #ff5000;
  z-index: 1;
  position: absolute;
}

.table--small th:not(:last-child) 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: "\e910";
  position: absolute;
  right: -23px;
  top: -3px;
  bottom: 0;
  font-size: 4.2rem;
  z-index: 2;
}

.table--small tbody tr {
  border-top: 1px solid #e4e4e4;
}

.table--small tbody td {
  font-weight: 500;
}

.table--small tbody td:first-child {
  text-align: center;
}

.table--small .text-left {
  font-weight: 400;
  text-align: left;
}

@media only screen and (max-width: 768px) {
  .table--small {
      font-size: 1.4rem;
  }

  .table--small th span {
      padding: 6px 20px;
  }
}

.table--portfolio {
  font-size: 1.4rem;
}

.table--portfolio tbody tr + tr {
  border-top: none;
}

.table--portfolio th,
.table--portfolio td,
.table--portfolio tr > .grid_col {
  margin: 0;
  padding: 5px 13px 5px 18px;
  text-align: right !important;
}

.table--portfolio .spacing td {
  padding: 10px 0 !important;
}

.table--portfolio tbody td:first-child {
  font-weight: 400;
  text-align: left !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  font-size: 1.2rem;
  width: 28%;
}

.table--small-no-border-first th:first-child {
  border: none;
}

.table--small-no-border-first tbody td:first-child {
  text-align: left;
}

.table--small-border-bottom tbody tr {
  border-top: none;
  border-bottom: 1px solid #e4e4e4;
}

.table--headless tr:nth-child(even) {
  background-color: transparent;
}

.table--headless tr:nth-child(odd) {
  background-color: #f3f3f3;
}

.table--headless tr:first-child {
  background-color: #ff5000;
  text-align: left;
}

.table--headless tr:first-child td {
  color: #fff;
}

@media only screen and (max-width: 768px) {
  .table--responsive thead {
      display: none;
  }

  .table--responsive tbody {
      border-top: 2px solid #ac968b;
      border-bottom: 2px solid #ac968b;
  }

  .table--responsive td {
      padding-top: 5px;
      padding-bottom: 5px;
      display: block;
      text-align: left !important;
  }

  .table--responsive td[data-heading]:before {
      content: attr(data-heading) ": ";
      font-weight: 700;
  }

  .table--responsive .spacing {
      display: none;
  }

  .table--responsive.table--portfolio tbody td {
      padding-left: 5px !important;
  }
}

/*--------- SPECIAL BOXES --------*/
.code {
  margin: 32px 0;
  padding: 20px 15px;
  background: #f3f3f3;
  border-left: 3px solid rgba(255, 80, 0, 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: #f3f3f3;
  border-left: 3px solid rgba(68, 181, 157, 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";
}

/*==================================
-------- 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: "\eecd";
  font-size: 16px;
  vertical-align: middle;
  display: inline-block;
  padding-right: 10px;
}

.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: "\e933";
  padding-right: 10px;
}

.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: "\e930";
}

.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: "\e937";
}

.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: "\e900";
}

.q4icons .module_link-webcast .q4icons_icon:before,
.q4icons .module_webcast-link .q4icons_icon:before {
  content: "\e930";
}

.q4icons .module_link-news .q4icons_icon:before,
.q4icons .module_link-news-sv .q4icons_icon:before
{
  content: "\e932";
}

.q4icons .module_link-transcript .q4icons_icon:before {
  content: "\e92f";
}

.q4icons .module_presentation-link .q4icons_icon:before,
.q4icons .module-presentation_document .q4icons_icon:before,
.q4icons .module_link-presentation .q4icons_icon:before {
  content: "\e931";
}

.q4icons .module_link-file .q4icons_icon:before {
  content: "\eb81";
}

.q4icons .module_link-sec .q4icons_icon:before {
  content: "\e9bb";
}

.q4icons .module_link-sec[href$=".pdf"] .q4icons_icon:before {
  content: "\ef3e";
}

.q4icons .module_link-sec[href$=".rtf"] .q4icons_icon:before {
  content: "\ef40";
}

.q4icons .module_link-sec[href$=".xls"] .q4icons_icon:before {
  content: "\ef41";
}

.q4icons .module_link-sec[href$=".zip"] .q4icons_icon:before {
  content: "\e9b9";
}

.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: "\e923";
}

.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: "\e91d";
}

/*==================================
----------- TOAST GRID -----------
==================================*/
.grid {
  list-style: none;
  margin-left: -40px;
}

.grid--flex {
  margin-left: -40px;
  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--1-of-1,
.grid_col--2-of-2,
.grid_col--3-of-3,
.grid_col--4-of-4,
.grid_col--5-of-5,
.grid_col--6-of-6,
.grid_col--7-of-7,
.grid_col--8-of-8,
.grid_col--12-of-12 {
  width: 100%;
}

.grid_col--1-of-2,
.grid_col--2-of-4,
.grid_col--3-of-6,
.grid_col--4-of-8,
.grid_col--6-of-12 {
  width: 50%;
}

.grid_col--1-of-3,
.grid_col--2-of-6,
.grid_col--4-of-12 {
  width: 33.33333%;
}

.grid_col--2-of-3,
.grid_col--4-of-6,
.grid_col--8-of-12 {
  width: 66.66667%;
}

.grid_col--1-of-4,
.grid_col--2-of-8,
.grid_col--3-of-12 {
  width: 25%;
}

.grid_col--3-of-4,
.grid_col--6-of-8,
.grid_col--9-of-12 {
  width: 75%;
}

.grid--flex .grid_col--1-of-1,
.grid--flex .grid_col--2-of-2,
.grid--flex .grid_col--3-of-3,
.grid--flex .grid_col--4-of-4,
.grid--flex .grid_col--5-of-5,
.grid--flex .grid_col--6-of-6,
.grid--flex .grid_col--7-of-7,
.grid--flex .grid_col--8-of-8,
.grid--flex .grid_col--12-of-12 {
  width: auto;
  flex-basis: 100%;
  max-width: 100%;
}

.grid--flex .grid_col--1-of-2,
.grid--flex .grid_col--2-of-4,
.grid--flex .grid_col--3-of-6,
.grid--flex .grid_col--4-of-8,
.grid--flex .grid_col--6-of-12 {
  width: auto;
  flex-basis: 50%;
  max-width: 50%;
}

.grid--flex .grid_col--1-of-3,
.grid--flex .grid_col--2-of-6,
.grid--flex .grid_col--4-of-12 {
  width: auto;
  flex-basis: 33.33333%;
  max-width: 33.33333%;
}

.grid--flex .grid_col--2-of-3,
.grid--flex .grid_col--4-of-6,
.grid--flex .grid_col--8-of-12 {
  width: auto;
  flex-basis: 66.66667%;
  max-width: 66.66667%;
}

.grid--flex .grid_col--1-of-4,
.grid--flex .grid_col--2-of-8,
.grid--flex .grid_col--3-of-12 {
  width: auto;
  flex-basis: 25%;
  max-width: 25%;
}

.grid--flex .grid_col--3-of-4,
.grid--flex .grid_col--6-of-8,
.grid--flex .grid_col--9-of-12 {
  width: auto;
  flex-basis: 75%;
  max-width: 75%;
}

.grid_col--push-1-of-1,
.grid_col--push-2-of-2,
.grid_col--push-3-of-3,
.grid_col--push-4-of-4,
.grid_col--push-5-of-5,
.grid_col--push-6-of-6,
.grid_col--push-7-of-7,
.grid_col--push-8-of-8,
.grid_col--push-12-of-12 {
  margin-left: 100%;
}

.grid_col--push-1-of-2,
.grid_col--push-2-of-4,
.grid_col--push-3-of-6,
.grid_col--push-4-of-8,
.grid_col--push-6-of-12 {
  margin-left: 50%;
}

.grid_col--push-1-of-3,
.grid_col--push-2-of-6,
.grid_col--push-4-of-12 {
  margin-left: 33.33333%;
}

.grid_col--push-2-of-3,
.grid_col--push-4-of-6,
.grid_col--push-8-of-12 {
  margin-left: 66.66667%;
}

.grid_col--push-1-of-4,
.grid_col--push-2-of-8,
.grid_col--push-3-of-12 {
  margin-left: 25%;
}

.grid_col--push-3-of-4,
.grid_col--push-6-of-8,
.grid_col--push-9-of-12 {
  margin-left: 75%;
}

.grid_col--pull-1-of-1,
.grid_col--pull-2-of-2,
.grid_col--pull-3-of-3,
.grid_col--pull-4-of-4,
.grid_col--pull-5-of-5,
.grid_col--pull-6-of-6,
.grid_col--pull-7-of-7,
.grid_col--pull-8-of-8,
.grid_col--pull-12-of-12 {
  margin-left: -100%;
}

.grid_col--pull-1-of-2,
.grid_col--pull-2-of-4,
.grid_col--pull-3-of-6,
.grid_col--pull-4-of-8,
.grid_col--pull-6-of-12 {
  margin-left: -50%;
}

.grid_col--pull-1-of-3,
.grid_col--pull-2-of-6,
.grid_col--pull-4-of-12 {
  margin-left: -33.33333%;
}

.grid_col--pull-2-of-3,
.grid_col--pull-4-of-6,
.grid_col--pull-8-of-12 {
  margin-left: -66.66667%;
}

.grid_col--pull-1-of-4,
.grid_col--pull-2-of-8,
.grid_col--pull-3-of-12 {
  margin-left: -25%;
}

.grid_col--pull-3-of-4,
.grid_col--pull-6-of-8,
.grid_col--pull-9-of-12 {
  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.66667%;
}

.grid--flex .grid_col--1-of-6 {
  width: auto;
  flex-basis: 16.66667%;
  max-width: 16.66667%;
}

.grid_col--push-1-of-6 {
  margin-left: 16.66667%;
}

.grid_col--pull-1-of-6 {
  margin-left: -16.66667%;
}

.grid_col--5-of-6 {
  width: 83.33333%;
}

.grid--flex .grid_col--5-of-6 {
  width: auto;
  flex-basis: 83.33333%;
  max-width: 83.33333%;
}

.grid_col--push-5-of-6 {
  margin-left: 83.33333%;
}

.grid_col--pull-5-of-6 {
  margin-left: -83.33333%;
}

.grid_col--1-of-7 {
  width: 14.28571%;
}

.grid--flex .grid_col--1-of-7 {
  width: auto;
  flex-basis: 14.28571%;
  max-width: 14.28571%;
}

.grid_col--push-1-of-7 {
  margin-left: 14.28571%;
}

.grid_col--pull-1-of-7 {
  margin-left: -14.28571%;
}

.grid_col--2-of-7 {
  width: 28.57143%;
}

.grid--flex .grid_col--2-of-7 {
  width: auto;
  flex-basis: 28.57143%;
  max-width: 28.57143%;
}

.grid_col--push-2-of-7 {
  margin-left: 28.57143%;
}

.grid_col--pull-2-of-7 {
  margin-left: -28.57143%;
}

.grid_col--3-of-7 {
  width: 42.85714%;
}

.grid--flex .grid_col--3-of-7 {
  width: auto;
  flex-basis: 42.85714%;
  max-width: 42.85714%;
}

.grid_col--push-3-of-7 {
  margin-left: 42.85714%;
}

.grid_col--pull-3-of-7 {
  margin-left: -42.85714%;
}

.grid_col--4-of-7 {
  width: 57.14286%;
}

.grid--flex .grid_col--4-of-7 {
  width: auto;
  flex-basis: 57.14286%;
  max-width: 57.14286%;
}

.grid_col--push-4-of-7 {
  margin-left: 57.14286%;
}

.grid_col--pull-4-of-7 {
  margin-left: -57.14286%;
}

.grid_col--5-of-7 {
  width: 71.42857%;
}

.grid--flex .grid_col--5-of-7 {
  width: auto;
  flex-basis: 71.42857%;
  max-width: 71.42857%;
}

.grid_col--push-5-of-7 {
  margin-left: 71.42857%;
}

.grid_col--pull-5-of-7 {
  margin-left: -71.42857%;
}

.grid_col--6-of-7 {
  width: 85.71429%;
}

.grid--flex .grid_col--6-of-7 {
  width: auto;
  flex-basis: 85.71429%;
  max-width: 85.71429%;
}

.grid_col--push-6-of-7 {
  margin-left: 85.71429%;
}

.grid_col--pull-6-of-7 {
  margin-left: -85.71429%;
}

.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.33333%;
}

.grid--flex .grid_col--1-of-12 {
  width: auto;
  flex-basis: 8.33333%;
  max-width: 8.33333%;
}

.grid_col--push-1-of-12 {
  margin-left: 8.33333%;
}

.grid_col--pull-1-of-12 {
  margin-left: -8.33333%;
}

.grid_col--2-of-12 {
  width: 16.66667%;
}

.grid--flex .grid_col--2-of-12 {
  width: auto;
  flex-basis: 16.66667%;
  max-width: 16.66667%;
}

.grid_col--push-2-of-12 {
  margin-left: 16.66667%;
}

.grid_col--pull-2-of-12 {
  margin-left: -16.66667%;
}

.grid_col--5-of-12 {
  width: 41.66667%;
}

.grid--flex .grid_col--5-of-12 {
  width: auto;
  flex-basis: 41.66667%;
  max-width: 41.66667%;
}

.grid_col--push-5-of-12 {
  margin-left: 41.66667%;
}

.grid_col--pull-5-of-12 {
  margin-left: -41.66667%;
}

.grid_col--7-of-12 {
  width: 58.33333%;
}

.grid--flex .grid_col--7-of-12 {
  width: auto;
  flex-basis: 58.33333%;
  max-width: 58.33333%;
}

.grid_col--push-7-of-12 {
  margin-left: 58.33333%;
}

.grid_col--pull-7-of-12 {
  margin-left: -58.33333%;
}

.grid_col--10-of-12 {
  width: 83.33333%;
}

.grid--flex .grid_col--10-of-12 {
  width: auto;
  flex-basis: 83.33333%;
  max-width: 83.33333%;
}

.grid_col--push-10-of-12 {
  margin-left: 83.33333%;
}

.grid_col--pull-10-of-12 {
  margin-left: -83.33333%;
}

.grid_col--11-of-12 {
  width: 91.66667%;
}

.grid--flex .grid_col--11-of-12 {
  width: auto;
  flex-basis: 91.66667%;
  max-width: 91.66667%;
}

.grid_col--push-11-of-12 {
  margin-left: 91.66667%;
}

.grid_col--pull-11-of-12 {
  margin-left: -91.66667%;
}

.grid_col {
  box-sizing: border-box;
  display: inline-block;
  margin-right: -0.25em;
  min-height: 1px;
  padding-left: 40px;
  vertical-align: top;
}

@media (max-width: 480px) {
  .grid_col {
      display: block;
      margin-left: 0;
      margin-right: 0;
      width: 100%;
  }
}

@media (max-width: 1555px) 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.33333%;
  }

  .grid--flex .grid_col.grid_col--lg-1-of-3 {
      width: auto;
      flex-basis: 33.33333%;
      max-width: 33.33333%;
  }

  .grid_col.grid_col--lg-2-of-3 {
      width: 66.66667%;
  }

  .grid--flex .grid_col.grid_col--lg-2-of-3 {
      width: auto;
      flex-basis: 66.66667%;
      max-width: 66.66667%;
  }

  .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.33333%;
  }

  .grid--flex .grid_col.grid_col--lc-1-of-3 {
      width: auto;
      flex-basis: 33.33333%;
      max-width: 33.33333%;
  }

  .grid_col.grid_col--lc-2-of-3 {
      width: 66.66667%;
  }

  .grid--flex .grid_col.grid_col--lc-2-of-3 {
      width: auto;
      flex-basis: 66.66667%;
      max-width: 66.66667%;
  }

  .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.33333%;
  }

  .grid--flex .grid_col.grid_col--md-1-of-3 {
      width: auto;
      flex-basis: 33.33333%;
      max-width: 33.33333%;
  }

  .grid_col.grid_col--md-2-of-3 {
      width: 66.66667%;
  }

  .grid--flex .grid_col.grid_col--md-2-of-3 {
      width: auto;
      flex-basis: 66.66667%;
      max-width: 66.66667%;
  }

  .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.33333%;
  }

  .grid--flex .grid_col.grid_col--sm-1-of-3 {
      width: auto;
      flex-basis: 33.33333%;
      max-width: 33.33333%;
  }

  .grid_col.grid_col--sm-2-of-3 {
      width: 66.66667%;
  }

  .grid--flex .grid_col.grid_col--sm-2-of-3 {
      width: auto;
      flex-basis: 66.66667%;
      max-width: 66.66667%;
  }

  .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.1;
  border-color: #333132;
  color: #333132;
  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;
}

.text-justify {
  text-align: justify;
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.background--cover {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.background--brand {
  background-color: #ff5000;
}

.background--alt-brand {
  background-color: #44b59d;
}

.background--dark {
  background-color: #333132;
}

.background--light {
  background-color: #fff;
}

.background--grey {
  background-color: #f3f3f3;
}

.background--success {
  background-color: #23a217;
}

.background--error {
  background-color: #b72121;
}

.color--brand {
  color: #ff5000;
}

.color--dark {
  color: #333132;
}

.color--grey {
  color: #f3f3f3;
}

.color--success {
  color: #23a217;
}

.color--error {
  color: #b72121;
}

.dark {
  color: #fff;
}

.dark a {
  color: #fff;
}

.dark .button--cta {
  color: #fff;
}

.highlight {
  color: #ff5000;
}

.margin-top-20 {
  margin-top: 20px;
}

/*==================================
--------- 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 {
  outline-width: 2px;
  outline-style: dotted;
  outline-color: inherit;
}

[disabled],
[aria-disabled="true"],
[tabindex="-1"] {
  outline: none !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: 0px;
}

.tooltip {
  position: absolute;
  padding: 5px;
  font-family: Arial;
  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_title {
  margin-bottom: 45px;
}

@media only screen and (max-width: 480px) {
  .module_title {
      margin-bottom: 35px;
  }
}

.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_error-container {
  margin-bottom: 30px;
  color: #b72121;
}

.module_add-to-calendar-reveal {
  color: #ff5000;
  cursor: pointer;
}

.module_add-to-calendar-reveal:focus {
  text-decoration: underline;
}

.module_add-to-calendar-list {
  display: none;
}

.module_add-to-calendar-list:after {
  content: "Select your Calendar";
  display: block;
  margin-top: 15px;
  font-size: 1.4rem;
  text-align: center;
}

.fancybox-container .module_add-to-calendar-list {
  padding: 0 30px;
}

.module_add-to-calendar-item {
  display: inline-block;
  margin: 0 10px;
}

.module_add-to-calendar-item--ics {
  display: none;
}

.module_add-to-calendar-link {
  font-size: 2.4rem;
}

.module_add-to-calendar.js--hidden {
  display: none;
}

.module_actions,
.module_pager {
  margin-top: 20px;
}

.module_date-time {
  margin-bottom: 12px;
  font-size: 1.6rem;
  line-height: 1.625;
  color: #9c9c9c;
  font-weight: 700;
  letter-spacing: 0;
}

.module_error-container {
  display: block;
}

.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 {
  line-height: 1.66667;
  letter-spacing: 0.01em;
  color: #333132;
  font-size: 1.8rem;
  font-weight: 700;
}

.module_headline-link {
  color: #333132;
}

.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: 30px;
}

.module_item {
  padding: 30px 0 10px;
}

.module_item ~ .module_item {
  /* border-top: 2px solid #f3f3f3; */
}

.background--grey .module_item ~ .module_item {
  border-top: 2px solid #333132;
}

.module_label {
  display: inline-block;
  margin-bottom: 5px;
  font-size: 1.4rem;
}

.module_label + .module_required {
  font-size: 1.4rem;
}

.module_links > *,
.module_links li,
.module_links .module_presentation {
  display: inline;
}

@media only screen and (max-width: 480px) {
  .module_links > *,
  .module_links li,
  .module_links .module_presentation {
      display: block;
  }
}

.module_links.module_links--stack > *,
.module_links.module_links--stack li,
.module_links.module_links--stack .module_presentation {
  display: block;
}

.module_link {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 40px 5px 0;
  font-size: 1.8rem;
  color: #ff5000;
  font-weight: 400;
}

.module_link .q4icons_icon {
  display: inline-flex;
}

.module_link:hover {
  text-decoration: none;
}

.module_link-text-type {
  color: #9c9c9c;
  line-height: 1.2;
  font-weight: 400;
}

.module_link > .module_link-text:hover {
  text-decoration: underline;
}

.module_link > .module_link-text,
.module_link > i,
.module_link > span {
  vertical-align: baseline;
}

.module_link > i:before {
  display: block;
}

.module_link[style="DISPLAY:block;"],
.module_link[style="display: block;"] {
  display: inline-block !important;
}

.module_loader {
  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: #23a217;
}

.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_nav-link,
.module_nav .ModuleYearLink,
.module_nav-link:visited,
.module_nav .ModuleYearLink:visited {
  display: inline-block;
  margin-right: 5px;
  padding: 10px 20px;
  border: 2px solid #ff5000;
  color: #333132;
  font-weight: normal;
}

.module_nav-link.selected,
.module_nav-link.selected:visited,
.module_nav .ModuleYearLink.selected,
.module_nav .ModuleYearLink.selected:visited,
.module_nav-link.selected:visited,
.module_nav-link.selected:visited:visited,
.module_nav .ModuleYearLink.selected:visited,
.module_nav .ModuleYearLink.selected:visited:visited {
  background-color: #ff5000;
  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-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: #333132;
}

.module_pager a[href] {
  color: #ff5000;
}

.module_reminder .module_label {
  margin-right: 10px;
}

.module_reminder.js--reminded {
  display: none;
}

.module_required {
  color: #333132;
}

.module_required-text {
  font-size: 1.3rem;
  color: #333132;
}

.module_rss {
  float: right;
}

.module_speakers li {
  margin-bottom: 5px;
}

.module_view-all-link {
  font-size: 1.4rem;
}

.module_input[type="text"],
.module_input[type="email"],
.module_input[type="file"],
.module_dropdown,
.module textarea.module_input {
  display: block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* Text area demands width*/
  width: 100%;
  max-width: none;
  padding: 14.5px 20px;
  border: 1px solid #333132;
  border-radius: 0;
  background-color: transparent;
  /* font-family: "Helvetica Neue LT W04", sans-serif; */
  font-family: "Figtree", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #545554;
}

.module_input[type="text"],
.module_input[type="email"],
.module_input[type="file"],
.module_dropdown {
  height: 49px;
}

.background--grey .module_input[type="text"],
.background--grey .module_input[type="email"] {
  background-color: #fff;
}

.module_input::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.4;
}

.module_input::-moz-placeholder {
  color: inherit;
  opacity: 0.4;
}

/* .module_input:-ms-input-placeholder {
color: inherit;
opacity: 0.4;
} */
.module_input[type="text"]::-ms-clear,
.module_input[type="email"]::-ms-clear,
.module_input[type="file"]::-ms-clear,
.module_dropdown::-ms-clear,
.module textarea.module_input::-ms-clear {
  display: none;
}

.module textarea.module_input {
  resize: vertical;
  min-height: 200px;
}

.module_input[type="file"],
.module_dropdown {
  cursor: pointer;
}

.module_input[type="file"] {
  line-height: 1;
}

.module_input--brand[type="text"] {
  display: inline-block;
  width: auto;
  border: 1px solid #333132;
  background: transparent;
}

.module_dropdown {
  padding: 15.5px 50px 15.5px 20px;
  background: transparent url("../design/svg/dropdown-arrow-down.svg") no-repeat right 20px center;
  background-size: 11px 7px;
  min-width: 120px;
  border: 1px solid #333132;
  transition: border 0.3s ease-in-out;
  font-weight: 600;
}

.module_dropdown:hover {
  border-width: 2px;
}

.module_dropdown::-ms-expand {
  display: none;
}

.module-details .module_date-time {
  margin-bottom: 15px;
}

.module-page-title {
  color: #333132;
  padding-bottom: 40px;
}

.page-content-breadcrumb .module-page-title {
  color: #fff;
}

.module-page-title .module_subtitle {
  font-size: 1.8rem;
  color: #333132;
  display: block;
  position: relative;
  max-width: 621px;
  line-height: 1.67;
}

.module-page-title .module_subtitle:before {
  content: "";
  width: 70px;
  height: 4px;
  background-color: #ff5000;
  display: block;
  margin-bottom: 28px;
  margin-top: 25px;
}

/*- Investment Calculator Widget -*/
.module-calculator_input:not(:last-of-type) {
  margin-bottom: 20px;
}

.module-calculator_input h4 {
  margin-bottom: 12px;
}

.module-calculator_input label {
  display: inline-block;
  font-size: 1.6rem;
  margin-bottom: 5px;
}

.module-calculator_input input[type="text"] {
  border: 2px solid #ff5000;
}

.module-calculator_input input[type="checkbox"] + label {
  margin: 0;
}

.module-calculator_input button {
  background: transparent;
  padding: 0;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  position: absolute;
  right: 10px;
  bottom: 18px;
  color: #ff5000;
  cursor: pointer;
}

.module-calculator_input-row {
  padding-bottom: 10px;
}

.module-calculator_input-row input[type="text"] {
  margin-top: 10px;
  max-width: 300px;
}

.module-calculator_input-row--other input[type="text"] {
  display: none;
}

.module-calculator_input-row--other input.js--revealed[type="text"] {
  display: block;
}

.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 #ff5000;
      border-bottom: 2px solid #ff5000;
  }

  .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;
}

/*- 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_header {
  display: block;
  border-bottom: 2px solid rgba(0, 0, 0, 0.05);
  font-weight: normal;
}

.module-committee .module_item {
  padding: 0;
}

.module-committee .module_item ~ .module_item {
  border: 0;
}

.module-committee .module_item:nth-child(even) {
  background: rgba(0, 0, 0, 0.05);
}

.module-committee .grid_col {
  padding: 15px;
  text-align: center;
}

.module-committee .grid_col:first-child {
  text-align: left;
}

.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;
}

.module-committee_legend [class*="q4-icon_"] {
  margin-right: 5px;
}

/*----- Dividends Module -----*/
.module-dividends .highcharts-series-0 rect {
  fill: #bba695;
}

.module-dividends .highcharts-series-1 rect {
  fill: #44b59d;
}

/*----- Download List Module -----*/
.module-downloads .module_nav {
  display: none;
}

.module-downloads .module_item {
  padding: 10px 0;
  /* initial padding: 15px 0; */
}

.module-downloads_thumbnail,
.module-downloads_description,
.module-downloads_date {
  display: none;
}

.module-downloads_title {
  position: relative;
}

.module-downloads_title-link {
  margin: 0 40px 0 0;
}

.module-downloads .q4icons_icon {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}

/*--------- Event Module ---------*/
.module-event .module_location,
.module-event .module_speakers h4,
.module-event .module_body {
  display: none;
}

.module-event .module_options {
  margin-bottom: 0;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(60, 50, 39, 0.25);
}

.module-event-details .module_speakers h4 {
  display: none;
}

@media only screen and (max-width: 768px) {
  .module-event-details .module_reminder .grid_col {
      margin-bottom: 20px;
  }
}

.module-event-latest .module_container--content {
  margin-bottom: 20px;
}

.module-event-latest .module_item {
  margin: 10px 0;
  border: none;
  text-align: left;
  padding-top: 0;
  padding-bottom: 0;
}

.module-event-latest .module_item.grid_col {
  padding-left: 20px;
}

.module-event-latest .module_item-wrap {
  height: 100%;
  padding: 30px;
  background-color: #f3f3f3;
}

.module-event-latest .module_date-time {
  margin-bottom: 15px;
  font-weight: normal;
}

.module-event-latest .module_headline {
  line-height: 150%;
  font-weight: 200;
}

.module-event-latest .module_links {
  margin: 0;
}

.module-event-latest.background--grey .module_item-wrap {
  background-color: #fff;
}

.module-event-latest.module-event-list .module_item {
  padding-left: 0;
  padding-top: 20px;
}

.module-event-latest.module-event-list .module_item + .module_item {
  border-top: 1px solid rgba(60, 50, 39, 0.25);
}

.module-event-upcoming {
  padding-right: 40px;
  padding-bottom: 60px;
  position: relative;
}

.module-event-upcoming .button {
  margin-top: 30px;
  bottom: 10px;
  left: 0;
}

.module-event-upcoming .module_nav {
  display: none;
}

.module-event-upcoming .module_item {
  padding: 0 0 10px;
}

.module-event-upcoming .module_item ~ .module_item {
  padding: 30px 0 10px;
}

.module-event-calendar .module_title {
  margin-bottom: 20px;
}

.module-event-calendar_legend {
  display: none;
  text-align: left;
}

.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: 3px;
  display: block;
  width: 16px;
  height: 16px;
  background-color: #ff5000;
  border-radius: 3px;
}

.module-event-calendar_legend li.module-event-calendar_legend-item--current:before {
  background-color: #44b59d;
}

.module-event-calendar .module_container--content {
  display: flex;
  width: 100%;
}

.module-event-calendar_calendar-container,
.module-event-calendar_event-container {
  width: 50%;
  text-align: center;
  vertical-align: middle;
}

.module-event-calendar_calendar-container {
  padding-right: 20px;
}

.module-event-calendar_event-container {
  padding: 50px;
  background-color: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.module-event-calendar_splash [class*="q4-icon_"] {
  font-size: 4rem;
  line-height: 1;
  color: #ff5000;
}

.module-event-calendar_splash p {
  font-size: 1.4rem;
  line-height: 1.2;
}

.module-event-calendar_controls {
  padding: 15px;
  background-color: #ff5000;
  font-weight: bold;
  color: #fff;
}

.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 {
  border-bottom: 1px solid rgba(255, 80, 0, 0.2);
  display: table;
  table-layout: fixed;
  width: 100%;
}

.module-event-calendar_week {
  display: table-row;
}

.module-event-calendar_days {
  display: table-row-group;
}

.module-event-calendar_days > div[role="row"] {
  display: table-row;
}

.module-event-calendar_day {
  display: table-cell;
  position: relative;
  width: 14.285%;
  margin: 0;
  padding: 8px 0 15px;
  border-top: 1px solid rgba(255, 80, 0, 0.2);
  border-left: 1px solid rgba(255, 80, 0, 0.2);
}

.module-event-calendar_day.calendar-dow-6 {
  border-right: 1px solid rgba(255, 80, 0, 0.2);
}

.module-event-calendar_day--name {
  padding: 10px 0;
  border: none;
}

.module-event-calendar_day--today {
  background: #f3f3f3;
}

.module-event-calendar_day--event {
  cursor: pointer;
}

.module-event-calendar_day--event:after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  display: block;
  height: 4px;
  background-color: #ff5000;
}

.module-event-calendar_day--selected {
  background-color: #ff5000;
  color: #fff;
}

.module-event-calendar_day--selected:after {
  background-color: #fff;
}

.module-event-calendar_day--adjacent-month {
  color: rgba(51, 49, 50, 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_item {
  padding: 0;
}

.module-event-calendar .module_date-time,
.module-event-calendar .module_headline {
  margin-bottom: 10px;
}

.module-event-calendar .module_add-to-calendar {
  margin: 0;
}

@media only screen and (max-width: 768px) {
  .module-event-calendar .module_container--content {
      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;
  }
}

/*---------- FAQ Module ----------*/
.module-faq_question {
  margin-top: 0;
  cursor: pointer;
}

.module-faq_answer p {
  margin: 0;
  padding: 0 0 10px;
}

.module-faq .toggle-all .button:before {
  content: "Show all";
}

.module-faq .toggle-all.js--active .button:before {
  content: "Hide all";
}

/*--- Financial Report Modules ---*/
.module-financial-year .module_cover {
  margin-bottom: 15px;
  display: block;
}

.module-financial-year .module_cover img {
  display: inline-block;
  border: 1px solid #ff5000;
}

.module-financial-year .module_item {
  padding: 0;
}

.module-financial-year .module_item ~ .module_item {
  border: none;
}

.module-financial-year .module_links {
  margin: 0;
}

.module-financial-year .module_link {
  margin-right: 0;
}

.module-financial-year .module-financial_year {
  text-align: center;
}

.module-financial-quarter .dropdown {
  margin-bottom: 30px;
}

.module-financial-quarter_header {
  border-bottom: 2px solid #ac968b;
  font-weight: 500;
}

.module-financial-quarter_header .grid_col:not(:empty) {
  padding: 10px 5px;
}

.module-financial-quarter .grid_col {
  text-align: center;
}

.module-financial-quarter .grid_col:first-child {
  text-align: left;
  font-weight: 500;
}

.module-financial-quarter .module-container {
  border-bottom: 2px solid #ac968b;
}

.module-financial-quarter .module_link {
  margin: 0;
}

.module-financial-quarter_item .grid_col {
  padding: 10px 5px;
}

.module-financial-quarter_item + .module-financial-quarter_item {
  border-top: 1px solid #ac968b;
}

.module-financial-quarter_type-item.Spreadsheet:empty:after {
  content: "Excel";
  opacity: 0.5;
}

.module-financial-quarter_type-item:empty:after {
  content: "PDF";
  opacity: 0.5;
}

@media only screen and (max-width: 480px) {
  .module-financial-quarter .grid_col {
      text-align: left;
  }

  .module-financial-quarter_type-item:before {
      content: attr(data-before) ": ";
  }

  .module-financial-quarter_header {
      display: none;
  }
}

.module-financial-table .module_container--content {
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.module-financial-table table {
  width: 100%;
}

.module-financial-table table tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
}

.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 {
  font-weight: normal;
  padding: 20px 15px;
  width: 25%;
}

.module-financial-table_column-year {
  text-align: center;
}

.module-financial-table_column-report {
  display: inline-block;
  position: relative;
  z-index: 2;
  background: #f1f1f1;
  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-missing {
  opacity: 0.3;
}

.module-financial-table_header {
  display: flex;
  background-color: #ff5000;
  color: #fff;
  font-weight: normal;
}

.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_item-doc:not(:last-child) {
  margin-right: 15px;
}

.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-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%, white 70%, white 100%);
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.5) 0%, white 70%, white 100%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, white 70%, white 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#70ffffff', endColorstr='#ffffff', GradientType=0);
}

.module-financial-mashup h4 {
  margin-top: 16px;
}

.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: #f3f3f3;
  padding: 15px;
  margin-bottom: 1px;
}

.module-financial-mashup .module-financial-mashup_documents .module_links .module_link {
  margin: 0;
}

.module-financial-mashup .q4-icon_chevron-right {
  font-size: 1rem;
  margin-left: 5px;
}

.module-financial-mashup .button {
  width: 100%;
}

.module-financial-mashup .button.js--selected {
  background: #006fba;
  color: #fff;
  outline-color: #006fba;
}

@media only screen and (min-width: 769px) {
  .module-financial-mashup .module_options--mobile {
      display: none;
  }
}

@media only screen and (max-width: 768px) {
  .module-financial-mashup .module_options--desktop {
      display: none;
  }
}

/* Latest Quarterly Result Widget */
.module-latest-quarter {
  height: 100%;
  position: relative;
  padding-bottom: 60px;
}

.module-latest-quarter .button {
  position: absolute;
  bottom: 10px;
  left: 0;
}

.module-latest-quarter_type {
  width: 130px;
  height: 130px;
  background: #44b59d;
  border-radius: 100%;
  color: #fff;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  align-content: center;
  position: relative;
}

.module-latest-quarter_type:before {
  content: "";
  width: 158px;
  height: 158px;
  border-radius: 100%;
  background: rgba(68, 181, 157, 0.13);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100%;
}

.module-latest-quarter_type:after {
  content: "";
  width: 186px;
  height: 186px;
  background: rgba(68, 181, 157, 0.1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100%;
}

.module-latest-quarter .module_item {
  margin: 30px 0;
  padding: 0 100px 0 0;
}

.module-latest-quarter .module_item ~ .module_item {
  border: none;
}

.module-latest-quarter .module_links {
  margin: 0;
}

.module-latest-quarter .module_links > div {
  display: inline-block;
  text-align: center;
  margin: 0 13px;
}

.module-latest-quarter .module_link {
  margin-bottom: 15px;
  width: 100%;
  border: 1px solid rgba(172, 150, 139, 0.2);
  padding: 26px 24px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  color: #333132;
  transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
  padding-right: 120px;
  position: relative;
}

.module-latest-quarter .module_link:hover {
  background-color: #fff;
  border: none;
  border-bottom: 3px solid #ff5000;
  text-decoration: none;
  transform: translateX(10px);
  text-decoration: none;
}

.module-latest-quarter .module_link:hover .module_link-text {
  text-decoration: none;
}

.module-latest-quarter .module_link:hover .module_link-type {
  display: block;
}

.module-latest-quarter .module_link .q4icons_icon:before {
  display: inline-block;
  font-size: 3rem;
  padding: 0;
  color: #ff5000;
  margin-right: 30px;
}

.module-latest-quarter .module_link-text {
  display: block;
  margin: 0;
  font-size: 1.8rem;
  text-transform: none;
  font-weight: 500;
}

.module-latest-quarter .module_link-type {
  font-size: 1.4rem;
  color: #9c9c9c;
  line-height: 1.2;
  font-weight: 400;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 32px;
  display: none;
}

.module-latest-quarter .grid_col {
  vertical-align: middle;
}

@media only screen and (max-width: 1024px) {
  .module-latest-quarter {
      margin-bottom: 30px;
      height: auto;
  }

  .module-latest-quarter .module_item {
      padding-right: 0;
  }
}

@media only screen and (max-width: 768px) {
  .module-latest-quarter .module_link {
      padding-right: 20px;
  }

  .module-latest-quarter .module_link-type {
      position: static;
      width: 100%;
      padding-left: 62px;
      transform: none;
  }
}

/* Latest Annual Widget */
.module-latest-annual {
  height: 100%;
  position: relative;
  padding-bottom: 60px;
}

.module-latest-annual .button {
  position: absolute;
  bottom: 10px;
  left: 0;
}

.module-latest-annual .module_item {
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 30px 60px 23px 200px;
  background: #fff;
  position: relative;
}

.module-latest-annual .module_doc-title {
  margin-bottom: 23px;
}

.module-latest-annual .module_link-annual .q4icons_icon:before {
  content: "\e931";
}

.module-latest-annual .module_link-type {
  margin-left: 27px;
  color: #ac968b;
  display: block;
}

.module-latest-annual .module_cover {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  width: 150px;
}

@media only screen and (max-width: 1024px) {
  .module-latest-annual {
      height: auto;
  }
}

@media only screen and (max-width: 768px) {
  .module-latest-annual .module_item {
      padding: 230px 20px 20px;
  }

  .module-latest-annual .module_cover {
      top: 20px;
      left: 20px;
      height: 184px;
  }
}

/*------ Formbuilder Module ------*/
.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.4rem;
}

.module-form_item legend {
  float: left;
  margin-bottom: 15px;
  font-size: 1.6rem;
}

.module-form_item legend ~ ul {
  clear: both;
  padding-left: 10px;
}

.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;
}

.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;
}

.fancybox-slide--form_confirmation .fancybox-content {
  max-width: 700px;
}

.fancybox-slide--form .fancybox-button--close {
  display: none;
}

.module-form--meeting {
  padding: 0 20px !important;
}

.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: #ff5000;
  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-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 .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: #333132;
}

.module-form--meeting .module_dropdown {
  color: #333132;
}

.module-form--meeting .module_input {
  color: #333132;
}

.module-form--meeting .module_required {
  display: none;
}

.module-form--meeting .module_actions {
  margin: 0 -20px;
  padding: 20px;
  background-color: #3c3227;
  text-align: right;
}

.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_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: #333132;
  display: block;
  margin: auto;
}

@media only screen and (max-width: 768px) {
  .module-form--meeting .module-form_item--namehidden .module_input {
      margin-top: 0;
  }
}

.module-glossary .module_header {
  display: block;
}

.module-glossary .module_header table {
  width: 100%;
  table-layout: fixed;
}

.module-glossary .module_header table a {
  color: #333132;
  font-weight: normal;
}

.module-glossary .module_header table a[href] {
  color: #ff5000;
}

/*---------- Job Modules ---------*/
.module-job-list_table-wrap {
  overflow-x: auto;
}

.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: "Helvetica Neue LT W04", sans-serif; */
  font-family: "Figtree", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  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_title {
  font-weight: 500;
  margin-bottom: 10px;
}

.module-slideshow .module_links > * + * {
  margin-top: 15px;
}

.module-slideshow_link {
  font-size: 1.4rem;
  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_back {
  font-size: 2.2rem;
  color: #ff5000;
  line-height: 1.54545;
  letter-spacing: 0.01em;
  padding-bottom: 26px;
  display: inline-block;
  font-weight: 700;
}

.nav_back:before {
  content: "\e916";
  font-family: "q4-icons";
  margin-right: 18px;
  font-size: 1.2rem;
  display: inline-block;
  vertical-align: middle;
}

.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 button.submenu-trigger {
  background: none;
  border: none;
  padding: 0 50px 0 0;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  text-align: left;
  width: 100%;
  font-weight: inherit;
}

.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 {
  line-height: 1;
  text-align: center;
  padding-right: 70px;
  width: calc(100% - 294px);
}

.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;
}

.nav--main li a {
  display: block;
  font-size: 1.6rem;
  line-height: 1.1875;
  letter-spacing: 0.01em;
  color: #333132;
  font-weight: 500;
}

.nav--main li a:hover {
  text-decoration: none;
}

.nav--main .level1 > li {
  padding: 0 15px;
}

.nav--main .level1 > li > button > a,
.nav--main .level1 > li > a {
  padding: 31px 0 28px;
  color: #333132;
  border-bottom: 2px solid transparent;
}

.nav--main .level1 > li.has-children > a::after {
  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: "\e93d";
  font-size: 5px;
  margin-left: 10px;
  vertical-align: middle;
}

.page-light .nav--main .level1 > li > button > a,
.page-light .nav--main .level1 > li > a {
  color: #333132;
}

.nav--main .level1 > li.js--visible > button > a,
.nav--main .level1 > li.js--visible > a,
.nav--main .level1 > li:hover > button > a,
.nav--main .level1 > li:hover > a,
.nav--main .level1 > li.selected > a,
.nav--main .level1 > li.expanded > a,
.nav--main .level1 > li.selected > button > a,
.nav--main .level1 > li.expanded > button > a {
  color: #ff5000;
}

.nav--main .level1 > li.selected > a,
.nav--main .level1 > li.expanded > a,
.nav--main .level1 > li.selected > button > a,
.nav--main .level1 > li.expanded > button > a {
  border-color: #ff5000;
}

.page-light .nav--main .level1 > li.selected > a,
.page-light .nav--main .level1 > li.expanded > a,
.page-light .nav--main .level1 > li.selected > button > a,
.page-light .nav--main .level1 > li.expanded > button > a {
  border-color: #ff5000;
}

.nav--main .level2 {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  background-clip: padding-box;
  box-shadow: 0px 7px 9px rgba(0, 0, 0, 0.12);
  z-index: 2;
  text-align: center;
  border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.nav--main .expanded .level2 {
  display: block !important;
  opacity: 1 !important;
}

.nav--main .sfHover .level2 {
  z-index: 3;
}

.page-light .nav--main .level2 {
  background: #fff;
  border-top: 2px solid #333132;
}

.page-light .nav--main .level2 > li > a {
  color: #333132;
}

.nav--main .level2 li {
  display: inline-block;
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
}

.nav--main .level2 li.expanded > a,
.nav--main .level2 li.selected > a {
  color: #ff5000;
  font-weight: 500;
  border-color: #ff5000;
}

.nav--main .level2 a {
  padding: 20px 0 23px;
  border-bottom: 3px solid transparent;
  font-weight: 400;
  color: #333132;
}

.nav--main .level2 a:hover {
  color: #ff5000;
}

.nav--main .js--visible .level2 {
  display: block !important;
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  visibility: visible !important;
}

.nav--main .level3 {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  text-align: left;
  background: #fff;
  padding: 10px 0;
  transition: none !important;
  opacity: 1 !important;
}

.nav--main .level3 li {
  display: block;
  padding: 10px 0;
  white-space: nowrap;
}

.nav--main .level3 li.expanded a,
.nav--main .level3 li.selected a {
  color: #ff5000;
  border-color: #fff;
}

.nav--main .level3 a {
  padding-top: 0;
  padding-bottom: 0;
  color: #333132;
  padding-left: 20px;
  padding-right: 20px;
}

.nav--main .level3 a:hover {
  color: #ff5000;
}

.nav--main .sfHover .level2 {
  display: block;
}

.nav--secondary {
  background: #ff5000;
  text-align: center;
  font-weight: 400;
  letter-spacing: 1.6px;
}

@media only screen and (max-width: 1300px) {
  .nav--main .level1 > li {
      padding: 0 10px;
  }

  .nav--main .level1 > li.has-children > a::after {
      margin-left: 7px;
  }
}

@media only screen and (max-width: 1024px) {
  .nav--secondary {
      display: none;
  }
}

.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 {
  display: table;
  width: 100%;
}

.nav--secondary .level2 > li {
  position: relative;
  display: table-cell;
}

.nav--secondary .level2 > li:hover,
.nav--secondary .level2 > li.selected,
.nav--secondary .level2 > li.expanded {
  background: #d94400;
}

.nav--secondary .level2 > li a {
  display: block;
  padding: 15px 20px;
  font-size: 1.4rem;
}

.nav--secondary .level3 {
  position: absolute;
  z-index: 100;
  top: 100%;
  left: 0;
  display: none;
  width: 100%;
  min-width: 200px;
  border-top: 2px solid #fff;
}

.nav--secondary .level3 > li {
  text-align: left;
}

.nav--secondary .level3 > li a {
  background: #d94400;
}

.nav--secondary .level3 > li a:hover,
.nav--secondary .level3 > li a:focus {
  background: #ff5000;
}

.nav--secondary .level3 > li.selected a {
  background: #ff5000;
}

.nav--mobile {
  display: none;
  text-align: left;
  letter-spacing: 0.01em;
  margin-bottom: 40px;
  border-bottom: 1px solid #f3f3f3;
}

@media only screen and (max-width: 1555px) {
  .nav--mobile {
      display: block;
  }
}

.nav--mobile li {
  border-bottom: 1px solid #f3f3f3;
}

.nav--mobile li:last-child {
  border-bottom: none;
}

.nav--mobile li.has-children {
  position: relative;
}

.nav--mobile li.has-children .nav_level-open {
  position: absolute;
  top: 0;
  line-height: 1;
  right: 0;
  font-size: 1.2rem;
  color: #ac968b;
  height: 100%;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav--mobile li.js--expanded {
  border-bottom: none;
}

.nav--mobile li.js--expanded > button,
.nav--mobile li.js--expanded > a {
  display: none;
}

.nav--mobile a {
  display: block;
  color: #333132;
  font-size: 1.8rem;
  line-height: 1.66667;
  letter-spacing: 0.01em;
  font-weight: 700;
}

.nav--mobile .level1 > li {
  display: block;
}

.nav--mobile .level1 > li.js--expanded .level2 {
  display: block !important;
}

.nav--mobile .level1 > li > a,
.nav--mobile .level1 > li > button > a {
  padding: 13px 0;
}

.nav--mobile .level2 {
  display: none !important;
  width: 100%;
}

.nav--mobile .level2 > li {
  display: block;
}

.nav--mobile .level2 > li.js--expanded .level3 {
  display: block !important;
}

.nav--mobile .level2 > li > a,
.nav--mobile .level2 > li > button > a {
  padding: 13px 0;
}

.nav--mobile .level2 > li.has-children > a,
.nav--mobile .level2 > li.has-children > button > a {
  padding-right: 40px;
}

.nav--mobile .level2 > li > a:focus + .level3,
.nav--mobile .level2 > li > button > a:focus + .level3 {
  display: block;
}

.nav--mobile .level3 {
  display: none !important;
  position: static;
  border: none;
  width: 100%;
}

.nav--mobile .level3 > li {
  display: block;
}

.nav--mobile .level3 > li > a {
  padding: 13px 0;
}

@media screen and (max-width: 765px) and (orientation: landscape) {
  .nav--mobile {
      padding-bottom: 85px;
  }
}

.nav--sitemap {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 75px;
  padding-bottom: 75px;
}

.nav--sitemap a {
  display: inline-block;
}

.nav--sitemap .level1 {
  column-count: 3;
  column-gap: 20px;
}

.nav--sitemap .level1 > li {
  break-inside: avoid;
  display: block;
}

.nav--sitemap .level1 > li:not(:last-of-type) {
  margin-bottom: 35px;
}

.nav--sitemap .level1 > li > a,
.nav--sitemap .level1 > li > a:visited {
  margin-bottom: 15px;
  font-size: 2.4rem;
  color: #333132;
  text-transform: uppercase;
}

.nav--sitemap .level2 > li,
.nav--sitemap .level3 > li {
  padding: 5px 0;
}

.nav--sitemap .level2 > li > a,
.nav--sitemap .level3 > li > a {
  font-size: 1.4rem;
  font-weight: bold;
  text-transform: uppercase;
}

.nav--sitemap .level2 > li > a {
  margin-bottom: 5px;
}

.nav--sitemap .level3 > li {
  padding-left: 15px;
}

@media only screen and (max-width: 768px) {
  .nav--sitemap .level1 {
      column-count: 2;
  }
}

@media only screen and (max-width: 480px) {
  .nav--sitemap .level1 {
      column-count: auto;
      column-gap: normal;
  }
}

/*-------- News Module CSS -------*/
.module-news .module_nav,
.module-news .module_thumbnail-link,
.module-news .module_more-link {
  display: none;
}

@media only screen and (max-width: 768px) {
  .module-news .module_options .grid_col {
      margin-bottom: 20px;
  }
}

.module-news-latest .module_container--content {
  margin-bottom: 63px;
}

.module-news-latest .module_item {
  padding: 0 0 0 40px;
  border: none;
  text-align: left;
}

.module-news-latest .module_item-wrap {
  display: block;
  height: 100%;
  padding: 40px 40px 50px;
  background-color: #fff;
  transition: 0.3s ease-in-out;
  position: relative;
}

/* .module-news-latest .module_item-wrap:before {
content: "";
background: url("../images/newsroom/finland.jpg") no-repeat center center;
background-size: cover;
position: absolute;
top: 0;
left: 0;
height: 243px;
right: 0;
} */
.module-news-latest .module_item-wrap:hover,
.module-news-latest .module_item-wrap:focus {
  outline: none;
  text-decoration: none;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08), inset 0px -3px 0px #ff5000;
}

/* .module-news-latest .module_item:nth-child(2) .module_item-wrap:before {
background: url("../images/newsroom/germany.jpg") no-repeat center center;
background-size: cover;
}
.module-news-latest .module_item:nth-child(3) .module_item-wrap:before {
background: url("../images/newsroom/sos.jpg") no-repeat center center;
background-size: cover;
} */
.module-news-latest .module_image-wrapper {
  margin-bottom: 40px;
  text-align: center;
}

.module-news-latest .module_date-time {
  margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {
  .module-news-latest .module_container--content {
      margin-bottom: 10px;
  }
}

@media only screen and (max-width: 1024px) {
  .module-news-latest .module_container--content {
      margin-bottom: 46px;
  }

  .module-news-latest .grid_col + .grid_col {
      margin-top: 40px;
  }
}

.module-news-latest--investor .module_item {
  border: none !important;
}

.module-news-latest--investor .module_item-wrap:before {
  display: none;
}

.module-news-list .module_item {
  padding-left: 0;
  padding-top: 20px;
}

.module-news-list .module_item + .module_item {
  border-top: 1px solid rgba(60, 50, 39, 0.25);
}

.module-news-details .module_view-all-link {
  display: inline-block;
  margin-bottom: 25px;
}

.module-news-details .module_view-all-link--bottom {
  margin-top: 25px;
  margin-bottom: 0;
}

.module-news-details .module_body .body {
  font-size: 1.8rem;
}

.module-news-details_category {
  display: none;
}

.module-news-details ul {
  margin: 16px 0;
  padding-left: 32px;
  list-style-type: disc;
}

.module-news-details ul li {
  line-height: 1.5;
}

.module-news-details .module_multimedia .module_link {
  margin: 0;
  display: block;
  font-weight: normal;
  text-transform: none;
}

.module-news-details .module_multimedia-caption {
  margin-bottom: 16px;
}

.module-news-details .module_multimedia-caption .module_file-text {
  display: block;
}

.module-news-details .module_multimedia-caption .module_file-resolution {
  display: none;
}

.module-news-details .module_multimedia-image {
  width: 100%;
  float: none;
}

.module-news-details .module_multimedia-size {
  margin-top: 10px;
}

.module-news-details .module_multimedia-size .module_file-size {
  display: inline;
}

.module-news-details .module_multimedia-size .module_file-resolution:before {
  content: "(";
}

.module-news-details .module_multimedia-size .module_file-resolution:after {
  content: ")";
}

@media only screen and (max-width: 1024px) {
  .module-news-details .module_multimedia-item {
      margin-bottom: 30px;
  }
}

.module-news-featured .module_container--inner {
  position: relative;
}

.module-news-featured .slick-slider {
  padding: 0;
}

.module-news-featured_navigation-wrap {
  padding-left: 66.66%;
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
}

.module-news-featured .module_item {
  padding: 0;
}

.module-news-featured_navigation {
  position: relative;
  padding: 0 33px;
  display: inline-block;
}

.module-news-featured_image {
  padding: 0 50px;
}

.module-news-featured img {
  margin: 0 auto;
}

.module-news-featured .module_headline {
  font-size: 2.6rem;
  line-height: 1.38;
}

.module-news-featured .module_item-wrap {
  padding-bottom: 120px;
}

.module-news-featured .slick-arrow {
  color: #ff5000;
}

.module-news-featured .slick-arrow:before {
  font-size: 1.2rem;
}

.module-news-featured .slick-disabled {
  color: #ac968b;
  opacity: 1;
}

.module-news-featured .slick-prev:before {
  content: "\e916";
}

.module-news-featured .slick-next:before {
  content: "\e917";
}

.module-news-featured .slick-dots button {
  margin-top: -2px;
  width: 4px;
  height: 4px;
}

.module-news-featured .slick-dots li:not(:last-child) {
  margin-right: 20px;
}

.module-news-featured .slick-dots .slick-active button {
  width: 7px;
  height: 7px;
}

@media only screen and (max-width: 1024px) {
  .module-news-featured_image {
      padding: 0 0 30px;
  }

  .module-news-featured_navigation-wrap {
      padding-left: 0;
      position: static;
      text-align: center;
  }

  .module-news-featured .module_item-wrap {
      padding-bottom: 30px;
  }
}

.module-news-archive .module_headline {
  font-size: 2.6rem;
}

.module-news-archive .module_body a {
  color: #333132;
}

/*---------- Pager ----------*/
.pager {
  text-align: center;
  margin: 15px 0;
}

.pager-page {
  display: inline-block;
  vertical-align: top;
  margin: 0 5px 0 0;
  cursor: pointer;
}

.pager-page.pager-active {
  cursor: default;
  color: #ff5000;
}

.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 #ff5000;
  color: #ff5000;
  background-color: #f3f3f3;
  border-radius: 3px;
  width: 35px;
  height: 35px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 35px;
  text-align: center;
  cursor: default;
}

.pager_button {
  appearance: none;
  border: 1px solid #ff5000;
  color: #ff5000;
  background-color: #fff;
  border-radius: 3px;
  width: 35px;
  height: 35px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  cursor: pointer;
}

.pager_button:not(.js--disabled):hover {
  color: #fff;
  background-color: #ff5000;
}

.pager_button:not(.js--disabled):focus {
  color: #fff;
  background-color: #ff5000;
  outline-color: #ff5000;
}

.pager_button.js--active {
  color: #fff;
  background-color: #ff5000;
}

.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;
}

/*------ Person List Module ------*/
.module-person .module-person_description,
.module-person .module-person_res-photo-container,
.module-person .module_comma {
  display: none;
}

.module-person .module_item {
  position: relative;
  padding: 0 0 60px 40px;
  border: none;
}

.module-person_photo-container {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  margin-bottom: 37px;
  display: inline-block;
}

.module-person_photo-container img {
  transition: transform 0.3s ease-in-out;
}

.module-person_photo-container: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: "\e91a";
  position: absolute;
  bottom: 0;
  right: 0;
  color: #ff5000;
  background: #fff;
  padding: 22px;
  font-size: 1.3rem;
  transition: 0.3s ease-in-out;
  z-index: 2;
}

.module-person_photo-container:hover:before {
  background: #ff5000;
  color: #fff;
}

.module-person_photo-container:hover img {
  transform: scale(1.1, 1.1);
}

.module-person_name-container h3 {
  margin-top: 0;
  font-size: 2.5rem;
  line-height: 1.19231;
  margin-bottom: 0;
  font-weight: 200;
}

.module-person_title {
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.44;
  margin-top: 9px;
}

.module-person .js--overlay {
  width: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-52%);
  width: 52%;
}

@media (max-width: 1500px) {
  .module-person .js--overlay {
      width: 100%;
      left: -21px;
      right: 20px;
      transform: none;
  }
}

.module-person .js--overlay .module-person_inner {
  background: #fff;
  padding: 40px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}

.module-person .js--overlay .module-person_photo-container {
  width: 320px;
  margin-bottom: 0;
}

.module-person .js--overlay .module-person_details-wrap {
  width: calc(100% - 320px);
  padding-left: 90px;
}

.module-person .js--overlay .module-person_description {
  display: block;
  padding-top: 30px;
  max-width: 730px;
}

.module-person .js--overlay .module-person_name-container h3 {
  font-size: 4.6rem;
  padding-top: 50px;
  line-height: 1.19565;
}

.module-person .js--overlay .module-person_title {
  font-size: 2.2rem;
  margin-top: 13px;
  font-weight: 400;
}

.module-person .js--overlay .module-person_photo-container:before {
  display: none;
}

.module-person .js--overlay .module-person_photo-container:hover img {
  transform: none;
}

@media only screen and (max-width: 1024px) {
  .module-person .js--overlay .module-person_details-wrap {
      padding-left: 40px;
  }
}

@media only screen and (max-width: 768px) {
  .module-person .js--overlay .module-person_photo-container {
      width: 100%;
      margin-bottom: 20px;
  }

  .js--overlay .module-person_photo-container img {
      max-width: 150px;
  }

  .module-person .js--overlay .module-person_details-wrap {
      width: 100%;
      padding-left: 0;
  }

  .module-person .js--overlay .module-person_name-container h3 {
      font-size: 3.6rem;
      padding-top: 0;
  }

  .module-person .js--overlay .module-person_inner {
      padding-top: 60px;
  }

  .module-person .js--overlay .module_popup-close {
      top: 20px;
      right: 20px;
  }
}

.fancybox-container .module-person .module_item {
  max-width: 1280px;
  padding: 70px;
}

.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;
  text-align: left;
  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: #333132;
}

.fancybox-container .module-person_photo-container {
  max-width: 30%;
  margin-right: 40px;
}

@media only screen and (max-width: 768px) {
  .fancybox-container .module-person_photo-container {
      margin-right: 15px;
      margin-bottom: 35px;
  }
}

@media only screen and (max-width: 480px) {
  .fancybox-container .module-person_photo-container {
      margin-right: 0;
      max-width: none;
  }
}

.fancybox-container .module-person_name {
  display: block;
  margin-bottom: 10px;
  font-size: 3.6rem;
  line-height: 1.45;
  color: #ff5000;
}

@media only screen and (max-width: 480px) {
  .fancybox-container .module-person_name {
      font-size: 2.4rem;
      line-height: 1.2;
  }
}

.fancybox-container .module-person_title {
  font-size: 2.4rem;
  color: #ff5000;
}

@media only screen and (max-width: 480px) {
  .fancybox-container .module-person_title {
      font-size: 1.8rem;
      line-height: 1.125;
  }
}

.fancybox-container .module-person_description-container {
  margin-top: 40px;
}

.fancybox-container .module-person_description {
  display: block;
}

.module-person-accordion .module-person_name-container {
  padding: 20px 15px;
  margin-bottom: 10px;
  background-color: #ff5000;
  color: #fff;
  cursor: pointer;
}

.module-person-accordion .module-person_name-container h3 {
  font-size: 1.8rem;
  font-weight: bold;
  color: inherit;
  margin: 0;
}

.module-person-accordion .module-person_name-container h3: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: "\ed5d";
}

.module-person-accordion .module_item {
  padding: 0;
  border: 0 none;
}

.module-person-accordion .module_item.js--active h3:before {
  content: "\ed5e";
}

.module-person-accordion .module-person_name {
  margin-right: 10px;
}

.module-person-accordion .module-person_title {
  font-size: 1.4rem;
}

.module-person-accordion .module_comma {
  display: none;
}

.module-person-accordion .module-person_description-container {
  padding: 15px;
}

.module-person-accordion .module-person_photo-container {
  float: left;
  margin: 0 25px 15px 0;
}

@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;
}

.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-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;
  line-height: 1;
}

.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: #ff5000;
}

.module-person-details_title {
  display: block;
  font-size: 2.4rem;
}

.module-person-details_description-container {
  margin-top: 40px;
}

@media only screen and (max-width: 480px) {
  .module-person .module_item {
      text-align: center;
  }
}

.module-presentation .module_body {
  display: none;
}

/*------ 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: #333132;
  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: #333132;
  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: "Helvetica Neue LT W04", sans-serif !important; */
  font-family: "Figtree", sans-serif !important;
  font-weight: 400;
  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: #ff5000;
  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 Modules --------*/
.module-search-toggle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
}

.module-search-toggle_button {
  border: 1px solid rgba(51, 49, 50, 0.2);
  border-radius: 100%;
  padding: 12px 12px 10px;
  font-size: 1.6rem;
  background: transparent;
  color: #333132;
  cursor: pointer;
  width: 45px;
  height: 45px;
  line-height: 1;
}

.page-light .module-search-toggle_button {
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: #333132;
}

@media only screen and (max-width: 1555px) {
  .module-search-toggle {
      display: none;
  }
}

.module-search {
  position: relative;
  text-align: right;
  min-width: 350px;
}

.module-search .module_container--inner {
  position: relative;
}

.module-search--desktop {
  position: absolute;
  top: 100%;
  right: 0;
  display: none;
  padding: 15px;
  background: rgba(0, 0, 0, 0.4);
  z-index: 4;
}

.module-search--desktop.js--revealed {
  display: block;
}

.module-search--desktop .module-search_input[type="text"] {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.module-search--desktop .module-search_button {
  background: transparent url("../design/svg/search-h.svg");
  background-size: cover;
}

.module-search_input[type="text"] {
  display: inline-block;
  width: 100%;
  padding: 12px 10px 14px 45px;
  border: 1px solid rgba(172, 150, 139, 0.2);
  background: #fff;
  font-size: 1.6rem;
  margin: 0;
  border-radius: 100px;
  letter-spacing: 0.01em;
  color: #ac968b;
  height: auto;
}

.module-search_input[type="text"]::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

.module-search_input[type="text"]::-moz-placeholder {
  color: inherit;
  opacity: 1;
}

/* .module-search_input[type="text"]:-ms-input-placeholder {
color: inherit;
opacity: 1;
} */
.module-search_button {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 15px;
  height: 15px;
  padding: 0;
  border: 0;
  background: transparent url("../design/svg/search-h-grey.svg");
  background-size: cover;
  font-size: 0;
  cursor: pointer;
  outline-color: #fff !important;
}

.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: #333132;
  color: #333132;
}

.module-search-results .form_field {
  margin-bottom: 25px;
}

.module-search-results .form_field--date {
  position: relative;
}

.module-search-results .form_field--date:after {
  content: "\ea5f";
  position: absolute;
  top: 44px;
  right: 15px;
  font-family: "q4-icons" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  color: #ff5000;
  clear: both;
  display: table;
  font-size: 20px;
}

.module-search-results .form_field--search {
  margin-bottom: 35px;
}

.module-search-results .form_label {
  color: #333132;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  display: block;
  margin-bottom: 7px;
}

.module-search-results .form_select {
  color: #ff5000;
  font-size: 14px;
  width: 100%;
  min-width: auto;
  border-color: #333132;
  display: block !important;
}

.module-search-results .form_select + .sbHolder {
  display: none;
}

.module-search-results .form_input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  /* font-family: "Helvetica Neue LT W04", sans-serif; */
  font-family: "Figtree", sans-serif;
  width: 100%;
  border: 1px solid #333132;
  border-radius: 0;
  box-shadow: none;
  color: #333132;
  display: block;
  padding: 14.5px 20px;
  height: 49px;
  font-size: 16px;
}

.module-search-results_link {
  color: #ff5000;
  font-size: 18px;
  text-shadow: 0 1px 0 #ffffff;
  font-weight: 700;
  margin-bottom: 20px;
  display: inline-block;
  line-height: 1.66667;
}

.module-search-results_item {
  box-shadow: inset 0 1px 0 0 rgba(204, 201, 196, 0.3), inset 0 -1px 0 0 rgba(204, 201, 196, 0.3);
  padding: 30px 0;
}

.module-search-results_url,
.module-search-results_result a {
  word-wrap: break-word;
}

.module-search-results_url {
  display: none;
}

.module-search-results_result:after {
  content: "";
  display: table;
  clear: both;
}

.module-search-results_description {
  color: #333132;
  font-size: 16px;
  text-shadow: 0 1px 0 #ffffff;
  line-height: 1.625;
  font-weight: 400;
}

.module-search-results_summary {
  color: #333132;
  font-size: 20px;
  line-height: 21px;
  text-shadow: 1px 1px #ffffff;
  font-weight: 400;
  margin: 0 0 30px;
}

.module-search-results_summary span {
  color: #ff5000;
}

.module-search-results_pager {
  float: right;
  text-align: left;
}

.module-search-results .pager_text {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .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: auto;
  }
}

/*-------- SEC Module CSS --------*/
.module-sec .module_options-select {
  margin-right: 0;
}

.module-sec .module_header {
  display: block;
  background-color: #ff5000;
}

.module-sec .module_header-text {
  padding: 15px 8px;
  color: #fff;
}

.module-sec .module_item {
  padding: 0;
}

.module-sec .module_item ~ .module_item {
  border: 0;
}

.module-sec .module_item:nth-child(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.module-sec .module_item .grid_col {
  vertical-align: middle;
  padding: 10px 8px;
}

.module-sec .module_item .module-sec_filing {
  font-weight: bold;
}

@media only screen and (max-width: 768px) {
  .module-sec .module_options .grid_col:not(:first-child) {
      margin-top: 20px;
  }

  .module-sec .module_header {
      display: none;
  }

  .module-sec .module_header + .module_item {
      border-top: 2px solid #ff5000;
  }

  .module-sec .module_item {
      padding: 15px 0;
  }

  .module-sec .module_item:first-child {
      border-top: 2px solid #ff5000;
  }

  .module-sec .module_item:last-child {
      border-bottom: 2px solid #ff5000;
  }

  .module-sec .module_item .grid_col {
      padding: 0 5px;
  }

  .module-sec .module_item + .module_footer {
      border-bottom: 2px solid #ff5000;
  }
}

.module-sec_download-list-item {
  display: inline-block;
}

.module-sec_download-list .module_link {
  margin: 0;
}

.module-sec_download-list .q4icons_icon:before {
  font-size: 2.4rem;
}

@media only screen and (max-width: 768px) {
  .module-sec_date,
  .module-sec_filer,
  .module-sec_filing,
  .module-sec_description {
      margin-bottom: 15px;
  }
}

.module-sec-details_date,
.module-sec-details_description {
  margin-bottom: 15px;
}

.module-sec-details_download-list-item {
  display: inline-block;
}

.module-sec-details_download-list .module_link {
  margin: 0;
}

.module-sec-details_download-list .q4icons_icon:before {
  font-size: 2.4rem;
}

/*---- Accessibility Skip Link ---*/
.module-skip_link {
  position: absolute;
  top: -100px;
  left: 50%;
  padding: 15px 20px;
  background: transparent;
  color: white;
  transform: translate(-50%, 0);
  transition: 0.5s ease-in-out;
  z-index: 100;
}

.module-skip_link:focus,
.module-skip_link:active,
.module-skip_link:hover {
  top: 0;
  background: #ff5000;
  outline: 0;
}

.module-skip_link:visited {
  color: #fff;
}

.module-slider {
  position: relative;
}

.module-slider .module_container--outer {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.module-slider_item {
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 120px;
  padding-bottom: 120px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  height: 840px;
}

.module-slider_item h1 {
  max-width: 584px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.module-slider .module_container--inner {
  display: table-cell;
  vertical-align: middle;
  height: 390px;
}

.module-slider .slick-slider {
  padding: 0;
}

.module-slider .slick-slider .slick-slide {
  float: none;
  display: inline-block;
  vertical-align: middle;
  padding: 0;
}

.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;
  line-height: 1;
  margin-top: 10px;
}

.module-slider_description .module_date-time {
  font-size: inherit;
}

.module-slider_description p {
  margin: 10px 0;
}

.module-slider_description p:first-child {
  margin-top: 0;
  margin-bottom: 10px;
}

.module-slider_description .module_links {
  margin-top: 10px;
  margin-bottom: 0;
}

.module-slider .slick-dots {
  display: inline;
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
}

.module-slider .slick-dots button {
  width: 8px;
  height: 8px;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 100%;
  opacity: 1;
}

.module-slider .slick-dots .slick-active button {
  width: 12px;
  height: 12px;
  background: #ff5000;
  border-color: #ff5000;
  position: relative;
}

@media all and (-ms-high-contrast: none) {
  .module-slider .slick-dots .slick-active button *::-ms-backdrop,
  .module-slider .slick-dots .slick-active button:before {
      display: none;
  }
}

.module-slider .slick_autoplay-ctrl button {
  background: none;
  border: none;
  padding: 0;
  color: white;
  margin-right: 10px;
  vertical-align: middle;
}

.module-slider .slick_autoplay-ctrl button:before {
  font-family: "q4-icons" !important;
  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;
}

.module-slider .slick_autoplay-ctrl--play:before {
  content: "\ed85";
}

.module-slider .slick_autoplay-ctrl--pause:before {
  content: "\ed86";
}

@media only screen and (max-width: 768px) {
  .module-slider_item {
      height: 600px;
  }
}

/*------ Stock Chart Widget ------*/
.module-stock-chart .js--hidden[data-highcharts-chart] {
  display: block !important;
  max-height: 0;
  overflow: hidden;
}

.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 rect[fill="#CCC"] {
  fill: #767676 !important;
}

.module-stock-chart .highcharts-legend-item:first-child path {
  stroke: #ff5000;
}

.module-stock-chart .highcharts-legend-item:first-child text {
  cursor: default !important;
  color: #ff5000 !important;
  fill: #ff5000 !important;
}

.module-stock-chart .highcharts-series-0 {
  stroke: #ff5000;
}

.module-stock-chart .highcharts-series-0 path:first-child {
  stroke: #ff5000;
}

.module-stock-chart .highcharts-series-1 rect {
  fill: #ff5000;
}

.module-stock-chart .highcharts-series-3 path {
  stroke: #ff5000;
}

.module-stock-chart .highcharts-series-group .highcharts-series-2 path {
  stroke: #ff5000;
  stroke-width: 2px;
}

.module-stock-chart .highcharts-navigator rect {
  fill: rgba(255, 80, 0, 0.6);
}

.module-stock-chart .highcharts-navigator-handle {
  stroke: rgba(0, 0, 0, 0.05);
  fill: #f2f2f2;
  cursor: ew-resize;
}

.module-stock-chart .highcharts-navigator-handle-right rect,
.module-stock-chart .highcharts-navigator-handle-left rect {
  stroke-width: 0;
  fill: #ff5000;
}

.module-stock-chart .highcharts-navigator-handle-right path,
.module-stock-chart .highcharts-navigator-handle-left path {
  stroke: #fff;
}

.module-stock-chart .highcharts-highcharts-scrollbar g:first-of-type rect {
  fill: #ff5000;
  stroke: #ff5000;
}

.module-stock-chart .highcharts-range-selector {
  box-sizing: content-box;
}

.module-stock-chart .highcharts-range-input rect {
  stroke: #cccccc;
  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: #333132;
}

.module-stock-chart .highcharts-container > svg > .highcharts-button {
  display: none;
}

/*------ Stock Header Module -----*/
.module-stock-header {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.module-stock-header .grid--no-gutter {
  padding-top: 3px;
}

@media only screen and (max-width: 768px) {
  .module-stock-header {
      position: static;
      transform: none;
  }
}

.module-stock-header .module_container--outer {
  text-align: center;
  width: 100%;
  border-top: 1px solid #ffffff;
  position: relative;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 768px) {
  .module-stock-header .module_container--outer {
      max-width: none;
      min-height: auto;
      display: block;
      text-align: left;
  }
}

@media only screen and (max-width: 480px) {
  .module-stock-header .module_container--outer {
      padding-left: 0;
      padding-right: 0;
  }
}

@media only screen and (min-width: 1025px) {
  .module-stock-header .grid_col {
      padding: 0 0 0 10px;
  }
}

.module-stock-header_description1 {
  display: block;
  font-size: 1.8rem;
}

@media only screen and (max-width: 768px) {
  .module-stock-header_description1 {
      text-align: center;
      margin: 0;
  }
}

.module-stock-header_stock-price {
  display: block;
  font-size: 2.6rem;
}

.module-stock-header_currency {
  text-transform: uppercase;
  font-size: 1.8rem;
  font-weight: 500;
}

@media only screen and (max-width: 768px) {
  .module-stock-header_stock-price {
      text-align: center;
  }
}

.module-stock-header_change,
.module-stock-header_percent-change {
  display: inline-block;
  font-size: 1.8rem;
}

@media only screen and (max-width: 768px) {
  .module-stock-header_change,
  .module-stock-header_percent-change {
      margin: 0;
      display: block;
      text-align: center;
  }
}

@media only screen and (max-width: 480px) {
  .module-stock-header_change,
  .module-stock-header_percent-change {
      margin-bottom: 5px;
  }
}

.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_footer {
  border-top: 1px solid white;
  padding-top: 10px !important;
  margin-top: 5px;
}

.module-stock-header_description3,
.module-stock-header_date {
  font-size: 1.4rem;
  margin: 10px 0;
}

.module-stock-header_volume-text {
  display: none;
}

/*------ Stock Quote Module ------*/
.module-stock .module_options {
  margin-bottom: 30px;
}

.module-stock .module_container--content {
  border-top: 1px solid rgba(51, 49, 50, 0.2);
}

@media only screen and (max-width: 768px) {
  .module-stock.module-stock-historical .module-stock_empty {
      display: none;
  }
}

@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 .stock-historical-range .module_options > *:not(:last-of-type) {
  margin-bottom: 20px;
}

.module-stock_lookup-title {
  padding-left: 20px;
}

@media only screen and (max-width: 768px) {
  .module-stock_lookup-title {
      padding-left: 10px;
  }
}

@media only screen and (max-width: 480px) {
  .module-stock_lookup-title {
      padding-left: 5px;
  }
}

.module-stock_label,
.module-stock_value {
  border-bottom: 1px solid rgba(51, 49, 50, 0.2);
}

.module-stock_label > span,
.module-stock_value > span {
  display: block;
  padding: 10px 20px;
}

@media only screen and (max-width: 768px) {
  .module-stock_label > span,
  .module-stock_value > span {
      padding: 10px;
  }
}

@media only screen and (max-width: 480px) {
  .module-stock_label > span,
  .module-stock_value > span {
      padding: 10px 0 10px 5px;
  }
}

.module-stock_up {
  color: #23a217;
}

.module-stock_down {
  color: #b72121;
}

.module-stock_label {
  font-weight: normal;
}

.module-stock_date {
  margin-top: 25px;
  font-size: 1.4rem;
  font-style: italic;
}

.module-stock_date-text {
  margin-left: 20px;
}

@media only screen and (max-width: 768px) {
  .module-stock_date-text {
      margin-left: 10px;
  }
}

@media only screen and (max-width: 480px) {
  .module-stock_date-text {
      margin-left: 5px;
  }
}

.module-stock_delay {
  margin-top: 25px;
  font-size: 1.4rem;
  font-style: italic;
  text-align: right;
}

.module-stock_delay-text {
  margin-right: 20px;
}

@media only screen and (max-width: 768px) {
  .module-stock_delay-text {
      margin-right: 10px;
  }
}

@media only screen and (max-width: 480px) {
  .module-stock_delay {
      text-align: left;
      margin-top: 10px;
  }

  .module-stock_delay-text {
      margin-left: 5px;
      margin-right: 0;
  }
}

/*- MailingList Subscribe Module -*/
.module-subscribe_intro-footer {
  display: none;
}

.module-subscribe_table {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}

.module-subscribe_table tbody {
  width: 100%;
  display: block;
}

.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;
  font-size: 1.4rem;
}

.module-subscribe_mailing-list tr.module-subscribe_list-header td {
  padding-bottom: 15px;
}

.module-subscribe_mailing-list tr table td {
  padding-bottom: 5px;
}

.module-subscribe_mailing-list tr table tr:last-child td {
  padding-bottom: 0;
}

.module-subscribe .module_required {
  font-size: 1.4rem;
}

/* MailingList Unsubscribe Module */
.module-unsubscribe_table {
  width: 50%;
}

@media only screen and (max-width: 768px) {
  .module-unsubscribe_table {
      width: 100%;
  }
}

.module-unsubscribe_table td {
  padding-right: 10px;
}

@media only screen and (max-width: 768px) {
  .module-unsubscribe_table td {
      padding-right: 0;
  }
}

.module-unsubscribe_table label {
  display: inline-block;
  font-size: 1.4rem;
  margin-bottom: 5px;
}

/*==================================
----------- LAYOUT CSS -----------
==================================*/
/*------- iframe layout CSS ------*/
.layout--iframe .pane--content .module {
  padding: 37.5px 0;
}

.layout--iframe .pane--content .module_container--outer {
  max-width: none;
}

/*==================================
------------ BLANK CSS -----------
==================================*/
/*-------- Layout Specific -------*/
.layout_inner {
  overflow-x: hidden;
  position: relative;
}

.layout:before {
  content: "";
  display: block;
  position: fixed;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: 0.3s ease-in-out;
}

.layout.js--overlay-active:before {
  z-index: 6;
  opacity: 1;
}

.layout_header {
  padding-top: 145px;
}

/* Kept just in case the client wants to remove the video - the styling is in accordance with the design
.layout--home .pane--banner {
background-image: url("../design/banner/landing.jpg");
height: 530px;
display: flex;
justify-content: center;
align-items: center;
position: relative;
}
.layout--home .pane--banner .pane_inner {
width: 100%;
text-align: center;
height: auto;
margin-left: inherit;
margin-right: inherit;
position: static;
}
*/
.layout--home .pane--banner .pane_inner {
  max-width: none;
  padding: 0;
}

.layout--home .module-page-title h1 {
  color: #fff;
  font-weight: 700;
}

@media only screen and (max-width: 1555px) {
  .layout.js--mobile {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      overflow: hidden;
  }

  .layout_header {
      padding-top: 56.5px;
  }
}

@media only screen and (max-width: 768px) {
  /*
.layout--home .pane--banner {
    height: 450px;
}
*/
}

/*--------- Pane Specific --------*/
.pane--header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  z-index: 10;
}

.page-light .pane--header {
  background-color: #fff;
}

.pane--header .pane_inner {
  padding-left: 30px;
  padding-right: 30px;
}

.pane--header .module,
.pane--header .nav {
  vertical-align: middle;
}

.pane--header .module-logo {
  line-height: 1;
  width: 294px;
}

.pane--header .module-logo_image--orange {
  display: none;
}

.page-light .module-logo_image--orange {
  display: block;
}

.page-light .module-logo_image--dark {
  display: none;
}

.pane--header .layout_toggle {
  display: none;
  text-align: right;
  line-height: 1;
}

.pane--header .layout_toggle-button {
  font-size: 3rem;
  background: transparent;
  color: #9c9c9c;
  padding: 0;
  border: 0 none;
  position: relative;
  top: 2px;
  line-height: 1;
}

.pane--header .layout_toggle [class^="q4-icon_"] {
  display: flex;
}

.pane--header .layout_toggle [class^="q4-icon_"]:focus {
  outline: none;
}

.js--mobile .pane--header .layout_toggle [class^="q4-icon_"]:before {
  content: "\ed6d";
}

@media only screen and (max-width: 1555px) {
  .pane--header {
      padding: 10px 0;
  }

  .pane--header .pane_inner {
      padding-left: 20px;
      padding-right: 20px;
  }

  .pane--header .module {
      vertical-align: middle;
  }

  .pane--header .module-logo {
      width: calc(100% - 50px);
  }

  .pane--header .module-logo img {
      max-width: 240px;
      width: 100%;
  }

  .pane--header .layout_toggle {
      display: inline-block;
      width: 50px;
  }

  .page-light .layout_toggle-button {
      color: #333132;
  }

  .pane--header .nav,
  .pane--header .module-search {
      display: none;
  }
}

.pane--banner {
  background-color: #f3f3f3;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: #fff;
}

.page-no-banner .pane--banner {
  height: auto;
  padding-top: 0;
}

.page-no-banner .pane--banner .pane_inner {
  padding: 0;
  max-width: 100%;
}

.page-contact .pane--banner {
  /* padding-top: 80px; */
}

.page-content-breadcrumb.page-about-us .pane--banner {
  position: relative;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/about-us/banner-about-v2.jpg");
}

.page-content-breadcrumb.page-governance .pane--banner {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../design/banner/banner-governance.jpg");
}

.page-content-breadcrumb.page-sustainability .pane--banner {
  background-position: center;
  position: relative;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../design/banner/banner-sustainability2.jpg");
}

.page-content-breadcrumb.page-about-us .pane--banner .pane_inner,
.page-content-breadcrumb.page-sustainability .pane--banner .pane_inner {
  position: static;
}

.page-content-breadcrumb.page-investors .pane--banner {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../design/banner/b_takterrasse-3-_utsyn_fra_takterrasse_St23-0935-3.jpg");
  position: relative;
  background-position: 50% 60%;
}

.page-content-breadcrumb.page-investors .pane--banner .pane_inner {
  position: static;
  padding-top: 100px;
  padding-bottom: 100px;
}

.page-content-breadcrumb.page-people .pane--banner {
  padding-top: 80px;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/people/banner-people.jpg");
}

.page-content-breadcrumb.page-home-for-home .pane--banner {
  background-position: bottom right;
  background-image: url("../images/home-for-home/banner-home-for-home.jpg");
}

.page-content-breadcrumb .pane--banner {
  height: 470px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-content-breadcrumb .pane--banner .pane_inner {
  width: 100%;
  text-align: center;
  height: auto;
  margin-left: inherit;
  margin-right: inherit;
}

@media only screen and (max-width: 768px) {
  .page-content-breadcrumb .pane--banner {
      height: 450px;
  }
}

.pane--banner .pane_inner {
  position: relative;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 50px;
  padding-bottom: 70px;
  height: 100%;
}

.pane--banner .module-breadcrumb {
  font-size: 1.2rem;
  color: #9c9c9c;
  position: absolute;
  bottom: 30px;
  left: 20px;
}

.pane--banner h1 {
  margin: 0;
}

@media only screen and (max-width: 1555px) {
  .pane--banner {
      height: auto;
  }
}

@media only screen and (max-width: 768px) {
  .page-content-breadcrumb.page-investors .pane--banner .pane_inner {
      position: static;
      padding-top: 50px;
      padding-bottom: 113px;
  }
}

.pane--navigation {
  background: #ff5000;
  display: none;
}

.pane--navigation .module-nav-logo .module_container--inner {
  display: flex;
  justify-content: space-between;
  padding-bottom: 44px;
}

.pane--navigation .module-nav-logo .module_container--inner a {
  max-width: 240px;
  width: calc(100% - 50px);
}

.pane--navigation .layout_toggle-button {
  vertical-align: top;
  padding-top: 2px;
}

.pane--navigation .layout_toggle [class^="q4-icon_"] {
  display: flex;
}

.pane--navigation .module-nav-logo .module_container--inner .layout_toggle-button {
  font-size: 1.8rem;
  background: transparent;
  color: #ff5000;
  padding: 0;
  border: 0 none;
  position: relative;
  top: 2px;
  line-height: 1;
  margin-right: 10px;
}

.pane--navigation .module-search {
  display: none;
}

@media only screen and (max-width: 1555px) {
  .pane--navigation {
      position: fixed;
      display: none;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      transition: 0.5s ease-in-out;
      overflow-y: scroll;
      padding: 15px 20px 80px;
      z-index: 11;
      background: #fff;
  }

  .js--mobile .pane--navigation {
      display: block;
  }

  .pane--navigation .pane_inner {
      padding: 0;
  }

  .pane--navigation .module-search {
      display: block;
      min-width: auto;
  }
}

.pane--breadcrumb {
  background: #ff5000;
}

.pane--breadcrumb .pane_inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

@media only screen and (max-width: 1555px) {
  .pane--breadcrumb .pane_inner {
      max-width: none;
  }
}

.pane--left .pane_inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.pane--content .module {
  padding-top: 90px;
  padding-bottom: 90px;
}

.container,
.pane--content .module_container--outer {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.pane--content .module--no-container .module_container--outer {
  max-width: 100%;
  padding: 0;
}

.pane--content .module--narrow .module_container--outer {
  max-width: 1100px;
}

.pane--content .module--thin {
  padding-top: 45px;
  padding-bottom: 45px;
}

.pane--content .module--thin-top {
  padding-top: 45px;
}

.pane--content .module--thin-bottom {
  padding-bottom: 45px;
}

.pane--content .module--md {
  padding-top: 75px;
  padding-bottom: 75px;
}

.pane--content .module--md-top {
  padding-top: 75px;
}

.pane--content .module--md-bottom {
  padding-bottom: 75px;
}

.pane--content .module--thick {
  padding-top: 112px;
  padding-bottom: 112px;
}

.pane--content .module--thick-top {
  padding-top: 112px;
}

.pane--content .module--thick-bottom {
  padding-bottom: 112px;
}

.pane--content .module--thicker {
  padding-top: 150px;
  padding-bottom: 150px;
}

.pane--content .module--thicker-top {
  padding-top: 150px;
}

.pane--content .module--thicker-bottom {
  padding-bottom: 150px;
}

.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-breadcrumb {
  padding: 36px 0 0;
  font-size: 1.2rem;
  color: #9c9c9c;
}

.page-people .pane--content .module-breadcrumb {
  background-color: #f3f3f3;
}

@media only screen and (max-width: 768px) {
  .pane--content .module {
      padding-top: 70px;
      padding-bottom: 70px;
  }

  .pane--content .module--thin {
      padding-top: 30px;
      padding-bottom: 30px;
  }

  .pane--content .module--thin-top {
      padding-top: 30px;
  }

  .pane--content .module--thin-bottom {
      padding-bottom: 30px;
  }

  .pane--content .module--md {
      padding-top: 50px;
      padding-bottom: 50px;
  }

  .pane--content .module--md-top {
      padding-top: 50px;
  }

  .pane--content .module--md-bottom {
      padding-bottom: 50px;
  }

  .pane--content .module--thick {
      padding-top: 90px;
      padding-bottom: 90px;
  }

  .pane--content .module--thick-top {
      padding-top: 90px;
  }

  .pane--content .module--thick-bottom {
      padding-bottom: 90px;
  }

  .pane--content .module--thicker {
      padding-top: 120px;
      padding-bottom: 120px;
  }

  .pane--content .module--thicker-top {
      padding-top: 120px;
  }

  .pane--content .module--thicker-bottom {
      padding-bottom: 120px;
  }

  .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-sitemap {
  padding-bottom: 37.5px;
}

.pane--footer {
  padding-bottom: 60px;
  font-size: 1.4rem;
}

.page-portfolio .pane--footer .FooterPaneDiv {
  padding: 0;
}

.pane--footer .pane_inner {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.pane--footer .FooterPaneDiv {
  display: block;
  background: #f3f3f3;
  padding: 43px 44px;
}

.pane--footer .module-contact .module_container--outer {
  padding-left: 59px;
}

.pane--footer .module-contact_intro {
  margin-bottom: 30px;
}

.pane--footer .module-contact_info {
  display: flex;
  font-size: 1.6rem;
}

.pane--footer .module-contact_info-person {
  width: 200px;
}

.pane--footer .module-contact_info-link {
  width: calc(100% - 200px);
}

.pane--footer .module-contact .q4icons_icon {
  color: rgba(51, 51, 51, 0.2);
  padding-right: 15px;
}

.pane--footer .module-contact .q4icons_icon--tel:before {
  content: "\e923";
}

@media only screen and (max-width: 1024px) {
  .pane--footer .module-contact .module_container--outer {
      padding-left: 0;
  }
}

@media only screen and (max-width: 768px) {
  .pane--footer .module-contact_info {
      display: block;
  }

  .pane--footer .module-contact_info-person {
      width: 100%;
  }

  .pane--footer .module-contact_info-link {
      width: 100%;
  }
}

.pane--footer .module_title {
  margin-bottom: 6px;
  font-size: 1.6rem;
  letter-spacing: 0.01em;
  line-height: 1.5;
  font-weight: 500;
}

.pane--footer .module_error-container {
  margin-bottom: 20px;
}

.pane--footer .module_error-container li {
  margin-bottom: 16px;
}

.pane--footer .module-links {
  text-transform: uppercase;
}

.pane--footer .module-links li {
  line-height: 1.4;
}

.pane--footer .module-subscribe {
  position: relative;
  padding-right: 21px;
}

.pane--footer .module-subscribe--footer-message .module_container--inner,
.pane--footer .module-subscribe .module_title {
  padding-left: 100px;
}

.pane--footer .module-subscribe:after {
  font-family: "q4-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e924";
  color: #ff5000;
  position: absolute;
  top: -12px;
  left: 0;
  font-size: 5rem;
}

.pane--footer .module-subscribe_intro-default {
  display: none;
}

.pane--footer .module-subscribe_tables-wrap {
  position: relative;
}

.pane--footer .module-subscribe_email 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-subscribe_list-header,
.pane--footer .module-subscribe_email .module_required,
.pane--footer .module-subscribe_mailing-list,
.pane--footer .module-subscribe .CaptchaContainer {
  display: none;
}

.pane--footer .module-subscribe table {
  width: 100%;
}

.pane--footer .module-subscribe_form tbody {
  display: block;
}

.pane--footer .module-subscribe_form tr {
  width: 100%;
  margin: 0;
}

.pane--footer .module-subscribe_mailing-list {
  margin: 20px 0 10px;
}

.pane--footer .module-subscribe_list {
  width: 100%;
  display: block;
}

.pane--footer .module-subscribe_list table tr {
  width: 50%;
  display: inline-block;
}

@media only screen and (max-width: 768px) {
  .pane--footer .module-subscribe_list table tr {
      width: auto;
      display: block;
  }
}

.pane--footer .module-subscribe_list > td {
  padding: 0;
  width: 100%;
  display: block;
}

.pane--footer .module-subscribe_mailing-list.js--revealed {
  display: block;
}

.pane--footer .module-subscribe .module-subscribe_table.module-subscribe_form {
  padding-right: 190px;
}

.pane--footer .module-subscribe .module_actions {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
}

.pane--footer .module-subscribe .button {
  min-width: 183px;
  padding: 17px 28px;
  line-height: 1.5;
  height: auto;
}

@media only screen and (max-width: 1024px) {
  .pane--footer .module-subscribe {
      padding-right: 0;
      width: 100%;
      padding-bottom: 60px;
      margin-bottom: 50px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }

  .pane--footer .module-subscribe .module-subscribe_table.module-subscribe_form {
      padding-right: 0;
  }

  .pane--footer .module-subscribe_form tr {
      padding-right: 0;
  }

  .pane--footer .module-subscribe .module_actions {
      position: static;
      padding-top: 20px;
  }
}

@media only screen and (max-width: 768px) {
  .pane--footer .module-subscribe .module_title {
      padding-top: 11px;
  }

  .pane--footer .module-subscribe:after {
      top: 0;
  }

  .pane--footer .module-subscribe .button {
      width: 100%;
  }

  .pane--footer .module-subscribe_intro-footer {
      padding-left: 0;
      padding-top: 20px;
  }
}

.pane--footer .module_input[type="text"],
.pane--footer .module_input[type="email"] {
  background: #fff;
  padding: 20px 24px;
  border-color: #dfdfdf;
  height: auto;
}

@media only screen and (max-width: 768px) {
  .pane--footer .FooterPaneDiv {
      padding: 38px 20px;
  }
}

.pane--credits {
  padding-bottom: 36px;
  text-align: center;
  font-size: 1.4rem;
  letter-spacing: 0.2px;
  line-height: 1.2;
}

.pane--credits .pane_inner {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.pane--credits a {
  color: rgba(0, 0, 0, 0.5);
}

.pane--credits .button {
  color: #fff;
  border: none;
  background-color: #ff5000;
}

/*--------- Page Specific --------*/
.page--no-alternating .pane--content {
  padding: 35px 0;
}

.page--no-alternating .module {
  padding-top: 37.5px;
  padding-bottom: 37.5px;
}

/*-------- Module Specific -------*/
.module-overview p {
  margin-bottom: 40px;
}

.module-overview_hidden {
  display: none;
}

.module-overview_hidden.js--revealed {
  display: block;
}

.module-overview_button:before {
  content: "Read More";
}

.module-overview_button.js--active:before {
  content: "Show Less";
}

.module-why-invest_column {
  text-align: center;
  padding: 0 20px;
}

.module-why-invest_value {
  margin-top: 0;
  color: #ff5000;
  margin-bottom: 13px;
  font-size: 56px;
  line-height: 1.2;
}

.module-why-invest_desc {
  font-size: 26px;
  line-height: 1.2;
  margin: 0;
}

@media only screen and (max-width: 480px) {
  .module-why-invest_value {
      font-size: 36px;
  }

  .module-why-invest_desc {
      font-size: 20px;
  }
}

.module-cta {
  position: fixed;
  z-index: 1000;
  right: 20px;
  bottom: 20px;
}

.module-cta [class*="q4-icon_"]:before {
  font-size: 16px;
  margin-right: 10px;
  vertical-align: sub;
}

.module-cta .button--cookie {
  color: black;
  position: absolute;
  right: -10px;
  top: -10px;
  cursor: pointer;
  z-index: 1;
  background-color: white;
  width: 20px;
  height: 20px;
  border-radius: 100%;
}

.module-cta .button--cookie [class*="q4-icon_"]:before {
  font-size: 10px;
  line-height: 20px;
  text-align: center;
  display: block;
  margin: auto;
}

.module-footer-social {
  padding-bottom: 30px;
}

.module-footer-social .module_container--inner {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e4e4e4;
  padding-bottom: 30px;
  align-items: center;
}

.module-footer-social_links {
  display: flex;
  align-items: center;
}

.module-footer-social_links span {
  display: inline-block;
  margin-right: 20px;
  color: rgba(0, 0, 0, 0.8);
}

.module-footer-social_links li {
  display: inline-block;
  margin: 0 10px;
  font-size: 3rem;
}

.module-footer-social_links li:last-child {
  margin-right: 0;
}

.module-footer-social_links li a {
  color: rgba(0, 0, 0, 0.2);
}

.module-footer-social_links li a:hover {
  text-decoration: none;
}

@media only screen and (max-width: 1024px) {
  .module-footer-social .module_container--inner {
      display: block;
      padding-bottom: 50px;
  }

  .module-footer-social_logo {
      text-align: left;
      padding-bottom: 50px;
  }

  .module-footer-social_links {
      display: block;
      text-align: left;
  }

  .module-footer-social_links span {
      display: block;
      margin-right: 0;
      padding-bottom: 35px;
  }

  .module-footer-social_links li {
      display: inline-block;
      margin: 0 20px;
      font-size: 4rem;
  }

  .module-footer-social_links li:first-child {
      margin-left: 0;
  }

  .module-footer-social_links li:last-child {
      margin-right: 0;
  }
}

.copyright .module_container--inner {
  display: flex;
}

.copyright_text {
  width: 50%;
  text-align: left;
  color: rgba(0, 0, 0, 0.5);
}

.copyright_links {
  display: flex;
  justify-content: end;
  width: 100%;
  font-size: 1.2rem;
}

.copyright_links ul {
  display: flex;
}

.copyright_links li {
  display: inline-block;
  padding: 0 10px;
  position: relative;
}

.copyright_links li:before {
  content: "|";
  position: absolute;
  left: 0;
  top: 0;
}

.copyright_links li:first-child:before {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .copyright .module_container--inner {
      flex-wrap: wrap;
  }

  .copyright_text {
      width: 100%;
      order: 2;
      text-align: left;
      padding-bottom: 36px;
  }

  .copyright_links {
      display: block;
      text-align: left;
      padding-bottom: 20px;
      order: 1;
      width: 100%;
  }

  .copyright_links ul {
      display: block;
  }

  .copyright_links li {
      display: block;
      padding: 10px 0;
      position: relative;
  }

  .copyright_links li:before {
      display: none;
  }
}

.module-q4-credits {
  text-align: right;
}

@media only screen and (max-width: 1024px) {
  .module-q4-credits {
      text-align: left;
  }
}

.module-overlay_item {
  cursor: pointer;
}

.module_overlay-close,
.module_popup-close {
  display: none;
  position: absolute;
  top: 45px;
  right: 45px;
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s ease-in-out;
}

.module_overlay-close:hover,
.module_popup-close:hover {
  color: #ff5000;
}

.js--overlay .module_popup-close,
.js--overlay .module_overlay-close {
  display: block;
}

.module-overlay .module-overlay_box,
.module-overlay_box-wider {
  background: rgba(255, 255, 255, 0.95);
  padding: 63px 70px 36px;
  max-width: 486px;
  width: 100%;
  transition: max-width 0.3s ease-in;
  box-shadow: 0px 5px 54px rgba(0, 0, 0, 0.07);
  position: relative;
  cursor: pointer;
}

.module-overlay_box-props {
  max-width: 600px;
  cursor: default;
}

.js--overlay .module-overlay_box {
  max-width: 766px;
  padding-right: 125px;
  padding-bottom: 50px;
}

.js--overlay .module-overlay_box br,
.js--overlay .module-overlay_box .module_round-button,
.js--overlay .module-overlay_box .module_active-hidden-box {
  display: none;
}

@media only screen and (max-width: 768px) {
  .module-overlay .module-overlay_box {
      padding: 40px 30px 36px;
  }

  .js--overlay .module-overlay_box {
      max-width: 766px;
      padding-right: 50px;
  }
}

@media only screen and (max-width: 768px) {
  .module_overlay-close {
      top: 20px;
      right: 20px;
  }
}

.module_box-hidden {
  display: none;
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.62;
}

.js--overlay .module_box-hidden {
  display: block;
}

.module-values-landing .module_title {
  margin-bottom: 50px;
}

.module-values-landing img {
  margin-bottom: 30px;
}

.module-values-landing h3 {
  margin-bottom: 30px;
  margin-top: 0;
}

.module-values-landing .module_round-button {
  margin: 0 auto;
}

.module-values-landing .overlay {
  height: 100%;
}

.module-values-landing .js--overlay img {
  max-width: 85px;
  width: 100%;
}

.module-values-landing .js--overlay h3 {
  color: #ff5000;
  margin-bottom: 17px;
}

.module-values-landing .js--overlay .module-overlay_item {
  padding: 50px 30px 30px;
  border: none;
  border-bottom: 3px solid #ff5000;
}

.module-values-landing .js--overlay .module_round-button {
  display: none;
}

.module-values-landing .module-overlay_item {
  background: #fff;
  height: 100%;
  cursor: pointer;
  border: 2px solid #f3f3f3;
  padding: 70px 45px 40px;
}

.module-values-landing .module-overlay .overlay {
  height: 100%;
}

@media only screen and (max-width: 1024px) {
  .module-values-landing .grid_col {
      margin-bottom: 30px;
  }

  .module-values-landing .js--overlay .module-overlay_item {
      padding: 27px;
  }

  .module-values-landing .module-overlay_item {
      padding: 27px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      position: relative;
  }

  .module-values-landing .module-overlay_item img {
      max-width: 52px;
      margin-bottom: 0;
  }

  .module-values-landing .module-overlay_item h3 {
      margin-bottom: 0;
      padding-left: 40px;
  }

  .module-values-landing .module-overlay_item .module_box-hidden {
      padding-top: 30px;
  }

  .module-values-landing .module-overlay_item .module_round-button {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      right: 27px;
  }
}

.module_round-button {
  background: #fff;
  padding: 10px;
  border-radius: 100%;
  height: 40px;
  width: 40px;
  font-size: 1.4rem;
  color: #ff5000;
  box-shadow: 0px 5px 45px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.module_round-button:hover {
  background-color: #ff5000;
  color: #fff;
}

.js--overlay {
  position: relative;
  z-index: 7;
}

.module-landing-intro {
  position: relative;
}

/*.module-landing-intro::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 550px;
max-width: calc(100% - 80px);
height: 1px;
background-color: #333132;
opacity: 0.15; } */
.module-landing-intro .module_container--inner {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

.module-landing-intro .h4 {
  margin: -30px 0 0;
}

.module-landing-intro .button {
  margin-top: 15px;
}

.module-portfolio .grid .grid_col {
  margin-bottom: 0;
}

.module-portfolio_image-box {
  background: #f3f3f3;
  padding-bottom: 20px;
  height: 100%;
}

.module-portfolio_image-box h5 {
  margin-top: 0;
  padding: 20px 15px 0;
}

.module-portfolio_image-box p {
  padding: 0 15px;
}

.module-portfolio .grid--projects .grid_col {
  margin-bottom: 20px;
}

.module-portfolio_title-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 50px;
}

.module-portfolio .module_title {
  margin-bottom: 50px;
}

@media only screen and (max-width: 1024px) {
  .module-portfolio .grid .grid_col:not(:last-child) {
      margin-bottom: 55px;
  }
}

@media only screen and (max-width: 768px) {
  .module-portfolio_title-wrap {
      display: block;
      text-align: center;
  }
}

.module-hover-box {
  position: relative;
}

.module-hover-box_item {
  background: #fff;
  padding: 48px 50px 70px;
}

/* 00206571 */
.module-hover-box_item-inner {
  height: 230px;
}

.overlay.module-overlay.js--overlay .module-hover-box_item-inner {
  height: auto;
}

/*  00206571 */
.module-hover-box_value {
  font-weight: 400 !important;
  font-size: 5.6rem;
  margin-top: 40px;
  margin-bottom: 0;
  line-height: 0.65;
  color: #ff5000;
}

/* 00206571 */
.module-hover-box_unit {
  font-size: 2.5rem;
}

.module-hover-box .overlay {
  position: relative;
}

.module-hover-box_hidden {
  display: none;
  margin: 0;
  padding-top: 11px;
  font-size: 2.2rem;
  line-height: 1.55;
}

.module-hover-box .module_round-button {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
}

.module-hover-box .js--overlay .module_round-button {
  display: none;
}

.module-hover-box .js--overlay .module-hover-box_hidden {
  display: block;
}

@media only screen and (max-width: 1555px) {
  .module-hover-box .grid_col {
      width: 100%;
      margin-bottom: 43px;
  }

  .module-hover-box_item {
      padding: 48px 44px 70px;
  }

  .module-hover-box_item-inner {
      height: auto;
  }
}

@media only screen and (max-width: 480px) {
  .module-hover-box_item {
      padding: 48px 25px 70px;
  }
}

.module-strategy-intro .module_container--inner {
  max-width: 740px;
  margin: 0 auto;
  width: 100%;
}

.module-strategy-intro .button {
  margin-top: 20px;
}

.module-working h2 {
  margin-top: 32px;
  margin-bottom: 22px;
}

.module-working .button {
  margin-top: 5px;
}

@media only screen and (max-width: 768px) {
  .module-working .grid_col + .grid_col {
      padding-top: 30px;
  }
}

.module-history_intro {
  max-width: 641px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 35px;
}

.module-history_years.slick-slider {
  padding: 0 40px;
}

.module-history_years .slick-arrow:before {
  font-size: 1rem;
  color: #ff5000;
}

.module-history_years-item {
  position: relative;
}

.module-history_years-item:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  border-top: 1px dashed #ac968b;
}

.module-history_years-item--1998:before {
  left: 40px;
}

.module-history_years-item--2021:before {
  right: 40px;
}

.module-history_years-item-container {
  padding: 30px;
}

.module-history_year-text {
  width: 90px;
  height: 90px;
  box-shadow: 0px 5px 14px rgba(0, 0, 0, 0.07);
  background: #fff;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  margin: 0 auto;
  font-size: 2rem;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
}

.slick-current .module-history_year-text {
  width: 115px;
  height: 115px;
  color: #fff;
  font-size: 2.6rem;
  line-height: 1.38;
  background: #ff5000;
}

.slick-current .module-history_year-text:before {
  content: "";
  width: 142px;
  height: 142px;
  border-radius: 100%;
  background: rgba(255, 80, 0, 0.13);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100%;
}

.slick-current .module-history_year-text:after {
  content: "";
  width: 168px;
  height: 168px;
  background: rgba(255, 80, 0, 0.1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100%;
}

.slick-current .module-history_year-text-inner {
  position: relative;
  z-index: 2;
}

.module-history .module_container--content.slick-slider {
  padding: 20px 0 0;
  max-width: 373px;
  margin: 0 auto;
}

.module-history .module_container--content.slick-slider .module_item {
  padding: 0;
  font-size: 1.6rem;
}

.module-core-ambitions {
  height: 730px;
}

.module-core-ambitions .module_container--inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.module-core-ambitions .module_title {
  margin-bottom: 82px;
}

.module-core-ambitions .h6 {
  margin-top: 0;
  margin-bottom: 20px;
}

.module-core-ambitions .module_round-button {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.module-core-ambitions .overlay {
  margin: 0 5px;
  width: 23%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  height: 400px;
  color: #fff;
  transition: 0.2s ease-in-out;
}

.module-core-ambitions .overlay .module-overlay_item {
  padding: 224px 37px 40px;
  height: 100%;
}

.module-core-ambitions .overlay--customers {
  background-image: url("../images/strategy/customers-image.jpg");
}

.module-core-ambitions .overlay--employees {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/strategy/excellence-work.jpg");
}

.module-core-ambitions .overlay--society {
  background-image: url("../images/strategy/society-image.jpg");
}

.module-core-ambitions .overlay--commercial {
  background-image: url("../images/strategy/commercial-image.jpg");
}

@media only screen and (max-width: 1555px) {
  .module-core-ambitions .overlay .module-overlay_item {
      padding: 180px 37px 40px;
  }
}

.module-core-ambitions .js--overlay {
  width: 28%;
  background-image: none;
  background-color: #ac968b;
  height: 430px;
}

.module-core-ambitions .js--overlay .module-overlay_item {
  padding: 78px 37px 40px;
}

.module-core-ambitions .js--overlay .module_round-button {
  display: none;
}

@media only screen and (max-width: 1555px) {
  .module-core-ambitions {
      height: auto;
  }

  .module-core-ambitions .module_container--inner {
      flex-wrap: wrap;
  }

  .module-core-ambitions .overlay {
      margin-bottom: 30px;
      width: 48%;
  }
}

@media only screen and (max-width: 1024px) {
  .module-core-ambitions .module_title {
      margin-bottom: 42px;
  }
}

@media only screen and (max-width: 768px) {
  .module-core-ambitions .overlay {
      width: 100%;
  }

  .module-core-ambitions .js--overlay .module-overlay_item {
      padding: 48px 20px 30px;
  }
}

.module--small-container .module_container--inner {
  max-width: 863px;
  margin: 0 auto;
  width: 100%;
}

.module_box {
  padding: 0 52px 60px 60px;
  height: 100%;
}

@media only screen and (max-width: 1024px) {
  .module_box {
      padding: 0 20px 30px 20px;
  }
}

.module-efficient {
  background: url("../images/about-us/efficient-background2.jpg") no-repeat center center;
  background-size: cover;
}

.module-efficient .module_box-hidden {
  font-size: 1.8rem;
  line-height: 1.67;
}

.module-mindset {
  background: url("../images/sustainability/background-sustainable-strategy.jpg") no-repeat center center;
  background-size: cover;
}

.module-mindset .module_box-hidden {
  font-size: 1.8rem;
  line-height: 1.67;
}

.module-strategic-pillars .module_container--inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}

.module-strategic-pillars .module-overlay_hover-box {
  padding: 74px 25px 38px;
}

.module-strategic-pillars .overlay {
  background: #fff;
  width: 23%;
  border: 2px solid #f3f3f3;
  cursor: pointer;
  transition: border 0.3s ease-in-out;
}

.module-strategic-pillars .overlay:hover {
  border-color: #fff;
  box-shadow: 0px 5px 54px rgba(0, 0, 0, 0.07);
}

.module-strategic-pillars .overlay:hover .module_round-button {
  background: #ff5000;
  color: #fff;
}

.module-strategic-pillars .overlay.js--overlay {
  width: 100%;
  padding: 0 140px 50px 542px;
  text-align: left;
  border: none;
  position: absolute;
  left: 0;
}

.module-strategic-pillars .overlay.js--overlay .module-overlay_title-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.module-strategic-pillars .overlay.js--overlay .module-overlay_title-wrap img {
  max-width: 90px;
  width: 100%;
}

.module-strategic-pillars .overlay.js--overlay .module-overlay_title-wrap .h3 {
  max-width: calc(100% - 90px);
  padding-left: 30px;
  margin: 0;
}

.module-strategic-pillars .overlay.js--overlay .module-overlay_hover-box:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 415px;
  bottom: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.module-strategic-pillars .overlay.js--overlay .module-overlay_hover-box--care:before,
.module-strategic-pillars .overlay.js--overlay .module-overlay_hover-box--customer:before {
  background-image: url("../images/strategy/customer-care.jpg");
}

.module-strategic-pillars .overlay.js--overlay .module-overlay_hover-box--friendly:before {
  background-image: url("../images/strategy/friendly-workplace.jpg");
}

.module-strategic-pillars .overlay.js--overlay .module-overlay_hover-box--sustainable:before {
  background-image: url("../images/strategy/sustainable-mindset.jpg");
}

.module-strategic-pillars .overlay.js--overlay .module-overlay_hover-box--financial:before {
  background-image: url("../images/strategy/financial-strength.jpg");
}

.module-strategic-pillars .overlay.js--overlay .module-overlay_hover-box--society:before {
  background-image: url("../images/strategy/financial-image.jpg");
}

.module-strategic-pillars .overlay.js--overlay .module-overlay_hover-box--governance:before {
  background-image: url("../images/strategy/financial-image.jpg");
}

.module-strategic-pillars .overlay.js--overlay .module_round-button {
  display: none;
}

@media only screen and (max-width: 1555px) {
  .module-strategic-pillars .overlay.js--overlay {
      padding: 70px 70px 84px 280px;
  }

  .module-strategic-pillars .overlay.js--overlay .module-overlay_hover-box:before {
      width: 250px;
  }
}

@media only screen and (max-width: 768px) {
  .module-strategic-pillars .overlay.js--overlay {
      padding: 320px 20px 30px 20px;
  }

  .module-strategic-pillars .overlay.js--overlay .module_popup-close {
      top: 292px;
      right: 22px;
  }

  .module-strategic-pillars .overlay.js--overlay .h3 {
      font-size: 3rem;
  }

  .module-strategic-pillars .overlay.js--overlay .module-overlay_hover-box:before {
      width: 100%;
      height: 280px;
  }
}

.module-strategic-pillars--sustainability {
  text-align: center;
}

.module-strategic-pillars--sustainability .module-overlay_hover-box {
  height: 100%;
  position: relative;
  padding-bottom: 80px;
}

.module-strategic-pillars--sustainability .module-overlay_hover-box .module_round-button {
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
}

.module-strategic-pillars--sustainability .overlay {
  width: 18%;
}

.module-strategic-pillars--sustainability .overlay.js--overlay {
  padding: 0 30px 50px 30px;
  position: absolute;
}

.module-strategic-pillars--sustainability .overlay.js--overlay .module-overlay_hover-box {
  height: auto;
  position: static;
  padding-bottom: 30px;
}

.module-strategic-pillars--sustainability .overlay.js--overlay .module-overlay_hover-box h3 {
  font-size: 2.8rem;
}

.module-strategic-pillars--sustainability .overlay.js--overlay .module-overlay_hover-box:before {
  display: none;
}

@media only screen and (max-width: 1555px) {
  .module-strategic-pillars--sustainability .overlay.js--overlay {
      padding: 0 30px 50px 30px;
  }
}

@media only screen and (max-width: 768px) {
  .module-strategic-pillars--sustainability .overlay.js--overlay {
      padding: 0 30px 50px 30px;
  }

  .module-strategic-pillars--sustainability .overlay.js--overlay .module_popup-close {
      top: 20px;
      right: 20px;
  }
}

.module-strategic-pillars--sustainability .overlay .h3 {
  font-size: 23px;
  font-weight: 400;
  margin: 25px 0 35px;
}

.module-strategic-pillars .module_round-button {
  margin: 0 auto;
}

@media (max-width: 1300px) {
  .module-strategic-pillars .overlay {
      width: 48%;
      margin-bottom: 30px;
  }
}

@media only screen and (max-width: 768px) {
  .module-strategic-pillars .overlay {
      width: 100%;
  }

  .module-strategic-pillars .module-overlay_hover-box {
      padding: 40px 0 38px;
  }

  .module-strategic-pillars .module-overlay_hover-box .module_round-button {
      position: static;
      transform: none;
  }
}

.module-tabs .module_container--inner {
  border-bottom: 1px solid #ac968b;
  padding-bottom: 25px;
}

.module-tabs_button {
  padding: 0;
  border: none;
  background: transparent;
  color: #ac968b;
  margin: 0 45px;
  position: relative;
  font-family: inherit;
  cursor: pointer;
}

.module-tabs_button h2 {
  position: relative;
  margin: 0;
}

.module-tabs_button:first-child {
  margin-left: 0;
}

.module-tabs_button.js--selected {
  color: #333132;
}

.module-tabs_button.js--selected h2:before {
  content: "";
  position: absolute;
  bottom: -26px;
  left: 0;
  right: 0;
  border-bottom: 3px solid #ff5000;
  z-index: 2;
}

@media only screen and (max-width: 1024px) {
  .module-tabs .module_container--inner {
      padding-bottom: 22px;
  }

  .module-tabs_button {
      margin: 0 15px;
  }

  .module-tabs_button h2 {
      font-size: 2.6rem;
  }

  .module-tabs_button.js--selected h2:before {
      bottom: -25px;
  }
}

@media only screen and (max-width: 768px) {
  .module-tabs_button {
      margin: 15px 0;
      width: 100%;
  }

  .module-tabs_button h2 {
      display: inline-block;
  }

  .module-tabs_button.js--selected h2:before {
      bottom: -10px;
  }
}

.module-sustainability-intro .module_container--inner {
  max-width: 1059px;
  margin: 0 auto;
  width: 100%;
}

.module-values .grid {
  padding-top: 50px;
}

.module-values .h5 {
  padding-top: 10px;
}

.module-values_item-inner {
  padding: 204px 30px 64px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 100%;
}

.module-values_item-inner--welfare {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1)), url("../images/sustainability/welfare2.jpg");
  background-position: 80% 50%;
}

.module-values_item-inner--equality {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1)), url("../images/sustainability/equality.jpg");
}

.module-values_item-inner--social {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1)), url("../images/sustainability/social2.jpg");
  padding-bottom: 34px;
}

.module-values_item-inner--care {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1)), url("../images/sustainability/care2.jpg");
  padding-bottom: 34px;
}

.module-values_item-inner--difference {
  background-image: url("../images/sustainability/difference.jpg");
}

.module-values_item-inner--responsibility {
  background-image: url("../images/sustainability/responsibility.jpg");
  padding-bottom: 34px;
}

.module-values_item-inner--impact {
  background-image: url("../images/sustainability/focus.jpg");
  padding-bottom: 34px;
}

@media only screen and (max-width: 1024px) {
  .module-values .grid_col {
      margin-bottom: 30px;
  }
}

.grid--center {
  justify-content: center;
}

.module-goals {
  background: url("../images/sustainability/goals-image.jpg") no-repeat center center;
  background-size: cover;
}

.module-goals .module_container--inner {
  background: linear-gradient(0deg, rgba(68, 181, 157, 0.1), rgba(68, 181, 157, 0.1)), rgba(255, 255, 255, 0.95);
  padding: 79px 70px 88px;
  max-width: 450px;
  width: 100%;
}

.module-goals .button {
  margin-top: 10px;
}

@media only screen and (max-width: 768px) {
  .module-goals .module_container--inner {
      padding: 47px 32px;
  }
}

.module-environmental .module_title {
  margin-bottom: 38px;
}

.module-environmental_intro {
  max-width: 1059px;
  width: 100%;
  margin: 0 auto 70px;
}

.module-environmental .module-hover-box_item {
  text-align: left;
}

.module-environmental .module_box-hidden {
  padding-top: 11px;
  font-size: 2.2rem;
}

.module-environmental .grid {
  margin-bottom: 40px;
}

.module-environmental .module_footnotes {
  padding-bottom: 80px;
}

.module-environmental .module-environmental_footnote-big {
  font-size: 2rem;
  max-width: 684px;
  width: 100%;
  padding-top: 70px;
  padding-bottom: 20px;
  margin: 0 auto;
}

.module-key-achievements .grid_col:last-child {
  padding-left: 80px;
}

.module-key-achievements .grid_col:last-child h2 {
  margin-bottom: 40px;
}

.module-key-achievements_item {
  display: flex;
  margin-bottom: 7px;
  align-items: center;
}

.module-key-achievements_image {
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 13px;
}

.module-key-achievements_text {
  width: calc(100% - 100px);
  border-bottom: 1px solid rgba(172, 150, 139, 0.3);
  font-size: 2rem;
  margin-bottom: 0;
  padding-bottom: 13px;
  margin-left: 50px;
}

.module-key-achievements_text p {
  margin: 0;
}

.module-key-achievements_strategy-image {
  margin-bottom: 37px;
}

.module-key-achievements .button {
  margin-top: 10px;
}

@media only screen and (max-width: 1024px) {
  .module-key-achievements .grid_col:last-child {
      padding-left: 40px;
      padding-top: 30px;
  }
}

@media only screen and (max-width: 768px) {
  .module-key-achievements_text {
      width: calc(100% - 70px);
      margin-left: 20px;
  }
}

.module_subtitle-button {
  padding-top: 15px;
}

.module-friendly {
  text-align: center;
}

.module-friendly i {
  color: #ff5000;
  margin-right: 30px;
}

.module-friendly .module_toggle-items {
  text-align: left;
}

.module-friendly .module_small-container {
  max-width: 949px;
  margin: 0 auto;
  width: 100%;
}

.module-people-slider_widget {
  position: relative;
  padding-left: 80px;
}

.module-people-slider .slick-slider {
  padding: 0;
  position: static;
}

.module-people-slider .slick-list {
  padding-right: 60px;
}

.module-people-slider_location {
  margin-top: 20px;
}

.module-people-slider_title-wrap {
  text-align: center;
  position: relative;
  padding: 0 300px;
  margin-bottom: 70px;
}

.module-people-slider_title-wrap .module_title {
  margin-bottom: 0;
}

.module-people-slider_title-wrap .button {
  position: absolute;
  top: 18px;
  right: 20px;
}

.module-people-slider .slick-slide > div:not([class]) {
  align-items: flex-start;
}

.module-people-slider_thumb {
  width: 100%;
}

.module-people-slider_item {
  padding: 0 20px;
  height: 100%;
}

.module-people-slider_item-inner {
  height: 100%;
  width: 100%;
  background: #f3f3f3;
  border-bottom: 3px solid transparent;
  transition: 0.3s ease-in;
  position: relative;
}

.module-people-slider_item-inner:hover {
  border-color: #ff5000;
  background-color: #fff;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.12);
}

.module-people-slider_content {
  padding: 50px 50px 180px;
}

.module-people-slider_title {
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.01em;
  margin-bottom: 3px;
}

.module-people-slider_name {
  font-size: 2.2rem;
  line-height: 1.45;
  font-weight: 500;
  margin-bottom: 0;
}

.module-people-slider .slick-arrow {
  color: #ac968b;
  background: #fff;
  padding: 49px 19px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.12);
  transition: 0.3s ease-in;
}

.module-people-slider .slick-arrow:hover {
  background: #ff5000;
  color: #fff;
}

.module-people-slider .slick-arrow.slick-prev {
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}

.module-people-slider .slick-arrow.slick-next {
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}

.module-people-slider .slick-arrow:before {
  font-size: 2rem;
}

.module-people-slider_name-wrap {
  position: absolute;
  left: 50px;
  bottom: 30px;
}

.module-people-slider .slick-prev:before {
  content: "\e916";
}

.module-people-slider .slick-next:before {
  content: "\e917";
}

.module-people-slider .slick-dots {
  padding-top: 76px;
  text-align: center;
}

@media only screen and (max-width: 1024px) {
  .module-people-slider_widget {
      padding-left: 45px;
  }

  .module-people-slider_title-wrap {
      padding: 0 20px;
  }

  .module-people-slider_title-wrap .button {
      position: relative;
      top: auto;
      right: auto;
      margin-top: 40px;
  }
}

@media only screen and (max-width: 768px) {
  .module-people-slider .slick-arrow {
      padding: 24px 11px;
  }

  .module-people-slider .slick-dots {
      padding-top: 30px;
  }

  .module-people-slider_item {
      padding: 0 15px;
  }

  .module-people-slider_name-wrap {
      left: 20px;
      bottom: 15px;
  }

  .module-people-slider_content {
      padding: 20px 20px 180px;
  }

  .module-people-slider .slick-list {
      padding-right: 40px;
  }
}

.module-safe {
  background: url("../images/people/Employees-at-work-5106.jpg") no-repeat center center;
  background-size: cover;
  margin-bottom: 70px;
}

.module-focus-areas .table {
  margin: 0 0 15px;
}

.module-focus-areas .module_title {
  margin-bottom: 40px;
}

.module-focus-areas_description {
  display: none;
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  width: 548px;
}

.module-focus-areas_description .h5 {
  font-weight: 500;
  margin-bottom: 25px;
  margin-top: 0;
}

.module-focus-areas_box {
  background: #fff;
  padding: 30px 34px;
}

.module-focus-areas small {
  text-align: left;
  display: block;
}

.slick-current .module-focus-areas_description {
  display: block;
}

.module-focus-areas .slick-list {
  padding-bottom: 328px;
}

.module-focus-areas .slick-slide:first-child .module-focus-areas_description {
  left: 0;
  transform: none;
}

.module-focus-areas .slick-slide:last-child .module-focus-areas_description {
  right: 0;
  left: auto;
  transform: none;
}

.module-focus-areas_items.slick-slider {
  padding: 0 40px;
}

.module-focus-areas_item-wrap {
  position: relative;
}

.module-focus-areas_items .slick-arrow:before {
  font-size: 1rem;
  color: #ff5000;
}

.module-focus-areas_items:before {
  content: "";
  position: absolute;
  top: 87px;
  left: 100px;
  right: 100px;
  border-top: 1px dashed #ac968b;
}

.module-focus-areas_item-container {
  padding: 30px;
}

.module-focus-areas_text {
  width: 90px;
  height: 90px;
  box-shadow: 0px 5px 14px rgba(0, 0, 0, 0.07);
  background: #fff;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  margin: 0 auto;
  font-size: 4rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #ff5000;
  cursor: pointer;
}

.slick-current .module-focus-areas_text {
  width: 115px;
  height: 115px;
  color: #fff;
  font-size: 4rem;
  line-height: 1;
  background: #ff5000;
}

.slick-current .module-focus-areas_text:before {
  content: "";
  width: 142px;
  height: 142px;
  border-radius: 100%;
  background: rgba(255, 80, 0, 0.13);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100%;
}

.slick-current .module-focus-areas_text:after {
  content: "";
  width: 168px;
  height: 168px;
  background: rgba(255, 80, 0, 0.1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100%;
}

.slick-current .module-focus-areas_text-inner {
  position: relative;
  z-index: 2;
}

.slick-current .module-focus-areas_text-inner span {
  position: relative;
  z-index: 2;
}

@media only screen and (max-width: 1555px) {
  .module-focus-areas .slick-arrow {
      transform: none;
      top: 79px;
  }
}

@media only screen and (max-width: 768px) {
  .module-focus-areas_description {
      margin-top: 30px;
      position: static;
      transform: none;
      white-space: normal;
      width: auto;
  }

  .module-focus-areas_items:before {
      left: 40px;
      right: 40px;
  }

  .module-focus-areas .slick-list {
      padding-bottom: 0;
  }

  .module-focus-areas_box {
      padding: 20px;
  }

  .module-focus-areas_items.slick-slider {
      padding: 0 20px;
  }
}

.module-language-switch {
  text-align: right;
  margin-top: -23px;
  font-size: 1.4rem;
  line-height: 1.19286;
}

.page-global-breadcrumb .module-language-switch {
  margin-top: 20px;
}

.module-language-switch_flag-toggle {
  display: inline-block;
  position: relative;
  width: 45px;
  height: 25px;
  margin: 0 12px;
  border: 1px solid rgba(172, 150, 139, 0.4);
  border-radius: 43px;
  margin-bottom: -8px;
}

.module-language-switch--english .module-language-switch_flag-toggle {
  background-image: url("../design/svg/uk-flag.svg");
  background-repeat: no-repeat;
  background-size: 15px 15px;
  background-position: left 5px center;
}

.module-language-switch--swedish .module-language-switch_flag-toggle {
  background-image: url("../design/svg/swedish-flag.svg");
  background-repeat: no-repeat;
  background-size: 15px 15px;
  background-position: right 5px center;
}

.module-language-switch--swedish a:before {
  left: 100%;
  right: auto;
}

.module-language-switch a {
  position: relative;
  color: #ac968b;
}

.module-language-switch a:hover {
  color: #ff5000;
}

.module-language-switch a:before {
  content: "";
  top: 0;
  bottom: 0;
  right: 100%;
  width: 58px;
  position: absolute;
  z-index: 2;
}

@media only screen and (max-width: 768px) {
  .module-language-switch {
      margin-top: 20px;
      text-align: left;
  }
}

.module-event-presentation .module_title {
  padding-top: 35px;
  margin-bottom: 30px;
}

.module-event-presentation .module-slideshow_link-container {
  margin-bottom: 15px;
}

@media only screen and (max-width: 1024px) {
  .module-event-presentation .grid_col:first-child {
      padding-bottom: 30px;
  }
}

.module-upcoming .module_title,
.module-event-archive .module_title {
  margin-bottom: 20px;
}

.module-newsroom-links {
  position: relative;
}

.module-newsroom-links.module-newsroom-links {
  padding: 47px 0 33px;
  margin-bottom: 60px;
}

/* .module-newsroom-links .module_container--inner {
padding-left: 60px;
} */
.module-newsroom-links_item {
  margin-bottom: 10px;
}

.module-newsroom-links .button {
  background: #fff;
  padding: 28px 120px 33px 25px;
  border-bottom: 3px solid transparent;
  display: flex;
  align-items: center;
  width: 95%;
  transition: 0.3s ease-in-out;
  font-weight: 200;
}

.module-newsroom-links .button:hover {
  color: #333132;
  transform: translateX(15px);
  border-color: #ff5000;
}

.module-newsroom-links .button:before {
  right: 50px;
}

.module-newsroom-links .button:after {
  right: 58px;
}

.module-newsroom-links_icon {
  color: #ff5000;
  font-size: 3.5rem;
  line-height: 1;
}

.module-newsroom-links_text {
  font-size: 2.6rem;
  line-height: 1.24731;
  padding-left: 37px;
}

/* .module-newsroom-links:before {
content: "";
position: absolute;
top: 0;
bottom: 0;
left: 0;
width: calc(50% - 30px);
background: url("../images/newsroom/newsroom-image.jpg") no-repeat top center;
background-size: cover;
} */
@media only screen and (max-width: 1024px) {
  .module-newsroom-links_text {
      padding-left: 20px;
      font-size: 2rem;
  }

  .module-newsroom-links.module-newsroom-links {
      padding: 30px 0 33px;
      margin-bottom: 60px;
  }

  .module-newsroom-links:before {
      height: 260px;
      width: 100%;
      bottom: auto;
  }

  .module-newsroom-links .module_container--inner {
      padding-left: 0;
  }

  .module-newsroom-links .grid_col:first-child {
      padding-bottom: 40px;
  }

  .module-newsroom-links .button {
      padding-right: 70px;
      margin-right: 0;
  }

  .module-newsroom-links .button:before {
      right: 20px;
  }

  .module-newsroom-links .button:after {
      right: 28px;
  }
}

.module-share_chart {
  padding-top: 40px;
}

.module-gravida {
  margin-bottom: 55px;
}

.module-gravida.module-gravida {
  padding-bottom: 90px;
}

.module-gravida .module_title {
  margin-bottom: 67px;
  text-align: center;
}

.module-gravida .module-overlay_title-wrap {
  margin-bottom: 28px;
}

.module-gravida .module_container--inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}

.module-gravida .module-overlay_hover-box {
  padding: 280px 40px 45px;
  position: relative;
}

.module-gravida .module-overlay_hover-box:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 243px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.module-gravida .module-overlay_hover-box--1:before {
  background-image: url("../images/sustainability/youth-employment.jpg");
}

.module-gravida .module-overlay_hover-box--2:before {
  background-image: url("../images/home-for-home/foster-care-image.jpg");
}

.module-gravida .module-overlay_hover-box--3:before {
  background-image: url("../images/home-for-home/youth-employment-image.jpg");
}

.module-gravida .overlay {
  background: #fff;
  width: 31%;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: border-color 0.3s ease-in-out;
}

.module-gravida .overlay:hover {
  border-color: #ff5000;
}

.module-gravida .overlay:hover .module_round-button {
  background: #ff5000;
  color: #fff;
}

.module-gravida .overlay.js--overlay {
  cursor: default;
  width: 100%;
  text-align: left;
  border: none;
  max-width: 1280px;
  position: fixed;
  z-index: 100;
  top: 100px !important;
  left: 50%;
  transform: translateX(-50%);
}

.module-gravida .overlay.js--overlay .module-overlay_hover-box {
  padding: 93px 140px 60px 500px;
}

.module-gravida .overlay.js--overlay .module-overlay_hover-box:before {
  right: auto;
  width: 400px;
  bottom: 0;
  height: auto;
}

.module-gravida .overlay.js--overlay .module_round-button {
  display: none;
}

@media only screen and (max-width: 1555px) {
  .module-gravida .overlay.js--overlay .module-overlay_hover-box {
      padding: 70px 70px 84px 280px;
  }

  .module-gravida .overlay.js--overlay .module-overlay_hover-box:before {
      width: 250px;
  }
}

@media only screen and (max-width: 768px) {
  .module-gravida .overlay.js--overlay .module-overlay_hover-box {
      padding: 320px 20px 30px 20px;
  }

  .module-gravida .overlay.js--overlay .module-overlay_hover-box:before {
      width: 100%;
      height: 280px;
  }

  .module-gravida .overlay.js--overlay .module_popup-close {
      top: 292px;
      right: 22px;
  }

  .module-gravida .overlay.js--overlay .h3 {
      font-size: 3rem;
  }
}

@media only screen and (max-width: 1555px) {
  .module-gravida .overlay {
      width: 48%;
      margin-bottom: 30px;
  }

  .module-gravida .js--overlay.overlay {
      max-width: 95%;
  }
}

@media only screen and (max-width: 768px) {
  .module-gravida .overlay {
      width: 100%;
  }

  .module-gravida .overlay.js--overlay {
      max-width: 90%;
  }
}

.module_hidden-content {
  display: none;
}

.module_hidden-content.js--revealed {
  display: block;
}

.module-home-for-home-intro .button {
  margin-top: 15px;
}

.module-home-for-home-intro .module_container--inner {
  max-width: 961px;
  margin: 0 auto;
  width: 100%;
}

.module-banner-text {
  color: #ffffff;
}

.module-page-title.light,
.module-banner-text.light {
  color: initial;
}

.module-banner-text .module_subtitle {
  font-size: 1.8rem;
  color: #ffffff;
  display: block;
  position: relative;
  max-width: 820px;
  line-height: 1.67;
}

.module-banner-text.light .module_subtitle {
  color: initial;
}

.module-banner-text .module_subtitle:before {
  content: "";
  width: 70px;
  height: 4px;
  background-color: #ff5000;
  display: block;
  margin-bottom: 28px;
  margin-top: 25px;
}

.module-efforts.module-efforts {
  padding-bottom: 140px;
}

.module-efforts .module_title {
  margin-bottom: 63px;
}

.module-efforts_item-inner {
  text-align: left;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(172, 150, 139, 0.3);
  height: 100%;
  display: inline-block;
}

.module-efforts_icon {
  height: 102px;
  display: flex;
  margin-bottom: 24px;
  justify-content: center;
  align-items: center;
}

.module-efforts .js--overlay .module-efforts_icon {
  margin-bottom: 0;
}

.module-key-facts img {
  width: 110px;
  height: auto;
}

.module-efforts p {
  margin-bottom: 20px;
  letter-spacing: -0.01px;
}

.module-efforts .module_round-button {
  width: 30px;
  height: 30px;
  font-size: 1rem;
}

@media only screen and (max-width: 768px) {
  .module-efforts.module-efforts {
      padding-bottom: 70px;
  }
}

.module-commitments {
  margin-bottom: 70px;
}

.module-commitments i {
  color: #ff5000;
  margin-right: 20px;
  width: 27px;
}

.current {
  background: #f3f3f3;
}

th.current {
  color: #ff5000;
}

td.current:before {
  color: #ff5000;
}

.module-portfolio_overlay-container {
  position: relative;
  text-align: right;
  background: #ccbfb4;
}

.module-portfolio_overlay-container.js--details-open .module-portfolio_map-container {
  margin-right: 630px;
}

.module-portfolio_overlay {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.module-portfolio_overlay .button {
  margin-top: 10px;
  text-transform: none;
  border-color: #fff;
}

.module-portfolio_overlay .button:hover {
  background-color: #fff;
  border-color: #fff;
  color: #ff5000;
}

.module-portfolio_overlay-inner {
  max-width: 657px;
  width: 100%;
  text-align: center;
}

.module-portfolio_map-container {
  max-height: 760px;
  overflow: hidden;
  text-align: right;
  position: relative;
  z-index: 1;
  display: inline-block;
  vertical-align: top;
  margin-right: 0;
  transition: margin 0.3s ease-in-out;
}

.module-portfolio_map-container .module_round-button {
  position: absolute;
  z-index: 1;
  width: 15px;
  height: 15px;
  background: #ff5000;
  font-size: 0.7rem;
  color: #fff;
  box-shadow: 0px 5px 35px rgba(0, 0, 0, 0.1);
  transition: none;
}

.module-portfolio_map-container .module_round-button--iceland {
  top: 24%;
  right: 840px;
}

.module-portfolio_map-container .module_round-button--norway {
  top: 45%;
  right: 585px;
}

.module-portfolio_map-container .module_round-button--sweden {
  top: 45%;
  right: 474px;
}

.module-portfolio_map-container .module_round-button--denmark {
  top: 57.5%;
  right: 589px;
}

.module-portfolio_map-container .module_round-button--netherlands {
  top: 68%;
  right: 648px;
}

.module-portfolio_map-container .module_round-button--england {
  top: 66%;
  right: 764px;
}

.module-portfolio_map-container .module_round-button--germany {
  top: 80%;
  right: 584px;
}

.module-portfolio_map-container .module_round-button--poland {
  top: 75%;
  right: 438px;
}

.module-portfolio_map-container .module_round-button--czech {
  top: 79%;
  right: 517px;
}

.module-portfolio_map-container .module_round-button--finland {
  top: 39%;
  right: 355px;
}

@media all and (-ms-high-contrast: none) {
  .module-portfolio_map-container *::-ms-backdrop,
  .module-portfolio_map-container .module_round-button {
      display: block;
      width: 20px;
      height: 20px;
      padding: 5.5px 7px;
  }
}

.module-portfolio_map-container svg {
  margin-right: -220px;
}

.module-portfolio_map-container .pin {
  cursor: pointer;
}

.module-portfolio_map-container .pin.js--hover,
.module-portfolio_map-container .pin:hover {
  fill: #fff;
}

.module-portfolio .module_portfolio-close {
  position: absolute;
  top: 50px;
  right: 45px;
  cursor: pointer;
  font-size: 1.5rem;
}

.module-portfolio .module_portfolio-close:hover {
  color: #ff5000;
}

.module-portfolio_slider .slick-slide > div:not([class]) {
  align-items: inherit;
}

.module-portfolio_slider .slick-slider {
  padding: 0;
}

.module-portfolio_slider .slick-arrow {
  width: 42px;
  height: 42px;
  background: rgba(51, 49, 50, 0.6);
  color: #fff;
  transform: none;
  top: auto;
  bottom: 0;
}

.module-portfolio_slider .slick-prev {
  right: 42px;
  left: auto;
}

.module-portfolio_slider .slick-prev:before {
  content: "\e916";
}

.module-portfolio_slider .slick-next:before {
  content: "\e917";
}

.module-portfolio_slider .module-porfolio_item {
  color: #fff;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  cursor: pointer;
  height: 100%;
}

.module-portfolio_slider .module-porfolio_item .h5 {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.62;
  margin-bottom: 6px;
  width: 100%;
  margin-top: 0;
}

.module-portfolio_slider .module-porfolio_item .module-portfolio_slider-description {
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
  width: 100%;
}

.module-portfolio_slider .module-porfolio_item .module-portfolio_slider-content {
  padding: 130px 60px 23px 33px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
  transition: 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  height: 100%;
  display: flex;
  align-content: flex-end;
  flex-wrap: wrap;
}

.module-portfolio_slider .module-porfolio_item:hover .module-portfolio_slider-content {
  opacity: 1;
  visibility: visible;
}

.module-portfolio_details {
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden;
}

.module-portfolio_details.js--visible {
  opacity: 1;
  visibility: visible;
  height: auto;
  overflow: auto;
}

.module-portfolio_details-container {
  max-width: 900px;
  width: 100%;
  right: -900px;
  transition: right 0.3s ease-in-out;
  background: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 3;
  text-align: left;
}

.module-portfolio_details-container.js--visible {
  max-width: 900px;
  width: 100%;
  right: 0;
}

.module-portfolio_details-content {
  padding: 35px 106px 50px 60px;
  position: relative;
  background: #fcfcfc;
}

.module-portfolio_details-content-intro {
  font-size: 1.6rem;
  line-height: 1.62;
}

.module-portfolio_details-content p {
  font-size: 1.4rem;
  line-height: 1.71;
  margin-bottom: 28px;
}

.module-portfolio_details-content .h6 {
  margin-top: 0;
  margin-bottom: 7px;
  font-size: 1.6rem;
  line-height: 1.62;
  font-weight: 500;
}

.module-portfolio_details-content .grid--values {
  padding-top: 21px;
  padding-bottom: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.module-portfolio_details-content .grid--values .grid_col {
  margin-bottom: 28px;
}

.module-portfolio_details-content .figures-desc {
  margin-bottom: 14px;
}

.module-portfolio_details-content .module-portfolio_value {
  color: #ff5000;
  font-size: 4.6rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin-bottom: 5px;
  font-weight: 200;
}

.module-portfolio_details-content .module-portfolio_desc {
  font-size: 1.6rem;
  line-height: 1.62;
}

.module-portfolio_details-content .grid--charts {
  padding-top: 20px;
}

.module-portfolio_details-content .grid--charts h3 {
  font-size: 1.6rem;
  line-height: 1.62;
  font-weight: 500;
  margin-bottom: 0;
}

.module-portfolio_details-content .grid--charts p {
  margin-bottom: 14px;
}

.module-portfolio_details-content .grid--charts .grid_col {
  padding-bottom: 20px;
}

.module-portfolio_details-content .grid--charts .spacing-top {
  padding-top: 10px;
}

@media only screen and (max-width: 1555px) {
  .module-portfolio_details-content {
      padding-right: 70px;
  }

  .module-portfolio_details-container {
      max-width: 85%;
      right: -90%;
  }

  .module-portfolio_details-container.js--visible {
      max-width: 85%;
  }
}

@media only screen and (max-width: 768px) {
  .module-portfolio_overlay-container.js--details-open .module-portfolio_map-container {
      margin-right: 0;
  }

  .module-portfolio_map-container svg {
      width: 600px;
      height: 450px;
  }

  .module-portfolio_map-container .module_round-button {
      width: 10px;
      height: 10px;
      padding: 7px;
      font-size: 0.6rem;
  }

  .module-portfolio_map-container .module_round-button--iceland {
      top: 109px;
      right: 282px;
  }

  .module-portfolio_map-container .module_round-button--norway {
      top: 203px;
      right: 153px;
  }

  .module-portfolio_map-container .module_round-button--sweden {
      top: 178px;
      right: 111px;
  }

  .module-portfolio_map-container .module_round-button--denmark {
      top: 260px;
      right: 160px;
  }

  .module-portfolio_map-container .module_round-button--netherlands {
      top: 300px;
      right: 190px;
  }

  .module-portfolio_map-container .module_round-button--england {
      top: 288px;
      right: 245px;
  }

  .module-portfolio_map-container .module_round-button--germany {
      top: 326px;
      right: 168px;
  }

  .module-portfolio_map-container .module_round-button--poland {
      top: 313px;
      right: 90px;
  }

  .module-portfolio_map-container .module_round-button--czech {
      top: 340px;
      right: 124px;
  }

  .module-portfolio_map-container .module_round-button--finland {
      top: 180px;
      right: 47px;
  }

  .module-portfolio .module_portfolio-close {
      top: 20px;
      right: 20px;
  }

  .module-portfolio_details-content {
      padding: 35px 30px 50px;
  }
}

.module-contact-boxes a {
  word-break: break-word;
}

.module-contact-boxes_text {
  width: 100%;
  padding-top: 50px;
}

.module-contact-boxes .module_container--inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}

.module-contact-boxes .module-overlay_hover-box {
  padding: 74px 30px 38px;
}

.module-contact-boxes .overlay {
  background: #fff;
  width: 31%;
  border: 2px solid #f3f3f3;
  cursor: pointer;
  transition: border 0.3s ease-in-out;
}

.module-contact-boxes .overlay:hover {
  border-color: #fff;
  box-shadow: 0px 5px 54px rgba(0, 0, 0, 0.07);
}

.module-contact-boxes .overlay:hover .module_round-button {
  background: #ff5000;
  color: #fff;
}

.module-contact-boxes .overlay.js--overlay {
  width: 100%;
  padding: 70px 140px 84px 550px;
  text-align: left;
  border: none;
  position: absolute;
  left: 0;
  top: 0;
}

.module-contact-boxes .overlay--no-image.js--overlay {
  max-width: 500px;
  padding: 30px 20px !important;
  left: 50%;
  transform: translateX(-50%);
}

.module-contact-boxes .overlay--no-image .module_popup-close {
  top: 30px !important;
  right: 30px !important;
}

.module-contact-boxes .overlay.js--overlay .module-overlay_title-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.module-contact-boxes .overlay.js--overlay .module-overlay_title-wrap .h3 {
  max-width: 100%;
  margin: 0;
}

.module-contact-boxes .overlay.js--overlay .module-overlay_hover-box:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 415px;
  bottom: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.module-contact-boxes .overlay.js--overlay .module-overlay_hover-box--press:before {
  background-image: url("../images/media/Christian_V_Dreyer-bckr.jpg");
}

.module-contact-boxes .overlay.js--overlay .module-overlay_hover-box--ir:before {
  background-image: none;
}

.module-contact-boxes .overlay.js--overlay .module-overlay_hover-box--contact:before {
  background-image: none;
}

.module-contact-boxes .overlay.js--overlay .module_round-button {
  display: none;
}

@media only screen and (max-width: 1555px) {
  .module-contact-boxes .overlay.js--overlay {
      padding: 70px 70px 84px 280px;
  }

  .module-contact-boxes .overlay.js--overlay .module-overlay_hover-box:before {
      width: 250px;
  }
}

@media only screen and (max-width: 768px) {
  .module-contact-boxes .overlay.js--overlay {
      padding: 320px 20px 30px 20px;
  }

  .module-contact-boxes .overlay.js--overlay .module_popup-close {
      top: 292px;
      right: 22px;
  }

  .module-contact-boxes .overlay.js--overlay .h3 {
      font-size: 3rem;
  }

  .module-contact-boxes .overlay.js--overlay .module-overlay_hover-box:before {
      width: 100%;
      height: 280px;
  }
}

.module-contact-boxes .module_round-button {
  margin: 0 auto;
}

@media only screen and (max-width: 1555px) {
  .module-contact-boxes .overlay {
      width: 48%;
      margin-bottom: 30px;
  }
}

@media only screen and (max-width: 768px) {
  .module-contact-boxes .overlay {
      width: 100%;
  }
}

.module-investor-text {
  position: absolute;
  max-width: 700px;
  width: 100%;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
}

@media only screen and (max-width: 768px) {
  .module-investor-text {
      position: static;
      transform: none;
  }
}

.module-investor-text .button:after {
  color: #ff5000;
}

.q4-icon_warning-line {
  margin: 10px 0;
  display: inline-block;
}

.accordion_item {
  margin: 0;
  border-bottom: 1px solid #ac968b;
}

.accordion_toggle {
  margin: 0;
  padding: 14px 40px 14px 23px;
  position: relative;
  font-size: 2.2rem;
  line-height: 1.55;
  display: flex;
  cursor: pointer;
  font-weight: 500;
  transition: color 0.2s ease;
}

.js--active .accordion_toggle {
  color: #ff5000;
}

.accordion_toggle:after {
  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: "\e91a";
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: #ff5000;
  position: absolute;
  right: 0;
}

.js--active .accordion_toggle:after {
  content: "\e919";
  font-size: 0.4rem;
}

.accordion_panel {
  padding: 10px 20px 10px;
}

.module-charts h2 {
  margin-top: 30px;
}

.module-charts h4 {
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 5px;
}

.module-charts p {
  margin-bottom: 0;
  font-size: 1.4rem;
}

.module-charts .grid_col {
  margin-bottom: 40px;
}

.module-charts .table {
  margin-bottom: 30px;
}

.module-charts .module_small-container {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.module-agm {
  position: relative;
}

.module-agm_item {
  margin-bottom: 10px;
}

.module-agm .module-agm_button {
  background: #fff;
  padding: 28px 120px 33px 25px;
  border-bottom: 3px solid transparent;
  display: flex;
  align-items: center;
  width: 95%;
  transition: 0.3s ease-in-out;
  font-weight: 200;
  border: 2px solid #ac968b;
  font-size: 2.6rem;
  line-height: 1.24731;
  letter-spacing: 0.01em;
  position: relative;
}

.module-agm .module-agm_button:hover {
  color: #333132;
  transform: translateX(15px);
  border-color: transparent;
  border-bottom-color: #ff5000;
  text-decoration: none;
}

.module-agm .module-agm_button:before {
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 100%;
  border: 1px solid #ff5000;
  position: absolute;
  transition: background 0.3s ease-in;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.module-agm .module-agm_button:hover:before {
  background-color: #ff5000;
}

.module-agm .module-agm_button:after {
  content: "\e918";
  font-family: "q4-icons";
  font-size: 1.1rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 58px;
  z-index: 2;
  color: #333132;
}

@media only screen and (max-width: 1024px) {
  .module-agm .module-agm_button {
      font-size: 2rem;
      padding-right: 70px;
  }

  .module-agm .module-agm_button:before {
      right: 20px;
  }

  .module-agm .module-agm_button:after {
      right: 28px;
  }
}

.page-investors .module-invest-reasons {
  margin-top: 36px;
}

.module-invest-reasons .module_title {
  margin-bottom: 66px;
}

.module-invest-reasons_item {
  height: 100%;
  border-bottom: 1px solid rgba(172, 150, 139, 0.3);
  padding: 0 4px 35px;
}

.module-invest-reasons_icon {
  height: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.module-key-facts_icon--height img,
.module-invest-reasons_icon img {
  height: 100%;
}

.module-invest-reasons_icon--financial img,
.module-invest-reasons_icon--globe img {
  height: 100%;
}

.module-invest-reasons_text {
  font-size: 2rem;
  line-height: 1.62;
}

@media only screen and (max-width: 1024px) {
  .module-invest-reasons .module_title {
      margin-bottom: 10px;
  }

  .module-invest-reasons_item {
      padding-top: 30px;
  }
}

.module-investment-boxes_item {
  position: relative;
  padding: 0 50px 60px 54px;
  max-width: 510px;
  margin: 0 auto;
  width: 100%;
}

.module-investment-boxes_item--2 {
  padding-bottom: 360px;
}

.module-investment-boxes_item--2:after {
  content: "";
  height: 320px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.6rem;
  line-height: 1.22;
  font-weight: 200;
  background-image: url("../images/ilustration-image.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #ccbfb4;
  color: #fff;
  z-index: 2;
}

.module-investment-boxes_item-wrap {
  display: inline-block;
  width: 48%;
  vertical-align: top;
  margin-bottom: 50px;
  padding: 0 15px;
}

.module-investment-boxes_item-wrap--2 {
  margin-top: 100px;
}

.module-investment-boxes_item-wrap--5,
.module-investment-boxes_item-wrap--3 {
  margin-top: -336px;
}

.module-investment-boxes_item:before {
  content: "";
  background-color: #f3f3f3;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 80px;
  z-index: 1;
}

.module-investment-boxes_item h2,
.module-investment-boxes_item .h5,
.module-investment-boxes_item p,
.module-investment-boxes_item .button {
  position: relative;
  z-index: 2;
}

.module-investment-boxes_item h2 {
  font-weight: 500;
  font-size: 12.6rem;
  line-height: 1.19841;
  color: rgba(172, 150, 139, 0.4);
  margin-bottom: 0;
}

.module-investment-boxes_item p {
  font-size: 1.6rem;
  line-height: 1.62;
}

.module-investment-boxes_item .button {
  padding-right: 50px;
  padding-left: 0;
}

@media only screen and (max-width: 1555px) {
  .module-investment-boxes_item-wrap--5,
  .module-investment-boxes_item-wrap--3 {
      margin-top: -300px;
  }
}

@media only screen and (max-width: 1024px) {
  .module-investment-boxes_item-wrap {
      width: 100%;
      margin-bottom: 20px;
  }

  .module-investment-boxes_item-wrap--2,
  .module-investment-boxes_item-wrap--5,
  .module-investment-boxes_item-wrap--3 {
      margin-top: 0;
  }
}

@media only screen and (max-width: 768px) {
  .module-investment-boxes_item {
      padding: 0 20px 30px;
  }

  .module-investment-boxes_item--2 {
      padding-bottom: 360px;
  }
}

.layout.js--hide-content .pane--content .module:not(.module-disclaimer-widget) {
  display: none;
}

.module-disclaimer-widget {
  padding: 40px 0;
}

.module-disclaimer-widget_deny {
  display: none;
}

.module-disclaimer-widget_deny.js--visible {
  display: block;
}

.module-disclaimer-widget_next {
  display: none;
}

.module-disclaimer-widget_next.js--visible {
  display: block;
}

.module-disclaimer-widget .button {
  margin-top: 20px;
}

.module_video {
  position: relative;
  padding-bottom: 40%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  max-width: 930px;
  margin: 0 auto;
}

.module_video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.module-lastest-financials .module_title {
  padding-top: 35px;
  margin-bottom: 20px;
}

.module-event-presentation .module_box {
  position: relative;
}

.module-event-presentation .module_box .button {
  position: absolute;
  bottom: 10px;
  left: 60px;
}

.module-auditors h6 {
  margin-top: 30px;
}

.module-auditors .table {
  max-width: 600px;
  width: 100%;
}

.module-key-facts .grid {
  text-align: center;
}

.module-key-facts .grid_col {
  margin-bottom: 40px;
  padding-right: 0;
  text-align: left;
}

.module-key-facts--invest .grid_col {
  margin-bottom: 0;
}

.module-key-facts_icon {
  height: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: top;
}

.module-key-facts_value {
  font-size: 5.5rem;
  margin-top: 27px;
  color: #ff5000;
  margin-bottom: 13px;
  font-weight: 100;
}

.module-key-facts_desc {
  font-size: 2rem;
  font-weight: normal;
}

@media only screen and (max-width: 1024px) {
  .module-key-facts .grid_col {
      padding-right: 0;
  }
}

.module-locations .grid_col {
  margin-bottom: 40px;
}

.module-locations a {
  display: inline-flex;
  align-items: center;
}

.module-locations img {
  border-radius: 100%;
  width: 40px;
  box-shadow: 0px 5px 45px rgba(0, 0, 0, 0.1);
  margin-right: 20px;
}

.module-scroll-content {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.module-scroll-content_button {
  width: 30px;
  height: 31px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  color: #fff;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.module-scroll-content_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: "\e93a";
  color: #fff;
  font-size: 11px;
}

.module-nav {
  position: absolute;
  bottom: 0;
  left: 20px;
}

.module-nav_trigger {
  display: none;
}

.module-nav_container {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.module-nav a {
  padding: 10px 15px;
  background: #f3f3f3;
  color: #333132;
  display: block;
  transition: background 0.3s ease-in-out;
}

.module-nav a:hover {
  text-decoration: none;
  background: #ff5000;
  color: #fff;
}

.page-content-breadcrumb.page-governance .pane--banner {
  position: relative;
}

.page-content-breadcrumb.page-governance .pane--banner .pane_inner {
  position: static;
}

.page-content-breadcrumb.page-governance .pane--banner .module-nav {
  left: calc(50% - 1246px / 2);
}

.page-content-breadcrumb.page-governance .pane--banner .module-nav li:first-child a {
  color: #fff;
  background: #ff5000;
}

.page-swedish .pane--banner {
  padding-top: 80px;
}

.page-swedish .pane--banner .pane_inner {
  padding-bottom: 90px;
}

.page-swedish .module-breadcrumb {
  bottom: 60px;
}

.page-styrdokument .module-nav li:nth-child(2) a {
  background: #ff5000;
  color: #fff;
}

.page-bolagsstmma .module-nav li:nth-child(3) a {
  background: #ff5000;
  color: #fff;
}

@media (max-width: 1314px) {
  .page-content-breadcrumb.page-governance .pane--banner .module-nav {
      left: 20px;
  }
}

@media only screen and (max-width: 768px) {
  .module-nav_trigger {
      display: block;
      padding: 10px 15px;
      background: #44b59d;
      cursor: pointer;
  }

  .module-nav_container {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      z-index: 2;
  }

  .module-nav_container.js--revealed {
      display: block;
  }

  .module-nav a {
      white-space: nowrap;
  }
}

.page-agm-details .module_multimedia-title {
  display: none;
}

/* .module-hover-box_society-icon{
width: 60px;
} */
.module-subscribe_list-header {
  display: none;
}

.page-news-details .pane--banner {
  background-color: #fff;
}

.page-news-details .pane--banner .pane_inner {
  display: none;
}

.module-news-latest--newsroom {
  background-color: rgba(156, 156, 156, 0.1);
}

.module-news-latest--newsroom a.module_headline-link:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.module-news-latest--newsroom .module_date-time {
  display: block;
}

.module-news-latest--newsroom a.module_headline-link:hover .module_headline-link {
  text-decoration: underline;
}

.module-news-latest--newsroom a.module_headline-link:hover {
  text-decoration: none;
}

a {
  word-break: break-word;
}

.module-charts_maturity {
  margin-bottom: 50px;
}

.module_view-all-link--bottom {
  display: none !important;
}

.table--bonds {
  table-layout: fixed;
}

.page-hidden-breadcrumb .module-breadcrumb .module_container--inner {
  font-size: 0;
}

.page-hidden-breadcrumb .module-breadcrumb .module-breadcrumb_separator:last-child {
  display: none;
}

.page-hidden-breadcrumb .module-breadcrumb .module-breadcrumb_separator {
  margin: 0 5px;
}

.page-hidden-breadcrumb .module-breadcrumb .module-breadcrumb_separator,
.page-hidden-breadcrumb .module-breadcrumb a {
  font-size: 1.2rem;
}

.module-news-details .module_body p.q4icons {
  padding: 15px 0;
  margin-bottom: 0;
  position: relative;
}

.module-news-details .module_body p.q4icons .module_size-text {
  display: none;
}

.module-news-details .module_body p.q4icons ~ p.q4icons {
  border-top: 2px solid #f3f3f3;
}

.module-news-details .module_body p.q4icons .q4icons_icon {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}

.module-subscribe_unsubscribe {
  display: none;
  margin-top: 20px;
}

.module-subscribe_unsubscribe.js--revealed {
  display: block;
}

/* Start: Banner Video Background */
.module_container--video-background {
  position: relative;
  margin-top: -10%;
  padding-bottom: 42.2%;
  /* height: 0; */
  /*min-height: 1050px;*/
}

.module_container--video-background::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.module_container--video-background iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.module_container--video-background video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* End: Banner Video Background */
.module-banner-video .tv {
  position: relative;
  padding-bottom: 36.81%;
  height: 0;
  overflow: hidden;
}

.module-banner-video .tv::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.module-banner-video .tv .screen {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  margin: auto;
  opacity: 0;
  transition: opacity 0.5s;
}

.module-banner-video .tv .screen.active {
  opacity: 1;
}

/* Start: Banner Video TV */
/* End: Banner Video TV */
/* Start: Strategy and Business Model */
.module-strategy-and-business-model {
  position: relative;
}

.module-strategy-and-business-model::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 230px;
  width: 100%;
  background-color: rgba(156, 156, 156, 0.1);
  z-index: -1;
}

.module-strategy-and-business-model .module_container--inner {
  display: flex;
}

.module-strategy-and-business-model .module_container--text {
  background-color: #333132;
  width: 43%;
  padding: 80px 70px;
}

.module-strategy-and-business-model .button {
  margin-top: 20px;
}

.module-strategy-and-business-model .module_container--image {
  background-image: url("../images/homepage/strategy-and-business-model-bg2.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 57%;
  padding-bottom: 36.72%;
}

@media only screen and (max-width: 1024px) {
  .module-strategy-and-business-model::before {
      height: 260px;
  }

  .module-strategy-and-business-model .module_container--inner {
      flex-direction: column;
  }

  .module-strategy-and-business-model .module_container--text {
      width: 100%;
      padding: 50px 30px;
  }

  .module-strategy-and-business-model .module_title {
      margin-bottom: 13px;
  }

  .module-strategy-and-business-model .button {
      margin-top: 5px;
  }

  .module-strategy-and-business-model .module_container--image {
      width: 100%;
      padding-bottom: 470px;
  }
}

/* End: Strategy and Business Model */
/* Start: Side Box Module */
.module-side-box {
  background-color: #f3f3f3;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-bottom: 60px;
}

.module-side-box .module_container--content {
  max-width: 450px;
  padding: 60px 70px;
  background-color: rgba(255, 255, 255, 0.95);
}

.module-side-box--right .module_container--content {
  margin-left: auto;
}

.module-side-box .button {
  margin-top: 5px;
}

@media only screen and (max-width: 768px) {
  .module-side-box .module_container--content {
      padding: 45px 30px;
  }
}

@media only screen and (max-width: 480px) {
  .pane--content .module-side-box {
      padding-top: 30px;
      padding-bottom: 290px;
  }

  .module-side-box h2 {
      font-size: 36px;
      line-height: 1.27778;
  }
}

.module-side-box--sustainability {
  background-image: url("../images/homepage/sustainability-bg-v3.jpg");
  background-position: 50% 20%;
}

.module-side-box--strategy {
  background-image: url("../images/about-us/strategy-bg2.jpg");
  background-position: 50% 20%;
}

.module-side-box--management {
  background-image: url("../images/about-us/management-bg.jpg");
}

.module-side-box--targets {
  background-image: url("../images/sustainability/goals-image.jpg");
}

.module-side-box--sus {
  background-image: url("../images/sustainability/Haallbarhet-Gloodlampa.jpg");
}

/* End: Side Box Module */
/* Start: Boxes Module */
.module-boxes .module_item {
  border: 1px solid rgba(51, 49, 50, 0.15);
  padding: 47px 43px 40px;
  height: 100%;
}

.module-boxes .module_icon {
  max-width: 110px;
  padding: 13px 13px 0 13px;
  margin-bottom: 38px;
}

.module-boxes .module_item-title {
  line-height: 1.27778;
  margin-top: 0;
  margin-bottom: 13px;
}

.module-boxes .module_item-text {
  font-size: 18px;
  line-height: 1.625;
  letter-spacing: 0;
  margin: 0;
}

@media only screen and (max-width: 1024px) {
  .module-boxes .grid_col + .grid_col {
      margin-top: 40px;
  }
}

@media only screen and (max-width: 420px) {
  .module-boxes .module_item {
      padding: 40px 25px;
  }

  .module-boxes .module_icon {
      margin-bottom: 33px;
  }
}

/* End: Boxes Module */
/* Start: Drawers Module */
.module_drawer-handle {
  display: flex;
}

.module_drawer + .module_drawer {
  margin-top: 13px;
}

.module_drawer-trigger {
  /* font-family: "Helvetica Neue LT W04", sans-serif; */
  font-family: "Figtree", sans-serif;
  letter-spacing: 0.01em;
  line-height: 1;
  display: flex;
  align-items: center;
  flex-grow: 1;
  background-color: #fff;
  padding: 16px 0 14px;
  cursor: pointer;
  border: none;
  border-bottom: 2px solid #fff;
  text-align: left;
  transition: border-color 0.2s ease;
}

.module-drawers .module_icon-wrap {
  width: 87px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
}

.module-drawers .module_icon {
  display: flex;
  font-size: 36px;
  color: #9c9c9c;
  transition: color 0.2s ease;
}

.module_drawer-title {
  margin: 0;
  font-size: 18px;
  line-height: 1.66667;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.module_drawer-arrow {
  font-size: 14px;
  color: #9c9c9c;
  display: flex;
  flex-shrink: 0;
  margin-left: auto;
  padding: 0 27px;
  transition: color 0.2s ease;
}

.module_drawer-content {
  display: none;
}

.module_drawer-content p {
  margin: 0;
}

.module_drawer .module_drawer-content {
  padding: 30px 40px;
  background-color: #fff;
}

@media only screen and (min-width: 1025px) {
  .module-drawers .module_container--inner {
      display: flex;
  }

  .module-drawers .module_container--handles {
      width: 60%;
      position: relative;
  }

  .module-drawers .module_container--handles::after {
      /* This is needed so the box-shadow doesn't overlap the drawer content */
      content: "";
      position: absolute;
      left: 100%;
      top: 0;
      bottom: 0;
      width: 6px;
      background-color: #fff;
  }

  .module-drawers .module_container--content {
      width: 40%;
      background-color: #fff;
      padding: 67px 43px 67px 73px;
      box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  }

  .module_drawer.js--selected .module_drawer-handle {
      box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  }

  .module_drawer-handle::after {
      content: "";
      width: 13px;
      background-color: transparent;
      flex-shrink: 0;
      border-bottom: 2px solid transparent;
  }

  .module_drawer.js--selected .module_drawer-handle::after {
      background-color: #fff;
      border-color: #ff5000;
  }

  .module_drawer.js--selected .module_drawer-trigger {
      border-color: #ff5000;
  }

  .module_drawer.js--selected .module_icon {
      color: #ff5000;
  }

  .module_drawer.js--selected .module_drawer-title {
      font-weight: 700;
  }

  .module_drawer.js--selected .module_drawer-arrow {
      color: #ff5000;
  }

  .module_drawer .module_drawer-content {
      /* Need to overwrite the inline style set by slideDown() */
      display: none !important;
  }

  .module_drawer-content.js--selected {
      display: block;
  }
}

@media only screen and (max-width: 1024px) {
  .module_drawer.js--open {
      box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  }

  .module_drawer.js--open .module_drawer-trigger {
      border-color: #ff5000;
  }

  .module_drawer.js--open .module_icon {
      color: #ff5000;
  }

  .module_drawer.js--open .module_drawer-title {
      font-weight: 700;
  }

  .module_drawer.js--open .module_drawer-arrow {
      color: #ff5000;
      transform: rotateZ(-90deg);
  }
}

@media only screen and (max-width: 480px) {
  .module-drawers .module_icon-wrap {
      width: 77px;
  }

  .module_drawer-arrow {
      padding: 0 17px;
  }

  .module_drawer .module_drawer-content {
      padding: 25px 30px;
  }
}

/* MODULE PORTFOLIO HOMEPAGE */
.flex-col-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.flex-col-container .grid_col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* MODULE BANNER SUSTAINABILITY AND TARGETS */
.PageSustainabilityStrategyTargets .pane--banner {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/strategy/strategy-and-targets-bg.jpg");
  background-size: cover;
  background-position: center top;
  min-height: 470px;
}

/* End: Drawers Module */
.PageAboutUsStrategy .pane.pane--banner {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../design/banner/about-strategy2.jpg");
  background-position: 50% 30%;
}

.PageCorporateGovernanceLeadership .module-page-title .module_subtitle {
  font-weight: 400;
  max-width: none;
}

/* GLOBALS */
.detailed-content .item {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  display: none;
  overflow: auto;
  padding: 10px;
  z-index: 200;
}

.detailed-content .item.js--active {
  display: flex;
  align-items: center;
}

.detailed-content .close-popup {
  position: absolute;
  top: 35px;
  right: 35px;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  margin: 0;
  font-size: 15px;
  padding: 0;
  transition: 0.3s;
}

.detailed-content .close-popup:hover {
  color: #ff5000;
}

/* CUSTOM PAGE */
.page-customers .pane--banner {
  background-image: url("../design/banner/customers.jpg");
  background-position: 50% 25%;
}

.page-customers .module-scroll-content {
  display: none;
}

.page-customers .module-page-title {
  padding-bottom: 0;
}

.page-customers .module-breadcrumb .module_container--inner {
  font-size: inherit;
}

.page-customers .module-breadcrumb .module-breadcrumb_separator:last-child {
  display: inline-block;
}

.module-customers-intro .module_container--outer {
  max-width: 1100px;
}

.module--our-customers {
  background-color: #f4f1ee;
  min-height: 680px;
  /* TEMP */
}

.module--friendship-concept .module_title {
  margin-bottom: clamp(45px, 5vw, 55px);
}

.module--friendship-concept .module-values_item-inner {
  position: relative;
  padding-top: 115px;
}

.module--friendship-concept .module-values_item-inner--welfare {
  background-image: url("../images/sustainability/welfare-3.jpg");
}

.module--friendship-concept .module-values_item-inner--equality {
  background-image: url("../images/sustainability/welfare-4.jpg");
}

.module--friendship-concept .module-values_item-inner--social {
  background-image: url("../images/sustainability/welfare-5.jpg");
}

.module--friendship-concept .module-values_item-inner--care {
  background-image: url("../images/sustainability/welfare-6.jpg");
}

.module--friendship-concept .grid_col {
  padding-top: 25px;
  padding-bottom: 25px;
}

.module--friendship-concept .module-values_item-inner button[aria-label] {
  position: absolute;
  top: calc(100% - 20px);
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  border-radius: 50%;
  border: 0;
  box-shadow: 0 5px 45px rgba(0, 0, 0, 0.1);
  color: #ff5000;
  cursor: pointer;
  margin: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  transition: 0.3s;
}

.module--friendship-concept .module-values_item-inner button[aria-label]::before {
  font-family: "q4-icons";
  content: "\e91a";
  position: absolute;
  top: calc(50% - 1px);
  left: calc(50% + 1px);
  transform: translate(-50%, -50%);
}

.module--friendship-concept .module-values_item-inner button[aria-label]:hover {
  background-color: #ff5000;
  color: #fff;
}

.module--friendship-concept .detailed-content .item_inner {
  background-color: #fff;
  box-shadow: 0 5px 54px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-wrap: wrap;
  max-width: 1280px;
  width: 100%;
  margin: auto;
  position: relative;
}

.module--friendship-concept .detailed-content .section--image {
  position: relative;
  width: 35%;
}

.module--friendship-concept .detailed-content .section--image img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.module--friendship-concept .detailed-content .section--content {
  width: 65%;
  display: inline-block;
}

.module--friendship-concept .detailed-content .section--content .section_inner {
  text-align: left;
  padding: 70px;
}

.module--friendship-concept .detailed-content .section--content .title {
  font-size: 3.6rem;
}

.module--friendship-concept .detailed-content .section--content *:last-child {
  margin-bottom: 0;
}

@media only screen and (min-width: 769px) {
  .page-customers .pane--banner {
      height: 600px;
  }
}

@media only screen and (max-width: 768px) {
  .module--friendship-concept .detailed-content .item_inner {
      flex-direction: column-reverse;
  }

  .module--friendship-concept .detailed-content .section--image {
      width: 100%;
  }

  .module--friendship-concept .detailed-content .section--image::before {
      content: "";
      display: block;
      padding-top: 56.25%;
  }

  .module--friendship-concept .detailed-content .section--content {
      width: 100%;
  }
}

/* Customer Journey */
.module--customer-journey {
  background-image: linear-gradient(#fff 30%, #f4f1ee 0);
}

.module--customer-journey .module_container--outer {
  max-width: 1420px;
}

.module--customer-journey .item--visible .item_inner {
  display: flex;
  flex-wrap: wrap;
}

.module--customer-journey .item--visible .section--content {
  background-color: #333132;
  width: 36%;
}

.module--customer-journey .item--visible .section--content .section_inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  padding: 75px 85px;
}

.module--customer-journey .item--visible .section--content .open-popup {
  background-color: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  font-family: inherit;
  font-size: 18px;
  font-weight: 500;
  margin: 20px 0 0;
  padding: 0;
  position: relative;
}

.module--customer-journey .item--visible .section--content .open-popup::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -37px;
  transform: translate(15px, -50%);
  width: 37px;
  height: 24px;
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="37" height="24" viewBox="0 0 37 24" fill="none"%3E%3Ccircle cx="25" cy="12" r="11.5" transform="rotate(-90 25 12)" stroke="%23FF5000"/%3E%3Cpath d="M24.3182 16.845L28.5226 12.37L28.5226 12.3103C28.5794 12.2507 28.5794 12.191 28.6362 12.191L28.6362 12.1313C28.6362 12.0717 28.6362 12.012 28.6362 12.012C28.6362 11.9523 28.6362 11.8927 28.5794 11.833C28.5226 11.7733 28.5226 11.7137 28.4658 11.654L24.3182 7.179C24.0909 6.94033 23.75 6.94033 23.5228 7.179C23.2955 7.41767 23.2955 7.77567 23.5228 8.01433L26.8181 11.475L0.568217 11.475C0.227318 11.475 5.17045e-05 11.7137 5.17201e-05 12.0717C5.17358e-05 12.4297 0.227318 12.6683 0.568217 12.6683L26.7613 12.6683L23.4659 16.129C23.2387 16.3677 23.2955 16.7853 23.5228 16.9643C23.75 17.024 24.0909 17.024 24.3182 16.845Z" fill="white"/%3E%3C/svg%3E%0A');
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.3s;
}

.module--customer-journey .item--visible .section--content .open-popup:hover::after {
  transform: translate(25px, -50%);
}

.module--customer-journey .item--visible .section--image {
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 35px;
  width: 64%;
}

.module--customer-journey .detailed-content .item_inner {
  background-color: #fff;
  box-shadow: 0 5px 54px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-wrap: wrap;
  max-width: 1380px;
  width: 100%;
  margin: auto;
  position: relative;
}

.module--customer-journey .detailed-content .section--content {
  width: 48%;
}

.module--customer-journey .detailed-content .section--content .section_inner {
  background-color: #f4f1ee;
  padding: 80px 110px;
  text-align: left;
}

.module--customer-journey .detailed-content .section--image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 35px;
  width: 52%;
}

.module--customer-journey .detailed-content .section--image img {
  max-width: 650px;
}

@media only screen and (max-width: 1024px) {
  .module--customer-journey .item--visible .section--content,
  .module--customer-journey .item--visible .section--image,
  .module--customer-journey .detailed-content .section--content,
  .module--customer-journey .detailed-content .section--image {
      width: 100%;
  }
}

/* Voice of Customers */
.module--voice-customers {
  background-color: #f4f1ee;
}

.module--voice-customers .module_container--outer {
  max-width: 1420px;
}

.module--voice-customers .module_title {
  margin-bottom: 30px;
}

.module--voice-customers .module_description {
  margin: 0 auto;
  max-width: 1060px;
}

.module--voice-customers .items {
  display: flex;
  flex-wrap: wrap;
  margin: 40px -7px 0;
}

.module--voice-customers .item--visible {
  padding: 7px;
  width: 20%;
}

.module--voice-customers .item--visible .item_inner {
  background-color: #fff;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  /* height: 100%; */
  min-height: 300px;
  padding: 50px;
}

.module--voice-customers .item--visible .item_inner::after {
  font-family: "q4-icons";
  font-size: 14px;
  content: "\e91a";
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 5px 45px rgba(0, 0, 0, 0.1);
  color: #ff5000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto auto 0;
  width: 40px;
  height: 40px;
  transition: 0.3s;
}

.module--voice-customers .item--visible .item_inner:hover::after {
  background-color: #ff5000;
  color: #fff;
}

.module--voice-customers .item-title {
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 400;
  margin: 25px 0 35px;
}

.module--voice-customers .detailed-content .item_inner {
  background-color: #fff;
  box-shadow: 0 5px 54px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-wrap: wrap;
  max-width: 1380px;
  width: 100%;
  margin: auto;
  position: relative;
  text-align: left;
}

.module--voice-customers .detailed-content .section_inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.module--voice-customers .detailed-content .section--left {
  width: 48%;
}

.module--voice-customers .detailed-content .section--left .section_inner {
  background-color: #f4f1ee;
  padding: 85px 75px;
}

.module--voice-customers .detailed-content .section--right {
  width: 52%;
}

.module--voice-customers .detailed-content .section--right .section_inner {
  padding: 85px 110px;
}

.module--voice-customers .detailed-content .table--countries {
  font-weight: 500;
  margin: 0;
}

.module--voice-customers .detailed-content .table--countries tbody {
  border: 0;
}

.module--voice-customers .detailed-content .table--countries tr {
  border: 0;
  border-top: 3px solid transparent;
}

.module--voice-customers .detailed-content .table--countries tr:nth-child(even) {
  background-color: #f4f1ee;
}

.module--voice-customers .detailed-content .table--countries td {
  padding: 0 5px;
}

.module--voice-customers .detailed-content .table--countries td:first-child {
  display: flex;
  align-items: center;
}

.module--voice-customers .detailed-content .table--countries td:first-child::before {
  content: "";
  width: 20px;
  height: 20px;
  background-position: center;
  background-size: cover;
  margin-left: 5px;
  margin-right: 15px;
}

.module--voice-customers .detailed-content .table--countries [data-country="denmark"] td:first-child::before {
  background-image: url("../design/svg/denmark.svg");
}

.module--voice-customers .detailed-content .table--countries [data-country="norway"] td:first-child::before {
  background-image: url("../design/svg/norway.svg");
}

.module--voice-customers .detailed-content .table--countries [data-country="sweden"] td:first-child::before {
  background-image: url("../design/svg/sweeden.svg");
}

.module--voice-customers .detailed-content .table--countries [data-country="iceland"] td:first-child::before {
  background-image: url("../design/svg/iceland.svg");
}

.module--voice-customers .detailed-content .table--countries [data-country="germany"] td:first-child::before {
  background-image: url("../design/svg/germany.svg");
}

.module--voice-customers .detailed-content .table--countries [data-country="the netherlands"] td:first-child::before {
  background-image: url("../design/svg/netherlands.svg");
}

/* 00598287 */
.module--voice-customers .detailed-content .table--countries [data-country="czechia"] td:first-child::before {
  background-image: url("../design/svg/czech.svg");
}
/* 00598287 */

/* 00606757 */
.module--voice-customers .detailed-content .table--countries [data-country="uk"] td:first-child::before {
  background-image: url("../design/svg/uk-flag.svg");
}

.module--voice-customers .detailed-content .table--countries [data-country="poland"] td:first-child::before {
  background-image: url("../design/svg/poland.svg");
}
/* 00606757 */

.module--voice-customers .detailed-content .table--countries td:last-child {
  text-align: right;
}

@media only screen and (max-width: 1024px) {
  .module--voice-customers .item--visible {
      width: calc(100% / 3);
  }

  .module--voice-customers .detailed-content .section {
      width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .module--voice-customers .item--visible {
      width: 50%;
  }
}

@media only screen and (max-width: 540px) {
  .module--voice-customers .item--visible {
      width: 100%;
  }
}

/* Commercial Spaces */
.module--commercial-spaces .module_container--outer {
  max-width: 1100px;
}

/* CUSTOM */
.module-values .grid > .grid_col {
  position: relative;
}

.module-values .grid > .grid_col::before {
  content: "";
  display: block;
  padding-top: 100%;
}

.module-values .module-values_item-inner {
  position: absolute;
  top: 0;
  left: 40px;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 35px 20px;
}

.module--governance-documents .item-link {
  color: inherit;
  text-decoration: none;
}

.module--intro-text {
  font-size: 20px;
}

/* HEADER */
@media only screen and (min-width: 1556px) {
  .pane--header .HeaderPaneDiv {
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .pane--header .module-logo {
      width: clamp(120px, 20vw, 294px);
  }

  .nav--main {
      padding-left: 70px !important;
      padding-right: 30px;
      width: auto;
  }

  .nav--main .level1 > li {
      padding: 0 clamp(5px, 0.8vw, 15px);
  }

  .module-search-toggle {
      position: relative;
      top: auto;
      left: auto;
      right: auto;
      transform: none;
  }
}

.module--small-title .module_title {
  font-size: 26px;
}

.module--facts .module-key-facts_icon {
  height: 110px;
}

@media only screen and (min-width: 1025px) {
  .module--facts .grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
  }

  .module--facts .grid_col {
      text-align: center;
      width: auto;
  }
}

.module-tab--board .person-intro {
  margin-top: 10px;
}

.module-tab--board .module_item:not(.js--overlay) .person-intro {
  display: none;
}

/* HOME PAGE MODULE PORTFOLIO */
.facts_icon-smaller {
  width: 110px;
}

.intro-text-size {
  font-size: 3rem;
  line-height: 1.33333;
  letter-spacing: 0.1px;
  font-weight: 200;
}

.module--intro-spacing {
  padding-bottom: 0 !important;
}

.PageInvestorsDebtInformationEMTNProgramme .table tr td {
  text-align: left;
}

/* GOVERNANCE LEADERSHIP PAGE */
.module--download-list .q4icons_icon::before {
  content: "\e900";
}

.module--download-list {
  margin-bottom: -15px;
  margin-top: -10px;
}

.header--download-list {
  font-size: 1.8rem;
  font-weight: 400;
  margin: 0;
}

.module--download-list > a:hover {
  text-decoration: none;
}

.PageCorporateGovernanceLeadership .module-page-title {
  padding-bottom: 0;
}

.PageCorporateGovernanceLeadership .module-downloads {
  display: none;
}

/* SUSTAINABILITY PAGE */
.module-efforts img {
  width: 110px;
  padding: 0 !important;
}

/* COMMITTEE PAGE */
.module--intro-spacing {
  padding-top: 45px !important;
}

.module-committee {
  padding-bottom: 0 !important;
}

.module--spacing-bottom {
  padding-bottom: 0 !important;
}

/* COMMERCIAL PAPER PROGRAMME PAGE*/
.table--commercial-paper .table tr td:last-child {
  text-align: left;
  max-width: 300px;
}

.table--commercial-paper .table {
  max-width: 900px;
}

/* ABOUT US -> STRATEGY PAGE */
.module-strategic-pillars img {
  max-width: 110px;
  padding: 13px;
}

.module-strategic-pillars .module-overlay_title-wrap h2 {
  font-size: 23px;
  font-weight: 400;
  margin: 25px 0 35px;
}

.module-strategic-pillars .overlay:nth-child(2) .module-overlay_title-wrap {
  margin-top: -10px;
}

/* CUSTOMERS PAGE */
.module--voice-customers img {
  max-width: 80px;
}

.module-downloads span:nth-child(2) {
  padding-left: 25px;
}

/* ESG Reporting Page */
.module_link-annual .q4icons_icon::before {
  content: "\e900";
}

.q4icons .corpo_gov-icon::before {
  content: "\e900";
  color: #ff651e;
  vertical-align: baseline;
}

/* HOMEPAGE INTRO */
.landing-heading {
  font-size: 40px;
  font-weight: 400;
}

/* HOMEPAGE SLIDER BUTTON */
.homepage_btn {
  position: absolute;
  top: 92%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
}

/* @media all and (max-width: 1024px) {
  .homepage_btn {
      top: 85%;
  }
}

@media all and (max-width: 530px) {
  .homepage_btn {
      top: 75%;
  }
} */

/* LOGO */
.module-logo .module-logo_image {
  max-width: 325px;
  margin-top: -10px;
}

@media all and (max-width: 1555px) {
  .module-logo .module-logo_image {
      margin-top: 0;
  }
}

.module-footer-social img {
  max-width: 294px;
}

/* OWNERSHIP PAGE */
.ownership-wider-XL {
  max-width: 1165px;
  margin: 0 auto;
}

.ownership-wider-L {
  max-width: 1075px;
  margin: 0 auto;
}

/* OWNERSHIP SCHEMA */
.flag-margin-null {
  margin-right: 0 !important;
}

.ownership-schema {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.ownership-schema .schema-left {
  width: 100%;
  max-width: 330px;
}

.ownership-schema .schema-left .schema-left-logo,
.ownership-schema .schema-left .schema-left-text {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100px;
  background-color: #fff;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08), inset 0px -3px 0px #ff5000;
  padding: 2rem;
}

.ownership-schema .schema-left .schema-left-text::before,
.ownership-schema .schema-left .schema-left-text::after,
.ownership-schema .schema-left .schema-left-logo::after,
.ownership-schema .schema-mid::before,
.ownership-schema .schema-right::before {
  content: "";
  position: absolute;
  background-color: #000;
}

.ownership-schema .schema-left .schema-left-logo::after {
  left: 100%;
  width: 660px;
  height: 1px;
}

.ownership-schema .schema-left .schema-left-text::before {
  bottom: 100%;
  width: 1px;
  height: 85px;
}

.ownership-schema .schema-left .schema-left-text::after {
  left: 100%;
  width: 75px;
  height: 1px;
}

.ownership-schema .schema-left .schema-left-logo {
  margin-bottom: 85px;
  display: flex;
  flex-direction: column;
}

.ownership-schema .schema-left .schema-left-logo img {
  width: 100%;
  max-width: 172px;
  margin-bottom: 10px;
}

.ownership-schema .schema-left .schema-left-text p {
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  text-align: center;
  margin-bottom: 0;
}

.ownership-schema .schema-mid {
  position: relative;
  max-width: 510px;
  min-height: 372px;
  background-color: #fff;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08), inset 0px -3px 0px #ff5000;
  margin-top: 133px;
  padding: 4rem 3.5rem;
}

.ownership-schema .schema-mid::before {
  bottom: 100%;
  left: 50%;
  width: 1px;
  height: 82px;
}

.ownership-schema .schema-mid .schema-flags {
  margin-top: 40px;
}

.ownership-schema .schema-mid .schema-flags img {
  margin-right: 12px;
  margin-bottom: 32px;
}

.ownership-schema .schema-right {
  position: relative;
  max-width: 290px;
  min-height: 505px;
  background-color: #fff;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08), inset 0px -3px 0px #ff5000;
  padding: 2.5rem 4.5rem;
  z-index: 9;
}

.ownership-schema .schema-right p {
  color: #333132;
  font-size: 16px;
  font-weight: bold;
  line-height: 27px;
  letter-spacing: 0.01em;
}

.ownership-schema .schema-right img {
  display: block;
}

.ownership-schema .schema-right img:not(:last-child) {
  margin-bottom: 27px;
}

.ownership-schema .schema-right .img-logotyp {
  max-width: 130px;
}

.ownership-schema .schema-right .img-ericsson {
  max-width: 167px;
}

@media all and (max-width: 1555px) {
  .ownership-schema {
      flex-direction: column;
      align-items: center;
  }

  .ownership-schema .schema-mid {
      margin-top: 85px;
      margin-bottom: 85px;
  }

  .ownership-schema .schema-mid::before {
      height: 85px;
  }

  .ownership-schema .schema-right::before {
      width: 1px;
      height: 85px;
      bottom: 100%;
      left: 50%;
  }

  .ownership-schema .schema-left .schema-left-logo::after,
  .ownership-schema .schema-left .schema-left-text::after {
      display: none;
  }
}

/* OWNERSHIP OVERVIEW TABLE */
.overview-table .table tbody tr td {
  font-size: 22px;
  font-weight: 400;
  height: 80px;
}

.overview-table .img-heimstaden {
  width: 165px;
  vertical-align: sub;
}

.overview-table .img-folksam {
  vertical-align: sub;
}

.overview-table .img-logotyp {
  max-width: 120px;
}

.overview-table .img-ericsson {
  width: 130px;
  vertical-align: sub;
}

.overview-table .overview-brands {
  font-size: 16px !important;
  font-weight: 700 !important;
}

.table--commercial-paper {
  padding-bottom: 25px !important;
}

.SectionInvestorsDebtInformationGreenFinancing .module_title {
  font-size: 2.6rem;
  margin-bottom: 10px;
}

.module-key-facts .ltv-icon {
  padding: 7px;
}

.module-key-facts .img-star {
  padding: 13px;
}

.module--overview-top {
  padding-top: 0 !important;
}

.ownership-second-p {
  margin-top: 20px;
}

/* Governance Documents */
.governance-documents-and-policies {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

.governance-documents-and-policies h2 {
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: 12.8px;
  letter-spacing: 0.01em;
}

/* 00272863 - mobile issue */
@media only screen and (max-width: 1090px) {
  .module-tabs_button h2 {
      font-size: 2.6rem;
  }
}

/* 00272863 */
/* 00272806 - map pin issue */
@media only screen and (max-width: 768px) {
  .module-portfolio_overlay-container.js--details-open .module-portfolio_map-container {
      margin-right: 0;
  }

  .module-portfolio_map-container svg {
      width: 600px;
      height: 450px;
  }

  .module-portfolio_map-container .module_round-button {
      width: 10px;
      height: 10px;
      padding: 7px;
      font-size: 0.6rem;
  }

  .module-portfolio_map-container .module_round-button--iceland {
      top: 109px;
      right: 282px;
  }

  .module-portfolio_map-container .module_round-button--norway {
      top: 146px;
      right: 153px;
  }

  .module-portfolio_map-container .module_round-button--sweden {
      top: 163px;
      right: 111px;
  }

  .module-portfolio_map-container .module_round-button--denmark {
      top: 202px;
      right: 160px;
  }

  .module-portfolio_map-container .module_round-button--netherlands {
      top: 242px;
      right: 190px;
  }

  .module-portfolio_map-container .module_round-button--england {
      top: 235px;
      right: 245px;
  }

  .module-portfolio_map-container .module_round-button--germany {
      top: 290px;
      right: 168px;
  }

  .module-portfolio_map-container .module_round-button--poland {
      top: 258px;
      right: 90px;
  }

  .module-portfolio_map-container .module_round-button--czech {
      top: 282px;
      right: 124px;
  }

  .module-portfolio_map-container .module_round-button--finland {
      top: 134px;
      right: 47px;
  }

  .module-portfolio .module_portfolio-close {
      top: 20px;
      right: 20px;
  }

  .module-portfolio_details-content {
      padding: 35px 30px 50px;
  }
}

/* 00272806 */

.overview-table .img-mpk {
  width: 165px;
  vertical-align: sub;
}

/*00522199*/

.q4-icon_Heimstaden-ikoner-2021-v2-1:before {
  content: "\e942";
}

.q4-icon_Heimstaden-ikoner-2021-v2:before {
  content: "\e943";
}

.q4-icon_play3:before {
  content: url("../design/svg/play3.svg");
}

.q4-icon_engagement:before {
  content: "\e944";
}

.q4-icon_gender:before {
  content: "\e945";
}

.q4-icon_response-rate:before {
  content: "\e949";
}

.q4-icon_inclusion:before {
  content: "\e948";
}

.q4-icon_health:before {
  content: "\e947";
}

.module-people-slider_item-inner .q4-icon_play3:before {
  position: absolute;
  font-size: 9rem;
  color: white;
}

.videoLink {
  display: flex;
  justify-content: center;
  align-items: center;
}
.PageCorporateGovernanceCorporateGovernance .module_corp_gov_links {
  padding-top: 30px;
  padding-bottom: 70px;
}
.PageCorporateGovernanceCorporateGovernance .module_corp_gov_links h2 {
  margin-top: 32px;
}

/* Cookie  Monster -- START */
.cm .cm_sidebar .pref_necessary {
  position: relative;
}
.cm .cm_sidebar .pref_necessary .optional_slider {
  background-color: #ec6a4c;
  pointer-events: none;
}
.cm .cm_sidebar .optional_slider[data-toggle="on"] {
  background-color: #ec6a4c;
}
.cm .cm_sidebar h4 {
  font-size: 2rem;
}
.cm_sidebar .cm_disclaimer-buttons .cm_button {
  max-width: fit-content;
  display: block;
}
.cm .cm_sidebar .cm_disclaimer-buttons {
  padding-left: 0;
  padding-top: 20px;
  gap: 10px;
}
.cm .cm_sidebar .optional_slider {
  background-color: #a39b99;
}
.cm .cm_sidebar .bottom-text {
  padding-top: 30px;
  line-height: 1.5;
  font-size: 1.5rem;
}
.cm_sidebar--left.visible {
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.cm div.toggle {
  position: absolute;
  top: 7px;
  right: 0;
}
.cm h3 {
  font-size: 2.5rem;
}
.cm .pref_description {
  font-size: 1.5rem;
}
@media screen and (max-width: 640px) {
  .cm h3 {
      font-size: 2.4rem;
  }
  .cm .pref_description,
  .cm .bottom-text {
      line-height: 1.3;
      font-size: 14px;
  }
  .cm h4 {
      font-size: 1.7rem;
  }
}

/* Cookie  Monster -- END */

/* 00662232 */
.PageSustainabilityAHomeforaHomeOurProgrammes .module-breadcrumb, .PageSustainabilityAHomeforaHomeOurProgrammesProgramsDetails .module-breadcrumb {
  background-color: transparent !important;
}
.PageSustainabilityAHomeforaHomeOurProgrammes .pane--banner .pane_inner {
  padding-top: 50px !important;
  padding-bottom: 0px !important;
}
/* 00662232 */

/*00783362*/
.partner_container {
        background-color: #f3f3f3;
}

/*00821579*/

.module-side-box--sus .module_container--inner{
    display:flex;    
}

.sustainability-box-left{
    display: inline-block; 
    width: 45%; 
    max-width: 45% !important; 
    margin-right: 100px !important;
    vertical-align: top;
    padding: 35px !important;
}

.sustainability-box-right{
    display: inline-block; 
    width: 45%; 
    max-width: 45% !important; 
    vertical-align: top;
    padding: 35px !important;
}