/*
* MEDIA QUERIES
* Breakpoints for responsive sites
*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
@import url("https://use.typekit.net/chq3xvg.css");
.home .banner-slideshow {
  --slide-height: 80dvh;
  margin: 0;
}
.home .banner-slideshow .wrap {
  height: 100%;
  margin-top: auto;
  align-items: flex-start;
  justify-content: center;
  padding: 4rem 2rem;
}
@media (max-width: 1024px) {
  .home .banner-slideshow .wrap {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
}
.home .banner-slideshow .wrap .banner-caption {
  margin-top: 4rem;
  text-align: left;
  max-width: 55dvw;
}
.home .banner-slideshow .wrap .banner-caption h2 {
  font-size: 5rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
  text-transform: uppercase;
}
.home .banner-slideshow .wrap .banner-caption p {
  text-align: left;
}
.home .banner-slideshow .wrap .banner-caption .wp-block-buttons {
  margin-top: 4rem;
  justify-content: flex-start;
  text-transform: uppercase;
}

/* ------------------------------
***** INNER BANNERS *****
-------------------------------*/
.banner-static {
  --banner-height: 30vh;
  --tablet-height: 35vh;
  --mobile-height: 40vh;
  --title-color: white;
  --overlay-opacity: 0.5;
  --bg-pos: center center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: var(--banner-height);
  width: 100%;
  margin-bottom: 5rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 1.2s ease;
}
@media (max-width: 1024px) {
  .banner-static {
    height: var(--tablet-height);
  }
}
@media (max-width: 782px) {
  .banner-static {
    height: var(--mobile-height);
  }
}
.banner-static::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: var(--overlay-opacity);
  z-index: 1;
}
.banner-static .banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: var(--bg-pos);
     object-position: var(--bg-pos);
  z-index: 0;
}
.banner-static .wrap {
  position: relative;
  z-index: 2;
  margin: 0px auto 0px auto;
  color: var(--title-color);
  text-align: right;
  padding-bottom: 0px;
}
.banner-static .wrap h1.page-title {
  margin-bottom: -0.8rem;
  text-transform: uppercase;
}

/* -------------------------------------------
***** Includes *****
------------------------------------------- */
/*
* MEDIA QUERIES
* Breakpoints for responsive sites
*/
/* ------------------------------
***** INNER BANNERS *****
-------------------------------*/
.banner-static {
  --banner-height: 30vh;
  --tablet-height: 35vh;
  --mobile-height: 40vh;
  --title-color: white;
  --overlay-opacity: 0.5;
  --bg-pos: center center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: var(--banner-height);
  width: 100%;
  margin-bottom: 5rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 1.2s ease;
}
@media (max-width: 1024px) {
  .banner-static {
    height: var(--tablet-height);
  }
}
@media (max-width: 782px) {
  .banner-static {
    height: var(--mobile-height);
  }
}
.banner-static::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: var(--overlay-opacity);
  z-index: 1;
}
.banner-static .banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: var(--bg-pos);
     object-position: var(--bg-pos);
  z-index: 0;
}
.banner-static .wrap {
  position: relative;
  z-index: 2;
  margin: 0px auto 0px auto;
  color: var(--title-color);
  text-align: right;
  padding-bottom: 0px;
}
.banner-static .wrap h1.page-title {
  margin-bottom: -0.8rem;
  text-transform: uppercase;
}

.banner-slideshow {
  --slide-height: 80vh;
  --tablet-height: 60vh;
  --mobile-height: 40vh;
  --overlay-opacity: 0.3;
  --bg-pos: center;
  --swiper-pagination-bullet-width: 2rem;
  --swiper-pagination-bullet-height: 2rem;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-inactive-color: black;
  --swiper-pagination-color: white;
  --bullet-border: 2px solid white;
  --swiper-navigation-color: white;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  height: var(--slide-height);
  margin-bottom: 5rem;
}
@media (max-width: 1024px) {
  .banner-slideshow {
    --slide-height: var(--tablet-height);
  }
}
@media (max-width: 782px) {
  .banner-slideshow {
    --slide-height: var(--mobile-height);
  }
}
.banner-slideshow .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: var(--slide-height);
}
.banner-slideshow .swiper-slide::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: var(--overlay-opacity);
}
.banner-slideshow .swiper-slide iframe {
  pointer-events: none;
  position: absolute;
  overflow: hidden;
  border: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.banner-slideshow .swiper-slide .slide-media {
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: var(--bg-pos);
     object-position: var(--bg-pos);
}
.banner-slideshow .swiper-slide .wrap {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 6rem 2rem;
  color: white;
}
.banner-slideshow .swiper-slide .wrap h2 {
  text-align: center;
  font-size: var(--wp--preset--font-size--x-large);
}
.banner-slideshow .swiper-slide .wrap p {
  text-align: center;
}
.banner-slideshow .swiper-slide .wrap .wp-block-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}
.banner-slideshow .swiper-pagination {
  margin: 2rem 0;
}
.banner-slideshow .swiper-pagination .swiper-pagination-bullet {
  border: var(--bullet-border);
  transition: 0.15s ease-out;
}
.banner-slideshow .swiper-pagination .swiper-pagination-bullet:hover {
  opacity: 1;
  background: var(--swiper-pagination-color);
}

/* custom variables */
:root {
  --custom-gradient-1: linear-gradient(0deg,rgba(43,43,43,0) 0%, rgba(100,100,100,0.5) 40%, rgba(100,100,100,1) 100%);
}

/* home-grid */
.homeGridRow > * {
  flex: 1 1 50%;
}
@media (max-width: 782px) {
  .homeGridRow > * {
    flex: 1 1 100%;
  }
}
.homeGridRow .wp-block-cover.is-light {
  max-height: 60vh;
}

