/*
Theme Name: Pure Gold Mining
Text Domain: puregoldmining
Version: 1.0.5
Description: Theme for Pure Gold Mining website
Author: Target Marketing
Author URI: https://targetmarketing.ca

*/
.container-fluid {
  padding-right: 4rem;
  padding-left: 4rem;
}

img {
  max-width: 100%;
}

a {
  cursor: pointer;
  color: #dc1e34;
  text-decoration: none;
}
a:hover {
  color: #3c3c3c;
  text-decoration: underline;
}

.contact-page-container, .job-offers-container, .article-content {
  width: 90%;
  max-width: 800px;
  margin: 3rem auto;
}

.button {
  padding: 0.5rem 1rem;
  color: #ffffff;
  background-color: #dc1e34;
  border: 1px solid #dc1e34;
  transition: all 0.2s;
  text-align: center;
  min-width: 12rem;
  margin: 1.25rem;
}
.button:hover {
  text-decoration: none;
  color: #dc1e34;
  background-color: #ffffff;
}

.social-icon-list {
  display: flex;
}

.social-icon {
  display: inline-block;
  font-size: 0;
  width: 1.5rem;
  height: 1.5rem;
  margin: 0.25rem;
}
.social-icon svg {
  width: 100%;
  height: 100%;
  fill: #3c3c3c;
  transition: fill 0.2s;
}
.social-icon:hover svg {
  fill: #dc1e34;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}

body {
  font-family: proxima-nova, sans-serif;
  font-weight: 300;
  line-height: 1.3;
  color: #3c3c3c;
}

.navbar {
  list-style: none;
}
.navbar .menu-item a {
  padding: 0.75rem;
  display: inline-block;
  color: #ffffff;
  width: 100%;
  text-decoration: none;
}
.navbar .menu-item a:hover {
  text-decoration: underline;
}

.homepage-nav {
  position: absolute;
  width: 100%;
}

.nav-container {
  z-index: 100;
}

.docked-nav {
  position: fixed;
  top: 0;
  width: 100%;
}
.docked-nav .main-nav {
  background: #000000a8;
}

.fixed-nav {
  position: fixed;
  top: 0;
  width: 100%;
}
.fixed-nav.darken-nav .main-nav {
  background: #000000a8;
}

.main-nav {
  transition: background-color 0.35s;
  font-weight: normal;
  background: #000000a8;
}
.main-nav .navbar {
  position: relative;
  pointer-events: all;
}
.main-nav .nav > .menu-item {
  position: relative;
  font-size: 1.25rem;
}
.main-nav .nav > .menu-item:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.25s;
}
.main-nav .nav > .menu-item:last-child .sub-menu {
  right: 0;
}
.main-nav .sub-menu {
  position: absolute;
  min-width: 100%;
  visibility: hidden;
  transform: translateY(-1rem);
  opacity: 0;
  transition: opacity 0.25s;
  list-style: none;
  border-top: 3px solid #dc1e34;
  padding: 0;
  background-color: rgba(0, 0, 0, 0.85);
  padding: 0.5rem;
  font-size: 1rem;
}
.main-nav .sub-menu a {
  color: #ffffff;
  padding: 0.25rem;
  white-space: nowrap;
}
.main-nav .sub-menu a:hover {
  color: #ffffff;
}

.extra-nav {
  background-color: #3c3c3c;
}
.extra-nav .stock-info {
  color: #ffffff;
}
.extra-nav .menu-item a {
  color: #ffffff;
  padding: 0.5em;
  text-transform: uppercase;
  font-weight: 500;
}

.main-menu-toggler {
  display: none;
  font-size: 0;
  border: 1px solid #ffffff;
  appearance: none;
  background: none;
  padding: 0.25rem 0.5rem;
}
.main-menu-toggler .toggler-icon {
  display: inline-block;
  background: center center/contain url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgb%28255%2C+255%2C+255%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat;
  height: 2rem;
  width: 2rem;
}

