/* -------------------------------------------
***** Includes *****
------------------------------------------- */
/* -------------------------------------------
***** INNER BANNERS *****
------------------------------------------- */
.banner-static {
  display: flex;
  flex-direction: column;
  height: 44vw;
  max-height: 780px;
  min-height: 540px;
  overflow: hidden;
  position: relative;
}
.banner-static:before {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
  content: "";
  height: 50%;
  inset: auto 0 0 0;
  position: absolute;
  z-index: 1;
}
.banner-static .banner-image {
  height: 100%;
  left: 0;
  object-fit: cover;
  object-position: 50% 20%;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}
.banner-static .wrapper {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
}
.banner-static .caption {
  color: #fff;
  margin: 6vw 0 0;
  text-align: center;
  z-index: 1;
}
.banner-static .caption h1 {
  color: #fff;
  margin: 0;
}
.banner-static .caption h1 span {
  display: block;
  font-size: 6.7vw;
}
.banner-static .caption h3 {
  color: #fff;
  font-size: 1.7vw;
  font-weight: 400;
  margin: 1.1vw 0 0;
}

.sub-banner {
  height: 32vw;
  max-height: 540px;
  min-height: 220px;
  position: relative;
}
.sub-banner .wrapper {
  align-items: flex-end;
  display: flex;
  justify-content: flex-start;
}
.sub-banner .heading {
  position: relative;
  z-index: 1;
}
.sub-banner .heading h1 {
  color: #fff;
  line-height: 1;
  margin: 0 0 -0.5vw;
  position: relative;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

@media (min-width: 1600px) { /* -------------------------  1600  ------------------------- */
  .banner-static .caption {
    margin: 100px 0 0;
  }
  .banner-static .caption h1 span {
    font-size: 106px;
  }
  .banner-static .caption h3 {
    font-size: 27px;
    margin: 18px 0 0;
  }
  .sub-banner .heading h1 {
    font-size: 62px;
    margin: 0 0 -8px;
  }
}
@media (max-width: 1200px) { /* -------------------------  1200  ------------------------- */ }
@media (max-width: 960px) { /* -------------------------  960  ------------------------- */
  .banner-static {
    min-height: 360px;
  }
  .banner-static .caption {
    margin: 0;
  }
  .banner-static .caption h3 {
    font-size: 18px;
    margin: 15px 0 0;
  }
  .sub-banner {
    min-height: 220px;
  }
  .sub-banner .heading h1 {
    font-size: 34px;
  }
}
@media (max-width: 640px) { /* -------------------------  640  ------------------------- */
  .banner-static:before {
    height: 70%;
  }
  .banner-static .caption h1 span {
    font-size: 42px;
  }
  .banner-static .caption h3 {
    font-size: 16px;
    line-height: 1.3;
  }
  .sub-banner .heading h1 {
    font-size: 30px;
  }
}
/*
@import "abstracts/_mixins";
@import "base/_utilities";
@import "base/_typography";
@import "base/_animate";
@import "base/_base";
@import "base/_fonts";

@import "layout/_sidebar";

@import "inc/_forms";
@import "inc/_login";
@import "inc/_gdpr";
@import "inc/_ie-popup";
@import "inc/_lightbox";
@import "inc/_custom";
*/
.uk-nav, .uk-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.uk-navbar-dropdown {
  display: none;
  height: 0;
  opacity: 0;
  position: absolute;
  z-index: 1020;
  --uk-position-offset: 15px;
  --uk-position-shift-offset: 0;
  --uk-position-viewport-offset: 15px;
  box-sizing: border-box;
  width: 200px;
  padding: 25px;
  background: #fff;
  color: #666;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
}
.uk-navbar-dropdown > :last-child {
  margin-bottom: 0;
}

/* Keyframes used by animation classes
 ========================================================================== */
/*
 * Fade
 */
@keyframes uk-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* Fade */
.uk-animation-fade {
  animation-name: uk-fade;
  animation-duration: 0.5s;
  animation-timing-function: linear;
}

.uk-position-relative {
  position: relative !important;
}

.uk-slider-container {
  overflow: hidden;
}

.uk-slider {
  -webkit-tap-highlight-color: transparent;
}

.uk-slider-items {
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
  position: relative;
}

.uk-slider-items > * {
  flex: none;
  position: relative;
  touch-action: pan-y;
}

.subscribe-container {
  /*
  .gform_wrapper.gravity-theme {

      .gform_heading {margin: 0 0 10px;}

      // modifying column widths
      fieldset.field-name {grid-column: span 8;}
      div.field-email {grid-column: span 4;}
      div.field-captcha {grid-column: span 2; min-width: 300px;
          label {display: none;}
      }


      input[type=text],
      input[type=email],
      textarea
          {background: rgba(255,255,255,.25); border: 1px solid transparent; border-radius: 3px; color: #fff; line-height: 1.5; padding: 12px 15px;

              &::placeholder {color: #fff;}
              &:focus {background: rgba(255,255,255,.1); border-color: #fff;}
          }

      .gform_fields {align-items: flex-end; grid-column-gap: 1.4%; text-align: left;}


      .gfield_label {font-weight: 400; line-height: 1.5; margin: 0 0 5px;}
      .gfield_required {color: #333; font-size: 16px; font-weight: 700;}
      .gform_required_legend {display: none; font-size: 13px; line-height: 1;}

      .gform_footer {display: flex; justify-content: flex-end; padding-bottom: 0;}
      button {background: $secondary; border-radius: 6px; color: #fff; cursor: pointer; display: inline-block; font-size: 16px; font-weight: 600; line-height: 1.3; padding: 14px 22px; transition: .3s all;
          &:hover, &:focus, &:active {background: $secondary; color:#fff;}
      }
  }

  // errors
  .gform_wrapper.gravity-theme {

      .gform_validation_errors {background: #c02b0a; border-radius: 0; box-shadow: none; margin-top: 0; padding: 12px;
          h2.hide_summary {color: #fff; font-size: 15px; padding: 0 0 0 35px;}
          .gform-icon {inset-inline-start: 8px;}
      }
      .validation_message {background: #c02b0a; color: #fff; line-height: 1.4; padding: 12px;}
  } 

  // confirmation
  .gform_confirmation_wrapper {font-size: 16px; font-weight: 400;}
  */
}
.subscribe-container form {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 40px 2%;
  justify-content: center;
  margin: 30px 0 0;
}
.subscribe-container form .col {
  flex: 0 0 32%;
  text-align: left;
}
.subscribe-container form label {
  display: block;
  font-size: 0.9em;
  line-height: 1.3;
  margin: 0 0 0.5em;
}
.subscribe-container form input[type=text],
.subscribe-container form input[type=email],
.subscribe-container form textarea {
  border: 1px solid var(--wp--preset--color--grey);
  border-radius: 3px;
  color: var(--wp--preset--color--foreground);
  line-height: 1.3;
  padding: 12px 15px;
  width: 100%;
}
.subscribe-container form input[type=text]::placeholder,
.subscribe-container form input[type=email]::placeholder,
.subscribe-container form textarea::placeholder {
  color: var(--wp--preset--color--lightgrey);
}
.subscribe-container form input[type=text]:focus,
.subscribe-container form input[type=email]:focus,
.subscribe-container form textarea:focus {
  background: rgba(57, 98, 173, 0.05);
  border-color: var(--wp--preset--color--lightprimary);
}
.subscribe-container form select {
  background-color: rgba(255, 255, 255, 0.7);
  background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%), linear-gradient(to right, #ccc, #ccc);
  background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), calc(100% - 2.5em) 0.5em;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px, 1px 1.5em;
  border: 1px solid var(--wp--preset--color--grey);
  font-size: 0.9em;
  line-height: 1.5;
  padding: 0.5em 3.5em 0.5em 1em;
  position: relative;
  width: 100%;
}
.subscribe-container form input[type=submit] {
  background: var(--wp--preset--color--secondary);
  border-radius: 3px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 0.9em;
  line-height: 1.3;
  padding: 14px 3vw;
  text-transform: uppercase;
  transition: 0.3s background;
}
.subscribe-container form input[type=submit]:hover, .subscribe-container form input[type=submit]:focus, .subscribe-container form input[type=submit]:active {
  background: var(--wp--preset--color--primary);
  color: #fff;
}

