/* ANIMATION HANDLING */
.bounce-in-down {
  -webkit-animation-name: bounce-in-down;
  -moz-animation-name: bounce-in-down;
  animation-name: bounce-in-down;
  -webkit-animation-duration: .75s;
  -moz-animation-duration: .75s;
  animation-duration: .75s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both; }

.bounce-out-up {
  -webkit-animation-name: bounce-out-up;
  -moz-animation-name: bounce-out-up;
  animation-name: bounce-out-up;
  -webkit-animation-duration: .75s;
  -moz-animation-duration: .75s;
  animation-duration: .75s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both; }

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  -moz-animation-name: fadeInRight;
  animation-name: fadeInRight;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1); }

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  -moz-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1); }

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  -moz-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 1.5s;
  -moz-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1); }

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  -moz-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1); }

.fadeOut {
  -webkit-animation: fadeOut 2s forwards;
  -moz-animation: fadeOut 2s forwards;
  animation: fadeOut 2s forwards; }

.fadeIn {
  -webkit-animation-name: fadeIn;
  -moz-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1); }

.fadeInBio {
  -webkit-animation-name: fadeIn;
  -moz-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 1.5s;
  -moz-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1); }

.page-loader {
  background: #00B997;
  bottom: 0;
  height: 100vh;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000; }
  .page-loader .loader {
    display: inline-block;
    height: auto;
    left: 50%;
    padding: 1em;
    position: absolute;
    text-align: center;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    vertical-align: top;
    width: auto; }
    .page-loader .loader img {
      display: block;
      margin: 0 auto 20px; }
    .page-loader .loader svg path,
    .page-loader .loader svg rect {
      fill: #FFF; }

/* KEYFRAME DECLARATIONS */
@-webkit-keyframes fadeOut {
  from {
    opacity: 1; }
  40% {
    opacity: 0; }
  100% {
    position: absolute;
    opacity: 0; } }

@-webkit-keyframes fadeIn {
  from {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-5%);
    transform: translateX(-5%); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

@-moz-keyframes fadeInRight {
  0% {
    opacity: 0;
    -moz-transform: translateX(-5%);
    transform: translateX(-5%); }
  100% {
    opacity: 1;
    -moz-transform: translateX(0);
    transform: translateX(0); } }

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-5%);
    -moz-transform: translateX(-5%);
    transform: translateX(-5%); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0); } }

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(15%);
    transform: translateX(15%); } }

@-moz-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -moz-transform: translateX(0%);
    transform: translateX(0%); }
  100% {
    opacity: 0;
    -moz-transform: translateX(15%);
    transform: translateX(15%); } }

@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    transform: translateX(0%); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(15%);
    -moz-transform: translateX(15%);
    transform: translateX(15%); } }

@-webkit-keyframes fadeInFromNone {
  0% {
    display: none;
    opacity: 0; }
  1% {
    display: block;
    opacity: 0; }
  100% {
    display: block;
    opacity: 1; } }

@-moz-keyframes fadeInFromNone {
  0% {
    display: none;
    opacity: 0; }
  1% {
    display: block;
    opacity: 0; }
  100% {
    display: block;
    opacity: 1; } }

@keyframes fadeInFromNone {
  0% {
    display: none;
    opacity: 0; }
  1% {
    display: block;
    opacity: 0; }
  100% {
    display: block;
    opacity: 1; } }

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }

@-moz-keyframes fadeInUp {
  0% {
    opacity: 0;
    -moz-transform: translateY(100%);
    transform: translateY(100%); }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
    transform: translateY(0); } }

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    transform: translateY(100%); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0); } }

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-30%);
    transform: translateY(-30%); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }

@-moz-keyframes fadeInDown {
  0% {
    opacity: 0;
    -moz-transform: translateY(-30%);
    transform: translateY(-30%); }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
    transform: translateY(0); } }

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-30%);
    -moz-transform: translateY(-30%);
    transform: translateY(-30%); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0); } }

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0.4);
    box-shadow: 0 0 0 0 rgba(204, 169, 44, 0.4); }
  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
    box-shadow: 0 0 0 10px rgba(204, 169, 44, 0); }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    box-shadow: 0 0 0 0 rgba(204, 169, 44, 0); } }

@-moz-keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(204, 169, 44, 0.4); }
  70% {
    box-shadow: 0 0 0 10px rgba(204, 169, 44, 0); }
  100% {
    box-shadow: 0 0 0 0 rgba(204, 169, 44, 0); } }

@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0.4);
    box-shadow: 0 0 0 0 rgba(204, 169, 44, 0.4); }
  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
    box-shadow: 0 0 0 10px rgba(204, 169, 44, 0); }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    box-shadow: 0 0 0 0 rgba(204, 169, 44, 0); } }

@-webkit-keyframes bounce-in-down {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }

@-moz-keyframes bounce-in-down {
  from, 60%, 75%, 90%, to {
    -moz-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -moz-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -moz-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -moz-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -moz-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  to {
    -moz-transform: none;
    transform: none; } }

@keyframes bounce-in-down {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -moz-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    -moz-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    -moz-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    -moz-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    -moz-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  to {
    -webkit-transform: none;
    -moz-transform: none;
    transform: none; } }

@-webkit-keyframes bounce-out-up {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

@-moz-keyframes bounce-out-up {
  20% {
    -moz-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    -moz-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    -moz-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

@keyframes bounce-out-up {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    -moz-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    -moz-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    -moz-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

/*! 
  Started with normalize and removed some redundant code and added some more at the bottom yeh.
  normalize.css v4.1.1 | MIT License | github.com/necolas/normalize.css 
*/
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

body {
  margin: 0; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block; }

audio,
canvas,
progress,
video {
  display: inline-block; }

audio:not([controls]) {
  display: none;
  height: 0; }

template,
[hidden] {
  display: none; }

a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */ }

a:active,
a:hover {
  outline-width: 0; }

b,
strong {
  font-weight: inherit; }

b,
strong {
  font-weight: bolder; }

dfn {
  font-style: italic; }

h1 {
  font-size: 2em;
  margin: 0.67em 0; }

mark {
  background-color: #ff0;
  color: #000; }

small {
  font-size: 80%; }

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

img {
  border-style: none; }

svg:not(:root) {
  overflow: hidden; }

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

figure {
  margin: 0; }

hr {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  overflow: visible; }

button,
input,
select,
textarea {
  font: inherit;
  margin: 0; }

optgroup {
  font-weight: bold; }

button,
input {
  overflow: visible; }

button,
select {
  text-transform: none; }

button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; }

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

textarea {
  overflow: auto; }

[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54; }

input {
  -webkit-appearance: none;
  border-radius: 0; }

html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

*, *:before, *:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit; }

*:focus {
  outline: none; }

@font-face {
  font-family: "Intratec-chevron";
  src: url("../fonts/Intratec-chevron.eot");
  src: url("../fonts/Intratec-chevrond41d.eot?#iefix") format("embedded-opentype"), url("../fonts/Intratec-chevron.woff") format("woff"), url("../fonts/Intratec-chevron.ttf") format("truetype"), url("../fonts/Intratec-chevron.svg#Intratec-chevron") format("svg");
  font-weight: normal;
  font-style: normal; }

[data-icon]:before {
  font-family: "Intratec-chevron" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "Intratec-chevron" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon-Intratec-chevron:before {
  content: "\61"; }

::-moz-selection {
  color: #ffffff;
  background: #1a778d; }

::selection {
  color: #ffffff;
  background: #1a778d; }

.blur {
  -webkit-filter: blur(5px);
  filter: blur(5px);
  -webkit-transition: all 0.275s ease-in-out;
  -moz-transition: all 0.275s ease-in-out;
  transition: all 0.275s ease-in-out; }

.container, .stock-bar > div, .main-menu > div, nav .submenu-wrapper {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 1920px;
  padding: 0 40px;
  width: 100%; }
  .container__large {
    max-width: 1524px; }

.icon-before {
  color: #444e6a;
  content: '\f054';
  font-family: "Font Awesome 5 Pro";
  font-size: 13px;
  left: -15px;
  padding-right: 5px;
  position: absolute;
  top: -9px; }

.image-overlay-darken {
  background: rgba(0, 0, 0, 0.15);
  display: block;
  height: 100%;
  left: 0;
  right: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2; }

.align-center {
  text-align: center; }

html,
body {
  font-family: "franklin-gothic-urw", sans; }

ul {
  padding-left: 22px; }

ul li {
  color: #6f7074;
  font-family: "franklin-gothic-urw", sans;
  font-size: 18px;
  line-height: 25px; }
  @media screen and (min-width: 320px) {
    ul li {
      font-size: 18px;
      line-height: 25px; } }
  @media screen and (min-width: 375px) {
    ul li {
      font-size: 18px;
      line-height: 25px; } }
  @media screen and (min-width: 480px) {
    ul li {
      font-size: 18px;
      line-height: 25px; } }
  @media screen and (min-width: 640px) {
    ul li {
      font-size: 18px;
      line-height: 25px; } }
  @media screen and (min-width: 1200px) {
    ul li {
      font-size: 18px;
      line-height: 25px; } }

.investor-overview__top--right p a,
.summary-content a {
  background-image: -moz-linear-gradient(transparent -moz-calc(100% - 2px), #ACA8A4 2px);
  background-image: linear-gradient(transparent calc(100% - 2px), #ACA8A4 2px);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  color: #ACA8A4;
  cursor: pointer;
  display: inline;
  font-family: "franklin-gothic-urw", sans;
  padding-top: 3px;
  text-decoration: none;
  -webkit-transition: background-size 0.35s, color 350ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: background-size 0.35s, color 350ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: background-size 0.35s, color 350ms cubic-bezier(0.77, 0, 0.175, 1);
  font-size: 18px;
  line-height: 25px; }
  @media screen and (min-width: 320px) {
    .investor-overview__top--right p a,
    .summary-content a {
      font-size: 18px;
      line-height: 25px; } }
  @media screen and (min-width: 375px) {
    .investor-overview__top--right p a,
    .summary-content a {
      font-size: 18px;
      line-height: 25px; } }
  @media screen and (min-width: 480px) {
    .investor-overview__top--right p a,
    .summary-content a {
      font-size: 18px;
      line-height: 25px; } }
  @media screen and (min-width: 640px) {
    .investor-overview__top--right p a,
    .summary-content a {
      font-size: 18px;
      line-height: 25px; } }
  @media screen and (min-width: 1200px) {
    .investor-overview__top--right p a,
    .summary-content a {
      font-size: 18px;
      line-height: 25px; } }
  .investor-overview__top--right p a:hover,
  .summary-content a:hover {
    background-size: 100% 100% !important; }

.content-left a {
  text-decoration: none; }

.content-left a:not(.button):not(.document-link):not(.event-link):not(.blog-article):not(.event-link):not(.blog-article):not(.event-link):not(.blog-article):not(.event-link):not(.blog-article):not(.event-link):not(.blog-article):not(.event-link):not(.blog-article):not(.team-member):not(.news-item):not(.blog-article):not(.event-link):not(.no-underline):not(.values-link):not([href^="http://app"]) {
  background-image: -moz-linear-gradient(transparent -moz-calc(100% - 2px), #ACA8A4 2px);
  background-image: linear-gradient(transparent calc(100% - 2px), #ACA8A4 2px);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  color: #ACA8A4;
  cursor: pointer;
  display: inline;
  font-family: "franklin-gothic-urw", sans;
  padding-top: 3px;
  text-decoration: none;
  -webkit-transition: background-size 0.35s, color 350ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: background-size 0.35s, color 350ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: background-size 0.35s, color 350ms cubic-bezier(0.77, 0, 0.175, 1);
  font-size: 18px;
  line-height: 25px; }
  @media screen and (min-width: 320px) {
    .content-left a:not(.button):not(.document-link):not(.event-link):not(.blog-article):not(.event-link):not(.blog-article):not(.event-link):not(.blog-article):not(.event-link):not(.blog-article):not(.event-link):not(.blog-article):not(.event-link):not(.blog-article):not(.team-member):not(.news-item):not(.blog-article):not(.event-link):not(.no-underline):not(.values-link):not([href^="http://app"]) {
      font-size: 18px;
      line-height: 25px; } }
  @media screen and (min-width: 375px) {
    .content-left a:not(.button):not(.document-link):not(.event-link):not(.blog-article):not(.event-link):not(.blog-article):not(.event-link):not(.blog-article):not(.event-link):not(.blog-article):not(.event-link):not(.blog-article):not(.event-link):not(.blog-article):not(.team-member):not(.news-item):not(.blog-article):not(.event-link):not(.no-underline):not(.values-link):not([href^="http://app"]) {
      font-size: 18px;
      line-height: 25px; } }
  @media screen and (min-width: 480px) {
    .content-left a:not(.button):not(.document-link):not(.event-link):not(.blog-article):not(.event-link):not(.blog-article):not(.event-link):not(.blog-article):not(.event-link):not(.blog-article):not(.event-link):not(.blog-article):not(.event-link):not(.blog-article):not(.team-member):not(.news-item):not(.blog-article):not(.event-link):not(.no-underline):not(.values-link):not([href^="http://app"]) {
      font-size: 18px;
      line-height: 25px; } }
  @media screen and (min-width: 640px) {
    .content-left a:not(.button):not(.document-link):not(.event-link):not(.blog-article):not(.event-link):not(.blog-article):not(.event-link):not(.blog-article):not(.event-link):not(.blog-article):not(.event-link):not(.blog-article):not(.event-link):not(.blog-article):not(.team-member):not(.news-item):not(.blog-article):not(.event-link):not(.no-underline):not(.values-link):not([href^="http://app"]) {
      font-size: 18px;
      line-height: 25px; } }
  @media screen and (min-width: 1200px) {
    .content-left a:not(.button):not(.document-link):not(.event-link):not(.blog-article):not(.event-link):not(.blog-article):not(.event-link):not(.blog-article):not(.event-link):not(.blog-article):not(.event-link):not(.blog-article):not(.event-link):not(.blog-article):not(.team-member):not(.news-item):not(.blog-article):not(.event-link):not(.no-underline):not(.values-link):not([href^="http://app"]) {
      font-size: 18px;
      line-height: 25px; } }
  .content-left a:not(.button):not(.document-link):not(.event-link):not(.blog-article):not(.team-member):not(.news-item):not(.blog-article):not(.event-link):not(.no-underline):not(.values-link):not([href^="http://app"]):hover {
    background-size: 100% 100% !important; }

.content-left .sec-Mine Planning tr td a:hover {
  background-size: 0 100% !important; }

.content-left .button {
  color: #ffffff; }

.content-left p {
  color: #444e6a;
  font-weight: 400; }
  .content-left p:last-of-type + .button {
    margin-top: 15px; }

p, a {
  color: #6f7074;
  font-family: "franklin-gothic-urw", sans;
  font-weight: 100;
  font-size: 18px;
  line-height: 25px; }
  @media screen and (min-width: 320px) {
    p, a {
      font-size: 18px;
      line-height: 25px; } }
  @media screen and (min-width: 375px) {
    p, a {
      font-size: 18px;
      line-height: 25px; } }
  @media screen and (min-width: 480px) {
    p, a {
      font-size: 18px;
      line-height: 25px; } }
  @media screen and (min-width: 640px) {
    p, a {
      font-size: 18px;
      line-height: 25px; } }
  @media screen and (min-width: 1200px) {
    p, a {
      font-size: 18px;
      line-height: 25px; } }

h1 {
  color: #afafaf;
  font-family: "franklin-gothic-urw", sans;
  font-weight: 400;
  font-size: 50px;
  line-height: 60px; }
  @media screen and (min-width: 480px) {
    h1 {
      font-size: 50px;
      line-height: 60px; } }
  @media screen and (min-width: 768px) {
    h1 {
      font-size: 60px;
      line-height: 70px; } }
  @media screen and (min-width: 1025px) {
    h1 {
      font-size: 60px;
      line-height: 70px; } }

h2 {
  color: #afafaf;
  font-family: "franklin-gothic-urw", sans;
  font-weight: 400;
  font-size: 30px;
  line-height: 35px; }
  @media screen and (min-width: 640px) {
    h2 {
      font-size: 30px;
      line-height: 35px; } }
  @media screen and (min-width: 768px) {
    h2 {
      font-size: 30px;
      line-height: 35px; } }
  @media screen and (min-width: 1200px) {
    h2 {
      font-size: 30px;
      line-height: 35px; } }

h3 {
  color: #444e6a;
  font-family: "franklin-gothic-urw", sans;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 25px;
  line-height: 30px; }
  @media screen and (min-width: 640px) {
    h3 {
      font-size: 25px;
      line-height: 30px; } }
  @media screen and (min-width: 768px) {
    h3 {
      font-size: 25px;
      line-height: 30px; } }
  @media screen and (min-width: 1025px) {
    h3 {
      font-size: 25px;
      line-height: 30px; } }
  h3 br + span {
    color: #6d6d6d;
    font-style: italic;
    font-weight: 400;
    text-transform: none; }

h4 {
  color: #444e6a;
  font-family: "franklin-gothic-urw", sans;
  font-weight: 600;
  font-size: 20px;
  line-height: 25px; }
  @media screen and (min-width: 640px) {
    h4 {
      font-size: 20px;
      line-height: 25px; } }
  @media screen and (min-width: 1025px) {
    h4 {
      font-size: 20px;
      line-height: 25px; } }

h5 {
  color: #444e6a;
  font-family: "franklin-gothic-urw", sans;
  font-weight: 600;
  margin-bottom: 10px;
  text-decoration: none;
  font-size: 18px;
  line-height: 24px; }
  @media screen and (min-width: 640px) {
    h5 {
      font-size: 18px;
      line-height: 24px; } }
  @media screen and (min-width: 1025px) {
    h5 {
      font-size: 18px;
      line-height: 24px; } }
  h5 br + span {
    color: #6d6d6d;
    font-style: italic;
    font-weight: 400; }

h6 {
  color: #444e6a;
  font-family: "franklin-gothic-urw", sans;
  font-style: italic;
  font-weight: 600;
  margin-bottom: 10px;
  text-decoration: none;
  font-size: 18px;
  line-height: 24px; }
  @media screen and (min-width: 640px) {
    h6 {
      font-size: 18px;
      line-height: 24px; } }
  @media screen and (min-width: 1025px) {
    h6 {
      font-size: 18px;
      line-height: 24px; } }

/* QUICK LINKS */
.quick-link, .cat-responsibility.str-responsibility-overview .csr-hub__bottom > a {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #ffffff;
  display: block;
  font-size: 25px;
  height: 310px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  width: 50%;
  z-index: 1; }
  .quick-link::before, .cat-responsibility.str-responsibility-overview .csr-hub__bottom > a::before {
    content: " ";
    z-index: 2;
    display: block;
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.2);
    -webkit-transition: background .275s ease-in-out;
    -moz-transition: background .275s ease-in-out;
    transition: background .275s ease-in-out; }
  .quick-link.directory, .cat-responsibility.str-responsibility-overview .csr-hub__bottom > a.directory {
    background-image: url("../img/background/quick-links-directory.jpg"); }
  .quick-link.media, .cat-responsibility.str-responsibility-overview .csr-hub__bottom > a.media {
    background-image: url("../img/background/quick-links-media-1.jpg"); }
  .quick-link.Feasibility, .cat-responsibility.str-responsibility-overview .csr-hub__bottom > a.Feasibility {
    background-image: url("../img/background/quick-links-Feasibility.jpg"); }
  .quick-link.careers, .cat-responsibility.str-responsibility-overview .csr-hub__bottom > a.careers {
    background-image: url("../img/background/quick-link-careers-1.jpg"); }
  .quick-link > span, .cat-responsibility.str-responsibility-overview .csr-hub__bottom > a > span {
    height: 100%;
    line-height: 30px;
    position: absolute;
    text-align: center;
    width: 100%;
    z-index: 3;
    -webkit-transition: all 600ms cubic-bezier(0.77, 0, 0.175, 1);
    -moz-transition: all 600ms cubic-bezier(0.77, 0, 0.175, 1);
    transition: all 600ms cubic-bezier(0.77, 0, 0.175, 1); }
    .quick-link > span:nth-of-type(2), .cat-responsibility.str-responsibility-overview .csr-hub__bottom > a > span:nth-of-type(2) {
      left: 0;
      opacity: 0;
      -webkit-transform: translate(-100%, 0);
      -moz-transform: translate(-100%, 0);
      -ms-transform: translate(-100%, 0);
      transform: translate(-100%, 0); }
  .quick-link > span > span, .cat-responsibility.str-responsibility-overview .csr-hub__bottom > a > span > span {
    position: absolute;
    z-index: 4;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
    .quick-link > span > span > i, .cat-responsibility.str-responsibility-overview .csr-hub__bottom > a > span > span > i {
      font-size: 1.6em; }
  .quick-link:hover > span:nth-of-type(1), .cat-responsibility.str-responsibility-overview .csr-hub__bottom > a:hover > span:nth-of-type(1) {
    opacity: 0;
    -webkit-transform: translate(100%, 0);
    -moz-transform: translate(100%, 0);
    -ms-transform: translate(100%, 0);
    transform: translate(100%, 0); }
  .quick-link:hover > span:nth-of-type(2), .cat-responsibility.str-responsibility-overview .csr-hub__bottom > a:hover > span:nth-of-type(2) {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0); }
  .quick-link:hover:before, .cat-responsibility.str-responsibility-overview .csr-hub__bottom > a:hover:before {
    background: rgba(26, 26, 26, 0.9); }

/* STOCK BAR - Header */
.desktop header {
  margin-bottom: -130px;
  position: fixed;
  width: 100%;
  z-index: 5; }
  .desktop header.shrunk {
    left: 0;
    height: 50px;
    position: fixed;
    right: 0;
    top: 0; }
    .desktop header.shrunk .stock-bar {
      margin-top: -40px; }
    .desktop header.shrunk .main-menu {
      background: white;
      height: 50px;
      top: -40px; }
      .desktop header.shrunk .main-menu__logo > img {
        padding-top: 4px;
        width: 211px; }
    .desktop header.shrunk .main-menu .main-menu__logo,
    .desktop header.shrunk nav,
    .desktop header.shrunk nav > ul:first-of-type,
    .desktop header.shrunk nav > ul:first-of-type > li {
      height: 50px; }
    .desktop header.shrunk nav > ul:first-of-type > li > a.top-level {
      height: 50px;
      padding-top: 5px; }
    .desktop header.shrunk .search-wrapper {
      padding-top: 10px; }

.stock-bar {
  background: #2c3245;
  padding: 10.5px 0px;
  position: relative;
  width: 100%;
  -webkit-transition: margin 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition: margin 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  transition: margin 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 3; }
  .stock-bar > div {
    text-align: right; }
  .stock-bar > div > div {
    border-right: 1px solid #ffffff;
    color: #ffffff;
    display: inline-block;
    font-size: 18px;
    font-weight: 100;
    line-height: 1;
    padding-left: 12.5px;
    padding-right: 12.5px;
    text-transform: uppercase; }
    .stock-bar > div > div strong {
      font-weight: 700; }
    .stock-bar > div > div.language-toggle {
      border-right: none;
      text-transform: none; }
      .stock-bar > div > div.language-toggle > a {
        font-size: 18px;
        line-height: 18px; }
        .stock-bar > div > div.language-toggle > a:first-of-type {
          font-weight: 700;
          padding: 0px 10px;
          pointer-Feasibility: none; }
        .stock-bar > div > div.language-toggle > a:nth-of-type(2) {
          pointer-Feasibility: none; }
    .stock-bar > div > div:first-of-type {
      padding-left: 0px; }
    .stock-bar > div > div:last-of-type {
      padding-right: 0px;
      border-right: none; }
    .stock-bar > div > div > span {
      color: #ffffff; }
      .stock-bar > div > div > span:first-of-type {
        padding-right: 15px;
        padding-left: 15px; }
    .stock-bar > div > div .down {
      color: #9EC9C;
      font-weight: 100; }
    .stock-bar > div > div .up {
      color: #29B6D9;
      font-weight: 100; }
  .stock-bar a {
    color: #ffffff;
    text-decoration: none; }

/* MAIN MENU - Header */
.main-menu {
  background: rgba(255, 255, 255, 0.7);
  height: 90px;
  -webkit-transition: height .350s ease-in-out, background .350s ease-in-out;
  -moz-transition: height .350s ease-in-out, background .350s ease-in-out;
  transition: height .350s ease-in-out, background .350s ease-in-out;
  width: 100%;
  z-index: 2; }
  .main-menu:hover {
    background: #ffffff; }
  .main-menu > div {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    z-index: 3; }
  .main-menu__logo {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    height: 90px;
    margin-right: 20px; }
    .main-menu__logo > img {
      padding-top: 8px;
      -webkit-transition: all .350s ease-in-out;
      -moz-transition: all .350s ease-in-out;
      transition: all .350s ease-in-out;
      width: 381px; }

/* SEARCH */
.search-wrapper {
  height: auto !important;
  padding-top: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  overflow: hidden;
  position: absolute;
  -webkit-transition: width 0.35s cubic-bezier(0.23, 1, 0.32, 1), padding 0.25s ease-in-out;
  -moz-transition: width 0.35s cubic-bezier(0.23, 1, 0.32, 1), padding 0.25s ease-in-out;
  transition: width 0.35s cubic-bezier(0.23, 1, 0.32, 1), padding 0.25s ease-in-out;
  width: 15px; }
  .search-wrapper .search-form-container {
    display: table;
    float: right;
    margin-left: -275px;
    -webkit-transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    -moz-transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    width: 30%; }
    .search-wrapper .search-form-container form {
      display: table-cell; }
    .search-wrapper .search-form-container i {
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
      color: #2c3245;
      cursor: pointer;
      display: table-cell;
      font-size: 15px;
      font-family: "Font Awesome 5 Pro";
      font-weight: 600;
      float: right;
      position: relative;
      top: -1px; }
    .search-wrapper .search-form-container input[type="search"] {
      background: transparent;
      border: none;
      font-family: "franklin-gothic-urw", sans;
      font-size: 24px;
      outline: none;
      position: relative;
      top: -2px;
      width: 100%; }
  .search-wrapper.active {
    width: 100%; }

.ie11 .main-menu__logo > img {
  height: 87px;
  width: 381px; }

.ie11.desktop header.shrunk .main-menu__logo > img {
  height: 50px;
  width: 219px; }

nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  height: 90px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: 100%; }
  nav ul {
    list-style: none;
    margin: 0;
    padding: 24px 0 0;
    text-align: right; }
  nav > ul:first-of-type {
    height: 100%;
    padding: 0px; }
    nav > ul:first-of-type > li {
      height: 100%; }
    nav > ul:first-of-type > li > a.top-level {
      height: 100%;
      line-height: 2;
      padding-top: 23.5px; }
  nav > ul > li {
    display: inline-block;
    overflow-wrap: normal;
    -webkit-transition: all 0.275s ease-in-out;
    -moz-transition: all 0.275s ease-in-out;
    transition: all 0.275s ease-in-out; }
    nav > ul > li.active {
      background: #444e6a; }
      nav > ul > li.active > a {
        color: #ffffff; }
      nav > ul > li.active:hover > a {
        color: #ffffff; }
      nav > ul > li.active .submenu-wrapper {
        -webkit-transform: translateY(0%);
        -moz-transform: translateY(0%);
        -ms-transform: translateY(0%);
        transform: translateY(0%); }
    nav > ul > li a {
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
      display: block;
      padding: 0px 35px;
      color: #2c3245;
      font-size: 20px;
      font-weight: 700;
      text-decoration: none;
      -webkit-transition: all 0.275s ease-in-out;
      -moz-transition: all 0.275s ease-in-out;
      transition: all 0.275s ease-in-out; }
      nav > ul > li a:hover {
        color: #1a778d; }
    nav > ul > li:last-of-type {
      margin-right: 42px; }
  nav .submenu-wrapper {
    background: #1a1a1a;
    display: block;
    left: 0;
    max-width: 100%;
    position: absolute;
    -webkit-transform: translate3d(0, -300%, 0);
    -moz-transform: translate3d(0, -300%, 0);
    transform: translate3d(0, -300%, 0);
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -moz-transition-property: transform, -moz-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform, -moz-transform;
    -webkit-transition-timing-function: ease-out;
    -moz-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    width: 100%;
    z-index: -1; }
    nav .submenu-wrapper::after {
      content: "";
      display: table;
      clear: both; }
    nav .submenu-wrapper > ul > li {
      -webkit-transition: padding 300ms cubic-bezier(0.77, 0, 0.175, 1);
      -moz-transition: padding 300ms cubic-bezier(0.77, 0, 0.175, 1);
      transition: padding 300ms cubic-bezier(0.77, 0, 0.175, 1); }
  nav .submenu-wrapper:not(.operations) .has-sub-submenu:hover {
    padding-bottom: 25px; }
    nav .submenu-wrapper:not(.operations) .has-sub-submenu:hover > a {
      color: #1a778d; }
  nav .submenu-wrapper:not(.operations) .has-sub-submenu > a:before {
    content: '\f078';
    color: inherit;
    font-family: "Font Awesome 5 Pro";
    font-size: 12px;
    font-weight: 100;
    padding-right: 7px;
    position: relative;
    top: -2px; }
  nav .submenu-wrapper:not(.operations) .has-sub-submenu > ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    left: 50%;
    opacity: 0;
    position: absolute;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: opacity 300ms cubic-bezier(0.77, 0, 0.175, 1);
    -moz-transition: opacity 300ms cubic-bezier(0.77, 0, 0.175, 1);
    transition: opacity 300ms cubic-bezier(0.77, 0, 0.175, 1);
    width: 100%; }
    nav .submenu-wrapper:not(.operations) .has-sub-submenu > ul .subsub {
      color: rgba(175, 175, 175, 0.5);
      font-weight: 400;
      -webkit-transition: all 0.275s ease-in-out;
      -moz-transition: all 0.275s ease-in-out;
      transition: all 0.275s ease-in-out; }
      nav .submenu-wrapper:not(.operations) .has-sub-submenu > ul .subsub:hover {
        color: #1a778d; }
  nav .submenu {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    left: 0px;
    padding: 40px 0px;
    text-align: left;
    width: 100%; }
    nav .submenu > li {
      display: inline-block; }
      nav .submenu > li:first-of-type > a:not(.section-title) {
        border-left: none; }
    nav .submenu > li > a {
      border-left: 1px solid #ffffff;
      color: #ffffff;
      font-weight: 100;
      line-height: 1.25;
      padding: 0px 28px;
      position: relative;
      text-align: center; }
  nav .submenu-wrapper.operations .submenu {
    -webkit-box-align: inherit;
    -webkit-align-items: inherit;
    -moz-box-align: inherit;
    -ms-flex-align: inherit;
    align-items: inherit; }
  nav .submenu-wrapper.operations .submenu .has-sub-submenu:first-of-type {
    background: #262626; }
  nav .submenu-wrapper.operations .submenu .has-sub-submenu > ul {
    padding-top: 10px;
    text-align: left; }

.submenu-wrapper.operations {
  padding: 0px; }

.submenu-wrapper.operations .submenu {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 0px; }
  .submenu-wrapper.operations .submenu .has-sub-submenu {
    padding: 39px 0px 49px;
    width: -moz-calc(100% * 1/3);
    width: calc(100% * 1/3); }
    .submenu-wrapper.operations .submenu .has-sub-submenu a {
      border-left: none;
      color: #ffffff;
      font-weight: 100;
      line-height: 31px;
      padding: 0px 35px 0px 29px;
      text-align: left; }
    .submenu-wrapper.operations .submenu .has-sub-submenu .section-title {
      color: rgba(175, 175, 175, 0.5);
      font-size: 20px;
      font-weight: 600;
      text-transform: uppercase;
      pointer-Feasibility: none; }
    .submenu-wrapper.operations .submenu .has-sub-submenu:nth-of-type(1) {
      min-width: 287px;
      padding-left: 80px; }
    .submenu-wrapper.operations .submenu .has-sub-submenu:nth-of-type(2) {
      min-width: 625px; }
      .submenu-wrapper.operations .submenu .has-sub-submenu:nth-of-type(2) > ul {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
        -webkit-column-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px; }
  .submenu-wrapper.operations .submenu a.subsub {
    color: #ffffff;
    font-weight: 100;
    position: relative;
    -webkit-transform: translateX(-15px);
    -moz-transform: translateX(-15px);
    -ms-transform: translateX(-15px);
    transform: translateX(-15px);
    -webkit-transition: all 0.275s ease-in-out;
    -moz-transition: all 0.275s ease-in-out;
    transition: all 0.275s ease-in-out; }
    .submenu-wrapper.operations .submenu a.subsub > span {
      color: #555555;
      -webkit-transition: all 0.275s ease-in-out;
      -moz-transition: all 0.275s ease-in-out;
      transition: all 0.275s ease-in-out; }
    .submenu-wrapper.operations .submenu a.subsub:before {
      color: #ffffff;
      content: '\f054';
      font-family: "Font Awesome 5 Pro";
      font-size: 13px;
      font-weight: 100;
      opacity: 0;
      padding-right: 8px;
      position: relative;
      top: -1px;
      -webkit-transition: all 0.275s ease-in-out;
      -moz-transition: all 0.275s ease-in-out;
      transition: all 0.275s ease-in-out; }
    .submenu-wrapper.operations .submenu a.subsub:hover {
      color: #1a778d;
      -webkit-transform: translateX(0px);
      -moz-transform: translateX(0px);
      -ms-transform: translateX(0px);
      transform: translateX(0px); }
      .submenu-wrapper.operations .submenu a.subsub:hover:before {
        opacity: 1; }
      .submenu-wrapper.operations .submenu a.subsub:hover > span {
        color: #1a778d; }

#mobile-navigation {
  display: none; }

#mobile-navigation {
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000; }
  #mobile-navigation .mobile-menu {
    display: none; }
  #mobile-navigation .mobile-top-bar {
    -webkit-box-align: right;
    -webkit-align-items: right;
    -moz-box-align: right;
    -ms-flex-align: right;
    align-items: right;
    background: #ffffff;
    color: white;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    height: 100px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 20px;
    width: 100%; }
    #mobile-navigation .mobile-top-bar .mobile-logo {
      display: inline-block;
      height: 100%;
      padding: 0px;
      width: 100%; }
      #mobile-navigation .mobile-top-bar .mobile-logo img {
        max-width: 250px;
        -webkit-transition: all 0.275s ease-in-out;
        -moz-transition: all 0.275s ease-in-out;
        transition: all 0.275s ease-in-out; }
      #mobile-navigation .mobile-top-bar .mobile-logo .logo-inverse {
        display: none; }
      #mobile-navigation .mobile-top-bar .mobile-logo .logo-normal {
        display: block; }
    #mobile-navigation .mobile-top-bar #mobile-search {
      border-right: 1px solid #323232;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
      cursor: pointer;
      padding: 0px 20px 0px 0px;
      position: relative;
      top: 5px; }
      #mobile-navigation .mobile-top-bar #mobile-search i {
        color: #323232;
        font-size: 23px;
        font-weight: 100; }
    #mobile-navigation .mobile-top-bar #hamburger {
      color: #28292a;
      cursor: pointer;
      display: block;
      font-size: 32px;
      padding-left: 20px;
      z-index: 1000; }
      #mobile-navigation .mobile-top-bar #hamburger .bar {
        -webkit-transition: all .7s ease;
        -moz-transition: all .7s ease;
        transition: all .7s ease;
        display: block;
        height: 1px;
        width: 30px;
        background: #1a1a1a;
        margin: 8px auto;
        -webkit-transition: all 0.275s ease-in-out;
        -moz-transition: all 0.275s ease-in-out;
        transition: all 0.275s ease-in-out; }
      #mobile-navigation .mobile-top-bar #hamburger.selected .bar:nth-of-type(1) {
        -webkit-transform: translateY(9px) rotateZ(45deg);
        -moz-transform: translateY(9px) rotateZ(45deg);
        -ms-transform: translateY(9px) rotate(45deg);
        transform: translateY(9px) rotateZ(45deg); }
      #mobile-navigation .mobile-top-bar #hamburger.selected .bar:nth-of-type(2) {
        width: 0; }
      #mobile-navigation .mobile-top-bar #hamburger.selected .bar:nth-of-type(3) {
        -webkit-transform: translateY(-9px) rotateZ(-45deg);
        -moz-transform: translateY(-9px) rotateZ(-45deg);
        -ms-transform: translateY(-9px) rotate(-45deg);
        transform: translateY(-9px) rotateZ(-45deg); }
    #mobile-navigation .mobile-top-bar.bg-switch {
      background: #1a1a1a; }
      #mobile-navigation .mobile-top-bar.bg-switch .logo-inverse {
        display: block; }
      #mobile-navigation .mobile-top-bar.bg-switch .logo-normal {
        display: none; }
      #mobile-navigation .mobile-top-bar.bg-switch #hamburger .bar {
        background: #ffffff; }
  #mobile-navigation .mobile-menu {
    background: rgba(245, 245, 255, 0.95);
    margin: 0px;
    padding: 70px 93px;
    text-align: left;
    height: -moz-calc(100vh - 100px);
    height: calc(100vh - 100px);
    overflow-y: scroll; }
  #mobile-navigation ul li {
    display: block; }
  #mobile-navigation > ul > li:first-of-type > a {
    padding-top: 0px; }
  #mobile-navigation > ul > li a {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #2c3245;
    cursor: pointer;
    display: block;
    font-family: "franklin-gothic-urw", sans;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1;
    padding: 15px 20px 15px 0px;
    position: relative;
    text-decoration: none;
    width: 100%; }
  #mobile-navigation > ul > li a.has-submenu:before {
    content: '\f078';
    color: #ACA8A4;
    font-family: "Font Awesome 5 Pro";
    font-size: 16px;
    font-weight: 400;
    left: -50px;
    position: absolute;
    top: 18px;
    -webkit-transition: all 0.275s ease-in-out;
    -moz-transition: all 0.275s ease-in-out;
    transition: all 0.275s ease-in-out; }
  #mobile-navigation > ul > li a.has-submenu.active {
    border-bottom: none; }
  #mobile-navigation > ul > li a.has-submenu.active:before {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg); }
  #mobile-navigation > ul > li a.has-submenu + ul {
    display: none; }
  #mobile-navigation > ul > li > ul > li {
    padding: 0px; }
  #mobile-navigation > ul > li a.subsub {
    color: #999999;
    padding-left: 20px;
    font-weight: 400; }
  #mobile-navigation .mobile-sub-menu {
    padding-left: 0px; }
    #mobile-navigation .mobile-sub-menu > li.hidden {
      display: none; }
    #mobile-navigation .mobile-sub-menu > li a {
      color: #999999;
      padding: 15px 0px;
      text-decoration: none;
      text-transform: none; }
    #mobile-navigation .mobile-sub-menu > li:last-of-type a {
      border-bottom: none; }
    #mobile-navigation .mobile-sub-menu .title {
      color: #2c3245;
      font-size: 20px;
      font-weight: 700;
      pointer-Feasibility: none;
      text-transform: uppercase; }
  #mobile-navigation .mobile-stock {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    #mobile-navigation .mobile-stock > div {
      color: #444e6a;
      font-size: 16px;
      font-weight: 700;
      text-transform: uppercase;
      padding: 20px 0px; }
      #mobile-navigation .mobile-stock > div span {
        color: #ffffff; }