/* project - intro */
.projectIntroColumns .wp-block-column:first-child {
  position: relative;
}
.projectIntroColumns .wp-block-column:first-child::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2000%;
  height: 100%;
  margin-left: -2000%;
  background: var(--wp--preset--color--primary);
}
.projectIntroColumns .wp-block-column:first-child iframe {
  border: none !important;
}
.projectIntroColumns .wp-block-column:first-child i:hover {
  color: var(--wp--preset--color--tertiary) !important;
}

/* documents */
.docList .wp-block-post-template {
  gap: 0px;
}
.docList .wp-block-post-template li {
  margin-top: 0px;
  margin-bottom: 0px;
  padding: var(--wp--preset--spacing--normal);
}
.docList .wp-block-post-template li .wp-block-columns {
  margin-top: 0px;
  margin-bottom: 0px;
}
.docList .wp-block-post-template li .wp-block-columns a {
  text-decoration: none;
  color: var(--wp--preset--color--primary) !important;
}
.docList .wp-block-post-template li .wp-block-columns a:hover {
  color: var(--wp--preset--color--secondary) !important;
}
.docList .wp-block-post-template li .wp-block-columns i:hover {
  animation-name: pulse;
  animation-duration: 1s;
}
.docList .wp-block-post-template li .wp-block-columns i:hover::before {
  color: var(--wp--preset--color--primary);
}
.docList .wp-block-post-template:not(.columns-2) {
  display: flex;
  flex-direction: column;
  gap: var(--wp--preset--spacing--normal);
}
.docList .wp-block-post-template.columns-2 li:nth-child(4n), .docList .wp-block-post-template.columns-2 li:nth-child(4n-1) {
  background-color: #efefef;
}

.policyList .wp-block-post-template {
  display: flex;
  flex-direction: column;
  gap: var(--wp--preset--spacing--normal);
}
.policyList .wp-block-post-template li {
  margin-top: 0px;
  margin-bottom: 0px;
}
.policyList .wp-block-post-template li .wp-block-columns {
  margin-top: 0px;
  margin-bottom: 0px;
}
.policyList .wp-block-post-template li .wp-block-columns a {
  text-decoration: none;
  color: var(--wp--preset--color--background) !important;
}
.policyList .wp-block-post-template li .wp-block-columns a:hover {
  color: var(--wp--preset--color--secondary) !important;
}
.policyList .wp-block-post-template li .wp-block-columns i:hover {
  animation-name: pulse;
  animation-duration: 1s;
}
.policyList .wp-block-post-template li .wp-block-columns i:hover::before {
  color: var(--wp--preset--color--tertiary);
}

/* investors */
.iFrameEvent {
  border: none !important;
}

/* contact */
#mediaAndInvestorContact a {
  text-decoration: none;
}
#mediaAndInvestorContact i:hover {
  animation-name: pulse;
  animation-duration: 1s;
  color: #ffffff;
}

/* misc */
.fa-arrow-right {
  color: var(--wp--preset--color--secondary) !important;
  font-size: 3rem;
}
.fa-arrow-right:hover {
  color: var(--wp--preset--color--primary) !important;
}

.pullquote .wp-block-group {
  display: flex;
  flex-direction: column;
}
.pullquote .wp-block-group figure {
  margin: 0 auto !important;
  padding: 4rem !important;
}
.pullquote .wp-block-group .fa-quote-left, .pullquote .wp-block-group .fa-quote-right {
  margin: 0px !important;
  color: var(--wp--preset--color--secondary) !important;
  font-size: 8rem;
}
.pullquote .wp-block-group .fa-quote-left {
  align-self: flex-start;
}
.pullquote .wp-block-group .fa-quote-right {
  align-self: flex-end;
}

iframe {
  width: 100%;
  border: none;
  overflow: hidden;
}

/* Local */
@font-face {
  font-family: "Poppins";
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/poppins/Poppins-Light.ttf") format("woff");
}
@font-face {
  font-family: "Poppins";
  font-weight: 300;
  font-style: italic;
  font-display: swap;
  src: url("../fonts/poppins/Poppins-LightItalic.ttf") format("woff");
}
@font-face {
  font-family: "Poppins";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/poppins/Poppins-Regular.ttf") format("woff");
}
@font-face {
  font-family: "Poppins";
  font-weight: 400;
  font-style: italic;
  font-display: swap;
  src: url("../fonts/poppins/Poppins-Italic.ttf") format("woff");
}
@font-face {
  font-family: "Poppins";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/poppins/Poppins-Medium.ttf") format("woff");
}
@font-face {
  font-family: "Poppins";
  font-weight: 500;
  font-style: italic;
  font-display: swap;
  src: url("../fonts/poppins/Poppins-MediumItalic.ttf") format("woff");
}
@font-face {
  font-family: "Poppins";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/poppins/Poppins-SemiBold.ttf") format("woff");
}
@font-face {
  font-family: "Poppins";
  font-weight: 600;
  font-style: italic;
  font-display: swap;
  src: url("../fonts/poppins/Poppins-SemiBoldItalic.ttf") format("woff");
}
.newsletter-sign-up .wp-block-button__link:hover {
  color: var(--wp--preset--color--white) !important;
  background-color: var(--wp--preset--color--primary) !important;
}
@media (max-width: 782px) {
  .newsletter-sign-up .wp-block-buttons > .wp-block-button.wp-block-button__width-25 {
    width: calc(50% - var(--wp--style--block-gap, 0.5em) * 0.75);
  }
}

strong {
  font-weight: 600;
}

em {
  font-style: italic;
}