@media (min-width: 1600px) {
  .subscribe-container {
    /*
    .gform_wrapper.gravity-theme {

        .gfield_label {font-size: 18px;}
        //.gform_required_legend {font-size: 16px;}

        input[type=text],
        input[type=email],
        textarea
            {font-size: 17px;}

        button {font-size: 18px; padding: 16px 25px;}
    }*/
  }
  .subscribe-container form {
    margin: 40px 0 0;
  }
  .subscribe-container form input[type=text],
  .subscribe-container form input[type=email],
  .subscribe-container form textarea {
    padding: 14px 20px;
  }
  .subscribe-container form input[type=submit] {
    padding: 16px 50px;
  }
}
@media (max-width: 640px) {
  .subscribe-container {
    /*
    .gform_wrapper.gravity-theme {

        input[type=text],
        input[type=email],
        textarea
            {font-size: 16px; padding: 8px 12px;}

        button {font-size: 15px;}
    }
    */
  }
  .subscribe-container form {
    align-items: stretch;
    flex-direction: column;
    gap: 20px 2%;
  }
  .subscribe-container form input[type=submit] {
    padding: 14px 30px;
  }
}
:root :where(p) {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

html {
  background: #fff;
  min-height: 100%;
  scroll-behavior: smooth;
}

.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;
}

/* parent theme cleanup */
.admin-bar header, .admin-bar header.hamb-open, .admin-bar header.sticky, .admin-bar header .header-right nav.header-nav {
  top: 0;
}
@media screen and (max-width: 960px) {
  .admin-bar header, .admin-bar header.hamb-open, .admin-bar header.sticky, .admin-bar header .header-right nav.header-nav {
    top: 0;
  }
}

ul li,
ol li {
  margin-bottom: 0;
}

a {
  color: var(--wp--preset--color--primary);
  outline: none;
  text-decoration: none;
  transition: all 0.3s;
}
a:hover, a:focus, a:active {
  color: var(--wp--preset--color--primary);
  text-decoration: none;
}

input {
  border-radius: 0;
}

em {
  color: var(--wp--preset--color--foreground);
}

strong {
  font-weight: 700;
}

.bolder {
  font-weight: 600;
}

small {
  display: inline-block;
  font-size: 16px;
  line-height: 1.4;
}

svg {
  display: block;
}

iframe {
  border: none;
}

h1, h2, h3, h4, h5 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 20px;
}

h1 {
  font-size: 3.8vw;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

h2 {
  color: var(--wp--preset--color--primary);
  font-size: 2.2vw;
  margin: 0 0 2.5vw;
}

h3 {
  color: var(--wp--preset--color--primary);
  font-size: 1.8vw;
}

h4 {
  color: var(--wp--preset--color--foreground);
  font-size: 22px;
  line-height: 1.3;
}

h5 {
  font-size: 18px;
}

.em {
  color: var(--wp--preset--color--primary) !important;
}

h2 + p {
  margin-top: 0;
}

p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}

