/*==================================
------------ RESET CSS -----------
==================================*/
html, body, applet, object, iframe, h1, h2, h3, h4, h5, h6, blockquote, pre, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, 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;
}

b, strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

sup {
  font-size: 75%;
  line-height: 1;
  vertical-align: super;
}

sub {
  font-size: 75%;
  line-height: 1;
  vertical-align: sub;
}

small {
  font-size: small;
}

/*---------- Animations ----------*/
@keyframes spin {
  from {
      -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      transform: rotate(0deg);
  }

  to {
      -webkit-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      transform: rotate(360deg);
  }
}

/*==================================
--------- DEFAULT STYLES ---------
==================================*/
body {
  overflow-x: hidden;
  color: #5F5F5F;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: none;
}

/*---------- TYPOGRAPHY ----------*/
h1 {
  font-size: 45px;
  font-size: 4.5rem;
  font-weight: 700;
  margin-top: 45px;
  margin-bottom: 45px;
  line-height: 1.22;
  color: #363636;
}

.dark h1 {
  color: #fff;
}

h2 {
  margin-top: 20px;
  margin-bottom: 20px;
  color: #000;
  font-family: Montserrat;
  font-size: 22px;
  font-weight: 600;
  line-height: 35.2px;
}

.dark h2 {
  color: #fff;
}

h3 {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.2;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #363636;
}

.dark h3 {
  color: #fff;
}

h4 {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.22;
  font-weight: 600;
  margin-top: 16px;
  margin-bottom: 16px;
  color: #363636;
}

.dark h4 {
  color: #fff;
}

h5 {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.2;
  margin-top: 16px;
  margin-bottom: 16px;
  color: #263147;
}

.dark h5 {
  color: #fff;
}

a {
  text-decoration: none;
  color: #DBB216;
  transition: color 0.5s ease-in-out;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

p {
  line-height: 1.5;
  font-weight: 400;
}

i {
  display: inline-block;
}

@media only screen and (max-width: 767px) {
  h1 {
      font-size: 35px;
      font-size: 3.5rem;
  }

  h2 {
      font-size: 30px;
      font-size: 3rem;
  }

  h3 {
      font-size: 22px;
      font-size: 2.2rem;
  }
}

/*------------ COMMON ------------*/
img {
  max-width: 100%;
}

input[type="checkbox"], input[type="radio"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

input[type="checkbox"]+label, input[type="radio"]+label {
  user-select: none;
  cursor: pointer;
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 500;
  line-height: 20.82px;
  color: #000;
}

input[type="checkbox"]+label:before, input[type="radio"]+label:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  background-color: #fff;
  border: 1px solid #000;
  margin-right: 20px;
  line-height: 1;
}

input[type="checkbox"]:checked+label:before, input[type="radio"]:checked+label:before {
  width: 24px;
  height: 24px;
  /* border-width: 8px; */
  /* border-color: red; */
  background-color: #DBB216;
}

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--upper-alpha {
  list-style-type: upper-alpha;
}

.list--roman {
  list-style-type: lower-roman;
}

.list--upper-roman {
  list-style-type: upper-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: 16px 30px;
  background-color: #fff;
  border: 1px solid #D9D9D6;
  color: #363636;
  border-radius: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 300;
}

.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 {
  background-color: #263147;
  border-color: #263147;
  color: #fff;
  transition: 0.3s ease-in-out;
  text-align: center;
  min-width: 195px;
}

.button:hover, .button.js--selected {
  background-color: #DBB216;
  border-color: #DBB216;
  color: #fff;
}

.button--inverted {
  background-color: #DBB216;
  border-color: #DBB216;
  color: #fff;
}

.button--inverted:hover {
  background-color: #263147;
  border-color: #263147;
  color: #fff;
}

.button--dark {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}

.button--dark:hover {
  background: #fff;
  color: #263147;
}

.button--more {
  background-color: transparent;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid #4A5270;
  color: #263147;
  width: 100%;
  min-width: auto;
  text-align: left;
  position: relative;
  padding: 7.5px 30px 7.5px 0;
}

.button--more:hover {
  background-color: transparent;
  color: #DBB216;
  border-color: transparent;
}

.dark .button--more {
  color: #fff;
  border-color: #fff;
}

.dark .button--more:hover {
  color: #DBB216;
  border-color: transparent;
}

.button--more:before {
  content: "";
  background-color: #DBB216;
  height: 1px;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  transition: 0.5s ease-in-out;
}

.button--more:hover:before {
  width: 100%;
}

.button--more:after {
  font-family: 'q4-icons';
  content: "\e91c";
  font-size: 12px;
  background-color: #DBB216;
  color: #fff;
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 24px;
  transition: 0.3s ease-in-out;
}

.button--more:hover:after {
  background-color: #DBB216;
}

.button--more2 {
  text-align: left;
  min-width: auto;
  background-color: #fff;
  border-color: #fff;
  color: #363636;
  position: relative;
  padding-left: 15px;
  padding-right: 65px;
}

.button--more2:after {
  font-family: 'q4-icons';
  content: "\ed5d";
  font-size: 12px;
  line-height: 48px;
  background-color: #DBB216;
  position: absolute;
  top: -1px;
  right: -1px;
  width: 48px;
  height: 48px;
  display: inline-block;
  color: #fff;
  text-align: center;
  transition: 0.3s ease-in-out;
}

.button--back:after {
  content: "\e90f";
}

.button--more2:hover:after {
  background-color: #DBB216;
}

.dropdown {
  padding: 10px 80px 10px 10px;
  background: #fff url("../design/svg/dropdown-arrow.svg") no-repeat;
  background-size: 20px;
  background-position-x: 95%;
  background-position-y: center;
  min-width: 200px;
  color: #000;
  height: 48px;
  line-height: 1.2;
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  border: 1px solid #000;
}

.dropdown::-ms-expand {
  display: none;
}

/*------------ TABLES ------------*/
.table {
  width: 100%;
  margin: 16px 0;
}

.table thead {
  border-bottom: 1px solid #D9D9D6;
}

.table thead th {
  text-align: left;
}

.table tr:nth-child(even) {
  background-color: #f5f5f5;
}

.table th, .table td, .table tr>.grid_col {
  margin: 0;
  padding: 18px 20px;
  line-height: 1.4em;
}

.table th {
  font-weight: 500;
  color: #263147;
  padding-top: 16px;
  padding-bottom: 16px;
}

/* 00032871 */
.table tr td:first-child {
  width: 33.3%;
}

/* end 00019712 */
.table--headless tr:nth-child(even) {
  background-color: transparent;
}

.table--headless tr:nth-child(odd) {
  background-color: #f5f5f5;
}

.table--headless tr:first-child {
  background-color: transparent;
  text-align: left;
  border-bottom: 1px solid #D9D9D6;
}

.table--headless tr:first-child td {
  font-weight: 500;
  color: #263147;
  padding-top: 16px;
  padding-bottom: 16px;
}

.table-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
}

.table--fixed-income {
  table-layout: fixed;
  min-width: 950px;
}

.Languagees-ES .table--fixed-income {
  min-width: 1250px;
}

.table--fixed-income thead {
  border-bottom: 2px solid #DBB216;
}

.table--fixed-income tfoot {
  border-top: 2px solid #DBB216;
  border-bottom: 2px solid #DBB216;
}

.table--fixed-income th {
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
  padding: 15px;
}

.table--fixed-income td {
  font-size: 14px;
  line-height: 18px;
  padding: 15px;
}

.table--fixed-income tbody tr:nth-child(odd) {
  background-color: #F5F5F5;
}

.table--fixed-income tbody tr:nth-child(even) {
  background-color: transparent;
}

.table--fixed-income .button--more {
  border-bottom: none;
}

@media only screen and (max-width: 767px) {
  .table--responsive thead {
      display: none;
  }

  .table--responsive tbody {
      border-top: 2px solid #DBB216;
      border-bottom: 2px solid #DBB216;
  }

  .table--responsive td,
  .table.table--responsive tr td:first-child {
      display: block;
      width: 100% !important;
      padding-left: 5px;
      padding-right: 5px;
  }

  .table--responsive td[data-heading]:before {
      content: attr(data-heading) ": ";
      font-weight: bold;
      display: inline-block;
      vertical-align: top;
      min-height: 1px;
      box-sizing: border-box;
      margin-right: -.25em;
      width: 50%;
      padding-right: 10px;
  }

  .table--responsive td[data-heading]>span {
      display: inline-block;
      vertical-align: top;
      min-height: 1px;
      box-sizing: border-box;
      margin-right: -.25em;
      width: 50%;
  }
}

/*--------- SPECIAL BOXES --------*/
.code {
  margin: 32px 0;
  padding: 20px 15px;
  background: #f5f5f5;
  border-left: 3px solid rgba(0, 111, 186, 0.5);
  font-family: monospace, serif;
  font-size: 14px;
  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: #f5f5f5;
  border-left: 3px solid rgba(241, 175, 15, 0.5);
  font-size: 14px;
  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 ---------
==================================*/
.module_q4-icon-links .module_link:before, .module_q4-icon-links .module_rss-link: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: "\e9bb";
  font-size: 36px;
  vertical-align: middle;
  display: inline-block;
  padding-right: 5px;
  color: #4A5270;
}

.module_q4-icon-links .module_rss-link:before, .module_q4-icon-links .module_link.module_link-rss:before {
  content: "\eefa";
  font-size: 27px;
  color: #fff;
  background-color: #DBB216;
  padding: 5px;
  transition: 0.5s ease-in-out;
}

.module_q4-icon-links .module_rss-link:hover:before, .module_q4-icon-links .module_link.module_link-rss:hover:before {
  background-color: #263147;
}

.module_q4-icon-links .module_add-to-calendar-reveal:before {
  content: "\ea5f";
  padding-right: 5px;
}

.module_q4-icon-links .module_link[href$=".mp3"]:before, .module_q4-icon-links .module_link[href$=".wmv"]:before, .module_q4-icon-links .module_link[href$=".MP3"]:before, .module_q4-icon-links .module_link[href$=".WMV"]:before {
  content: "\e952";
}

.module_q4-icon-links .module_link[href$=".xls"]:before, .module_q4-icon-links .module_link[href$=".xlsx"]:before, .module_q4-icon-links .module_link[href$=".csv"]:before, .module_q4-icon-links .module_link[href$=".XLS"]:before, .module_q4-icon-links .module_link[href$=".XLSX"]:before, .module_q4-icon-links .module_link[href$=".CSV"]:before {
  content: "\ef41";
}

.analyst-centre-html .module_q4-icon-links .module_link[href$=".xls"]:before, .analyst-centre-html .module_q4-icon-links .module_link[href$=".xlsx"]:before, .analyst-centre-html .module_q4-icon-links .module_link[href$=".csv"]:before, .analyst-centre-html .module_q4-icon-links .module_link[href$=".XLS"]:before, .analyst-centre-html .module_q4-icon-links .module_link[href$=".XLSX"]:before, .analyst-centre-html .module_q4-icon-links .module_link[href$=".CSV"]:before {
  font-family: 'q4-icons-first-quantum' !important;
  content: "\e918";
}

.module_q4-icon-links .module_link[href$=".mp4"]:before, .module_q4-icon-links .module_link[href$=".flv"]:before, .module_q4-icon-links .module_link[href$=".avi"]:before, .module_q4-icon-links .module_link[href$=".MP4"]:before, .module_q4-icon-links .module_link[href$=".FLV"]:before, .module_q4-icon-links .module_link[href$=".AVI"]:before {
  content: "\e95e";
}

.module_q4-icon-links .module_link[href$=".pdf"]:before, .module_q4-icon-links .module_link[href$=".PDF"]:before {
  content: "\e918";
}

.module_q4-icon-links .module_link[href$=".doc"]:before, .module_q4-icon-links .module_link[href$=".DOC"]:before {
  content: "\ef40";
}

.module_q4-icon-links .module_link[href$=".zip"]:before, .module_q4-icon-links .module_link[href$=".ZIP"]:before {
  content: "\e9b9";
}

.module_q4-icon-links .module_link.module_link-webcast:before, .module_q4-icon-links .module_webcast-link:before {
  content: "\e989";
}

.module_q4-icon-links .module_link.module_link-file:before {
  content: "\eb81";
}

.module_q4-icon-links .module_link.module_link-sec:before {
  content: "\e9bb";
}

.module_q4-icon-links .module_link.module_link-sec[href$=".pdf"]:before {
  content: "\e918";
}

.module_q4-icon-links .module_link.module_link-sec[href$=".rtf"]:before {
  content: "\ef40";
}

.module_q4-icon-links .module_link.module_link-sec[href$=".xls"]:before {
  content: "\ef41";
}

.module_q4-icon-links .module_link.module_link-sec[href$=".zip"]:before {
  content: "\e9b9";
}

/*==================================
----------- TOAST GRID -----------
==================================*/
.grid {
  list-style: none;
  margin-left: -32px;
}

.grid--flex {
  margin-left: -32px;
  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: -.25em;
  min-height: 1px;
  padding-left: 32px;
  vertical-align: top;
}

@media (max-width: 480px) {
  .grid_col {
      display: block;
      margin-left: 0;
      margin-right: 0;
      width: 100%;
  }
}

@media (max-width: 1200px) and (min-width: 1025px) {
  .grid_col[class*="grid_col--lg-"] {
      display: inline-block;
      margin-right: -.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: -.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: -.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: -.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: -32px;
}

.grid--gutter .grid_col {
  padding-left: 32px;
}

.grid--gutter-60 {
  margin-left: -60px;
}

.grid--gutter-60 .grid_col {
  padding-left: 60px;
}

.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;
}

.not-visible {
  opacity: 0;
  visibility: hidden;
}

.disabled {
  opacity: 0.1;
  border-color: #5F5F5F;
  color: #5F5F5F;
  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: #DBB216;
}

.background--alt-brand {
  background: linear-gradient(225deg, #263147 0%, #131A2E 100%);
}

.background--dark {
  background-color: #000;
}

.background--light {
  background-color: #fff;
}

.background--grey {
  background-color: #f5f5f5;
}

.background--success {
  background-color: #23a217;
}

.background--error {
  background-color: #b72121;
}

.background--color-1 {
  background-color: #131A2E;
}

.background--color-2 {
  background-color: #263147;
}

.color--brand {
  color: #DBB216;
}

.color--dark {
  color: #000;
}

.color--grey {
  color: #f5f5f5;
}

.color--success {
  color: #23a217;
}

.color--error {
  color: #b72121;
}

.color--1 {
  color: #131A2E;
}

.color--2 {
  color: #263147;
}

.dark {
  color: #fff;
}

.dark a:not(.button) {
  color: #fff;
}

.dark a:not(.button):hover {
  color: #DBB216;
}

.dark .button--cta {
  color: #fff;
}

.no-margin {
  margin: 0;
}

.no-margin-top {
  margin-top: 0;
}

.no-margin-bottom {
  margin-bottom: 0;
}

.no-margin-left {
  margin-left: 0;
}

.no-margin-right {
  margin-right: 0;
}

.no-padding {
  padding: 0;
}

.no-padding-top {
  padding-top: 0 !important;
}

.no-padding-bottom {
  padding-top: 0;
}

.no-padding-left {
  padding-left: 0;
}

.no-padding-right {
  padding-right: 0;
}

.font-extralight {
  font-weight: 200;
}

.font-light {
  font-weight: 300;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.module--no-title .module_title {
  display: none;
}

.module_blockblue {
  border-left: 3px solid;
  padding-left: 10px;
  font-weight: 600;
  max-width: 800px;
}

/*==================================
--------- ACCESSIBILITY ----------
==================================*/
*:focus {
  outline: none;
  text-decoration: underline dotted !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;
}

/*---------- 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: 50px;
  font-size: 5rem;
  animation: spin 0.8s infinite linear;
}

.js--hidden:not([role=tabpanel]) {
  display: none !important;
}

.js--hidden[role=tabpanel] {
  display: none;
}

.js--visible {
  display: block;
}

.js--disabled {
  opacity: 0.3;
  border-color: #5F5F5F;
  color: #5F5F5F;
  transition: none;
  pointer-events: none;
}

.js--invalid input[type="text"], .js--invalid select {
  border: 1px solid #b72121 !important;
}

.js--invalid input[type="checkbox"] {
  border-color: #b72121 !important;
}

/*==================================
----------- MODULE CSS -----------
==================================*/
/*-------- All Module CSS --------*/
.module_header, .module_back-to-top, .module_anchor-target, .module_file-size, .module_file-type, .module_file-text {
  display: none;
}

.module_file-size, .module_file-type, .module_file-text {
  font-size: 14px;
  font-size: 1.4rem;
}

.module_nav:not(:empty), .module_location:not(:empty), .module_speakers:not(:empty), .module_links:not(:empty), .module_body:not(:empty), .module_options:not(:empty), .module_not-found:not(:empty) {
  margin-bottom: 15px;
}

.module_error-container {
  margin-bottom: 30px;
  color: #b72121;
}

.module_add-to-calendar-reveal {
  color: #DBB216;
  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: 14px;
  font-size: 1.4rem;
  text-align: center;
}

.fancybox-container .module_add-to-calendar-list {
  padding: 70px;
}

.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: 24px;
  font-size: 2.4rem;
}

.module_add-to-calendar.js--hidden {
  display: none;
}

.module_actions, .module_pager {
  margin: 60px 0;
}

.module_date-time {
  margin-bottom: 5px;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 300;
  color: #363636;
}

.Languagees-ES .module_date-time {
  text-transform: capitalize;
}

.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.5;
  font-weight: 500;
  color: #263147;
  margin-bottom: 3px;
}

.module_headline-link {
  color: #000;
}

.module_headline-link:hover {
  color: #000;
  text-decoration: underline;
}

.module_image {
  display: inline-block;
  max-width: 30%;
  margin-bottom: 16px;
}

.module_image--right {
  float: right;
  margin-left: 32px;
}

.module_image--left {
  float: left;
  margin-right: 32px;
}

.module_introduction:not(:empty) {
  margin-bottom: 35px;
}

.module_item {
  padding: 30px 0 10px;
  border-bottom: 1px solid #D9D9D6;
}

.module_label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 300;
  color: #363636;
}

.module_label+.module_required {
  font-size: 14px;
  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 {
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px 5px 0;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
}

.module_link>.module_link-text, .module_link>i, .module_link>span {
  vertical-align: middle;
}

.module_link>i:before {
  display: block;
}

.module_links--box .module_link {
  display: inline-block;
  background-color: #263147;
  color: #fff;
  padding: 7px;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 300;
  transition: 0.5s ease-in-out;
}

.module_links--box .module_link:hover {
  background-color: #DBB216;
}

.module_link[style="DISPLAY:block;"], .module_link[style="display: block;"] {
  display: inline-block !important;
}

.module_loader {
  display: inline-block;
  animation: spin 1s linear infinite;
  margin: 0;
  line-height: 1;
}

.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, .MessageSent p: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: 15px 20px;
  border: 2px solid #DBB216;
  color: #5F5F5F;
  font-weight: normal;
}

.module_nav-link.selected, .module_nav-link.selected:visited, .module_nav .ModuleYearLink.selected, .module_nav .ModuleYearLink.selected:visited, .module_nav-link:visited.selected, .module_nav-link:visited.selected:visited, .module_nav .ModuleYearLink:visited.selected, .module_nav .ModuleYearLink:visited.selected:visited {
  background-color: #DBB216;
  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;
}

.module_options-label {
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 600;
  line-height: 21.96px;
  color: #000;
}

.module_options-title {
  margin-top: 0;
  margin-bottom: 40px;
}

.module_options-item+.module_options-item {
  margin-top: 30px;
}

.module_options-item .module_options-label, .module_options-item .module_options-select {
  display: block;
  margin-right: 0;
  width: 100%;
}

.module_options-item .select2-container {
  width: 100% !important;
  min-width: auto;
  margin-right: 0;
}

.module_options-item .select2-container--default .select2-selection--single {
  min-width: auto;
}

.module_options-item .module_options-label {
  margin-bottom: 15px;
}

.module_options-tags.module_options-tags.module_options-tags {
  margin-top: 30px;
}

.module_options_filter-button {
  margin-top: 50px;
  text-align: right;
}

@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: #5F5F5F;
}

.module_pager a[href] {
  color: #DBB216;
}

.module_reminder .module_input.module_reminder-period, .module_reminder .module_input.module_reminder-email {
  margin-right: 10px;
}

.module_reminder.js--reminded {
  display: none;
}

@media only screen and (max-width: 1023px) {
  .module_reminder>*, .module_reminder .module_input--brand[type="text"] {
      display: block;
      width: 100%;
      margin-bottom: 10px;
  }
}

.module_required {
  color: #000;
}

.module_required-text {
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
  color: #000;
  margin: 50px 0;
}

.module_rss {
  float: right;
}

.module_speakers li {
  margin-bottom: 5px;
}

/* .module_title {
margin-top: 0;
color: #DBB216;
} */
.dark .module_title {
  color: #fff;
}

.module_view-all-link {
  font-size: 14px;
  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: 13px 15px;
  border: 1px solid #F0EDE8;
  border-radius: 0;
  background-color: #F0EDE8;
  color: #000;
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.5px;
}

.module_input[type="text"]::-webkit-input-placeholder, .module_input[type="email"]::-webkit-input-placeholder {
  color: #000;
  opacity: 1;
}

.module_input[type="text"]::-moz-placeholder, .module_input[type="email"]::-moz-placeholder {
  color: #000;
  opacity: 1;
}

.module_input[type="text"]::-ms-input-placeholder, .module_input[type="email"]::-ms-input-placeholder {
  color: #363636;
  opacity: 1;
}

.module_input[type="text"]:-ms-input-placeholder, .module_input[type="email"]:-ms-input-placeholder {
  color: #363636;
  opacity: 1;
}

.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: none;
  min-height: 140px;
}

.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;
}

.module_dropdown {
  padding: 10px 80px 10px 30px;
  background: #fff url("../design/svg/dropdown-arrow.svg") no-repeat right 0 center;
  background-size: 48px 48px;
  min-width: 130px;
  color: #263147;
  height: 48px;
  line-height: 1.2;
}

.module_dropdown::-ms-expand {
  display: none;
}

.module-details .module_date-time {
  margin-bottom: 15px;
}

.module-details_title, .module_details-title {
  margin-top: 0;
}

.module_pager--load {
  text-align: right;
}

.module_pager--load .pager-next {
  background-color: #263147;
  border-color: #263147;
  border-radius: 0;
  color: #fff;
  transition: 0.3s ease-in-out;
  text-align: center;
  padding: 16px 30px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 300;
  display: inline-block;
  cursor: pointer;
  min-width: 195px;
}

.module_pager--load .pager-next:hover {
  background-color: #DBB216;
  border-color: #DBB216;
}

.module_items-number {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
  color: #363636;
  margin-bottom: 1px;
}

/*------- Captcha Component ------*/
.CaptchaContainer {
  display: none;
}

.CaptchaContainer table tr:nth-child(1) {
  display: none;
}

.CaptchaContainer table tr:nth-child(2) td {
  padding-bottom: 20px;
}

.CaptchaContainer table tr:nth-child(3) td {
  padding-bottom: 5px;
  font-size: 14px;
  font-size: 1.4rem;
}

.CaptchaContainer table tr:nth-child(3) td span {
  display: none !important;
}

.CaptchaContainer table tr:nth-child(4) span {
  display: none !important;
}

.CaptchaContainer table tr td {
  padding-right: 10px;
}

@media only screen and (max-width: 768px) {
  .CaptchaContainer table tr td {
      padding-right: 0;
  }
}

.CaptchaContainer input[type="text"] {
  appearance: none;
  -webkit-appearance: none;
  display: block;
  max-width: none;
  padding: 15px 20px;
  border: 1px solid #D9D9D6;
  border-radius: 0;
  background-color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 300;
  color: #363636;
}

.fancybox-container .CaptchaContainer table tr:nth-child(4) td {
  padding-bottom: 20px;
}

.fancybox-container .CaptchaContainer table tr td {
  padding-right: 0;
}

/*- 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: 16px;
  font-size: 1.6rem;
  margin-bottom: 5px;
}

.module-calculator_input input[type="checkbox"]+label {
  margin: 0;
}

.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[type="text"].js--revealed {
  display: block;
}

@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 #DBB216;
      border-bottom: 2px solid #DBB216;
  }

  .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--tablet {
  display: none;
  border-top: 1px solid #D9D9D6;
}

.module-committee .module_header {
  display: block;
  font-weight: 500;
  color: #263147;
  border-bottom: 1px solid #D9D9D6;
  position: relative;
}

.module-committee .module_container--tablet .module_header {
  padding-left: 50px;
}

.module-committee_category.js--active .module_header {
  color: #DBB216;
}

.module-committee .module_item {
  padding: 0;
  border: none;
}

.module-committee .module_item:nth-child(even) {
  background-color: #f5f5f5;
}

.module-committee .grid_col {
  padding: 17px 10px;
  text-align: center;
}

.module-committee .grid_col:first-child {
  text-align: left;
}

.module-committee .module_container--tablet .module_header .grid_col {
  padding-left: 0;
  padding-right: 0;
}

.module-committee .module_container--tablet .module_header .grid_col:first-child {
  width: 100%;
}

.module-committee .module_container--tablet .module_header .grid_col:last-child {
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: auto;
  padding: 0;
}

.module-committee_category .module_header i:before {
  content: "\e90e";
  font-size: 12px;
  color: #DBB216;
}

.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 {
  margin: 0;
  padding: 20px 0;
}

.module-committee_legend {
  display: inline-block;
  margin-right: 30px;
}

.module-committee_legend i {
  margin-right: 5px;
}

@media only screen and (max-width: 768px) {
  .module-committee .module_container--desktop {
      display: none;
  }

  .module-committee .module_container--tablet {
      display: block;
  }
}

@media only screen and (max-width: 767px) {
  .module-committee_legend {
      display: block;
      margin-right: 0;
  }

  .module-committee_legend+.module-committee_legend {
      margin-top: 10px;
  }
}

/*----- Dividends Module -----*/
.module-dividends .highcharts-series-0 rect {
  fill: #DBB216;
}

.module-dividends .highcharts-series-1 rect {
  fill: #f1af0f;
}

/*----- Download List Module -----*/
.module-downloads .module_nav {
  display: none;
}

.module-downloads .module_item {
  padding: 24px 20px 24px 50px;
  position: relative;
}

.module-downloads .module_header+.module_item, .module-downloads .module_item:first-child {
  border-top: 1px solid #D9D9D6;
}

.module-side-widget .module-downloads .module_header+.module_item, .module-side-widget .module-downloads .module_item:first-child {
  border-top: none;
}

.module-downloads_thumbnail, .module-downloads_date {
  display: none;
}

.module-downloads .module_file-text:not(:empty) {
  display: inline-block;
  margin-top: 5px;
}

.module-downloads_title-link {
  margin: 0;
}

.module-downloads_title-link.module-downloads_title-link:before {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
}

.module-downloads_title-link:after {
  font-family: 'q4-icons';
  content: "\e915";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #DBB216;
  font-size: 16px;
}

/*--------- Event Module ---------*/
.module-event_item-inner {
  height: 100%;
  padding-top: 35px;
  padding-bottom: 60px;
  position: relative;
}

.module-event_item--filters .module-event_item-inner {
  padding-left: 60px;
}

.module-event_item--filters .module-event_item-inner>* {
  position: relative;
  z-index: 1;
}

.module-event_item--filters .module-event_item-inner:after {
  content: "";
  background-color: inherit;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100%;
  width: 10000%;
}

.module-event .module_location, .module-event .module_speakers h4, .module-event .module_body {
  display: none;
}

.module-event .module_options {
  margin-bottom: 0;
}

.module-event .module_item.js--visible {
  display: block !important;
}

.module-event .module_links.module_links--columns>*:not(ul) {
  width: 50%;
  display: inline-block;
  vertical-align: top;
}

.module-event .module_links.module_links--columns>ul li {
  width: 50%;
  display: inline-block;
  vertical-align: top;
}

.module-event-details .module_links.module_links--columns>*:not(ul) {
  width: 50%;
  display: inline-block;
  vertical-align: top;
}

.module-event-details .module_links.module_links--columns>ul li {
  width: 50%;
  display: inline-block;
  vertical-align: top;
}

.module-event-details .module_speakers h4 {
  display: none;
}

.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: #f5f5f5;
}

.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 #dddddd;
}

.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 {
  display: table;
  width: 100%;
}

.module-event-calendar_calendar-container, .module-event-calendar_event-container {
  display: table-cell;
  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: #f5f5f5;
}

.module-event-calendar_splash i {
  font-size: 40px;
  font-size: 4rem;
  color: #DBB216;
}

.module-event-calendar_splash p {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.2;
}

.module-event-calendar_controls {
  padding: 20px 15px;
  background-color: #DBB216;
  font-weight: bold;
  color: #fff;
}

.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(0, 111, 186, 0.2);
}

.module-event-calendar_day {
  position: relative;
  width: 14.285%;
  margin: 0;
  padding: 8px 0 25px;
  border-top: 1px solid rgba(0, 111, 186, 0.2);
  border-left: 1px solid rgba(0, 111, 186, 0.2);
}

.module-event-calendar_day.calendar-dow-6 {
  border-right: 1px solid rgba(0, 111, 186, 0.2);
}

.module-event-calendar_day--name {
  padding: 15px 0 10px;
  border: none;
}

.module-event-calendar_day--today {
  background: #f5f5f5;
}

.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: #DBB216;
}

.module-event-calendar_day--selected {
  background-color: #DBB216;
  color: #fff;
}

.module-event-calendar_day--selected:after {
  background-color: #fff;
}