ul,
ol {
  padding: 0 0 0 1rem;
  margin: 0 0 30px 0;
}
ul li,
ol li {
  font-family: var(--wp--preset--font-family--primary);
  margin-bottom: 2rem;
  list-style: disc;
}
ul li::marker,
ol li::marker {
  color: var(--wp--preset--color--secondary);
}

ol li {
  list-style: decimal;
}

main a {
  color: var(--wp--preset--color--primary);
  transition: 200ms;
}
main a:hover,
main a:active,
main a:focus {
  color: var(--wp--preset--color--secondary);
  text-decoration: underline;
}

#colophon a {
  text-decoration: none;
}
#colophon a:hover {
  text-decoration: underline;
}

img.alignright {
  margin: 0 0 0 20px;
  width: 50%;
  height: auto;
  float: right;
}
img.alignleft {
  margin: 0 20px 0 0;
  width: 50%;
  height: auto;
  float: left;
}
@media (min-width: 783px) {
  img.alignright, img.alignleft {
    width: 100%;
    float: none;
    margin: 0 0 20px 0;
  }
}
img.aligncenter {
  margin: 0 auto;
}

blockquote {
  margin: 0 0 2rem 0;
  padding-left: 1.7rem;
  position: relative;
}
blockquote:before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 4px;
  height: 16px;
  background: var(--wp--preset--color--secondary);
}

cite {
  display: block;
  font-size: 1.8rem;
  font-weight: 400;
  font-style: italic;
  margin-top: 1rem;
}

figcaption {
  font-size: 1.6rem;
  color: var(--wp--preset--color--secondary);
  font-weight: 400;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

.text-center,
.center {
  text-align: center;
}

.hidden,
.hide {
  display: none;
}

.floatleft {
  float: left;
  align-self: flex-start;
}

.floatright {
  float: right;
  align-self: flex-end;
}

.main-content {
  overflow-x: hidden;
}

.container {
  margin-top: 5rem;
  margin-bottom: 0rem;
}

.wrap {
  width: 100%;
  max-width: 1200px;
  padding: 0 2rem;
  margin: auto;
}

.no-scroll {
  overflow: hidden !important;
  position: fixed !important;
  width: 100% !important;
}

.m0 {
  margin: 0 !important;
}

.p0 {
  padding: 0 !important;
}

.mt0 {
  margin-top: 0rem !important;
}

.mb0 {
  margin-bottom: 0rem !important;
}

.pt0 {
  margin-top: 0rem !important;
}

.pb0 {
  margin-bottom: 0rem !important;
}

.mt1 {
  margin-top: 1rem !important;
}

.mb1 {
  margin-bottom: 1rem !important;
}

.pt1 {
  margin-top: 1rem !important;
}

.pb1 {
  margin-bottom: 1rem !important;
}

.mt2 {
  margin-top: 2rem !important;
}

.mb2 {
  margin-bottom: 2rem !important;
}

.pt2 {
  margin-top: 2rem !important;
}

.pb2 {
  margin-bottom: 2rem !important;
}

.mt3 {
  margin-top: 3rem !important;
}

.mb3 {
  margin-bottom: 3rem !important;
}

.pt3 {
  margin-top: 3rem !important;
}

.pb3 {
  margin-bottom: 3rem !important;
}

.mt4 {
  margin-top: 4rem !important;
}

.mb4 {
  margin-bottom: 4rem !important;
}

.pt4 {
  margin-top: 4rem !important;
}

.pb4 {
  margin-bottom: 4rem !important;
}

.mt5 {
  margin-top: 5rem !important;
}

.mb5 {
  margin-bottom: 5rem !important;
}

.pt5 {
  margin-top: 5rem !important;
}

.pb5 {
  margin-bottom: 5rem !important;
}

.mt6 {
  margin-top: 6rem !important;
}

.mb6 {
  margin-bottom: 6rem !important;
}

.pt6 {
  margin-top: 6rem !important;
}

.pb6 {
  margin-bottom: 6rem !important;
}

.mt7 {
  margin-top: 7rem !important;
}

.mb7 {
  margin-bottom: 7rem !important;
}

.pt7 {
  margin-top: 7rem !important;
}

.pb7 {
  margin-bottom: 7rem !important;
}

.mt8 {
  margin-top: 8rem !important;
}

.mb8 {
  margin-bottom: 8rem !important;
}

.pt8 {
  margin-top: 8rem !important;
}

.pb8 {
  margin-bottom: 8rem !important;
}

.mt9 {
  margin-top: 9rem !important;
}

.mb9 {
  margin-bottom: 9rem !important;
}

.pt9 {
  margin-top: 9rem !important;
}

.pb9 {
  margin-bottom: 9rem !important;
}

.mt10 {
  margin-top: 10rem !important;
}

.mb10 {
  margin-bottom: 10rem !important;
}

.pt10 {
  margin-top: 10rem !important;
}

.pb10 {
  margin-bottom: 10rem !important;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  white-space: nowrap;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

.noTextDecoration a {
  text-decoration: none;
}

/* accordion */
.pro-block.block-accordion {
  width: 100%;
  font-family: var(--wp--preset--font-family--primary);
}
.pro-block.block-accordion .accordion-header {
  padding-right: 4rem !important;
}
.pro-block.block-accordion .presentationTable table {
  background-color: initial;
}
.pro-block.block-accordion .presentationTable table thead {
  display: none;
}
.pro-block.block-accordion .presentationTable table tbody {
  border: none;
}

/* tables */
.block-document-table {
  font-family: var(--wp--preset--font-family--primary);
}
.block-document-table #table-nav div[aria-selected=true] {
  background-color: var(--wp--preset--color--primary) !important;
}
.block-document-table #table-nav div[aria-selected=false] {
  color: var(--wp--preset--color--background);
  background-color: var(--wp--preset--color--secondary);
}
.block-document-table table.financial-documents {
  background-color: #efefef;
}
.block-document-table table.financial-documents thead tr {
  border-color: var(--wp--preset--color--secondary);
}
.block-document-table table.financial-documents tbody {
  border-color: var(--wp--preset--color--secondary);
}