p:last-child {
  margin-bottom: 0;
}

ul li ul li {
  list-style-type: circle;
}

* + h1, * + h2, * + h3, * + h4, * + h5 {
  margin-top: 30px;
}

ol, p, pre, ul {
  margin: 0 0 20px;
}

* + ol, * + p, * + pre, * + ul {
  margin-top: 20px;
}

h2 + p {
  margin-top: 0;
}

.more {
  display: inline-block;
  font-size: 16px;
  line-height: 1.3;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  text-transform: uppercase;
}
.more:hover, .more:focus, .more:active {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.btn-more {
  background: var(--wp--preset--color--primary);
  border-radius: 6px;
  color: #fff;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  padding: 14px 22px;
}
.btn-more:hover, .btn-more:focus, .btn-more:active, .btn-more:focus-visible {
  background: var(--wp--preset--color--primary);
  color: #fff;
}

.section {
  padding: 5vw 0;
}

/* wp-table */
/*
* Global button styling
*/
/*
* Breakpoint debugging
*/
/*
* MEDIA QUERIES
* Breakpoints for responsive sites
*/
/*
* SASS Parent append
* Useful if you want to add an append to the parent without writing it out again
* Usage: @include parent-append(":hover")
* Source: https://codepen.io/imkremen/pen/RMVBvq
*/
/*
* Skew
* Useful mixing to create skewed edges
* Usage: @include angle-edge(bottomright, 3deg, topleft, 3deg, #fff);
* Source: http://www.hongkiat.com/blog/skewed-edges-css/
*/
/*
* TEXT TRUNCATE
* An easy way to truncate text with an ellipsis. Requires the element to be block or inline-block.
* Usage: @include text-truncate;
* Source: http://web-design-weekly.com/2013/05/12/handy-sass-mixins/
*/
/*
* DON'T BREAK
* Useful mixing so links don't overrun their container
* Usage: @include dontbreak();
* Source: https://css-tricks.com/snippets/css/prevent-long-urls-from-breaking-out-of-container/
*/
/*
* Dynamic Spacing
* A nice easy way to create a vertical rhythm for section of content
*/
/*
* Accessibility Focus
* Using the focus-visible psuedo class to only show focus styles when the element is focused via the keyboard
*/
.main-col .wp-element-button {
  background: var(--wp--preset--color--primary);
  color: #fff;
}
.main-col .wp-element-button:hover {
  background: var(--wp--preset--color--lightprimary);
  color: #fff;
}

.wp-block-table table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  font-size: 15px;
  margin-bottom: 30px;
  background: #f5f5f5;
}
@media (min-width: 1600px) {
  .wp-block-table table {
    font-size: 17px;
  }
}
.wp-block-table table + h2, .wp-block-table table + h3, .wp-block-table table + h4, .wp-block-table table + h5, .wp-block-table table + h6 {
  margin-top: 3rem;
}
.wp-block-table table thead,
.wp-block-table table tfoot {
  text-transform: unset;
  text-align: left;
  color: var(--wp--preset--color--foreground);
  padding: 10px 20px;
  text-transform: uppercase;
}
.wp-block-table table thead tr,
.wp-block-table table tfoot tr {
  border-bottom: none;
}
.wp-block-table table thead th,
.wp-block-table table tfoot th {
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  background: var(--wp--preset--color--primary);
  border-bottom: 0;
  line-height: 1.5;
  padding: 12px 15px;
}
@media (min-width: 1600px) {
  .wp-block-table table thead th,
  .wp-block-table table tfoot th {
    font-size: 15px;
    padding: 14px 15px;
  }
}
@media (max-width: 960px) {
  .wp-block-table table thead th,
  .wp-block-table table tfoot th {
    font-size: 14px;
    padding: 10px 15px;
  }
}
.wp-block-table table thead th.edit {
  text-align: center;
}
.wp-block-table table tbody {
  border-bottom: none;
}
.wp-block-table table tbody tr td {
  line-height: 1.5;
  vertical-align: middle;
  padding: 12px 15px;
}
@media (min-width: 1600px) {
  .wp-block-table table tbody tr td {
    padding: 14px 15px;
  }
}
@media (max-width: 960px) {
  .wp-block-table table tbody tr td {
    padding: 10px 15px;
  }
}
.wp-block-table table tbody .file_name a {
  display: block;
  color: var(--wp--preset--color--primary);
  margin: 0;
  padding: 0;
  text-decoration: none;
}
.wp-block-table table tbody .file_name a:hover {
  text-decoration: none;
  color: var(--wp--preset--color--secondary);
  background: none;
}
@media (max-width: 782px) {
  .wp-block-table table tbody .file_name {
    min-width: 200px;
  }
}
.wp-block-table table tbody .file_size {
  width: 12rem;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 782px) {
  .wp-block-table table tbody .file_size {
    min-width: 9rem;
  }
}
.wp-block-table table tbody .date_published {
  width: 20rem;
  font-size: 16px;
}
@media (max-width: 782px) {
  .wp-block-table table tbody .date_published {
    min-width: 12rem;
    font-size: 15px;
  }
}
.wp-block-table table tbody .report,
.wp-block-table table tbody .webcast,
.wp-block-table table tbody .presentation,
.wp-block-table table tbody .download,
.wp-block-table table tbody .edit {
  width: 12rem;
  text-align: center;
}
.wp-block-table table tbody .report a,
.wp-block-table table tbody .webcast a,
.wp-block-table table tbody .presentation a,
.wp-block-table table tbody .download a,
.wp-block-table table tbody .edit a {
  display: block;
  text-align: center;
  padding: 1rem;
  margin: -1rem;
  transition: all 0.25s ease-in-out;
}
.wp-block-table table tbody .report a:focus, .wp-block-table table tbody .report a:hover,
.wp-block-table table tbody .webcast a:focus,
.wp-block-table table tbody .webcast a:hover,
.wp-block-table table tbody .presentation a:focus,
.wp-block-table table tbody .presentation a:hover,
.wp-block-table table tbody .download a:focus,
.wp-block-table table tbody .download a:hover,
.wp-block-table table tbody .edit a:focus,
.wp-block-table table tbody .edit a:hover {
  background: none;
  color: var(--wp--preset--color--secondary);
}
.wp-block-table table tbody .report a:focus svg, .wp-block-table table tbody .report a:hover svg,
.wp-block-table table tbody .webcast a:focus svg,
.wp-block-table table tbody .webcast a:hover svg,
.wp-block-table table tbody .presentation a:focus svg,
.wp-block-table table tbody .presentation a:hover svg,
.wp-block-table table tbody .download a:focus svg,
.wp-block-table table tbody .download a:hover svg,
.wp-block-table table tbody .edit a:focus svg,
.wp-block-table table tbody .edit a:hover svg {
  fill: var(--wp--preset--color--primary);
}
.wp-block-table table tbody .report span,
.wp-block-table table tbody .webcast span,
.wp-block-table table tbody .presentation span,
.wp-block-table table tbody .download span,
.wp-block-table table tbody .edit span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border: 1px solid var(--wp--preset--color--primary);
  border-radius: 10rem;
  padding: 0.75rem;
  box-sizing: content-box;
  transition: all 0.25s ease-in-out;
}
.wp-block-table table tbody .report svg,
.wp-block-table table tbody .webcast svg,
.wp-block-table table tbody .presentation svg,
.wp-block-table table tbody .download svg,
.wp-block-table table tbody .edit svg {
  width: 100%;
  height: 100%;
  fill: var(--wp--preset--color--primary);
  transition: all 0.25s ease-in-out;
}
.wp-block-table table tfoot th {
  background: none;
}
.wp-block-table table thead, .wp-block-table table tfoot {
  border: none;
}
.wp-block-table table tbody tr {
  border-bottom: 1px solid #ccc;
}
.wp-block-table table td {
  border: none;
}