#mobile-navigation > ul > li:last-of-type a.has-submenu {
  border-bottom: none; }

/* MOBILE SEARCH FORM */
.mobile-search {
  border: none;
  height: 0;
  left: 0;
  position: absolute;
  top: 100px;
  width: 100%;
  z-index: 1;
  -webkit-transition: all 0.275s ease-in-out;
  -moz-transition: all 0.275s ease-in-out;
  transition: all 0.275s ease-in-out; }
  .mobile-search input {
    border: none;
    color: #444e6a;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    display: none;
    padding: 10px 20px;
    width: 100%;
    -webkit-appearance: none; }
  .mobile-search.active {
    height: 60px;
    width: 100%; }
    .mobile-search.active input {
      border-radius: 0;
      display: block;
      height: 60px;
      -webkit-appearance: none; }
      .mobile-search.active input:focus, .mobile-search.active input:active {
        border-radius: 0; }

.ie11 #mobile-navigation .mobile-top-bar #mobile-search {
  max-height: 26px; }

.ie11 #mobile-navigation .mobile-top-bar .mobile-logo {
  margin-top: -6px; }

@-webkit-keyframes fade-in-up {
  0% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  100% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@-moz-keyframes fade-in-up {
  0% {
    -moz-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
    -moz-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  100% {
    -moz-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 1;
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes fade-in-up {
  0% {
    -webkit-animation-timing-function: ease-in;
    -moz-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
    -webkit-transform: translate3d(0, 5px, 0);
    -moz-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  100% {
    -webkit-animation-timing-function: ease-in;
    -moz-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.wrapper {
  padding: 0px;
  color: #6f7074; }
  .wrapper > p {
    margin-bottom: 50px; }

.tabs {
  margin-top: 40px; }
  .tabs > div > div > *,
  .tabs > div > div > ul > li,
  .tabs > div > div > ol > li {
    color: #444e6a; }
  .tabs > div > div {
    display: none;
    position: relative;
    z-index: 1; }
  .tabs > div > div.active {
    display: block;
    -webkit-animation-duration: 0.35s;
    -moz-animation-duration: 0.35s;
    animation-duration: 0.35s;
    -webkit-animation-name: fade-in-up;
    -moz-animation-name: fade-in-up;
    animation-name: fade-in-up;
    display: block; }
  .tabs > ul > .dropdown > ul {
    display: none; }
  .tabs > ul > .dropdown.dropdownactive > ul {
    display: block; }
  .tabs .tab-slider {
    background-color: #ACA8A4;
    height: 10px;
    position: absolute;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    bottom: -10px;
    width: 127px;
    z-index: 2; }
  .tabs > ul {
    border-bottom: 10px solid #444e6a;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    list-style: outside none none;
    margin: 0px 0px 20px 0px;
    padding: 0px;
    position: relative;
    width: 100%;
    z-index: 999; }
    .tabs > ul li {
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
      color: #444e6a;
      cursor: pointer;
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      font-family: "franklin-gothic-urw", sans;
      font-size: 18px;
      font-weight: 700;
      padding: 5px 20px 9px;
      position: relative;
      text-align: center;
      text-transform: uppercase;
      -webkit-transition: all 0.3s ease-in;
      -moz-transition: all 0.3s ease-in;
      transition: all 0.3s ease-in; }
  .tabs > div {
    color: #6f7074; }
  .tabs > ul > li.dropdownactive {
    background: transparent;
    color: #444e6a; }
  .tabs > ul > li.dropdown > ul {
    background: #ffffff;
    border-bottom: 1px solid #d7d7d7;
    border-left: 1px solid #d7d7d7;
    border-right: 1px solid #d7d7d7;
    right: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: -moz-calc(100% + 10px);
    top: calc(100% + 10px);
    width: 292px;
    z-index: 10001; }
    .tabs > ul > li.dropdown > ul > li {
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
      cursor: pointer;
      margin: 0;
      padding: 8px 10px;
      text-align: left;
      width: 100%; }
      .tabs > ul > li.dropdown > ul > li:hover {
        color: #444e6a; }

/* TAB SELECT DROPDOWN */
.tabs .select-wrap {
  display: none;
  margin-bottom: 30px;
  position: relative; }
  .tabs .select-wrap:after {
    color: #444e6a;
    content: '\f078';
    font-family: "Font Awesome 5 Pro";
    font-weight: 600;
    height: 100%;
    pointer-Feasibility: none;
    position: absolute;
    right: 0;
    top: -moz-calc(50% - 8px);
    top: calc(50% - 8px);
    width: 10%;
    z-index: 1; }
  .tabs .select-wrap select {
    -moz-appearance: none;
    appearance: none;
    border: 2px solid #444e6a;
    border-radius: 0px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #444e6a;
    cursor: pointer;
    display: none;
    font-family: "franklin-gothic-urw", sans;
    font-size: 20px;
    margin: 0;
    outline: none;
    padding: 21px 30px;
    width: 100%;
    -moz-appearance: window;
    -webkit-appearance: none; }

.tabs .select-wrap select::-ms-expand {
  display: none; }

/*****************************/
/* Moving Line */
/*****************************/
.tab-slider {
  left: 0; }

.tabs-style-linemove nav {
  background: #fff; }

.tabs-style-linemove nav li:last-child::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #2CC185;
  content: '';
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -moz-transition: transform 0.3s, -moz-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s, -moz-transform 0.3s; }

/* Move the line */
.tabs-style-linemove nav li:first-child.tab-current ~ li:last-child::before {
  -webkit-transform: translate3d(-400%, 0, 0);
  -moz-transform: translate3d(-400%, 0, 0);
  transform: translate3d(-400%, 0, 0); }

.tabs-style-linemove nav li:nth-child(2).tab-current ~ li:last-child::before {
  -webkit-transform: translate3d(-300%, 0, 0);
  -moz-transform: translate3d(-300%, 0, 0);
  transform: translate3d(-300%, 0, 0); }

.tabs-style-linemove nav li:nth-child(3).tab-current ~ li:last-child::before {
  -webkit-transform: translate3d(-200%, 0, 0);
  -moz-transform: translate3d(-200%, 0, 0);
  transform: translate3d(-200%, 0, 0); }

.tabs-style-linemove nav li:nth-child(4).tab-current ~ li:last-child::before {
  -webkit-transform: translate3d(-100%, 0, 0);
  -moz-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0); }

.tabs-style-linemove nav a {
  padding: 1em 0;
  color: #74777b;
  line-height: 1;
  -webkit-transition: color 0.3s, -webkit-transform 0.3s;
  transition: color 0.3s, -webkit-transform 0.3s;
  -moz-transition: color 0.3s, transform 0.3s, -moz-transform 0.3s;
  transition: color 0.3s, transform 0.3s;
  transition: color 0.3s, transform 0.3s, -webkit-transform 0.3s, -moz-transform 0.3s; }

.tabs-style-linemove nav li.tab-current a {
  color: #2CC185;
  -webkit-transform: translate3d(0, 8px, 0);
  -moz-transform: translate3d(0, 8px, 0);
  transform: translate3d(0, 8px, 0); }

.tabs-style-linemove nav a span {
  font-weight: 700; }

/* EMAIL SIGNUP */
#subscribe,
#request-info {
  display: block;
  width: 100%; }
  #subscribe::after,
  #request-info::after {
    content: "";
    display: table;
    clear: both; }
  #subscribe .form-subgroup,
  #request-info .form-subgroup {
    display: block;
    position: relative; }
    #subscribe .form-subgroup::after,
    #request-info .form-subgroup::after {
      content: "";
      display: table;
      clear: both; }
    #subscribe .form-subgroup .check-label,
    #request-info .form-subgroup .check-label {
      color: #444e6a !important;
      margin-bottom: 0px;
      padding-bottom: 0px;
      -webkit-transform: none !important;
      -moz-transform: none !important;
      -ms-transform: none !important;
      transform: none !important;
      top: -5px; }
  #subscribe .form-group,
  #request-info .form-group {
    display: block;
    height: 60px;
    margin-bottom: 10px;
    max-width: 500px;
    overflow: hidden;
    position: relative;
    vertical-align: top;
    width: 100%;
    z-index: 1; }
    #subscribe .form-group::after,
    #request-info .form-group::after {
      content: "";
      display: table;
      clear: both; }
    #subscribe .form-group label,
    #request-info .form-group label {
      color: #444e6a;
      display: block;
      left: 25px;
      font-family: "franklin-gothic-urw", sans;
      font-weight: 400;
      position: absolute;
      top: 21px;
      -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      -moz-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      -webkit-transform-origin: bottom left;
      -moz-transform-origin: bottom left;
      -ms-transform-origin: bottom left;
      transform-origin: bottom left; }
    #subscribe .form-group.no-transform,
    #request-info .form-group.no-transform {
      height: auto;
      overflow: visible; }
      #subscribe .form-group.no-transform label,
      #request-info .form-group.no-transform label {
        display: table-cell;
        left: 0px;
        position: relative; }
        #subscribe .form-group.no-transform label.default,
        #request-info .form-group.no-transform label.default {
          margin-bottom: 0px;
          padding-bottom: 10px;
          top: initial; }
    #subscribe .form-group.add-overflow,
    #request-info .form-group.add-overflow {
      display: block;
      height: 200px;
      position: relative;
      overflow: visible; }
  #subscribe input[type=text],
  #subscribe textarea,
  #request-info input[type=text],
  #request-info textarea {
    background-image: -moz-linear-gradient(transparent -moz-calc(100% - 3px), #444e6a 3px);
    background-image: linear-gradient(transparent calc(100% - 3px), #444e6a 3px);
    background-repeat: no-repeat;
    background-size: 0% 100%;
    border: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #444e6a;
    display: inline;
    font-size: 20px;
    font-weight: 600;
    position: relative;
    padding: 3px 20px 5px 24px;
    height: 100%;
    line-height: 25px;
    text-decoration: none;
    -webkit-transition: background-size 0.65s;
    -moz-transition: background-size 0.65s;
    transition: background-size 0.65s;
    width: 100%; }
  #subscribe input[type=checkbox],
  #request-info input[type=checkbox] {
    opacity: 0;
    visibility: hidden; }
    #subscribe input[type=checkbox] + label,
    #request-info input[type=checkbox] + label {
      background-image: url(../img/favicon/unchecked2.png);
      padding: 0px 0 5px 47px;
      height: 30px;
      display: inline-block;
      background-repeat: no-repeat;
      background-position: 0 0;
      vertical-align: middle;
      cursor: pointer; }
    #subscribe input[type=checkbox]:checked + label,
    #request-info input[type=checkbox]:checked + label {
      background-image: url(../img/favicon/checked.png); }
  #subscribe textarea,
  #request-info textarea {
    height: 200px;
    padding-top: 20px;
    width: 100%; }
  #subscribe select,
  #request-info select {
    background: url(../img/favicon/selectarrow.png) no-repeat right center;
    border: none;
    border-radius: 0px;
    background-color: #ffffff;
    cursor: pointer;
    color: #444e6a;
    height: 60px;
    padding-left: 25px;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none; }
  #subscribe input[type="text"]:not(checkbox):focus ~ label,
  #subscribe input[type="text"][data-empty="false"] ~ label,
  #subscribe textarea:focus ~ label,
  #subscribe textarea[data-empty="false"] ~ label,
  #request-info input[type="text"]:not(checkbox):focus ~ label,
  #request-info input[type="text"][data-empty="false"] ~ label,
  #request-info textarea:focus ~ label,
  #request-info textarea[data-empty="false"] ~ label {
    color: #afafaf;
    -webkit-transform: scale(0.85) translateY(-23px);
    -moz-transform: scale(0.85) translateY(-23px);
    -ms-transform: scale(0.85) translateY(-23px);
    transform: scale(0.85) translateY(-23px); }
  #subscribe input[type="text"]:focus,
  #request-info input[type="text"]:focus {
    background-size: 100% 100%; }
  #subscribe textarea:focus,
  #request-info textarea:focus {
    background-size: 100% 100%; }
  #subscribe .error input[type=text],
  #request-info .error input[type=text] {
    background-image: -moz-linear-gradient(transparent -moz-calc(100% - 3px), #ACA8A4 3px);
    background-image: linear-gradient(transparent calc(100% - 3px), #ACA8A4 3px);
    background-size: 100% 100%; }
  #subscribe .error-tooltip,
  #request-info .error-tooltip {
    background: #333;
    color: #ffffff;
    display: none;
    font-size: 12px;
    left: 0px;
    padding: 10px 15px;
    opacity: 0;
    position: absolute;
    top: -15px;
    width: 250px;
    -webkit-transition: all 0.275s ease-in-out;
    -moz-transition: all 0.275s ease-in-out;
    transition: all 0.275s ease-in-out; }
    #subscribe .error-tooltip:before,
    #request-info .error-tooltip:before {
      content: " ";
      border-style: solid;
      border-width: 10px 12px 0px 12px;
      border-color: #333 transparent transparent transparent;
      position: absolute;
      bottom: -10px; }
  #subscribe .show-tooltip .error-tooltip,
  #request-info .show-tooltip .error-tooltip {
    -webkit-animation: tooltip 5s 1;
    -moz-animation: tooltip 5s 1;
    animation: tooltip 5s 1;
    display: inline-block; }
  #subscribe button[type="submit"],
  #request-info button[type="submit"] {
    border: none;
    cursor: pointer; }