.gform_wrapper {
  width: 100%;
  font-family: "Poppins";
}
.gform_wrapper .gform_footer {
  justify-content: flex-start;
}
.gform_wrapper .gform_footer button {
  width: 10vw;
  background-color: var(--wp--preset--color--secondary) !important;
  width: 25%;
}
.gform_wrapper .gform_footer button:hover {
  background-color: var(--wp--preset--color--primary);
}
@media (max-width: 1024px) {
  .gform_wrapper .gform_footer button {
    width: 50%;
  }
}
.gform_wrapper .gform_footer button:hover, .gform_wrapper .gform_footer button:focus {
  background-color: var(--wp--preset--color--primary) !important;
  color: var(--wp--preset--color--white) !important;
  animation-name: pulse;
  animation-duration: 1s;
}

.newsletterSubscribeForm_wrapper {
  width: 100%;
}
.newsletterSubscribeForm_wrapper .gform_heading {
  display: block;
}
.newsletterSubscribeForm_wrapper .newsletterSubscribeForm #field_1_1 {
  grid-column: span 8;
}
@media (max-width: 1024px) {
  .newsletterSubscribeForm_wrapper .newsletterSubscribeForm #field_1_1 {
    grid-column: span 12;
  }
}
.newsletterSubscribeForm_wrapper .newsletterSubscribeForm #field_1_3 {
  grid-column: span 4;
}
@media (max-width: 1024px) {
  .newsletterSubscribeForm_wrapper .newsletterSubscribeForm #field_1_3 {
    grid-column: span 12;
    margin-top: -2rem;
  }
}
.newsletterSubscribeForm_wrapper .newsletterSubscribeForm #field_1_4 {
  justify-self: center;
  margin-top: -2rem;
}

#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme {
  background-color: var(--wp--preset--color--primary) !important;
}
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton, #moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton {
  background-color: var(--wp--preset--color--secondary) !important;
}
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton:hover, #moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton:hover {
  animation-name: pulse;
  animation-duration: 1s;
  color: #ffffff !important;
  background-color: var(--wp--preset--color--tertiary) !important;
}
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.change-settings-button:hover {
  color: var(--wp--preset--color--secondary) !important;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content a:hover {
  color: var(--wp--preset--color--secondary) !important;
}
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li.menu-item-selected a, #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li.menu-item-selected button {
  background-color: var(--wp--preset--color--primary) !important;
}
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li.menu-item-selected a span, #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li.menu-item-selected button span {
  color: #ffffff !important;
}
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder a.mgbutton:hover, #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder button.mgbutton:hover {
  border-color: var(--wp--preset--color--secondary) !important;
  background-color: var(--wp--preset--color--secondary) !important;
  color: #ffffff !important;
}
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-close i:hover, #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-close span.gdpr-icon:hover {
  color: #ffffff !important;
}
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-close:hover i, #moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-close:hover span.gdpr-icon {
  background-color: var(--wp--preset--color--secondary) !important;
  border-color: var(--wp--preset--color--secondary) !important;
}

/*
	Custom Login
	Description: Style the WordPress Login page
*/
html body.login {
  min-height: 600px;
  display: flex;
  box-sizing: border-box;
  background-color: var(--wp--preset--color--primary);
  background-image: url("../img/login/login-bg.jpg");
  background-size: cover;
  background-position: center;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
html body.login::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
html .language-switcher {
  margin-top: 2rem;
}
html .language-switcher label {
  display: none !important;
}
html .login .privacy-policy-page-link {
  margin: 5rem 0 2rem;
}
html body.login.login-action-login div#login h1 a {
  background-image: url("../img/login/solgold_logo_colour.svg");
}
html .login {
  /* Logo */
  /* Error Message */
  /* Other message */
}
html .login h1 a {
  padding-bottom: 0;
  width: 270px;
  height: 80px;
  background-size: contain;
  background-position: center;
  display: block;
  margin: 3rem auto 0;
  padding: 0;
}
html .login #login_error {
  margin: 0 20px 20px !important;
  background: tomato !important;
  color: #fff;
  box-shadow: none !important;
  border: none;
}
html .login #login_error a {
  color: #fff;
}
html .login p.message {
  margin: 0 20px 20px;
  background: #86d81b !important;
  color: #fff;
  box-shadow: none !important;
  border: none;
}
html .login #nav {
  color: var(--wp--preset--color--foreground) !important;
  float: right;
  margin: 0;
  padding: 0 20px 20px 0;
  opacity: 0.7;
}
html .login #nav a {
  color: var(--wp--preset--color--foreground) !important;
  text-decoration: none !important;
}
html .login #nav a:hover {
  color: var(--wp--preset--color--foreground) !important;
  text-decoration: underline !important;
}
html .login #login {
  overflow: hidden;
  min-width: 400px !important;
  background: #fff;
  margin: 0;
  padding: 0;
  border-radius: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}