.mobile-top-menu {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media screen and (max-width: 900px) {
  .main-menu-toggler {
    display: block;
  }

  .container-fluid {
    padding-right: 2rem;
    padding-left: 2rem;
  }

  .nav-container {
    transition: background-color 0.2s;
    z-index: 1;
  }

  .menu-top-menu-container .nav {
    flex-direction: column;
    position: absolute;
    top: 0;
    right: 0;
    padding-top: 2.5rem;
  }
  .menu-top-menu-container .nav .menu-item {
    opacity: 0;
    pointer-events: none;
  }

  .main-nav {
    background-color: #000000a8;
    transition: none;
  }
  .fixed-nav .main-nav {
    background-color: transparent;
  }
  .main-nav .menu-main-container {
    position: absolute;
    top: 124px;
    right: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s 0.25s;
  }
  .main-nav .nav {
    flex-direction: column;
    margin-bottom: 1rem;
  }
  .main-nav .sub-menu {
    position: relative;
    transform: none;
    background-color: #00000040;
  }

  body.main-nav-open {
    overflow: hidden;
  }
  body.main-nav-open .nav-container {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    overflow: auto;
    background-color: #3c3c3c;
  }
  body.main-nav-open .fixed-nav.darken-nav .main-nav,
body.main-nav-open .main-nav {
    background-color: #3c3c3c;
    transition: background-color 0.35s;
  }
  body.main-nav-open .fixed-nav.darken-nav .main-nav .menu-main-container,
body.main-nav-open .main-nav .menu-main-container {
    visibility: visible;
    opacity: 1;
    pointer-events: all;
  }
  body.main-nav-open .fixed-nav.darken-nav .main-nav .sub-menu,
body.main-nav-open .main-nav .sub-menu {
    opacity: 1;
    visibility: visible;
  }
  body.main-nav-open .mobile-top-menu {
    display: flex;
    flex-direction: column;
    margin-bottom: 3rem;
  }
  body.main-nav-open .mobile-top-menu a {
    padding: 0.75rem;
    display: inline-block;
    color: #ffffff;
    width: 100%;
    text-decoration: none;
    font-size: 1.25rem;
  }
  body.main-nav-open .mobile-top-menu a:hover {
    text-decoration: underline;
  }
}
.hero {
  min-height: 50vh;
  background: center center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: calc(110px + 2rem);
  padding-bottom: 2rem;
}
.hero .hero_content {
  display: flex;
  min-height: 400px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero.hero-404 {
  height: calc(100vh - 283px);
}

.page-title {
  text-align: center;
  color: #ffffff;
}
.page-title:only-child {
  margin-bottom: 0;
}

.page-headline {
  text-align: center;
  color: #ffffff;
  max-width: 50rem;
}

.page-container {
  display: flex;
  padding: 3rem 2rem;
}

.page-sidebar {
  flex: 0 0 auto;
}
.page-sidebar .sidebar {
  position: sticky;
  top: 150px;
  margin-right: 4rem;
}
@media screen and (max-width: 900px) {
  .page-sidebar {
    display: none;
  }
}

.sidebar_menu {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.side-menu-item.current-page a {
  color: #3c3c3c;
}
.side-menu-item a {
  display: inline-block;
  width: 100%;
  font-size: 1.25rem;
  color: #dc1e34;
  text-decoration: none;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  font-weight: 500;
}
.side-menu-item a:hover {
  color: #3c3c3c;
}

.sidebar-news {
  background-color: #f7f6f0;
  padding: 1rem;
  width: 15rem;
}

.sidebar-news__thumbnail {
  height: 10rem;
  width: 100%;
  background: center center/cover no-repeat;
  margin-bottom: 1rem;
}

.sidebar-news__headline {
  font-size: 1.2rem;
  text-transform: uppercase;
}

.sidebar-news__link {
  color: #dc1e34;
  text-decoration: none;
}
.sidebar-news__link:hover {
  color: #dc1e34;
  text-decoration: underline;
}

.sidebar-news__title {
  line-height: 1.35;
  font-size: 1rem;
}

.sidebar-news__read-more {
  display: block;
  background-color: #dc1e34;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  margin-top: 1rem;
  padding: 0.5rem;
  transition: all 0.15s;
  border: 1px solid #dc1e34;
}
.sidebar-news__read-more:hover {
  background: #ffffff;
  color: #dc1e34;
}

.page-content {
  width: 100%;
  overflow: hidden;
  font-size: 1.25rem;
}

.filter-dropdown-label {
  display: block;
  font-size: 0.9rem;
}

.dropdown-toggle {
  position: relative;
  background-color: #3c3c3c;
  min-width: 10rem;
  text-align: left;
}
.dropdown-toggle:after {
  right: 1rem;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
}

.filter-dropdown-selected {
  display: block;
  margin-top: 1rem;
  font-size: 1.5rem;
  font-weight: 500;
}

.news-list, .investor-presentations-item, .investor-presentations-list {
  list-style: none;
  padding: 0;
}

.news-item, .investor-presentations-item {
  transition: background-color 0.2s;
}
.news-item:nth-child(odd), .investor-presentations-item:nth-child(odd) {
  background-color: #f7f6f0;
}
.news-item:nth-child(even), .investor-presentations-item:nth-child(even) {
  background-color: #fafafa;
}
.news-item:hover, .investor-presentations-item:hover {
  background-color: #ececec;
}

.news-item__link, .investor-presentations-item__link {
  display: block;
  padding: 1rem;
  text-decoration: none;
  color: #3c3c3c;
}
.news-item__link:hover, .investor-presentations-item__link:hover {
  color: #3c3c3c;
}
.news-item__link:hover .news-item__title, .investor-presentations-item__link:hover .news-item__title {
  color: #3c3c3c;
}

.news-item__title {
  font-size: 1.15rem;
  color: #dc1e34;
  margin: 0;
  transition: color 0.2s;
}

.news-item__date {
  font-size: 0.9rem;
}

.article-hero h2 {
  font-size: 2.5rem;
}

.article-pdf {
  display: flex;
  background-color: #fafafa;
  padding: 0.75rem;
  margin-top: 1rem;
  color: #dc1e34;
  text-decoration: none;
}
.article-pdf:before {
  content: "";
  position: relative;
  display: inline-block;
  width: 1.5rem;
  margin-right: 0.5rem;
  background: center center/contain url("./assets/img/icon-pdf.svg") no-repeat;
}
.article-pdf:hover {
  color: inherit;
  background-color: #e4e4e4;
}

.article-title {
  font-size: 1.75rem;
  margin: 0;
}

.article-copy {
  margin-top: 1rem;
}

.article-news-page-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-top: 2rem;
  transition: color 0.2s;
}
.article-news-page-link:before {
  content: "";
  position: relative;
  left: 0;
  display: inline-block;
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
  background: center center/contain url("./assets/img/red-right-chevron.svg") no-repeat;
  transform: rotate(180deg);
  transition: filter 0.2s;
}
.article-news-page-link:hover {
  text-decoration: none;
}
.article-news-page-link:hover:before {
  filter: grayscale(1);
}

.job-list-headline {
  margin-top: 2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-weight: 500;
}

.job-list-header {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
  padding: 0.5rem 1rem;
}

.job-list {
  list-style: none;
  padding: 0;
}

.job-item {
  display: block;
  padding: 1rem;
}
.job-item:nth-child(odd) {
  background-color: #f7f6f0;
}
.job-item:nth-child(even) {
  background-color: #fafafa;
}
.job-item:hover {
  background-color: #ececec;
}
.job-item:hover .job-link {
  color: #3c3c3c;
}

.job-link {
  display: flex;
  justify-content: space-between;
  text-decoration: none;
}

.job-closing-date {
  color: #3c3c3c;
}

.single-job-header {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  margin: 1rem 0;
  background-color: #f7f6f0;
}

.single-job-cell {
  display: flex;
  flex-direction: column;
}
.single-job-cell :first-child {
  font-weight: 500;
}

.single-job-apply-cell {
  display: flex;
  align-items: center;
}

.single-job-apply-link {
  display: flex;
  color: #ffffff;
  background-color: #dc1e34;
  text-decoration: none;
  padding: 0.4rem 2.75rem;
  border: 1px solid #dc1e34;
  transition: all 0.2s;
}
.single-job-apply-link:hover {
  color: #dc1e34;
  background-color: #ffffff;
}

.single-job-offer-pdf {
  display: flex;
  text-decoration: none;
  margin-top: 2rem;
}
.single-job-offer-pdf:before {
  content: "";
  position: relative;
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.5rem;
  background: center center/contain url("./assets/img/icon-pdf.svg") no-repeat;
}

.contact-page-block-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.contact-page-block-left,
.contact-page-block-right {
  flex: 1 0 50%;
}
.contact-page-block-left:first-child,
.contact-page-block-right:first-child {
  padding-right: 1.5rem;
}
.contact-page-block-left:last-child,
.contact-page-block-right:last-child {
  padding-left: 1.5rem;
}

.contact-page-list-item {
  margin-bottom: 2rem;
}
.contact-page-list-item:last-child {
  margin-bottom: 0;
}

.contact-page-heading {
  position: relative;
  font-weight: 400;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}
.contact-page-heading:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  background-color: #3c3c3c;
}

.footer {
  background-color: #f7f6f0;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.footer-newsletter {
  flex-basis: 40%;
  z-index: 0;
}

.footer__heading {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.footer-newsletter__input {
  border-radius: 0;
  border-color: #ffffff;
}

.newsletter__submit {
  border-radius: 0;
  background-color: #dc1e34;
  border-color: #dc1e34;
  min-width: 10rem;
}
.newsletter__submit:hover {
  background-color: #ffffff;
  color: #dc1e34;
  border-color: #dc1e34;
}

.footer-legal {
  padding-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.footer-legal .legal-col {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.7rem;
}
.footer-legal .legal-col a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-legal .legal-col a:hover {
  text-decoration: none;
}
.footer-legal .legal-col a:first-child {
  margin-left: 0.35rem;
}
.footer-legal .legal-col a:not(:first-child):before {
  content: "";
  position: relative;
  display: inline-block;
  height: 1.15rem;
  width: 1px;
  background-color: #3c3c3c;
  margin: 0 0.35rem;
}

.footer-col-menus {
  display: flex;
  flex-basis: 40%;
  justify-content: space-around;
}

.footer-menu-container {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  line-height: 1.65;
}

.footer-menu-list {
  list-style: none;
  padding: 0;
}
.footer-menu-list .menu-item a {
  color: #3c3c3c;
  text-decoration: none;
}
.footer-menu-list .menu-item a:hover {
  text-decoration: underline;
}

.legal-col__oxygen {
  display: inline-block;
  margin: 0.4rem;
  width: 6rem;
}

@media screen and (max-width: 900px) {
  .footer-container,
.footer-col-menus {
    flex-direction: column;
  }

  .footer-col-menus {
    margin: 2rem 0 1rem 0;
  }

  .legal-col {
    margin: 0.5rem 0;
  }
}
.investor-presentations-dropdown {
  margin-top: 2rem;
}

.investor-presentations-item:hover svg {
  fill: #3c3c3c;
}

.investor-presentations-item__link {
  align-items: center;
}

.investor-presentations-item__pdf {
  display: flex;
  padding-left: 1rem;
}
.investor-presentations-item__pdf svg {
  transition: fill 0.2s;
  fill: #dc1e34;
  max-height: 1.75rem;
}

.investor-presentations-header,
.investor-presentations-item__link {
  display: flex;
  padding-left: 2rem;
  padding-right: 2rem;
}
.investor-presentations-header :first-child,
.investor-presentations-item__link :first-child {
  flex: 0 0 20%;
}

.investor-presentations-header {
  padding-right: 2rem;
  margin-top: 2.5rem;
  font-weight: 500;
}

.stock-information__data {
  display: flex;
  flex-wrap: wrap;
}

.stock-label,
.stock-information__title,
.stock-information__exchange {
  font-weight: 400;
}

.stock-item {
  display: flex;
  flex-direction: column;
  flex: 1 0 50%;
  margin: 1rem 0;
}
.stock-item:first-child {
  padding-right: 1rem;
}
.stock-item:nth-child(3) {
  padding-right: 1rem;
}

.stock-value,
.stock-label {
  white-space: nowrap;
}

.team-member__list {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 2rem 0;
}

.team-member {
  display: flex;
  flex-direction: column;
  flex: 0 0 33%;
  padding: 0.5rem 2rem;
  cursor: pointer;
}

.team-member__picture {
  display: block;
  height: 15rem;
  width: 100%;
  background: center center/cover no-repeat;
}

.team-member__name,
.team-modal-name {
  font-size: 1.15rem;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.team-modal {
  display: flex;
  padding: 0 3rem 3rem 3rem;
}

.team-modal-header {
  border: none;
}

.team-modal-picture {
  flex: 0 0 33%;
}

.team-modal-content {
  margin-left: 2rem;
}

.hero-intro, .hero-video, .landing-video {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
}

.hero-intro-background-image {
  background: center center/cover no-repeat;
}

.background-video-container {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.background-video {
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
}

.hero-intro__content-container, .hero-video__content-container, .landing-video__content-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
  width: 100%;
}

.hero-intro__content, .hero-video__content, .landing-video__content {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  color: #ffffff;
  overflow: hidden;
  max-width: 100%;
}

.hero-intro__headline, .hero-video__headline-container, .landing-video__headline-container {
  font-size: 4rem;
  font-weight: 700;
  max-width: 25rem;
  margin: 0 2rem 0 0;
  flex: 0 1 30%;
}

.hero-intro__sub-headline, .hero-video__sub-headline, .landing-video__sub-headline {
  font-size: 1.5rem;
  font-weight: normal;
  max-width: 25rem;
  margin: 0 0 0 2rem;
  flex: 0 1 30%;
}

.hero-intro__countdown {
  flex: 0 0 auto;
}
@media screen and (max-width: 1360px) {
  .hero-intro__countdown {
    width: calc(520px * 0.6);
    height: calc(520px * 0.6);
  }
  .hero-intro__countdown .countdown {
    transform: scale(0.6);
    transform-origin: top left;
  }
}
@media screen and (max-width: 460px) {
  .hero-intro__countdown {
    width: calc(520px * 0.4);
    height: calc(520px * 0.4);
  }
  .hero-intro__countdown .countdown {
    transform: scale(0.4);
    transform-origin: top left;
  }
}

@keyframes blink {
  30%, 70% {
    opacity: 1;
  }
  40%, 60% {
    opacity: 0;
  }
}
.hero-intro__countdown {
  font-size: 6rem;
  line-height: 1;
}
.hero-intro__countdown .hero-intro__countdown-numbers {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 0.85;
  color: #ffffff;
}
.hero-intro__countdown .hero-intro__countdown-numbers:before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #ffffff;
}
.hero-intro__countdown .hero-intro__countdown-numbers:after {
  position: relative;
  content: attr(data-type);
  bottom: -0.5rem;
  left: 0;
  right: 0;
  font-size: 0.8rem;
  text-align: center;
  font-weight: 500;
  text-transform: uppercase;
  transform: translateY(100%);
}
.hero-intro__countdown .hero-intro__countdown-separator {
  color: #ffffff;
}

@media screen and (max-width: 1000px) {
  .hero-intro__content-container, .hero-video__content-container, .landing-video__content-container {
    padding: 2rem 0 4rem;
  }

  .hero-intro__content, .hero-video__content, .landing-video__content {
    flex-direction: column;
    text-align: center;
    font-size: 2vw;
  }

  .hero-intro__headline, .hero-video__headline-container, .landing-video__headline-container {
    font-size: 3.25em;
    margin: 0 0 2rem 0;
    max-width: 45rem;
  }

  .hero-intro__sub-headline, .hero-video__sub-headline, .landing-video__sub-headline {
    font-size: 2em;
    margin: 2rem 0 0 0;
    max-width: 45rem;
  }

  .hero-intro__countdown {
    font-size: 2.5em;
  }

  .hero-intro__cta {
    font-size: 1.5rem;
  }
}
.hero-image.with-breaking-news {
  padding-bottom: 3rem;
}

.hero-image__headline {
  font-size: 4rem;
  color: #ffffff;
  text-align: center;
}
@media screen and (max-width: 1000px) and (min-width: 451px) {
  .hero-image__headline {
    font-size: 5vw;
  }
}
@media screen and (max-width: 450px) {
  .hero-image__headline {
    font-size: 9vw;
  }
}

.section-with-background .hero-image__content.section__content {
  height: 55rem;
  min-height: 60vh;
  max-width: 65rem;
}

.section-with-background {
  background: center center/cover no-repeat;
  color: #ffffff;
}
.section-with-background .section__content {
  min-height: 50vh;
}

.section__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 50rem;
  margin: auto;
  padding: 8rem 1rem;
}

.section__headline {
  font-size: 3rem;
  margin-bottom: 1.25rem;
  text-align: center;
}

.section__copy {
  font-size: 1.25rem;
  text-align: center;
}

.section-3 {
  padding: 3rem 0;
}
.section-3.with-breaking-news {
  padding-top: 18rem;
}

.investor-numbers,
.metrics-list {
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-around;
  width: 100%;
  flex-wrap: wrap;
}

.inverstor-numbers__item,
.metrics-item {
  display: flex;
  flex: 0 0 calc(25% - 1rem);
  padding: 0.5rem;
  flex-direction: column;
  align-items: center;
  color: #62a744;
}

.inverstor-numbers__value,
.metrics-item__value {
  position: relative;
  text-align: center;
  width: 100%;
  font-size: 3rem;
  font-weight: 300;
}
.inverstor-numbers__value:after,
.metrics-item__value:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  background-color: #62a744;
}

.inverstor-numbers__label,
.metrics-item__label {
  font-size: 1.15rem;
  text-align: center;
  white-space: nowrap;
  font-weight: 300;
}

.section-numbers .section__content {
  padding: 6rem 0rem;
  max-width: 60rem;
}

.section-6 .section__content {
  padding: 4rem 1rem;
}

.section-col,
.section-col_right,
.section-col_left {
  display: flex;
  color: #ffffff;
  background-color: #3c3c3c;
}
.section-col .section__picture,
.section-col_right .section__picture,
.section-col_left .section__picture {
  flex: 0 0 50%;
  background: center center/cover no-repeat;
}
.section-col .section__headline,
.section-col_right .section__headline,
.section-col_left .section__headline {
  text-align: left;
}
.section-col .section__content,
.section-col_right .section__content,
.section-col_left .section__content {
  flex: 0 0 50%;
  align-items: flex-start;
  max-width: 45rem;
  padding: 5rem;
  margin-left: 0;
}
.section-col.col-left .section__picture,
.section-col_right.col-left .section__picture,
.section-col_left.col-left .section__picture {
  order: 2;
}
.section-col.col-left .section__content,
.section-col_right.col-left .section__content,
.section-col_left.col-left .section__content {
  margin-right: 0;
  margin-left: auto;
}
.section-col .section__copy,
.section-col_right .section__copy,
.section-col_left .section__copy {
  text-align: left;
  margin-bottom: 8rem;
}
.section-col .section__cta,
.section-col_right .section__cta,
.section-col_left .section__cta {
  margin: 0;
}
@media screen and (max-width: 1000px) {
  .section-col,
.section-col_right,
.section-col_left {
    flex-direction: column;
  }
  .section-col .section__picture,
.section-col_right .section__picture,
.section-col_left .section__picture {
    flex: auto;
    height: 20rem;
  }
  .section-col .section__content,
.section-col_right .section__content,
.section-col_left .section__content {
    max-width: none;
    padding: 3rem;
  }
  .section-col.col-left .section__picture,
.section-col_right.col-left .section__picture,
.section-col_left.col-left .section__picture {
    order: 0;
  }
  .section-col.col-left .section__content,
.section-col_right.col-left .section__content,
.section-col_left.col-left .section__content {
    margin: 0;
  }
}

@keyframes down {
  from {
    transform: translateY(-2rem);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.hero-intro__scroll-helper-container {
  position: relative;
  width: 2rem;
  height: 2rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.hero-intro__scroll-helper {
  position: absolute;
  top: 0;
  font-size: 0;
  width: 2rem;
  height: 2rem;
  background: center center/contain url("./assets/img/down-arrow.svg") no-repeat;
  animation: down 2s forwards infinite;
  opacity: 1;
  transition: opacity 1s;
  cursor: pointer;
}
.hero-intro__scroll-helper.clicked {
  opacity: 0;
  pointer-events: none;
  animation: none;
}

.section-news {
  position: absolute;
  width: 100%;
  transform: translateY(-50%);
}

.section-news__container {
  display: block;
  margin: auto;
  background-color: #f7f6f0;
  width: 50rem;
  max-width: 100%;
  padding: 3rem;
}

.section-news__article {
  display: flex;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #3c3c3c;
}

.section-news__title {
  font-size: 1.25rem;
  font-weight: 400;
}

.section-news__content {
  padding-right: 1rem;
}

.section-news__date {
  display: block;
  margin-bottom: 2rem;
  font-weight: 400;
}

.section-news__thumbnail {
  margin-left: 1rem;
  flex: 0 0 calc(50% - 1rem);
  background: center center/cover no-repeat;
}

.section-news__read-more {
  display: inline-block;
  margin-left: 0;
  margin-right: 0;
}

.section-news__newsletter {
  display: flex;
}

.section-news__newsletter-copy {
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 400;
  flex: 0 0 calc(50% - 1rem);
  margin-right: 1rem;
}

.section-news__newsletter-form {
  margin-left: 1rem;
  flex: 0 0 calc(50% - 1rem);
}
.section-news__newsletter-form .newsletter__submit {
  background-color: #dc1e34;
  border-color: #dc1e34;
  min-width: 6rem;
}
.section-news__newsletter-form .newsletter__submit:hover {
  color: #dc1e34;
  background-color: #ffffff;
}

@media screen and (max-width: 770px) {
  .section-news__container {
    padding: 3rem 1.5rem;
  }

  .section-news__content {
    padding-right: 0;
    order: 1;
  }

  .section-news__article {
    flex-direction: column;
  }

  .section-news__thumbnail {
    flex: 0 0 15rem;
    display: block;
    margin: 0 0 1rem 0;
  }

  .section-news__newsletter {
    flex-direction: column;
  }

  .section-news__newsletter-copy {
    margin-right: 0;
    flex: auto;
  }

  .section-news__newsletter-form {
    margin: 1rem 0 0 0;
  }

  .section-3.with-breaking-news {
    padding-top: 24rem;
  }

  .hero-image.with-breaking-news {
    padding-bottom: 10rem;
  }
}
.hero-video__headline-container, .landing-video__headline-container {
  max-width: none;
  text-align: right;
}
.hero-video__headline-container h1, .landing-video__headline-container h1 {
  display: inline-block;
  text-align: left;
  font-size: inherit;
}
@media screen and (max-width: 1000px) {
  .hero-video__headline-container, .landing-video__headline-container {
    font-size: 4rem;
  }
  .hero-video__headline-container h1, .landing-video__headline-container h1 {
    text-align: center;
  }
}

.hero-video__sub-headline, .landing-video__sub-headline {
  max-width: none;
  font-size: 2rem;
}

.hero-video__play-button, .landing-video__play-button {
  margin: 0 3rem;
}
.hero-video__play-button img, .landing-video__play-button img {
  display: block;
  width: 23rem;
  max-width: 50vw;
  cursor: pointer;
}
@media screen and (max-width: 1200px) {
  .hero-video__play-button img, .landing-video__play-button img {
    width: 15rem;
  }
}

.hero-video__background-image, .landing-video__background-image {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: center center/cover no-repeat;
}

.modal-dialog-with-video {
  justify-content: center;
  width: 70vw;
  height: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  .modal-dialog-with-video {
    width: 90vw;
    height: 90vh;
  }
}

.modal-content-with-video {
  background: transparent;
}

.modal-header-with-video {
  border: none;
}

.modal-body-with-video {
  padding: 0;
  background: transparent;
}

.modal-video {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 78.5vh;
  max-width: 100vw;
}

.modal-close-video {
  font-size: 4rem;
  color: white;
  position: absolute;
  right: 0;
  opacity: 1;
  transform: translateY(-100%);
}
.modal-close-video:hover {
  color: white;
  opacity: 0.75;
}

.metrics-grade .metrics-item__label:after {
  content: "4";
  font-size: 12px;
  vertical-align: super;
  margin-left: 0.25em;
}

.section-footnotes .section__content {
  display: block;
  padding: 1rem;
}
.section-footnotes p {
  font-size: 12px;
  margin: 0.5rem 0;
  font-style: italic;
}

@keyframes rotate1 {
  0% {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(405deg);
  }
}
@keyframes rotate2 {
  0% {
    transform: translate(-50%, -50%) rotate(135deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(495deg);
  }
}
@keyframes rotate3 {
  0% {
    transform: translate(-50%, -50%) rotate(225deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(585deg);
  }
}
.countdown-container {
  position: relative;
  width: 520px;
  height: 520px;
}

.countdown__lines-container {
  top: -40px;
}
.countdown__lines-container.line-appears .countdown__line-item {
  opacity: 0.6;
}

.countdown__circle {
  position: absolute;
  top: 0;
  left: 0;
}

.countdown__lines-container,
.countdown__circle {
  position: relative;
}

.countdown__line-item {
  position: absolute;
  width: 4px;
  height: 80px;
  background-color: #ffffff;
  opacity: 0;
}

.countdown__arrows-container {
  position: relative;
}
.countdown__arrows-container .countdown__arrow {
  position: absolute;
  top: 0;
  left: 0;
  width: 520px;
  height: 520px;
  border: 80px solid;
  border-color: #ffffff transparent transparent transparent;
  border-radius: 50%;
  opacity: 0.75;
  animation: 1.5s forwards ease-in-out;
}
.countdown__arrows-container .countdown__arrow:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
  animation-name: rotate1;
}
.countdown__arrows-container .countdown__arrow:nth-child(2) {
  transform: translate(-50%, -50%) rotate(135deg);
  animation-name: rotate2;
}
.countdown__arrows-container .countdown__arrow:nth-child(3) {
  transform: translate(-50%, -50%) rotate(225deg);
  animation-name: rotate3;
}
.countdown__arrows-container .countdown__arrow:nth-child(4) {
  transform: translate(-50%, -50%) rotate(225deg);
  animation-name: rotate3;
}
.countdown__arrows-container .countdown__arrow.countdown__arrow-edge {
  border: none;
}
.countdown__arrows-container .countdown__arrow.countdown__arrow-edge .arrow-edge {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  border: 80px solid;
  border-color: #ffffff transparent transparent transparent;
  transform: translate(20%, 50%) rotate(315deg);
}

.countdown__time-container {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.countdown__time-left {
  order: 1;
  display: flex;
  flex-direction: column;
  font-size: 14rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  opacity: 0;
}
.countdown__time-left:after {
  content: "";
  position: relative;
  order: 2;
  width: 100%;
  height: 1px;
  top: -12px;
  background-color: #ffffff;
}
.countdown__time-left:before {
  content: attr(data-unit);
  position: relative;
  order: 3;
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: normal;
  line-height: 1;
}
.countdown__time-left.fade-in {
  opacity: 1;
}

@keyframes line-fill-round {
  from {
    stroke-dasharray: 105;
  }
  to {
    stroke-dasharray: 150;
  }
}
.countdown-line__bg {
  opacity: 0.5;
  fill: none;
  stroke: #bcbec0;
  stroke-width: 30;
  stroke-miterlimit: 10;
  enable-background: new;
}

.countdown-line__static {
  fill: none;
  stroke: #62a744;
  stroke-width: 30;
  stroke-miterlimit: 10;
  opacity: 0;
}

.countdown-line__filling {
  fill: none;
  stroke: #62a744;
  stroke-width: 30;
  stroke-linecap: round;
  stroke-miterlimit: 10;
  transform: rotate(5deg);
  transform-origin: center;
  opacity: 0;
}

.countdown-line__static.visible,
.countdown-line__filling.visible {
  opacity: 1;
}

.landing-logo {
  position: absolute;
  padding: 2rem 3rem;
}

.metaslider-title {
  position: relative;
  margin-bottom: 2.5rem;
  padding: 0;
  border-bottom: none;
}
.metaslider-title:after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #3c3c3c;
  width: calc(100% + 16rem);
}

.metaslider {
  width: 700px !important;
  max-width: calc(100% - 2 * 70px - 2rem);
  margin: auto;
}
.metaslider .flex-viewport {
  padding-bottom: 3rem;
}
.metaslider .flexslider:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 0;
  right: 0;
  background: center center/contain url("./assets/img/expand-icon.svg") no-repeat;
  margin: 1rem;
  opacity: 0.6;
  pointer-events: none;
}
.metaslider .flexslider ul.flex-direction-nav li > a {
  opacity: 1;
  transform: translate(calc(100% + 1rem), -50%);
  height: 60px;
  width: 60px;
  background-image: url("./assets/img/next.svg");
}
.metaslider .flexslider ul.flex-direction-nav li > a.flex-prev {
  left: 0;
  transform: translate(calc(-100% - 1rem), -50%) rotate(180deg);
}
.metaslider .flexslider ul.flex-direction-nav li > a.flex-next {
  right: 0;
}
.metaslider .flexslider ol.flex-control-nav {
  bottom: 3.75rem;
}
.metaslider .flexslider ol.flex-control-nav li a {
  background-color: transparent;
  border: 1px solid #ffffff;
}
.metaslider .flexslider ol.flex-control-nav li a.flex-active {
  background-color: #ffffff;
}
.metaslider .flexslider .caption-wrap {
  transform: translateY(3rem);
  background-color: transparent;
  color: #3c3c3c;
  text-align: center;
}
.metaslider .flexslider .caption-wrap .caption {
  font-size: 1rem;
  font-style: italic;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 600px) {
  .metaslider {
    width: 100% !important;
    max-width: none;
  }
  .metaslider .flexslider:after {
    width: 15px;
    height: 15px;
  }
  .metaslider .flexslider ul.flex-direction-nav li > a {
    transform: translate(0, -50%);
    background-image: url("./assets/img/next-white.svg");
    width: 8vw;
    height: 8vw;
  }
  .metaslider .flexslider ul.flex-direction-nav li > a.flex-prev {
    transform: translate(0, -50%) rotate(180deg);
  }
}

.fancybox-active body {
  overflow: hidden;
}
.fancybox-active .flex-nav-next,
.fancybox-active .flex-nav-prev {
  opacity: 0;
}

#fancybox-wrap #fancybox-title {
  display: none !important;
}
#fancybox-wrap .fancy-ico {
  background: center center/contain url("./assets/img/next-white.svg") no-repeat;
  width: 50px;
  height: 50px;
  margin-top: 0;
  transform: translateY(-50%);
}
#fancybox-wrap #fancybox-right:hover #fancybox-right-ico {
  right: 10px;
}
#fancybox-wrap #fancybox-left:hover #fancybox-left-ico {
  left: 10px;
  transform: translateY(-50%) rotate(180deg);
}

/*# sourceMappingURL=style.css.map */