.recaptcha {
  display: block;
  opacity: 1;
  height: 78px;
  margin-top: 30px;
  position: relative;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out; }
  .recaptcha.show {
    margin-bottom: 0px; }

.str-subscribe .page-title:nth-of-type(2), .str-subscribe .cat-operations.str-overview main .container > .operations-overview > div > h2:nth-of-type(2):first-of-type, .cat-operations.str-overview main .str-subscribe .container > .operations-overview > div > h2:nth-of-type(2):first-of-type, .str-subscribe .cat-operations.str-overview main .stock-bar > div > .operations-overview > div > h2:nth-of-type(2):first-of-type, .cat-operations.str-overview main .str-subscribe .stock-bar > div > .operations-overview > div > h2:nth-of-type(2):first-of-type, .str-subscribe .cat-operations.str-overview main .main-menu > div > .operations-overview > div > h2:nth-of-type(2):first-of-type, .cat-operations.str-overview main .str-subscribe .main-menu > div > .operations-overview > div > h2:nth-of-type(2):first-of-type, .str-subscribe .cat-operations.str-overview main nav .submenu-wrapper > .operations-overview > div > h2:nth-of-type(2):first-of-type, .cat-operations.str-overview main nav .str-subscribe .submenu-wrapper > .operations-overview > div > h2:nth-of-type(2):first-of-type, .str-subscribe nav .cat-operations.str-overview main .submenu-wrapper > .operations-overview > div > h2:nth-of-type(2):first-of-type, nav .cat-operations.str-overview main .str-subscribe .submenu-wrapper > .operations-overview > div > h2:nth-of-type(2):first-of-type, .str-subscribe .investor-overview__top--right h2:nth-of-type(2), .investor-overview__top--right .str-subscribe h2:nth-of-type(2), .str-subscribe .gallery-container > h2:nth-of-type(2) {
  display: none; }

#error-message-box {
  display: none;
  background: #ACA8A4;
  color: #ffffff;
  padding: 30px;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  margin-bottom: 30px; }

body.ri-error #error-message-box {
  display: block; }

body.ri-error #error-message-box .fa {
  font-size: 25px;
  margin: 0 35px 0 0;
  float: left; }

footer {
  bottom: 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  height: 300px;
  position: absolute;
  width: 100%;
  z-index: 2; }
  footer h2,
  footer h3 {
    margin: 0; }
  footer > div:nth-of-type(1) {
    background: #2c3245;
    width: 58%; }
  footer > div:nth-of-type(2) {
    background: #242938;
    width: 42%; }