html .login #backtoblog {
  float: left;
  margin: 0;
  padding: 0 0 20px 20px;
  opacity: 0.7;
}
html .login #backtoblog a {
  color: var(--wp--preset--color--foreground) !important;
  text-decoration: none;
}
html .login #backtoblog a:hover {
  color: var(--wp--preset--color--foreground) !important;
  text-decoration: underline;
}
html .login form {
  background: none;
  padding: 20px;
  margin-top: 0;
  box-shadow: none;
  border: none;
}
html .login form label {
  color: var(--wp--preset--color--foreground);
  position: relative;
  content: "";
  display: block;
}
html .login form input[type=text],
html .login form input[type=password] {
  background: lightgrey;
  border: 1px solid lightgrey;
  box-shadow: none;
  color: var(--wp--preset--color--foreground);
  padding: 15px 10px;
  margin-top: 5px;
  font-size: 16px;
}
html .login form label[for=user_login]:before {
  content: "\f110";
  font-family: dashicons;
  font-size: 20px;
  position: relative;
  top: 4px;
  margin-right: 7px;
}
html .login form label[for=user_pass]:before {
  content: "\f160";
  font-family: dashicons;
  font-size: 20px;
  position: relative;
  top: 4px;
  margin-right: 7px;
}
html .login form p.submit {
  display: flex;
  justify-content: flex-end;
}
html .login form p.submit #wp-submit {
  font-size: 18px;
  font-weight: 600;
  padding: 4px 30px;
  color: #fff;
  text-decoration: none;
  border-radius: 0;
  background: #000;
  border: none;
  cursor: pointer;
  text-shadow: none;
  margin-top: 10px;
  height: auto;
  box-shadow: none !important;
  border-radius: 4px;
}
html .login form p.submit #wp-submit:hover {
  background: rgba(58, 58, 58, 0.5);
}
html .login .button.wp-hide-pw {
  top: 15%;
}
html .forgetmenot {
  display: none;
}

.maps {
  width: 100%;
  height: 480px;
}

#solgoldEcuadorRegionalProjectsCols {
  height: 80vh;
}
#solgoldEcuadorRegionalProjectsCols .wp-block-column {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#solgoldEcuadorRegionalProjectsCols .wp-block-column .block-iframe {
  height: 100%;
}
#solgoldEcuadorRegionalProjectsCols .wp-block-column .block-iframe #solgoldEcuadorRegionalProjects {
  height: 100%;
}

#solgoldAustraliaCols {
  height: 80vh;
}
#solgoldAustraliaCols .wp-block-column {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#solgoldAustraliaCols .wp-block-column .block-iframe {
  height: 100%;
}
#solgoldAustraliaCols .wp-block-column .block-iframe #solgoldAustralia {
  height: 100%;
}

.wp-block-post {
  list-style: none;
}
.wp-block-post a {
  text-decoration: none;
}
.wp-block-post .wp-block-post-terms a {
  color: var(--wp--preset--color--secondary);
}
.wp-block-post .wp-block-post-terms a:hover {
  color: var(--wp--preset--color--primary);
}

.post-thumbnail, .wp-post-image {
  width: 100%;
  max-height: 40vh;
  -o-object-fit: cover;
     object-fit: cover;
}

.post-meta {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
.post-meta .post-date, .post-meta .post-author {
  margin: 0px;
}

.post-tags {
  display: inline-flex;
  gap: 2rem;
  margin: 0px;
  margin-bottom: -2.5rem;
  padding: 0px;
}
.post-tags li {
  list-style: none;
}
.post-tags li a {
  text-decoration: none;
  color: var(--wp--preset--color--secondary);
}
.post-tags li a:hover {
  color: var(--wp--preset--color--primary);
}

.fullscreen-search {
  position: fixed;
  width: 100%;
  height: 100%;
  background: var(--wp--preset--color--primary);
  z-index: 99999;
  visibility: hidden;
  opacity: 0.95 !important;
  transition: visibility 0.1s linear, opacity 0.1s linear;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fullscreen-search.active {
  opacity: 1;
  visibility: visible;
  transition: visibility 0.2s linear, opacity 0.2s linear;
}
.fullscreen-search .outer-close {
  position: absolute;
  right: 0;
  top: 0;
  width: 85px;
  height: 85px;
  cursor: pointer;
}
.fullscreen-search .outer-close:hover .close span {
  transform: scale(1.1);
}
.fullscreen-search .outer-close:hover .close span:before,
.fullscreen-search .outer-close:hover .close span:after {
  background: var(--wp--preset--color--secondary);
}
.fullscreen-search .outer-close .close {
  position: fixed;
  top: 40px;
  right: 60px;
  color: #fff;
  z-index: 3;
  font-family: sans-serif;
}
.fullscreen-search .outer-close .close span,
.fullscreen-search .outer-close .close span:before,
.fullscreen-search .outer-close .close span:after {
  border-radius: 4px;
  height: 5px;
  width: 35px;
  background: #fff;
  position: absolute;
  display: block;
  transition: all 0.2s ease-in-out;
  content: "";
}
.fullscreen-search .outer-close .close span {
  background: transparent;
}
.fullscreen-search .outer-close .close span:before {
  transform: rotate(45deg);
}
.fullscreen-search .outer-close .close span:after {
  transform: rotate(-45deg);
}
.fullscreen-search .search-form {
  display: flex;
  height: auto;
  width: 80%;
  max-width: 600px;
  justify-content: center;
  flex-direction: column;
  padding: 2rem;
  margin: 0 auto;
}
.fullscreen-search .search-form form {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
.fullscreen-search .search-form label {
  width: 100%;
  display: inline-block;
  font-family: "Poppins", "Ubuntu", sans-serif;
  color: #fff;
  font-size: 3.6rem;
  text-transform: none;
  line-height: 1;
  margin: 0 0 1rem;
}
.fullscreen-search .search-form input {
  font-family: var(--wp--preset--font-family--primary);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  flex: 1;
  box-shadow: none;
  outline: none;
  padding: 1.6rem;
  font-size: 1.8rem;
  color: var(--wp--preset--color--foreground);
  line-height: 1;
  border: 0;
  background: #fff;
}
.fullscreen-search .search-form input:focus {
  background: #fff;
}
.fullscreen-search .search-form button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 0;
  outline: 0;
  background: var(--wp--preset--color--secondary);
  color: #fff;
  width: 5rem;
  font-size: 2rem;
  line-height: 1;
}
.fullscreen-search .search-form button:hover {
  cursor: pointer;
  background: var(--wp--preset--color--secondary);
}

/* topbar */
#miniQuoteHeader {
  max-height: 2rem;
  border: none;
}

/* home - mini quote ticker */
#miniQuoteTicker {
  position: relative;
}