.module-event-calendar_day--adjacent-month {
  color: rgba(51, 51, 51, 0.1);
  pointer-events: none;
}

.module-event-calendar_day--adjacent-month:after {
  content: none;
}

.module-event-calendar .module_item {
  padding: 0;
}

.module-event-calendar .module_date-time, .module-event-calendar .module_headline {
  margin-bottom: 20px;
}

.module-event-calendar .module_add-to-calendar {
  margin: 0;
}

.module-event-archive .module_container--inner {
  position: relative;
}

.module-event-archive .module_headline-link, .module-event-archive .module_headline-text {
  color: #DBB216;
}

.module-event-archive .module_headline-link:hover {
  color: #263147;
}

.module-event-archive .module_loader-wrap {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 66.66667%;
  left: 0;
  text-align: center;
}

@media only screen and (max-width: 1024px) {
  .module-event-details .module_links.module_links--columns>*:not(ul) {
      display: inline;
      width: auto;
  }

  .module-event-details .module_links.module_links--columns>ul li {
      display: inline;
      width: auto;
  }

  .module-event_item--filters .module-event_item-inner {
      padding-left: 0;
  }

  .module-event_item--filters .module-event_item-inner:after {
      left: -30px;
  }

  .module-event-archive .module_item[data-source="presentations"] .module_links {
      text-align: left;
  }

  .module-event-archive .module_item[data-source="presentations"] .module_link {
      margin: 0 10px 5px 0;
  }
}

@media only screen and (max-width: 1023px) {
  .module-event_item.grid_col {
      flex-basis: 100%;
      max-width: 100%;
  }

  .module-event-archive .module_loader-wrap {
      top: auto;
      bottom: 40px;
      width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .module-event-calendar {
      display: block;
  }

  .module-event-calendar_calendar-container, .module-event-calendar_event-container {
      display: block;
      width: 100%;
  }

  .module-event-calendar_calendar-container {
      padding-right: 0;
  }

  .module-event-calendar_event-container {
      margin-top: 20px;
  }
}

@media only screen and (max-width: 480px) {
  .module-event .module_links.module_links--columns>*:not(ul) {
      display: block;
      width: auto;
  }

  .module-event .module_links.module_links--columns>ul li {
      display: block;
      width: auto;
  }

  .module-event-details .module_links.module_links--columns>*:not(ul) {
      display: block;
      width: auto;
  }

  .module-event-details .module_links.module_links--columns>ul li {
      display: block;
      width: auto;
  }

  .module-event-calendar_day {
      display: inline-block;
  }
}

/*---------- FAQ Module ----------*/
.module-faq .module_item {
  padding: 0;
}

.module-faq .module_item:first-child, .module-faq .toggle-all+.module_item {
  border-top: 1px solid #D9D9D6;
}

.module-faq_question {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  position: relative;
  margin: 0;
  padding: 22.5px 0 22.5px 50px;
  cursor: pointer;
  color: #263147;
}

.module-faq .module_item.js--active .module-faq_question {
  color: #DBB216;
}

.module-faq_question:before {
  font-family: 'q4-icons';
  content: "\e90e";
  font-size: 12px;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #DBB216;
}

.module-faq_answer {
  padding: 0 25px 25px;
}

.module-faq_answer>*:first-child {
  margin-top: 0;
  padding-top: 0;
}

.module-faq_answer>*:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.module-faq_answer p {
  margin: 0;
  padding: 0 0 10px;
}

.module-faq_answer a {
  word-break: break-all;
}

.module-faq .toggle-all {
  margin-bottom: 30px;
}

.module-faq .toggle-all a:before {
  content: "Show all";
}

.module-faq .toggle-all.js--active a:before {
  content: "Hide all";
}

/*--- Financial Report Modules ---*/
.module-financial-reports_item-inner {
  height: 100%;
  padding-bottom: 60px;
  position: relative;
}

.module-financial-reports_item--filters .module-financial-reports_item-inner {
  padding-top: 35px;
  padding-left: 60px;
}

.module-financial-reports_item--filters .module-financial-reports_item-inner:after {
  content: "";
  background-color: inherit;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100%;
  width: 10000%;
}

.module-financial-reports .module_item {
  padding: 0;
  border: none;
}

.module-financial-reports .module_links {
  margin: 0;
}

.module-financial-reports .module_links>div {
  border-bottom: 1px solid #D9D9D6;
  padding: 30px 20px 30px 50px;
  position: relative;
}

.module-financial-reports .module_links>div.js--visible {
  display: block !important;
}

.module-financial-reports .module_link {
  margin: 0;
}

.module-financial-reports .module_link:before {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
}

.module-financial-reports .module_link:after {
  font-family: 'q4-icons';
  content: "\e915";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #DBB216;
  font-size: 16px;
}

.module-financial-reports .module_file-size {
  display: block;
}

.module-financial-reports .module_file-size:not(:empty) {
  margin-top: 5px;
}

.module-financial-reports .module_loader-wrap {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 66.66667%;
  left: 0;
  text-align: center;
}

.module-financial-year .module_cover {
  margin-bottom: 15px;
}

.module-financial-year .module_cover img {
  display: inline-block;
  border: 1px solid #DBB216;
}

.module-financial-year .module_item {
  padding: 0;
  border: none;
}

.module-financial-year .module_links {
  margin: 0;
}

.module-financial-year .module-financial_year {
  text-align: center;
}

.module-financial-quarter .module_item:first-child {
  border-top: 1px solid #D9D9D6;
}

.module-financial-quarter .module_item {
  padding: 0;
}

.module-financial-quarter .module_links {
  margin: 0;
  padding: 0 25px 25px;
}

.module-financial-quarter .module_links>div {
  display: block;
}

.module-financial-quarter .module_link {
  margin-right: 0;
  margin-bottom: 15px;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: normal;
  text-transform: none;
}

.module-financial-quarter .module-financial_year-text {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  position: relative;
  margin: 0;
  padding: 22.5px 0 22.5px 50px;
  cursor: pointer;
  color: #263147;
}

.module-financial-quarter .module_item.js--active .module-financial_year-text {
  color: #DBB216;
}

.module-financial-quarter .module-financial_year-text:after {
  font-family: 'q4-icons';
  content: "\e90e";
  font-size: 12px;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #DBB216;
}

.module-financial-table_header {
  font-weight: 500;
  color: #263147;
  border-bottom: 1px solid #D9D9D6;
}

.module-financial-table_header-year-container {
  text-align: center;
}

.module-financial-table_header-year, .module-financial-table_header-category.grid_col {
  padding: 20px 15px;
}

.module-financial-table_body-row:nth-child(even) {
  background-color: #f5f5f5;
}

.module-financial-table_body-year-container {
  text-align: center;
}

.module-financial-table_body-year, .module-financial-table_body-category.grid_col {
  padding: 18px 15px;
}

.module-financial-table_item {
  display: inline-block;
  margin-right: 15px;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: normal;
}

.module-financial-table_item~.module_item {
  margin-right: 5px;
}

.module-financial-table_item--empty {
  opacity: 0.5;
}

.module-financial-table .slick-slider {
  display: inline-block;
  padding: 0;
}

.module-financial-table .slick-slide:focus {
  outline: none;
}

.module-financial-table .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  z-index: 10;
}

.module-financial-table .slick-prev {
  left: 10px;
}

.module-financial-table .slick-next {
  right: 10px;
}

.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: #f5f5f5;
  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: 10px;
  font-size: 1rem;
  margin-left: 5px;
}

.module-financial-mashup .button {
  width: 100%;
}

.module-financial-mashup .button.js--selected {
  background-color: #DBB216;
  border-color: #DBB216;
  color: #fff;
}

@media only screen and (max-width: 1023px) {
  .module-financial-reports_item.grid_col {
      flex-basis: 100%;
      max-width: 100%;
  }

  .module-financial-reports_item--filters .module-financial-reports_item-inner {
      padding-left: 0;
  }

  .module-financial-reports_item--filters .module-financial-reports_item-inner:after {
      left: -30px;
  }

  .module-financial-reports_item--filters .module-financial-reports_item-inner>* {
      position: relative;
      z-index: 1;
  }

  .module-financial-reports .module_loader-wrap {
      position: static;
      transform: none;
      width: 100%;
  }
}

@media only screen and (min-width: 769px) {
  .module-financial-mashup .module_options--mobile {
      display: none;
  }
}

@media only screen and (max-width: 768px) {
  .module-financial-table_item {
      margin-right: 10px;
  }

  .module-financial-mashup .module_options--desktop {
      display: none;
  }
}

@media only screen and (max-width: 480px) {
  .module-financial-table_item {
      margin: 5px;
  }
}

/* Latest Quarterly Result Widget */
.module-latest-quarter .module_item {
  margin: 50px 0;
  padding: 0;
}

.module-latest-quarter .module_item~.module_item {
  border: none;
}

.module-latest-quarter .module_links {
  margin: 0;
  border-left: 2px solid rgba(255, 255, 255, 0.5);
  text-align: left;
}

.module-latest-quarter .module_links>div {
  display: inline-block;
  text-align: center;
}

.module-latest-quarter .module_link {
  margin: 0;
}

.module-latest-quarter .module_link:before {
  display: inline-block;
  font-size: 55px;
  font-size: 5.5rem;
  padding: 0;
}

.module-latest-quarter .module_link-text {
  display: block;
  margin: 15px 0 0;
  font-size: 16px;
  font-size: 1.6rem;
  text-transform: none;
  font-weight: normal;
}

.module-latest-quarter .module-financial_type-text, .module-latest-quarter .module-financial_year-text {
  display: inline-block;
  width: 100%;
}

.module-latest-quarter .module-financial_type-text {
  font-size: 55px;
  font-size: 5.5rem;
  font-weight: normal;
}

.module-latest-quarter .module-financial_year-text {
  margin-top: 15px;
  font-size: 24px;
  font-size: 2.4rem;
}

.module-latest-quarter .grid_col {
  vertical-align: bottom;
}

@media only screen and (max-width: 1024px) {
  .module-latest-quarter .module_links {
      border-left: 0;
  }

  .module-latest-quarter .module_link {
      margin: 0 0 15px;
  }

  .module-latest-quarter .grid_col {
      vertical-align: middle;
  }
}

@media only screen and (max-width: 768px) {
  .module-latest-quarter .module_item>div:first-child {
      margin-bottom: 30px;
  }
}

/*------ Formbuilder Module ------*/
.Languagees-ES .module-form--custom .module-form_error-text {
  display: inline-block;
  text-transform: lowercase;
}

.Languagees-ES .module-form--custom .module-form_error-text:first-letter {
  text-transform: uppercase;
}

.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: -30px;
}

@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--custom .module_container--captcha {
  text-align: right;
}

.module-form .module_container--captcha>div .ErrorMessage {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  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: 30px;
  vertical-align: top;
}

.module-form_item .module_input[type="text"], .module-form_item .module_input[type="email"], .module-form_item .module_input[type="file"], .module-form_item .module_dropdown, .module-form_item textarea.module_input {
  padding-left: 15px;
  padding-right: 15px;
}

.module-form_item>label, .module-form_item legend {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #263147;
}

.module-form_item legend {
  float: left;
  margin-bottom: 15px;
  font-size: 16px;
  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--subject, .module-form_item--asunto, .module-form_item--your-enquiry, .module-form_item--su-pregunta, .module-form_itemCaptcha, .module-form_item--document-request, .module-form_item--are-you-an-investor {
  width: 100%;
}

.module-form .select2-container {
  width: 100% !important;
  margin-right: 0;
}

.module-form .CaptchaContainer table tr {
  display: inline-block;
  vertical-align: bottom;
}

.module-form .CaptchaContainer table tr:nth-child(2) {
  display: block;
}

.module-form .CaptchaContainer table tr:nth-child(2) td {
  display: block;
  padding-bottom: 10px;
  padding-right: 0;
  text-align: right;
}

.module-form .CaptchaContainer table tr:nth-child(3) {
  display: none;
}

.module-form .CaptchaContainer .js--cloned-prepend {
  display: block;
  margin-bottom: 3px;
}

@media only screen and (max-width: 768px) {
  .module-form_item {
      width: 100%;
      padding-left: 0;
  }

  .module-form .CaptchaContainer table tr, .module-form .CaptchaContainer table td {
      display: block;
      text-align: right;
  }

  .module-form .CaptchaContainer .js--cloned-prepend {
      margin-top: 10px;
      margin-bottom: 10px;
  }
}

.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%;
}

.module-form--custom .module_actions {
  text-align: right;
}

.Languagees-ES .module-form--custom .button[type="submit"]:before {
  content: "Enviar";
}

.Languagees-ES .module-form--custom .button[type="submit"]>.button_text {
  display: none;
}

.Languagees-ES .CaptchaContainer b {
  font-size: 0;
}

.Languagees-ES .CaptchaContainer b:before {
  content: "Introduzca el c\00F3digo indicado arriba.";
  font-size: 16px;
}

.module-glossary .module_header {
  display: block;
}

.module-glossary .module_header table {
  width: 100%;
  table-layout: fixed;
}

.module-glossary .module_header table a {
  color: #5F5F5F;
  font-weight: normal;
}

.module-glossary .module_header table a[href] {
  color: #DBB216;
}