.footer-left > div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 54px;
  padding-left: 40px;
  padding-top: 147px; }
  .footer-left > div ul {
    list-style: none;
    margin: 0;
    padding-left: 80px; }
    .footer-left > div ul li {
      line-height: 1; }
    .footer-left > div ul li a {
      color: rgba(255, 255, 255, 0.7);
      font-size: 14px;
      line-height: 1;
      text-decoration: none;
      -webkit-transition: all 0.275s ease-in-out;
      -moz-transition: all 0.275s ease-in-out;
      transition: all 0.275s ease-in-out; }
      .footer-left > div ul li a:hover {
        color: #29B6D9; }
  .footer-left > div h3 {
    color: rgba(250, 250, 250, 0.7);
    font-size: 30px;
    font-weight: 400;
    line-height: 1; }
    .footer-left > div h3.copper-price > span {
      padding-left: 0px; }
    .footer-left > div h3 > span {
      padding-left: 22px; }
  .footer-left > div .down {
    color: #9EC9C;
    font-weight: 100; }
  .footer-left > div .up {
    color: #29B6D9;
    font-weight: 100; }
  .footer-left > div.footer-left__copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    padding: 0px 0px 10px 40px; }
    .footer-left > div.footer-left__copyright > span:nth-of-type(1) {
      padding-left: 0px;
      padding-right: 20px;
      border-right: 1px solid rgba(255, 255, 255, 0.7); }
    .footer-left > div.footer-left__copyright > span:nth-of-type(2) {
      padding-left: 10px;
      padding-right: 10px;
      border-right: 1px solid rgba(255, 255, 255, 0.7); }
    .footer-left > div.footer-left__copyright > span:nth-of-type(3) {
      padding-left: 20px;
      padding-right: 0px; }
    .footer-left > div.footer-left__copyright > span a {
      color: rgba(255, 255, 255, 0.7);
      font-weight: 700;
      line-height: 0;
      text-decoration: none;
      text-transform: uppercase;
      -webkit-transition: all 0.275s ease-in-out;
      -moz-transition: all 0.275s ease-in-out;
      transition: all 0.275s ease-in-out; }
      .footer-left > div.footer-left__copyright > span a:hover {
        color: #1a778d; }
    .footer-left > div.footer-left__copyright > span a i {
      color: rgba(255, 255, 255, 0.7);
      padding: 0 5px;
      font-size: 16px;
      font-weight: 400;
      text-transform: uppercase;
      -webkit-transition: all 0.275s ease-in-out;
      -moz-transition: all 0.275s ease-in-out;
      transition: all 0.275s ease-in-out; }
      .footer-left > div.footer-left__copyright > span a i:hover {
        color: #1a778d; }

.footer-right {
  padding-right: 90px;
  padding-top: 170px; }
  .footer-right > div {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    width: 100%; }
  .footer-right h2 {
    color: rbga(#ffffff, 0.7);
    font-size: 30px;
    padding-right: 35px;
    padding-top: 5px; }
    .footer-right h2:before {
      color: #afafaf;
      content: '\f054';
      font-family: "Font Awesome 5 Pro";
      font-size: 24px;
      font-weight: 600;
      padding-right: 10px;
      position: relative;
      top: -1px; }
  .footer-right .button.teal:hover {
    background: #104b59; }

.button {
  background: #444e6a;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-family: "franklin-gothic-urw", sans;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .5px;
  line-height: 1;
  outline: none;
  padding: 17px 15px;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: all 0.275s ease-in-out;
  -moz-transition: all 0.275s ease-in-out;
  transition: all 0.275s ease-in-out; }
  .button.document {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: inline-block;
    padding: 14px 15px; }
    .button.document.flex {
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      display: flex; }
      .button.document.flex:before {
        padding-right: 12px;
        font-size: 24px; }
    .button.document.external:before {
      content: '\f14c';
      font-weight: 400; }
    .button.document:before {
      color: #ffffff;
      content: '\f15c';
      font-family: "Font Awesome 5 Pro";
      font-size: 18px;
      font-weight: 100;
      padding-right: 10px;
      -webkit-transition: all 0.275s ease-in-out;
      -moz-transition: all 0.275s ease-in-out;
      transition: all 0.275s ease-in-out; }
    .button.document.inverse {
      background-color: #ffffff;
      color: #2c3245; }
      .button.document.inverse:before {
        color: #2c3245; }
      .button.document.inverse:hover {
        background: #242938;
        color: #ffffff; }
        .button.document.inverse:hover:before {
          color: #ffffff; }
    .button.document.audio:before {
      content: '\f028'; }
      .button.document.hyperlink:before {
      content: '\f0c1'; }
  .button.arrow {
    position: relative;
    padding: 16px 34px 17px 20px;
    -webkit-transition: all .250s ease-in-out;
    -moz-transition: all .250s ease-in-out;
    transition: all .250s ease-in-out; }
    .button.arrow:after {
      color: #ffffff;
      content: '\f054';
      font-family: "Font Awesome 5 Pro";
      font-size: 14px;
      font-weight: 600;
      position: absolute;
      top: 18px;
      -webkit-transform: translateZ(0);
      -moz-transform: translateZ(0);
      transform: translateZ(0);
      -webkit-transform: translateX(9px);
      -moz-transform: translateX(9px);
      -ms-transform: translateX(9px);
      transform: translateX(9px);
      -webkit-transition-duration: 0.25s;
      -moz-transition-duration: 0.25s;
      transition-duration: 0.25s;
      -webkit-transition-property: -webkit-transform;
      transition-property: -webkit-transform;
      -moz-transition-property: transform, -moz-transform;
      transition-property: transform;
      transition-property: transform, -webkit-transform, -moz-transform;
      -webkit-transition-timing-function: ease-out;
      -moz-transition-timing-function: ease-out;
      transition-timing-function: ease-out; }
    .button.arrow:hover:after {
      -webkit-transform: translateX(14px);
      -moz-transform: translateX(14px);
      -ms-transform: translateX(14px);
      transform: translateX(14px); }
  .button.teal {
    background: #1a778d; }
  .button.red {
    background: #ACA8A4; }
  .button:hover {
    background: #242938;
    -webkit-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
    box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5); }
  .button.inverse-red {
    background: #ffffff;
    color: #ACA8A4;
    -webkit-transition-duration: 0.25s;
    -moz-transition-duration: 0.25s;
    transition-duration: 0.25s;
    -webkit-transition-property: background;
    -moz-transition-property: background;
    transition-property: background;
    -webkit-transition-timing-function: ease-out;
    -moz-transition-timing-function: ease-out;
    transition-timing-function: ease-out; }
    .button.inverse-red:after {
      color: #ACA8A4; }
    .button.inverse-red:hover {
      background: #242938;
      -webkit-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
      box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
      color: #ffffff; }
      .button.inverse-red:hover:after {
        color: #ffffff; }

.arrow-link {
  color: #444e6a;
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
  -webkit-transition: all 0.275s ease-in-out;
  -moz-transition: all 0.275s ease-in-out;
  transition: all 0.275s ease-in-out;
  text-transform: uppercase; }
  .arrow-link:after {
    color: #ACA8A4;
    content: '\f054';
    font-family: "Font Awesome 5 Pro";
    font-size: 15px;
    font-weight: 700;
    padding-left: 6px;
    position: relative;
    top: -1px;
    -webkit-transition-duration: 0.25s;
    -moz-transition-duration: 0.25s;
    transition-duration: 0.25s;
    -webkit-transition-property: padding;
    -moz-transition-property: padding;
    transition-property: padding;
    -webkit-transition-timing-function: ease-out;
    -moz-transition-timing-function: ease-out;
    transition-timing-function: ease-out; }
  .arrow-link:hover {
    color: #242938; }
  .arrow-link:hover:after {
    padding-left: 10px; }

.button-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 25px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 100%; }
  .button-row > .button {
    margin-bottom: 10px; }
    .button-row > .button:first-of-type {
      margin-right: 10px; }

#mobile-signup {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #1a778d;
  border-radius: 50%;
  bottom: 40px;
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
  display: none;
  height: 75px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
  overflow: hidden;
  position: fixed;
  right: 20px;
  text-decoration: none;
  -webkit-transition-delay: 0.2s;
  -moz-transition-delay: 0.2s;
  transition-delay: 0.2s;
  -webkit-transition: -webkit-box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  width: 75px;
  z-index: 5; }
  #mobile-signup > i {
    color: #ffffff;
    font-size: 28px;
    text-decoration: none; }
  #mobile-signup:active {
    -webkit-box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2);
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    transition-delay: 0s; }

.content-left .button {
  clear: both;
  margin-bottom: 10px; }
  .content-left .button.stack {
    float: left; }

html {
  padding-right: 0px !important;
  overflow: visible !important; }

body {
  background: #ededed;
  padding-bottom: 60px;
  position: relative; }

/* MISC */
.caption {
  margin-top: -12px; }
  .caption > p {
    color: #6f7074;
    font-size: 12px;
    font-style: italic; }
    .caption > p:first-of-type {
      margin-top: 0px; }

.leadership-scroll {
  display: none; }

.str-leadership .leadership-scroll {
  display: block; }

/* Found in Responsibility Section */
.text-indent-special {
  list-style: none;
  margin-bottom: 40px;
  padding-left: 35px; }
  .text-indent-special > li {
    border-left: 3px solid #ededed;
    padding-left: 15px; }

/* Highlight Text Block */
.highlight-text {
  background: #ffffff;
  border-left: 8px solid #ACA8A4;
  color: #444e6a;
  display: block;
  font-size: 25px;
  line-height: 30px;
  margin-bottom: 45px;
  padding: 15px 25px 15px 20px;
  width: 100%; }

/* Don't Display 2nd Page Title when clicking through to news/blog through Search */
.str-news main .page-title:first-of-type:not(:only-child), .str-news .cat-operations.str-overview main .container > .operations-overview > div > h2:first-of-type:not(:only-child), .cat-operations.str-overview .str-news main .container > .operations-overview > div > h2:first-of-type:not(:only-child), .str-news .cat-operations.str-overview main .stock-bar > div > .operations-overview > div > h2:first-of-type:not(:only-child), .cat-operations.str-overview .str-news main .stock-bar > div > .operations-overview > div > h2:first-of-type:not(:only-child), .str-news .cat-operations.str-overview main .main-menu > div > .operations-overview > div > h2:first-of-type:not(:only-child), .cat-operations.str-overview .str-news main .main-menu > div > .operations-overview > div > h2:first-of-type:not(:only-child), .str-news .cat-operations.str-overview main nav .submenu-wrapper > .operations-overview > div > h2:first-of-type:not(:only-child), .cat-operations.str-overview .str-news main nav .submenu-wrapper > .operations-overview > div > h2:first-of-type:not(:only-child), .str-news nav .cat-operations.str-overview main .submenu-wrapper > .operations-overview > div > h2:first-of-type:not(:only-child), nav .cat-operations.str-overview .str-news main .submenu-wrapper > .operations-overview > div > h2:first-of-type:not(:only-child), .str-news main .investor-overview__top--right h2:first-of-type:not(:only-child), .investor-overview__top--right .str-news main h2:first-of-type:not(:only-child), .str-news main .gallery-container > h2:first-of-type:not(:only-child),
.str-the-prospector main .page-title:first-of-type:not(:only-child),
.str-the-prospector .cat-operations.str-overview main .container > .operations-overview > div > h2:first-of-type:not(:only-child), .cat-operations.str-overview
.str-the-prospector main .container > .operations-overview > div > h2:first-of-type:not(:only-child),
.str-the-prospector .cat-operations.str-overview main .stock-bar > div > .operations-overview > div > h2:first-of-type:not(:only-child), .cat-operations.str-overview
.str-the-prospector main .stock-bar > div > .operations-overview > div > h2:first-of-type:not(:only-child),
.str-the-prospector .cat-operations.str-overview main .main-menu > div > .operations-overview > div > h2:first-of-type:not(:only-child), .cat-operations.str-overview
.str-the-prospector main .main-menu > div > .operations-overview > div > h2:first-of-type:not(:only-child),
.str-the-prospector .cat-operations.str-overview main nav .submenu-wrapper > .operations-overview > div > h2:first-of-type:not(:only-child), .cat-operations.str-overview
.str-the-prospector main nav .submenu-wrapper > .operations-overview > div > h2:first-of-type:not(:only-child),
.str-the-prospector nav .cat-operations.str-overview main .submenu-wrapper > .operations-overview > div > h2:first-of-type:not(:only-child), nav .cat-operations.str-overview
.str-the-prospector main .submenu-wrapper > .operations-overview > div > h2:first-of-type:not(:only-child),
.str-the-prospector main .investor-overview__top--right h2:first-of-type:not(:only-child), .investor-overview__top--right
.str-the-prospector main h2:first-of-type:not(:only-child),
.str-the-prospector main .gallery-container > h2:first-of-type:not(:only-child) {
  display: none; }

/* BANNER */
.banner {
  background: #1a1a1a;
  height: 550px;
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-transition: all 0.275s ease-in-out;
  -moz-transition: all 0.275s ease-in-out;
  transition: all 0.275s ease-in-out; }
  .banner::before {
    content: " ";
    z-index: 2;
    display: block;
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.2);
    -webkit-transition: background .275s ease-in-out;
    -moz-transition: background .275s ease-in-out;
    transition: background .275s ease-in-out; }
  .banner:before {
    background: rgba(26, 26, 26, 0.34); }
  .banner .bg {
    background-image: url(../img/banners/Services-Marketstudy.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    bottom: 0px;
    left: 0px;
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: 1; }
  .banner .wrapper {
    padding-left: 194px;
    pointer-Feasibility: none;
    position: relative;
    z-index: 2; }
    .banner .wrapper > h1 {
      color: #ffffff;
      margin: 0;
      padding-top: 245px;
      pointer-Feasibility: none; }

/* Page Specific Banners */
.str-about .banner .bg {
  background-image: url(../img/banners/Company-About.jpg); }

.str-careers .banner .bg {
  background-image: url(../img/banners/Company-Careers.jpg); }

.str-corporate-governance .banner .bg {
  background-image: url(../img/banners/Company-Corporate-Governance.jpg); }

.str-leadership .banner .bg {
  background-image: url(../img/banners/Company-Leadership.jpg); }

.str-strategy .banner .bg {
  background-image: url(../img/banners/strategy-banner.jpg); }

.str-Sapporo .banner .bg {
  background-image: url(../img/Theprospector/Mines-Sapporo.jpg); }

.str-Atacama-Clarita.banner .bg {
  background-image: url(../img/Theprospector/Mines-Clarita.jpg); }

.str-Elqui-Riocolorado.banner .bg {
  background-image: url(../img/Theprospector/Mines-Riocolorado.jpg); }

.str-Incahuasi-Catamarca .banner .bg {
  background-image: url(../img/Theprospector/Mines-Incahuasi.jpg); }

.str-LaSHiguera-coquimbo .banner .bg { 
background-image: url(../img/Theprospector/Sapporo-1.jpg); }

.str-Riohurtado .banner .bg {
  background-image: url(../img/Theprospector/Mines-Riohurtado.jpg); }

.str-santa-berta .banner .bg {
  background-image: url(../img/Theprospector/Mines-santaBerta.jpg); }
.cat-Services.str-overview .bg {
  background-image: url(../img/banners/Services-Overview.jpg); }

.str-Feasibility .banner .bg {
  background-image: url(../img/banners/Services-Feasibility.jpg); }

.str-Valuations .banner .bg {
  background-image: url(../img/banners/Services-Valuations.jpg); }

.str-Training  .banner .bg,
.str-news .banner .bg,
.str-media .banner .bg {background-image: url(../img/banners/Services-Training.jpg); }

.str-Mineral exploration & evaluation .banner .bg {
  background-image: url(../img/banners/Service-explorartion.jpg); }

.str-market Study .banner .bg {
  background-image: url(../img/banners/Services-Marketstudy.jpg); }

.str-financials-and-Mine Planning .banner .bg {
  background-image: url(../img/banners/Services-Mineplanning.jpg); }
  
  .cat-Services.str-contact .banner .bg {
  background-image: url(../img/banners/Services-Contact.jpg); }

.cat-Services.str-contact .banner .bg {
  background-image: url(../img/banners/Services-Contact.jpg); }


.str-Care .banner .bg {
  background-image: url(../img/banners/Responsibility-Care.jpg); }

.str-Grow .banner .bg {
  background-image: url(../img/banners/Responsibility-Grow.jpg); }

.str-Provide .banner .bg {
  background-image: url(../img/banners/Responsibility-Provide.jpg); }

.str-corporate-directory .banner .bg {
  background-image: url(../img/banners/Contact-Corporate-Directory.jpg); }

.str-request-information .banner .bg {
  background-image: url(../img/banners/Contact-Request-Info.jpg); }

.str-subscribe .banner .bg {
  background-image: url(../img/banners/Contact-Subscribe.jpg); }

main {
  padding: 0px;
  position: relative;
  pointer-Feasibility: none;
  width: 100%;
  z-index: 3; }
  main > .container, main.stock-bar > div, main.main-menu > div, nav main > .submenu-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    -webkit-transform: translateY(-150px);
    -moz-transform: translateY(-150px);
    -ms-transform: translateY(-150px);
    transform: translateY(-150px);
    z-index: 3;
    -webkit-transition: all 0.275s ease-in-out;
    -moz-transition: all 0.275s ease-in-out;
    transition: all 0.275s ease-in-out; }
    main > .container .content-left, main.stock-bar > div .content-left, main.main-menu > div .content-left, nav main > .submenu-wrapper .content-left {
      background-color: #fafafa;
      overflow: hidden;
      padding: 100px 135px 100px 156px;
      pointer-Feasibility: all;
      width: -moz-calc(100% - 491px);
      width: calc(100% - 491px);
      -webkit-transition: all 0.275s ease-in-out;
      -moz-transition: all 0.275s ease-in-out;
      transition: all 0.275s ease-in-out; }
      main > .container .content-left p, main.stock-bar > div .content-left p, main.main-menu > div .content-left p, nav main > .submenu-wrapper .content-left p, main > .container .content-left ul li, main.stock-bar > div .content-left ul li, main.main-menu > div .content-left ul li, nav main > .submenu-wrapper .content-left ul li, main > .container .content-left li, main.stock-bar > div .content-left li, main.main-menu > div .content-left li, nav main > .submenu-wrapper .content-left li {
        color: #444e6a; }
      main > .container .content-left img, main.stock-bar > div .content-left img, main.main-menu > div .content-left img, nav main > .submenu-wrapper .content-left img {
        max-width: 100%; }
  main .page-title, .cat-operations.str-overview main .container > .operations-overview > div > h2:first-of-type, .cat-operations.str-overview main .stock-bar > div > .operations-overview > div > h2:first-of-type, .cat-operations.str-overview main .main-menu > div > .operations-overview > div > h2:first-of-type, .cat-operations.str-overview main nav .submenu-wrapper > .operations-overview > div > h2:first-of-type, nav .cat-operations.str-overview main .submenu-wrapper > .operations-overview > div > h2:first-of-type, main .investor-overview__top--right h2, .investor-overview__top--right main h2, main .gallery-container > h2 {
    color: #444e6a;
    display: block;
    font-size: 30px;
    line-height: 35px;
    margin: 0px 0px 25px 0px;
    padding-bottom: 5px;
    border-bottom: 2px solid #444e6a; }
    main .page-title:before, .cat-operations.str-overview main .container > .operations-overview > div > h2:first-of-type:before, .cat-operations.str-overview main .stock-bar > div > .operations-overview > div > h2:first-of-type:before, .cat-operations.str-overview main .main-menu > div > .operations-overview > div > h2:first-of-type:before, .cat-operations.str-overview main nav .submenu-wrapper > .operations-overview > div > h2:first-of-type:before, nav .cat-operations.str-overview main .submenu-wrapper > .operations-overview > div > h2:first-of-type:before, main .investor-overview__top--right h2:before, .investor-overview__top--right main h2:before, main .gallery-container > h2:before {
      color: #ACA8A4;
      content: '\61';
      font-family: 'Intratec-chevron';
      font-size: 21px;
      padding-right: 3px;
      position: relative;
      top: 0px;
      left: -3px; }

.smaller-width {
  width: 85%; }

.sidebar {
  background: #2c3245;
  pointer-Feasibility: all;
  width: 491px;
  -webkit-transition: all 0.275s ease-in-out;
  -moz-transition: all 0.275s ease-in-out;
  transition: all 0.275s ease-in-out; }
  .sidebar__top {
    padding: 152px 50px 80px 119px;
    -webkit-transition: all 0.275s ease-in-out;
    -moz-transition: all 0.275s ease-in-out;
    transition: all 0.275s ease-in-out; }
  .sidebar__bottom {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .sidebar__bottom .quick-link, .sidebar__bottom .cat-responsibility.str-responsibility-overview .csr-hub__bottom > a, .cat-responsibility.str-responsibility-overview .sidebar__bottom .csr-hub__bottom > a {
      width: 50%; }
      .sidebar__bottom .quick-link span i, .sidebar__bottom .cat-responsibility.str-responsibility-overview .csr-hub__bottom > a span i, .cat-responsibility.str-responsibility-overview .sidebar__bottom .csr-hub__bottom > a span i {
        font-size: 31px; }
  .sidebar h4 {
    color: #fafafa;
    font-weight: 600;
    margin-top: 0px; }
  .sidebar .button:first-of-type {
    margin-bottom: 20px; }
  .sidebar ul {
    list-style: none;
    margin: 0px 0px 50px;
    padding-left: 2px; }
    .sidebar ul li {
      padding-bottom: 8px; }
      .sidebar ul li:last-of-type {
        padding-bottom: 0px; }
    .sidebar ul li a {
      color: rgba(250, 250, 250, 0.6);
      font-size: 18px;
      font-weight: 400;
      line-height: 1;
      position: relative;
      text-decoration: none;
      -webkit-transition: all 0.275s ease-in-out;
      -moz-transition: all 0.275s ease-in-out;
      transition: all 0.275s ease-in-out; }
      .sidebar ul li a:before {
        color: #ffffff;
        content: '\f054';
        font-family: "Font Awesome 5 Pro";
        font-size: 14px;
        font-weight: 600;
        left: -18px;
        opacity: 0;
        padding-right: 8px;
        position: absolute;
        top: 3px;
        -webkit-transition: all 0.275s ease-in-out;
        -moz-transition: all 0.275s ease-in-out;
        transition: all 0.275s ease-in-out; }
      .sidebar ul li a:hover {
        color: #1a778d; }
      .sidebar ul li a.current-sub {
        color: #29B6D9; }
        .sidebar ul li a.current-sub:before {
          opacity: 1; }
    .sidebar ul li > ul {
      margin-bottom: 12px;
      padding: 20px 0px 0px 20px; }
    .sidebar ul li > ul > li > a {
      font-size: 16px; }

.cat-operations .sidebar ul li > ul {
  padding-top: 0px; }

.sidebar-link-structure-mines > a {
  display: block;
  margin-bottom: 20px; }

.sidebar-link-structure-project > a {
  display: block;
  margin-bottom: 20px; }

/* TEAM MEMBERS */
.team-roster {
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 100%; }
  .team-roster .team-member {
    display: block;
    margin: 0px 15px 35px 15px;
    width: -moz-calc((100% * 1/3) - 20px);
    width: calc((100% * 1/3) - 20px);
    -webkit-transition: all 0.275s ease-in-out;
    -moz-transition: all 0.275s ease-in-out;
    transition: all 0.275s ease-in-out; }
    .team-roster .team-member:nth-of-type(3n+1) {
      margin-left: 0px; }
    .team-roster .team-member:nth-of-type(3n+3) {
      margin-right: 0px; }
    .team-roster .team-member * {
      text-decoration: none; }
    .team-roster .team-member__image {
      font-size: 35px;
      line-height: 0px;
      position: relative;
      -webkit-transition: all 600ms cubic-bezier(0.77, 0, 0.175, 1);
      -moz-transition: all 600ms cubic-bezier(0.77, 0, 0.175, 1);
      transition: all 600ms cubic-bezier(0.77, 0, 0.175, 1);
      z-index: 1; }
      .team-roster .team-member__image::before {
        content: " ";
        z-index: 2;
        display: block;
        position: absolute;
        height: 100%;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(26, 26, 26, 0.2);
        -webkit-transition: background .275s ease-in-out;
        -moz-transition: background .275s ease-in-out;
        transition: background .275s ease-in-out; }
      .team-roster .team-member__image:before {
        background: rgba(44, 50, 69, 0);
        -webkit-transition: all 600ms cubic-bezier(0.77, 0, 0.175, 1);
        -moz-transition: all 600ms cubic-bezier(0.77, 0, 0.175, 1);
        transition: all 600ms cubic-bezier(0.77, 0, 0.175, 1); }
      .team-roster .team-member__image:after {
        color: #fafafa;
        content: '\61';
        font-family: 'Intratec-chevron';
        font-size: 1em;
        opacity: 0;
        position: absolute;
        -webkit-transition: all 600ms cubic-bezier(0.77, 0, 0.175, 1);
        -moz-transition: all 600ms cubic-bezier(0.77, 0, 0.175, 1);
        transition: all 600ms cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 2;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        -webkit-transform: translateX(-300%);
        -moz-transform: translateX(-300%);
        -ms-transform: translateX(-300%);
        transform: translateX(-300%); }
    .team-roster .team-member:hover .team-member__image:before {
      background: rgba(44, 50, 69, 0.8); }
    .team-roster .team-member:hover .team-member__image:after {
      -webkit-transform: translateX(-50%);
      -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%);
      opacity: 1; }
    .team-roster .team-member h4 {
      color: #444e6a;
      font-weight: 600;
      margin: 14px 0px 0px; }
    .team-roster .team-member span {
      color: #444e6a;
      display: block;
      font-weight: 400;
      font-size: 20px;
      line-height: 25px; }
  .team-roster img {
    max-width: 100%; }

.team-roster .team-member.gallery:hover *, .team-roster .team-member.gallery:hover h4, .team-roster .team-member.gallery:hover span,
.team-roster .team-member.gallery:focus *,
.team-roster .team-member.gallery:focus h4,
.team-roster .team-member.gallery:focus span,
.team-roster .team-member.gallery:active *,
.team-roster .team-member.gallery:active h4,
.team-roster .team-member.gallery:active span {
  text-decoration: none !important; }

/* CUSTOM BIOS w/ FEATHERLIGHT */
.featherlight .featherlight-content .flex-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  max-width: 1370px;
  margin: 0 auto;
  width: 100%; }
  .featherlight .featherlight-content .flex-container .flex-left {
    opacity: 0;
    width: 546px;
    -webkit-transition: all 0.275s ease-in-out;
    -moz-transition: all 0.275s ease-in-out;
    transition: all 0.275s ease-in-out; }
    .featherlight .featherlight-content .flex-container .flex-left img {
      width: 100%; }
  .featherlight .featherlight-content .flex-container .flex-right {
    opacity: 0;
    padding-left: 45px;
    width: -moz-calc(100% - 546px);
    width: calc(100% - 546px);
    -webkit-transition: all 0.275s ease-in-out;
    -moz-transition: all 0.275s ease-in-out;
    transition: all 0.275s ease-in-out; }
  .featherlight .featherlight-content .flex-container .name {
    color: #444e6a;
    font-size: 25px;
    font-weight: 600;
    margin: 0px 0px 5px; }
  .featherlight .featherlight-content .flex-container .job-title {
    border-bottom: 2px solid #444e6a;
    color: #444e6a;
    display: block;
    font-size: 20px;
    padding-bottom: 15px;
    width: 100%; }
  .featherlight .featherlight-content .flex-container .bio > p {
    color: #444e6a;
    font-size: 18px;
    font-weight: 400; }

.featherlight:not(.photo-gallery) .featherlight-close-icon {
  background-color: transparent;
  width: 26px;
  cursor: pointer;
  color: #baaa62; }
  .featherlight:not(.photo-gallery) .featherlight-close-icon:hover {
    opacity: 0.8; }

.featherlight:not(.photo-gallery) .featherlight-content {
  background: #fafafa;
  margin-left: 80px;
  margin-right: 80px;
  max-height: 775px;
  overflow: hidden;
  padding: 160px 275px 185px 60px;
  width: -moz-calc(100% - 160px);
  width: calc(100% - 160px); }
  .featherlight:not(.photo-gallery) .featherlight-content .featherlight-next span .fal,
  .featherlight:not(.photo-gallery) .featherlight-content .featherlight-previous span .fal {
    font-family: "Font Awesome 5 Pro";
    font-size: 30px;
    font-weight: 400;
    text-shadow: none; }
  .featherlight:not(.photo-gallery) .featherlight-content .featherlight-close-icon {
    font-size: 30px;
    top: 25px;
    right: 25px; }

/* IE11 Bio Patches */
.ie11 .featherlight .featherlight-content .flex-container .flex-left {
  opacity: 0;
  -webkit-transition: all 0.275s ease-in-out;
  -moz-transition: all 0.275s ease-in-out;
  transition: all 0.275s ease-in-out; }
  .ie11 .featherlight .featherlight-content .flex-container .flex-left.fadeInBio {
    opacity: 1; }

.ie11 .featherlight .featherlight-content .flex-container .flex-right {
  opacity: 0;
  -webkit-transition: all 0.275s ease-in-out;
  -moz-transition: all 0.275s ease-in-out;
  transition: all 0.275s ease-in-out; }
  .ie11 .featherlight .featherlight-content .flex-container .flex-right.fadeInBio {
    opacity: 1; }

/* PHOTO GALLERY FEATHERLIGHT */
.featherlight.photo-gallery .featherlight-content {
  background: rgba(255, 255, 255, 0.9);
  padding: 25px;
  border-bottom: none;
  margin: 0;
  width: auto;
  max-height: none; }
  .featherlight.photo-gallery .featherlight-content .featherlight-next span .fa,
  .featherlight.photo-gallery .featherlight-content .featherlight-previous span .fa {
    color: #1a778d;
    -webkit-transition: all 0.275s ease-in-out;
    -moz-transition: all 0.275s ease-in-out;
    transition: all 0.275s ease-in-out; }
  .featherlight.photo-gallery .featherlight-content .featherlight-next:hover span .fa,
  .featherlight.photo-gallery .featherlight-content .featherlight-previous:hover span .fa {
    color: #ACA8A4; }
  .featherlight.photo-gallery .featherlight-content .featherlight-next {
    right: 2px; }
  .featherlight.photo-gallery .featherlight-content .featherlight-previous {
    left: 2px; }
  .featherlight.photo-gallery .featherlight-content .featherlight-next span .fal,
  .featherlight.photo-gallery .featherlight-content .featherlight-previous span .fal {
    text-shadow: none; }
  .featherlight.photo-gallery .featherlight-content .featherlight-close-icon {
    background: #1a778d;
    color: #ffffff; }
    .featherlight.photo-gallery .featherlight-content .featherlight-close-icon:hover {
      background: #ACA8A4; }

/* FULL WIDTH PAGES - Operations Overview, CSR Hub, Services Hub */
.cat-responsibility.str-responsibility-overview .banner,
.cat-operations.str-overview .banner,
.cat-Services.str-overview .banner,
.cat-company.str-strategy .banner {
  height: 740px; }
  .cat-responsibility.str-responsibility-overview .banner .wrapper,
  .cat-operations.str-overview .banner .wrapper,
  .cat-Services.str-overview .banner .wrapper,
  .cat-company.str-strategy .banner .wrapper {
    padding-left: 0px;
    text-align: center; }
  .cat-responsibility.str-responsibility-overview .banner .wrapper h1,
  .cat-operations.str-overview .banner .wrapper h1,
  .cat-Services.str-overview .banner .wrapper h1,
  .cat-company.str-strategy .banner .wrapper h1 {
    padding-top: 331px; }

.cat-responsibility.str-responsibility-overview main .container, .cat-responsibility.str-responsibility-overview main .stock-bar > div, .cat-responsibility.str-responsibility-overview main .main-menu > div, .cat-responsibility.str-responsibility-overview main nav .submenu-wrapper, nav .cat-responsibility.str-responsibility-overview main .submenu-wrapper,
.cat-operations.str-overview main .container,
.cat-operations.str-overview main .stock-bar > div,
.cat-operations.str-overview main .main-menu > div,
.cat-operations.str-overview main nav .submenu-wrapper, nav
.cat-operations.str-overview main .submenu-wrapper,
.cat-Services.str-overview main .container,
.cat-Services.str-overview main .stock-bar > div,
.cat-Services.str-overview main .main-menu > div,
.cat-Services.str-overview main nav .submenu-wrapper, nav
.cat-Services.str-overview main .submenu-wrapper,
.cat-company.str-strategy main .container,
.cat-company.str-strategy main .stock-bar > div,
.cat-company.str-strategy main .main-menu > div,
.cat-company.str-strategy main nav .submenu-wrapper, nav
.cat-company.str-strategy main .submenu-wrapper {
  display: block; }
  .cat-responsibility.str-responsibility-overview main .container p, .cat-responsibility.str-responsibility-overview main .stock-bar > div p, .cat-responsibility.str-responsibility-overview main .main-menu > div p, .cat-responsibility.str-responsibility-overview main nav .submenu-wrapper p, nav .cat-responsibility.str-responsibility-overview main .submenu-wrapper p, .cat-responsibility.str-responsibility-overview main .container ul li, .cat-responsibility.str-responsibility-overview main .stock-bar > div ul li, .cat-responsibility.str-responsibility-overview main .main-menu > div ul li, .cat-responsibility.str-responsibility-overview main nav .submenu-wrapper ul li, nav .cat-responsibility.str-responsibility-overview main .submenu-wrapper ul li, .cat-responsibility.str-responsibility-overview main .container ol li, .cat-responsibility.str-responsibility-overview main .stock-bar > div ol li, .cat-responsibility.str-responsibility-overview main .main-menu > div ol li, .cat-responsibility.str-responsibility-overview main nav .submenu-wrapper ol li, nav .cat-responsibility.str-responsibility-overview main .submenu-wrapper ol li,
  .cat-operations.str-overview main .container p,
  .cat-operations.str-overview main .stock-bar > div p,
  .cat-operations.str-overview main .main-menu > div p,
  .cat-operations.str-overview main nav .submenu-wrapper p, nav
  .cat-operations.str-overview main .submenu-wrapper p,
  .cat-operations.str-overview main .container ul li,
  .cat-operations.str-overview main .stock-bar > div ul li,
  .cat-operations.str-overview main .main-menu > div ul li,
  .cat-operations.str-overview main nav .submenu-wrapper ul li, nav
  .cat-operations.str-overview main .submenu-wrapper ul li,
  .cat-operations.str-overview main .container ol li,
  .cat-operations.str-overview main .stock-bar > div ol li,
  .cat-operations.str-overview main .main-menu > div ol li,
  .cat-operations.str-overview main nav .submenu-wrapper ol li, nav
  .cat-operations.str-overview main .submenu-wrapper ol li,
  .cat-Services.str-overview main .container p,
  .cat-Services.str-overview main .stock-bar > div p,
  .cat-Services.str-overview main .main-menu > div p,
  .cat-Services.str-overview main nav .submenu-wrapper p, nav
  .cat-Services.str-overview main .submenu-wrapper p,
  .cat-Services.str-overview main .container ul li,
  .cat-Services.str-overview main .stock-bar > div ul li,
  .cat-Services.str-overview main .main-menu > div ul li,
  .cat-Services.str-overview main nav .submenu-wrapper ul li, nav
  .cat-Services.str-overview main .submenu-wrapper ul li,
  .cat-Services.str-overview main .container ol li,
  .cat-Services.str-overview main .stock-bar > div ol li,
  .cat-Services.str-overview main .main-menu > div ol li,
  .cat-Services.str-overview main nav .submenu-wrapper ol li, nav
  .cat-Services.str-overview main .submenu-wrapper ol li,
  .cat-company.str-strategy main .container p,
  .cat-company.str-strategy main .stock-bar > div p,
  .cat-company.str-strategy main .main-menu > div p,
  .cat-company.str-strategy main nav .submenu-wrapper p, nav
  .cat-company.str-strategy main .submenu-wrapper p,
  .cat-company.str-strategy main .container ul li,
  .cat-company.str-strategy main .stock-bar > div ul li,
  .cat-company.str-strategy main .main-menu > div ul li,
  .cat-company.str-strategy main nav .submenu-wrapper ul li, nav
  .cat-company.str-strategy main .submenu-wrapper ul li,
  .cat-company.str-strategy main .container ol li,
  .cat-company.str-strategy main .stock-bar > div ol li,
  .cat-company.str-strategy main .main-menu > div ol li,
  .cat-company.str-strategy main nav .submenu-wrapper ol li, nav
  .cat-company.str-strategy main .submenu-wrapper ol li {
    color: #444e6a;
    font-weight: 400; }

.cat-operations.str-overview .banner .bg {
  background-image: url(../img/background/operations-overview-map-banner.jpg); }

.cat-operations.str-overview main .container > .operations-overview, .cat-operations.str-overview main .stock-bar > div > .operations-overview, .cat-operations.str-overview main .main-menu > div > .operations-overview, .cat-operations.str-overview main nav .submenu-wrapper > .operations-overview, nav .cat-operations.str-overview main .submenu-wrapper > .operations-overview {
  background: #fafafa;
  pointer-Feasibility: all; }

.cat-responsibility.str-responsibility-overview .banner .bg {
  background-image: url(../img/banners/Responsibility-Sustainability-banner.jpg); }

.cat-company.str-strategy main .container, .cat-company.str-strategy main .stock-bar > div, .cat-company.str-strategy main .main-menu > div, .cat-company.str-strategy main nav .submenu-wrapper, nav .cat-company.str-strategy main .submenu-wrapper {
  pointer-Feasibility: all; }

/* OPERATIONS OVERVIEW */
.mines-overview {
  padding: 60px 95px 50px;
  position: relative;
  -webkit-transition: all 0.275s ease-in-out;
  -moz-transition: all 0.275s ease-in-out;
  transition: all 0.275s ease-in-out; }
  .mines-overview .button {
    position: absolute;
    right: 95px;
    top: 43px; }

.projects-overview {
  background: #f3f6f7;
  padding: 60px 95px;
  -webkit-transition: all 0.275s ease-in-out;
  -moz-transition: all 0.275s ease-in-out;
  transition: all 0.275s ease-in-out; }
  .projects-overview > h2:first-of-type:before {
    color: #ACA8A4 !important; }

.project-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  -webkit-transition: all 0.275s ease-in-out;
  -moz-transition: all 0.275s ease-in-out;
  transition: all 0.275s ease-in-out; }
  .project-links > a {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    height: 576px;
    margin-bottom: 3px;
    margin-right: 3px;
    overflow: hidden;
    position: relative;
    width: -moz-calc(100% * 1/3 - 2px);
    width: calc(100% * 1/3 - 2px);
    z-index: 1;
    -webkit-transition: all 0.275s ease-in-out;
    -moz-transition: all 0.275s ease-in-out;
    transition: all 0.275s ease-in-out; }
    .project-links > a::before {
      content: " ";
      z-index: 2;
      display: block;
      position: absolute;
      height: 100%;
      top: 0;
      left: 0;
      right: 0;
      background: rgba(26, 26, 26, 0.2);
      -webkit-transition: background .275s ease-in-out;
      -moz-transition: background .275s ease-in-out;
      transition: background .275s ease-in-out; }
    .project-links > a:before {
      background: rgba(248, 137, 58, 0); }
    .project-links > a:nth-of-type(3n) {
      margin-right: 0px; }
  .project-links #laclarita {
    background-image: url(../img/Theprospector/laclarita-1.jpg); }
  .project-links #Sapporo {
    background-image: url(../img/Theprospector/Sapporo-1.jpg); }
  .project-links #LaIncahuasi {
    background-image: url(../img/Theprospector/LaIncahuasi-1.jpg); }
  .project-links #LaRioColorado {
    background-image: url(../img/Theprospector/LaRioColorado-1.jpg); }
  .project-links #Lariohurtado {
    background-image: url(../img/Theprospector/Lariohurtado-1.jpg); }
  .project-links #Lasantaberta {
    background-image: url(../img/Theprospector/Lasantaberta-1.jpg); }
  .project-links #LaSHiguera {
    background-image: url(../img/Theprospector/Sapporo-1.jpg); }
.project-links__item > * {
  text-decoration: none; }

.project-links__item > span {
  bottom: 30px;
  left: 50px;
  position: absolute;
  width: -moz-calc(100% - 100px);
  width: calc(100% - 100px);
  z-index: 2; }
  .project-links__item > span > span {
    color: #ffffff;
    display: block;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    -webkit-transform: translateY(85px);
    -moz-transform: translateY(85px);
    -ms-transform: translateY(85px);
    transform: translateY(85px);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.23, 1, 0.32, 1);
    transition: -webkit-transform 1s cubic-bezier(0.23, 1, 0.32, 1);
    -moz-transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1), -moz-transform 1s cubic-bezier(0.23, 1, 0.32, 1);
    transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1);
    transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 1s cubic-bezier(0.23, 1, 0.32, 1), -moz-transform 1s cubic-bezier(0.23, 1, 0.32, 1); }
    .project-links__item > span > span:before {
      content: "\f3c5";
      color: #ACA8A4;
      font-family: "Font Awesome 5 Pro";
      font-size: 16px;
      padding-right: 8px;
      -webkit-transition: all 0.275s ease-in-out;
      -moz-transition: all 0.275s ease-in-out;
      transition: all 0.275s ease-in-out; }
  .project-links__item > span > i {
    color: #ffffff;
    display: block;
    font-size: 47px;
    line-height: 87px;
    left: -6px;
    opacity: 0;
    position: relative;
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    -ms-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-transition: all 1.15s cubic-bezier(0.23, 1, 0.32, 1);
    -moz-transition: all 1.15s cubic-bezier(0.23, 1, 0.32, 1);
    transition: all 1.15s cubic-bezier(0.23, 1, 0.32, 1); }

.project-links__item h2 {
  color: #ffffff;
  margin: 0px 0px 3px;
  -webkit-transform: translateY(85px);
  -moz-transform: translateY(85px);
  -ms-transform: translateY(85px);
  transform: translateY(85px);
  -webkit-transition: -webkit-transform 0.85s cubic-bezier(0.23, 1, 0.32, 1);
  transition: -webkit-transform 0.85s cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition: transform 0.85s cubic-bezier(0.23, 1, 0.32, 1), -moz-transform 0.85s cubic-bezier(0.23, 1, 0.32, 1);
  transition: transform 0.85s cubic-bezier(0.23, 1, 0.32, 1);
  transition: transform 0.85s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.85s cubic-bezier(0.23, 1, 0.32, 1), -moz-transform 0.85s cubic-bezier(0.23, 1, 0.32, 1); }

.project-links__item:hover:before {
  background: rgba(248, 137, 58, 0.85); }

.project-links__item:hover > span > h2 {
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px); }

.project-links__item:hover > span > span {
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px); }

.project-links__item:hover > span > span:before {
  color: #ffffff; }

.project-links__item:hover > span > i {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px); }

.projects-overview .project-links > a > span > span:before {
  color: #ACA8A4; }

.projects-overview .project-links > a:hover:before {
  background: rgba(172, 80, 84, 0.85); }

.projects-overview .project-links > a:hover > span > span:before {
  color: #ffffff; }

/* CSR HUB */
.cat-responsibility.str-responsibility-overview .csr-hub {
  background: #fafafa;
  padding: 60px 0px 0px;
  pointer-Feasibility: all; }
  .cat-responsibility.str-responsibility-overview .csr-hub h2.page-title, .cat-responsibility.str-responsibility-overview .csr-hub .cat-operations.str-overview main .container > .operations-overview > div > h2:first-of-type, .cat-operations.str-overview main .cat-responsibility.str-responsibility-overview .csr-hub .container > .operations-overview > div > h2:first-of-type, .cat-responsibility.str-responsibility-overview .csr-hub .cat-operations.str-overview main .stock-bar > div > .operations-overview > div > h2:first-of-type, .cat-operations.str-overview main .cat-responsibility.str-responsibility-overview .csr-hub .stock-bar > div > .operations-overview > div > h2:first-of-type, .cat-responsibility.str-responsibility-overview .csr-hub .cat-operations.str-overview main .main-menu > div > .operations-overview > div > h2:first-of-type, .cat-operations.str-overview main .cat-responsibility.str-responsibility-overview .csr-hub .main-menu > div > .operations-overview > div > h2:first-of-type, .cat-responsibility.str-responsibility-overview .csr-hub .cat-operations.str-overview main nav .submenu-wrapper > .operations-overview > div > h2:first-of-type, .cat-operations.str-overview main nav .cat-responsibility.str-responsibility-overview .csr-hub .submenu-wrapper > .operations-overview > div > h2:first-of-type, .cat-responsibility.str-responsibility-overview .csr-hub nav .cat-operations.str-overview main .submenu-wrapper > .operations-overview > div > h2:first-of-type, nav .cat-operations.str-overview main .cat-responsibility.str-responsibility-overview .csr-hub .submenu-wrapper > .operations-overview > div > h2:first-of-type, .cat-responsibility.str-responsibility-overview .csr-hub .investor-overview__top--right h2, .investor-overview__top--right .cat-responsibility.str-responsibility-overview .csr-hub h2, .cat-responsibility.str-responsibility-overview .csr-hub .gallery-container > h2 {
    margin-left: 155px;
    margin-right: 155px;
    -webkit-transition: all 0.275s ease-in-out;
    -moz-transition: all 0.275s ease-in-out;
    transition: all 0.275s ease-in-out; }
  .cat-responsibility.str-responsibility-overview .csr-hub__top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0px 155px 30px; }
    .cat-responsibility.str-responsibility-overview .csr-hub__top > div {
      -webkit-transition: all 0.275s ease-in-out;
      -moz-transition: all 0.275s ease-in-out;
      transition: all 0.275s ease-in-out; }
    .cat-responsibility.str-responsibility-overview .csr-hub__top--left {
      min-width: 335px;
      width: -moz-calc(100% - 500px);
      width: calc(100% - 500px); }
    .cat-responsibility.str-responsibility-overview .csr-hub__top--right {
      padding-left: 65px;
      width: 500px; }
  .cat-responsibility.str-responsibility-overview .csr-hub__bottom {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%; }
    .cat-responsibility.str-responsibility-overview .csr-hub__bottom > a {
      -webkit-transition: all 0.275s ease-in-out;
      -moz-transition: all 0.275s ease-in-out;
      transition: all 0.275s ease-in-out;
      height: 240px;
      margin-right: 3px;
      width: -moz-calc(100% * 1/3 - 2px);
      width: calc(100% * 1/3 - 2px); }
      .cat-responsibility.str-responsibility-overview .csr-hub__bottom > a::before {
        content: " ";
        z-index: 2;
        display: block;
        position: absolute;
        height: 100%;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(68, 78, 106, 0.15);
        -webkit-transition: background .275s ease-in-out;
        -moz-transition: background .275s ease-in-out;
        transition: background .275s ease-in-out; }
      .cat-responsibility.str-responsibility-overview .csr-hub__bottom > a:nth-of-type(1) {
        background-image: url(../img/banners/Responsibility-Care-1.jpg); }
      .cat-responsibility.str-responsibility-overview .csr-hub__bottom > a:nth-of-type(2) {
        background-image: url(../img/banners/Responsibility-Grow-background.jpg); }
      .cat-responsibility.str-responsibility-overview .csr-hub__bottom > a:nth-of-type(3) {
        background-image: url(../img/banners/Responsibility-Provide-background.jpg);
        margin-right: 0px; }
      .cat-responsibility.str-responsibility-overview .csr-hub__bottom > a > span {
        font-size: 45px;
        line-height: inherit; }
        .cat-responsibility.str-responsibility-overview .csr-hub__bottom > a > span > span > i {
          font-size: 40px; }
      .cat-responsibility.str-responsibility-overview .csr-hub__bottom > a:hover:before {
        background: rgba(248, 137, 58, 0.85); }

/* INVESTOR OVERVIEW */
.cat-Services.str-overview .investor-overview {
  background: #fafafa;
  pointer-Feasibility: all; }
  .cat-Services.str-overview .investor-overview .arrow-link {
    display: block;
    float: left;
    margin-top: 40px; }

.investor-overview__top--left > div h2 {
  color: #444e6a;
  font-size: 50px;
  line-height: 50px;
  margin: 0px; }
  .investor-overview__top--left > div h2:nth-of-type(2) {
    margin-top: 7px; }
  .investor-overview__top--left > div h2.copper-price > span {
    color: #444e6a; }
    .investor-overview__top--left > div h2.copper-price > span:nth-of-type(2) {
      padding-left: 30px; }
  .investor-overview__top--left > div h2 .up {
    color: #1a778d; }
  .investor-overview__top--left > div h2 .down {
    color: #ACA8A4; }

.investor-overview__top--left > div .stock-update {
  color: #444e6a;
  display: block;
  margin-top: 20px; }

.investor-overview__top {
  border-bottom: 2px solid #ededed;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%; }
  .investor-overview__top--left {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    padding: 141px 0px 60px 155px;
    width: 58.5%;
    -webkit-transition: all 0.275s ease-in-out;
    -moz-transition: all 0.275s ease-in-out;
    transition: all 0.275s ease-in-out; }
    .investor-overview__top--left > div:nth-of-type(1) {
      min-width: 335px;
      width: -moz-calc(100% - 450px);
      width: calc(100% - 450px); }
    .investor-overview__top--left > div:nth-of-type(2) {
      width: 450px; }
    .investor-overview__top--left .button {
      clear: left;
      display: block;
      float: left;
      margin-bottom: 10px;
      margin-right: 0px; }
  .investor-overview__top--right {
    background: #f3f6f7;
    padding: 60px 155px;
    width: 41.5%;
    -webkit-transition: all 0.275s ease-in-out;
    -moz-transition: all 0.275s ease-in-out;
    transition: all 0.275s ease-in-out; }
    .investor-overview__top--right p:last-of-type {
      margin-bottom: 0px; }

.investor-overview__bottom {
  padding: 60px 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  /* NEWS */ }
  .investor-overview__bottom h4 {
    color: #444e6a;
    font-weight: 700;
    margin-top: 0px;
    text-transform: uppercase; }
  .investor-overview__bottom > div {
    padding-right: 45px;
    width: -moz-calc(100% * 1/3);
    width: calc(100% * 1/3);
    -webkit-transition: all 0.275s ease-in-out;
    -moz-transition: all 0.275s ease-in-out;
    transition: all 0.275s ease-in-out; }
    .investor-overview__bottom > div:nth-of-type(1) {
      padding-left: 155px;
      padding-right: 45px; }
    .investor-overview__bottom > div:nth-of-type(2), .investor-overview__bottom > div:nth-of-type(3) {
      border-left: 2px solid #ededed;
      padding-left: 60px; }
    .investor-overview__bottom > div .news-item:last-of-type {
      margin-bottom: 0px; }
  .investor-overview__bottom .news-item {
    display: block;
    margin-bottom: 25px;
    width: 100%; }
    .investor-overview__bottom .news-item time {
      color: #ACA8A4;
      display: block;
      font-size: 14px;
      line-height: 20px; }
      .investor-overview__bottom .news-item time .fa {
        position: relative; }
      .investor-overview__bottom .news-item time .fa-calendar {
        font-size: 16px;
        top: -1px; }
      .investor-overview__bottom .news-item time span {
        color: #afafaf;
        font-weight: 100;
        padding: 0px 1px 0px 5px;
        position: relative;
        top: -2px; }
    .investor-overview__bottom .news-item a {
      background-image: -moz-linear-gradient(transparent -moz-calc(100% - 2px), #444e6a 2px);
      background-image: linear-gradient(transparent calc(100% - 2px), #444e6a 2px);
      background-repeat: no-repeat;
      background-size: 0% 100%;
      color: #2c3245;
      display: inline;
      font-size: 16px;
      line-height: 21px;
      padding-top: 3px;
      text-decoration: none;
      -webkit-transition: background-size 0.65s;
      -moz-transition: background-size 0.65s;
      transition: background-size 0.65s;
      padding: 1px 0px; }
      .investor-overview__bottom .news-item a:hover {
        background-size: 100% 100%; }

/* MISSION, VISION, VALUES */
.cat-company.str-strategy main > .container .strategy-overview, .cat-company.str-strategy main.stock-bar > div .strategy-overview, .cat-company.str-strategy main.main-menu > div .strategy-overview, .cat-company.str-strategy nav main > .submenu-wrapper .strategy-overview, nav .cat-company.str-strategy main > .submenu-wrapper .strategy-overview {
  background: #fafafa;
  padding-bottom: 30px; }

.cat-company.str-strategy main .container .content-left, .cat-company.str-strategy main .stock-bar > div .content-left, .cat-company.str-strategy main .main-menu > div .content-left, .cat-company.str-strategy main nav .submenu-wrapper .content-left, nav .cat-company.str-strategy main .submenu-wrapper .content-left {
  margin: 0 auto;
  max-width: 1215px;
  padding: 0px; }

.cat-company.str-strategy main .strategy-map-wrapper {
  overflow: hidden;
  width: 100%; }
  .cat-company.str-strategy main .strategy-map-wrapper img:first-of-type {
    display: block; }
  .cat-company.str-strategy main .strategy-map-wrapper img:nth-of-type(2) {
    display: none; }
  .cat-company.str-strategy main .strategy-map-wrapper img {
    max-width: 100%;
    width: 100%; }

.values-link-hub {
  background: #ffffff;
  -webkit-box-shadow: -1px 9px 23px -10px rgba(127, 140, 141, 0.75);
  box-shadow: -1px 9px 23px -10px rgba(127, 140, 141, 0.75);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  width: 100%;
  z-index: 4;
  -webkit-transition: all 0.275s ease-in-out;
  -moz-transition: all 0.275s ease-in-out;
  transition: all 0.275s ease-in-out; }
  .values-link-hub.shrunk {
    left: 0;
    margin: 0px -40px 0px;
    position: fixed;
    right: 0;
    top: 50px;
    width: -moz-calc(100% + 80px);
    width: calc(100% + 80px); }
    .values-link-hub.shrunk > a:nth-of-type(1) svg {
      height: 50px;
      width: 50px; }
    .values-link-hub.shrunk > a:nth-of-type(2) svg {
      height: 50px;
      width: 50px; }
    .values-link-hub.shrunk > a:nth-of-type(3) svg {
      height: 39px;
      width: 63px; }
    .values-link-hub.shrunk h4 {
      display: none; }
    .values-link-hub.shrunk h2 {
      border: none;
      line-height: 20px;
      padding: 0;
      margin: 0px auto;
      font-size: 20px; }
    .values-link-hub.shrunk > a {
      padding: 10px 0px; }
  .values-link-hub > a {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #ffffff;
    border-bottom: 10px solid #ffffff;
    cursor: pointer;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px 0px 25px;
    position: relative;
    text-decoration: none;
    width: -moz-calc(100% * 1/3);
    width: calc(100% * 1/3); }
    .values-link-hub > a > span {
      display: block;
      text-align: center;
      width: 90%; }
    .values-link-hub > a img, .values-link-hub > a svg {
      height: 100px;
      margin-top: 10px;
      width: 100px; }
    .values-link-hub > a h2 {
      border-bottom: 2px solid #444e6a;
      font-size: 40px;
      text-decoration: none;
      text-transform: uppercase;
      margin: 15px auto 0px;
      min-width: 320px;
      padding-bottom: 20px;
      width: 55%; }
    .values-link-hub > a h4 {
      font-size: 19px;
      margin: 15px auto 0px;
      text-decoration: none; }
    .values-link-hub > a svg h2 {
      margin: 10px 0px 10px;
      border-bottom: 2px solid #444e6a; }
    .values-link-hub > a svg .Care {
      path: #444e6a;
      stroke: #444e6a;
      fill: #444e6a;
      rect: #444e6a; }
    .values-link-hub > a svg .Grow {
      path: #ACA8A4;
      stroke: #ACA8A4;
      fill: #ACA8A4;
      rect: #ACA8A4; }
    .values-link-hub > a svg .Provide {
      path: #ACA8A4;
      stroke: #ACA8A4;
      fill: #ACA8A4;
      rect: #ACA8A4; }
    .values-link-hub > a:nth-of-type(1) h2, .values-link-hub > a:nth-of-type(1) h4 {
      color: #444e6a; }
    .values-link-hub > a:nth-of-type(1):hover {
      border-color: #444e6a; }
    .values-link-hub > a:nth-of-type(1).active {
      border-color: #444e6a; }
    .values-link-hub > a:nth-of-type(2) h2, .values-link-hub > a:nth-of-type(2) h4 {
      color: #ACA8A4; }
    .values-link-hub > a:nth-of-type(2) h2 {
      border-color: #ACA8A4; }
    .values-link-hub > a:nth-of-type(2):hover {
      border-color: #ACA8A4; }
    .values-link-hub > a:nth-of-type(2).active {
      border-color: #ACA8A4; }
    .values-link-hub > a:nth-of-type(3) h2, .values-link-hub > a:nth-of-type(3) h4 {
      color: #ACA8A4; }
    .values-link-hub > a:nth-of-type(3) h2 {
      border-color: #ACA8A4; }
    .values-link-hub > a:nth-of-type(3) svg {
      height: 78px;
      margin-top: 29px;
      width: 125px; }
    .values-link-hub > a:nth-of-type(3):hover {
      border-color: #ACA8A4; }
    .values-link-hub > a:nth-of-type(3).active {
      border-color: #ACA8A4; }

.values-banner {
  font-size: 0px;
  height: 390px;
  line-height: 0px;
  margin-top: 80px;
  position: relative;
  width: 100%; }
  .values-banner::before {
    content: " ";
    z-index: 2;
    display: block;
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.2);
    -webkit-transition: background .275s ease-in-out;
    -moz-transition: background .275s ease-in-out;
    transition: background .275s ease-in-out; }
  .values-banner.purple:before {
    background: rgba(68, 78, 106, 0.5); }
  .values-banner.red:before {
    background: rgba(172, 80, 84, 0.5); }
  .values-banner.orange:before {
    background: rgba(248, 137, 58, 0.5); }
  .values-banner > span {
    position: absolute;
    text-align: center;
    z-index: 3;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
    .values-banner > span h2 {
      color: #ffffff;
      font-size: 40px;
      font-weight: 400;
      line-height: 40px;
      margin: 31px 0px 0px;
      text-transform: uppercase; }
  .values-banner img.svg,
  .values-banner svg {
    height: 100px;
    width: 100px;
    path: #ffffff;
    stroke: #ffffff;
    fill: #ffffff;
    rect: #ffffff; }

/* STRATEGY HOVER TABS */
.flex-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex; }

.str-strategy .full .values li:after {
  border-color: transparent transparent #ACA8A4 transparent;
  position: absolute; }

.str-strategy .full .values li:hover, .str-strategy .full .values li.current {
  background: #ACA8A4; }

.str-strategy .values {
  border-bottom: 1px solid #fafafa;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  list-style: none;
  margin: 0px;
  padding: 0; }
  .str-strategy .values li {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #FFF;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
    color: #444e6a;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    font-size: 16px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    line-height: 18px;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    -webkit-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    transition: all 200ms ease-in; }
    .str-strategy .values li > span {
      text-align: center;
      padding: 35px 20px; }
    .str-strategy .values li > span > strong {
      color: #afafaf;
      display: block;
      font-size: 45px;
      line-height: 45px;
      text-transform: none; }
    .str-strategy .values li > span > span {
      color: #afafaf;
      -webkit-transition: all 200ms ease-in;
      -moz-transition: all 200ms ease-in;
      transition: all 200ms ease-in; }
    .str-strategy .values li:after {
      border-style: solid;
      border-width: 0 20px 20px 20px;
      border-color: transparent transparent #444e6a transparent;
      position: absolute;
      bottom: -20px;
      content: "";
      left: 50%;
      height: 0;
      opacity: 0;
      -webkit-transform: translateX(-50%) rotate(180deg);
      -moz-transform: translateX(-50%) rotate(180deg);
      -ms-transform: translateX(-50%) rotate(180deg);
      transform: translateX(-50%) rotate(180deg);
      -webkit-transition: all 200ms ease-in;
      -moz-transition: all 200ms ease-in;
      transition: all 200ms ease-in;
      width: 0;
      z-index: 5; }
    .str-strategy .values li:hover, .str-strategy .values li.current {
      background: #444e6a;
      color: #ffffff; }
      .str-strategy .values li:hover:after, .str-strategy .values li.current:after {
        opacity: 1; }
      .str-strategy .values li:hover > span, .str-strategy .values li.current > span {
        color: #ffffff; }
    .str-strategy .values li:hover *,
    .str-strategy .values li.current * {
      color: #ffffff !important; }

.str-strategy .snapshot {
  margin-bottom: 100px; }
  .str-strategy .snapshot.full {
    background: #ffffff; }
    .str-strategy .snapshot.full .summary-content > div {
      max-width: 900px;
      margin: 0 auto; }

.str-strategy .section-break-line {
  background-color: #e0e0e0;
  display: block;
  height: 1px;
  position: relative;
  width: 100%; }

.str-strategy .values-main {
  margin: 35px auto;
  max-width: 960px;
  padding: 0px 30px; }

.str-strategy .summary-content {
  background: #ffffff;
  display: none;
  min-height: 250px;
  padding: 45px 0px; }
  .str-strategy .summary-content > div {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #ffffff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0px auto;
    max-width: 960px;
    padding: 0px 30px; }
  .str-strategy .summary-content img {
    height: 200px;
    padding: 0px;
    width: 200px; }
  .str-strategy .summary-content.left img {
    margin-right: 60px; }
  .str-strategy .summary-content.right img {
    margin-left: 60px; }
  .str-strategy .summary-content.active {
    -webkit-animation-duration: 0.5s;
    -moz-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-name: fade-in-up;
    -moz-animation-name: fade-in-up;
    animation-name: fade-in-up;
    display: block; }

/* IE Patch Fixes */
.ie11.str-strategy .values li[data-id="assets"] > span > strong,
.ie11.str-strategy .values li[data-id="relationship"] > span > strong {
  font-size: 30px;
  line-height: 30px; }

.ie11.str-strategy .summary-content > div {
  display: table; }

.ie11.str-strategy .summary-content > div img {
  display: table-cell;
  height: 200px;
  width: 200px;
  vertical-align: middle; }

.ie11.str-strategy .summary-content > div p {
  display: table-cell;
  vertical-align: middle; }

/* DOCUMENT LINKS */
.document-link, .event-link, .blog-article {
  background: #ffffff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
  padding: 20px;
  width: 100%;
  -webkit-transition: all 0.275s ease-in-out;
  -moz-transition: all 0.275s ease-in-out;
  transition: all 0.275s ease-in-out; }
  .document-link > span, .event-link > span, .blog-article > span {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #444e6a;
    -webkit-transition: all 0.275s ease-in-out;
    -moz-transition: all 0.275s ease-in-out;
    transition: all 0.275s ease-in-out; }
    .document-link > span:nth-of-type(1), .event-link > span:nth-of-type(1), .blog-article > span:nth-of-type(1) {
      min-width: 200px; }
    .document-link > span:nth-of-type(2), .event-link > span:nth-of-type(2), .blog-article > span:nth-of-type(2) {
      font-weight: 600;
      width: -moz-calc(100% - 260px);
      width: calc(100% - 260px); }
    .document-link > span:nth-of-type(3), .event-link > span:nth-of-type(3), .blog-article > span:nth-of-type(3) {
      font-weight: 600;
      min-width: 100px;
      padding-left: 20px; }
    .document-link > span > i, .event-link > span > i, .blog-article > span > i {
      color: #ACA8A4;
      font-size: 22px;
      -webkit-transition: all 0.275s ease-in-out;
      -moz-transition: all 0.275s ease-in-out;
      transition: all 0.275s ease-in-out; }
  .document-link:hover, .event-link:hover, .blog-article:hover {
    background: #242938;
    -webkit-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
    box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5); }
    .document-link:hover > span, .event-link:hover > span, .blog-article:hover > span {
      color: #ffffff; }
    .document-link:hover > span i, .event-link:hover > span i, .blog-article:hover > span i {
      color: #ffffff; }
    .document-link:hover > span i, .event-link:hover > span i, .blog-article:hover > span i {
      color: #ffffff; }
  .document-link.alt, .alt.event-link, .alt.blog-article {
    position: relative; }
    .document-link.alt:after, .alt.event-link:after, .alt.blog-article:after {
      color: #ACA8A4;
      content: '\f1c1';
      font-family: "Font Awesome 5 Pro";
      font-size: 22px;
      font-weight: 100;
      padding-left: 20px;
      position: absolute;
      right: 70px;
      -webkit-transition: all 0.275s ease-in-out;
      -moz-transition: all 0.275s ease-in-out;
      transition: all 0.275s ease-in-out; }
    .document-link.alt:hover:after, .alt.event-link:hover:after, .alt.blog-article:hover:after {
      color: #ffffff; }
  .document-link.sec:hover, .sec.event-link:hover, .sec.blog-article:hover {
    background: #ffffff;
    -webkit-box-shadow: none;
    box-shadow: none; }
    .document-link.sec:hover > span, .sec.event-link:hover > span, .sec.blog-article:hover > span {
      color: #444e6a; }
    .document-link.sec:hover > span i, .sec.event-link:hover > span i, .sec.blog-article:hover > span i {
      color: #ACA8A4; }
  .document-link.sec > span > a, .sec.event-link > span > a, .sec.blog-article > span > a {
    padding-right: 5px; }
    .document-link.sec > span > a i, .sec.event-link > span > a i, .sec.blog-article > span > a i {
      font-size: 20px;
      -webkit-transition: all 0.275s ease-in-out;
      -moz-transition: all 0.275s ease-in-out;
      transition: all 0.275s ease-in-out; }
    .document-link.sec > span > a:hover i, .sec.event-link > span > a:hover i, .sec.blog-article > span > a:hover i {
      color: #444e6a; }

.event-link span .no-underline i {
  color: #ACA8A4;
  font-size: 22px;
  -webkit-transition: all 0.275s ease-in-out;
  -moz-transition: all 0.275s ease-in-out;
  transition: all 0.275s ease-in-out; }

.event-link span .no-underline:hover i {
  color: #444e6a; }

.event-link > span.content-type-wrapper {
  min-width: 125px;
  text-align: right; }
  .event-link > span.content-type-wrapper > span {
    padding-right: 10px; }
    .event-link > span.content-type-wrapper > span:last-of-type {
      padding-right: 0px; }
    .event-link > span.content-type-wrapper > span a i {
      font-weight: 400; }

.event-link .event-link__title {
  background-image: -moz-linear-gradient(transparent -moz-calc(100% - 2px), #444e6a 2px) !important;
  background-image: linear-gradient(transparent calc(100% - 2px), #444e6a 2px) !important;
  font-weight: 600;
  color: #444e6a !important; }

.event-link:hover {
  background: #ffffff;
  -webkit-box-shadow: none;
  box-shadow: none; }
  .event-link:hover > span {
    color: #444e6a; }
  .event-link:hover > span > a > i {
    color: #ACA8A4; }

p.no-Feasibility {
  display: block; }

.str-Feasibility .event-link + p.no-Feasibility {
  display: none; }

/* THE PROSPECTOR LISTING */
.blog-article > span.thumbnail {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 135px;
  width: 220px; }

.blog-article > span.date-title {
  padding-left: 25px;
  width: -moz-calc(100% - 220px);
  width: calc(100% - 220px); }
  .blog-article > span.date-title > span {
    display: block;
    width: 100%; }
    .blog-article > span.date-title > span:nth-of-type(1) {
      font-weight: 100;
      padding-bottom: 5px; }
    .blog-article > span.date-title > span:nth-of-type(2) {
      padding-bottom: 5px; }
    .blog-article > span.date-title > span:nth-of-type(3) {
      font-weight: 400; }

.blog-feature-image {
  background-position: left top center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 300px;
  margin-bottom: 15px;
  width: 100%; }

.blog-article-header {
  background: #ffffff;
  border-left: 3px solid #ededed;
  padding: 5px 10px 5px; }
  .blog-article-header > span {
    color: #444e6a;
    display: block;
    padding-bottom: 5px;
    font-size: 18px;
    line-height: 25px; }
    @media screen and (min-width: 320px) {
      .blog-article-header > span {
        font-size: 18px;
        line-height: 25px; } }
    @media screen and (min-width: 375px) {
      .blog-article-header > span {
        font-size: 18px;
        line-height: 25px; } }
    @media screen and (min-width: 480px) {
      .blog-article-header > span {
        font-size: 18px;
        line-height: 25px; } }
    @media screen and (min-width: 640px) {
      .blog-article-header > span {
        font-size: 18px;
        line-height: 25px; } }
    @media screen and (min-width: 1200px) {
      .blog-article-header > span {
        font-size: 18px;
        line-height: 25px; } }
    .blog-article-header > span:last-of-type {
      padding-bottom: 0px; }

/* PHOTOSWIPE */
.gallery-container {
  margin-top: 45px; }
  .gallery-container .my-gallery {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .gallery-container .my-gallery figure {
    background-position: top center !important;
    margin-right: 3px;
    margin-bottom: 3px;
    overflow: hidden;
    padding-bottom: 24.25%;
    position: relative;
    width: -moz-calc(1/3 * 100% - 3px);
    width: calc(1/3 * 100% - 3px); }
    .gallery-container .my-gallery figure:nth-of-type(3n) {
      margin-left: 0px;
      margin-right: 0px; }
    .gallery-container .my-gallery figure:before {
      background: rgba(68, 78, 106, 0.05);
      content: " ";
      display: block;
      height: 100%;
      left: 0;
      position: absolute;
      right: 0;
      top: 0;
      z-index: 2;
      pointer-Feasibility: none;
      -webkit-transition: all 0.275s ease-in-out;
      -moz-transition: all 0.275s ease-in-out;
      transition: all 0.275s ease-in-out; }
    .gallery-container .my-gallery figure:after {
      content: "\f0b2";
      color: #ffffff;
      font-family: "Font Awesome 5 Pro";
      font-size: 30px;
      left: 50%;
      opacity: 0;
      position: absolute;
      top: 50%;
      z-index: 3;
      pointer-Feasibility: none;
      -webkit-transform: translate(-50%, -50%);
      -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      -webkit-transition: all 0.275s ease-in-out;
      -moz-transition: all 0.275s ease-in-out;
      transition: all 0.275s ease-in-out; }
    .gallery-container .my-gallery figure:hover:before {
      background: rgba(68, 78, 106, 0.85); }
    .gallery-container .my-gallery figure:hover:after {
      opacity: .9; }

/* TABLES & DATA LISTS */
dl dd {
  border-bottom: 2px solid #c2c2c2;
  padding-bottom: 18px;
  margin-left: 0px; }

dl dt,
dl dd {
  color: #6f7074;
  display: block;
  width: 100%;
  font-size: 18px;
  line-height: 25px; }
  @media screen and (min-width: 320px) {
    dl dt,
    dl dd {
      font-size: 18px;
      line-height: 25px; } }
  @media screen and (min-width: 375px) {
    dl dt,
    dl dd {
      font-size: 18px;
      line-height: 25px; } }
  @media screen and (min-width: 480px) {
    dl dt,
    dl dd {
      font-size: 18px;
      line-height: 25px; } }
  @media screen and (min-width: 640px) {
    dl dt,
    dl dd {
      font-size: 18px;
      line-height: 25px; } }
  @media screen and (min-width: 1200px) {
    dl dt,
    dl dd {
      font-size: 18px;
      line-height: 25px; } }

dl dt {
  font-weight: 700;
  padding-top: 17px; }
  dl dt:first-of-type {
    border-top: 2px solid #c2c2c2; }

table {
  border-collapse: collapse;
  margin: 25px 0px 35px;
  width: 100%; }
  table tr td {
    color: #444e6a;
    font-size: 18px;
    line-height: 25px; }
    @media screen and (min-width: 320px) {
      table tr td {
        font-size: 18px;
        line-height: 25px; } }
    @media screen and (min-width: 375px) {
      table tr td {
        font-size: 18px;
        line-height: 25px; } }
    @media screen and (min-width: 480px) {
      table tr td {
        font-size: 18px;
        line-height: 25px; } }
    @media screen and (min-width: 640px) {
      table tr td {
        font-size: 18px;
        line-height: 25px; } }
    @media screen and (min-width: 1200px) {
      table tr td {
        font-size: 18px;
        line-height: 25px; } }

table:not(.no-style) tr th {
  border-bottom: 8px solid #fafafa;
  color: #444e6a;
  padding: 0px 10px;
  text-align: left;
  text-transform: uppercase; }

table:not(.no-style) tr td {
  background: #ffffff;
  border-bottom: 8px solid #fafafa;
  color: #444e6a;
  font-weight: 400;
  padding: 11.5px 10px;
  text-align: left;
  font-size: 18px;
  line-height: 25px; }
  @media screen and (min-width: 320px) {
    table:not(.no-style) tr td {
      font-size: 18px;
      line-height: 25px; } }
  @media screen and (min-width: 375px) {
    table:not(.no-style) tr td {
      font-size: 18px;
      line-height: 25px; } }
  @media screen and (min-width: 480px) {
    table:not(.no-style) tr td {
      font-size: 18px;
      line-height: 25px; } }
  @media screen and (min-width: 640px) {
    table:not(.no-style) tr td {
      font-size: 18px;
      line-height: 25px; } }
  @media screen and (min-width: 1200px) {
    table:not(.no-style) tr td {
      font-size: 18px;
      line-height: 25px; } }

div.overflow {
  overflow-x: auto;
  width: 100%; }
  div.overflow ::-webkit-scrollbar {
    height: 12px; }
  div.overflow ::-webkit-scrollbar-track {
    background: #f0f0f0;
    -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.15) inset;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.15) inset; }
  div.overflow ::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 6px; }

p.instruction {
  display: block; }

p.instruction i {
  font-family: "Font Awesome 5 Pro";
  font-size: 16px; }

.str-reserves-resources .content-left .tabs h3 span {
  font-size: 20px;
  font-weight: 400;
  line-height: 25px; }

.str-reserves-resources table tr th {
  font-weight: 400; }

.str-reserves-resources table tr td {
  font-size: 16px;
  line-height: 21px; }

.sec-Mine Planning td:before {
  display: none; }

.sec-Mine Planning a {
  color: #ACA8A4;
  padding-left: 5px;
  text-decoration: none;
  -webkit-transition: all 0.275s ease-in-out;
  -moz-transition: all 0.275s ease-in-out;
  transition: all 0.275s ease-in-out; }
  .sec-Mine Planning a i {
    font-size: 20px;
    -webkit-transition: all 0.275s ease-in-out;
    -moz-transition: all 0.275s ease-in-out;
    transition: all 0.275s ease-in-out; }
  .sec-Mine Planning a:hover {
    background-size: 0 100% !important;
    color: #444e6a;
    text-decoration: none !important; }
    .sec-Mine Planning a:hover i {
      color: #444e6a; }

.sec-Mine Planning .date {
  min-width: 176px; }

.sec-Mine Planning .form-type {
  min-width: 100px; }
  .sec-Mine Planning .form-type a:hover {
    text-decoration: underline; }

.sec-Mine Planning .abstract {
  font-weight: 600;
  min-width: 130px; }

.sec-Mine Planning .filing-links {
  min-width: 100px; }

/* Responsive Tables */
.table-notes {
  color: #444e6a;
  font-size: 13px;
  line-height: 17px; }
  .table-notes ul, .table-notes ol {
    padding-left: 13px; }
  .table-notes p, .table-notes ol li, .table-notes ul li {
    font-size: 13px;
    line-height: 20px; }
  .table-notes p a, .table-notes a {
    background-image: -moz-linear-gradient(transparent -moz-calc(100% - 1px), #ACA8A4 1px) !important;
    background-image: linear-gradient(transparent calc(100% - 1px), #ACA8A4 1px) !important;
    font-size: 13px !important;
    line-height: 20px !important; }

.overflow {
  overflow-x: auto;
  width: 100%; }

table ~ h5,
.table-title {
  font-weight: 400;
  margin-bottom: -15px; }
  table ~ h5 > span,
  .table-title > span {
    font-weight: 700; }

/* VIDEO WRAPPER */
.embed-wrapper {
  background: #ffffff;
  cursor: pointer;
  height: 0;
  margin-bottom: 40px;
  max-width: 100%;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.275s ease-in-out;
  -moz-transition: all 0.275s ease-in-out;
  transition: all 0.275s ease-in-out; }
  .embed-wrapper.fadeOutRight {
    background: #444e6a; }
  .embed-wrapper__overlay {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2; }
    .embed-wrapper__overlay::before {
      content: " ";
      z-index: 2;
      display: block;
      position: absolute;
      height: 100%;
      top: 0;
      left: 0;
      right: 0;
      background: rgba(68, 78, 106, 0.15);
      -webkit-transition: background .275s ease-in-out;
      -moz-transition: background .275s ease-in-out;
      transition: background .275s ease-in-out; }
    .embed-wrapper__overlay--play {
      -webkit-box-align: center;
      -webkit-align-items: center;
      -moz-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      background: rgba(255, 255, 255, 0.9);
      color: #444e6a;
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      display: flex;
      font-size: 30px;
      height: 70px;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
      -moz-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      line-height: inherit;
      position: absolute;
      width: 136px;
      z-index: 3;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      -webkit-transition: all 0.275s ease-in-out;
      -moz-transition: all 0.275s ease-in-out;
      transition: all 0.275s ease-in-out; }
      .embed-wrapper__overlay--play:after {
        color: #ACA8A4;
        content: '\f054';
        font-family: "Font Awesome 5 Pro";
        font-size: 24px;
        font-weight: 600;
        position: relative;
        top: 1px;
        -webkit-transform: translateZ(0);
        -moz-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-transform: translateX(9px);
        -moz-transform: translateX(9px);
        -ms-transform: translateX(9px);
        transform: translateX(9px);
        -webkit-transition-duration: 0.25s;
        -moz-transition-duration: 0.25s;
        transition-duration: 0.25s;
        -webkit-transition-property: -webkit-transform;
        transition-property: -webkit-transform;
        -moz-transition-property: transform, -moz-transform;
        transition-property: transform;
        transition-property: transform, -webkit-transform, -moz-transform;
        -webkit-transition-timing-function: ease-out;
        -moz-transition-timing-function: ease-out;
        transition-timing-function: ease-out; }
  .embed-wrapper:hover .embed-wrapper__overlay:before {
    background: rgba(68, 78, 106, 0.85); }
  .embed-wrapper:hover > div > span {
    background: #ffffff; }
  .embed-wrapper:hover > div > span:after {
    -webkit-transform: translateX(13px);
    -moz-transform: translateX(13px);
    -ms-transform: translateX(13px);
    transform: translateX(13px); }
  .embed-wrapper iframe,
  .embed-wrapper object,
  .embed-wrapper embed {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%; }

.cat-responsibility.str-responsibility-overview .embed-wrapper__overlay,
.cat-company.str-about .embed-wrapper__overlay {
  background-image: url(../img/background/background-video-mallaazul.jpg); }

/* QUOTEMEDIA PRICE HISTORY WIDGET */
.qmod-modifiers {
  margin: 40px 0px 20px; }

.qmod-block-wrapper .highcharts-point.highcharts-point-up {
  stroke: #1a778d;
  fill: rgba(26, 119, 141, 0.8); }

.qmod-block-wrapper .highcharts-point.highcharts-point-down {
  stroke: #ACA8A4;
  fill: rgba(172, 80, 84, 0.8); }

.qmod-block-wrapper rect.highcharts-point {
  fill: rgba(68, 77, 106, 0.85); }

.qmod-block-wrapper .highcharts-plot-lines-4 {
  stroke: #ACA8A4; }

.content-left .qmod-hbg {
  background: transparent; }

.content-left h2.qmod-heading {
  color: #444e6a;
  font-family: "franklin-gothic-urw";
  font-size: 25px;
  font-weight: 600;
  line-height: 30px;
  margin: 25px 0px;
  padding: 0px;
  text-transform: uppercase; }

.qmod-quotehead {
  display: none; }

.content-left .qmod-pricehistory .dataTables_wrapper .dataTables_paginate .paginate_button.current {
  background: #444e6a !important;
  border: none !important;
  border-radius: 0px !important;
  color: #ffffff !important; }
  .content-left .qmod-pricehistory .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background: #1a778d !important;
    color: #ffffff !important; }

.content-left .qmod-pricehistory table.qmod-table.dataTable.dtr-column > tbody > tr td,
.content-left .qmod-pricehistory table.qmod-table.dataTable.dtr-column > tbody > tr th {
  font-size: 16px; }

.content-left .qmod-pricehistory table.qmod-table.dataTable.dtr-column > tbody > tr > td.control:before,
.content-left .qmod-pricehistory table.qmod-table.dataTable.dtr-column > tbody > tr > th.control:before {
  color: #ACA8A4; }

.content-left .qmod-pricehistory table.qmod-table.dataTable.dtr-column > thead > tr > th.sorting_desc, .content-left .qmod-pricehistory table.qmod-table.dataTable.dtr-column > thead > tr > th.sorting_asc {
  border-bottom: 2px solid #ACA8A4; }

.content-left .qmod-pricehistory table.qmod-table.dataTable.dtr-column > thead > tr > th:hover, .content-left .qmod-pricehistory table.qmod-table.dataTable.dtr-column > thead > tr > th:focus {
  border-bottom: 2px solid #ACA8A4 !important; }

.content-left .qmod-pricehistory .qmod-btn.qmod-btn-link {
  color: #444e6a; }

.content-left .qmod-pricehistory .qmod-btn.qmod-green,
.content-left .qmod-pricehistory .qmod-btn.qmod-darkblue {
  background: #444e6a;
  border-color: #444e6a;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: all 0.275s ease-in-out;
  -moz-transition: all 0.275s ease-in-out;
  transition: all 0.275s ease-in-out; }
  .content-left .qmod-pricehistory .qmod-btn.qmod-green:hover,
  .content-left .qmod-pricehistory .qmod-btn.qmod-darkblue:hover {
    background: #2c3245 !important; }

.content-left .qmod-pricehistory .qmod-modal-overlay {
  height: 100%; }

.content-left .qmod-pricehistory .qmod-ui-modal {
  min-height: 0px;
  position: relative;
  top: -15%;
  right: auto;
  bottom: auto;
  max-height: 800px; }

.content-left .qmod-pricehistory .qmod-ui-tool input[type="text"] {
  position: relative; }

.content-left .qmod-pricehistory .picker__day {
  padding: 2px; }

.content-left .qmod-pricehistory .picker__nav--next:before {
  border-left: 0.75em solid #444e6a; }

.content-left .qmod-pricehistory .picker__nav--prev:before {
  border-right: 0.75em solid #444e6a; }

.content-left .qmod-pricehistory .picker,
.content-left .qmod-pricehistory .picker--opened .picker__frame {
  position: relative; }

.content-left .qmod-pricehistory .picker__box,
.content-left .qmod-pricehistory .picker__wrap,
.content-left .qmod-pricehistory .picker__frame,
.content-left .qmod-pricehistory .picker__holder {
  width: 415px; }

.content-left .qmod-pricehistory .picker__frame {
  max-height: 410px; }

.content-left .qmod-pricehistory .picker__holder {
  height: 410px;
  overflow: hidden;
  pointer-Feasibility: none; }

.content-left .qmod-pricehistory .picker--opened .picker__holder {
  height: 410px;
  left: 0%;
  overflow: hidden;
  position: absolute;
  pointer-Feasibility: all; }

/* STOCK INFO CHART - Highcharts */
.stock-table tr td {
  color: #444e6a;
  margin-bottom: 20px; }

/* STANDARD BREAKPOINTS */
/* PADDING CHANGES */
/* HELPERS */
#mobile-navigation {
  display: none; }

#width-check {
  position: relative;
  display: none;
  z-index: 0; }

@media screen and (max-width: 1600px) {
  .home main .grid #investor-hub,
  .grid-item {
    padding: 53px 90px; }
  .main-menu__logo > img {
    padding-top: 12px;
    width: 330px; }
  nav > ul:first-of-type > li > a.top-level {
    padding: 23.5px 23px 0px; }
  main > .container .content-left, main.stock-bar > div .content-left, main.main-menu > div .content-left, nav main > .submenu-wrapper .content-left {
    padding-left: 90px;
    padding-right: 90px; }
  .sidebar__top {
    padding: 152px 50px 80px 90px; }
  .mines-overview {
    padding: 60px 75px 50px; }
  .projects-overview {
    padding: 60px 75px; }
  .mines-overview .button {
    right: 75px; }
  .cat-responsibility.str-responsibility-overview .csr-hub h2.page-title, .cat-responsibility.str-responsibility-overview .csr-hub .cat-operations.str-overview main .container > .operations-overview > div > h2:first-of-type, .cat-operations.str-overview main .cat-responsibility.str-responsibility-overview .csr-hub .container > .operations-overview > div > h2:first-of-type, .cat-responsibility.str-responsibility-overview .csr-hub .cat-operations.str-overview main .stock-bar > div > .operations-overview > div > h2:first-of-type, .cat-operations.str-overview main .cat-responsibility.str-responsibility-overview .csr-hub .stock-bar > div > .operations-overview > div > h2:first-of-type, .cat-responsibility.str-responsibility-overview .csr-hub .cat-operations.str-overview main .main-menu > div > .operations-overview > div > h2:first-of-type, .cat-operations.str-overview main .cat-responsibility.str-responsibility-overview .csr-hub .main-menu > div > .operations-overview > div > h2:first-of-type, .cat-responsibility.str-responsibility-overview .csr-hub .cat-operations.str-overview main nav .submenu-wrapper > .operations-overview > div > h2:first-of-type, .cat-operations.str-overview main nav .cat-responsibility.str-responsibility-overview .csr-hub .submenu-wrapper > .operations-overview > div > h2:first-of-type, .cat-responsibility.str-responsibility-overview .csr-hub nav .cat-operations.str-overview main .submenu-wrapper > .operations-overview > div > h2:first-of-type, nav .cat-operations.str-overview main .cat-responsibility.str-responsibility-overview .csr-hub .submenu-wrapper > .operations-overview > div > h2:first-of-type, .cat-responsibility.str-responsibility-overview .csr-hub .investor-overview__top--right h2, .investor-overview__top--right .cat-responsibility.str-responsibility-overview .csr-hub h2, .cat-responsibility.str-responsibility-overview .csr-hub .gallery-container > h2 {
    margin-left: 90px;
    margin-right: 90px; }
  .cat-responsibility.str-responsibility-overview .csr-hub__top,
  .investor-overview__top--left {
    padding-left: 90px;
    padding-right: 90px; }
  .investor-overview__top--right {
    padding: 60px 90px; }
  .investor-overview__bottom > div:nth-of-type(1) {
    padding-left: 90px; }
  .investor-overview__bottom > div:nth-of-type(3) {
    padding-right: 90px; }
  .team-roster .team-member {
    width: -moz-calc(50% - 15px);
    width: calc(50% - 15px); }
    .team-roster .team-member:nth-of-type(3n+3), .team-roster .team-member:nth-of-type(3n+1) {
      margin-left: 15px;
      margin-right: 15px; }
    .team-roster .team-member:nth-of-type(odd) {
      margin-left: 0px !important; }
    .team-roster .team-member:nth-of-type(even) {
      margin-right: 0px !important; }
  .featherlight .featherlight-content .flex-container .flex-left {
    width: 450px; }
  .featherlight .featherlight-content .flex-container .flex-right {
    width: -moz-calc(100% - 450px);
    width: calc(100% - 450px); } }

@media screen and (max-width: 1450px) {
  .investor-overview__top--left {
    padding-left: 55px;
    padding-right: 15px; }
  .investor-overview__top--right {
    padding-left: 55px;
    padding-right: 55px; }
  .investor-overview__bottom > div:nth-of-type(1) {
    padding-left: 55px; }
  .investor-overview__bottom > div:nth-of-type(3) {
    padding-right: 55px; } }

@media screen and (max-width: 1350px) {
  .main-menu__logo > img {
    padding-top: 16px;
    width: 295px; }
  main > .container .content-left, main.stock-bar > div .content-left, main.main-menu > div .content-left, nav main > .submenu-wrapper .content-left {
    width: -moz-calc(100% - 435px);
    width: calc(100% - 435px); }
  .sidebar {
    width: 435px; }
  footer > div:nth-of-type(2) {
    padding-right: 0px;
    width: 42%; }
  .footer-right {
    padding-top: 143px; }
    .footer-right h2 {
      font-size: 28px;
      margin-bottom: 16px; }
    .footer-right > div {
      display: block;
      padding-left: 40px; }
  .submenu-wrapper.operations .submenu .has-sub-submenu:nth-of-type(1) {
    min-width: 225px;
    padding-left: 0px; }
  .submenu-wrapper.operations .submenu .has-sub-submenu:nth-of-type(2) {
    min-width: 525px; }
    .submenu-wrapper.operations .submenu .has-sub-submenu:nth-of-type(2) > ul {
      -webkit-column-gap: 0px;
      -moz-column-gap: 0px;
      column-gap: 0px; }
  .submenu-wrapper.operations .submenu a.subsub {
    font-size: 16px;
    padding-right: 0px; }
  .featherlight:not(.photo-gallery) .featherlight-content {
    padding-right: 100px; }
  .document-link > span:nth-of-type(3), .event-link > span:nth-of-type(3), .blog-article > span:nth-of-type(3), .blog-article > span:nth-of-type(3) {
    text-align: right;
    min-width: 0px;
    width: auto; }
  .document-link > span:nth-of-type(2), .event-link > span:nth-of-type(2), .blog-article > span:nth-of-type(2), .blog-article > span:nth-of-type(2) {
    width: -moz-calc(100% - 195px);
    width: calc(100% - 195px); }
  .document-link > span:nth-of-type(1), .event-link > span:nth-of-type(1), .blog-article > span:nth-of-type(1), .blog-article > span:nth-of-type(1) {
    min-width: 175px; }
  .event-link > span.content-type-wrapper {
    min-width: 125px;
    width: 125px; } }

@media screen and (max-width: 1301px) {
  nav > ul:first-of-type > li > a.top-level {
    padding: 23.5px 14px 0px; }
  .main-menu__logo {
    margin-right: 0px; }
  nav > ul > li:last-of-type {
    margin-right: 30px; } }

@media screen and (max-width: 1250px) {
  .home main #overhang.container, .home main .stock-bar > div#overhang, .home main .main-menu > div#overhang, .home main nav #overhang.submenu-wrapper, nav .home main #overhang.submenu-wrapper {
    padding: 0px 20px; }
  .home main .grid #investor-hub,
  .grid-item {
    padding: 53px 75px; }
  main > .container .content-left, main.stock-bar > div .content-left, main.main-menu > div .content-left, nav main > .submenu-wrapper .content-left {
    padding-left: 70px;
    padding-right: 70px;
    width: -moz-calc(100% - 410px);
    width: calc(100% - 410px); }
  .sidebar {
    width: 410px; }
  .sidebar__top {
    padding-left: 70px; }
  .container, .stock-bar > div, .main-menu > div, nav .submenu-wrapper {
    padding: 0px 20px; }
  .investor-overview__top--left {
    padding-left: 40px;
    padding-right: 20px; }
    .investor-overview__top--left > div:nth-of-type(1) {
      min-width: 320px; }
  .investor-overview__top--right {
    padding-left: 40px;
    padding-right: 40px; }
  .investor-overview__bottom > div:nth-of-type(1), .investor-overview__bottom > div:nth-of-type(2), .investor-overview__bottom > div:nth-of-type(3) {
    padding-left: 40px;
    padding-right: 25px; }
  .featherlight:not(.photo-gallery) .featherlight-content {
    margin-left: 40px;
    margin-right: 40px;
    width: -moz-calc(100% - 80px);
    width: calc(100% - 80px); }
  .str-strategy .values li > span > strong {
    font-size: 35px;
    line-height: 40px; } }

@media screen and (max-width: 1200px) {
  .ie11.str-strategy .values li[data-id="relationship"] > span > strong {
    font-size: 25px;
    line-height: 25px; } }

@media screen and (max-width: 1175px) {
  .desktop header nav > ul:first-of-type > li > a.top-level {
    font-size: 16px;
    line-height: 16px;
    padding: 37px 12px 0px; }
  .desktop header nav .submenu > li > a {
    font-size: 16px;
    line-height: 16px; }
  .desktop header.shrunk nav > ul:first-of-type > li > a.top-level {
    padding-top: 17px; }
  nav > ul > li:last-of-type {
    margin-right: 27px; }
  main > .container .content-left, main.stock-bar > div .content-left, main.main-menu > div .content-left, nav main > .submenu-wrapper .content-left {
    padding-left: 55px;
    padding-right: 55px;
    width: -moz-calc(100% - 390px);
    width: calc(100% - 390px); }
  .sidebar {
    width: 390px; }
  .mines-overview {
    padding: 60px 40px 50px; }
  .projects-overview {
    padding: 60px 40px; }
  .mines-overview .button {
    right: 40px; }
  .investor-overview__top--left {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: 60px; }
    .investor-overview__top--left > div:nth-of-type(1) {
      width: 100%; }
    .investor-overview__top--left > div:nth-of-type(2) {
      padding-top: 45px;
      width: 100%; }
  .investor-overview__top--left {
    padding-left: 90px;
    padding-right: 90px; }
  .investor-overview__top--right {
    padding-left: 90px;
    padding-right: 90px; }
  .cat-responsibility.str-responsibility-overview .csr-hub__top--right {
    padding-left: 40px; }
  .cat-responsibility.str-responsibility-overview .csr-hub__top {
    padding-left: 40px;
    padding-right: 40px; }
  .cat-responsibility.str-responsibility-overview .csr-hub h2.page-title, .cat-responsibility.str-responsibility-overview .csr-hub .cat-operations.str-overview main .container > .operations-overview > div > h2:first-of-type, .cat-operations.str-overview main .cat-responsibility.str-responsibility-overview .csr-hub .container > .operations-overview > div > h2:first-of-type, .cat-responsibility.str-responsibility-overview .csr-hub .cat-operations.str-overview main .stock-bar > div > .operations-overview > div > h2:first-of-type, .cat-operations.str-overview main .cat-responsibility.str-responsibility-overview .csr-hub .stock-bar > div > .operations-overview > div > h2:first-of-type, .cat-responsibility.str-responsibility-overview .csr-hub .cat-operations.str-overview main .main-menu > div > .operations-overview > div > h2:first-of-type, .cat-operations.str-overview main .cat-responsibility.str-responsibility-overview .csr-hub .main-menu > div > .operations-overview > div > h2:first-of-type, .cat-responsibility.str-responsibility-overview .csr-hub .cat-operations.str-overview main nav .submenu-wrapper > .operations-overview > div > h2:first-of-type, .cat-operations.str-overview main nav .cat-responsibility.str-responsibility-overview .csr-hub .submenu-wrapper > .operations-overview > div > h2:first-of-type, .cat-responsibility.str-responsibility-overview .csr-hub nav .cat-operations.str-overview main .submenu-wrapper > .operations-overview > div > h2:first-of-type, nav .cat-operations.str-overview main .cat-responsibility.str-responsibility-overview .csr-hub .submenu-wrapper > .operations-overview > div > h2:first-of-type, .cat-responsibility.str-responsibility-overview .csr-hub .investor-overview__top--right h2, .investor-overview__top--right .cat-responsibility.str-responsibility-overview .csr-hub h2, .cat-responsibility.str-responsibility-overview .csr-hub .gallery-container > h2 {
    margin-left: 40px;
    margin-right: 40px; }
  .featherlight .featherlight-content .flex-container .flex-left {
    width: 380px; }
  .featherlight .featherlight-content .flex-container .flex-right {
    padding-left: 35px;
    width: -moz-calc(100% - 380px);
    width: calc(100% - 380px); }
  .featherlight:not(.photo-gallery) .featherlight-content {
    padding-right: 80px; }
  .values-link-hub > a h4 {
    display: none; }
  .values-link-hub > a h2 {
    border-bottom: none;
    font-size: 30px;
    width: 100%; }
  .values-link-hub > a > span {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%; }
  .values-link-hub > a img, .values-link-hub > a svg {
    height: 50px;
    width: 50px; }
  .values-link-hub > a:nth-of-type(3) svg {
    height: 39px;
    width: 63px; }
  .cat-company.str-strategy main .container .content-left, .cat-company.str-strategy main .stock-bar > div .content-left, .cat-company.str-strategy main .main-menu > div .content-left, .cat-company.str-strategy main nav .submenu-wrapper .content-left, nav .cat-company.str-strategy main .submenu-wrapper .content-left {
    width: 100%;
    padding-left: 40px;
    padding-right: 40px; } }

@media screen and (max-width: 1075px) {
  main > .container .content-left, main.stock-bar > div .content-left, main.main-menu > div .content-left, nav main > .submenu-wrapper .content-left {
    padding-left: 45px;
    padding-right: 45px;
    width: -moz-calc(100% - 380px);
    width: calc(100% - 380px); }
  .sidebar {
    width: 380px; }
  .sidebar__top {
    padding-left: 60px; } }

/* ----------- iPad 1, 2, Mini and Air ----------- */
/* Portrait and Landscape */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
  .home .hero-video {
    background-image: url("../img/background/hero-palamecanica.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; } }

/* ----------- iPad 3, 4 and Pro 9.7" ----------- */
/* Portrait and Landscape */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {
  .home .hero-video {
    background-image: url("../img/background/hero-palamecanica.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; } }

/* ----------- iPad Pro 10.5" ----------- */
/* Portrait and Landscape */
@media only screen and (min-device-width: 834px) and (max-device-width: 1112px) and (-webkit-min-device-pixel-ratio: 2) {
  .home .hero-video {
    background-image: url("../img/background/hero-palamecanica.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; } }

@media screen and (max-width: 1024px) {
  #width-check {
    z-index: 1; }
  #mobile-signup {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex; }
  header#desktop {
    display: none !important; }
  #mobile-navigation {
    display: block; }
  .container, .stock-bar > div, .main-menu > div, nav .submenu-wrapper {
    padding: 0px; }
  body:not(.home) {
    padding-bottom: 0px; }
  body.home {
    padding-bottom: 0px; }
  .hero-video__content h1 {
    font-size: 60px;
    line-height: 70px; }
  .home main #overhang.container, .home main .stock-bar > div#overhang, .home main .main-menu > div#overhang, .home main nav #overhang.submenu-wrapper, nav .home main #overhang.submenu-wrapper {
    padding: 0px;
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%); }
  .home main .grid #investor-hub {
    padding: 73px 40px; }
  .grid-item {
    padding: 73px 40px; }
    .grid-item.large {
      width: 100%; }
    .grid-item.small {
      width: 50%; }
  .grid-item.large.mask-reveal,
  .grid-item.small.mask-reveal,
  #responsibility {
    width: 50%; }
  #investor-hub {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%; }
    #investor-hub > h3 {
      width: 100%; }
    #investor-hub > div {
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
      width: 50%; }
      #investor-hub > div:nth-of-type(1) {
        padding-right: 15px; }
      #investor-hub > div:nth-of-type(2) {
        padding-left: 15px; }
  main > .container, main.stock-bar > div, main.main-menu > div, nav main > .submenu-wrapper {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px); }
  main > .container .content-left, main.stock-bar > div .content-left, main.main-menu > div .content-left, nav main > .submenu-wrapper .content-left {
    padding: 73px 40px;
    width: 100%; }
  .sidebar {
    height: 0px;
    width: 0px;
    display: none; }
  .banner {
    height: 410px; }
  .banner .wrapper {
    padding-left: 40px; }
  .banner .wrapper > h1 {
    padding-top: 212px; }
  footer {
    display: block;
    height: auto;
    position: relative; }
    footer > div:nth-of-type(1) {
      width: 100%; }
    footer > div:nth-of-type(2) {
      display: none; }
    footer .footer-left > div {
      display: block;
      padding: 65px 40px 0px; }
      footer .footer-left > div > div {
        display: block; }
      footer .footer-left > div ul {
        margin: 34px 0px 27px;
        padding-left: 0px; }
      footer .footer-left > div ul li {
        line-height: 1.75; }
      footer .footer-left > div h3 {
        font-size: 50px; }
      footer .footer-left > div h3.copper-price {
        padding-bottom: 10px; }
      footer .footer-left > div.footer-left__copyright {
        background: #242938;
        display: block;
        padding: 43px 40px 45px; }
        footer .footer-left > div.footer-left__copyright > span {
          display: block;
          width: 100%; }
          footer .footer-left > div.footer-left__copyright > span:nth-of-type(1) {
            border: none; }
          footer .footer-left > div.footer-left__copyright > span:nth-of-type(2) {
            border: none;
            padding-left: 0px; }
          footer .footer-left > div.footer-left__copyright > span:nth-of-type(3) {
            border: none;
            padding-left: 0px; }
        footer .footer-left > div.footer-left__copyright .footer-left__social {
          padding: 25px 0px 33px; }
        footer .footer-left > div.footer-left__copyright > span a i {
          font-size: 24px;
          padding: 0 19px; }
        footer .footer-left > div.footer-left__copyright > span a:first-of-type i {
          padding-left: 0px; }
        footer .footer-left > div.footer-left__copyright > span a:last-of-type i {
          padding-right: 0px; }
  .scrollable {
    overflow: hidden;
    position: relative;
    width: 100%; }
    .scrollable.is-scrollable > div + .instruction {
      height: 30px;
      position: relative;
      width: 100%; }
      .scrollable.is-scrollable > div + .instruction i {
        font-family: "Font Awesome 5 Pro";
        font-size: 17px;
        font-weight: 600;
        position: relative; }
    .scrollable.is-scrollable:after {
      position: absolute;
      top: 0;
      left: 100%;
      width: 50px;
      height: 100%;
      border-radius: 10px 0 0 10px / 50% 0 0 50%;
      -webkit-box-shadow: -5px 0 10px rgba(0, 0, 0, 0.25);
      box-shadow: -5px 0 10px rgba(0, 0, 0, 0.25);
      content: ''; }
    .scrollable.is-scrollable > div {
      overflow-x: auto; }
      .scrollable.is-scrollable > div ::-webkit-scrollbar {
        height: 12px; }
      .scrollable.is-scrollable > div ::-webkit-scrollbar-track {
        background: #f0f0f0;
        -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.15) inset;
        box-shadow: 0 0 2px rgba(0, 0, 0, 0.15) inset; }
      .scrollable.is-scrollable > div ::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 6px; }
  p.instruction.show {
    display: block; }
  .cat-responsibility.str-responsibility-overview .banner,
  .cat-operations.str-overview .banner,
  .cat-Services.str-overview .banner,
  .cat-company.str-strategy .banner {
    height: 500px; }
    .cat-responsibility.str-responsibility-overview .banner .wrapper > h1,
    .cat-operations.str-overview .banner .wrapper > h1,
    .cat-Services.str-overview .banner .wrapper > h1,
    .cat-company.str-strategy .banner .wrapper > h1 {
      padding-top: 262px; }
  .cat-operations.str-overview .banner .bg {
    background-position: left 35px; }
  .project-links > a {
    height: 495px; }
  .investor-overview__top--left {
    width: 380px;
    padding-left: 45px;
    padding-right: 45px; }
  .investor-overview__top--right {
    padding-left: 45px;
    padding-right: 45px;
    width: -moz-calc(100% - 380px);
    width: calc(100% - 380px); }
  .cat-responsibility.str-responsibility-overview .csr-hub h2.page-title, .cat-responsibility.str-responsibility-overview .csr-hub .cat-operations.str-overview main .container > .operations-overview > div > h2:first-of-type, .cat-operations.str-overview main .cat-responsibility.str-responsibility-overview .csr-hub .container > .operations-overview > div > h2:first-of-type, .cat-responsibility.str-responsibility-overview .csr-hub .cat-operations.str-overview main .stock-bar > div > .operations-overview > div > h2:first-of-type, .cat-operations.str-overview main .cat-responsibility.str-responsibility-overview .csr-hub .stock-bar > div > .operations-overview > div > h2:first-of-type, .cat-responsibility.str-responsibility-overview .csr-hub .cat-operations.str-overview main .main-menu > div > .operations-overview > div > h2:first-of-type, .cat-operations.str-overview main .cat-responsibility.str-responsibility-overview .csr-hub .main-menu > div > .operations-overview > div > h2:first-of-type, .cat-responsibility.str-responsibility-overview .csr-hub .cat-operations.str-overview main nav .submenu-wrapper > .operations-overview > div > h2:first-of-type, .cat-operations.str-overview main nav .cat-responsibility.str-responsibility-overview .csr-hub .submenu-wrapper > .operations-overview > div > h2:first-of-type, .cat-responsibility.str-responsibility-overview .csr-hub nav .cat-operations.str-overview main .submenu-wrapper > .operations-overview > div > h2:first-of-type, nav .cat-operations.str-overview main .cat-responsibility.str-responsibility-overview .csr-hub .submenu-wrapper > .operations-overview > div > h2:first-of-type, .cat-responsibility.str-responsibility-overview .csr-hub .investor-overview__top--right h2, .investor-overview__top--right .cat-responsibility.str-responsibility-overview .csr-hub h2, .cat-responsibility.str-responsibility-overview .csr-hub .gallery-container > h2 {
    margin-left: 40px;
    margin-right: 40px; }
  .featherlight:not(.photo-gallery) .featherlight-content {
    height: -moz-calc(100vh - 40px);
    height: calc(100vh - 40px);
    margin: 20px;
    max-height: none;
    overflow-y: auto;
    padding: 55px 45px;
    width: -moz-calc(100% - 40px);
    width: calc(100% - 40px); }
    .featherlight:not(.photo-gallery) .featherlight-content .flex-container {
      display: block;
      width: 100%; }
      .featherlight:not(.photo-gallery) .featherlight-content .flex-container .flex-left {
        background: #ffffff;
        margin-bottom: 45px;
        width: 100%; }
        .featherlight:not(.photo-gallery) .featherlight-content .flex-container .flex-left > img {
          margin: 0 auto;
          max-width: 340px; }
      .featherlight:not(.photo-gallery) .featherlight-content .flex-container .flex-right {
        padding-left: 0px;
        width: 100%; }
        .featherlight:not(.photo-gallery) .featherlight-content .flex-container .flex-right.fadeInRight {
          padding-left: 0px; }
    .featherlight:not(.photo-gallery) .featherlight-content .featherlight-next span,
    .featherlight:not(.photo-gallery) .featherlight-content .featherlight-previous span {
      font-size: initial;
      line-height: initial; }
      .featherlight:not(.photo-gallery) .featherlight-content .featherlight-next span .fa,
      .featherlight:not(.photo-gallery) .featherlight-content .featherlight-previous span .fa {
        font-size: 38px;
        text-shadow: none; }
    .featherlight:not(.photo-gallery) .featherlight-content .featherlight-previous {
      left: 0px;
      right: auto; }
      .featherlight:not(.photo-gallery) .featherlight-content .featherlight-previous span {
        padding: 2px 7px 2px 4px; }
    .featherlight:not(.photo-gallery) .featherlight-content .featherlight-next {
      right: 0px; }
      .featherlight:not(.photo-gallery) .featherlight-content .featherlight-next span {
        padding: 2px 4px 2px 7px; }
    .featherlight:not(.photo-gallery) .featherlight-content .featherlight-close-icon {
      font-size: 28px;
      right: 4px;
      top: 4px;
      width: 29px;
      line-height: 27px; }
  .featherlight.photo-gallery .featherlight-content {
    margin-left: 0;
    margin-right: 0;
    max-height: 98%;
    padding: 5px 5px 0;
    border-bottom: 5px solid transparent; }
    .featherlight.photo-gallery .featherlight-content .featherlight-next {
      right: 0px; }
    .featherlight.photo-gallery .featherlight-content .featherlight-previous {
      left: 0px; }
    .featherlight.photo-gallery .featherlight-content .featherlight-next span,
    .featherlight.photo-gallery .featherlight-content .featherlight-previous span {
      background: #1a778d;
      line-height: 50px;
      width: 25px; }
    .featherlight.photo-gallery .featherlight-content .featherlight-next span .fa,
    .featherlight.photo-gallery .featherlight-content .featherlight-previous span .fa {
      color: #ffffff; }
  .content-left .qmod-pricehistory .qmod-ui-modal {
    width: 90%; }
  .values-link-hub {
    display: none;
    visibility: hidden; }
  .cat-company.str-strategy main > .container .strategy-overview, .cat-company.str-strategy main.stock-bar > div .strategy-overview, .cat-company.str-strategy main.main-menu > div .strategy-overview, .cat-company.str-strategy nav main > .submenu-wrapper .strategy-overview, nav .cat-company.str-strategy main > .submenu-wrapper .strategy-overview {
    padding-bottom: 0px; }
  .values-banner {
    height: 250px; }
  .ie11 #mobile-navigation .mobile-top-bar .mobile-logo img {
    width: 295px;
    height: 77.25px; } }

@media screen and (max-width: 1000px) {
  .project-links > a {
    margin-left: 1.5px;
    margin-right: 1.5px;
    width: -moz-calc(50% - 1.5px);
    width: calc(50% - 1.5px); }
    .project-links > a:nth-of-type(odd) {
      margin-left: 0px; }
    .project-links > a:nth-of-type(even) {
      margin-right: 0px !important; }
    .project-links > a:nth-of-type(3n) {
      margin-right: 1.5px; }
  .investor-overview__bottom {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .investor-overview__bottom > div:nth-of-type(1) {
      border-bottom: 2px solid #ededed;
      padding-bottom: 45px;
      width: 100%; }
    .investor-overview__bottom > div:nth-of-type(2) {
      border-bottom: 2px solid #ededed;
      border-left: none;
      padding-bottom: 45px;
      padding-top: 45px;
      width: 100%; }
    .investor-overview__bottom > div:nth-of-type(3) {
      border-left: none;
      padding-top: 45px;
      width: 100%; }
  .cat-responsibility.str-responsibility-overview .csr-hub__top {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .cat-responsibility.str-responsibility-overview .csr-hub__top--left {
      padding-right: 25%;
      width: 100%; }
    .cat-responsibility.str-responsibility-overview .csr-hub__top--right {
      padding-left: 0px;
      width: 100%; }
  .str-strategy .values {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .str-strategy .values > li {
      -webkit-flex-basis: 50%;
      -ms-flex-preferred-size: 50%;
      flex-basis: 50%; } }

@media screen and (max-width: 910px) {
  .button-row {
    display: block;
    -webkit-flex-wrap: unset;
    -ms-flex-wrap: unset;
    flex-wrap: unset; }
  .button-row .button:first-of-type {
    margin: 0px 0px 8px; }
  .button-row .button:last-of-type {
    margin-left: 0px; }
  .grid-item.large.mask-reveal,
  .grid-item.small.mask-reveal {
    display: none; }
  #projects {
    width: 100%; }
  #responsibility {
    background: #1a778d;
    width: 100%; }
    #responsibility > *,
    #responsibility .arrow-link:after {
      color: #ffffff; } }

@media screen and (max-width: 768px) {
  .cat-company.str-strategy main .strategy-map-wrapper img:first-of-type {
    display: none; }
  .cat-company.str-strategy main .strategy-map-wrapper img:nth-of-type(2) {
    display: block; } }

@media screen and (max-width: 767px) {
  .home main .grid #about {
    height: auto; }
  .home main .grid .quick-link, .home main .grid .cat-responsibility.str-responsibility-overview .csr-hub__bottom > a, .cat-responsibility.str-responsibility-overview .home main .grid .csr-hub__bottom > a {
    height: 0;
    padding-bottom: 55%;
    width: 50%; }
  #investor-hub > div:nth-of-type(1),
  #investor-hub > div:nth-of-type(2) {
    width: 100%;
    padding: 0px; }
  .project-links > a {
    height: 415px; }
  .cat-responsibility.str-responsibility-overview .csr-hub__top .csr-hub__top--left {
    padding-right: 0%; }
  .gallery-container .my-gallery figure {
    margin-right: 3px;
    padding-bottom: 31.25%;
    width: -moz-calc(50% - 1.5px);
    width: calc(50% - 1.5px); }
    .gallery-container .my-gallery figure:nth-of-type(3n) {
      margin-right: 3px; }
    .gallery-container .my-gallery figure:nth-of-type(even) {
      margin-right: 0px !important; } }

@media screen and (max-width: 736px) {
  .sec-Mine Planning tr th {
    display: none; }
  .sec-Mine Planning tr td {
    display: block; }
    .sec-Mine Planning tr td:not(:last-of-type) {
      border-bottom: none !important; }
    .sec-Mine Planning tr td:before {
      content: attr(data-th) ": ";
      display: inline-block;
      font-weight: bold;
      float: left;
      padding-bottom: 20px;
      width: 6.5em; } }

@media screen and (max-width: 640px) {
  #width-check {
    z-index: 2; }
  .hero-video {
    background-image: url("../img/background/hero-geologo-mobile.jpg");
    height: 700px; }
  .hero-video__content h1 {
    font-size: 50px;
    line-height: 55px; }
  .banner {
    height: 390px; }
  main > .container .content-left, main.stock-bar > div .content-left, main.main-menu > div .content-left, nav main > .submenu-wrapper .content-left {
    padding: 55px 40px; }
  .project-links > a {
    height: 380px;
    margin-left: 0px;
    margin-right: 0px;
    width: 100%; }
    .project-links > a:nth-of-type(odd) {
      margin-left: 0px; }
    .project-links > a:nth-of-type(even) {
      margin-right: 0px; }
    .project-links > a:nth-of-type(3n) {
      margin-left: 0px;
      margin-right: 0px; }
  .investor-overview__top {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .investor-overview__top--left, .investor-overview__top--right {
      width: 100%; }
  .cat-responsibility.str-responsibility-overview .csr-hub__bottom {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .cat-responsibility.str-responsibility-overview .csr-hub__bottom > a:nth-of-type(1) {
      margin-right: 0px;
      width: 100%; }
    .cat-responsibility.str-responsibility-overview .csr-hub__bottom > a:nth-of-type(2) {
      border-top: 2px solid #ffffff;
      margin-right: 0px;
      width: 100%; }
    .cat-responsibility.str-responsibility-overview .csr-hub__bottom > a:nth-of-type(3) {
      border-top: 2px solid #ffffff;
      width: 100%; }
  .team-roster .team-member {
    margin: 0px 0px 55px;
    width: 100%; }
    .team-roster .team-member:nth-of-type(3n+3), .team-roster .team-member:nth-of-type(3n+1) {
      margin-left: 0px;
      margin-right: 0px; }
    .team-roster .team-member:nth-of-type(odd) {
      margin-left: 0px !important; }
    .team-roster .team-member:nth-of-type(even) {
      margin-right: 0px !important; }
  .featherlight .featherlight-content {
    height: 100vh;
    margin: 0px;
    width: 100%; }
    .featherlight .featherlight-content .flex-container .flex-left > img {
      width: 320px; }
  .content-left .qmod-pricehistory .picker__box, .content-left .qmod-pricehistory .picker__wrap,
  .content-left .qmod-pricehistory .picker__frame, .content-left .qmod-pricehistory .picker__holder {
    width: 320px; }
  .content-left .qmod-pricehistory th.picker__weekday {
    font-size: 12px !important; }
  .tabs .select-wrap,
  .tabs .select-wrap > select {
    display: block; }
  .tabs > ul {
    display: none; }
  .document-link, .event-link, .blog-article {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .document-link > span:nth-of-type(1), .event-link > span:nth-of-type(1), .blog-article > span:nth-of-type(1), .blog-article > span:nth-of-type(1) {
    width: 100%; }
  .document-link > span:nth-of-type(2), .event-link > span:nth-of-type(2), .blog-article > span:nth-of-type(2) {
    width: -moz-calc(100% - 55px);
    width: calc(100% - 55px); }
  .blog-article > span:nth-of-type(2) {
    width: -moz-calc(100% - 55px);
    width: calc(100% - 55px);
    padding-left: 0px;
    padding-top: 15px; }
  #reserves-and-resources {
    margin: -10px 0px 30px;
    position: relative;
    right: inherit;
    width: 100%; }
  .values-link-hub > a {
    padding: 0px; }
    .values-link-hub > a h2 {
      font-size: 20px;
      line-height: 20px;
      padding-bottom: 10px; }
  .snapshot.mobile-fullwidth {
    width: -moz-calc(100% + 80px);
    width: calc(100% + 80px);
    overflow: hidden;
    margin-left: -45px;
    margin-right: -45px; }
  .cat-company.str-strategy main .container .snapshot.full .content-left, .cat-company.str-strategy main .stock-bar > div .snapshot.full .content-left, .cat-company.str-strategy main .main-menu > div .snapshot.full .content-left, .cat-company.str-strategy main nav .submenu-wrapper .snapshot.full .content-left, nav .cat-company.str-strategy main .submenu-wrapper .snapshot.full .content-left {
    padding-left: 0px;
    padding-right: 0px; }
  .str-strategy .summary-content img {
    display: none; }
  .cat-company.str-strategy main .container .content-left, .cat-company.str-strategy main .stock-bar > div .content-left, .cat-company.str-strategy main .main-menu > div .content-left, .cat-company.str-strategy main nav .submenu-wrapper .content-left, nav .cat-company.str-strategy main .submenu-wrapper .content-left {
    padding-left: 0px;
    padding-right: 0px; }
  .event-link > span.content-type-wrapper {
    text-align: left;
    padding-left: 0px;
    margin-top: 10px; } }

@media screen and (max-width: 550px) {
  .str-strategy .values li > span > strong {
    font-size: 24px;
    line-height: 31px; } }

@media screen and (max-width: 480px) {
  .hero-video__content {
    width: 95%; }
  #mobile-navigation .mobile-menu {
    padding: 93px 60px 93px 50px; }
  #mobile-navigation > ul > li a.has-submenu:before {
    left: -27px; }
  .mines-overview .project-links {
    margin-top: 25px; }
  .featherlight .featherlight-content .flex-container .flex-left {
    width: 100%; }
  .document-link, .event-link, .blog-article {
    position: relative; }
  .document-link > span:nth-of-type(3), .event-link > span:nth-of-type(3), .blog-article > span:nth-of-type(3), .blog-article > span:nth-of-type(3) {
    position: absolute;
    right: 20px; }
  .document-link > span:nth-of-type(2), .event-link > span:nth-of-type(2), .blog-article > span:nth-of-type(2), .blog-article > span:nth-of-type(2) {
    width: 90%; }
  .button.document:before {
    padding-right: 18px; }
  .cat-responsibility.str-responsibility-overview .csr-hub__top .csr-hub__top--left {
    min-width: 0px; }
  .embed-wrapper__overlay--play {
    width: 100px;
    height: 50px;
    font-size: 25px; }
  .embed-wrapper__overlay {
    display: none;
    visibility: hidden; }
  .featherlight:not(.photo-gallery) .featherlight-content {
    height: 100%;
    margin: 0px;
    width: 100%; }
  .featherlight-next, .featherlight-previous {
    position: fixed; } }

@media screen and (max-width: 380px) {
  .str-strategy .values li > span > strong {
    font-size: 20px;
    line-height: 28px; }
  .str-strategy .values li > span {
    line-height: 18px;
    padding: 25px 20px; }
  .home .quick-link > span, .home .cat-responsibility.str-responsibility-overview .csr-hub__bottom > a > span, .cat-responsibility.str-responsibility-overview .home .csr-hub__bottom > a > span {
    font-size: 20px; }
  .home main .grid #investor-hub h2 {
    font-size: 40px;
    line-height: 40px; }
  footer .footer-left > div h3.copper-price {
    font-size: 40px;
    line-height: 40px; }
  footer .footer-left > div h3 {
    font-size: 40px;
    line-height: 40px; }
  .button-row .button:last-of-type {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex; } }

/* EXTRA MOBILE LANDSCAPE STYLES */
/* Landscape */
@media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {
  .home .hero-video {
    background-image: url("../img/background/hero-geologo-mobile.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; }
  .embed-wrapper__overlay {
    display: none;
    visibility: hidden; } }

/* ----------- iPhone 6, 6S, 7 and 8 ----------- */
@media only screen and (min-device-width: 414px) and (max-device-width: 767px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {
  .home .hero-video {
    background-image: url("../img/background/hero-geologo-mobile.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; }
  .home #mobile-navigation .mobile-top-bar {
    height: 80px; }
  .hero-video__content h1 {
    font-size: 50px; }
  .hero-video__content {
    width: 100%;
    top: 60%; }
  .embed-wrapper__overlay {
    display: none;
    visibility: hidden; } }

/* ===== ACCORDIAN STYLES ===== */
/* Dustin -- March 15th, 2022 */
.accordian-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
}
.accordian-item > div:nth-of-type(1) {
  background: #ededed;
  color: #444e6a;
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 6px;
  padding: 5px 70px 5px 30px;
  position: relative;
  text-transform: uppercase;
  width: 100%;
}
.accordian-item > div:nth-of-type(1):before {
 background: #fafafa;
 content: '';
 height: 100%;
 position: absolute;
 right: 55px;
 top: 0px;
 width: 2px;
}

.accordian-item > div:nth-of-type(1):after {
  content: '\f107';
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  right: 21px;
  text-align: center;
  top: 6px;
  -webkit-transition: all .175s ease-in-out;
  -moz-transition:    all .175s ease-in-out;
  -o-transition:      all .175s ease-in-out;
  -ms-transition:     all .175s ease-in-out;
  transition:         all .175s ease-in-out;
}

.accordian-item > div:nth-of-type(2) {
  color: #444e6a;
  height: 0px;
  min-height: 0px;
  overflow: hidden;
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
  width: 100%;
  -webkit-transition: padding .175 cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition: padding .175 cubic-bezier(0.23, 1, 0.32, 1);
  transition: padding .175 cubic-bezier(0.23, 1, 0.32, 1); 
}

.accordian-item > div > h3 {
  display: none;
} 

.accordian-item > div .document-link {
  width: calc(100% + 60px);
  margin-left: -30px;
  margin-right: -30px;
}

.accordian-item div.open { background: #444e6a;color: #fafafa; }
.accordian-item div.open:after {
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg); }
}
.accordian-item div.active {
  margin-bottom: 30px;
  /*display: block;*/
}