#miniQuoteTickerStack {
  position: absolute;
  top: -12rem;
  right: 0px;
  justify-content: center;
  max-height: 12rem;
  border: none;
  color: var(--wp--preset--color--background);
}
#miniQuoteTickerStack h4 {
  z-index: 1;
  margin-left: 2rem !important;
}
#miniQuoteTickerStack::after {
  content: "";
  position: absolute;
  width: 2000%;
  height: 6rem;
  background: var(--wp--preset--color--primary);
}

#stockQuoteiFrame {
  height: 40dvh;
}
@media (max-width: 1024px) {
  #stockQuoteiFrame {
    height: 70dvh;
  }
}

.stockChart {
  height: 40dvh;
  width: 100%;
}

.header {
  --primary: var(--wp--preset--color--primary);
  --secondary: var(--wp--preset--color--secondary);
  --tertiary: var(--wp--preset--color--tertiary);
  /* Fonts */
  --top-nav-font: Poppins, Ubuntu, sans-serif;
  --top-nav-font-size: 1.5rem;
  /* Transitions */
  --transition: 250ms ease-out;
  /* Header */
  --header-bg: transparent;
  --sticky-bg: #fff;
  /* Mobile Header */
  --mob-header: var(--primary);
  --mob-header-sticky: var(--primary);
  /* Logo */
  --logo: 200px;
  --logo-sticky: 200px;
  --logo-tablet: 180px;
  --logo-sticky-tablet: 130px;
  --logo-menu-opened-tablet: 160px;
  --logo-mobile: 130px;
  --logo-sticky-mobile: 100px;
  --logo-menu-opened: 130px;
  --logo-padding: 1.5rem 0;
  --logo-padding-mobile: 1.5rem 0;
  /* Top Level Navigation */
  /* Colors */
  --top-color: #ffffff;
  --top-color-hover: var(--wp--preset--color--secondary);
  --top-bg-hover: transparent;
  /* Sticky Colors */
  --top-color-sticky: #ffffff;
  --top-color-sticky-hover: var(--wp--preset--color--secondary);
  --top-current-sticky: var(--wp--preset--color--secondary);
  --top-current-sticky-hover: var(--wp--preset--color--secondary);
  /* Current Menu Item */
  --top-current: var(--wp--preset--color--secondary);
  --top-current-bg: transparent;
  --top-current-hover: white;
  --top-current-bg-hover: transparent;
  --top-color-sticky-hover: var(--wp--preset--color--secondary);
  --top-current-sticky: var(--wp--preset--color--secondary);
  --top-current-bg-sticky: transparent;
  --top-current-bg-sticky-hover: transparent;
  /* Parent Item */
  --menu-parent: var(--secondary);
  --menu-parent-bg: transparent;
  /* Sub Menu Navigation */
  /* Colors */
  --sub-color: #ffffff;
  --sub-bg: var(--wp--preset--color--primary);
  --sub-color-hover: #ffffff;
  --sub-bg-hover: var(--secondary);
  /* Current Sub Menu Item */
  --sub-current: var(--secondary);
  --sub-current-bg: transparent;
  /* Mobile Menu */
  /* Background */
  --mob-bg: var(--primary);
  /* Colors */
  --mob-color: #ffffff;
  --mob-color-hover: #ffffff;
  --mob-bg-hover: var(--secondary);
  /* Current Item */
  --mob-current: var(--secondary);
  --mob-current-bg: transparent;
  --mob-current-hover: var(--secondary);
  --mob-current-bg-hover: transparent;
  /* Current Parent Item */
  --mob-current-parent: var(--secondary);
  --mob-current-parent-bg: transparent;
  --mob-button-color: var(--mob-color);
  --mob-button-color-sticky: var(--mob-color);
  --mob-button-color-open: var(--mob-color);
  --mob-menu-expand: white;
}
.header .header-right nav.header-nav > ul > li {
  font-size: var(--top-nav-font-size);
}
.header .header-right nav.header-nav > ul > li:hover {
  border-top: 0.2rem solid var(--secondary);
}
.header .header-right nav.header-nav > ul > li > a {
  text-transform: uppercase;
}
@media (min-width: 1025px) {
  .header .header-right nav.header-nav > ul > li .sub-menu {
    border-top: 0.2rem solid var(--secondary);
  }
}
.header .header-right nav.header-nav > ul > li .sub-menu::before {
  width: 0px;
  height: 0px;
}
.header .header-right nav.header-nav > ul > li.search:hover {
  background: transparent;
}
.header .header-right nav.header-nav > ul > li.search:hover svg {
  fill: var(--secondary);
}
.header .header-right nav.header-nav > ul > li:nth-child(3) .sub-menu li.current-menu-item ul.sub-menu li > a {
  color: #ffffff !important;
}
.header .header-right nav.header-nav > ul > li:nth-child(3) .sub-menu li.current-menu-item ul.sub-menu li:hover > a {
  color: #ffffff !important;
  background: var(--sub-bg-hover);
}
.header .header-right nav.header-nav > ul > li:nth-child(4) .sub-menu li.current-menu-item > a {
  color: #ffffff !important;
}
.header .header-right nav.header-nav > ul > li:nth-child(4) .sub-menu li.current-menu-item:hover > a {
  color: #ffffff !important;
  background: var(--sub-bg-hover);
}
.header .header-right nav.header-nav > ul > li:nth-child(4) .sub-menu li::before {
  width: 0px;
  height: 0px;
}
.header .header-right nav.header-nav > ul > li:nth-last-child(3) > .sub-menu, .header .header-right nav.header-nav > ul > li:last-of-type > .sub-menu {
  left: unset;
}
.header .header-right nav.header-nav > ul > li::after {
  display: none;
  height: 0px;
  width: 0px;
}
.header.sticky {
  background: var(--wp--preset--color--primary);
}
.header.sticky .logo svg path {
  fill: black;
}
@media (max-width: 1024px) {
  .header.sticky .logo svg path {
    fill: white;
  }
}
.header .wrap {
  padding: 2rem;
}
@media (max-width: 1024px) {
  .header nav.header-nav > ul {
    padding: 4rem 2rem !important;
  }
  .header.sticky .wrap .header-right .header-nav > ul > li > a {
    color: var(--mob-color);
  }
  .header.sticky .wrap .header-right .header-nav > ul.current-menu-parent > a, .header.sticky .wrap .header-right .header-nav > ul.current-menu-item > a {
    color: var(--mob-color-hover) !important;
    background: var(--top-current-bg-sticky);
  }
  .header.sticky .wrap .header-right .header-nav > ul.current-menu-parent:hover > a, .header.sticky .wrap .header-right .header-nav > ul.current-menu-item:hover > a {
    color: var(--mob-color-hover) !important;
    background: var(--top-current-bg-sticky-hover);
  }
}
.header .search-mobile {
  color: #ffffff;
}
.header .search-mobile input {
  padding-left: 0px !important;
}
.header .search-mobile input::-moz-placeholder {
  color: #ffffff !important;
  opacity: 1 !important; /* Firefox */
}
.header .search-mobile input::placeholder {
  color: #ffffff !important;
  opacity: 1 !important; /* Firefox */
}