/*---------- Job Modules ---------*/
.module-job-details_description-container {
  margin-bottom: 35px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.module-job-details_description {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.module-job-details_description label {
  font-weight: normal;
}

.module-job-details_description input {
  width: auto;
  max-width: none;
  padding: 0;
  border: none;
  float: right;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 0;
}

@media only screen and (max-width: 480px) {
  .module-job-details_description label:after {
      content: ":";
  }

  .module-job-details_description input {
      display: block;
      float: none;
      margin-top: 5px;
  }
}

.module-job-details .grid_col {
  padding: 15px 20px;
}

.module-job-application_table {
  display: block;
  width: 100%;
  margin-left: -20px;
  font-size: 0;
}

.module-job-application_table tr {
  display: inline-block;
  width: 50%;
  margin-bottom: 20px;
  padding-left: 20px;
  vertical-align: top;
  font-size: 16px;
  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: 14px;
  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: 14px;
  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 {
  margin-bottom: 10px;
  display: none;
}

.module-slideshow .module_links>*+* {
  margin-top: 15px;
}

.module-slideshow_link {
  font-size: 14px;
  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_close {
  display: none;
}

.nav--sitemap {
  width: 100%;
  max-width: 1310px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 60px;
}

.nav--sitemap a {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
  display: inline-block;
  text-transform: uppercase;
}

.nav--sitemap .level1>li:not(:last-of-type) {
  margin-bottom: 15px;
}

.nav--sitemap .level1>li>a, .nav--sitemap .level1>li>a:visited {
  margin-bottom: 15px;
  font-size: 24px;
  font-size: 2.4rem;
}

.nav--sitemap .level2>li {
  padding-left: 15px;
}

.nav--sitemap .level2 li {
  padding-top: 5px;
  padding-bottom: 5px;
}

.nav--sitemap .level2>li>a {
  font-size: 18px;
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.nav--sitemap .level3 li {
  padding-left: 15px;
}

.nav--sitemap .level3>li>a {
  font-size: 16px;
  font-size: 1.6rem;
}

.nav--sitemap .level3 {
  margin-top: 5px;
}

.nav--sitemap .level4 {
  margin-top: 10px;
}

/*-------- News Module CSS -------*/
.module-news .module_nav {
  display: none;
}

.module-news_item-inner {
  height: 100%;
  padding-top: 35px;
  padding-bottom: 60px;
  position: relative;
}

.module-news_item--filters .module-news_item-inner {
  padding-left: 60px;
}

.module-news_item--filters .module-news_item-inner>* {
  position: relative;
  z-index: 1;
}

.module-news_item--filters .module-news_item-inner:after {
  content: "";
  background-color: inherit;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100%;
  width: 10000%;
}

.module-news .module_options-item+.module_options-item {
  margin-top: 40px;
}

.module-news .module_item {
  position: relative;
  padding-right: 35px;
}

.module-news .module_item.js--visible {
  display: block !important;
}

.module-news .module_headline-link:after {
  font-family: 'q4-icons';
  content: url('../design/svg/download.svg');
  display: inline-block;
  position: absolute;
  right: 10px;
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 24px;
  transition: 0.3s ease-in-out;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* .module-news .module_headline-link:hover:after {
background-color: #DBB216;
} */
.module-news-latest .module_container--content {
  margin-bottom: 20px;
}

.module-news-latest .module_item {
  margin: 10px 0 20px;
  padding: 0 0 0 20px;
  border: none;
  text-align: left;
}

.module-news-latest .module_item-wrap {
  height: 100%;
  padding: 30px;
  background: #fff;
}

.module-news-latest .module_date-time {
  margin-bottom: 15px;
  font-weight: normal;
  color: #5F5F5F;
}

.module-news-latest .module_headline {
  line-height: 1.5;
  font-weight: 200;
}

.module-news-latest .module_headline-link, .module-news-latest .module_headline-link:visited {
  color: #5F5F5F !important;
}

.module-news-latest .module_links {
  margin: 0;
}

.module-news-latest .module_link {
  color: #DBB216;
}

.module-news-list .module_item {
  padding-left: 0;
  padding-top: 20px;
}

.module-news-list .module_item+.module_item {
  border-top: 1px solid #dddddd;
}

.module-news--widget .module_container--inner {
  position: relative;
}

.module-news--widget .module_loader-wrap {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 66.66667%;
  left: 0;
  text-align: center;
}

.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_category {
  display: none;
}

.module-news-details.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: ")";
}

.module-news-details a {
  word-break: break-all;
}

.module-news-details pre {
  display: block;
  overflow-y: hidden;
  overflow-x: auto;
}

@media only screen and (max-width: 1024px) {
  .module-news-details .module_multimedia-item {
      margin-bottom: 30px;
  }
}

@media only screen and (max-width: 1023px) {
  .module-news_item.grid_col {
      flex-basis: 100%;
      max-width: 100%;
  }

  .module-news_item--filters .module-news_item-inner {
      padding-left: 0;
      padding-bottom: 35px;
  }

  .module-news_item--filters .module-news_item-inner:after {
      left: -30px;
  }

  .module-news--widget .module_loader-wrap {
      top: auto;
      bottom: 40px;
      width: 100%;
  }
}

/*------ Person List Module ------*/
.module-person .module-person_res-photo-container, .module-person .module_comma {
  display: none;
}

.module-person .module_item {
  padding: 0 0 30px 32px;
  border: none;
}

.module-person .module_item-inner {
  height: 100%;
}

.module_person-photo-name-container {
  cursor: pointer;
}

.module-person--executive .module_person-photo-name-container {
  pointer-events: none;
}

.module-person .module-person_photo-container {
  position: relative;
}

.module-person .module-person_photo-container:before {
  font-family: 'q4-icons';
  content: "\e910";
  font-size: 12px;
  background-color: #DBB216;
  color: #fff;
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 24px;
  transition: 0.3s ease-in-out;
}

.module-person--executive .module-person_photo-container:before {
  display: none;
}

.module-person .module_person-photo-name-container:hover .module-person_photo-container:before, .module-person .module_item.js--active .module-person_photo-container:before {
  opacity: 0;
  visibility: hidden;
}

.module-person .module-person_photo-container:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(219, 178, 22, 0.8);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
}

.module-person .module_person-photo-name-container:hover .module-person_photo-container:after, .module-person .module_item.js--active .module-person_photo-container:after {
  opacity: 1;
  visibility: visible;
}

.module-person .module-person_photo-container img {
  display: block;
  width: 100%;
  height: 312.55px;
}

.module-person .module-person_name-container {
  margin-top: 20px;
}

.module-person .module-person_name-container a {
  color: #fff;
}

.module-person .module-person_name-container h3 {
  margin: 0;
}

.module-person .module-person_name {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
  color: #263147;
}

.module-person .module-person_description-container .module-person_name {
  font-size: 36px;
  font-size: 3.6rem;
  color: #fff;
}

.module-person .module-person_suffix, .module-person_title {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 300;
  color: #5F5F5F;
}

.module-person .module-person_description-container .module-person_suffix, .module-person_description-container .module-person_title {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
}

.module-person_description-container .module-person_title {
  margin-top: 7px;
}

.module-person_title {
  display: block;
}

.module-person .module-person_description-container {
  background-color: #263147;
  color: #fff;
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  margin-top: 35px;
  display: none;
}

.module-person .module_item.js--active .module-person_description-container {
  display: block;
}

.module-person .module-person_description-container>* {
  position: relative;
  z-index: 1;
}

.module-person .module-person_description-container:before {
  content: "";
  background-color: inherit;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1000%;
  width: 10000%
}

.module-person .module-person_description-container .module-person_description-close {
  position: absolute;
  top: 40px;
  right: 0;
  font-size: 15px;
  font-size: 1.5rem;
  cursor: pointer;
}

.module-person_description {
  display: block;
  max-width: 930px;
  padding-top: 5px;
}

.fancybox-container .module-person .module_item {
  max-width: 940px;
  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;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.fancybox-container .module-person_name-container a {
  color: #5F5F5F;
}

.fancybox-container .module-person_photo-container {
  max-width: 30%;
  margin-right: 40px;
}

.fancybox-container .module-person_name {
  display: block;
  margin-bottom: 10px;
  font-size: 36px;
  font-size: 3.6rem;
  line-height: 1.45;
  color: #DBB216;
}

.fancybox-container .module-person_title {
  font-size: 24px;
  font-size: 2.4rem;
  color: #DBB216;
}

.fancybox-container .module-person_description-container {
  margin-top: 40px;
}

.fancybox-container .module-person_description {
  display: block;
}

.module-person-accordion .module-person_name-container {
  padding: 22.5px 0 22.5px 50px;
  cursor: pointer;
  position: relative;
}

.module-person-accordion .module-person_name-container h3 {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #263147;
  margin: 0;
}

.module-person-accordion .module_item.js--active h3 {
  color: #DBB216;
}

.module-person-accordion .module-person_name-container h3:before {
  font-family: 'q4-icons';
  content: "\e90e";
  font-size: 12px;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #DBB216;
}

.module-person-accordion .module_item {
  padding: 0;
}

.module-person-accordion .module_item:first-child {
  border-top: 1px solid #D9D9D6;
}

.module-person-accordion .module-person_name {
  margin-right: 10px;
}

.module-person-accordion .module-person_title {
  font-size: 14px;
  font-size: 1.4rem;
}

.module-person-accordion .module_comma {
  display: none;
}

.module-person-accordion .module-person_description-container {
  padding: 0 25px 25px;
}

.module-person-accordion .module-person_photo-container {
  float: left;
  margin: 0 25px 15px 0;
  max-width: 280px;
}

.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;
}

.module-person-details .module_title {
  display: none;
}

.module-person-details .module_comma {
  display: none;
}

.module-person-details_photo-container, .module-person-details_name-container {
  display: inline-block;
  vertical-align: middle;
}

.module-person-details_name-container {
  max-width: 60%;
}

.module-person-details_photo-container {
  max-width: 30%;
  margin-right: 40px;
}

.module-person-details_name {
  display: block;
  margin-bottom: 10px;
  font-size: 36px;
  font-size: 3.6rem;
  font-weight: 600;
  color: #DBB216;
}

.module-person-details_title {
  display: block;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 600;
  color: #DBB216;
}

.module-person-details_description-container {
  margin-top: 40px;
}

.module-presentation .module_body {
  display: none;
}

@media only screen and (min-width: 1025px) {
  .module-person .module-person_description-container {
      width: calc(100% * 4 + 90px);
  }

  .module-person .module_item:nth-child(4n+1) .module-person_description-container {
      left: 0;
  }

  .module-person .module_item:nth-child(4n+2) .module-person_description-container {
      left: calc(100% * -1 - 30px);
  }

  .module-person .module_item:nth-child(4n+3) .module-person_description-container {
      left: calc(100% * -2 - 60px);
  }

  .module-person .module_item:nth-child(4n+4) .module-person_description-container {
      left: calc(100% * -3 - 90px);
  }
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
  .module-person .module-person_description-container {
      width: calc(100% * 3 + 60px);
  }

  .module-person .module_item:nth-child(3n+1) .module-person_description-container {
      left: 0;
  }

  .module-person .module_item:nth-child(3n+2) .module-person_description-container {
      left: calc(100% * -1 - 30px);
  }

  .module-person .module_item:nth-child(3n+3) .module-person_description-container {
      left: calc(100% * -2 - 60px);
  }
}

@media only screen and (max-width: 768px) {
  .fancybox-container .module-person_photo-container {
      margin-right: 15px;
      margin-bottom: 35px;
  }

  .module-person-accordion .module-person_photo-container {
      float: none;
      margin: 0 auto 15px auto;
      text-align: center;
  }

  .module-person-accordion .module-person_res-photo-container>span {
      display: block;
      margin: 0 0 10px 0;
  }

  .module-person-details_photo-container {
      display: block;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 35px;
  }

  .module-person-details_name-container {
      max-width: none;
  }
}

@media only screen and (max-width: 768px) and (min-width: 481px) {
  .module-person .module-person_description-container {
      width: calc(100% * 2 + 30px);
  }

  .module-person .module_item:nth-child(2n+1) .module-person_description-container {
      left: 0;
  }

  .module-person .module_item:nth-child(2n+2) .module-person_description-container {
      left: calc(100% * -1 - 30px);
  }
}

@media only screen and (max-width: 767px) {
  .module-person .module-person_description-container .module-person_name {
      font-size: 30px;
      font-size: 3rem;
  }

  .module-person .module-person_description-container .module-person_suffix, .module-person_description-container .module-person_title {
      font-size: 16px;
      font-size: 1.6rem;
  }
}

@media only screen and (max-width: 480px) {
  .fancybox-container .module-person_photo-container {
      margin-right: 0;
      max-width: none;
  }

  .fancybox-container .module-person_name {
      font-size: 24px;
      font-size: 2.4rem;
      line-height: 1.2;
  }

  .fancybox-container .module-person_title {
      font-size: 18px;
      font-size: 1.8rem;
      line-height: 1.125;
  }

  .module-person-details_photo-container {
      margin-right: 0;
      max-width: 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: #000;
  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: #000;
  -webkit-transform: translate(0, -100%);
  -ms-transform: translate(0, -100%);
  transform: translate(0, -100%);
  font-size: 24px;
  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: 16px;
  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: 'Montserrat', sans-serif !important;
  font-weight: 300;
  font-size: 14px;
  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: #DBB216;
  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 {
  text-align: left;
}

.module-search .module_title {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  margin: 0;
  padding: 0;
  cursor: pointer;
  background-color: #dbb216;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px 27px;
  height: 88px;
  transition: 0.3s ease-in-out;
}

.module-search .module_title:hover {
  background-color: #DBB216;
}

.module-search .module_title i {
  font-size: 18px;
  font-size: 1.8rem;
  margin-left: 8px;
  position: relative;
  top: -1px;
  left: -10px;
  float: left;
}

.module-search .module_container--inner {
  background-color: #263147;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
  padding: 220px 0 470px;
  z-index: 1;
}

.module-search .module_container--inner.js--revealed {
  opacity: 1;
  visibility: visible;
}

.module-search_inner {
  width: 100%;
  max-width: 1310px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
}

.module-search .module_inputs-container {
  position: relative;
  max-width: 821px;
}

.module-search_close {
  color: #fff;
  position: absolute;
  top: 0;
  right: 30px;
  font-size: 20px;
  font-size: 2rem;
  cursor: pointer;
}

.module-search_text {
  display: block;
  font-size: 48px;
  font-size: 4.8rem;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
}

.module-search_input[type="text"] {
  display: inline-block;
  width: 100%;
  padding: 15px 50px 15px 20px;
  border-color: #fff;
  background: #fff;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 300;
  height: 48px;
  color: #363636;
}

.module-search_input::-webkit-input-placeholder {
  color: #363636;
  opacity: 1;
}

.module-search_input::-moz-placeholder {
  color: #363636;
  opacity: 1;
}

.module-search_input::-ms-input-placeholder {
  color: #363636;
  opacity: 1;
}

.module-search_input:-ms-input-placeholder {
  color: #363636;
  opacity: 1;
}

.module-search_button {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #dbb216 url("../design/svg/search-white.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto;
  font-size: 0;
  cursor: pointer;
}

.module-search-result_link {
  margin-bottom: 15px;
}

.module-search-result_description {
  display: block;
  margin-bottom: 15px;
}

.module-search-result_description:after {
  content: "...";
}

.module-search-result_url {
  display: none;
}

.module-search-results {
  width: 100%;
  max-width: 1310px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

.form_fields-left.grid_col {
  padding-top: 200px;
  padding-left: 90px;
}

.module-search-results .form_fields-right input {
  width: 100%;
  border-color: #DBB216;
  color: #979797;
}

.module-search-results .form_field {
  margin-bottom: 25px;
}

.module-search-results .form_field.form_field--content {
  display: none;
}

.module-search-results .form_title {
  font-size: 18px;
  font-size: 1.8rem;
  color: #263147;
  font-weight: 600;
  display: block;
  margin-bottom: 20px;
}

.module-search-results .form_field--date {
  position: relative;
  display: none;
}

.module-search-results .form_field--date:after {
  content: "\ea5f";
  position: absolute;
  top: 52px;
  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: #263147;
  clear: both;
  display: table;
  font-size: 20px;
}

.module-search-results .form_field--search {
  margin-bottom: 70px;
}

.form_field.form_field--search-term {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 600;
  color: #263147;
  margin-top: 20px;
  margin-bottom: 0;
}

.module-search-results .form_field--search .form_label {
  display: none;
}

.module-search-results .form_field--pages {
  display: none;
}

.module-search-results .form_label {
  font-size: 18px;
  font-size: 1.8rem;
  color: #263147;
  font-weight: 600;
  display: block;
  margin-bottom: 20px;
}

.module-search-results .form_select {
  font-size: 14px;
  font-size: 1.4rem;
  width: 100%;
  display: block !important;
}

.module-search-results .form_select+.sbHolder {
  display: none;
}

.module-search-results_container .select2-container {
  margin-right: 0;
  width: 100% !important;
}

.module-search-results .form_inputs-container {
  position: relative;
  display: block;
}

.module-search-results .form_input {
  width: 100%;
  padding: 14px 50px 14px 30px;
  border: 1px solid #D9D9D6;
  border-radius: 0;
  font-family: 'Montserrat', sans-serif;
  color: #363636;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 300;
  height: 48px;
}

.module-search-results .form_input-icon {
  display: block;
  background: #263147 url(../design/svg/search-white.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto;
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: 48px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.module-search-results_link {
  color: #263147;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 10px;
  display: inline-block;
}

.module-search-results_link:hover {
  color: #DBB216;
}

.module-search-results_link:before {
  font-family: 'q4-icons';
  content: "\e910";
  font-size: 12px;
  background-color: #DBB216;
  color: #fff;
  display: inline-block;
  position: absolute;
  bottom: 20px;
  right: 0;
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 24px;
  transition: 0.3s ease-in-out;
}

.module-search-results_link:hover:before {
  background-color: #DBB216;
}

.module-search-results_item {
  border-bottom: 1px solid #D9D9D6;
  padding: 20px 30px 20px 0;
  position: relative;
}

.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 {
  line-height: 1.5;
}

.module-search-results_summary {
  font-size: 20px;
  line-height: 21px;
  text-shadow: 1px 1px #FFFFFF;
  font-weight: 400;
  margin: 0 0 30px;
  display: none;
}

.module-search-results_summary span {
  color: #263147;
}

.module-search-results_pager {
  float: right;
}

.module-search-results .pager_list {
  margin: 20px 0 0 0;
  padding: 0;
  list-style: none;
  text-align: right;
  display: flex;
  flex-wrap: wrap;
}

.module-search-results .pager_list-item {
  background-color: #263147;
  margin: 1px 0;
  font-weight: 400;
  color: #939BA0;
  font-size: 13px;
  line-height: 17px;
  cursor: pointer;
  position: relative;
}

.module-search-results .pager_list-item a {
  display: block;
  color: #939BA0;
  transition: .3s ease-in-out;
  padding: 11px 6px;
}

.module-search-results .pager_list-item a.active, .module-search-results .pager_list-item a:hover {
  color: #fff;
}

.module-search-results .pager_list-item--previous, .module-search-results .pager_list-item--next {
  position: relative;
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
}

.module-search-results .pager_list-item--previous:after, .module-search-results .pager_list-item--next:after {
  content: "\edbe";
  font-family: 'q4-icons' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 0px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(50%, 50%);
  -ms-transform: translate(50%, 50%);
  transform: translate(50%, 50%);
  font-size: 13px;
}

.module-search-results .pager_list-item--previous>a, .module-search-results .pager_list-item--next>a {
  position: absolute;
  top: 0;
  left: 0;
  width: 29px;
  height: 39px;
  background-color: #263147;
}

.module-search-results .pager_list-item--previous {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.module-search-results .pager_list-item--next {
  margin-right: 25px;
}

.module-search-results .pager_text {
  display: none;
}

@media only screen and (max-width: 1279px) {
  .module-search .module_title {
      font-size: 12px;
      font-size: 1.2rem;
      padding-left: 15px;
      padding-right: 15px;
  }

  .module-search .module_title i {
      font-size: 14px;
      font-size: 1.4rem;
  }

  .form_fields-left.grid_col {
      padding-left: 30px;
  }
}

@media only screen and (max-width: 1023px) {
  .module-search-results_filter .grid_col {
      flex-basis: 100%;
      max-width: 100%;
  }

  .form_fields-left.grid_col {
      padding-top: 0;
  }
}

@media only screen and (max-width: 768px) {
  .module-search-results .form-fields-right .grid_col {
      padding-left: 0;
  }

  .module-search-results .form-fields--pages {
      margin-top: 25px;
      display: block;
      width: 100%;
  }

  .module-search-results .form-fields--search {
      width: 100%;
  }
}

@media only screen and (max-width: 500px) {
  .module-search-results .form_field.form_field--date {
      overflow: auto;
  }
}

/*-------- SEC Module CSS --------*/
.module-sec .module_header {
  display: block;
  border-bottom: 1px solid #D9D9D6;
}

.module-sec .module_header-text {
  padding: 15px 8px;
  font-weight: 500;
  color: #263147;
}

.module-sec .module_item {
  padding: 0;
  border: none;
}

.module-sec .module_item:nth-child(even) {
  background-color: #f5f5f5;
}

.module-sec .module_item .grid_col {
  vertical-align: middle;
  padding: 14px 8px;
}

.module-sec .module_item .module-sec_filing {
  font-weight: bold;
}

.module-sec_download-list-item {
  display: inline-block;
}

.module-sec_download-list .module_link {
  margin: 0;
}

.module-sec_download-list .module_link:before {
  font-size: 24px;
  font-size: 2.4rem;
}

.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 .module_link:before {
  font-size: 24px;
  font-size: 2.4rem;
}

@media only screen and (max-width: 1023px) {
  .module-sec .module_options-label, .module-sec .module_options-select, .module-sec .module_options-submit {
      display: block;
      width: 100%;
      margin-bottom: 10px;
  }
}

@media only screen and (max-width: 768px) {
  .module-sec .module_header {
      display: none;
  }

  .module-sec .module_header+.module_item {
      border-top: 2px solid #DBB216;
  }

  .module-sec .module_item {
      padding: 15px 0;
  }

  .module-sec .module_item:first-child {
      border-top: 2px solid #DBB216;
  }

  .module-sec .module_item:last-child {
      border-bottom: 2px solid #DBB216;
  }

  .module-sec .module_item .grid_col {
      padding: 0 5px;
  }

  .module-sec .module_item .grid_col:before {
      content: attr(data-before);
      font-weight: bold;
      display: inline-block;
      vertical-align: top;
      min-height: 1px;
      box-sizing: border-box;
      width: 50%;
      margin-right: -.25em;
      padding-right: 10px;
  }

  .module-sec .module_item .grid_col>span, .module-sec .module_item .grid_col>ul {
      display: inline-block;
      vertical-align: top;
      min-height: 1px;
      box-sizing: border-box;
      width: 50%;
      margin-right: -.25em;
  }

  .module-sec .module_item+.module_footer {
      border-bottom: 2px solid #DBB216;
  }

  .module-sec_date, .module-sec_filer, .module-sec_filing, .module-sec_description {
      margin-bottom: 15px;
  }
}

/*---- Accessibility Skip Link ---*/
.module-skip_link {
  position: absolute;
  top: -100px;
  left: 50%;
  padding: 15px 20px;
  background: transparent;
  color: white;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  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: #263147;
  outline: 0;
  color: #fff;
}

.module-skip_link:visited {
  color: #fff;
}

/*------ Stock Chart Widget ------*/
.module-stock-chart [data-highcharts-chart].js--hidden {
  display: block !important;
  max-height: 0;
  overflow: hidden;
}

.module-stock-chart .highcharts-legend-item:first-child path {
  stroke: #DBB216;
}

.module-stock-chart .highcharts-legend-item:first-child text {
  cursor: default !important;
}

.module-stock-chart .highcharts-series-0 {
  stroke: #DBB216;
}

.module-stock-chart .highcharts-series-0 path:first-child {
  stroke: #DBB216;
}

.module-stock-chart .highcharts-series-group .highcharts-series-2 path {
  stroke: #DBB216;
}

.module-stock-chart .highcharts-series.highcharts-series-3 path {
  stroke: #DBB216;
}

.module-stock-chart .highcharts-navigator rect {
  fill: rgba(185, 112, 29, 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: #DBB216;
}

.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: #DBB216;
  stroke: #DBB216;
}

.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: #5F5F5F;
}

.module-stock-chart .highcharts-container>svg>.highcharts-button {
  display: none;
}

/*------ Stock Header Module -----*/
.module-stock-header {
  font-size: 12px;
  font-size: 1.2rem;
}

.module-stock-header .module_container--inner>span {
  display: inline-block;
  vertical-align: middle;
}

.module-stock-header .module_container--inner>span+span {
  margin-left: 7px;
}

.module-stock-header_stock-price {
  font-size: 23px;
  font-size: 2.3rem;
  font-weight: 700;
  color: #263147;
}

.module-stock-header_change {
  font-weight: 400;
}

.module-stock-header_change:before {
  content: "";
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 8px solid currentColor;
  display: inline-block;
  vertical-align: middle;
  margin-right: 2px;
}

.module-stock-header_change.module-stock-header_down:before {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.module-stock-header_change.module-stock-header_up {
  color: #006201;
}

.module-stock-header_change.module-stock-header_down {
  color: #b72121;
}

.module-stock-header_stock-price:before {
  content: '$';
}

.module-stock-header_percent-change .module-stock-header_indicator {
  display: none;
}

@media only screen and (max-width: 1023px) {
  .module-stock-header {
      padding-top: 10px;
  }
}

/*------ Stock Quote Module ------*/
.module-stock .module_options {
  margin-bottom: 30px;
}

.module-stock .module_container--content {
  border-top: 1px solid #D9D9D6;
}

.module-stock .stock-historical-range .module_options>*:not(:last-of-type) {
  margin-bottom: 20px;
}

.module-stock_lookup-title {
  padding-left: 20px;
}

.module-stock_label, .module-stock_value {
  border-bottom: 1px solid #D9D9D6;
}

.module-stock_label>span, .module-stock_value>span {
  display: block;
  padding: 15px 20px;
}

.module-stock_up {
  color: #006201;
}

.module-stock_down {
  color: #b72121;
}

.module-stock_label {
  font-weight: normal;
}

.module-stock_value .module-stock_price:before, .module-stock_value .module-stock_high:before, .module-stock_value .module-stock_low:before, .module-stock_value .module-stock_open:before, .module-stock_value .module-stock_close:before, .module-stock_value .module-stock_week-low:before, .module-stock_value .module-stock_week-high:before, .module-stock_value .module-stock_previous-close:before {
  content: "$";
}

.module-stock_date {
  margin-top: 25px;
  font-size: 14px;
  font-size: 1.4rem;
  font-style: italic;
}

.module-stock_date-text {
  margin-left: 20px;
}

.module-stock_delay {
  margin-top: 25px;
  font-size: 14px;
  font-size: 1.4rem;
  font-style: italic;
  text-align: right;
}

.module-stock_delay-text {
  margin-right: 20px;
}

.module-stock-historical .select2-container {
  width: 160px !important;
}

@media only screen and (max-width: 1023px) {
  .module-stock-historical .module_options-label, .module-stock-historical .module_options-select, .module-stock-historical .module_options-submit {
      display: block;
      width: 100%;
      margin-bottom: 10px;
  }

  .module-stock-historical .select2-container {
      width: 100% !important;
      margin-right: 0;
      margin-bottom: 10px;
  }
}

@media only screen and (max-width: 768px) {
  .module-stock.module-stock-historical .module-stock_empty {
      display: none;
  }

  .module-stock_lookup-title {
      padding-left: 10px;
  }

  .module-stock_label>span, .module-stock_value>span {
      padding: 15px 10px;
  }

  .module-stock_date-text {
      margin-left: 0;
  }

  .module-stock_delay {
      text-align: left;
      margin-top: 10px;
  }

  .module-stock_delay-text {
      margin-right: 0;
  }
}

@media only screen and (max-width: 480px) {
  .module-stock_lookup-title {
      padding-left: 5px;
  }

  .module-stock_label>span, .module-stock_value>span {
      padding: 15px 0 15px 5px;
  }
}

/*- MailingList Subscribe Module -*/
.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: 16px;
  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;
}

.module-subscribe_unsubscribe-link {
  display: none;
}

@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, .module-subscribe_list-header label {
  display: inline-block;
  margin-bottom: 5px;
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
  color: #000;
}

.module-subscribe_mailing-list tr.module-subscribe_list-header td {
  padding-bottom: 15px;
}

.module-subscribe_mailing-list tr table td {
  padding-bottom: 10px;
}

.module-subscribe_mailing-list tr table tr:last-child td {
  padding-bottom: 0;
}

.module-subscribe .module_required {
  font-size: 14px;
  font-size: 1.4rem;
}

.module-subscribe .CaptchaContainer {
  width: 50%;
}

@media only screen and (max-width: 768px) {
  .module-subscribe .CaptchaContainer {
      width: 100%;
  }
}

/* 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: 14px;
  font-size: 1.4rem;
  margin-bottom: 5px;
}

.module-unsubscribe_table .module_input[type="text"], .module-unsubscribe_table .module_input[type="email"] {
  /* background-color: #fff; */
}

/*==================================
----------- LAYOUT CSS -----------
==================================*/
/*------- iframe layout CSS ------*/
.layout--iframe .pane--content .module {
  padding: 0;
}

.layout--iframe .pane--content .module_container--outer {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

/*==================================
------------ BLANK CSS -----------
==================================*/
/*-------- Layout Specific -------*/
.layout {
  position: relative;
}

.layout, .layout_inner {
  position: relative;
  overflow: hidden;
}

.layout.js--operations-active {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}

.layout--iframe .layout_inner {
  overflow: hidden;
}

.layout_header {
  padding-top: 88px;
}

.layout_footer {
  background: #000;
}

@media only screen and (max-width: 1023px) {
  .layout.js--mobile {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      overflow: hidden;
  }

  .layout_header {
      padding-top: 60px;
  }
}

@media only screen and (max-width: 850px) {
  .layout.js--operations-active {
      position: static;
      overflow-y: auto;
  }
}

/*--------- Pane Specific --------*/
.pane_inner, .container {
  width: 100%;
  max-width: 1310px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

.pane--content .pane_inner, .pane--right.grid_col .pane_inner {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.pane--content .module, .pane--left .module, .pane--right .module {
  padding-top: 60px;
  padding-bottom: 60px;
}

.pane--content .module_container--outer, .pane--right.grid_col .module_container--outer {
  width: 100%;
  max-width: 1310px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

.pane--content .module-no-container .module_container--outer, .pane--right.grid_col .module-no-container .module_container--outer {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.pane--content .module--thin, .pane--left .module--thin, .pane--right .module--thin {
  padding-top: 30px;
  padding-bottom: 30px;
}

.pane--content .module--thin-top, .pane--left .module--thin-top, .pane--right .module--thin-top {
  padding-top: 30px;
}

.pane--content .module--thin-bottom, .pane--left .module--thin-bottom, .pane--right .module--thin-bottom {
  padding-bottom: 30px;
}

.pane--content .module--thick, .pane--left .module--thick, .pane--right .module--thick {
  padding-top: 90px;
  padding-bottom: 90px;
}

.pane--content .module--thick-top, .pane--left .module--thick-top, .pane--right .module--thick-top {
  padding-top: 90px;
}

.pane--content .module--thick-bottom, .pane--left .module--thick-bottom, .pane--right .module--thick-bottom {
  padding-bottom: 90px;
}

.pane--content .module--no-padding, .pane--left .module--no-padding, .pane--right .module--no-padding {
  padding-top: 0;
  padding-bottom: 0;
}

.pane--content .module--no-padding-top, .pane--left .module--no-padding-top, .pane--right .module--no-padding-top {
  padding-top: 0;
}

.pane--content .module--no-padding-bottom, .pane--left .module--no-padding-bottom, .pane--right .module--no-padding-bottom {
  padding-bottom: 0;
}

.pane--content .module-sitemap {
  padding-bottom: 30px;
}

.pane--left.grid_col .pane_inner {
  padding-left: 80px;
  padding-right: 0;
}

.pane--content.grid_col .module_container--outer {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

@media only screen and (max-width: 1023px) {
  .pane--content.grid_col, .pane--left.grid_col {
      width: 100%;
  }

  .pane--left.grid_col .pane_inner {
      padding-left: 0;
  }

  .pane--left.grid_col--d-last {
      float: none;
  }
}

/*--------- Page Specific --------*/
.page--no-alternating .pane--content {
  padding: 35px 0;
}

.page--no-alternating .module {
  padding-top: 35px;
  padding-bottom: 35px;
}

/*-------- 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 h3 {
  color: #5F5F5F;
}

.module-why-invest h4 {
  font-size: 60px;
  font-size: 6rem;
  color: #DBB216;
  font-weight: 300;
  margin-top: 0;
}

.module-why-invest .grid {
  padding-top: 25px;
  padding-bottom: 25px;
}

.module-why-invest .grid_col {
  padding-bottom: 15px;
  padding-right: 20px;
}

@media (min-width: 480px) {
  .module-why-invest .grid_col+.grid_col {
      border-left: 1px solid #dddddd;
  }
}

.module-why-invest .grid_col p {
  margin-bottom: 0;
}

.module-social .module_tabs {
  margin-bottom: 10px;
}

.module-social .module_tabs .button {
  display: block;
}

.module-social .module_tabs .button.js--selected {
  background: #DBB216;
  color: #fff;
}

.module-social .module_tab {
  display: inline-block;
  padding-right: 5px;
  padding-bottom: 5px;
}

@media (max-width: 640px) {
  .module-social .module_tab {
      width: 50%;
  }
}

.module-social .module_container--content {
  padding: 0;
  display: flex;
  justify-content: stretch;
  align-items: stretch;
}

@media (max-width: 767px) {
  .module-social .module_container--content {
      padding: 0 20px;
      margin: 0;
  }
}

.module-social .module_container--content .slick-track {
  display: flex;
  justify-content: stretch;
  align-items: stretch;
}

.module-social .module_container--content .slick-list {
  width: 100%;
}

.module-social .module_container--content .slick-arrow {
  color: #DBB216;
}

.module-social .module_headline-link {
  color: #DBB216;
}

.module-social .module_item {
  height: auto;
}

.module-social .module_item.grid_col {
  padding: 0 0 0 20px;
  margin: 15px 0;
}

@media (max-width: 767px) {
  .module-social .module_item.grid_col {
      padding-left: 0;
  }
}

.module-social .module_item-wrap {
  padding: 30px;
  background-color: #f5f5f5;
  height: 100%;
}

.module-social .module_item+.module_item {
  border-top: none;
}

.module-social .module_date {
  text-align: left;
  margin-bottom: 15px;
}

.module-social .module_headline {
  text-align: left;
  margin: 0;
  line-height: 1.5;
}

.module-social .module_icon {
  float: right;
  margin-left: 5px;
  margin-bottom: 5px;
  font-size: 20px;
  font-size: 2rem;
}

.module-social .module_icon .q4-icon_twitter {
  color: #1da1f2;
}

.module-social .module_icon .q4-icon_facebook {
  color: #365899;
}

.module-social .module_icon .q4-icon_youtube {
  color: #cc181e;
}

/*# sourceMappingURL=global.css.map */
/*===========================HEADER===========================*/
.pane--header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
  z-index: 122;
  text-align: right;
}

.pane--header .pane_inner {
  max-width: none;
  padding-left: 80px;
  padding-right: 30px;
}

.pane--header .module, .pane--header .nav {
  display: inline-block;
  vertical-align: middle;
}

.module-logo {
  float: left;
  padding-top: 15px;
}

.module-logo img {
  display: block;
}

.LanguageSwitch {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1;
  margin-left: 30px;
}

.LanguageSwitch>span:after {
  content: "|";
}

.LanguageSwitch a {
  font-size: 0;
  line-height: 0;
  display: inline-block;
  vertical-align: middle;
}

.LanguageSwitch:after, .LanguageSwitch a:before {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1;
  color: #5F5F5F;
  font-weight: 300;
  text-transform: uppercase;
  transition: color 0.5s ease-in-out;
}

.LanguageSwitch a:hover:before {
  color: #DBB216;
}

.LanguageSwitch:after {
  position: relative;
  top: 1px;
}

.Languageen-US .LanguageSwitch a:before {
  content: "ES";
}

.Languagees-ES .LanguageSwitch a:before {
  content: "EN";
}

.Languageen-US .LanguageSwitch:after {
  content: "EN";
  font-weight: 700;
}

.Languagees-ES .LanguageSwitch:after {
  content: "ES";
  font-weight: 700;
}

.nav--main {
  text-align: left;
}

.nav--main .level1 a {
  display: inline-block;
}

.nav--main .level1>li {
  display: inline-block;
  vertical-align: top;
  padding-right: 15px;
}

.nav--main .level1>li+li {
  border-left: 1px solid #979797;
  padding-left: 15px;
}

.nav--main .level1>li>a {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.28;
  font-weight: 400;
  color: #263146;
}

.nav--main .level1>li.sfHover>a, .nav--main .level1>li:hover>a, .nav--main .level1>li>a:hover, .nav--main .level1>li.selected>a, .nav--main .level1>li.expanded>a {
  color: #DBB216;
}

.nav--main .level2 {
  display: flex !important;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #000000;
  padding-top: 70px;
  padding-bottom: 100px;
  padding-left: 80px;
  padding-right: 33.333%;
  justify-content: space-between;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s ease-in-out !important;
}

.nav--main .level2:after {
  content: "";
  background-color: #D8D8D8;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 33.333%;
}

.nav--main li[data-section="aboutus"] .level2:after, .nav--main li[data-section="qui\00E9nessomos"] .level2:after {
  background-image: url('../design/who-is-first-quantum.jpg');
}

.nav--main li[data-section="ouroperations"] .level2:after, .nav--main li[data-section="nuestrasoperaciones"] .level2:after {
  background-image: url('../design/our-operations.jpg');
}

.nav--main li[data-section="sustainability"] .level2:after, .nav--main li[data-section="sostenibilidad"] .level2:after {
  background-image: url('../design/sustainability.jpg');
}

.nav--main li[data-section="investors"] .level2:after, .nav--main li[data-section="inversionistas"] .level2:after {
  background-image: url('../design/investors.jpg');
}

.nav--main li[data-section="careers"] .level2:after, .nav--main li[data-section="carreras"] .level2:after {
  background-image: url('../design/careers.jpg');
}

.nav--main .level2 li a, .nav--main .level2 li.no-link>span {
  color: #fff;
}

.nav--main .level2 li a:first-letter {
  text-transform: uppercase;
}

.nav--main .level2 li>a:hover {
  color: #DBB216;
}

.nav--main .level1>li.sfHover .level2 {
  opacity: 1;
  visibility: visible;
}

.nav--main .js--wrap-li {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-left: 12%;
  flex: 0 0 66.667%;
  max-width: 66.667%;
}

.nav--main .js--wrap-li>div {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-left: -40px;
}

.nav--main .js--column-li>li {
  width: 50%;
  padding-left: 40px;
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
}

.Languageen-US [data-section="sustainability"] .level2 .js--wrap-li .js--column-li:last-child li:last-child:not(.level3 li) {
  padding-top: 0;
  margin-top: 17px;
}

.Languagees-ES [data-section="sostenibilidad"] .level2 .js--wrap-li .js--column-li:last-child li:last-child:not(.level3 li) {
  padding-top: 0;
  margin-top: 12px;
}

.nav--main .js--column-li:first-child>li:first-child {
  padding-top: 0;
}

.nav--main .js--column-li>li:before {
  content: "";
  border-top: 1px solid;
  position: absolute;
  bottom: 0;
  left: 40px;
  right: 0;
}

.nav--main li[data-section="ouroperations"] .js--wrap-li>div, .nav--main li[data-section="sustainability"] .js--wrap-li>div, .nav--main li[data-section="nuestrasoperaciones"] .js--wrap-li>div, .nav--main li[data-section="sostenibilidad"] .js--wrap-li>div {
  flex-direction: row;
  align-items: flex-start;
}

.nav--main li[data-section="ouroperations"] .js--wrap-li>div:before, .nav--main li[data-section="sustainability"] .js--wrap-li>div:before, .nav--main li[data-section="nuestrasoperaciones"] .js--wrap-li>div:before, .nav--main li[data-section="sostenibilidad"] .js--wrap-li>div:before {
  content: "";
  flex: auto;
}

.nav--main li[data-section="ouroperations"] .js--column-li:first-child>li, .nav--main li[data-section="sustainability"] .js--column-li:first-child>li, .nav--main li[data-section="nuestrasoperaciones"] .js--column-li:first-child>li, .nav--main li[data-section="sostenibilidad"] .js--column-li:first-child>li {
  padding-top: 0;
}

.nav--main .js--column-li>li>a, .nav--main .js--column-li>li.no-link>span {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 700;
}

.nav--main .level3, .nav--main .level4 {
  display: block !important;
  opacity: 1 !important;
  transition: none !important;
  padding-top: 15px;
}

.nav--main .level3>li+li {
  margin-top: 7px;
}

.nav--main .level3>li>a {
  font-weight: 500;
}

.nav--main .level3 li a {
  line-height: 1.4;
}

.nav--main .level4 {
  padding-left: 20px;
  padding-top: 0;
}

.nav--main .level4 li {
  margin-top: 7px;
}

.nav--main .nav_downloads {
  flex: 0 0 33.333%;
  max-width: 33.333%;
  padding-right: 20px;
}

.nav--main .nav_downloads, .nav--main .nav_downloads a {
  color: #fff;
}

.nav--main .nav_downloads a:hover {
  color: #DBB216;
}

.nav--main .nav_section-link a, .nav_section-text {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.2;
  font-weight: 700;
}

.nav--main .nav_description {
  margin-top: 7px;
}

.nav--main .nav_description>*:first-child {
  margin-top: 0;
}

.nav--main .nav_description>*:last-child {
  margin-bottom: 0;
}

.nav--main .nav_section-more {
  margin-top: 35px;
}

.nav--main .button--more {
  color: #fff;
  border-color: #979797;
}

.nav--main .button--more:hover {
  border-color: transparent;
}

.pane--header .layout_toggle {
  display: none;
  font-size: 36px;
  font-size: 3.6rem;
  text-align: right;
}

.pane--header .layout_toggle button {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: none;
  border: none;
  padding: 0;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
}

.pane--banner {
  /* background-color: rgb(192, 185, 0); */
  background-color: #000;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  height: 350px;
  position: relative;
}

.pane--banner:after {
  content: "";
  background-color: #D8D8D8;
  background-image: url('../design/banner/default-banner.png');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  width: 40%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  display: block;
}

.climate-change--page .pane--banner:after {
  background-image: url('../design/banner/climate_change_banner.jpg');
  background-position: center center;
}

.page-tailings .pane--banner:after {
  background-image: url('../design/banner/tailings_management_banner.jpg');
  background-position: center center;
}

.analyst-centre--page .pane--banner:after {
  background-image: url('../design/banner/analyst_centre_banner.jpg');
  background-position: center center;
}

.page--fixed-income .pane--banner:after {
  background-image: url('../design/banner/Fixed-Income-Investors.jpg');
  background-position: center 20%;
}

/* .js--section .pane--banner {
background-image: url('../design/banner/section-banner.jpg');
height: 600px;
} */
.js--section .pane--banner:before {
  content: "";
  /* background-color: rgba(0, 0, 0, 0.35); */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.js--section .pane--banner:after {
  /*display: none;*/
}

.page-glance .pane--banner:after {
  background-image: url('../design/banner/glance-banner.jpg');
}

.page-corporate-citizenship .pane--banner:after {
  background-image: url('../design/banner/corporate-citizenship-banner.jpg');
}

.section-governance .pane--banner:after {
  background-image: url('../design/banner/governance-banner.jpg');
}

.page-governance-policies .pane--banner:after {
  background-image: url('../design/banner/governance-policies-banner.jpg');
}

.section-board .pane--banner:after {
  /*background-image: url('../design/banner/board-banner.jpg');*/
  background-image: url('../design/banner/Board-Banner-Image.jpg');
}

.page-executive .pane--banner:after {
  background-image: url('../design/banner/executive-banner.jpg');
}

.page-committees .pane--banner:after {
  background-image: url('../design/banner/committees-banner.jpg');
}

.page-audit-committee .pane--banner:after {
  background-image: url('../design/banner/audit-committee-banner.jpg');
}

.page-compensation-committee .pane--banner:after {
  background-image: url('../design/banner/compensation-committee-banner.jpg');
}

.page-nominating-committee .pane--banner:after {
  background-image: url('../design/banner/nominating-banner.jpg');
}

.page-health-safety .pane--banner:after {
  background-image: url('../design/banner/health-safety-banner.jpg');
}

.page-sustainability .pane--banner {
  background-image: url('../design/banner/sustainability-flipped-banner.jpg');
}

.page-oversight .pane--banner:after {
  background-image: url('../design/banner/oversight-baner.jpg');
}

.page-board-responsibilities .pane--banner:after {
  background-image: url('../design/banner/board-responsibilities-banner.jpg');
}

.page-policies .pane--banner:after {
  background-image: url('../design/banner/policies-banner.jpg');
}

.page-industry-initiatives .pane--banner:after {
  background-image: url('../design/banner/industry-initiatives-banner.jpg');
}

.page-reporting .pane--banner:after {
  background-image: url('../design/banner/reporting-banner.jpg');
}

.page-programs .pane--banner:after {
  background-image: url('../design/banner/programs-banner.jpg');
}

.page-biodiversity .pane--banner:after {
  background-image: url('../design/banner/biodiversity-banner.jpg');
}

.page-community-development .pane--banner:after {
  background-image: url('../design/banner/community-development-banner.jpg');
}

.page-environment .pane--banner:after {
  background-image: url('../design/banner/environment-banner.jpg');
}

.page-human-rights .pane--banner:after {
  background-image: url('../design/banner/human-rights-banner.jpg');
}

.page-indigenous .pane--banner:after {
  background-image: url('../design/banner/indigenous-banner.jpg');
}

.page-local-communities .pane--banner:after {
  background-image: url('../design/banner/local-communities-banner.jpg');
}

.page-resettlement .pane--banner:after {
  background-image: url('../design/banner/resettlement-banner.jpg');
}

.page-safety .pane--banner:after {
  background-image: url('../design/banner/safety-banner.jpg');
}

.page-tax-transparency .pane--banner:after {
  background-image: url('../design/banner/tax-transparency-banner.jpg');
}

.page-covid-response .pane--banner:after {
  background-image: url("../design/banner/covid-response-banner.jpg");
}

.page-waste .pane--banner:after {
  background-image: url('../design/banner/waste_management_banner.jpg');
}

.page-water .pane--banner:after {
  background-image: url('../design/banner/water_management_banner.jpg');
}

.page-case-studies .pane--banner:after {
  background-image: url('../design/banner/case-studies-banner.jpg');
}

.page-helping-with-exams .pane--banner:after {
  background-image: url('../design/banner/helping-with-exams-banner.jpg');
}

.page-local-craft-workshops .pane--banner:after {
  background-image: url('../design/banner/local-craft-workshops-banner.jpg');
}

.page-womens-literacy-boost .pane--banner:after {
  background-image: url('../design/banner/womens-literacy-boost-banner.jpg');
}

.page-coffee-under-the-canopy .pane--banner:after {
  background-image: url('../design/banner/coffee-under-the-canopy-banner.jpg');
}

.page-future-bright-for-turtles .pane--banner:after {
  background-image: url('../design/banner/future-bright-for-turtles-banner.jpg');
}

.page-leading-ethical-resettlement .pane--banner:after {
  background-image: url('../design/banner/leading-ethical-resettlement-banner.jpg');
}

.page-water-quality-protected .pane--banner:after {
  background-image: url('../design/banner/water-quality-protected-banner.jpg');
}

.page-wise-words-for-kids .pane--banner:after {
  background-image: url('../design/banner/wise-words-for-kids-banner.jpg');
}

.page-boost-for-beekeepers .pane--banner:after {
  background-image: url('../design/banner/boost-for-beekeepers-banner.jpg');
}

.page-protecting-a-wildlife-haven .pane--banner:after {
  background-image: url('../design/banner/protecting-a-wildlife-haven-banner.jpg');
}

.page-anti-burning-campaign .pane--banner:after {
  background-image: url('../design/banner/anti-burning-campaign-banner.jpg');
}

.page-critical-education-support .pane--banner:after {
  background-image: url('../design/banner/critical-education-support-banner.jpg');
}

.page-upskilling-for-teachers .pane--banner:after {
  background-image: url('../design/banner/upskilling-for-teachers-banner.jpg');
}

.page-conservation-farming-yields-results .pane--banner:after {
  background-image: url('../design/banner/conservation-farming-yields-results-banner.jpg');
}

.page-holistic-cattle-raising .pane--banner:after {
  background-image: url('../design/banner/holistic-cattle-raising-banner.jpg');
}

.page-keeping-kids-in-school .pane--banner:after {
  background-image: url('../design/banner/keeping-kids-in-school-banner.jpg');
}

.page-6000-free-lunches .pane--banner:after {
  background-image: url('../design/banner/6000-free-lunches-banner.jpg');
}

.page-only-women-need-apply .pane--banner:after {
  background-image: url('../design/banner/only-women-need-apply-banner.jpg');
}

.page-supporting-zambias-girls .pane--banner:after {
  background-image: url('../design/banner/supporting-zambias-girls-banner.jpg');
}

.page-supporting-girls-at-school .pane--banner:after {
  background-image: url('../design/banner/supporting-girls-at-school-banner.jpg');
}

.page-think-ambassadors .pane--banner:after {
  background-image: url('../design/banner/think-ambassadors-banner.jpg');
}

.page-purification-halts-cholera .pane--banner:after {
  background-image: url('../design/banner/purification-halts-cholera-banner.jpg');
}

.page-healthy-workers-healthy-mine .pane--banner:after {
  background-image: url('../design/banner/healthy-workers-healthy-mine.jpg');
}

.page-tailings-management .pane--banner:after {
  background-image: url('../design/banner/tailings-management.jpg');
}

.page-paying-our-share .pane--banner:after {
  background-image: url('../design/banner/paying-our-share.jpg');
}

.page-investors .pane--banner {
  background-image: url('../design/banner/investors-banner.jpg');
}

.page-investor-briefcase .pane--banner:after {
  background-image: url('../design/banner/investor-briefcase-banner.jpg');
}

.page-financial-info .pane--banner:after {
  background-image: url('../design/banner/financial-info-banner.jpg');
}

.page--financial-policy .pane--banner:after {
  background-image: url('../design/banner/Financial-Policy.jpg');
}

.page-stock-information .pane--banner:after {
  background-image: url('../design/banner/stock-information-banner.jpg');
}

.page-analyst-coverage .pane--banner:after {
  background-image: url('../design/banner/analyst-coverage-banner.jpg');
}

.page-dividends .pane--banner:after {
  background-image: url('../design/banner/dividends-banner.jpg');
}

.page-transactions .pane--banner:after {
  background-image: url('../design/banner/transactions-banner.jpg');
}

.page-our-products .pane--banner:after {
  background-image: url('../design/banner/our-products-banner.jpg');
}

.section-presentations-events .pane--banner:after {
  background-image: url('../design/banner/presentations-events-banner.jpg');
}

.section-announcements:not(.page-announcements-details) .pane--banner, .page-announcements-details .pane--banner:after {
  background-image: url('../design/banner/announcements-banner.jpg');
}

.page-search-jobs-vacancies .pane--banner:after {
  background-image: url('../design/banner/search-jobs-banner.jpg');
}

.page-culture .pane--banner:after {
  background-image: url('../design/banner/culture-banner.jpg');
}

.page-live-work .pane--banner:after {
  background-image: url('../design/banner/live-work-banner.jpg');
}

.page-australia .pane--banner:after {
  background-image: url('../design/banner/australia-banner.jpg');
}

.page-panama .pane--banner:after {
  background-image: url('../design/banner/panama-banner.jpg');
}

.page-zambia .pane--banner:after {
  background-image: url('../design/banner/zambia-banner.jpg');
}

.page-search-results .pane--banner:after {
  background-image: url('../design/banner/search-results-banner.png');
}

.page-cobre-panama-reserves-and-resources .pane--banner:after {
  background-image: url('../design/banner/cobre-panama-reserves-resources-banner.jpg');
}

.page-kansanshi-reserves-and-resources .pane--banner:after {
  background-image: url('../design/banner/kansanshi-reserves-and-resources-banner.jpg');
}

.page-sentinel-production-statistics .pane--banner:after {
  background-image: url('../design/banner/sentinel-production-statistics-banner.jpg');
}

.page-sentinel-reserves-and-resources .pane--banner:after {
  background-image: url('../design/banner/sentinel-reserves-and-resources-banner.jpg');
}

.page-cobre-las-cruces-production-statistics .pane--banner:after {
  background-image: url('../design/banner/cobre-las-cruces-production-statistics-banner.jpg');
}

.page-cobre-las-cruces-reserves-and-resources .pane--banner:after {
  background-image: url('../design/banner/cobre-las-cruces-reserves-and-resources-banner.jpg');
}

.page-cayeli-production-statistics .pane--banner:after {
  background-image: url('../design/banner/cayeli-production-statistics-banner.jpg');
}

.page-cayeli-reserves-and-resources .pane--banner:after {
  background-image: url('../design/banner/cayeli-reserves-and-resources-banner.jpg');
}

.page-guelb-moghrein-production-statistics .pane--banner:after {
  background-image: url('../design/banner/guelb-moghrein-production-statistics-banner.jpg');
}

.page-guelb-moghrein-reserves-and-resources .pane--banner:after {
  background-image: url('../design/banner/guelb-moghrein-reserves-and-resources-banner.jpg');
}

.page-ravensthorpe-production-statistics .pane--banner:after {
  background-image: url('../design/banner/ravensthorpe-production-statistics-banner.jpg');
}

.page-ravensthorpe-reserves-and-resources .pane--banner:after {
  background-image: url('../design/banner/ravensthorpe-reserves-and-resources-banner.jpg');
}

.page-pyhasalmi-production-statistics .pane--banner:after {
  background-image: url('../design/banner/pyhasalmi-production-statistics-banner.jpg');
}

.page-pyhasalmi-reserves-and-resources .pane--banner:after {
  background-image: url('../design/banner/pyhasalmi-reserves-and-resources-banner.jpg');
}

.page-enterprise-reserves-and-resources .pane--banner:after {
  background-image: url('../design/banner/kansanshi-production-stats-banner.jpg');
}

.page-kansanshi-production-stats .pane--banner:after {
  background-image: url('../design/banner/kansanshi-production-stats-banner.jpg');
}

.page-cobrepanama-production-stats .pane--banner:after {
  background-image: url('../design/banner/3.0-OPERATIONS-COBRE-PANAMA-04.jpg');
}

.page-careful-water-use .pane--banner:after {
  background-image: url('../design/banner/careful-water-banner.jpg');
}

.page-edible-insects-diversify-business .pane--banner:after {
  background-image: url('../design/banner/edible-insects-banner.jpg');
}

.page-edible-insects-diversify-business .pane--banner:after {
  background-image: url('../design/banner/edible-insects-banner.jpg');
}

.page-commodities .pane--banner:after, .page-metalcorp-trading .pane--banner:after {
  background-image: url('../design/banner/commodities-banner.jpg');
}

.pane--banner .pane_inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  position: relative;
}

.pane--banner h1, .pane--banner h2 {
  margin: 0;
  color: #fff;
}

.pane--banner .module {
  max-width: 60%;
  position: relative;
}

.pane--banner .module-breadcrumb .module_container--inner {
  font-size: 0;
  line-height: 0;
}

.pane--banner .module-breadcrumb .link-removed {
  display: inline-block;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.1;
  color: #fff;
}

.module-page-title h1 {
  font-size: 48px;
  font-size: 4.8rem;
}

.pane--navigation .module-search, .nav--mobile, .pane--navigation .LanguageSwitch, .pane--navigation .layout_toggle {
  display: none;
}

.pane--navigation .layout_toggle button {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: none;
  border: none;
  padding: 0;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  color: #fff;
}

.nav--mobile {
  width: 100%;
  margin-top: 18px;
  padding: 20px 30px 0;
  border-top: 2px solid #fff;
  clear: both;
}

.nav--mobile .level1 {
  margin-left: -30px;
  margin-right: -30px;
}

.nav--mobile li {
  margin: 5px 0;
}

.nav--mobile a, .nav--mobile .no-link>span {
  color: #fff;
  display: block;
  padding: 7px 0;
  margin-left: 30px;
  margin-right: 30px;
  position: relative;
}

.nav--mobile .level1>li>a {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: 500;
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav--mobile li.has-children>a {
  padding-right: 20px;
}

.nav--mobile li.has-children>a:after, .nav--mobile li.has-children.no-link>span:after {
  font-family: 'q4-icons';
  content: "\ed5d";
  font-size: 12px;
  line-height: 1;
  font-weight: bold;
  position: absolute;
  top: 50%;
  right: 5px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.nav--mobile li.has-children.js--expanded>a:after, .nav--mobile li.has-children.no-link.js--expanded>span:after {
  content: "\ed5e";
}

.nav--mobile .level2 {
  background-color: #263147;
  display: none;
}

.nav--mobile li.js--expanded>.level2 {
  display: block;
}

.nav--mobile .level2>li>a, .nav--mobile .level2>li.no-link>span {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 400;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-left: 40px;
}

.nav--mobile .level3 {
  background-color: #2C3A57;
  padding-top: 5px;
  padding-bottom: 5px;
  display: none;
}

.nav--mobile li.js--expanded>.level3 {
  display: block;
}

.nav--mobile .level3 li>a {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 400;
  margin-left: 50px;
}

.nav--mobile .level4 {
  display: none;
}

.nav--mobile li.js--expanded>.level4 {
  display: block;
}

.nav--mobile .level4 li>a {
  margin-left: 60px;
}

.pane--breadcrumb {
  border-bottom: 1px solid #D9D9D6;
}

.pane--breadcrumb.js--no-border {
  border: none;
}

.pane--breadcrumb .pane_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.pane--breadcrumb .pane_inner:not(:empty) {
  padding-top: 22.5px;
  padding-bottom: 22.5px;
}

.pane--breadcrumb .module-breadcrumb {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 300;
  max-width: 65vw;
  color: rgba(0, 0, 0, 0.6);
}

.pane--breadcrumb .module-breadcrumb a {
  color: rgba(0, 0, 0, 0.6);
}

.pane--breadcrumb .module-breadcrumb a:hover {
  color: #DBB216;
}

.pane--breadcrumb .module-breadcrumb_separator {
  font-size: 0;
  line-height: 0;
  display: inline-block;
  vertical-align: middle;
  margin-left: 3px;
  margin-right: 3px;
  width: 27px;
  height: 1px;
  background-color: #000;
}

.pane--breadcrumb .module-breadcrumb .module_container--inner>span:last-child {
  color: #DBB216;
  font-weight: 500;
}

@media only screen and (max-width: 1600px) {
  .nav--main .js--wrap-li {
      padding-left: 7%;
  }
}

@media only screen and (max-width: 1500px) {
  .pane--header .pane_inner {
      padding-left: 30px;
  }

  .nav--main .level2 {
      padding-left: 30px;
  }

  .nav--main .js--wrap-li {
      padding-left: 5%;
  }
}

@media only screen and (max-width: 1300px) {
  .nav--main .level1>li>a {
      font-size: 13px;
      font-size: 1.3rem;
  }

  .nav--main .level2 {
      padding-right: 30%;
  }

  .nav--main .level2:after {
      width: 30%;
  }

  .nav--main .js--column-li>li>a {
      font-size: 18px;
      font-size: 1.8rem;
  }

  .nav--main .level3 li a {
      font-size: 14px;
      font-size: 1.4rem;
  }

  .nav--main .nav_section-link a, .nav_section-text {
      font-size: 22px;
      font-size: 2.2rem;
  }

  .nav--main .nav_description {
      font-size: 14px;
      font-size: 1.4rem;
  }

  .pane--breadcrumb .module-breadcrumb_separator {
      width: 15px;
  }
}

@media only screen and (max-width: 1279px) {
  .module-logo img {
      width: 90px;
  }

  .nav--main .level1>li {
      padding-right: 7px;
  }

  .nav--main .level1>li+li {
      padding-left: 7px;
  }

  .nav--main .level1>li>a {
      font-size: 12px;
      font-size: 1.2rem;
  }

  .nav--main .level2 {
      padding-left: 30px;
  }

  .nav--main .js--column-li>li>a {
      font-size: 17px;
      font-size: 1.7rem;
  }

  .nav--main .level3 li a {
      font-size: 13px;
      font-size: 1.3rem;
  }

  .nav--main .nav_section-link a, .nav_section-text {
      font-size: 20px;
      font-size: 2rem;
  }

  .nav--main .nav_description {
      font-size: 13px;
      font-size: 1.3rem;
  }

  .LanguageSwitch {
      margin-left: 10px;
  }

  .LanguageSwitch, .LanguageSwitch:after, .LanguageSwitch a:before {
      font-size: 12px;
      font-size: 1.2rem;
  }
}

@media only screen and (max-width: 1023px) {
  .pane--header {
      padding-top: 10px;
      padding-bottom: 10px;
  }

  .pane--header .nav, .pane--header .module-search {
      display: none;
  }

  .module-logo {
      padding-top: 0;
  }

  .module-logo img {
      width: 85px;
  }

  .pane--header .LanguageSwitch {
      display: none;
  }

  .pane--header .layout_toggle {
      display: inline-block;
  }

  .pane--banner, .js--section .pane--banner {
      height: auto;
  }

  .pane--banner:after {
      position: static;
      width: 100%;
      height: 250px;
  }

  .pane--banner .pane_inner {
      padding-top: 50px;
      padding-bottom: 45px;
  }

  .pane--banner .module {
      max-width: none;
  }

  .module-page-title h1 {
      font-size: 35px;
      font-size: 3.5rem;
  }

  .pane--navigation {
      position: fixed;
      top: -100%;
      left: 0;
      right: 0;
      bottom: 100%;
      transition: 0.5s ease-in-out;
      overflow-x: hidden;
      overflow-y: auto;
      z-index: 125;
      background: linear-gradient(225deg, #263147 0%, #131A2E 100%);
      box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.2);
      padding-top: 20px;
      padding-bottom: 60px;
  }

  .js--mobile .pane--navigation {
      top: 0;
      bottom: 0;
  }

  .pane--navigation .pane_inner {
      max-width: none;
      padding: 0;
  }

  .pane--navigation .LanguageSwitch {
      display: inline-block;
      vertical-align: top;
      color: #fff;
      margin-left: 30px;
      padding-top: 5px;
  }

  .pane--navigation .LanguageSwitch:after, .pane--navigation .LanguageSwitch a:before {
      color: #fff;
  }

  .pane--navigation .layout_toggle {
      display: inline-block;
      vertical-align: top;
      float: right;
      margin-right: 30px;
      margin-bottom: 14px;
  }

  .nav--mobile {
      display: block;
  }

  .pane--navigation .module-search {
      display: block;
      padding-top: 100px;
  }

  .pane--navigation .module-search_text, .pane--navigation .module-search_close {
      display: none;
  }

  .pane--navigation .module-search .module_container--inner {
      position: static;
      background: none;
      opacity: 1;
      visibility: visible;
      padding: 0;
  }

  .pane--breadcrumb .pane_inner {
      display: block;
  }

  .pane--breadcrumb .module-breadcrumb {
      max-width: none;
  }
}

@media only screen and (min-height: 450px) and (max-height: 850px) {
  .nav--main .level2 {
      padding-top: 20px;
      padding-bottom: 20px;
  }

  .nav--main .js--wrap-li {
      padding-left: 7%;
  }

  .nav--main .js--column-li>li>a, .nav--main .js--column-li>li.no-link>span {
      font-size: 16px;
      font-size: 1.6rem;
  }

  .nav--main .js--wrap-li>div {
      margin-left: -20px;
  }

  .nav--main .js--column-li>li {
      padding-left: 20px;
      padding-bottom: 12px;
  }

  .nav--main .js--column-li>li>a, .nav--main .js--column-li>li.no-link>span {
      font-size: 14px;
      font-size: 1.4rem;
  }

  .nav--main .level3 {
      padding-top: 12px;
  }

  .nav--main .level3>li+li {
      margin-top: 5px;
  }

  .nav--main .level3 li a {
      font-size: 12px;
      font-size: 1.2rem;
  }

  .nav--main .level4 li {
      margin-top: 3px;
  }
}

/*=========================END HEADER=========================*/
/*===========================FOOTER===========================*/
.pane--footer {
  padding-top: 80px;
  font-size: 14px;
  font-size: 1.4rem;
}

.pane--footer .module_title {
  font-size: 24px;
  font-size: 2.4rem;
  margin-bottom: 50px;
  color: #fff;
}

.module-footer-top {
  padding-bottom: 80px;
}

.module-footer-top_item--links .grid_col:nth-child(n+4) {
  padding-top: 50px;
}

.module-footer-top_item h4 {
  margin-top: 0;
  margin-bottom: 20px;
}

.module-footer-top_item-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.module-footer-top_item--links h4 i {
  font-size: 26px;
  font-size: 2.6rem;
  margin-right: 12px;
  vertical-align: middle;
}

.module-footer-top_item--links li+li {
  margin-top: 10px;
}

.module-footer-top-downloads {
  margin-top: 35px;
  border-top: 1px solid #4A5270;
}

.module-footer-top-downloads .module_container--content {
  padding-top: 5px;
}

.module-footer-top-downloads_item {
  position: relative;
  padding: 10px 0 10px 25px;
}

.module-footer-top-downloads .module_link {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 300;
  margin: 0;
}

.module-footer-top-downloads .module_link:before {
  font-family: 'q4-icons';
  content: "\e915";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #DBB216;
  font-size: 16px;
}

.module-footer-video {
  padding-top: 15px;
}

.module-footer-video_thumbnail a, .module-careers-video_thumbnail a {
  position: relative;
  display: inline-block;
}

.module-footer-video_thumbnail a:before, .module-careers-video_thumbnail a:before {
  font-family: 'q4-icons';
  content: "\ed85";
  font-size: 20px;
  width: 48px;
  height: 48px;
  line-height: 48px;
  display: inline-block;
  text-align: center;
  color: #fff;
  background-color: #DBB216;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.3s ease-in-out;
}

.module-footer-video_thumbnail a:hover:before, .module-careers-video_thumbnail a:hover:before {
  background-color: #DBB216;
}

.module-footer-video_thumbnail img, .module-careers-video_thumbnail img {
  display: block;
  width: 100%;
}

.module-footer-video_description {
  font-size: 16px;
  font-size: 1.6rem;
  padding-top: 30px;
  padding-bottom: 30px;
}

.module-footer-video_description>*:first-child {
  margin-top: 0;
}

.module-footer-video_description>*:last-child {
  margin-bottom: 0;
}

.module-footer-video_button .button--more {
  border-color: #fff;
  color: #fff;
}

.module-footer-video_button .button--more:hover {
  color: #DBB216;
}

.pane--footer .module:not(.module-embed) {
  padding-bottom: 80px;
}

.module-links-footer.module-links-footer.module-links-footer {
  padding-bottom: 0;
}

.module-links-footer li {
  display: inline-block;
  vertical-align: top;
  margin-right: 40px;
  padding-bottom: 20px;
}

.pane--credits {
  padding-top: 20px;
  padding-bottom: 30px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.3;
  text-align: center;
  border-top: 1px solid #D9D9D6;
  color: #fff;
}

.pane--credits a {
  color: #fff;
}

.pane--credits a:hover {
  color: #DBB216;
}

.copyright {
  text-align: left;
}

.copyright_item {
  display: inline-block;
  vertical-align: top;
}

.copyright_item+.copyright_item {
  margin-left: 30px;
}

.copyright_item .copyright_logo {
  display: inline-block;
  width: 58px;
  margin-left: 9px;
}

.module-links-social {
  text-align: right;
}

.module-links-social li {
  display: inline-block;
  vertical-align: top;
}

.module-links-social li+li {
  margin-left: 10px;
}

.module-q4-credits {
  padding-top: 20px;
}

@media only screen and (max-width: 1279px) {
  .copyright_item+.copyright_item {
      margin-left: 20px;
  }
}

@media only screen and (max-width: 1023px) {
  .module-footer-top_item.grid_col {
      width: 100%;
  }

  .module-footer-top_item+.module-footer-top_item {
      padding-top: 70px;
  }

  .module-footer-top_item--links .grid_col {
      width: auto;
      flex-basis: 100%;
      max-width: 100%;
  }

  .module-footer-top_item--links .grid_col:nth-child(n+2) {
      padding-top: 70px;
  }

  .pane--credits .module.grid_col {
      width: 100%;
  }

  .copyright_item {
      display: block;
  }

  .copyright_item+.copyright_item {
      margin-left: 0;
      margin-top: 15px;
  }

  .module-links-social {
      text-align: left;
      padding-top: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .module-links-footer li {
      margin-right: 35px;
  }
}

/*=========================END FOOTER=========================*/
/*=========================INNER PAGES========================*/
.module-banner-text h1 {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.1;
  font-weight: 600;
}

.module-banner-text h2 {
  font-size: 48px;
  font-size: 4.8rem;
  font-weight: 700;
}

.module_slider-pagination-arrows {
  position: absolute;
  display: inline-block;
}

.module_slider-arrows .slick-arrow {
  position: static;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.module_slider-pagination {
  background-color: #DBB216;
  padding: 47px 10px 27px;
  text-align: center;
  font-size: 22px;
  width: 96px;
}

.module_slider-pagination>span {
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  opacity: 0.6;
  position: relative;
}

.module_slider-pagination-current-item.module_slider-pagination-current-item {
  opacity: 1;
  position: relative;
  top: -15px;
}

.module_slider-pagination-current-item:after {
  content: "/";
  margin-left: 5px;
  margin-right: 3px;
  position: relative;
  bottom: -5px;
}

.module_slider-pagination-total-items.module_slider-pagination-total-items {
  top: -4px;
}

.module_slider-pagination-arrows .module_slider-dots {
  display: none;
}

.module-side-widget .module-downloads-blocks_item+.module-downloads-blocks_item {
  padding-top: 50px;
}

.module-downloads-blocks_item-inner {
  position: relative;
  height: 100%;
  padding-bottom: 30px;
}

.module-downloads-blocks_thumbnail {
  margin-bottom: 15px;
}

.module-downloads-blocks_thumbnail-link {
  position: relative;
  display: inline-block;
  /* max-height: 205px; */
  overflow: hidden;
}

.module-downloads-blocks_thumbnail-link:before {
  font-family: 'q4-icons';
  /* content: "\e916"; */
  content: url('../images/2024/05/Vector-7.svg');
  font-size: 20px;
  width: 48px;
  height: 48px;
  line-height: 48px;
  display: inline-block;
  text-align: center;
  color: #fff;
  background-color: transparent;
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
  transition: 0.3s ease-in-out;
  opacity: 0.6;
}

/* .module-downloads-blocks_thumbnail-link:hover:before {
background-color: #DBB216;
}

.module-downloads-blocks_thumbnail-link--video:before {
content: "\ed85";
} */
.module-downloads-blocks_thumbnail-link img {
  display: block;
  width: 100%;
  width: 598px;
  height: 350px;
  object-fit: cover;
}

.module-downloads-blocks_item-title {
  margin-top: 0;
  font-weight: 700;
  color: #263147;
  font-size: 25.2px;
  line-height: 30.2px;
  margin: 20px 0px 30px;
}

.module-side-widget .module-downloads-blocks_item-title {
  margin-bottom: 0;
}

.module-side-widget .module-downloads-blocks_item-description {
  margin-top: 5px;
}

.module-downloads-blocks_item-description>*:first-child {
  margin-top: 0;
}

.module-downloads-blocks_item-description>*:last-child {
  margin-bottom: 0;
}

.module-downloads-blocks_item-description p {
  color: #263147;
  font-weight: 400;
}

.module-downloads-blocks .button {
  font-weight: 500;
  /* position: absolute; */
  left: 0;
  bottom: 0;
}

.module-side-widget .button:not(.button--more) {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
  width: 100%;
  min-width: auto;
  position: relative;
}

.module-side-widget .button.q4-icon_search2:before {
  position: absolute;
  top: 50%;
  left: 45px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.module-side-rss_item {
  position: relative;
  border-bottom: 1px solid #D9D9D6;
  padding: 25px 0 25px 45px;
}

.module-side-rss .module_link {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #263147;
  margin: 0;
}

.module-side-rss .module_link:hover {
  color: #DBB216;
}

.module-side-rss .module_link:before {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.module_slider-dots-arrows {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
}

.module_intro-heading {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.5;
  color: #DBB216;
  margin-top: 0;
  margin-bottom: 40px;
}

.module_section-title {
  color: #DBB216;
}

.module_intro-heading--small_margin {
  margin-bottom: 15px;
}

.module-side-widget {
  position: relative;
}

.module-side-widget .module_title {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1;
  background-color: #263147;
  border: none;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 17px 30px;
  display: block;
  cursor: pointer;
  height: 48px;
  margin: 0;
  display: none;
}

.module-side-widget .module_title:after {
  font-family: 'q4-icons';
  content: "\e90e";
  font-size: 14px;
  background-color: #DBB216;
  color: #fff;
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  width: 77px;
  height: 48px;
  line-height: 48px;
  transition: 0.3s ease-in-out;
  padding-left: 20px;
}

.module-side-links .button--more {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  border: none;
}

.module-side-links .button--more:before {
  display: none;
}

.module-side-links .module_item {
  padding: 12px 0;
}

p+.module-pod-blocks {
  margin-top: 50px;
}

.module-pod-blocks_item {
  padding-top: 20px;
  padding-bottom: 30px;
}

.module-pod-blocks_item-inner {
  position: relative;
  height: 100%;
  padding-bottom: 30px;
  overflow: hidden;
}

.module-pod-blocks_thumbnail {
  overflow: hidden;
}

.module-pod-blocks_thumbnail img {
  display: block;
  width: 100%;
  transition: 0.3s ease-in-out;
}

.module-pod-blocks_item-inner:hover .module-pod-blocks_thumbnail img {
  transform: scale(1.1);
}

.module-pod-blocks_item-title {
  color: #263147;
  transition: 0.3s ease-in-out;
}

.module-pod-blocks_item-inner:hover .module-pod-blocks_item-title {
  color: #DBB216;
}

.module-pod-blocks_item-description>*:not(.button) {
  position: relative;
  z-index: 1;
}

.module-pod-blocks .button {
  position: absolute;
  left: 0;
  bottom: 0;
}

.module-pod-blocks .button_text:before {
  content: "";
  position: absolute;
  top: -10000%;
  left: -1000%;
  height: 100000%;
  width: 100000%;
}

.module-subpages-blocks .module_item {
  padding-top: 0;
  padding-bottom: 15px;
  border-bottom: none;
}

.module-subpages-blocks .module_item.grid_col {
  padding-left: 32px;
}

.module-subpages-blocks .module_item-inner {
  padding: 30px 30px 70px 30px;
  background: linear-gradient(225deg, #263147 0%, #131A2E 100%);
  box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.2);
  height: 100%;
  min-height: 300px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s ease-in-out;
}

.module-subpages-blocks .module_item-inner:hover {
  box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.5);
}

.module-subpages-blocks .module_item-inner>* {
  position: relative;
  z-index: 1;
}

.module-subpages-blocks .module_item-inner:before {
  content: "";
  background-image: url('../design/grid-pattern.png');
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.module-subpages-blocks .module_item-inner:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

.module-subpages-blocks .module_item-inner:hover:after {
  opacity: 0.25;
}

.module-subpages-blocks .module_more {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
}

.module-subpages-blocks .module_more .button_text:before {
  content: "";
  position: absolute;
  top: -10000%;
  left: -1000%;
  height: 100000%;
  width: 100000%;
  z-index: 1;
}

.module-photo-gallery .module_container--widget {
  position: relative;
  margin-top: 30px;
  margin-bottom: 30px;
}

.module-photo-gallery .slick-slider {
  padding: 0;
}

.module-photo-gallery .module_item {
  padding: 0;
}

.module-photo-gallery .module_thumbnail-link {
  display: block;
  position: relative;
}

.module-photo-gallery .module_thumbnail-link img {
  width: 100%;
}

.module-photo-gallery .module_thumbnail-link:before {
  font-family: 'q4-icons';
  content: "\e916";
  font-size: 20px;
  width: 48px;
  height: 48px;
  line-height: 48px;
  display: inline-block;
  text-align: center;
  color: #fff;
  background-color: #DBB216;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.3s ease-in-out;
}

.module-photo-gallery .module_thumbnail-link:hover:before {
  background-color: #DBB216;
}

.module-photo-gallery .module_slider-pagination-arrows {
  bottom: 0;
  right: 0;
}

.pane--left .module-subscribe {
  padding-top: 0;
}

.pane--left .module-subscribe .module_title {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #263147;
  margin-bottom: 12px;
}

.pane--left .module_introduction, .pane--left .module-subscribe_intro-text, .pane--left .module-subscribe_email label, .pane--left .module-subscribe_list-header, .pane--left .module-subscribe_email .module_required, .pane--left .module-subscribe_mailing-list, .pane--left .module-subscribe .CaptchaContainer {
  display: none;
}

.pane--left .module-subscribe .module-subscribe_tables-wrapper {
  position: relative;
}

.pane--left .module-subscribe .module_input[type="email"] {
  padding-right: 60px;
  height: 48px;
}

.pane--left .module-subscribe .module-subscribe_form tr {
  width: 100%;
  margin-bottom: 10px;
}

.pane--left .module-subscribe .module-subscribe_form tr:nth-child(odd) {
  padding-right: 0;
}

.pane--left .module-subscribe .module-subscribe_mailing-list.js--revealed {
  display: block;
}

.pane--left .module-subscribe .module_actions {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
}

.pane--left .module-subscribe .button {
  width: 48px;
  height: 48px;
  font-size: 0;
  line-height: 0;
  padding: 0;
  min-width: auto;
}

.pane--left .module-subscribe .button:after {
  font-family: 'q4-icons';
  content: "\edbe";
  font-size: 12px;
  line-height: 48px;
}

.pane--left .module-subscribe_unsubscribe-link {
  display: block;
}

.pane--left .module-subscribe .module-subscribe_mailing-list.js--revealed+div+div+.module-subscribe_unsubscribe-link {
  margin-top: 20px;
}

@media only screen and (max-width: 1279px) {
  .module-side-widget .button:not(.button--more) {
      font-size: 14px;
      font-size: 1.4rem;
  }

  .module-side-widget .button.q4-icon_search2:before {
      position: static;
      -webkit-transform: none;
      -ms-transform: none;
      transform: none;
      padding-right: 20px;
  }
}

@media only screen and (max-width: 1023px) {
  .module-banner-text h2 {
      font-size: 35px;
      font-size: 3.5rem;
  }

  .module-side-widget.module-side-widget {
      padding-top: 50px;
      padding-bottom: 0;
      margin-left: -30px;
      margin-right: -30px;
      background-color: #F5F5F5;
  }

  .module-side-widget .module_title {
      display: block;
  }

  .module-side-widget .module_title.js--active:after {
      content: "\e911";
      background-color: #A58300;
  }

  .module-side-widget .module_container--inner {
      padding: 40px 30px 60px 30px;
      border-bottom: 4px solid #DBB216;
      box-shadow: 10px 10px 15px 0 rgba(0, 0, 0, 0.16);
      display: none;
  }

  .module-side-widget .module_container--inner.js--revealed {
      display: block;
  }

  .module-subpages-blocks.module-subpages-blocks .module_container--outer {
      padding-left: 0;
      padding-right: 0;
  }

  .module-subpages-blocks .module_item.grid_col {
      flex-basis: 100%;
      max-width: 100%;
  }

  .module-subpages-blocks .module_item-inner {
      min-height: auto;
      padding-bottom: 30px;
  }

  .module-subpages-blocks .module_more {
      margin-top: 25px;
      position: static;
  }

  .pane--left .module-subscribe {
      padding-top: 60px;
      padding-bottom: 0;
  }
}

@media only screen and (max-width: 767px) {
  .module_slider-pagination-arrows {
      padding-left: 48px;
      padding-right: 48px;
  }

  .module_slider-pagination-arrows .module_slider-arrows .slick-arrow {
      position: absolute;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  }

  .module-downloads-blocks_item {
      width: 100%;
  }

  .grid--flex .module-downloads-blocks_item.grid_col {
      width: auto;
      flex-basis: 100%;
      max-width: 100%;
  }

  .module-downloads-blocks_item+.module-downloads-blocks_item {
      padding-top: 70px;
  }

  .module_intro-heading {
      font-size: 18px;
      font-size: 1.8rem;
      margin-bottom: 30px;
  }

  .module-pod-blocks_item.module-pod-blocks_item {
      flex-basis: 100%;
      max-width: 100%;
  }

  .module-photo-gallery .module_container--widget {
      margin-bottom: 50px;
  }

  .module-photo-gallery .module_slider-pagination-arrows {
      bottom: -35px;
      right: auto;
      left: 50%;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  }

  .module-photo-gallery .module_slider-pagination {
      padding: 34px 10px 14px;
      width: 70px;
  }

  .module-photo-gallery .module_slider-pagination>span {
      font-size: 18px;
      font-size: 1.8rem;
  }
}

/*=========================HOME=======================*/
.layout--home .pane--banner {
  height: auto;
}

.layout--home .pane--banner:after {
  display: none;
}

.layout--home .pane--banner .pane_inner {
  display: block;
  max-width: none;
  padding: 0;
}

.layout--home .pane--banner .module {
  max-width: none;
}

.module-slider .module_container--widget {
  position: relative;
}

.module-slider .slick-slider {
  padding: 0;
}

.module-slider .slick-track {
  display: flex;
}

.module-slider .module-slider_item {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: auto;
  min-height: 760px;
}

.module-slider .module-slider_item.shaping_future {
  background-position: top center;
}

.module-slider_item-inner {
  width: 100%;
  max-width: 1310px;
  margin-left: auto;
  margin-right: auto;
  padding: 80px 30px 220px;
  display: flex;
  height: 100%;
  align-items: flex-end;
}

.module-slider_item-content {
  max-width: 615px;
}

/* .PageHome .module-slider .module-slider_item-inner:not(.first_slide) .module-slider_item-content {
height: 100%;
display: flex;
flex-direction: column;
justify-content: space-between;
}

.PageHome .module-slider .module-slider_item-inner:not(.first_slide) .module-slider_item-content .module-slider_description{
display: flex;
flex-direction: column;
justify-content: space-between;
gap: 50px;
}

.PageHome .module-slider .module-slider_item:last-of-type .module-slider_description p{
max-width: 70%;
} */
.PageHome .module-slider .module-slider_item-inner:not(.first_slide) .module-slider_item-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.PageHome .module-slider .module-slider_item-inner:not(.first_slide) .module-slider_item-content .module-slider_description {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 50px;
}

.PageHome .module-slider .module-slider_item:last-of-type .module-slider_description p {
  max-width: 70%;
}

.Languagees-ES .module-slider_item-content {
  max-width: 600px;
}

.module-slider_title {
  font-size: 90px;
  font-size: 9rem;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.module-slider_description {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.25;
  font-weight: 400;
  margin-top: 20px;
}

.module-slider_description p {
  line-height: 1.25;
}

.module-slider_description>*:first-child {
  margin-top: 0;
}

.module-slider_description>*:last-child {
  margin-bottom: 0;
}

.module-slider .button {
  margin-top: 7px;
}

.module-slider .module-slider_arrows {
  width: 100%;
  max-width: 1310px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  position: absolute;
  bottom: 110px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  text-align: left;
  z-index: 1;
}

.module-slider .slick-arrow {
  position: static;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.module-slider .slick-dots {
  width: 100%;
  max-width: 1310px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  position: absolute;
  bottom: 190px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  text-align: left;
  z-index: 1;
}

.module-slider .slick-dots button {
  width: 65px;
  background-color: #fff;
}

.layout--home .pane--content {
  /* background-image: url('../design/content-bg.png'); */
  background-repeat: no-repeat;
  background-position: top left;
  background-size: auto;
}

.module-home-blocks {
  position: relative;
}

@media all and (max-width: 1200px) {
  .module-home-blocks_item--links {
      margin-bottom: 30px;
  }
}

.module-home-blocks_item--careers {
  position: relative;
  margin-top: -200px;
}

.module-home-blocks.module-home-blocks .module_container--outer {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.module-home-blocks_box {
  min-height: 183px;
}

.module-home-blocks_box--inner {
  height: 100%;
  display: flex;
  /* align-items: center; */
  justify-content: center;
  background-color: #000;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% 100%;
  position: relative;
  padding: 0 15%;
  margin: 15px 0;
  transition: 0.3s ease-in-out;
}

.module-home-blocks_box:not(:last-child) .module-home-blocks_box--inner {
  border-right: 1px solid #263147;
}

.module-home-blocks_box--inner:hover {
  background-size: 110% 110%;
}

.module-home-blocks_box-link {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.2em;
  font-weight: 600;
  /*color: #fff;*/
  color: #263147;
  /* padding-right: 40px; */
  margin-top: 25px;
}

@media all and (max-width: 1367px) {
  .module-home-blocks_box-link {
      font-size: 16px;
      font-size: 1.6rem;
  }
}

.module-home-blocks_box-link:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.module-home-blocks .button--more::after {
  font-family: 'q4-icons' !important;
  content: "\edbe";
  font-size: 18px;
  right: -5px;
}

.module-home-blocks .button--more:hover::after {
  color: #DBB216;
  background: transparent;
}

.module-purpose .button--more::after, .module-csr-projects .button--more::after, .module-latest-info .button--more::after, .module-careers-block .button--more::after, .analyst-centre-tiles .button--more::after {
  font-family: 'q4-icons' !important;
  content: "\edbe";
  font-size: 18px;
  right: -5px;
  color: #DBB216;
  background: transparent;
}

.module-purpose .button--more:hover::after, .module-csr-projects .button--more:hover::after, .module-latest-info .button--more:hover::after, .module-careers-block .button--more:hover::after, .analyst-centre-tiles .button--more:hover::after {
  color: #DBB216;
  background: transparent;
}

.module-home-blocks_box-link:after {
  font-family: 'q4-icons';
  content: "\edbe";
  font-size: 18px;
  /* background-color: #DBB216; */
  color: #DBB216;
  display: inline-block;
  position: absolute;
  /*top: 50%;*/
  top: calc(100% - 8px);
  /*right: 15%;*/
  right: 4%;
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 24px;
  transition: 0.3s ease-in-out;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media all and (max-width: 767px) {
  .module-home-blocks_box-link:after {
      top: 50%;
      right: 15%;
  }
}

.module-home-blocks_box-link:hover {
  color: #DBB216;
}

.module-home-blocks_box-link:hover:after {
  /* background-color: #DBB216; */
  color: #DBB216;
}

.module-home-blocks_box--csr .module-home-blocks_box--inner {
  /*background-image: url('../design/HOME-CSR.jpg');*/
  background: #fff;
}

.module-home-blocks_box--ccr .module-home-blocks_box--inner {
  /*updating background image per case 00353788*/
  /*background-image: url('../images/2022/IMG_4500.jpeg');*/
  /*background-image: url('../images/2022/TCFD-Cover.jpeg');*/
  background: #fff;
}

.BoxTitle {
  margin-top: 25px;
  margin-right: auto;
}

.module-home-blocks_box--reports .module-home-blocks_box--inner {
  /*background-image: url('../images/2022/Trolley-System.jpeg');*/
  background: #fff;
}

.module-home-blocks_box--stock .module-home-blocks_box--inner {
  background-color: #fff;
  justify-content: flex-start;
}

.module-home-blocks_box--stock .module-home-blocks_box--inner:after {
  font-family: 'q4-icons';
  content: "\edbe";
  font-size: 18px;
  font-weight: 600;
  /* background-color: #DBB216; */
  color: #DBB216;
  display: inline-block;
  position: absolute;
  /*top: 50%;*/
  top: calc(100% - 8px);
  /*right: 12%;*/
  right: 4%;
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 24px;
  transition: 0.3s ease-in-out;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media all and (max-width: 767px) {
  .module-home-blocks_box--stock .module-home-blocks_box--inner:after {
      top: 50%;
      right: 12%;
  }
}

.module-home-blocks_box--stock .module-home-blocks_box--inner:hover:after {
  /* background-color: #DBB216; */
  color: #DBB216;
}

.module-stock-home_link {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.module-stock-home_description1 {
  font-weight: 400;
  display: block;
  margin-top: 25px;
}

.module-stock-home_stock-price {
  font-size: 40px;
  font-size: 4rem;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: 2px;
  color: #263147;
  display: block;
  transition: 0.3s ease-in-out;
}

.module-stock-home_stock-price:before {
  content: "$";
}

.module-home-blocks_box--stock .module-home-blocks_box--inner:hover .module-stock-home_stock-price {
  opacity: 0.9
}

.module-stock-home_change {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 500;
}

.module-stock-home_change:before {
  content: "";
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 8px solid currentColor;
  display: inline-block;
  vertical-align: middle;
  margin-right: 2px;
}

.module-stock-home_change.module-stock_down:before {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.module-stock-home_description3 {
  font-size: 12px;
  font-size: 1.2rem;
  margin-left: 12px;
  font-weight: 400;
}

.module-careers-slider .slick-slider {
  padding: 0;
}

.module-careers-slider_item-inner {
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 45%;
  position: relative;
}

.module-careers-slider_item-image {
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 45%;
  box-shadow: 8px 8px 5px 0 rgb(0 0 0 / 25%);
}

.module-careers-slider_item-content {
  /*background-image: url('../design/arrow-bg.svg');
background-repeat: no-repeat;
background-position-y: top;
background-position-x: calc(100% - 20px);
background-size: auto;
color: #fff;*/
  color: #263147;
  background: #DBB216;
  padding: 15px 60px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 320px;
  height: 1px;
  width: 100%;
  font-weight: 400;
}

.module-careers-slider_item-content:before {
  content: "";
  background: linear-gradient(180deg, #263147 0%, #131A2E 100%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.module-careers-slider_item-content>* {
  position: relative;
}

.module-careers-slider_item-content>*:first-child {
  margin-top: 0;
}

.module-careers-slider_item-content>*:last-child {
  margin-bottom: 0;
}

.module-careers-slider_title {
  color: #263147 !important;
  font-weight: 700;
  margin-bottom: 10px;
}

.module-careers-slider_description {
  padding-right: 15%;
}

.module-careers-slider_description>*:first-child {
  margin-top: 0;
}

.module-careers-slider_item-content>.button {
  color: #263147;
  font-weight: 400;
  max-width: 85%;
  border-bottom: 1px solid #263147;
}

.module-careers-slider .module_slider-pagination-arrows {
  display: none;
  top: 50%;
  left: calc(45% - 48px);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.module-purpose_intro {
  font-size: 20px;
  font-size: 2rem;
}

.module-purpose_intro p {
  color: #263147;
  font-weight: 400;
  line-height: 1.3;
  font-size: 26px;
}

.module-downloads-blocks {
  margin-top: 50px;
}

.module-purpose .module_title {
  color: #263147;
  font-weight: 700;
  margin-bottom: 30px;
  font-size: 37.8px;
  line-height: 46.1px;
  max-width: 375px;
}

.module-purpose_item:first-child {
  padding-top: 15px;
  padding-bottom: 20px;
}

.module-csr-projects .module_container--widget {
  position: relative;
}

.module-csr-projects .slick-slider {
  padding: 0;
}

.module-csr-projects_thumbnail {
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.module-csr-projects_item-content.module-csr-projects_item-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #F5F5F5;
  padding: 50px 60px;
  min-height: 600px;
}

.module-csr-projects_item-content-inner {
  max-width: 470px;
}

.module-csr-projects_item_description {
  font-size: 20px;
  font-size: 2rem;
  color: #263147;
  font-weight: 400;
}

.module-csr-projects_more {
  max-width: 395px;
  padding-top: 10px;
}

/*
.module-csr-projects .module_slider-pagination-arrows {
top: 84%;
right: 32%;
}

@media all and (max-width: 1600px) {
.module-csr-projects .module_slider-pagination-arrows {
    right: 33.5%;
}
}

@media all and (max-width: 1440px) {
.module-csr-projects .module_slider-pagination-arrows {
    right: 34.5%;
}
}

@media all and (max-width: 1200px) {
.module-csr-projects .module_slider-pagination-arrows {
    right: 36.3%;
}
}

@media all and (max-width: 900px) {
.module-csr-projects .module_slider-pagination-arrows {
    top: 88%;
    right: 32.5%;
}
}

@media all and (max-width: 768px) {
.module-csr-projects .module_slider-pagination-arrows {
    right: 30%;
}
}

@media all and (max-width: 767px) {
.module-csr-projects .module_slider-pagination-arrows {
    bottom: 45%;
    right: 0%;
}
}
*/
.module-latest-info.module-latest-info {
  padding-top: 120px;
}

.module-latest-info .module_title {
  color: #263147;
  font-weight: 700;
  margin-bottom: 35px;
  font-size: 37.8px;
  line-height: 46.1px;
  max-width: 375px;
}

.module-latest-info .slick-slider {
  padding: 0;
}

.module-latest-info .slick-track {
  display: flex;
}

.module-latest-info .module-latest-info_item {
  height: auto;
}

.module-latest-info_item-inner {
  height: 100%;
  position: relative;
  padding-top: 15px;
  padding-bottom: 50px;
}

.module-latest-info_item-inner .button {
  color: #263147;
  font-weight: 400;
}

.module-latest-info_item-title {
  margin-top: 0;
  margin-bottom: 20px;
  color: #263147;
  font-size: 25.2px;
  line-height: 30.2px;
  font-weight: 600;
}

.module-latest-info_item-title:before {
  display: block;
  padding: 20px 0px;
}

.module-latest-info_item:nth-of-type(1) .module-latest-info_item-title:before {
  content: url("../images/2024/05/Group-11038.svg");
}

.module-latest-info_item:nth-of-type(2) .module-latest-info_item-title:before {
  content: url("../images/2024/05/Layer_1.svg");
}

.module-latest-info_item:nth-of-type(3) .module-latest-info_item-title:before {
  content: url("../images/2024/05/Layer_1-1.svg");
}

.module-latest-info_item-content {
  display: flex;
}

.module-latest-info_thumbnail {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 82px;
  background-color: #D8D8D8;
}

.module-latest-info_item-description {
  flex: auto;
  padding-top: 5px;
  padding-bottom: 20px;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.3;
}

.module-latest-info_item-description>*:first-child {
  margin-top: 0;
}

.module-latest-info_item-description>*:last-child {
  margin-bottom: 0;
  white-space: nowrap;
}

.module-latest-info .module_more {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.layout--home .module-explore-operations {
  padding-bottom: 100px;
}

.module-explore-operations .current-operations-title {
  margin-left: 7px;
}

.module-explore-operations .module_title {
  color: #263147;
  font-weight: 700;
  padding-right: 350px;
  font-size: 37.8px;
  line-height: 46.12px;
}

.module-explore-operations .module_container--inner {
  position: relative;
}

.module-explore-operations .slick-slider {
  padding: 0;
}

.module-explore-operations .slick-slider .slick-list {
  /* margin: 0px -27px; */
}

.module-explore-operations .slick-slider .slick-slide {
  /* margin: 0px 27px; */
  margin: 0px -10px;
}

.module-explore-operations .module_container--content.mobile-only {
  display: none;
}

.module-explore-operations_item {
  height: 350px;
  width: 599px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  margin: 0px 10px;
  margin-bottom: 20px;
}

.module-explore-operations_item.featured {
  height: 700px;
}

.module-explore-operations_item-inner {
  height: 100%;
  position: relative;
  overflow: hidden;
}

.module-explore-operations_item-inner:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.35);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: 0.3s ease-in-out;
}

.module-explore-operations_item-inner:hover:before {
  opacity: 1;
  visibility: visible;
}

.module-explore-operations_item-inner img {
  display: flex !important;
  width: 100%;
  height: 100%;
  transition: 0.3s ease-in-out;
}

.module-explore-operations_item-inner:hover img {
  transform: scale(1.05);
}

.module-explore-operations_link {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  color: #fff;
  padding: 50px 6.5%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  gap: 10px;
}

.module-explore-operations_item.featured .module-explore-operations_link {
  padding-left: 5.3%;
  padding-right: 5.3%;
}

.module-explore-operations_link:hover {
  color: #fff;
}

.module-explore-operations_description {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.25;
  font-weight: 600;
}

.module-explore-operations_title {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.22;
  font-weight: 600;
}

.module-explore-operations .module_slider-arrows-dots {
  display: flex;
  align-items: center;
}

.module-explore-operations .module_slider-arrows-dots--desktop {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  justify-content: center;
}

.module-explore-operations .module_slider-arrows-dots--mobile {
  display: none;
}

.module-explore-operations .module_slider-dots {
  margin-right: 65px;
}

.module-explore-operations .module_slider-arrows {
  display: flex;
}

.module-explore-operations .module_slider-arrows-dots--mobile .module_slider-dots {
  margin-right: 25px;
}

.module-careers-block .module_title {
  color: #263147;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 37.8px;
  line-height: 46.12px;
}

.module-careers-block_item--content {
  padding-top: 75px;
}

.module-careers-widget_item:nth-child(n+3) {
  padding-top: 90px;
}

.module-careers-widget_item-title {
  margin-bottom: 25px;
  font-size: 25.2px;
  font-weight: 600;
  line-height: 30.2px;
}

@media only screen and (max-width: 1280px) {
  .module-explore-operations_item {
      height: auto;
  }

  .module-explore-operations_item.featured {
      height: 500px;
  }
}

@media only screen and (max-width: 1023px) {
  .module-slider_title {
      font-size: 70px;
      font-size: 7rem;
  }

  .module-explore-operations .module_title {
      padding-right: 0;
  }
}

@media only screen and (min-height: 600px) and (max-height: 800px) {
  .module-slider .module-slider_item {
      min-height: calc(100vh - 200px);
  }

  .module-slider_item-inner {
      padding-top: 50px;
  }

  .module-slider_title {
      font-size: 60px;
      font-size: 6rem;
  }

  .module-slider_description {
      font-size: 18px;
      font-size: 1.8rem;
      margin-top: 10px;
  }

  .module-slider .slick-dots {
      bottom: 90px;
  }

  .module-slider .module-slider_arrows {
      bottom: 20px;
  }
}

@media only screen and (min-width: 1950px) {
  .module-explore-operations_item-inner img {
      width: 100%;
  }
}

@media only screen and (max-width: 1600px) {
  .module-home-blocks_box--stock .module-home-blocks_box--inner:after {
      right: 6%;
  }
}

@media only screen and (max-width: 1500px) {
  .module-home-blocks_box--inner {
      padding-left: 12%;
      padding-right: 12%;
  }

  .module-stock-home_stock-price {
      font-size: 35px;
      font-size: 3.5rem;
      letter-spacing: 1.75px;
  }

  .module-careers-slider_description {
      padding-right: 0;
  }

  .module-careers-slider_item-content>.button {
      max-width: none;
  }
}

@media only screen and (max-width: 1200px) {
  .module-home-blocks_item--careers {
      margin-top: 0;
  }

  .module-careers-slider_item-inner {
      padding-top: 0;
      padding-bottom: 0;
      display: flex;
      min-height: 400px;
  }

  .module-careers-slider_item-content {
      min-height: auto;
      height: auto;
  }
}

@media only screen and (max-width: 1023px) {
  .module-purpose.module-purpose {
      padding-top: 30px;
  }

  .module-purpose_item {
      width: 100%;
  }

  .module-explore-operations .module_container--widget {
      padding-bottom: 20px;
  }

  .module-explore-operations .module_container--content.desktop-only, .module-explore-operations .module_slider-arrows-dots--desktop {
      display: none;
  }

  .module-explore-operations .module_container--content.mobile-only {
      display: block;
  }

  .module-explore-operations .module_slider-arrows-dots--mobile {
      display: flex;
      justify-content: flex-end;
      padding-top: 25px;
      padding-right: 30px;
  }

  .module-explore-operations_item {
      height: 500px;
      width: unset;
  }

  .module-explore-operations_item-inner:before {
      display: none;
  }

  .module-explore-operations_link {
      padding: 40px 30px;
      position: static;
  }

  .module-explore-operations_description {
      font-size: 20px;
      font-size: 2rem;
  }

  .module-explore-operations_title {
      font-size: 16px;
      font-size: 1.6rem;
  }

  .module-careers-block_item {
      width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .module-careers-widget_item:nth-child(n+2) {
      padding-top: 35px;
  }
}

@media only screen and (max-width: 767px) {
  .module-slider .module-slider_item {
      min-height: 400px;
  }

  .PageHome .module-slider .module-slider_item {
      min-height: 625px;
  }

  .module-slider_item-inner {
      padding-top: 70px;
      padding-bottom: 70px;
  }

  .module-slider_item-content {
      max-width: none;
  }

  .module-slider_title {
      font-size: 35px;
      font-size: 3.5rem;
  }

  .module-slider_description {
      font-size: 16px;
      font-size: 1.6rem;
  }

  .module-slider .slick-dots {
      bottom: 60px;
  }

  .module-slider .slick-dots button {
      width: 30px;
  }

  .module-slider .module-slider_arrows {
      bottom: 0;
      text-align: right;
  }

  .module-home-blocks.module-home-blocks {
      padding-bottom: 30px;
  }

  .module-home-blocks_box.grid_col {
      flex-basis: 100%;
      max-width: 100%;
  }

  .module-home-blocks_box {
      min-height: 110px;
  }

  .module-home-blocks_box--stock {
      order: -1;
  }

  .module-home-blocks_box--inner {
      background-size: cover;
      padding-left: 30px;
      padding-right: 30px;
      justify-content: flex-start;
  }

  .module-home-blocks_box--inner:hover {
      background-size: cover;
  }

  .module-home-blocks_box-link:after, .module-home-blocks_box--stock .module-home-blocks_box--inner:after {
      right: 30px;
  }

  .module-careers-slider_item-inner {
      flex-direction: column;
      padding-left: 0;
      min-height: auto;
  }

  .module-careers-slider_item-image {
      position: static;
      width: 100%;
      height: 350px;
      box-shadow: -5px -10px 15px 0 rgba(0, 0, 0, 0.16);
      background-position-y: 12%;
  }

  .module-careers-slider_item-content {
      padding: 50px 30px 35px;
      font-size: 16px;
      font-size: 1.6rem;
  }

  .module-careers-slider .module_slider-pagination-arrows {
      top: 302px;
      left: 50%;
      -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
      transform: translate(-50%, 0);
      padding-left: 48px;
      padding-right: 48px;
  }

  .module-purpose {
      font-size: 18px;
      font-size: 1.8rem;
  }

  .module-csr-projects_item-inner>.grid_col {
      flex-basis: 100%;
      max-width: 100%;
  }

  .module-csr-projects_thumbnail {
      height: 240px;
  }

  .module-csr-projects_item[data-slick-index="0"] .module-csr-projects_thumbnail {
      background-position-y: 29%;
  }

  .module-csr-projects_item-content.module-csr-projects_item-content {
      min-height: 450px;
      padding: 70px 30px;
  }

  /* .module-csr-projects .module_slider-pagination-arrows {
    top: 192px;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
} */
  .module-latest-info.module-latest-info {
      padding-top: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .layout--home .module-explore-operations {
      padding-top: 0;
      padding-bottom: 0;
  }

  .module-explore-operations .module_slider-arrows-dots--mobile {
      padding-right: 15px;
  }

  .module-explore-operations .module_slider-arrows-dots--mobile .module_slider-dots {
      margin-right: 15px;
  }

  .module-explore-operations .slick-dots li+li {
      margin-left: 4px;
  }

  .module-explore-operations .slick-dots button {
      width: 20px;
  }
}

/*=======================END HOME=====================*/
/*=================WHO IS FIRST QUANTUM===============*/
.module-key-facts.module-key-facts {
  position: absolute;
  right: 30px;
  bottom: 60px;
}

.module-key-facts .module_title {
  font-size: 24px;
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.module-key-facts ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

.module-key-facts li {
  position: relative;
  padding-left: 12px;
}

.module-key-facts li:before {
  content: "-";
  position: absolute;
  top: 0;
  left: 0;
}

.module-subpages-blocks.module-subpages-blocks {
  padding-top: 130px;
  padding-bottom: 130px;
}

@media only screen and (max-width: 1023px) {
  .module-key-facts.module-key-facts {
      position: static;
      text-align: right;
      padding-top: 20px;
  }

  .module-key-facts .module_container--outer {
      display: inline-block;
      text-align: left;
  }

  .module-subpages-blocks.module-subpages-blocks {
      padding-top: 60px;
      padding-bottom: 60px;
  }
}

/*===============END WHO IS FIRST QUANTUM=============*/
/*=====================AT A GRANCE====================*/
.module-history_years.slick-slider {
  padding: 0 90px;
}

.module-history_years .slick-list:before {
  content: "";
  background-color: #D9D9D6;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 7%;
  right: 7%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.module-history_years .slick-track {
  display: flex;
}

.module-history_years .module-history_years-item.module-history_years-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  height: 190px;
  padding: 25px 0;
}

.module-history_years-item>* {
  position: relative;
  z-index: 1;
}

.module-history_year-icon-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
}

.module-history_year-icon-container:before {
  content: "";
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.5s ease-in-out;
}

.module-history_year-icon-container:after {
  content: "";
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.5s ease-in-out;
}

.module-history_year-icon-container:hover:before, .module-history_years-item.slick-current .module-history_year-icon-container:before {
  animation: smallCircle 1.5s infinite;
}

.module-history_year-icon-container:hover:after, .module-history_years-item.slick-current .module-history_year-icon-container:after {
  animation: bigCircle 1.5s infinite;
}

.module-history_year-icon {
  position: relative;
  display: flex;
}

.module-history_year-icon i {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #263147;
  border-radius: 100%;
  width: 15px;
  height: 15px;
  font-size: 9px;
  font-weight: bold;
  text-align: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
  transition: 0.5s ease-in-out;
}

.module-history_year-icon i:before {
  font-weight: bold;
  position: relative;
  left: 0.4px;
}

.module-history_year-icon:after {
  content: "";
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.module-history_years-item.slick-current .module-history_year-icon i {
  background-color: #DBB216;
  color: #fff;
}

.module-history_year-icon:hover:after, .module-history_years-item.slick-current .module-history_year-icon:after {
  animation: scale 1.5s infinite;
}

@keyframes scale {
  0% {
      transition: 0.5s ease-in-out;
      -webkit-transform: scale(0);
      -ms-transform: scale(0);
      transform: scale(0);
  }

  100% {
      transition: 0.5s ease-in-out;
      -webkit-transform: scale(1.5);
      -ms-transform: scale(1.5);
      transform: scale(1.5);
  }
}

@keyframes smallCircle {
  0% {
      transition: 0.5s ease-in-out;
      border-color: rgba(151, 151, 151, 0);
      -webkit-transform: scale(0);
      -ms-transform: scale(0);
      transform: scale(0);
  }

  100% {
      transition: 0.5s ease-in-out;
      border-color: rgba(151, 151, 151, 0.15);
      -webkit-transform: scale(1.5);
      -ms-transform: scale(1.5);
      transform: scale(1.5);
  }
}

@keyframes bigCircle {
  0% {
      transition: 0.5s ease-in-out;
      border-color: rgba(151, 151, 151, 0);
      -webkit-transform: scale(0);
      -ms-transform: scale(0);
      transform: scale(0);
  }

  100% {
      transition: 0.5s ease-in-out;
      border-color: rgba(151, 151, 151, 0.15);
      -webkit-transform: scale(2);
      -ms-transform: scale(2);
      transform: scale(2);
  }
}

.module-history_years-item.js--prev .module-history_year-icon i, .module-history_years-item.js--next .module-history_year-icon i {
  width: 36px;
  height: 36px;
}

.module-history_years-item.slick-current .module-history_year-icon i {
  width: 56px;
  height: 56px;
  box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.5);
}

.module-history_year-text {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  position: absolute;
  bottom: 50px;
  display: none;
}

.module-history_years-item.js--prev .module-history_year-text, .module-history_years-item.js--next .module-history_year-text, .module-history_years-item.slick-current .module-history_year-text {
  display: block;
}

.module-history_years-item.slick-current .module-history_year-text {
  font-size: 24px;
  font-size: 2.4rem;
  bottom: auto;
  top: 0;
}

.module-history_years-item span {
  cursor: pointer;
}

.module-history_years .slick-arrow {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
}

.module-history .module_container--content {
  margin-top: 50px;
  padding: 0;
}

.module-history .module_item {
  border-top: 1px solid #4A5270;
  border-bottom: none;
  padding-top: 45px;
  padding-bottom: 45px;
}

.module-history .module_item-inner {
  display: flex;
}

.module-history .module_thumbnail {
  flex: 0 0 45%;
  max-width: 45%;
}

.module-history .module_item-content {
  flex: 0 0 55%;
  max-width: 55%;
  padding-left: 6.5%;
}

.module-history .module_item-year {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
  padding-top: 25px;
}

.module-history .module_item-title span {
  display: block;
}

.module-history .module_buttons {
  border-top: 1px solid #4A5270;
}

.module-history .module_buttons-item {
  max-width: 395px;
  margin-left: auto;
  padding-top: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #D9D9D6;
}

.module-history .module_buttons .button--more {
  font-size: 16pc;
  font-size: 16px;
  font-weight: 500;
  border: none;
}

@media only screen and (max-width: 1023px) {
  .module-history_years.slick-slider {
      padding: 0 50px;
  }
}

@media only screen and (max-width: 767px) {
  .module-history_years.slick-slider {
      padding: 0;
  }

  .module-history_years .slick-list:before {
      left: 10%;
      right: 10%;
  }

  .module-history_years .module-history_years-item.module-history_years-item {
      height: 155px;
  }

  .module-history_year-text {
      font-size: 14px;
      font-size: 1.4rem;
      bottom: 40px;
  }

  .module-history_years-item.slick-current .module-history_year-text {
      font-size: 20px;
      font-size: 2rem;
  }

  .module-history_years-item.slick-current .module-history_year-icon i {
      width: 40px;
      height: 40px;
  }

  .module-history_years-item.js--prev .module-history_year-icon i, .module-history_years-item.js--next .module-history_year-icon i {
      width: 25px;
      height: 25px;
  }

  .module-history .module_item-inner {
      flex-direction: column;
  }

  .module-history .module_thumbnail {
      flex: 0 0 100%;
      max-width: 100%;
  }

  .module-history .module_item-content {
      flex: 0 0 100%;
      max-width: 100%;
      padding-left: 0;
  }
}

/*===================END AT A GRANCE==================*/
/*===================OUR OPERATIONS===================*/
.page-our-operations .pane--banner {
  display: none;
}

.page-our-operations .pane--content {
  position: relative;
  overflow: hidden;
}

.module-operations.module-operations {
  padding-top: 130px;
  padding-bottom: 170px;
  position: relative;
}

.module-operations_intro {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: 5;
  display: flex;
  align-items: center;
}

.module-operations_intro .container {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
}

.module-operations_intro-content {
  max-width: 610px;
  font-size: 20px;
  font-size: 2rem;
  color: #fff;
}

.module-operations_intro h1 {
  font-size: 48px;
  font-size: 4.8rem;
  margin-top: 0;
  margin-bottom: 20px;
  color: #fff;
}

.module-operations_intro-close-button {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url('../design/svg/close.svg');
  background-repeat: no-repeat;
  background-size: 100%;
  width: 18px;
  height: 17px;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #fff;
  position: absolute;
  top: 0;
  right: 30px;
}

.module-operations_intro .button {
  margin-top: 15px;
}

.module-operations_map {
  position: relative;
  max-width: 1410px;
  margin-left: auto;
  margin-right: auto;
}

.module-operations_map img {
  display: block;
  width: 100%;
}

.module-operations_map-pin {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
  position: absolute;
  top: 0;
  left: 0;
}

.module-operations_map-pin--cobre {
  top: 55.7%;
  left: 23%;
}

.module-operations_map-pin--kansanshi {
  top: 68.5%;
  left: 52.9%;
}

.module-operations_map-pin--sentinel {
  top: 69%;
  left: 50.8%;
}

.module-operations_map-pin--cobre-las-cruces {
  top: 38%;
  left: 44%;
}

.module-operations_map-pin--cayeli {
  top: 37%;
  left: 56%;
}

.module-operations_map-pin--guelb-moghrein {
  top: 50%;
  left: 42.2%;
}

.module-operations_map-pin--ravensthorpe {
  top: 79.5%;
  left: 78.7%;
}

.module-operations_map-pin--pyhasalmi {
  top: 19.7%;
  left: 53%;
}

.module-operations_map-pin--taca-taca {
  top: 74%;
  left: 27.5%;
}

.module-operations_map-pin--la-granja {
  top: 65%;
  left: 24%;
}

.module-operations_map-pin--haquira {
  top: 67.5%;
  left: 25.5%;
}

.module-operations_map-pin--enterprise {
  top: 65.2%;
  left: 50%;
}

.module-operations_map-pin:before {
  content: "";
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.5s ease-in-out;
}

.module-operations_map-pin:after {
  content: "";
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.5s ease-in-out;
}

.module-operations_map-pin:hover:before, .module-operations_map-pin.js--selected:before {
  animation: smallCircle 1.5s infinite;
}

.module-operations_map-pin:hover:after, .module-operations_map-pin.js--selected:after {
  animation: bigCircle 1.5s infinite;
}

.module-operations_map-pin i {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #263147;
  border-radius: 100%;
  width: 24px;
  height: 24px;
  font-size: 10px;
  font-weight: bold;
  text-align: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
  transition: 0.5s ease-in-out;
}

.module-operations_map-pin i:before {
  font-weight: bold;
}

.module-operations_map-pin.js--selected i {
  width: 56px;
  height: 56px;
}

.module-operations_map-pin--operating i {
  background-color: #DBB216;
  color: #fff;
}

.module-operations_map-pin-icon {
  position: relative;
  display: flex;
}

.module-operations_map-pin-icon:after {
  content: "";
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.module-operations_map-pin-icon:hover:after, .module-operations_map-pin.js--selected .module-operations_map-pin-icon:after {
  animation: scale 1.5s infinite;
}

.module-operations_legend {
  position: absolute;
  bottom: 75px;
  left: 4.5%;
}

.module-operations_legend-list-item+.module-operations_legend-list-item {
  margin-top: 15px;
}

.module-operations_legend-list-item-title {
  position: relative;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
  padding-left: 50px;
  display: block;
  color: #fff;
}

.module-operations_legend-list-item-title:before {
  content: "";
  background-color: #fff;
  border-radius: 100%;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.module-operations_legend-list-item--operating .module-operations_legend-list-item-title:before {
  background-color: #DBB216;
}

.module-operations_legend-list-item-content li+li {
  border-top: 1px solid #D9D9D6;
}

.module-operations_legend-list-item-content a {
  font-weight: 500;
  color: #263147;
  display: block;
  padding: 17px 30px;
}

.module-operation.module-operation {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 50px;
  width: 100%;
  max-width: 1100px;
  overflow: hidden;
  z-index: 2;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  transition: 0.5s ease-in-out;
}

.module-operation[aria-hidden="false"] {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.module-operation.js--hidden {
  display: block !important;
}

.module-operation .module_container--outer {
  max-width: none;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #fff;
  padding-bottom: 88px;
}

.module-operation .module-operations_close-wrap {
  position: absolute;
  top: calc(50% - 60px);
  margin-left: -84px;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.module-operation .button--close {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.button--close:after {
  content: "\e90c";
}

.module-operation_back {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 700;
  background-color: #263147;
  color: #fff;
  display: block;
  width: 100%;
  position: absolute;
  padding: 17px 0 17px 70px;
  display: none;
  z-index: 111;
}

.module-operation_back:before {
  font-family: 'q4-icons';
  content: "\e90f";
  font-size: 12px;
  background-color: #DBB216;
  color: #fff;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 30px;
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 24px;
  transition: 0.3s ease-in-out;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

a.module-operation_back:hover, .dark a.module-operation_back:hover {
  color: #fff;
}

.module-operation-project_header {
  display: flex;
  background-color: #000;
  color: #fff;
}

.module-operation-project_header-text {
  width: 40%;
  padding-top: 60px;
  padding-bottom: 30px;
  padding-left: 8%;
  padding-right: 30px;
}

.module-operation-project_header-text>*:first-child {
  margin-top: 0;
}

.module-operation-project_header-text>*:last-child {
  margin-top: 0;
}

.module-operation-project_header-image {
  background-color: #D8D8D8;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  min-height: 252px;
  width: 60%;
}

.page-cobre-panama .module-operation-project_header-image, .module-operation--cobre .module-operation-project_header-image {
  background-image: url(../design/banner/3.0-BANNER-COBRE-PANAMA.jpg);
}

.page-kansanshi .module-operation-project_header-image, .module-operation--kansanshi .module-operation-project_header-image {
  background-image: url(../design/banner/3.0-BANNER-KANSANSHI-02.jpg);
}

.page-sentinel .module-operation-project_header-image, .module-operation--sentinel .module-operation-project_header-image {
  background-image: url(../design/banner/3.0-BANNER-SENTINEL.jpg);
}

.page-cobre-las-cruces .module-operation-project_header-image, .module-operation--cobre-las-cruces .module-operation-project_header-image {
  background-image: url(../design/banner/3.0-BANNER-COBRE-LAS-CRUCES.jpg);
}

.page-cayeli .module-operation-project_header-image, .module-operation--cayeli .module-operation-project_header-image {
  background-image: url(../design/banner/3.0-BANNER-CAYELI.jpg);
}

.page-guelb-moghrein .module-operation-project_header-image, .module-operation--guelb-moghrein .module-operation-project_header-image {
  background-image: url(../design/banner/3.0-BANNER-GUELB-MOGHREIN-02.jpg);
}

.page-ravensthorpe .module-operation-project_header-image, .module-operation--ravensthorpe .module-operation-project_header-image {
  background-image: url(../design/banner/3.0-BANNER-RAVENSTHORPE.jpg);
}

.page-pyhasalmi .module-operation-project_header-image, .module-operation--pyhasalmi .module-operation-project_header-image {
  background-image: url(../design/banner/3.0-BANNER-PYHASALMI.jpg);
}

.page-taca-taca .module-operation-project_header-image, .module-operation--taca-taca .module-operation-project_header-image {
  background-image: url(../design/banner/3.0-BANNER-TACA-TACA.jpg);
}

.module-operation--la-granja .module-operation-project_header-image {
  background-image: url(../images/our-operations/la-granja/la-granja-1.jpg);
}

.page-haquira .module-operation-project_header-image, .module-operation--haquira .module-operation-project_header-image {
  background-image: url(../design/banner/3.0-BANNER-HAQUIRA.jpg);
}

.module-operation-project_content {
  margin-top: 60px;
  padding: 0 10%;
}

.module-operation-project .module_title {
  font-size: 36px;
  font-size: 3.6rem;
  font-weight: 600;
  margin-bottom: 0;
}

/* https://q4websystems.zendesk.com/agent/tickets/300252 */
.nav--operations {
  /*     padding: 60px 10% 100px; */
  padding: 0px 10% 160px;
  position: relative;
}

.nav--operations .nav_tabs {
  border-top: 1px solid #D9D9D6;
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
}

.nav--operations .nav_tabs.js--no-prev {
  justify-content: flex-end;
}

.nav--operations a {
  position: relative;
  display: flex;
  flex-direction: column;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
}

.nav--operations .nav_tabs a span {
  display: block;
  color: #363636;
  font-weight: 300;
  margin-bottom: 5px;
}

.nav--operations a: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;
  font-size: 12px;
  line-height: 48px;
  background-color: #263147;
  color: #fff;
  width: 48px;
  height: 48px;
  display: inline-block;
  text-align: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.nav--operations .nav_tab-prev {
  padding-left: 60px;
}

.nav--operations .nav_tab-prev:before {
  content: "\edc6";
  background-color: #4A5270;
  left: 0;
}

.nav--operations .nav_tab-next {
  padding-right: 60px;
  text-align: right;
}

.nav--operations .nav_tab-next:before {
  content: "\edbe";
  right: 0;
}

.nav--operations .nav_items {
  position: absolute;
  /*     top: 110px; */
  top: 45px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.nav--operations .nav_items span {
  font-size: 22px;
  font-size: 2.2rem;
  color: #131A2E;
  opacity: 0.6;
  font-weight: 700;
  position: relative;
}

.nav--operations .nav_current-item.nav_current-item {
  opacity: 1;
  top: -9px;
}

.nav--operations .nav_current-item:after {
  content: "/";
  margin-left: 5px;
  margin-right: 3px;
  position: relative;
  bottom: -5px;
}

@media only screen and (max-width: 1023px) {
  .module-operation-project_header-text {
      padding-left: 30px;
  }

  .module-operation-project_content {
      padding: 0 30px;
  }

  .module-operation-project_header {
      flex-direction: column-reverse;
  }

  .module-operation-project_header-text, .module-operation-project_header-image {
      width: 100%;
  }

  .module-operation-project_header-text {
      padding-top: 30px;
  }

  .nav--operations {
      padding-left: 30px;
      padding-right: 30px;
  }
}

@media only screen and (min-width: 851px) {
  .module-operations_legend-list-item-title {
      pointer-events: none;
  }

  .module-operations_legend-list-item-content {
      display: none !important;
  }
}

@media only screen and (max-width: 850px) {
  .module-operations.module-operations {
      padding-top: 70px;
      padding-bottom: 0;
  }

  .module-operations_intro .container {
      padding-top: 20px;
      padding-bottom: 20px;
  }

  .module-operations_intro-content {
      font-size: 15px;
      font-size: 1.5rem;
  }

  .module-operations_intro h1 {
      font-size: 23px;
      font-size: 2.3rem;
  }

  .module-operations_intro .button {
      margin-top: 0;
  }

  .module-operations_intro-close-button {
      width: 15px;
      height: 14px;
  }

  .module-operations_map-pin i {
      width: 18px;
      height: 18px;
      font-size: 10px;
  }

  .module-operations_map-pin.js--selected i {
      width: 30px;
      height: 30px;
  }

  .module-operations_legend {
      position: static;
      margin-top: 50px;
      background-color: #f5f5f5;
  }

  .module-operations_legend-list-item+.module-operations_legend-list-item {
      margin-top: 0;
  }

  .module-operations_legend-list-item-title {
      font-size: 16px;
      font-size: 1.6rem;
      padding: 17px 30px;
      background-color: #fff;
      color: #000;
      cursor: pointer;
  }

  .js--active .module-operations_legend-list-item-title {
      background-color: #d9d9d7;
  }

  .module-operations_legend-list-item--operating .module-operations_legend-list-item-title {
      background-color: #dbb216;
      color: #fff;
  }

  .module-operations_legend-list-item--operating.js--active .module-operations_legend-list-item-title {
      background-color: #a58200;
  }

  .module-operations_legend-list-item-title:before {
      display: none;
  }

  .module-operations_legend-list-item-title:after {
      font-family: 'q4-icons';
      content: "\e90e";
      font-size: 12px;
      position: absolute;
      top: 50%;
      right: 30px;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  }

  .module-operations_legend-list-item.js--active .module-operations_legend-list-item-title:after {
      content: "\e911";
  }

  .module-operation.module-operation {
      padding-left: 0;
      max-width: none;
  }

  .module-operation-project {
      padding-top: 48px;
  }

  .module-operation .button--close {
      display: none;
  }

  .module-operation_back {
      display: block;
  }

  .nav--operations {
      padding-top: 10px;
      padding-bottom: 0;
  }

  .nav--operations a:before {
      position: static;
      -webkit-transform: none;
      -ms-transform: none;
      transform: none;
      margin-bottom: 10px;
  }

  .nav--operations .nav_tab-prev {
      padding-left: 0;
  }

  .nav--operations .nav_tab-next {
      padding-right: 0;
      align-items: flex-end;
  }

  .nav--operations .nav_items {
      top: 60px;
  }
}

/*=================END OUR OPERATIONS=================*/
/*====================CASE STUDIES====================*/
.module-case-studies .module_container--widget {
  overflow: hidden;
}

.module-case-studies .module_options {
  margin-bottom: 5px;
}

.module-case-studies .module_options-item {
  margin-top: 0;
}

.module-case-studies .module_options-item--locations {
  order: 3;
  /* padding-left: 80px; */
}

.module-case-studies .module_options-item--results {
  display: flex;
  align-items: center;
}

.module-case-studies .module_options-title {
  color: #263147;
  margin-bottom: 20px;
}

.module-case-studies .module_options-list-tags li {
  display: inline-block;
  vertical-align: top;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 15px;
  color: #263147;
  /* border: 1px solid #263147; */
  background-color: #fff;
  padding: 10px 20px 10px 35px;
  cursor: pointer;
  position: relative;
  border-radius: 18px;
}

.module-case-studies .module_options-list-tags li:not(:last-child) {
  margin-right: 13px;
}

.module-case-studies .module_options-list-tags li.js--selected, .module-case-studies .module_options-list-tags li:hover {
  background-color: #263147;
  color: #fff;
}

.module-case-studies .module_options-list-tags li:before {
  content: "";
  background-color: #263147;
  border-radius: 100%;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  left: 12px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.module-case-studies .module_options-list-tags li.js--selected:before, .module-case-studies .module_options-list-tags li:hover:before {
  /* background-color: #fff; */
  border: 3px solid #fff;
}

.module-case-studies .module_options-list-tags li[data-tag="community-development"] {
  border-color: #DBB216;
  color: #DBB216;
}

.module-case-studies .module_options-list-tags li[data-tag="community-development"].js--selected, .module-case-studies .module_options-list-tags li[data-tag="community-development"]:hover {
  background-color: #DBB216;
  color: #fff;
}

.module-case-studies .module_options-list-tags li[data-tag="community-development"]:before {
  background-color: #DBB216;
}

.module-case-studies .module_options-list-tags li[data-tag="community-development"].js--selected:before, .module-case-studies .module_options-list-tags li[data-tag="community-development"]:hover:before {
  /* background-color: #fff; */
  border: 3px solid #fff;
}

.module-case-studies .module_options-list-tags li[data-tag="local-communities"] {
  border-color: #DBB216;
  color: #DBB216;
}

.module-case-studies .module_options-list-tags li[data-tag="climate-change"] {
  border-color: #046204;
  color: #046204;
}

.module-case-studies .module_options-list-tags li[data-tag="climate-change"]:before {
  background-color: #046204;
}

.module-case-studies .module_options-list-tags li[data-tag="climate-change"].js--selected, .module-case-studies .module_options-list-tags li[data-tag="climate-change"]:hover {
  background-color: #046204;
  color: #fff;
}

.module-case-studies .module_options-list-tags li[data-tag="tax-transparency"] {
  border-color: #8F69E3;
  color: #8F69E3;
}

.module-case-studies .module_options-list-tags li[data-tag="tax-transparency"].js--selected, .module-case-studies .module_options-list-tags li[data-tag="tax-transparency"]:hover {
  background-color: #8F69E3;
  color: #fff;
}

.module-case-studies .module_options-list-tags li[data-tag="tax-transparency"]:before {
  background-color: #8F69E3;
}

.module-case-studies .module_options-list-tags li[data-tag="tax-transparency"].js--selected:before, .module-case-studies .module_options-list-tags li[data-tag="tax-transparency"]:hover:before {
  /* background-color: #fff; */
  border: 3px solid #fff;
}

.module-case-studies .module_options-list-tags li[data-tag="local-communities"].js--selected, .module-case-studies .module_options-list-tags li[data-tag="local-communities"]:hover {
  background-color: #DBB216;
  color: #fff;
}

.module-case-studies .module_options-list-tags li[data-tag="local-communities"]:before {
  background-color: #DBB216;
}

.module-case-studies .module_options-list-tags li[data-tag="local-communities"].js--selected:before, .module-case-studies .module_options-list-tags li[data-tag="local-communities"]:hover:before {
  /* background-color: #fff; */
  border: 3px solid #fff;
}

.module-case-studies .module_options-list-tags li[data-tag="biodiversity"] {
  border-color: #5D6821;
  color: #5D6821;
}

.module-case-studies .module_options-list-tags li[data-tag="biodiversity"].js--selected, .module-case-studies .module_options-list-tags li[data-tag="biodiversity"]:hover {
  background-color: #5D6821;
  color: #fff;
}

.module-case-studies .module_options-list-tags li[data-tag="biodiversity"]:before {
  background-color: #5D6821;
}

.module-case-studies .module_options-list-tags li[data-tag="biodiversity"].js--selected:before, .module-case-studies .module_options-list-tags li[data-tag="biodiversity"]:hover:before {
  /* background-color: #fff; */
  border: 3px solid #fff;
}

.module-case-studies .module_options-list-tags li[data-tag="indigenous"] {
  border-color: #E27865;
  color: #E27865;
}

.module-case-studies .module_options-list-tags li[data-tag="indigenous"].js--selected, .module-case-studies .module_options-list-tags li[data-tag="indigenous"]:hover {
  background-color: #E27865;
  color: #fff;
}

.module-case-studies .module_options-list-tags li[data-tag="indigenous"]:before {
  background-color: #E27865;
}

.module-case-studies .module_options-list-tags li[data-tag="indigenous"].js--selected:before, .module-case-studies .module_options-list-tags li[data-tag="indigenous"]:hover:before {
  /* background-color: #fff; */
  border: 3px solid #fff;
}

.module-case-studies .module_options-list-tags li[data-tag="water"] {
  border-color: #79B5A7;
  color: #79B5A7;
}

.module-case-studies .module_options-list-tags li[data-tag="water"].js--selected, .module-case-studies .module_options-list-tags li[data-tag="water"]:hover {
  background-color: #79B5A7;
  color: #fff;
}

.module-case-studies .module_options-list-tags li[data-tag="water"]:before {
  background-color: #79B5A7;
}

.module-case-studies .module_options-list-tags li[data-tag="water"].js--selected:before, .module-case-studies .module_options-list-tags li[data-tag="water"]:hover:before {
  /* background-color: #fff; */
  border: 3px solid #fff;
}

.module-case-studies .module_options-list-tags li[data-tag="safety"] {
  border-color: #53A63A;
  color: #53A63A;
}

.module-case-studies .module_options-list-tags li[data-tag="safety"].js--selected, .module-case-studies .module_options-list-tags li[data-tag="safety"]:hover {
  background-color: #53A63A;
  color: #fff;
}

.module-case-studies .module_options-list-tags li[data-tag="safety"]:before {
  background-color: #53A63A;
}

.module-case-studies .module_options-list-tags li[data-tag="safety"].js--selected:before, .module-case-studies .module_options-list-tags li[data-tag="safety"]:hover:before {
  /* background-color: #fff; */
  border: 3px solid #fff;
}

.module-case-studies .module_options-list-tags li[data-tag="waste"] {
  border-color: #0D5B90;
  color: #0D5B90;
}

.module-case-studies .module_options-list-tags li[data-tag="waste"].js--selected, .module-case-studies .module_options-list-tags li[data-tag="waste"]:hover {
  background-color: #0D5B90;
  color: #fff;
}

.module-case-studies .module_options-list-tags li[data-tag="waste"]:before {
  background-color: #0D5B90;
}

.module-case-studies .module_options-list-tags li[data-tag="waste"].js--selected:before, .module-case-studies .module_options-list-tags li[data-tag="waste"]:hover:before {
  /* background-color: #fff; */
  border: 3px solid #fff;
}

.module-case-studies .module_container--content {
  margin-bottom: 35px;
}

.module-case-studies .module_item {
  position: relative;
  padding-top: 30px;
  padding-bottom: 40px;
}

.module-case-studies .module_item>a:focus {
  text-decoration: none !important;
}

.module-case-studies .module_item.js--visible {
  display: block !important;
}

.module-case-studies .module_item-inner {
  height: 100%;
  position: relative;
  padding-bottom: 30px;
}

.module-case-studies .module_item-inner .module-item_thumbnail {
  overflow: hidden;
  background-color: #d8d8d8;
}

.module-case-studies .module_item-inner .module-item_thumbnail.no-thumb img {
  visibility: hidden;
  opacity: 0;
}

.module-case-studies .module_item-inner:hover .module-item_thumbnail img {
  transform: scale(1.1);
}

.module-case-studies .module_item-inner:hover .module_item-title {
  color: #DBB216;
}

.module-case-studies .module_item-inner:hover .button--more {
  background-color: transparent;
  color: #DBB216;
  border-color: transparent;
}

.module-case-studies .module_item-inner:hover .button--more:before {
  width: 100%;
}

.module-case-studies .module_item-inner:hover .button--more:after {
  background-color: #DBB216;
}

.module-case-studies .module-item_thumbnail img {
  display: block;
  width: 100%;
  transition: 0.3s ease-in-out;
}

.module-case-studies .module-item_location {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  background-color: #263147;
  color: #fff;
  padding: 9px 25px;
}

.module-case-studies .module-item_category {
  padding-top: 12px;
  text-align: right;
}

.module-case-studies .module-item_category-bullet {
  display: inline-block;
  width: 15px;
  height: 15px;
  background-color: #263147;
  border-radius: 100%;
}

.module-case-studies .module-item_category-bullet--no-thumb, .module-case-studies .module-item_category-bullet--community-page {
  display: none;
}

.module-case-studies .module-item_category-bullet+.module-item_category-bullet {
  margin-left: 5px;
}

.module-case-studies .module-item_category-bullet--community-development {
  background-color: #DBB216;
}

.module-case-studies .module-item_category-bullet--local-communities {
  background-color: #DBB216;
}

.module-case-studies .module-item_category-bullet--biodiversity {
  background-color: #5D6821;
}

.module-case-studies .module-item_category-bullet--indigenous {
  background-color: #E27865;
}

.module-case-studies .module-item_category-bullet--water {
  background-color: #79B5A7;
}

.module-case-studies .module-item_category-bullet--safety {
  background-color: #53A63A;
}

.module-case-studies .module-item_category-bullet--waste {
  background-color: #0D5B90;
}

.module-case-studies .module-item_category-bullet--tax-transparency {
  background-color: #8F69E3;
}

.module-case-studies .module_item-title {
  margin-top: 5px;
  color: #263147;
}

.module-case-studies .module-item_description {
  color: #5F5F5F;
}

.module-case-studies .module_more {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.module-case-studies .module_pager {
  margin-top: 20px;
}

.module-case-studies--related .module_container--outer {
  position: relative;
}

.module-case-studies--related .module_title {
  font-size: 24px;
  font-size: 2.4rem;
  color: #263147;
  text-align: center;
  padding: 0 200px;
  margin-bottom: 30px;
}

.module-case-studies--related .module_button-container {
  position: absolute;
  top: 0;
  right: 30px;
  min-width: 190px;
}

.module-case-studies--related .module_container--widget {
  border-top: 1px solid #D9D9D6;
  padding-top: 35px;
}

.module-case-studies--related .module_item {
  border-bottom: none;
}

.module-pullout-quote blockquote {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.35;
  font-weight: 600;
  color: #263147;
  border-bottom: 1px solid #DBB216;
  padding-bottom: 20px;
  display: block;
}

@media only screen and (max-width: 1279px) {
  .module-case-studies .module_options-item--locations {
      padding-left: 0;
  }
}

@media only screen and (max-width: 1023px) {
  .module-case-studies--related .module_title {
      padding: 0;
  }

  .module-case-studies--related .module_button-container {
      position: static;
      min-width: auto;
      margin-bottom: 20px;
      text-align: right;
  }

  .module-case-studies--related .module_button-container .button--more {
      width: auto;
      min-width: 190px;
  }
}

@media only screen and (max-width: 768px) {
  .module-case-studies .module_options-item--locations {
      order: initial;
  }

  .module-case-studies .module_options-label, .module-case-studies .module_options-select {
      margin-bottom: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .module-case-studies .module_item.grid_col {
      flex-basis: 100%;
      max-width: 100%;
  }
}

/*==================END CASE STUDIES==================*/
/*====================OUR PRODUCTS====================*/
.module-products_tab-link.button {
  min-width: auto;
  width: 100%;
  margin-bottom: 10px;
  border: 1px solid #D9D9D6;
  background: transparent;
  color: #263147;
}

.module-products_tab-link.button.js--selected {
  background: #DBB216;
  border-color: #DBB216;
  color: #fff;
}

.module-products_tab-link.button:hover {
  background: #DBB216;
  border-color: #DBB216;
  color: #fff;
}

.module-products_tab.js--hidden {
  display: block !important;
  max-height: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
}

.module-products_tab .module-stock-chart .highcharts-series.highcharts-series-1 path {
  stroke: #DBB216;
}

.module-products_tab-links {
  margin-left: -10px;
}

.module-products_tab-links .grid_col {
  padding-left: 10px;
}

/*==================END OUR PRODUCTS==================*/
/*======================CAREERS=======================*/
.page-careers .pane--banner {
  background-image: none;
  height: auto;
}

.page-careers .pane--banner:after {
  display: none;
}

.page-careers .pane--banner .pane_inner {
  display: block;
  max-width: none;
  padding: 0;
}

.page-careers .pane--banner .module {
  max-width: none;
}

/*====================END CAREERS=====================*/
/*=====================SEARCH JOBS====================*/
.module-jobs_item-inner {
  height: 100%;
  padding-bottom: 60px;
  position: relative;
}

.module-jobs_item--filters .module-jobs_item-inner {
  padding-top: 35px;
  padding-left: 60px;
}

.module-jobs_item--filters .module-jobs_item-inner>* {
  position: relative;
  z-index: 1;
}

.module-jobs_item--filters .module-jobs_item-inner:after {
  content: "";
  background-color: inherit;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100%;
  width: 10000%;
}

.module-jobs_search-input {
  position: relative;
}

.module-jobs_search-submit {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: 0;
  border: none;
  border-radius: 0;
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: 48px;
  background: #263147 url(../design/svg/search-white.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto;
  cursor: pointer;
}

.module-jobs_search-input .module_input {
  padding-right: 55px;
}

.module-jobs .module_item {
  padding-top: 40px;
  padding-bottom: 20px;
  position: relative;
}

.module-jobs .module_item.js--visible {
  display: block !important;
}

.module-jobs_headline {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.22;
  font-weight: 600;
  margin-bottom: 10px;
}

.module-jobs_headline-link {
  color: #263147;
}

.module-jobs_headline-link:hover {
  color: #DBB216;
}

.module-jobs_headline-link:after {
  font-family: 'q4-icons';
  content: "\e91c";
  font-size: 12px;
  background-color: #DBB216;
  color: #fff;
  display: inline-block;
  position: absolute;
  bottom: 20px;
  right: 0;
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 24px;
  transition: 0.3s ease-in-out;
}

.module-jobs_headline-link:hover:after {
  background-color: #DBB216;
}

.module-jobs_summary {
  line-height: 1.5;
  margin-bottom: 7px;
}

.module-jobs_id {
  color: #DBB216;
}

.module_item-bottom {
  display: flex;
  margin-top: 40px;
  font-size: 12px;
  font-size: 1.2rem;
  color: #263147;
}

.module_item-bottom>div:not(:last-child) {
  margin-right: 6%;
}

.module-jobs_label {
  font-weight: 500;
}

.module-jobs .module_pager {
  margin-top: 50px;
}

.module-jobs .module_pager.js--not-visible {
  display: none;
}

.module-jobs_details {
  max-width: 66.66667%;
}

.module-jobs_details .module_button-container {
  width: 100%;
  max-width: 395px;
}

.module-jobs_details ul {
  line-height: 1.5;
}

.module-jobs_details-title {
  margin-top: 20px;
  margin-bottom: 30px;
  color: #DBB216;
}

.module-jobs_details-header-top {
  background: linear-gradient(225deg, #263147 0%, #131A2E 100%);
  color: #fff;
  padding: 40px 25px;
  line-height: 1.2;
}

.module-jobs_details-header-top .grid_col {
  padding-top: 5px;
  padding-bottom: 5px;
}

.module-jobs_details-label {
  font-weight: 500;
}

.module-jobs_details-header-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #F5F5F5;
  padding-left: 25px;
}

.module-jobs_details .a2a_kit {
  line-height: 1 !important;
}

.module-jobs_details .a2a_kit a {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  color: #000;
  float: none;
  padding: 0;
}

.module-jobs_details .a2a_kit a+a {
  margin-left: 25px;
}

.module-jobs_details .a2a_kit a:hover {
  color: #DBB216;
}

.module-jobs_details .a2a_svg {
  display: none;
}

.module-jobs_details-header-bottom .button {
  background-color: #DBB216;
  border-color: #DBB216;
}

.module-jobs_details-header-bottom .button:hover {
  background-color: #DBB216;
  border-color: #DBB216;
  color: #fff;
}

.module-jobs_details-body {
  margin-top: 40px;
}

.module-jobs_details-body h3 {
  font-size: 1.5rem;
  font-weight: 400;
}

.module-jobs_details-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 45px;
}

@media only screen and (max-width: 1023px) {
  .module-jobs_item.grid_col {
      flex-basis: 100%;
      max-width: 100%;
  }

  .module-jobs_item--filters .module-jobs_item-inner {
      padding-left: 0;
  }

  .module-jobs_item--filters .module-jobs_item-inner:after {
      left: -30px;
  }

  .module-jobs_search-input {
      margin-top: 40px;
  }

  .module-jobs_details {
      max-width: none;
  }
}

@media only screen and (max-width: 767px) {
  .module-jobs .module_item-bottom {
      flex-direction: column;
  }

  .module-jobs .module_item-bottom>div+div {
      margin-top: 10px;
  }

  .module-jobs_details-header-top .grid_col {
      flex-basis: 100%;
      max-width: 100%;
  }

  .module-jobs_details .a2a_kit a+a {
      margin-left: 20px;
  }

  .module-jobs_details-header-bottom .button {
      min-width: auto;
  }

  .module-jobs_details-footer {
      flex-direction: column;
      align-items: flex-start;
  }

  .module-jobs_details-footer .module_button-container {
      margin-bottom: 20px;
  }
}

/*===================END SEARCH JOBS==================*/
/*================CURRENTLY RECRUITING================*/
.page-currently-recruiting .pane--banner {
  height: auto;
}

.page-currently-recruiting .pane--banner:after {
  display: none;
}

.page-currently-recruiting .pane--banner .pane_inner {
  display: block;
  max-width: none;
  padding: 0;
}

.page-currently-recruiting .pane--banner .module {
  max-width: none;
}

.module-slider-header .module_container--widget {
  position: relative;
}

.module-slider-header .slick-slider {
  padding: 0;
}

.module-slider-header .slick-track {
  display: flex;
}

.module-slider-header .module-slider-header_item {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: auto;
  min-height: 600px;
  position: relative;
}

.module-slider-header .module-slider-header_item:before {
  content: "";
  /* background-color: rgba(0, 0, 0, 0.35); */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.module-slider-header_item-inner {
  width: 100%;
  max-width: 1310px;
  margin-left: auto;
  margin-right: auto;
  padding: 90px 30px 180px;
  display: flex;
  height: 100%;
  position: relative;
}

.module-slider-header_item-content {
  max-width: 600px;
}

.module-slider-header_title {
  font-size: 48px;
  font-size: 4.8rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.module-slider-header_description {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.5;
  margin-top: 25px;
}

.module-slider-header .button {
  margin-top: 18px;
}

.module-slider-header .slick-dots {
  width: 100%;
  max-width: 1310px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  position: absolute;
  bottom: 170px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  text-align: left;
  z-index: 1;
}

.module-slider-header .slick-dots button {
  width: 65px;
  background-color: #fff;
}

.module-slider-header .module-slider-header_arrows {
  width: 100%;
  max-width: 1310px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  position: absolute;
  bottom: 95px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  text-align: left;
  z-index: 1;
}

.module-slider-header .slick-arrow {
  position: static;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

@media only screen and (max-width: 1279px) {
  .module-slider-header .module-slider-header_item[data-slick-index="1"], .module-slider-header .module-slider-header_item[data-slick-index="3"] {
      background-position: 60% center;
  }
}

@media only screen and (max-width: 1023px) {
  .module-slider-header .module-slider-header_item[data-slick-index="1"], .module-slider-header .module-slider-header_item[data-slick-index="3"] {
      background-position: 67% center;
  }
}

@media only screen and (max-width: 767px) {
  .module-slider-header .module-slider-header_item {
      min-height: 400px;
  }

  .module-slider-header_item-inner {
      padding-top: 70px;
      padding-bottom: 70px;
  }

  .module-slider-header_item-content {
      max-width: none;
  }

  .module-slider-header_title {
      font-size: 35px;
      font-size: 3.5rem;
  }

  .module-slider-header_description {
      font-size: 16px;
      font-size: 1.6rem;
  }

  .module-slider-header .slick-dots {
      bottom: 48px;
  }

  .module-slider-header .slick-dots button {
      width: 30px;
  }

  .module-slider-header .module-slider-header_arrows {
      bottom: 0;
      text-align: right;
  }
}

@media only screen and (max-width: 480px) {
  .module-slider-header .module-slider-header_item[data-slick-index="1"], .module-slider-header .module-slider-header_item[data-slick-index="3"] {
      background-position: 70% center;
  }

  .module-slider-header .module-slider-header_item[data-slick-index="4"] {
      background-position: 60% center;
  }
}

/*==============END CURRENTLY RECRUITING==============*/
/*=====================CONTACT US=====================*/
.page-contact .pane--banner {
  height: auto;
}

.page-contact .pane--banner:after {
  display: none;
}

.page-contact .pane--banner .pane_inner {
  display: block;
  max-width: none;
  padding: 0;
}

.page-contact .pane--banner .module {
  max-width: none;
}

.module-head-offices {
  background-color: #131A2E;
}

.module-head-offices .module_container--outer {
  width: 100%;
  max-width: 1310px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

.module-head-offices .module_container--inner {
  text-align: center;
  padding-top: 30px;
  padding-bottom: 80px;
  position: relative;
}

.module-head-offices_titles {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: left;
  z-index: 1;
}

.module-head-offices h1 {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.1;
  font-weight: 600;
}

.module-head-offices h2 {
  font-size: 48px;
  font-size: 4.8rem;
  line-height: 1.22;
  font-weight: 700;
}

.module-head-offices_map {
  position: relative;
  display: inline-block;
}

.module-head-offices_map img {
  display: block;
}

.module-head-offices_map-pin {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  position: absolute;
  padding-left: 30px;
}

.module-head-offices_map-pin--canada1 {
  top: 29.2%;
  left: -4.9%;
  padding-left: 0;
  padding-right: 30px;
}

.module-head-offices_map-pin--canada2 {
  top: 32.9%;
  left: 23.7%;
}

.module-head-offices_map-pin--uk {
  top: 27.5%;
  left: 45.4%;
}

.module-head-offices_map-pin--australia {
  top: 78.8%;
  left: 78%;
}

.module-head-offices_map-pin--southafrica {
  top: 74.3%;
  left: 53.3%;
}

.module-head-offices_map-pin:before {
  font-family: 'q4-icons';
  content: "\e917";
  font-size: 29px;
  line-height: 1;
  color: #DBB216;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.module-head-offices_map-pin--canada1:before {
  left: auto;
  right: 0;
}

.module-countries_item-inner {
  height: 100%;
  border-bottom: 1px solid #D9D9D6;
  padding-top: 30px;
  padding-bottom: 30px;
}

.module-countries_item-inner>*:first-child {
  margin-top: 0;
}

.module-countries_item-inner>*:last-child {
  margin-bottom: 0;
}

.module-countries p {
  word-wrap: break-word;
}

.module-countries a {
  font-weight: 500;
  word-wrap: break-word;
}

.module-offices {
  font-size: 14px;
  font-size: 1.4rem;
}

.module-offices .module_title {
  margin-bottom: 20px;
}

.module-offices_item-inner {
  height: 100%;
}

.module-offices_item-image {
  display: flex;
  align-items: center;
  min-height: 175px;
  height: 1px;
  margin-bottom: 40px;
}

.module-offices_item-row+.module-offices_item-row {
  border-top: 1px solid #D9D9D6;
}

.module-media-contacts_item {
  border-bottom: 1px solid #D9D9D6;
}

@media only screen and (max-width: 1279px) {
  .module-head-offices_map-pin--canada1 {
      left: 13.6%;
      right: auto;
      padding-left: 30px;
      padding-right: 0;
  }

  .module-head-offices_map-pin--canada1:before {
      left: 0;
      right: auto;
  }
}

@media only screen and (max-width: 1023px) {
  .module-head-offices h2 {
      font-size: 35px;
      font-size: 3.5rem;
  }

  .module-head-offices_map-pin {
      font-size: 14px;
      font-size: 1.4rem;
      padding-left: 20px;
  }

  .module-head-offices_map-pin--canada1 {
      padding-left: 20px;
  }

  .module-head-offices_map-pin:before {
      font-size: 22px;
  }
}

@media only screen and (max-width: 767px) {
  .module-head-offices_map-pin {
      font-size: 0;
      padding-left: 0;
  }

  .module-head-offices_map-pin--canada1 {
      top: 36%;
      left: 13.2%;
      padding-left: 0;
  }

  .module-head-offices_map-pin--canada2 {
      top: 40.3%;
      left: 21.8%;
  }

  .module-head-offices_map-pin--uk {
      top: 28.2%;
      left: 45%;
  }

  .module-head-offices_map-pin--australia {
      top: 78.5%;
      left: 80.2%;
  }

  .module-head-offices_map-pin--southafrica {
      top: 72.5%;
      left: 53.8%;
  }
}

/*===================END CONTACT US===================*/
/*=======================END INNER PAGES======================*/
#pageClass[class*="reserves-and-resource"] .table-wrapper table {
  min-width: 950px;
}

@media screen and (max-width: 1023px) {
  #pageClass[class*="reserves-and-resource"] .table-wrapper table {
      width: 950px;
  }

  #pageClass[class*="reserves-and-resource"] .table-wrapper table td, #pageClass[class*="reserves-and-resource"] .table-wrapper table th {
      font-size: 14px;
      padding: 12px 4px;
      word-break: break-word;
  }
}

.third-para-politica {
  padding-top: 0px !important;
}

/* Ticket 00009955 */
/*.video:before {
font-family: 'q4-icons';
content: "\ed85";
font-size: 20px;
width: 48px;
height: 48px;
line-height: 48px;
display: inline-block;
text-align: center;
color: #fff;
background-color: #DBB216;
position: absolute;
bottom: 0;
left: 0;
transition: 0.3s ease-in-out;
}
*/
.video:before {
  font-family: 'q4-icons';
  content: "\ed85";
  font-size: 42px;
  width: 96px;
  height: 96px;
  line-height: 48px;
  display: inline-block;
  text-align: center;
  color: #fff;
  background-color: #DBB216;
  position: absolute;
  /* bottom: 0; */
  left: 43%;
  transition: 0.3s ease-in-out;
  padding-top: 25px;
  top: 45%;
}

@media only screen and (max-width: 350px) and (min-width: 200px) {
  .video:before {
      font-size: 22px;
      width: 35px;
      height: 35px;
      left: 42%;
      padding-top: 6px;
      top: 35%;
      line-height: 20px;
  }
}

@media only screen and (max-width: 405px) and (min-width: 350px) {
  .video:before {
      font-size: 42px;
      width: 55px;
      height: 55px;
      left: 40%;
      padding-top: 12px;
      top: 32%;
      line-height: 35px;
  }
}

@media only screen and (max-width: 500px) and (min-width: 405px) {
  .video:before {
      font-size: 42px;
      width: 70px;
      height: 70px;
      left: 40%;
      padding-top: 12px;
      top: 30%;
      line-height: 48px;
  }
}

@media only screen and (max-width: 680px) and (min-width: 500px) {
  .video:before {
      font-size: 42px;
      width: 70px;
      height: 70px;
      left: 43%;
      padding-top: 12px;
      top: 35%;
      line-height: 48px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 680px) {
  .video:before {
      font-size: 42px;
      width: 70px;
      height: 70px;
      left: 45%;
      padding-top: 12px;
      top: 35%;
      line-height: 48px;
  }
}

/* @media (min-width: 768px) {
.video:before {
    font-size: 42px;
    width: 70px;
    height: 70px;
    left: 40%;
    padding-top: 12px;
    top: 35%;
    line-height: 48px;
}
} */
/* End Ticket 00009955*/
.PageEmailAlerts button.button.module-subscribe_submit-button.module-subscribe_submit-button--fancy {
  display: none;
}

.page-case-study-zambia--052021 .pane--banner:after {
  background-image: url(../images/2021/2H1A9268.jpg);
}

.page-case-study-Australia--052022 .pane--banner:after {
  background-image: url(../images/2023/03/img_0680-29.jpg);
}

/* 00218330 */
button.q4-icon_hamburger:before {
  font-family: 'q4-icons' !important;
  content: "\ec71";
}

/* 00218330 */
/* 00360725 */
@font-face {
  font-family: 'q4-icons-first-quantum';
  src: url('../design/q4-icons-first-quantum.woff2') format('woff2'), url('../design/q4-icons-first-quantum.ttf') format('truetype'), url('../design/q4-icons-first-quantum.woff') format('woff'), url('../design/q4-icons-first-quantum.svg') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

.module_q4-icon-links .module_link[href$=".pdf"]:before {
  font-family: 'q4-icons-first-quantum' !important;
  content: "\e918";
}

/* 00360725 end */
.page--financial-policy .list li:not(:first-child) {
  margin-top: 10px;
}

.page--financial-policy .list--ordered>li::marker {
  font-weight: 700;
}

/* EN/SP ESG Updates & New Pages + HomePage */
.module-home-blocks .slick-list {
  overflow: visible !important;
}

.module-csr-projects .module_slider-pagination {
  display: none;
}

.module-csr-projects_item_title {
  color: #263147;
  font-weight: 700;
}

.module-csr-projects_more .button {
  font-weight: 400;
}

.module-careers-widget_item-description {
  font-weight: 400;
  font-size: 17px;
  line-height: 1.3;
}

.module-careers-block .button {
  color: #263147;
  font-weight: 400;
}

/* CASE STUDIES FILTER PAGE */
.case-studies_filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.case-studies_filters .module_options-item--locations {
  height: 36px;
}

.case-studies_filters .filter_types .filter_option {
  display: inline-block;
  color: #a2a2a2;
  font-weight: 400;
  cursor: pointer;
}

.case-studies_filters .filter_types .filter_option.js--selected {
  color: #263147;
  font-weight: 600;
}

.case-studies_filters .filter_types .filter_option:not(:last-child) {
  margin-right: 48px;
}

.case-studies_filters .select2-container .select2-search--inline .select2-search__field {
  font-size: 14px !important;
  margin-top: 8px !important;
  padding: 0 0 0 18px !important;
}

.case-studies_filters .select2-container--default .select2-selection--multiple:before {
  width: 36px !important;
  background-size: cover !important;
}

.case-studies_filters .select2-container--default .select2-selection--multiple {
  padding: 0 !important;
  padding-right: 55px !important;
  min-width: 260px !important;
  min-height: 36px !important;
}

.case-studies_filters .select2-container--default .select2-selection--multiple .select2-selection__choice {
  margin-top: 3px;
  margin-left: 3px;
  padding: 6px 5px !important;
}

.case-studies_filters .filter_option .q4-icon_arrow-right::before {
  position: absolute;
  content: '';
  background: url('../design/svg/arrow_right.svg');
  background-repeat: no-repeat;
  width: 10px;
  height: 6px;
  margin: 5px 0 5px 10px;
  transform: rotateZ(-90deg);
}

.case-studies_filters .filter_option.js--selected .q4-icon_arrow-right::before {
  background: url('../design/svg/arrow.svg');
  transform: rotateZ(0);
}

@media all and (max-width: 670px) {
  .case-studies_filters {
      flex-direction: column-reverse;
      align-items: flex-start;
  }

  .case-studies_filters .module_options-item--locations {
      margin-bottom: 25px;
  }
}

.module_options-list-tags .group-tags {
  display: none;
  margin-bottom: 10px;
}

.module_options-list-tags .group-tags.js--selected {
  display: block;
}

.module_options-list-tags .show-all-tags, .show-all-tags-btn {
  display: inline-flex;
}

.module_options-list-tags .show-all-tags {
  display: none;
}

.module_options-list-tags .show-all-tags-btn {
  font-size: 14px;
  font-weight: 400;
  padding: 10px 20px;
  cursor: pointer;
}

/* ESG Analyst Centre PAGE */
.analyst-centre-html .content-left {
  max-width: 830px;
}

.analyst-centre-tiles .button--more::after {
  /* font-family: 'q4-icons-first-quantum' !important; */
}

.reporting--title {
  position: relative;
  color: #DBB216;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: -.3px;
  cursor: pointer;
  padding-right: 40px;
  margin-bottom: 20px;
}

.reporting--title::after {
  font-family: 'q4-icons';
  content: '\edc2';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: .3s ease-in-out;
}

.reporting--title.js--selected::after {
  transform: translateY(-50%) rotateZ(-180deg);
}

.reporting--container {
  display: none;
  margin-bottom: 35px;
}

.module--reporting {
  border-bottom: 1px solid #DBB216;
}

.module--reporting .reporting--title:not(.module--reporting:first-child .reporting--title) {
  margin-top: 40px;
}

/*  00482046  */
div[data-country="Panama"] .module-operation-project .module-operation-project_header, div[data-country="PanamÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡"] .module-operation-project .module-operation-project_header, div[data-country="Peru"] .module-operation-project .module-operation-project_header, div[data-country="PerÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âº"] .module-operation-project .module-operation-project_header, div[data-country="Argentina"] .module-operation-project .module-operation-project_header {
  background-color: rgb(46, 217, 195);
}

div[data-country="Mauritania"] .module-operation-project .module-operation-project_header, div[data-country="Zambia"] .module-operation-project .module-operation-project_header {
  background-color: rgb(83, 166, 58);
}

div[data-country="Spain"] .module-operation-project .module-operation-project_header, div[data-country="EspaÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±a"] .module-operation-project .module-operation-project_header, div[data-country="Turkey"] .module-operation-project .module-operation-project_header, div[data-country="TurquÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â­a"] .module-operation-project .module-operation-project_header, div[data-country="Finland"] .module-operation-project .module-operation-project_header, div[data-country="Finlandia"] .module-operation-project .module-operation-project_header {
  background-color: rgb(33, 76, 61);
}

div[data-country="Australia"] .module-operation-project .module-operation-project_header {
  background-color: rgb(192, 185, 0);
}

div[data-country] .module-operation-project .module-operation-project_header-text p {
  font-size: 18px;
  font-weight: 600;
}

div[class*="page-case-study-zambia"] .pane--banner, div[class*="page-case-study-Australia"] .pane--banner {
  background-color: rgb(192, 185, 0)!important;
}

div[class*="page-case-study-zambia"] .pane--banner, div[class*="page-case-study-mauritania"] .pane--banner {
  background-color: rgb(83, 166, 58)!important;
}

div[class*="page-case-study-panama"] .pane--banner, div[class*="page-case-study-peru"] .pane--banner, div[class*="page-case-study-argentina"] .pane--banner {
  background-color: rgb(46, 217, 195);
}

div[class*="page-case-study-spain"] .pane--banner, div[class*="page-case-study-turkey"] .pane--banner, div[class*="page-case-study-finland"] .pane--banner {
  background-color: rgb(33, 76, 61);
}

div[class*="page-case-study-australia"] .pane--banner {
  background-color: rgb(192, 185, 0);
}

div[class*="page-case-study-zambia"] .pane--banner {
  background-color: #000;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  height: 350px;
  position: relative;
}

div[class*="page-case-study-zambia"] .pane--banner:after {
  content: "";
  display: block !important;
}

div[class*="page-case-study-zambia"] .pane--banner:before {
  display: none !important;
}

.page-case-study-zambia--052021 .pane--banner:after {
  background-image: url(../images/2021/2H1A9268.jpg) !important;
}

.page-case-study-Australia--052022 .pane--banner:after {
  background-image: url(../images/2023/03/img_0680-29.jpg) !important;
}

.js--section.page-case-study-zambia--052021 .pane--banner {
  background-image: none;
}

.page-case-study-zambia--052021 #maincontent .pane--left {
  display: none;
}

/* 00502063 */
.page-australia .australia-videos--container {
  margin-top: 40px;
}

.page-australia .accordion_section {
  margin-bottom: 40px;
}

.page-australia .video_caption {
  font-size: 1.4rem;
}

.page-australia table tbody, .page-australia table tr, .page-australia table td {
  border: solid black 1px;
}

.page-australia table td {
  padding: 5px;
}

.page-australia ul {
  margin-top: 0px;
}

.page-australia ul li {
  margin-bottom: 5px;
}

.page-australia .padding--no-bottom {
  padding-bottom: 0px;
}

.page-australia .video-section {
  margin-top: 50px;
}

@media only screen and (max-width: 768px) {
  .page-australia .module-item_video {
      padding-bottom: 35px;
  }

  .page-australia .video-section {
      margin-top: 0px;
  }
}

/* 00502063 ends */
@media only screen and (max-width: 1024px) {
  .PageCareersWorkandLifestyleAustralia .layout_content .container {
      display: flex;
      /*flex-direction: column-reverse;*/
      flex-direction: column;
  }

  .PageCareersWorkandLifestyleAustralia .layout_content .container .module-side-widget .module_title {
      display: none;
  }

  .PageCareersWorkandLifestyleAustralia .layout_content .container .module-side-widget .module_container--inner {
      display: block;
  }

  .PageCareersWorkandLifestyleAustralia .layout_content .container .module-side-widget.module-side-widget {
      padding-top: 0;
  }

  .PageCareersWorkandLifestylePanama .layout_content .container {
      display: flex;
      /*flex-direction: column-reverse;*/
      flex-direction: column;
  }

  .PageCareersWorkandLifestylePanama .layout_content .container .module-side-widget .module_title {
      display: none;
  }

  .PageCareersWorkandLifestylePanama .layout_content .container .module-side-widget .module_container--inner {
      display: block;
  }

  .PageCareersWorkandLifestylePanama .layout_content .container .module-side-widget.module-side-widget {
      padding-top: 0;
  }

  .PageCareersWorkandLifestyleZambia .layout_content .container {
      display: flex;
      /*flex-direction: column-reverse;*/
      flex-direction: column;
  }

  .PageCareersWorkandLifestyleZambia .layout_content .container .module-side-widget .module_title {
      display: none;
  }

  .PageCareersWorkandLifestyleZambia .layout_content .container .module-side-widget .module_container--inner {
      display: block;
  }

  .PageCareersWorkandLifestyleZambia .layout_content .container .module-side-widget.module-side-widget {
      padding-top: 0;
  }
}

@media (min-width: 1600px) {
  .first_slide {
      margin-left: 150px !important;
  }
}

.PageAboutUsGovernanceBoard .module-announcement .module_container--outer {
  max-width: 1310px;
  margin: 0 auto;
  padding: 0 30px;
}

/* 00579233 */
/*.module-slider [data-slick-index="0"]{
background-position-y: 30%;
}
.module-slider .module-slider_item .first_slide{
  padding: 80px 30px 360px;
}
.module-slider_item .first_slide .module-slider_item-content{
  max-width: 900px;
}*/
/* 00579233 end */
/*00580907*/
.Languagees-ES .module-slider_item-content {
  max-width: 900px;
}

/*00580907 end*/
/* CR - https://q4activations.atlassian.net/browse/ACR-9058 */
/*Banners*/
.PageAboutUsMiningMatters .pane--banner {
  height: 600px;
  background-image: url("../images/2024/05/Rectangle-748.png");
}

.PageAboutUsHowModernMiningWorks .pane--banner {
  height: 600px;
  background-image: url("../images/2024/05/Rectangle-748-1.png");
}

.PageOurOperationsOperatingMinesCobrePanamaOverview .pane--banner {
  height: 600px;
  background-image: url("../images/2024/05/Rectangle-748-2.png");
}

.PageAboutUsMiningMatters .pane--banner .pane_inner, .PageAboutUsHowModernMiningWorks .pane--banner .pane_inner, .PageOurOperationsOperatingMinesCobrePanamaOverview .pane--banner .pane_inner {
  height: 60%;
}

.PageAboutUsMiningMatters .pane--banner:after, .PageAboutUsHowModernMiningWorks .pane--banner:after, .PageOurOperationsOperatingMinesCobrePanamaOverview .pane--banner:after {
  content: unset;
}

.PageAboutUsMiningMatters .pane--banner .module-breadcrumb .link-removed, .PageAboutUsHowModernMiningWorks .pane--banner .module-breadcrumb .link-removed, .PageOurOperationsOperatingMinesCobrePanamaOverview .pane--banner .module-breadcrumb .link-removed {
  display: none;
}

.PageAboutUsMiningMatters .pane--banner h1, .PageAboutUsHowModernMiningWorks .pane--banner h1, .PageOurOperationsOperatingMinesCobrePanamaOverview .pane--banner h1 {
  width: 50%;
  font-size: 70px;
  line-height: 70px;
  font-weight: 900;
  text-transform: uppercase;
}

.PageAboutUsHowModernMiningWorks .pane--banner h1 {
  width: 100%;
}

.module_modernised-mining .cr-flex {
  display: flex;
}

.module_modernised-mining .cr-flex p > a {
  color: #263147;
  text-decoration: underline;
}

/* Homepage Slider */
/* .PageHome .module-slider .module-slider_title{
font-size: 70px;
font-weight: 900;
line-height: 70px;
white-space: nowrap;
}

.PageHome .module-slider .module-slider_description p{
font-size: 21px;
font-weight: 500;
line-height: 1.5;
}

.PageHome .module-slider .module-slider_description a.button.button--more.cr-button{
max-width: 235px;
line-height: 16px;
}

.PageHome .module-slider .first_slide{
margin-left: auto!important;
}

.PageHome .module-slider .slick-dots{
bottom: 75px;
}

.PageHome .module-slider .slick-dots .slick-active button{
background-color: #DBB216;
} */
.PageHome .module-slider .module-slider_title {
  font-size: 70px;
  font-weight: 900;
  line-height: 70px;
  white-space: nowrap;
}

.PageHome .module-slider .module-slider_description p {
  font-size: 21px;
  font-weight: 500;
  line-height: 1.5;
}

.PageHome .module-slider .module-slider_description a.button.button--more.cr-button {
  max-width: 235px;
  line-height: 16px;
}

.PageHome .module-slider .first_slide {
  margin-left: auto!important;
}

.PageHome .module-slider .slick-dots {
  bottom: 75px;
}

.PageHome .module-slider .slick-dots .slick-active button {
  background-color: #DBB216;
}

/*Homepage Content*/
.module-explore-operations .module-explore-operations_link:after {
  content: url("../images/2024/05/Group-10973.svg");
  font-family: 'q4-icons';
  font-size: 20px;
  width: 48px;
  height: 48px;
  line-height: 48px;
  display: inline-block;
  text-align: center;
  color: #fff;
  background-color: #DBB216;
  position: absolute;
  bottom: 0;
  right: 0;
  transition: 0.3s ease-in-out;
}

.modern-mining-matters.module_mining-imagegrid .module-csr-projects_item_description {
  margin: 20px 0px 70px;
}

.PageHome .module-esg-initiatives .module-csr-projects_item-inner {
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.PageHome .module-esg-initiatives .module_title {
  color: #263147;
  font-weight: 700;
  margin-top: 50px;
  margin-bottom: 50px;
  font-size: 37.8px;
  line-height: 46.1px;
  width: 100%;
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

.PageHome .module-esg-initiatives .slick-dots button {
  background-color: #fff;
  width: 68.25px;
  height: 4px;
}

.PageHome .module-esg-initiatives .slick-dots .slick-active button {
  background-color: #DBB216;
}

.PageHome .module-esg-initiatives .module_slider-pagination-arrows .module_slider-dots {
  display: block;
}

.PageHome .module-esg-initiatives .module_slider-pagination-arrows {
  bottom: 10%;
  left: 0;
  right: 0;
}

/* .PageHome .module-esg-initiatives .module-csr-projects_item-inner:before{
content: '';
background: linear-gradient(90deg, rgba(0,0,0,0.51) 0%, rgba(0,0,0,0) 100%);
position: absolute;
display: block;
width: 100%;
height: 100%;
top: 0;
bottom: 0;
right: 0;
left: 0;
} */
.PageHome .module-esg-initiatives .module-csr-projects_item-content.module-csr-projects_item-content {
  min-height: 700px;
  background-color: transparent;
  z-index: 1;
}

.PageHome .module-esg-initiatives .module-csr-projects_item-content .module-csr-projects_item_title {
  font-size: 56.7px;
  font-weight: 700;
  line-height: 69.2px;
  color: #fff;
  white-space: nowrap;
}

.PageHome .module-esg-initiatives .module-csr-projects_item_description {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  color: #fff;
}

.PageHome .module-esg-initiatives .button.cr-button.button--more {
  background-color: #fff;
  color: #000;
}

.PageHome .module-esg-initiatives .button.cr-button.button--more:after {
  color: #000;
}

/*Page content */
.module-home-blocks {
  margin-top: -195px;
}

.module-home-blocks .module-home-blocks_items-container {
  justify-content: end;
}

.PageAboutUsMiningMatters .module-csr-projects_item-content.module-csr-projects_item-content, .PageAboutUsHowModernMiningWorks .module-csr-projects_item-content.module-csr-projects_item-content {
  background-color: #fff;
}

.PageAboutUsMiningMatters .module-csr-projects_item, .PageAboutUsHowModernMiningWorks .module-csr-projects_item {
  margin: 100px 0px;
}

.module_modernised-mining .cr-flex > h2, .module_modernised-mining .cr-flex > div {
  flex: 1;
}

.module_modernised-mining .cr-flex > h2 {
  font-size: 37.8px;
  font-weight: 700;
  line-height: 46.1px;
  color: #263147;
}

.module_modernised-mining .cr-flex > h2.text-shadow {
  text-shadow: 0px 4px 4px rgba(0,0,0,0.25);
}

.module_modernised-mining .cr-flex > div > p {
  font-size: 25px;
  font-weight: 400;
  line-height: 1.3;
  color: #263147;
  margin-top: 40px;
}

.module_modernised-mining.meeting-rising-demands .cr-flex > div > p, .module_modernised-mining.about-cobre-panama .cr-flex > div > p {
  font-size: 20px;
  line-height: 1.5;
}

.module_mining-imagegrid .module_container--outer {
  max-width: 100%;
  padding: 0px;
}

.callout-ctn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.callout-ctn .callout-box {
  /* flex: 1; */
  width: 598px;
  height: 334px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 35px;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}

/* .callout-ctn .callout-box:after{
content: '';
width: 100%;
height: 100%;
display: block;
position: absolute;
top: 0;
background: rgba(0,0,0,0.7);
bottom: 0;
right: 0;
left: 0;
z-index: 0;
} */
.callout-ctn .callout-box:nth-of-type(1) {
  background: url('../images/2024/05/div-module-csr-projects_thumbnail-15.png');
}

.callout-ctn .callout-box:nth-of-type(2) {
  background: url('../images/2024/05/div-module-csr-projects_thumbnail-16.png');
}

.callout-ctn .callout-box:nth-of-type(3) {
  background: url('../images/2024/05/div-module-csr-projects_thumbnail-17.png');
}

.callout-ctn .callout-box:nth-of-type(4) {
  background: url('../images/2024/05/div-module-csr-projects_thumbnail-18.png');
}

.callout-ctn .callout-box h2 {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  margin-top: 10px;
  margin-bottom: 0px;
  z-index: 1;
}

.callout-ctn .callout-box p {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  z-index: 1;
  max-width: 80%;
  margin-top: 0px;
}

.callout-ctn .callout-box a.button {
  font-size: 14.7px;
  font-weight: 500;
  color: #000;
  max-width: 200px;
  background: #fff;
  z-index: 1;
}

.module-cobre-panama_faq .module_container--inner {
  width: 50%;
  margin-left: auto;
}

.pane--content .module-slider_cr .module_container--outer {
  max-width: unset;
  padding-left: 0px;
  padding-right: 0px;
}

.pane--content .module-slider_cr .module_container--content {
  padding: 0px;
}

.pane--content .module-slider_cr .module-slider_item {
  height: 700px;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: unset;
  background-position-y: unset;
}

.mining-matters-carousel.module-slider_cr .module-slider_item-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  max-width: 450px;
}

.mining-matters-carousel.module-slider_cr .module-slider_item-inner {
  padding: 80px 30px 160px;
  margin-left: 150px!important;
}

.mining-matters-carousel.module-slider_cr .module-slider_item-content .module-slider_quote {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

.mining-matters-carousel.module-slider_cr .module-slider_item-content .module-slider_title {
  font-size: 56.7px;
  font-weight: 700;
  line-height: 69.2px;
  text-transform: unset;
  color: #fff;
  margin-top: 100px;
  margin-bottom: 0px;
}

.mining-matters-carousel.module-slider_cr .module-slider_item-content .module-slider_description {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
}

.pane--content .module-slider_cr.module-slider .slick-dots {
  bottom: 75px;
  text-align: center;
}

.pane--content .module-slider_cr.module-slider .slick-dots .slick-active button {
  background-color: #DBB216;
}

.cobre-panama-slider .module-slider_item-content {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  height: 100%;
}

.cobre-panama-slider .module-slider_title {
  margin: 0;
  font-size: 56.7px;
  line-height: 69.2px;
  font-weight: 700;
  text-transform: unset;
  color: #fff;
  width: 75%;
}

.cobre-panama-slider .module-slider_description {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
  margin: 0;
}

.cobre-panama-slider .button.cr-button.button--more {
  margin: 0;
  max-width: 316px;
  margin: 0;
  min-width: 316px;
  background-color: #fff;
  color: #000;
  text-align: left;
  font-size: 14.7px;
  line-height: 15px;
  font-weight: 500;
}

.cobre-panama-slider .button.cr-button.button--more:after {
  color: #000;
}

.numbers-grid.cr-flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.numbers-grid-content {
  flex: 1;
  max-width: 350px;
  min-width: 350px;
}

.numbers-grid-content h2 {
  color: #DBB216;
  font-size: 80px;
  line-height: 41.6px;
  font-weight: 400;
}

.numbers-grid-content p {
  font-size: 16px;
  color: #000;
  line-height: 1.3;
  font-weight: 500;
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 15px;
}

.module-cobre-panama_faq h2 {
  width: 45%;
  font-size: 37.8px;
  line-height: 46.1px;
  color: #263147;
  font-weight: 700;
}

.module-cobre-panama_faq .module-faq_question {
  padding: 22.5px 0 22.5px 25px;
  color: #263147;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
}

.module-faq.module-cobre-panama_faq .module_item.js--active .module-faq_question {
  color: #263147;
}

.module-faq.module-cobre-panama_faq .module_item.js--active .module-faq_question:before {
  content: url('../images/2024/05/Group-11014.svg');
}

.module-faq.module-cobre-panama_faq .module_item .module-faq_question > span {
  width: 75%;
  display: block;
}

.module-cobre-panama_faq .module-faq_question:before {
  left: unset;
  right: 0;
  content: url("../images/2024/05/Group-11011.svg");
}

.module-cobre-panama_faq .module-faq_answer {
  font-size: 16px;
  color: #263147;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.27px;
}

.module_mining-imagegrid .module-csr-projects_item_title {
  font-size: 37.8px;
  font-weight: 700;
  line-height: 46.1px;
  color: #263147;
}

.module_mining-imagegrid .module-csr-projects_item_description {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: #263147;
}

.button.cr-button.button--more {
  max-width: 200px;
  padding: 12px 30px 12px 12px;
  border: unset;
  background-color: #DBB216;
  color: #fff;
  font-size: 14.7px;
  line-height: 15px;
  font-weight: 500;
}

.button.cr-button.button--more:before {
  content: unset;
}

.button.cr-button.button--more:after {
  font-family: 'q4-icons'!important;
  content: "\edbe";
  font-size: 18px;
  background-color: transparent;
  color: #fff;
  display: inline-block;
  position: absolute;
  top: 50%;
  /* top: calc(100% - 8px); */
  /* right: 15%; */
  right: 4%;
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 24px;
  transition: 0.3s ease-in-out;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.Languagees-ES.PageHome .module-slider .button.cr-button.button--more {
  max-width: 300px!important;
}

.module_mining-imagegrid .button.cr-button.button--more:first-child {
  margin-right: 35px;
}

.callout-box .button.cr-button.button--more {
  background-color: #fff;
  color: #000;
}

.callout-box .button.cr-button.button--more:after {
  color: #000;
}

.button.cr-button.button--more:hover:after {
  background-color: transparent;
}

/*Timeline*/
.module-lifecycle h2 {
  font-size: 37.8px;
  font-weight: 700;
  line-height: 45.36px;
  color: #263147;
}

.module-lifecycle .option-3 {
  display: flex;
  margin-top: 100px;
  padding-top: 100px;
}

.module-lifecycle .option-3 h3 {
  /* color: #141c1f; */
  /* font-size: 1.8rem; */
  line-height: 2.8rem;
  /* font-weight: 500; */
  margin: 10px 0;
  text-align: left;
  padding-left: 10%;
  font-size: 27px;
  font-weight: 700;
  color: #263147;
}

.module-lifecycle .option-3 .module_description {
  padding-left: 10%;
  text-align: left;
  font-weight: 400;
  color: #263147;
}

.module-lifecycle .option-3 img {
  width: 100%;
  position: absolute;
  width: 122px;
  height: 122px;
  top: -32px;
}

.module-lifecycle .option-3 .list-left img {
  left: 0;
}

.module-lifecycle .option-3 .list-right img {
  right: 0;
}

.module-lifecycle .option-3 .module_date-time {
  color: #2431d8;
  font-size: 2.8rem;
  line-height: 3.4rem;
  font-weight: 700;
  margin: 10px 0;
}

.module-lifecycle .option-3 .list-left {
  margin-top: -25px;
  flex-basis: 50%;
}

.module-lifecycle .option-3 .list-left .module-item {
  text-align: right;
  position: relative;
  padding-right: 15%;
  padding-left: 15%;
}

.module-lifecycle .option-3 .list-left .module-item:not(:first-child) {
  margin-top: 250px;
}

.module-lifecycle .option-3 .list-left .module-item:nth-child(even) {
  display: none;
}

.module-lifecycle .option-3 .list-left .module-item::before {
  content: "";
  display: block;
  background: #DBB216;
  height: 50px;
  width: 50px;
  border-radius: 100px;
  z-index: 0;
  position: absolute;
  right: -25px;
  top: 10px;
  background-image: url("../images/2024/05/timeline-dot-icon.png");
  background-repeat: no-repeat;
  background-position: center;
}

.module-lifecycle .option-3 .list-left .module-item::after {
  content: "";
  position: absolute;
  display: block;
  height: 1px;
  width: 70%;
  background: #141c1f;
  border-radius: 100%;
  right: 50px;
  top: 32px;
  z-index: 0;
  margin: auto;
  transform: translateZ(-1px);
}

@media only screen and (max-width: 480px) {
  .module-lifecycle .option-3 .list-left {
      display: none;
  }
}

.module-lifecycle .option-3 .list-right {
  flex-basis: 50%;
}

.module-lifecycle .option-3 .list-right .module-item {
  position: relative;
  padding-left: 15%;
  padding-right: 15%;
}

.module-lifecycle .option-3 .list-right .module-item:not(:first-child) {
  margin-top: 300px;
}

.module-lifecycle .option-3 .list-right .module-item:nth-child(odd) {
  display: none;
}

@media only screen and (max-width: 480px) {
  .module-lifecycle .option-3 .list-right .module-item:nth-child(odd) {
      display: block;
  }
}

.module-lifecycle .option-3 .list-right .module-item:nth-child(2) {
  margin-top: 250px;
}

.module-lifecycle .option-3 .list-right .module-item::before {
  content: "";
  display: block;
  background: #DBB216;
  height: 50px;
  width: 50px;
  border-radius: 100px;
  z-index: 0;
  position: absolute;
  left: -25px;
  top: 10px;
  background-image: url("../images/2024/05/timeline-dot-icon.png");
  background-repeat: no-repeat;
  background-position: center;
}

.module-lifecycle .option-3 .list-right .module-item::after {
  content: "";
  position: absolute;
  display: block;
  height: 1px;
  width: 70%;
  background: #141c1f;
  border-radius: 100%;
  left: 50px;
  top: 32px;
  z-index: 0;
  margin: auto;
  transform: translateZ(-1px);
}

@media only screen and (max-width: 480px) {
  .module-lifecycle .option-3 .list-right {
      flex-basis: 100%;
      margin-top: -25px;
  }
}

.module-lifecycle .option-3 .list-divider {
  background-color: #141c1f;
  position: relative;
  width: 1px;
  z-index: -1;
  margin-bottom: 100px;
  margin-top: -100px;
}

.module-lifecycle .option-3 .list-divider:before {
  content: '';
  width: 10px;
  height: 10px;
  background: #141c1f;
  border-radius: 100%;
  display: block;
  position: absolute;
  left: -4px;
  top: 0;
}

.module-lifecycle .module-item {
  visibility: hidden;
}

/* [class*=fade]{
visibility: hidden;
} */
@-webkit-keyframes fade-from-bottom {
  0% {
      opacity: 0;
      bottom: -100px;
  }

  100% {
      bottom: 0;
      visibility: visible;
  }
}

@keyframes fade-from-bottom {
  0% {
      opacity: 0;
      bottom: -100px;
      visibility: hidden;
  }

  100% {
      bottom: 0;
      visibility: visible;
  }
}

/* @-webkit-keyframes fade-from-bottom {
0% {
  opacity: 0;
  bottom: -100px;
}
100% {
  opacity: 1;
  bottom: 0;
  visibility: visible;

}
}
@keyframes fade-from-bottom {
0% {
  opacity: 0;
  bottom: -100px;
  visibility: hidden;

}
75% {
  opacity: 0;
}
75.1% {
  opacity: 1;
  visibility: visible;	
}
100% {
  opacity: 1;
  bottom: 0;

}
} */
.fade-from-bottom {
  -webkit-animation-duration: 5.5s;
  -webkit-animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in-out;
  animation-duration: 5.5s;
  animation-fill-mode: both;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: fade-from-bottom;
  animation-name: fade-from-bottom;
  visibility: visible;
}

/*Responsive changes*/
@media only screen and (max-width: 1480px) {
  .PageHome .module-esg-initiatives .module_title {
      max-width: 1310px;
  }

  /* .module-explore-operations .current-operations-title{
    margin-left: unset;
} */
}

@media only screen and (max-width: 1280px) {
  .module-explore-operations .desktop-only .module-explore-operations_item {
      height: auto;
      width: 500px;
  }
}

@media only screen and (max-width: 768px) {
  .module-home-blocks {
      margin-top: unset;
  }

  .PageHome .module-slider .slick-dots {
      bottom: 50px;
  }

  .PageHome .module-slider .module-slider_title {
      font-size: 40px;
      font-weight: 900;
      line-height: 40px;
      white-space: nowrap;
  }

  .PageHome .module-slider .module-slider_description p {
      font-size: 16px;
      font-weight: 500;
      line-height: 1.28;
  }

  .PageHome .module-slider .module-slider_description a.button.button--more.cr-button {
      max-width: 227px;
      font-size: 11.7px;
      line-height: 15px;
  }

  .module-latest-info_item:nth-of-type(2) .module-latest-info_item-title:before {
      content: url("../images/2024/05/Group-11038.svg");
  }

  .module-latest-info_item:nth-of-type(3) .module-latest-info_item-title:before {
      content: url("../images/2024/05/Layer_1.svg");
  }

  .module-latest-info_item:nth-of-type(4) .module-latest-info_item-title:before {
      content: url("../images/2024/05/Layer_1-1.svg");
  }

  .module-cobre-panama_faq h2 {
      width: 100%;
  }

  .module-cobre-panama_faq .module_container--inner {
      width: 100%;
  }

  .mining-matters-carousel.module-slider_cr .module-slider_item-inner {
      margin-left: 0px!important;
  }

  .mining-matters-carousel.module-slider_cr .module-slider_item:before {
      content: '';
      display: block;
      width: 100%;
      height: 100%;
      background-color: #000;
      opacity: 0.4;
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: -1;
  }
}

@media only screen and (max-width: 480px) {
  /* .PageAboutUsMiningMatters .pane--banner .pane_inner, 
.PageAboutUsHowModernMiningWorks .pane--banner .pane_inner, 
.PageOurOperationsOperatingMinesCobrePanamaOverview .pane--banner .pane_inner{
  height: 100%;
} */.PageHome .module-slider .module-slider_title {
      white-space: normal;
  }

  .module-explore-operations .module-explore-operations_item {
      height: 220px;
  }

  .module_modernised-mining .cr-flex > h2 {
      font-size: 20.8px;
      line-height: 46.1px;
      margin: 5px 0px;
  }

  .module_modernised-mining .cr-flex > div > p {
      font-size: 18px;
      line-height: 1.3;
  }

  .PageOurOperationsOperatingMinesCobrePanamaOverview .pane--banner, .pane--content .module-slider_cr.cobre-panama-slider .module-slider_item {
      background-position-x: center;
  }

  .cobre-panama-slider .module-slider_title {
      width: 100%;
  }

  .cobre-panama-slider .button.cr-button.button--more {
      max-width: 175px;
      min-width: 175px;
  }

  .cobre-panama-slider .button.cr-button.button--more > span {
      display: none;
  }

  .numbers-grid-content {
      max-width: 171px;
      min-width: 171px;
  }

  .numbers-grid-content h2 {
      font-size: 44px;
  }

  .numbers-grid-content p {
      font-size: 12px;
  }

  .module_modernised-mining .cr-flex {
      flex-direction: column;
  }

  .module-lifecycle .option-3 .list-right img {
      right: unset;
      top: -150px;
  }

  .callout-ctn .callout-box {
      height: unset;
  }

  .module_mining-imagegrid .module-csr-projects_item:nth-of-type(odd) .module-csr-projects_item-inner {
      flex-direction: column-reverse;
  }

  .module_mining-imagegrid .module-csr-projects_item:nth-of-type(even) .module-csr-projects_item-inner {
      flex-direction: column;
  }

  .module_mining-imagegrid .module-csr-projects_thumbnail {
      min-height: 400px;
  }

  .PageAboutUsMiningMatters .module-csr-projects_item, .PageAboutUsHowModernMiningWorks .module-csr-projects_item {
      margin: 0px;
  }

  .pane--content .module-slider_cr .module-slider_item {
      /* height: 100%;
  background-size: contain; */
  }

  .mining-matters-carousel.module-slider_cr .module-slider_item-content .module-slider_quote {
      font-size: 16px;
      line-height: 1;
  }

  .mining-matters-carousel.module-slider_cr .module-slider_item-content .module-slider_title {
      font-size: 32px;
      line-height: 36px;
  }

  .mining-matters-carousel.module-slider_cr .module-slider_item-content .module-slider_description {
      font-size: 16px;
      line-height: 1.2;
  }

  .cobre-panama-slider .module-slider_item-content {
      gap: 20px;
  }

  .pane--content .module-slider_cr.cobre-panama-slider .module-slider_item {
      background-size: cover;
  }

  .module-lifecycle h2.text-center {
      text-align: left;
      font-size: 29.8px;
      line-height: 35.1px;
  }

  .module-lifecycle .option-3 h3 {
      font-size: 18px;
      font-weight: 700;
  }

  .module_modernised-mining .cr-flex > h2.text-shadow {
      font-size: 29.8px;
      font-weight: 700;
      line-height: 35.1px;
      text-shadow: unset;
  }

  .PageAboutUsHowModernMiningWorks .pane--banner {
      background-position-x: left;
  }

  .PageAboutUsMiningMatters .pane--banner h1, .PageAboutUsHowModernMiningWorks .pane--banner h1, .PageOurOperationsOperatingMinesCobrePanamaOverview .pane--banner h1 {
      font-size: 40px;
      font-weight: 900;
      line-height: 40px;
  }

  .callout-ctn .callout-box {
      background-repeat: no-repeat!important;
      background-size: cover!important;
  }

  .module-cobre-panama_faq .module-faq_question {
      font-size: 16px;
      font-weight: 600;
      line-height: 20.8px;
  }

  .module-cobre-panama_faq .module-faq_answer {
      font-size: 14px;
      font-weight: 400;
      line-height: 21px;
      letter-spacing: -0.2720000147819519px;
  }

  .module-cobre-panama_faq h2 {
      font-size: 20.8px;
      font-weight: 700;
      line-height: 27.1px;
  }

  .cobre-panama-slider .module-slider_description {
      font-size: 16px;
  }

  .cobre-panama-slider .module-slider_title {
      font-size: 40px;
      font-weight: 700;
      line-height: 49px;
  }

  .module-explore-operations .module_title {
      font-size: 20.8px;
      font-weight: 700;
      line-height: 46.12px;
      margin: 20px 0px;
  }

  .pane--content .module-slider_cr.cobre-panama-slider .module-slider_item {
      background-size: cover;
      background-image: url("../images/2024/05/TMF-1-10.png")!important;
      height: 500px;
  }

  .module-slider_cr.cobre-panama-slider {
      min-height: 500px;
  }

  .cobre-panama-slider .module-slider_item-content {
      gap: unset;
  }

  .module-explore-operations_link {
      padding: 25px 25px;
  }

  .PageHome .module-esg-initiatives .module-csr-projects_item-content .module-csr-projects_item_title {
      font-size: 40px;
      line-height: 49px;
  }

  .PageHome .module-esg-initiatives .module-csr-projects_item_description {
      font-size: 16px;
      line-height: 1.28;
  }

  .PageHome .module-esg-initiatives .module-csr-projects_item-content .module-csr-projects_item_title {
      white-space: unset;
  }

  .PageHome .module-esg-initiatives .slick-dots button {
      width: 35px;
  }

  .PageHome .module-purpose .module-downloads-blocks_item-inner {
      display: flex;
      flex-direction: column;
  }

  .PageHome .module-purpose .module-downloads-blocks_item-inner .module-downloads-blocks_item-title {
      order: 1;
  }

  .PageHome .module-purpose .module-downloads-blocks_item-inner .module-downloads-blocks_thumbnail {
      order: 2;
  }

  .PageHome .module-purpose .module-downloads-blocks_item-inner .module-downloads-blocks_item-description {
      order: 3;
  }

  .PageHome .modern-mining-matters.module_mining-imagegrid .module-csr-projects_item:nth-of-type(odd) .module-csr-projects_item-inner {
      flex-direction: column;
  }

  .PageHome .modern-mining-matters.module_mining-imagegrid .module-csr-projects_item:nth-of-type(even) .module-csr-projects_item-inner {
      flex-direction: column-reverse;
  }

  .PageHome .module-slider_item-inner {
      align-items: flex-end;
  }

  .PageHome .module-slider .module-slider_item {
      background-position: left;
  }

  .PageHome .module-slider .slick-dots {
      bottom: 30px;
  }
}

.module_link.module_news-details_download::before {
  display: none;
}

/* dark mode start */
.dark-mode {
  background: #000;
}

.dark-mode.PageStockChartDarkMode,
.Languagees-ES.dark-mode .module-stock-chart{
  background: #211F1F;
}

.dark-mode .module_title, .dark-mode p, .dark-mode a, .dark-mode label, .dark-mode input[type="checkbox"] + label, .dark-mode input[type="radio"] + label, .dark-mode .module_input::placeholder,
.dark-mode .module_error-container {
  color: #fff;
}

.dark-mode input[type="checkbox"] + label:before, .dark-mode input[type="radio"] + label:before {
  background: #000;
  border-color: #fff;
}

.dark-mode input[type="checkbox"]:checked + label:before, .dark-mode input[type="radio"]:checked + label:before {
  background: #DBB216;
}

.dark-mode .module_input {
  color: #fff;
  background: #211F1F;
  border-color: #211F1F;
}

.dark-mode .module-stock-chart .highcharts-series-0 {
  stroke: #DBB216;
}

.dark-mode .highcharts-legend-item text, .dark-mode .highcharts-range-selector-buttons text, .dark-mode .highcharts-xaxis-labels text, .dark-mode .highcharts-yaxis-labels text, .dark-mode .highcharts-input-group text {
  fill: #fff !important;
}

.dark-mode .highcharts-grid path, .dark-mode .module-stock-chart .highcharts-series-0 path:first-child {
  stroke: #fff;
}

.dark-mode .highcharts-button rect, .dark-mode .highcharts-highcharts-scrollbar rect, .dark-mode .highcharts-input-group rect {
  fill: rgba(0, 0, 0, .1);
}

.dark-mode .highcharts-grid path {
  stroke: rgba(255, 255, 255, .75) !important;
}

/* dark mode end */