figcaption {
  color: var(--wp--preset--color--primary);
  line-height: 1.4;
}

.wp-block-image figcaption {
  margin: 12px 0 5px;
}

.wp-block-columns.is-layout-flex {
  gap: 35px 4%;
}

.wp-block-columns + .wp-block-columns {
  margin: 35px 0 0;
}

*:not(h2, h3) + .wp-block-columns {
  margin-top: 45px;
}

.wp-block-separator {
  border-top: 1.5px solid var(--wp--preset--color--lightgrey);
  margin: 3vw 0;
}

.wp-block-file:not(.wp-element-button) {
  font-size: 0.9em;
}

/* stock charts/quotes */
.stock-charts-quotes iframe {
  min-height: 540px;
}

@media (min-width: 1600px) {
  h1 {
    font-size: 60px;
  }
  h2 {
    font-size: 36px;
    margin: 0 0 40px;
  }
  h3 {
    font-size: 30px;
  }
  h4 {
    font-size: 24px;
  }
  h1, h2, h3, h4, h5 {
    margin: 0 0 30px;
  }
  * + h1, * + h2, * + h3, * + h4, * + h5 {
    margin-top: 40px;
  }
  ol, p, pre, ul {
    margin: 0 0 25px;
  }
  * + ol, * + p, * + pre, * + ul {
    margin-top: 25px;
  }
  p {
    font-size: 20px;
  }
  figcaption {
    font-size: 18px;
  }
  .more {
    font-size: 18px;
  }
  .btn-more {
    font-size: 19px;
    padding: 22px 40px;
  }
  .section {
    padding: 90px 0;
  }
  .wp-block-separator {
    margin: 45px 0;
  }
}
@media (max-width: 1200px) {
  h3 {
    font-size: 1.9vw;
  }
  h4 {
    font-size: 21px;
  }
  .more {
    font-size: 15px;
  }
}
@media (max-width: 960px) {
  h2 {
    font-size: 22px;
    margin: 0 0 25px;
  }
  h3 {
    font-size: 20px;
  }
  h4 {
    font-size: 20px;
  }
  p {
    font-size: 16px;
  }
  .more {
    font-size: 14px;
  }
  .btn-more {
    font-size: 15px;
    padding: 18px 30px;
  }
  .section {
    padding: 45px 0;
  }
  .wp-block-separator {
    margin: 25px 0;
  }
}
@media (max-width: 640px) {
  h1 {
    font-size: 24px;
  }
  h4 {
    font-size: 18px;
  }
  .wp-block-columns.is-layout-flex {
    gap: 25px 4%;
  }
  .wp-block-columns + .wp-block-columns {
    margin: 25px 0 0;
  }
}
/* all pages */
body {
  font-family: "Libre Franklin", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.wrapper {
  margin: auto;
  padding: 0 5vw;
  position: relative;
  width: 100%;
}

header {
  background: rgba(255, 255, 255, 0.87);
  height: 9vw;
  margin: 0 0 -9vw;
  min-height: 100px;
  position: relative;
  z-index: 150;
}

.home header {
  background: none;
}

header .wrapper {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: space-between;
  position: relative;
}

.logo {
  display: block;
  transition: none;
  width: 21vw;
}
.logo img {
  display: none;
}
.logo img.short {
  display: block;
}

.home .logo {
  display: block;
  position: relative;
  top: 2.8vw;
  transition: none;
  width: 16vw;
}
.home .logo img {
  display: block;
}
.home .logo img.short {
  display: none;
}

.right-c {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  position: relative;
}

.topinfo {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  margin: 1.5vw 0 0;
}

.stockinfo {
  color: var(--wp--preset--color--primary);
  font-size: 1.25vw;
  font-weight: 700;
  margin: 0 0 0 1.5vw;
}

.main-nav {
  align-items: center;
  align-self: center;
  display: flex;
  justify-content: flex-end;
  list-style-type: none;
  margin: 0 0 2.4vw;
  padding: 0;
}
.main-nav li {
  display: block;
  position: relative;
}
.main-nav li a {
  display: block;
  text-transform: none;
}
.main-nav > li {
  display: inline-block;
  margin: 0 3vw 0 0;
  position: relative;
}
.main-nav > li:last-child {
  margin: 0;
}
.main-nav > li > a {
  color: var(--wp--preset--color--tertiary);
  font-size: 1.2vw;
  font-weight: 600;
  height: auto;
  line-height: 1.3;
  margin: 0;
  padding: 0;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  transition: 0.3s color;
}
.main-nav > li > a:hover, .main-nav > li > a:active, .main-nav > li > a:has(+ div.uk-open) {
  color: var(--wp--preset--color--primary);
}
.main-nav > li > a:focus-visible {
  border-radius: 3px;
  outline: 2px dashed var(--wp--preset--color--primary);
  outline-offset: 3px;
}
.main-nav > li.current-menu-item > a, .main-nav > li.current-menu-parent > a {
  color: var(--wp--preset--color--primary);
  font-weight: 700;
}

.uk-navbar-dropdown {
  background: var(--wp--preset--color--primary);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  padding: 14px 20px;
  width: 230px;
}
.uk-navbar-dropdown.uk-open {
  display: block;
  height: auto;
  opacity: 1;
  transition: 0.3s opacity;
}
.uk-navbar-dropdown.long {
  left: 0 !important;
  top: calc(100% + 15px) !important;
}
.uk-navbar-dropdown li a {
  color: #fff;
  padding: 0.6vw 0;
}
.uk-navbar-dropdown li a:hover, .uk-navbar-dropdown li a:focus, .uk-navbar-dropdown li a:active {
  color: #eee;
}
.uk-navbar-dropdown li a:focus-visible {
  text-decoration: underline;
  text-decoration-style: dashed;
}
.uk-navbar-dropdown .uk-navbar-dropdown {
  left: 100% !important;
  top: 0 !important;
}

.uk-navbar-dropdown-nav {
  font-size: 1.1vw;
  line-height: 1.3;
}

/* ----------  Mobile Navigation Button  ---------- */
.mobile-nav-btn {
  display: none;
  height: 46px;
  position: absolute;
  right: 20px;
  top: 58px;
  transition: none;
  width: 46px;
}

.mobile-nav-btn span {
  background: var(--wp--preset--color--foreground);
  display: inline-block;
  height: 2px;
  left: 10px;
  position: absolute;
  text-indent: -9999px;
  top: 22px;
  width: 25px;
}

.mobile-nav-btn span:before, .mobile-nav-btn span:after {
  background-color: inherit;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  transition: 0.3s all;
  width: 100%;
}

.mobile-nav-btn span:before {
  bottom: 8px;
}

.mobile-nav-btn span:after {
  top: 8px;
}

.mobile-nav-btn.is-clicked span:before {
  background: var(--wp--preset--color--foreground);
  bottom: 5px;
}

.mobile-nav-btn.is-clicked span:after {
  background: var(--wp--preset--color--foreground);
  top: 5px;
}

.mobile-nav {
  background: var(--wp--preset--color--primary);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  height: auto;
  overflow-y: auto;
  position: absolute;
  right: 0;
  top: 126px;
  visibility: hidden;
  width: 100%;
  z-index: 130;
}

.mobile-nav.mobile-nav-is-open {
  visibility: visible;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.mobile-nav ul li a {
  border-bottom: 1px solid rgba(216, 216, 216, 0.6);
  color: #fff;
  display: block;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  padding: 14px 25px;
  text-transform: uppercase;
  transition: none;
}

.mobile-nav ul li.current-menu-item a,
.mobile-nav ul li.current-menu-parent > a {
  color: #fff;
  font-weight: 700;
}

.mobile-nav ul li.sub-open a {
  background: var(--wp--preset--color--secondary);
  color: #fff;
}

.mobile-nav ul.sub-menu {
  display: none;
}

.mobile-nav ul ul.sub-menu a {
  padding: 14px 20px 14px 46px;
}

.mobile-nav ul li.sub-open ul.sub-menu a {
  background: inherit;
}

.intro .c {
  margin: auto;
  width: 90%;
}
.intro h2 {
  text-align: center;
}
.intro li {
  list-style-type: disc;
  margin: 0 0 15px;
}

.features {
  background: var(--wp--preset--color--lightgrey);
  padding: 7vw 0;
  position: relative;
}
.features > img {
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}
.features .wrapper {
  display: flex;
  justify-content: space-between;
}
.features .entry {
  color: #fff;
  display: flex;
  flex-direction: column;
  height: 15vw;
  justify-content: space-between;
  max-height: 250px;
  min-height: 160px;
  position: relative;
  width: 28%;
}
.features .entry:before {
  background: var(--wp--preset--color--secondary);
  content: "";
  inset: 0;
  opacity: 0.75;
  position: absolute;
  transition: 0.3s opacity;
}
.features .entry:nth-child(2n):before {
  background: var(--wp--preset--color--primary);
}
.features .entry:hover:before, .features .entry:focus:before {
  opacity: 0.95;
}
.features .inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  padding: 2.5vw;
  position: relative;
}
.features h3 {
  color: #fff;
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
}
.features .more {
  color: #fff;
}
.features .more:hover, .features .more:focus, .features .more:active {
  color: var(--wp--preset--color--lightgrey);
}

.l-news-container {
  padding: 5vw 0 0;
  text-align: center;
}
.l-news-container h2 {
  color: var(--wp--preset--color--foreground);
  font-weight: 600;
  text-transform: uppercase;
}
.l-news-container .grid {
  border-bottom: 1px solid var(--wp--preset--color--grey);
  display: flex;
  justify-content: space-between;
  margin: 3vw 0 0;
  padding: 0 0 5vw;
}
.l-news-container .entry {
  color: var(--wp--preset--color--tertiary);
  padding: 0 0 50px;
  position: relative;
  text-align: center;
  width: 25%;
}
.l-news-container .entry .date {
  color: var(--wp--preset--color--primary);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 20px;
}
.l-news-container .entry .title {
  font-size: 17px;
  line-height: 1.5;
}
.l-news-container .more {
  bottom: 0;
  color: var(--wp--preset--color--tertiary);
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}
.l-news-container .more:hover, .l-news-container .more:focus {
  color: var(--wp--preset--color--lightprimary);
}

.subpage .wrapper {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}

.main-col {
  min-height: 500px;
  padding: 5vw 0 5vw 5vw;
  width: 75%;
}

.main-col.wide {
  margin: 0 auto;
  padding-left: 0;
}

.main-col ul {
  list-style-type: disc;
}

.main-col a {
  color: var(--wp--preset--color--primary);
  font-weight: 600;
}
.main-col a:hover, .main-col a:focus, .main-col a:active {
  color: var(--wp--preset--color--lightprimary);
}

.main-col h2 {
  color: var(--wp--preset--color--primary);
  font-size: 2.4vw;
  font-weight: 800;
  text-transform: uppercase;
}

.main-col h2:first-child {
  margin: 0 0 2.5vw;
}

.main-col h4 {
  color: var(--wp--preset--color--primary);
}

.main-col ul,
.main-col ol {
  font-weight: 400;
}

.main-col ul li,
.main-col ol li {
  margin-bottom: 20px;
}

.main-col li ul,
.main-col li ol {
  margin-top: 15px;
}

.main-col ul.nomargin li,
.main-col ol.nomargin li {
  margin: 0;
}

.aside-col {
  margin: 5vw 0;
  position: relative;
  width: 25%;
}

.sidebar-menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.sidebar-menu li a {
  color: var(--wp--preset--color--primary);
  display: block;
  font-size: 1.35vw;
  font-weight: 700;
  line-height: 1.2;
  padding: 1.2vw 1vw 1.2vw 0;
  position: relative;
}
.sidebar-menu li a:before {
  background: none;
  content: "";
  inset: 0 100% 0 -1000%;
  position: absolute;
  transition: 0.3s all;
}
.sidebar-menu li a:hover, .sidebar-menu li a:focus, .sidebar-menu li a:active {
  background: #eee;
  color: var(--wp--preset--color--primary);
}
.sidebar-menu li a:hover:before, .sidebar-menu li a:focus:before, .sidebar-menu li a:active:before {
  background: #eee;
}
.sidebar-menu li.current_page_item a {
  background: #6a6a6a;
  color: #fff;
}
.sidebar-menu li.current_page_item a:before {
  background: #6a6a6a;
}
.sidebar-menu ul.children {
  margin: 0;
  padding: 0 0 0 1.5vw;
}
.sidebar-menu ul.children li {
  list-style-type: none;
}
.sidebar-menu ul.children a {
  font-size: 1.2vw;
  padding: 1vw 1vw 1vw 0;
}

.subscribe-container {
  text-align: center;
}
.subscribe-container h4 {
  font-weight: 400;
}

/* ----------  Footer  ---------- */
.home footer {
  background: #373737;
}

footer {
  background: var(--wp--preset--color--secondary);
  color: #fff;
  font-size: 16px;
  position: relative;
}
footer .r {
  display: flex;
  justify-content: space-between;
  margin: 0 0 3vw;
}
footer .c:last-child {
  text-align: right;
}
footer a {
  color: #fff;
}
footer a:hover, footer a:focus, footer a:active {
  color: var(--wp--preset--color--lightprimary);
}
footer p:last-child {
  margin: 0;
}

.logo-footer {
  display: block;
  margin: -1vw 0 0;
  min-width: 120px;
  width: 11vw;
}

.footer-nav {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.footer-nav li {
  margin: 0 0 0 2vw;
}
.footer-nav li a {
  color: #fff;
  display: block;
  font-size: 1.1vw;
  font-weight: 600;
  text-transform: uppercase;
}
.footer-nav li a:hover, .footer-nav li a:focus, .footer-nav li a:active {
  color: var(--wp--preset--color--lightgrey);
}

@media (min-width: 1600px) {
  body {
    font-size: 20px;
  }
  .wrapper {
    padding: 0;
    max-width: 1440px;
  }
  header {
    height: 140px;
    margin: 0 0 -140px;
  }
  .logo {
    width: 340px;
  }
  .home .logo {
    top: 45px;
    width: 260px;
  }
  .topinfo {
    margin: 22px 0 0;
  }
  .stockinfo {
    font-size: 21px;
  }
  .main-nav {
    margin: 0 0 40px;
  }
  .main-nav > li {
    margin: 0 45px 0 0;
  }
  .main-nav > li > a {
    font-size: 19px;
  }
  .uk-navbar-dropdown {
    padding: 20px 28px;
    width: 260px;
  }
  .uk-navbar-dropdown-nav {
    font-size: 18px;
  }
  .uk-navbar-dropdown li a {
    padding: 10px 0;
  }
  .features {
    padding: 120px 0;
  }
  .features .inner {
    padding: 40px;
  }
  .l-news-container {
    padding: 90px 0 0;
  }
  .l-news-container .grid {
    margin: 45px 0 0;
    padding: 0 0 90px;
  }
  .l-news-container .entry {
    padding: 0 0 60px;
  }
  .l-news-container .entry .date {
    font-size: 22px;
  }
  .l-news-container .entry .title {
    font-size: 19px;
  }
  .main-col {
    padding: 80px 0 80px 80px;
  }
  .main-col h2 {
    font-size: 38px;
  }
  .main-col h2:first-child {
    margin: 0 0 40px;
  }
  .main-col ul li,
  .main-col ol li {
    margin-bottom: 25px;
  }
  .aside-col {
    margin: 80px 0;
  }
  .sidebar-menu li a {
    font-size: 22px;
    padding: 20px 15px 20px 0;
  }
  .sidebar-menu ul.children {
    padding: 0 0 0 25px;
  }
  .sidebar-menu ul.children a {
    font-size: 19px;
    padding: 15px 15px 15px 0;
  }
  footer {
    font-size: 18px;
  }
  .logo-footer {
    margin: -15px 0 0;
    width: 180px;
  }
  .footer-nav li {
    margin: 0 0 0 35px;
  }
  .footer-nav li a {
    font-size: 18px;
  }
}
@media (max-width: 1200px) {
  .wrapper {
    padding: 0 40px;
  }
  header {
    min-height: 0;
  }
  .topinfo {
    margin: 1.1vw 0 0;
  }
  .main-nav > li > a {
    font-size: 1.3vw;
  }
  .intro .c {
    width: 100%;
  }
  .sidebar-menu li a {
    font-size: 16px;
    padding: 15px 0;
  }
  .sidebar-menu ul.children a {
    font-size: 15px;
  }
  .footer-nav li a {
    font-size: 1.25vw;
  }
}
@media (max-width: 960px) {
  .wrapper {
    padding: 0 25px;
  }
  body {
    font-size: 16px;
  }
  header, .home header {
    background: #fff;
    height: 126px;
    margin: 0;
  }
  header .wrapper, .home header .wrapper {
    padding: 36px 25px 0;
  }
  .right-c {
    position: unset;
  }
  .logo,
  .home .logo {
    top: auto;
    width: 200px;
  }
  .logo img.short, .home .logo img.short {
    display: block;
  }
  .logo img:not(.short) {
    display: none;
  }
  .topinfo {
    background: var(--wp--preset--color--primary);
    color: #fff;
    height: 36px;
    justify-content: space-between;
    left: 0;
    margin: 0;
    padding: 6px 25px;
    position: absolute;
    right: 0;
    top: 0;
  }
  .stockinfo {
    color: #fff;
    font-size: 14px;
  }
  .main-nav {
    display: none;
  }
  .mobile-nav-btn {
    display: block;
  }
  .intro {
    font-size: 16px;
  }
  .features {
    padding: 70px 0;
  }
  .features .entry {
    width: 32%;
  }
  .features .inner {
    padding: 30px 25px;
  }
  .features h3 {
    font-size: 19px;
  }
  .l-news-container {
    padding: 45px 0 0;
  }
  .l-news-container .grid {
    margin: 30px 0 0;
    padding: 0 0 45px;
  }
  .l-news-container .entry {
    padding: 0 0 45px;
    width: 31.33%;
  }
  .l-news-container .entry .date {
    font-size: 18px;
  }
  .l-news-container .entry .title {
    font-size: 15px;
  }
  .subpage .wrapper {
    flex-direction: column;
  }
  .main-col {
    min-height: 300px;
    padding: 40px 0;
    width: 100%;
  }
  .main-col h2 {
    font-size: 22px;
  }
  .main-col h2:first-child {
    margin: 0 0 25px;
  }
  .aside-col {
    margin: 0 -25px;
    overflow: hidden;
    width: auto;
  }
  .sidebar-menu {
    border-top: 1px solid #979797;
    padding: 0 25px;
  }
  .sidebar-menu li a:after {
    background: none;
    content: "";
    inset: 0 -1000% 0 100%;
    position: absolute;
    transition: 0.3s all;
  }
  .sidebar-menu li a:hover:after, .sidebar-menu li a:focus:after, .sidebar-menu li a:active:after {
    background: #eee;
  }
  .sidebar-menu li.current_page_item a:after {
    background: #6a6a6a;
    content: "";
    inset: 0 -1000% 0 100%;
    position: absolute;
    transition: 0.3s all;
  }
  .sidebar-menu ul.children {
    padding: 0 0 0 20px;
  }
  .sidebar-menu ul.children a {
    padding: 12px 10px 12px 0;
  }
  footer {
    font-size: 15px;
    text-align: center;
  }
  footer .r {
    align-items: center;
    flex-direction: column;
    margin: 0 0 30px;
  }
  .logo-footer {
    margin: 0 0 30px;
  }
  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-nav li {
    margin: 0 7px;
  }
  .footer-nav li a {
    font-size: 14px;
  }
}
@media (max-width: 640px) {
  .features .wrapper {
    flex-direction: column;
  }
  .features .entry {
    margin: 0 0 25px;
    width: 100%;
  }
  .features .entry:last-child {
    margin: 0;
  }
  .l-news-container .grid {
    flex-direction: column;
  }
  .l-news-container .grid .entry {
    margin: 0 0 35px;
    padding: 0;
    width: 100%;
  }
  .l-news-container .grid .entry:last-child {
    margin: 0;
  }
  .l-news-container .grid .entry .date {
    font-size: 17px;
    margin: 0 0 15px;
  }
  .l-news-container .grid .more {
    left: auto;
    margin: 20px 0 0;
    position: relative;
    transform: none;
  }
}
.posts {
  grid-gap: 0;
}
.posts .post {
  border-top: 1px solid #ccc;
  display: flex;
  align-items: center;
  padding: 30px 0;
}
.posts .post__date {
  width: 23%;
}
.posts .post__title {
  color: var(--wp--preset--color--primary);
  line-height: 1.5;
  width: 65%;
}
.posts .post__title:hover {
  color: var(--wp--preset--color--lightprimary);
}
.posts .post__link {
  text-align: right;
  width: 12%;
}
.posts .post__link i {
  color: var(--wp--preset--color--primary);
  font-size: 28px;
  margin-left: 10px;
  transition: 0.3s;
}
.posts .post__link a:hover i {
  color: var(--wp--preset--color--lightprimary);
}
.posts:last-of-type {
  border-bottom: 1px solid #ccc;
}

.main-col .meta {
  display: flex;
  justify-content: space-between;
  margin: 0 0 30px;
}

@media (min-width: 1600px) {
  .posts .post__link i {
    font-size: 32px;
  }
}
@media (max-width: 960px) {
  .posts .post {
    flex-wrap: wrap;
    padding: 20px 0;
  }
  .posts .post .post__date {
    width: 100%;
  }
  .posts .post .post__title {
    width: 75%;
  }
  .posts .post .post__link {
    width: 25%;
  }
}
/*
    @include breakpoint(max-mobile) {
        flex-wrap: wrap;
        padding: 20px 0;

        &__date {
            width: 100%;
            text-align: left;
        }

        &__title {
            padding: 10px 0;
            width: 75%;
        }

        &__link {
            width: 25%;
        }
        }
    }
*/
.results {
  display: grid;
  grid-gap: 30px;
}
.results .result {
  color: var(--wp--preset--color--primary);
  display: block;
  position: relative;
  padding: 25px;
  border: 1px solid #ababab;
}
.results .result:hover {
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid var(--wp--preset--color--primary);
}
.results .result:hover span,
.results .result:hover h4 {
  color: var(--wp--preset--color--primary);
}
.results .result .read-more {
  transition: 0.3s all;
}
.results .result .title {
  margin-bottom: 0;
  font-family: var(--wp--preset--font-family--primary);
  color: var(--wp--preset--color--primary);
  transition: all 0.2s ease-in-out;
  line-height: 1.2;
  margin: 0 0 20px;
}
.results .result .excerpt {
  line-height: 1.6;
  margin: 0;
}
.results .result .read-more {
  text-decoration: underline;
  text-transform: uppercase;
  margin: 20px 0 0;
}
.results .result .search-excerpt {
  background: yellow;
}

.main-col .results .result {
  text-decoration: none !important;
}

/* --- PAGE : 404 --- */
.error404 #content {
  margin: 0;
}
.error404 h1 {
  line-height: 1;
  margin: 0 0 30px;
  opacity: 0.6;
}
.error404 h1 strong {
  color: var(--wp--preset--color--primary);
  display: block;
  font-size: 140px;
  font-weight: 800;
}
.error404 h1 span {
  color: var(--wp--preset--color--primary);
  display: block;
  font-size: 40px;
  line-height: 1.2;
}
.error404 p {
  margin: 0 auto;
  max-width: 50%;
}

@media (max-width: 960px) {
  .error404 h1 strong {
    font-size: 100px;
  }
  .error404 h1 span {
    font-size: 30px;
  }
  .error404 p {
    max-width: 80%;
  }
}
@media (max-width: 640px) {
  .error404 p {
    max-width: 100%;
  }
}
.social-wrapper ul {
  align-items: center;
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
}
.social-wrapper ul li {
  list-style: none;
}
.social-wrapper ul li a {
  align-items: center;
  background: var(--wp--preset--color--primary);
  border-radius: 50% 50%;
  color: #fff;
  display: flex;
  font-size: 18px;
  height: 30px;
  justify-content: center;
  line-height: 1;
  width: 30px;
}
.social-wrapper ul li a:hover, .social-wrapper ul li a:focus {
  background: var(--wp--preset--color--secondary);
  color: #fff;
}
.social-wrapper ul li i {
  transition: 0.3s 0 all;
}

footer .social-wrapper ul {
  justify-content: flex-end;
}

/*
.mobile-nav {
    .etc {border-bottom: 1px solid rgba(216, 216, 216, 0.5); padding: 14px 25px;}
    .etc a {border: none;}
    .social-wrapper ul {justify-content: center;}
    .social-wrapper ul li a {color: #fff;}
    .social-wrapper ul li a:hover {color: #dedede;}
    .social-wrapper ul li i {transition: none;}
}
*/
@media (min-width: 1600px) { /* -------------------------  1600  ------------------------- */
  .social-wrapper ul {
    gap: 10px;
  }
  .social-wrapper ul li a {
    font-size: 20px;
    height: 34px;
    width: 34px;
  }
}
@media (max-width: 1200px) { /* -------------------------  1200  ------------------------- */ }
@media (max-width: 960px) { /* -------------------------  960  ------------------------- */
  .social-wrapper ul {
    gap: 3px;
  }
  .social-wrapper ul li a {
    font-size: 17px;
    height: 26px;
    width: 26px;
  }
  footer .social {
    margin: 25px 0 0;
  }
  footer .social-wrapper ul {
    justify-content: center;
  }
}/*# sourceMappingURL=style-base.css.map */