#colophon {
  --footer-bg: var(--wp--preset--color--primary);
  --links: white;
  --links-hover: var(--wp--preset--color--secondary);
  --subfooter-bg: rgba(0,0,0,0.5);
  --sub-links: var(--wp--preset--color--secondary);
  --sub-links-hover: white;
  margin: 0;
}
@media (max-width: 1024px) {
  #colophon {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
#colophon h2 {
  text-transform: none;
}
#colophon p {
  line-height: 2;
  font-size: 1.5rem;
}
#colophon li {
  font-size: 1.5rem;
}
#colophon #socialIconsTitle {
  align-self: flex-start;
}
#colophon .footer-columns .wrap {
  grid-template-columns: repeat(auto-fit, minmax(20%, 1fr));
  grid-gap: 5rem;
}
#colophon .footer-columns .wp-block-group {
  margin-bottom: 0px;
}
#colophon .social-wrapper ul {
  justify-content: flex-start;
}
#colophon .social-wrapper ul li a {
  font-size: 2.5rem;
  color: var(--wp--preset--color--secondary) !important;
}
#colophon .social-wrapper ul li a:hover {
  animation-name: pulse;
  animation-duration: 1s;
  color: var(--wp--preset--color--tertiary) !important;
}
@media (max-width: 1024px) {
  #colophon #socialIconsTitle, #colophon .social-wrapper {
    align-self: flex-start;
  }
  #colophon .footer-columns .wrap {
    grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));
    grid-gap: 0rem;
  }
  #colophon .footer-columns .wrap .col {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 782px) {
  #colophon .footer-columns .wrap {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    grid-gap: 0rem;
  }
}
#colophon .sub-footer {
  background-color: var(--wp--preset--color--primary);
}
#colophon .logo {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  width: 100%;
  max-width: 1200px;
  margin: 0px auto 4rem auto;
  padding: 0rem 2rem;
}
#colophon .logo a {
  max-width: 14vw;
}
@media (max-width: 782px) {
  #colophon .logo a {
    max-width: 50vw;
  }
}
@media (max-width: 1024px) {
  #colophon .logo a {
    max-width: 25vw;
  }
}

.sidebar-widget {
  position: sticky;
  top: 80px;
  width: 2000%;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  overflow-x: hidden;
}
.sidebar-widget .sidebar-title,
.sidebar-widget .parent-link {
  display: block;
  font-size: var(--wp--preset--font-size--normal);
  font-weight: normal;
  text-transform: uppercase;
  color: var(--wp--preset--color--primary);
}
.sidebar-widget .sidebar-title.current,
.sidebar-widget .parent-link.current {
  font-weight: 400;
  color: var(--wp--preset--color--secondary);
  background: var(--wp--preset--color--primary);
}
.sidebar-widget .sidebar-title.current::before,
.sidebar-widget .parent-link.current::before {
  content: "";
  position: absolute;
  width: 30px;
  aspect-ratio: 1;
  transform: rotate(45deg);
  background: var(--wp--preset--color--secondary);
  left: -15px;
  margin: auto;
}
.sidebar-widget .sidebar-title {
  padding: 1rem 1.5rem;
  border-bottom: 1px dotted rgba(58, 58, 58, 0.2);
  font-weight: normal;
}
.sidebar-widget ul {
  position: inherit !important;
  width: 100%;
}
.sidebar-widget li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sidebar-widget li.current-year a, .sidebar-widget li.current-post a, .sidebar-widget li.current_page_item a {
  font-weight: 400;
  color: var(--wp--preset--color--secondary);
  background: var(--wp--preset--color--primary);
}
.sidebar-widget li.current-year a::before, .sidebar-widget li.current-post a::before, .sidebar-widget li.current_page_item a::before {
  content: "";
  position: absolute;
  width: 30px;
  aspect-ratio: 1;
  transform: rotate(45deg);
  background: var(--wp--preset--color--secondary);
  left: -15px;
  margin: auto;
}
.sidebar-widget li:focus, .sidebar-widget li:hover {
  color: #ffffff;
  background: var(--wp--preset--color--secondary);
  text-decoration: none;
}
.sidebar-widget a {
  color: var(--wp--preset--color--foreground);
  display: block;
  padding: 1rem calc(2rem + 15px);
  font-size: var(--wp--preset--font-size--normal);
  border-bottom: 0px dotted rgba(58, 58, 58, 0.2);
  text-decoration: none;
  text-transform: uppercase;
}
.sidebar-widget a:hover {
  color: #ffffff;
  background: var(--wp--preset--color--secondary);
  text-decoration: none;
}
.sidebar-widget a:focus {
  color: #ffffff;
  background: var(--wp--preset--color--secondary);
  text-decoration: none;
}
.sidebar-widget .wp-block-group {
  margin: 0px !important;
}
.sidebar-widget .wp-block-group .wp-block-group {
  padding: 1rem calc(2rem + 15px);
}
.sidebar-widget .wp-block-group .wp-block-tag-cloud {
  width: 100%;
}
.sidebar-widget .wp-block-group a {
  color: var(--wp--preset--color--foreground);
  display: block;
  padding: 1rem calc(2rem + 15px);
  margin-left: calc(-2rem - 15px);
  font-size: var(--wp--preset--font-size--normal);
  border-bottom: 0px dotted rgba(58, 58, 58, 0.2);
  text-decoration: none;
  text-transform: uppercase;
}
.sidebar-widget .wp-block-group a:hover {
  color: var(--wp--preset--color--secondary);
  background: var(--wp--preset--color--primary);
  text-decoration: none;
}
.sidebar-widget .wp-block-group a:hover::before {
  content: "";
  position: absolute;
  width: 30px;
  aspect-ratio: 1;
  transform: rotate(45deg);
  background: var(--wp--preset--color--secondary);
  left: -15px;
  margin: auto;
}
.sidebar-widget .wp-block-group a:focus {
  color: var(--wp--preset--color--secondary);
  background: var(--wp--preset--color--primary);
  text-decoration: none;
}
.sidebar-widget .wp-block-group a:focus::before {
  content: "";
  position: absolute;
  width: 30px;
  aspect-ratio: 1;
  transform: rotate(45deg);
  background: var(--wp--preset--color--secondary);
  left: -15px;
  margin: auto;
}

html, body {
  overflow-x: hidden !important;
}

.layout.layout-sidebar {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 6rem;
}
@media (max-width: 782px) {
  .layout.layout-sidebar {
    flex-direction: column;
  }
}
.layout.layout-sidebar .content {
  width: 100%;
  max-width: calc(100% - 36rem);
}
@media (max-width: 782px) {
  .layout.layout-sidebar .content {
    max-width: none;
  }
}
.layout.layout-sidebar .sidebar {
  width: 100%;
  max-width: 30rem;
}
@media (max-width: 782px) {
  .layout.layout-sidebar .sidebar {
    max-width: none;
    margin-top: 5rem;
    padding-top: 5rem;
    border-top: 0.2rem solid var(--wp--preset--color--primary);
  }
}
.layout.layout-narrow {
  max-width: 800px;
}

/* pages */
.page-template-page-operations .page-banner .wrap .banner-caption .banner-heading {
  text-align: left;
}
.page-template-page-operations .page-banner .wrap .banner-caption .banner-heading span {
  border-bottom: solid 4px var(--wp--preset--color--secondary);
}
.page-template-page-operations .page-banner .wrap .banner-caption .banner-subheading {
  text-align: left;
}
.page-template-page-operations #operationsGrid .wp-block-cover {
  height: 500px;
}
.page-template-page-operations #operationsGrid .wp-block-cover .wp-block-cover__inner-container {
  height: 100%;
}
.page-template-page-operations #operationsGrid .wp-block-cover .wp-block-cover__inner-container h3 {
  margin-bottom: auto;
}
@media (max-width: 1024px) {
  .page-template-page-operations #operationsGrid .wp-block-cover {
    height: initial;
  }
}
.page-template-page-operations #operationsGrid #operationsGridSingleCol .wp-block-cover__inner-container {
  height: initial;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1024px) {
  .page-template-page-operations #operationsGrid #operationsGridSingleCol .wp-block-cover__inner-container .wp-block-group {
    max-width: initial;
  }
}
@media (max-width: 1024px) {
  .page-template-page-operations #operationsGrid #operationsGridSingleCol {
    padding-left: var(--wp--preset--spacing--large) !important;
    padding-right: var(--wp--preset--spacing--large) !important;
  }
}

.page-id-345 .wp-block-query {
  width: 100%;
}

.page-id-353 .container {
  margin-top: -5rem;
}

.page-template-page-investors .page-banner .banner-slideshow {
  --slide-height: 60vh;
}
.page-template-page-investors .page-banner .wrap .banner-caption .banner-heading {
  text-align: left;
}
.page-template-page-investors .page-banner .wrap .banner-caption .banner-heading span {
  color: var(--wp--preset--color--secondary);
}
.page-template-page-investors .page-banner .wrap .banner-caption .banner-subheading {
  text-align: left;
}/*# sourceMappingURL=style-base.css.map */