/*
* Prefixed by https://autoprefixer.github.io
* Browsers: last 4 version,not dead
*/

:root {
  --primary: #F4AB1C;
  --secondary: #4F52B2;
  --d-grey: #373736;
  --grey: #808080;
  --l-grey: #CCC;
  --vl-grey: #E6E6E6;
  --f-grey: #F2F2F2;
  --base: #000;
  --white: #FFF;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../libs/fonts/montserrat/Montserrat-VariableFont_wght.woff2') format('woff2'),
    /* Super Modern Browsers */
    url('../libs/fonts/montserrat/Montserrat-VariableFont_wght.woff') format('woff'),
    /* Modern Browsers */
    url('../libs/fonts/montserrat/Montserrat-VariableFont_wght.ttf') format('truetype');
  /* Safari, Android, iOS */
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

.wp-block-button.is-style-outline .wp-block-button__link {
  border: 2px solid;
}

/* Theme colours */
.has-primary-color {
  color: var(--primary);
}

.has-primary-background-color {
  background-color: var(--primary);
}

.has-secondary-color {
  color: var(--secondary);
}

.has-secondary-background-color {
  background-color: var(--secondary);
}

.has-d-grey-color {
  color: var(--d-grey);
}

.has-d-grey-background-color {
  background-color: var(--d-grey);
}

.has-grey-color {
  color: var(--grey);
}

.has-grey-background-color {
  background-color: var(--grey);
}

.has-l-grey-color {
  color: var(--l-grey);
}

.has-l-grey-background-color {
  background-color: var(--l-grey);
}

.has-vl-grey-color {
  color: var(--vl-grey);
}

.has-vl-grey-background-color {
  background-color: var(--vl-grey);
}

.has-f-grey-color {
  color: var(--f-grey);
}

.has-f-grey-background-color {
  background-color: var(--f-grey);
}

.has-base-color,
.has-base-color.has-text-color {
  color: var(--base);
}

.has-base-background-color {
  background-color: var(--base);
}

.has-white-color,
.has-white-color.has-text-color a {
  color: var(--white);
}

.has-white-background-color {
  background-color: var(--white);
}

.has-background-dim {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0.5;
  /*default*/
}

.has-background-dim.has-background-dim-10 {
  opacity: 0.1;
}

.has-background-dim.has-background-dim-20 {
  opacity: 0.2;
}

.has-background-dim.has-background-dim-30 {
  opacity: 0.3;
}

.has-background-dim.has-background-dim-40 {
  opacity: 0.4;
}

.has-background-dim.has-background-dim-50 {
  opacity: 0.5;
}

.has-background-dim.has-background-dim-60 {
  opacity: 0.6;
}

.has-background-dim.has-background-dim-70 {
  opacity: 0.7;
}

.has-background-dim.has-background-dim-80 {
  opacity: 0.8;
}

.has-background-dim.has-background-dim-90 {
  opacity: 0.9;
}

.has-background-dim.has-background-dim-100 {
  opacity: 1;
}

/* Fade scroll/load animations */
.animate {
  opacity: 0
}

.fade {
  opacity: 1;
  transition: opacity .5s 0.5s
}

.on-scroll--bottom {
  opacity: 0;
  transform: translateY(200px);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform
}

.on-scroll--left, .on-scroll--top {
  -webkit-backface-visibility: hidden;
  opacity: 0;
  will-change: transform
}

.fade--bottom {
  -webkit-animation: 1s forwards fade-bottom;
          animation: 1s forwards fade-bottom
}

@-webkit-keyframes fade-bottom {
  100% {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fade-bottom {
  100% {
    opacity: 1;
    transform: translateY(0)
  }
}

.on-scroll--top {
  transform: translateY(-20px);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden
}

.fade--top {
  -webkit-animation: 1s forwards fade-top;
          animation: 1s forwards fade-top
}

@-webkit-keyframes fade-top {
  100% {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fade-top {
  100% {
    opacity: 1;
    transform: translateY(0)
  }
}

.on-scroll--left {
  transform: translateX(-20px);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden
}

.fade--left {
  -webkit-animation: 1s forwards fade-left;
          animation: 1s forwards fade-left
}

@-webkit-keyframes fade-left {
  100% {
    opacity: 1;
    transform: translateX(0)
  }
}

@keyframes fade-left {
  100% {
    opacity: 1;
    transform: translateX(0)
  }
}

.on-scroll--right {
  opacity: 0;
  transform: translateX(20px);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform
}

.fade--right {
  -webkit-animation: 1s forwards fade-right;
          animation: 1s forwards fade-right
}

@-webkit-keyframes fade-right {
  100% {
    opacity: 1;
    transform: translateX(0)
  }
}

@keyframes fade-right {
  100% {
    opacity: 1;
    transform: translateX(0)
  }
}

.delay-200 {
  -webkit-animation-delay: .2s !important;
          animation-delay: .2s !important
}

.delay-400 {
  -webkit-animation-delay: .4s !important;
          animation-delay: .4s !important
}

.delay-600 {
  -webkit-animation-delay: .6s !important;
          animation-delay: .6s !important
}

.delay-800 {
  -webkit-animation-delay: .8s !important;
          animation-delay: .8s !important
}

.delay-1000 {
  -webkit-animation-delay: 1s !important;
          animation-delay: 1s !important
}

.delay-1200 {
  -webkit-animation-delay: 1.2s !important;
          animation-delay: 1.2s !important
}

.delay-1400 {
  -webkit-animation-delay: 1.4s !important;
          animation-delay: 1.4s !important
}

.delay-1600 {
  -webkit-animation-delay: 1.6s !important;
          animation-delay: 1.6s !important
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
html {
  font: 400 15px/1.6 'Montserrat', Arial, sans-serif;
  color: var(--base);
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
  scroll-behavior: smooth;
  word-break: break-word;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  margin: 0 auto;
  background: var(--white);
}

#main-content .wp-block-column {
  position: relative;
}

/* Standard Width of Group blocks */
.wp-block-group>div:first-of-type,
.wp-block-cover .wp-block-cover__inner-container,
#signup-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  z-index: 1;
  position: relative;
}

/* Narrow Width of Group blocks */
.wp-block-group.narrow>div:first-of-type,
.wp-block-cover.narrow .wp-block-cover__inner-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

/* Narrow Width of Group blocks */
.wp-block-group.narrower>div:first-of-type,
.wp-block-cover.narrower .wp-block-cover__inner-container {
  max-width: 756px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

/* Width of "wide" Group blocks */
.wp-block-group.alignwide>div:first-of-type,
.wp-block-cover.alignwide .wp-block-cover__inner-container {
  max-width: 1580px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.wp-block-group.alignwide.extrawide>div:first-of-type {
  max-width: 1690px;
}

/* Width of "full-wide" Group blocks */
.wp-block-group.alignfull>div:first-of-type,
.wp-block-cover.alignfull .wp-block-cover__inner-container {
  max-width: initial;
  margin: 0 auto;
  padding: 0;
}

.site-header .wp-block-group.alignwide>div:first-of-type,
.wp-block-cover.alignwide>div:first-of-type,
.wp-block-cover.narrow>div:first-of-type {
  padding: 0;
}

.site-footer .wp-block-group.alignwide>div:first-of-type {
  padding-top: 0;
  padding-bottom: 0;
}

.bg-globe {
  background-image: url('/wp-content/uploads/bg-globe.png');
  background-repeat: no-repeat;
  background-position: top left;
}

.bg-pattern {
  background-image: url('/wp-content/uploads/bg-pattern.png');
  background-repeat: no-repeat;
}

.bg-pattern-2 {
  background-image: url('/wp-content/uploads/bg-pattern-2.png');
  background-repeat: no-repeat;
  background-position: bottom right;
}

.bg-pattern-3 {
  background-image: url('/wp-content/uploads/bg-pattern-3.png');
  background-repeat: no-repeat;
}

.bg-pattern-4 {
  background-image: url('/wp-content/uploads/bg-pattern-4.png');
  background-repeat: no-repeat;
}

.bg-pattern-5 {
  background: url('/wp-content/uploads/bg-pattern-5.png') no-repeat top center;
}

.bg-pattern-6 {
  background-image: url('/wp-content/uploads/bg-pattern-6.png');
  background-repeat: no-repeat;
  background-position: bottom left;
}

.bg-pattern-7 {
  background-image: url('/wp-content/uploads/bg-pattern-7.png');
  background-repeat: no-repeat;
  background-position: bottom right;
}

.bg-pattern-8 {
  background-image: url('/wp-content/uploads/bg-pattern-8.png');
  background-repeat: repeat;
  background-position: center right;
}


h1,
h2,
h3,
h4 {
  font-weight: 700;
  margin: 0 0 1rem 0;
  padding: 0;
  color: var(--base);
}

h1 {
  font-size: 2.5em;
  line-height: 1.2;
  margin: 0 0 1rem 0;
}

h2 {
  font-size: 2em;
  line-height: 1.15;
  margin: 0 0 1.25rem 0;
}

h3,
h2.has-small-font-size {
  font-size: 1.75em;
  line-height: 1.25;
  margin: 0 0 1.25rem 0;
}

h4 {
  font-size: 1.25em;
  line-height: 1.35;
  margin: 0 0 1.25rem 0;
}

h5 {
  font-size: 1.15rem;
  line-height: 1.4;
  margin: 0 0 1.25rem 0;
}

.programs-include {
  text-align: center;
  position: relative;
}

.programs-include::after {
  content: "";
  height: 2px;
  width: 100%;
  background: var(--primary);
  position: absolute;
  left: 0;
  top: .95rem
}

.programs-include .wp-block-heading {
  font-size: .95em;
  letter-spacing: 1.5px;
  display: inline-block;
  padding: .35rem 1.35rem;
}

.icon-business-dev {
  position: relative;
  padding: 0 0 0 6rem;
}

.icon-business-dev::before {
  content: "";
  height: 6rem;
  width: 6rem;
  background: url(/wp-content/uploads/icon-business-dev.svg) no-repeat;
  position: absolute;
  top: calc(50% + .75rem);
  left: 0;
  transform: translateY(-50%);
}

.icon-business-dev.eco::before {
  background: url(/wp-content/uploads/icon-business-dev-eco.svg) no-repeat;
}

.icon-business-dev.marketing::before {
  background: url(/wp-content/uploads/icon-business-dev-marketing.svg) no-repeat;
}

.icon-business-dev.sustainable::before {
  background: url(/wp-content/uploads/logo-climate-positive.svg) no-repeat;
  background-size: 5rem 5rem;
}

.icon-business-dev.sustainable2::before {
  background: url(/wp-content/uploads/logo-climate-positive-programs.svg) no-repeat;
  background-size: 5rem 5rem;
}

/*
#main-content p+h2, #main-content p+h3 {
  margin-top: 3rem;
}
*/

p {
  font-size: 1em;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
  padding: 0;
}

p.has-small-font-size {
  font-size: .85em;
}

p.has-medium-font-size,
h3.has-medium-font-size {
  font-size: 1.2em;
  line-height: 1.5;
}

p.has-large-font-size,
h2.has-medium-font-size {
  font-size: 1.4em;
  line-height: 1.4;
}

p.has-x-large-font-size {
  font-size: 1.6em;
  line-height: 1.3;
}

p+.wp-block-buttons,
.single p+.wp-block-columns,
.single .wp-block-columns+p,
.single .wp-block-columns+.wp-block-heading,
.wp-block-columns+p,
.wp-block-columns+.wp-block-buttons,
.wp-block-image+p {
  margin-top: 2rem;
}

.wp-block-buttons+p,
.wp-block-buttons+.wp-block-heading,
.wp-block-buttons+.wp-block-columns,
.wp-block-image+.wp-block-heading,
.wp-block-embed+p,
.wp-block-embed+.wp-block-heading,
.single .wistia-embed.video-only+.wp-block-buttons {
  margin-top: 2.25rem;
}

b,
strong {
  font-weight: 700;
}

hr.wp-block-separator {
  background-color: var(--grey);
  border: 0;
  height: 1px;
  width: 5rem;
  margin: 0 auto;
}

hr.wp-block-separator.is-style-wide {
  width: 100%;
}

hr.wp-block-separator.is-style-dots {
  background-color: transparent;
  border-top: 5px dotted var(--grey);
}

img {
  max-width: 100%;
  width: initial;
  height: auto;
  display: block;
  margin: 0 auto;
}

.is-style-rounded img {
  border-radius: 50%;
}

figure {
  margin: 0;
}

figure.alignleft img {
  margin: 0;
}

figure.alignright img {
  margin: 0 0 0 auto;
}

figure.aligncenter img {
  margin: auto;
}

figure.alignwide img,
figure.alignfull img {
  width: 100%;
}

figure.aligncenter figcaption {
  margin-top: .75rem;
  text-align: center;
  line-height: 1.45;
  font-size: .95em;
}

svg {
  display: block;
}

ul,
main ul.list-no-style {
  list-style-type: none;
  font-size: 1em;
  margin: 0;
  padding: 0;
}

main ul,
ol {
  list-style-type: disc;
  font-size: 1em;
  margin: 0 0 1.5rem 2rem;
  padding: 0;
  line-height: 1.6;
}

main ul.has-small-font-size,
ol.has-small-font-size {
  font-size: .85em;
}

main ul.checklist {
  margin: 0 0 1.5rem 0;
}
ul.checklist li {
  position: relative;
  padding: 0 0 .5rem 1.6rem;
}
ul.checklist li::before {
  content: "";
  position: absolute;
  top: .2rem;
  left: 0;
  width: 1.15rem;
  height: 1.15rem;
  background: url('data:image/svg+xml,<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 20 20"><path fill="%23f4AB1C" d="M20,9.4v1.2l-.2,1.5c-.8,3.8-3.9,6.9-7.7,7.7l-1.5.2c-.4,0-.8,0-1.2,0C.6,19.5-3.3,8.5,3.3,2.6s16.2-1.5,16.7,6.8ZM14.9,5.6c-.3,0-.5.1-.7.3l-5.7,5.7-2.6-2.4c-1-.9-2.3.4-1.4,1.4s2.4,2,3.4,3.1c.4.3,1,.3,1.3,0l6.5-6.4c.5-.6,0-1.6-.8-1.6Z"/><path fill="%23FFFFFF" d="M14.9,5.6c.8,0,1.3,1,.8,1.6l-6.5,6.4c-.4.4-.9.4-1.3,0-1-1.1-2.4-2-3.4-3.1s.3-2.3,1.4-1.4l2.6,2.4,5.7-5.7c.2-.2.4-.3.7-.3Z"/></svg>') no-repeat;
}

main ul li ul,
ol li ol {
  margin-bottom: 0;
}

ol {
  list-style-type: decimal;
}

ol.lower-alpha {
  list-style-type: lower-alpha;
}

ol.upper-alpha {
  list-style-type: upper-alpha;
}

ol.lower-roman {
  list-style-type: lower-roman;
}

ol.upper-roman {
  list-style-type: upper-roman;
}

a {
  text-decoration: none;
  transition: all .3s ease;
  color: var(--secondary);
}

main a {
  text-decoration: underline;
}

a:hover,
a:focus,
a:active {
  cursor: pointer;
  text-decoration: none;
  color: var(--secondary);
}
        
/* Breadcrumbs */
.ah-breadcrumb {
  width: 100%;
  margin: .5rem auto 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
}

.ah-breadcrumb li {
  display: inline-block;
  margin: 0 .25rem;
  font-size: .9em;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: var(--l-grey);
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: var(--secondary);
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

:focus-visible {
  outline: -webkit-focus-ring-color auto 1px;
}

:focus {
  outline: -webkit-focus-ring-color auto 5px;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus,
input[type="search"]:focus,
.main-navigation .btn-toggle:focus,
.owl-dots .owl-dot:focus,
input[type="submit"]:focus,
[tabindex]:focus {
  outline: -webkit-focus-ring-color auto 5px;
  outline-offset: 2px;
  /* Optionally, add a box-shadow or background change for stronger indication */
  /* box-shadow: 0 0 5px 2px rgba(0, 95, 204, 0.7); */
  transition: none;
}

.copyright a:focus,
.overlay .cancel:focus::after {
 outline: -webkit-focus-ring-color auto 5px;
  outline-offset: 2px; /* Offset the outline */
  transition: none;
}

/*--------------------------------------------------------------
# Video embeds
--------------------------------------------------------------*/
.wp-block-embed__wrapper,
.wistia-embed,
.wistia-loaded {
  position: relative;
  overflow: hidden;
  padding-bottom: 56.25%;
  height: 0;
}

.wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wistia_embed {
  position: absolute!important;
  top: 0;
  left: 0;
  width: 100%!important;
  height: 100%!important;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* cross-browser fix */
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button.wp-block-search__button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: 0;
  display: inline-block;
  margin: 0;
  padding: .625rem 1.625rem;
  background: var(--secondary);
  border-radius: 4px;
  font: 600 1em/1.25 'Montserrat', Arial, sans-serif;
  letter-spacing: .5px;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--white);
  cursor: pointer;
  border-radius: .25rem 1.75rem;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  background: var(--primary);
  color: var(--base);
  transition: all .3s ease;
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
  border-color: var(--base);
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
input[type="file"],
textarea,
select {
  color: var(--d-grey);
  border: 1px solid var(--base);
  border-radius: 0;
  margin: 0 0 1.5em 0;
  padding: .75rem 1rem;
  width: 100%;
}

input[type="file"] {
  border: 0;
  padding: 0;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
  color: var(--base);
}

/* contact 7 forms */
span.required {
  color: var(--secondary);
  font-size: 0.8em;
}

span.wpcf7-not-valid-tip {
  color: var(--secondary);
}

span.wpcf7-list-item {
  display: block;
}

/*--------------------------------------------------------------
## Site logo
--------------------------------------------------------------*/
.site-header {
  background: var(--white);
  position: relative;
  top: 0;
  width: 100%;
  z-index: 2;
  box-shadow: 0 8px 20px -4px rgba(0, 0, 0, .15);
}

.site-branding {
  padding: .6rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.site-branding img {
  width: 10.25rem;
  transition: all .5s ease;
}

.site-branding a:hover img {
  opacity: .75;
}

.top-nav {
  display: none;
}

/* Social Media */
.menu-social-media-container ul {
  display: flex;
  gap: 1.5rem;
}

.menu-social-media-container li a {
  position: relative;
}

.menu-social-media-container li.icon-linkedin a:before,
.menu-social-media-container li.icon-facebook a:before,
.menu-social-media-container li.icon-x a:before,
.menu-social-media-container li.icon-youtube a:before {
  content: "";
  display: block;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35 35" style="enable-background:new 0 0 35 35;" fill="%23FFFFFF"><path d="M30.7,0C33.1,0,35,1.9,35,4.3v26.4c0,2.4-1.9,4.3-4.3,4.3H4.3c-2.4,0-4.3-1.9-4.3-4.3V4.3C0,1.9,1.9,0,4.3,0h26.4ZM11,28.9v-15.4h-5.1v15.4h5.1ZM29.5,28.9v-8.8c0-4.7-2.5-6.9-5.9-6.9s-3.9,1.5-4.6,2.5v-2.2h-5.1c0,1.4,0,15.4,0,15.4h5.1v-8.6c0-.5,0-.9.2-1.3.4-.9,1.2-1.9,2.6-1.9s2.6,1.4,2.6,3.5v8.3h5.1ZM8.4,6.1c-1.8,0-2.9,1.2-2.9,2.7s1.1,2.7,2.8,2.7h0c1.8,0,2.9-1.2,2.9-2.7,0-1.5-1.1-2.7-2.9-2.7h0Z"/></svg>') no-repeat center;
  width: 2.1rem;
  height: 2.1rem;
}

.menu-social-media-container li.icon-facebook a:before {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35 35" style="enable-background:new 0 0 35 35;" fill="%23FFFFFF"><path d="M30.7,0C33.1,0,35,1.9,35,4.3v26.4c0,2.4-1.9,4.3-4.3,4.3h-7.3v-13.2h4.6l.9-5.6h-5.4v-3.7c0-1.5.8-3.1,3.2-3.1h2.5v-4.8s-2.2-.4-4.4-.4c-4.5,0-7.4,2.7-7.4,7.6v4.3h-5v5.6h5v13.2H4.3C1.9,35,0,33.1,0,30.7V4.3C0,1.9,1.9,0,4.3,0h26.4Z"/></svg>') no-repeat center;
}

.menu-social-media-container li.icon-x a:before {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35 35" style="enable-background:new 0 0 35 35;" fill="%23FFFFFF"><polygon points="17.7 15.5 11.3 6.4 7.8 6.4 15.8 17.6 16.8 19 23.7 28.7 27.2 28.7 18.7 16.9 17.7 15.5"/><path d="M32.1,0H2.9C1.3,0,0,1.3,0,2.9v29.1c0,1.6,1.3,2.9,2.9,2.9h29.1c1.6,0,2.9-1.3,2.9-2.9V2.9c0-1.6-1.3-2.9-2.9-2.9ZM22.6,30.2l-6.9-9.9-8.7,9.9h-2.2l9.9-11.3L4.8,4.8h7.6l6.6,9.4,8.2-9.4h2.2l-9.5,10.8,10.3,14.7h-7.6Z"/></svg>') no-repeat center;
}

.menu-social-media-container li.icon-youtube a:before {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35 35" style="enable-background:new 0 0 35 35;" fill="%23FFFFFF"><path d="M30.7,0C33.1,0,35,1.9,35,4.3v26.4c0,2.4-1.9,4.3-4.3,4.3H4.3C1.9,35,0,33.1,0,30.7V4.3C0,1.9,1.9,0,4.3,0h26.4ZM29.3,12c-.3-1.1-1.1-1.9-2.2-2.2-1.9-.5-9.6-.5-9.6-.5,0,0-7.7,0-9.6.5-1.1.3-1.9,1.1-2.2,2.2-.5,1.9-.5,5.9-.5,5.9,0,0,0,4,.5,5.9.3,1.1,1.1,1.9,2.2,2.2,1.9.5,9.6.5,9.6.5,0,0,7.7,0,9.6-.5,1.1-.3,1.9-1.1,2.2-2.2.5-1.9.5-5.9.5-5.9,0,0,0-4-.5-5.9ZM15,21.6v-7.4l6.4,3.7-6.4,3.7h0Z"/></svg>') no-repeat center;
}

.menu-social-media-container li.icon-linkedin a:hover:before {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35 35" style="enable-background:new 0 0 35 35;" fill="%23F4AB1C"><path d="M30.7,0C33.1,0,35,1.9,35,4.3v26.4c0,2.4-1.9,4.3-4.3,4.3H4.3c-2.4,0-4.3-1.9-4.3-4.3V4.3C0,1.9,1.9,0,4.3,0h26.4ZM11,28.9v-15.4h-5.1v15.4h5.1ZM29.5,28.9v-8.8c0-4.7-2.5-6.9-5.9-6.9s-3.9,1.5-4.6,2.5v-2.2h-5.1c0,1.4,0,15.4,0,15.4h5.1v-8.6c0-.5,0-.9.2-1.3.4-.9,1.2-1.9,2.6-1.9s2.6,1.4,2.6,3.5v8.3h5.1ZM8.4,6.1c-1.8,0-2.9,1.2-2.9,2.7s1.1,2.7,2.8,2.7h0c1.8,0,2.9-1.2,2.9-2.7,0-1.5-1.1-2.7-2.9-2.7h0Z"/></svg>') no-repeat center;
}

.menu-social-media-container li.icon-facebook a:hover:before {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35 35" style="enable-background:new 0 0 35 35;" fill="%23F4AB1C"><path d="M30.7,0C33.1,0,35,1.9,35,4.3v26.4c0,2.4-1.9,4.3-4.3,4.3h-7.3v-13.2h4.6l.9-5.6h-5.4v-3.7c0-1.5.8-3.1,3.2-3.1h2.5v-4.8s-2.2-.4-4.4-.4c-4.5,0-7.4,2.7-7.4,7.6v4.3h-5v5.6h5v13.2H4.3C1.9,35,0,33.1,0,30.7V4.3C0,1.9,1.9,0,4.3,0h26.4Z"/></svg>') no-repeat center;
}

.menu-social-media-container li.icon-x a:hover:before {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35 35" style="enable-background:new 0 0 35 35;" fill="%23F4AB1C"><polygon points="17.7 15.5 11.3 6.4 7.8 6.4 15.8 17.6 16.8 19 23.7 28.7 27.2 28.7 18.7 16.9 17.7 15.5"/><path d="M32.1,0H2.9C1.3,0,0,1.3,0,2.9v29.1c0,1.6,1.3,2.9,2.9,2.9h29.1c1.6,0,2.9-1.3,2.9-2.9V2.9c0-1.6-1.3-2.9-2.9-2.9ZM22.6,30.2l-6.9-9.9-8.7,9.9h-2.2l9.9-11.3L4.8,4.8h7.6l6.6,9.4,8.2-9.4h2.2l-9.5,10.8,10.3,14.7h-7.6Z"/></svg>') no-repeat center;
}

.menu-social-media-container li.icon-youtube a:hover:before {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35 35" style="enable-background:new 0 0 35 35;" fill="%23F4AB1C"><path d="M30.7,0C33.1,0,35,1.9,35,4.3v26.4c0,2.4-1.9,4.3-4.3,4.3H4.3C1.9,35,0,33.1,0,30.7V4.3C0,1.9,1.9,0,4.3,0h26.4ZM29.3,12c-.3-1.1-1.1-1.9-2.2-2.2-1.9-.5-9.6-.5-9.6-.5,0,0-7.7,0-9.6.5-1.1.3-1.9,1.1-2.2,2.2-.5,1.9-.5,5.9-.5,5.9,0,0,0,4,.5,5.9.3,1.1,1.1,1.9,2.2,2.2,1.9.5,9.6.5,9.6.5,0,0,7.7,0,9.6-.5,1.1-.3,1.9-1.1,2.2-2.2.5-1.9.5-5.9.5-5.9,0,0,0-4-.5-5.9ZM15,21.6v-7.4l6.4,3.7-6.4,3.7h0Z"/></svg>') no-repeat center;
}

/* Language Selector */
.menu-languages img {
  display: inline-block;
  margin: 0 .2rem 0 0;
  vertical-align: middle;
}

#primary-menu li.icon-support a,
#primary-menu li.icon-search a {
  position: relative;
}

#primary-menu li.icon-support a:after,
#primary-menu li.icon-search a:after {
  content: "";
  display: block;
  position: absolute;
  right: calc(50% - 4.25rem);
  top: 50%;
  transform: translateY(-50%);
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 23.4 20" style="enable-background:new 0 0 23.4 20;" fill="%23000000"><path d="M3.1,8.4c.2-1.4.5-2.7,1.2-3.9C5.9,1.5,9.1-.2,12.4,0c3.3.3,6.3,2.4,7.5,6.1.2.7.4,1.5.5,2.2.5,0,1.1.3,1.6.6,1.2.8,1.6,2.3,1.2,3.7-.4,1.4-1.7,2.3-3.1,2.3-.2,0-.3,0-.5,0-.5,0-.9-.4-.9-.9,0-1.6,0-3.1,0-4.7,0-1.8-.5-3.5-1.6-5-1.6-2-3.7-2.9-6.3-2.6-2.6.3-4.4,1.9-5.4,4.3-.4,1.1-.6,2.2-.6,3.3,0,1.3,0,2.7,0,4,0,1.7.7,3.1,2.1,4.2.7.5,1.5.8,2.3.8.6,0,1.2,0,1.8,0,.4,0,.8.3.8.7,0,.4-.1.8-.5.9,0,0-.1,0-.2,0-1,0-2.1.1-3.1-.2-2.4-.6-4-2.2-4.6-4.6,0-.2-.1-.3-.3-.3-1.4,0-2.5-.9-2.9-2.3-.4-1.4,0-3,1.1-3.8.5-.4,1.2-.6,1.9-.6Z"/><path d="M8.4,10.7c.5,0,.9.4.9.9,0,.5-.4.9-.9.9-.5,0-.9-.4-.9-.9,0-.5.4-.9.9-.9Z"/><path d="M11.8,10.7c.5,0,.9.4.9.9,0,.5-.4.9-.9.9-.5,0-.9-.4-.9-.9,0-.5.4-.9.9-.9Z"/><path d="M16,11.6c0,.5-.4.9-.9.9-.5,0-.9-.4-.9-.9,0-.5.4-.9.9-.9.5,0,.9.4.9.9Z"/></svg>') center no-repeat;
  width: 1.2rem;
  height: 1.2rem;
}

#primary-menu li.icon-search a:after {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20.9 20" style="enable-background:new 0 0 20.9 20;" fill="%23000000"><path d="M20.4,17.3l-4.9-4.7c1.1-1.6,1.7-3.6,1.4-5.7C16.4,3.4,13.3.5,9.6,0,4-.6-.6,3.9,0,9.2c.5,3.6,3.5,6.5,7.3,7,2.2.3,4.3-.2,5.9-1.3l4.9,4.7c.6.6,1.7.6,2.3,0,.6-.6.6-1.6,0-2.2ZM3.2,8.1c0-2.8,2.3-5,5.2-5s5.2,2.2,5.2,5-2.3,5-5.2,5-5.2-2.2-5.2-5Z"/></svg>') center no-repeat;
}

#primary-menu li.exporters a {
  border-bottom: 0;
}

#primary-menu li.exporters img {
  border: 2px solid var(--white);
  border-radius: 50%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/* Hide/show nav*/
.btn-content {
  display: none;
  width: 100%;
  background: var(--primary);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  z-index: 2;
  top: 0;
}

.btn-content a {
  color: var(--base);
  text-decoration: none;
  line-height: 1.8;
  text-transform: uppercase;
}

.main-navigation .btn-toggle {
  position: absolute;
  top: 0;
  right: 0;
  border: 0;
  border-radius: 0;
  background: var(--primary);
  color: var(--white);
  font-size: 1em;
  line-height: 0;
  outline: none;
  cursor: pointer;
  padding: 2rem 1rem;
  margin: 0;
  z-index: 2;
}

.main-navigation .btn-toggle i.bar {
  position: relative;
  display: block;
  width: 2rem;
  height: 3px;
  background: var(--white);
  transition: all .2s ease-out;
}

.main-navigation .btn-toggle i.bar::before,
.main-navigation .btn-toggle i.bar::after {
  content: '';
  width: 2rem;
  height: 3px;
  background: var(--white);
  position: absolute;
  left: 0;
  transition: all .2s ease-out;
}

.main-navigation .btn-toggle i.bar::before {
  top: -10px;
}

.main-navigation .btn-toggle i.bar::after {
  bottom: -10px;
}

.main-navigation .btn-toggle.btn-toggle-expand i.bar {
  background: rgba(0, 0, 0, 0);
}

.main-navigation .btn-toggle.btn-toggle-expand i.bar::before {
  top: 0;
  transform: rotateZ(-135deg);
}

.main-navigation .btn-toggle.btn-toggle-expand i.bar::after {
  bottom: 0;
  transform: rotateZ(135deg);
}

.main-navigation li a {
  display: block;
  padding: .75rem;
  border-bottom: 1px solid rgba(0, 0, 0, .25);
  font-weight: 500;
  line-height: 1.25;
}

.main-navigation .sub-menu {
  display: none;
}

.main-navigation .sub-menu a {
  text-transform: none;
}

.main-navigation .menu-item-has-children {
  position: relative;
}

.main-navigation .menu-item-has-children:after {
  content: "";
  background: var(--white) url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" style="enable-background:new 0 0 28 28;" fill="%23000000"><path d="M19.6,6.4c0,.5-.2.9-.5,1.3l-6.3,6.3,6.3,6.3c.7.7.7,1.9,0,2.6-.7.7-1.9.7-2.6,0l-7.6-7.6c-.7-.7-.7-1.9,0-2.6l7.6-7.6c.7-.7,1.9-.7,2.6,0,.4.4.5.8.5,1.3Z"/></svg>') no-repeat center;
  background-size: 1rem;
  position: absolute;
  top: .5rem;
  right: .25rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  z-index: 111;
  cursor: pointer;
  transform: rotate(-90deg);
}

/*--------------------------------------------------------------
## col and Modules
--------------------------------------------------------------*/
/* quotations */
blockquote {
  display: block;
  margin: 0 0 1.5rem 0;
  padding: 0;
  font-style: normal;
  quotes: "\201C""\201D";
  line-height: 1.25;
}

blockquote p:before {
  content: open-quote;
  margin-right: .1rem
}

blockquote p:after {
  content: close-quote;
}

blockquote p {
  font-size: 1.15rem;
  margin: 0 0 .5rem 0;
}

blockquote p.has-small-font-size {
  font-size: 1rem;
}

blockquote cite {
  font-size: .875em;
  font-style: normal;
}

address {
  font-style: normal;
}

iframe,
object,
embed {
  max-width: 100%;
}

/* col */
.wp-block-columns,
.wp-block-gallery,
.wp-block-media-text {
  display: grid;
  gap: 1.75rem;
  grid-auto-flow: row;
}

.wp-block-media-text {
  gap: 0;
}

.wp-block-media-text__media img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.wp-block-media-text .wp-block-media-text__content {
  display: grid;
  align-content: start;
  padding: 1.75rem;
}

.is-not-stacked-on-mobile,
.wp-block-media-text.is-not-stacked-on-mobile {
  grid-auto-flow: column;
}

.slim-gutter {
  gap: .5rem;
}

.small-gutter {
  gap: 1rem;
}

.medium-gutter {
  gap: 3rem;
}

.large-gutter {
  gap: 4rem;
}

/* without gutter */
.no-gutter {
  gap: 0;
}

.no-gutter-bottom {
  row-gap: 0;
}

/* center text */
.has-text-align-center {
  text-align: center;
}

/* text right */
.has-text-align-right {
  text-align: right;
}

/* text left */
.text-left {
  text-align: left;
}

/* justify per row */
.align-right {
  justify-content: flex-end;
}

.align-center {
  justify-content: center;
}

/* vertical alignment (grid parent) */
.are-vertically-aligned-top {
  align-items: start;
}

.are-vertically-aligned-center {
  align-items: center;
}

.are-vertically-aligned-bottom {
  align-items: end;
}

.are-vertically-aligned-stretch {
  align-items: stretch;
}

/* vertical alignment (grid child) */
.is-vertically-aligned-top {
  align-self: start;
}

.is-vertically-aligned-center {
  align-self: center;
}

.is-vertically-aligned-bottom {
  align-self: end;
}

.is-vertically-aligned-stretch {
  align-self: stretch;
}

/* base classes for all media - mobile first */
/*even columns*/
.two-items {
  grid-template-columns: repeat(2, 1fr);
}

.three-items {
  grid-template-columns: repeat(3, 1fr);
}

.four-items {
  grid-template-columns: repeat(4, 1fr);
}

.five-items {
  grid-template-columns: repeat(5, 1fr);
}

.six-items {
  grid-template-columns: repeat(6, 1fr);
}

/*uneven columns as fractions*/
.one-of-three {
  grid-template-columns: 33.3fr 76.7fr;
}

.one-of-four {
  grid-template-columns: 25fr 75fr;
}

.one-of-five {
  grid-template-columns: 20fr 80fr;
}

.one-of-six {
  grid-template-columns: 16.6fr 83.4fr;
}

.two-of-five {
  grid-template-columns: 40fr 60fr;
}

/*reverse uneven columns as fractions*/
.two-of-three {
  grid-template-columns: 76.7fr 33.3fr;
}

.three-of-four {
  grid-template-columns: 75fr 25fr;
}

.four-of-five {
  grid-template-columns: 80fr 20fr;
}

.five-of-six {
  grid-template-columns: 83.4fr 16.6fr;
}

.three-of-five {
  grid-template-columns: 60fr 40fr;
}

/* Switch 2 column order */
.switcharoo:nth-of-type(1),
.reverse .wp-block-media-text__content:nth-of-type(1) {
  order: 2;
}

.switcharoo:nth-of-type(2),
.reverse .wp-block-media-text__media:nth-of-type(2) {
  order: 1;
}

/* slider */
.slider,
.casestudies,
.testimonials {
  display: block;
}

.testimonials .owl-stage-outer {
  padding: 1rem 0!important;
}

.testimonials .owl-stage {
  display: flex;
}

.slider .wp-block-heading {
  font-size: 2.25em;
  line-height: 1.25;
}

  .owl-nav [class*=owl-] {
    display: block;
    cursor: pointer;
    width: 2.25rem;
    height: 2.25rem;
    background-size: 2.25rem;
    background-repeat: no-repeat;
  }
  
  .owl-nav .owl-prev {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40" style="enable-background:new 0 0 40 40;"><circle fill="%23FFFFFF" cx="20" cy="20" r="20"/><path fill="%23373736" d="M28.8,22.2h-12.2l3.4,3.4c.9.9.9,2.2,0,3.1-.9.9-2.2.9-3.1,0l-7.1-7.1c-.5-.5-.6-1.2-.6-1.5s0-1,.6-1.5l7-7c.9-.9,2.2-.9,3.1,0,.9.9.9,2.2,0,3.1l-3.3,3.3h12.2c1.2,0,2.2,1,2.2,2.2s-1,2.2-2.2,2.2Z"/></svg>');
  }
  
  .owl-nav .owl-prev:hover {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40" style="enable-background:new 0 0 40 40;"><circle fill="%23FFFFFF" cx="20" cy="20" r="20"/><path fill="%23808080" d="M28.8,22.2h-12.2l3.4,3.4c.9.9.9,2.2,0,3.1-.9.9-2.2.9-3.1,0l-7.1-7.1c-.5-.5-.6-1.2-.6-1.5s0-1,.6-1.5l7-7c.9-.9,2.2-.9,3.1,0,.9.9.9,2.2,0,3.1l-3.3,3.3h12.2c1.2,0,2.2,1,2.2,2.2s-1,2.2-2.2,2.2Z"/></svg>');
  }
  
  .owl-nav .owl-next {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40" style="enable-background:new 0 0 40 40;"><circle fill="%23FFFFFF" cx="20" cy="20" r="20"/><path fill="%23373736" d="M11.2,17.8h12.2l-3.4-3.4c-.9-.9-.9-2.2,0-3.1.9-.9,2.2-.9,3.1,0l7.1,7.1c.5.5.6,1.2.6,1.5s0,1-.6,1.5l-7,7c-.9.9-2.2.9-3.1,0-.9-.9-.9-2.2,0-3.1l3.3-3.3h-12.2c-1.2,0-2.2-1-2.2-2.2s1-2.2,2.2-2.2Z"/></svg>');
  }
  
  .owl-nav .owl-next:hover {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40" style="enable-background:new 0 0 40 40;"><circle fill="%23FFFFFF" cx="20" cy="20" r="20"/><path fill="%23808080" d="M11.2,17.8h12.2l-3.4-3.4c-.9-.9-.9-2.2,0-3.1.9-.9,2.2-.9,3.1,0l7.1,7.1c.5.5.6,1.2.6,1.5s0,1-.6,1.5l-7,7c-.9.9-2.2.9-3.1,0-.9-.9-.9-2.2,0-3.1l3.3-3.3h-12.2c-1.2,0-2.2-1-2.2-2.2s1-2.2,2.2-2.2Z"/></svg>');
  }
  
  .owl-nav .owl-next {
    position: absolute;
    top: calc(50% - .5rem);
    left: 100%;
    transform: translate(-100%, -50%)
  }
  
  .owl-nav .owl-prev {
    position: absolute;
    top: calc(50% - .5rem);
    left: 0;
    transform: translate(0, -50%)
  }

  .casestudies>div.wp-block-group__inner-container:first-of-type,
  .testimonials>div.wp-block-group__inner-container:first-of-type {
    padding: 1rem 2rem 2rem 2rem;
  }

.state-partners>div.wp-block-group__inner-container:first-of-type {
    padding: 1rem 0 2rem 0;
}

.wp-block-cover {
  position: relative;
}

.wp-block-cover div.wp-block-cover__image-background {
  padding: 0;
  background-position: top left;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  z-index: -1;
  width: 100%;
  max-width: 100%;
  height: 100%;
}

.wp-block-cover.mv__cover-overflow {
  padding: 0;
  max-height: 40rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 500px;
  width: 100%;
}

.mv__cover-overflow video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.wp-block-cover.mv__cover-overflow video {
  width: 100vw;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mv__cover-overflow .wp-block-cover__inner-container {
  position: relative;
  z-index: 1;
}

.post-pagination {
  display: grid;
  grid-template-columns: 1fr 1fr;
  bottom: 0;
  width: 100%;
  padding: 2rem 0;
}

.post-pagination .next-post {
  text-align: right;
}

/* new block news */
.news-listing li {
  background: var(--white);
  display: block;
  border-radius: 0 0 1.75rem 1.75rem;
  box-shadow: 0 .25rem .75rem .25rem rgba(0, 0, 0, .1);
  position: relative
}

.news-listing li:hover {
  box-shadow: 0 .25rem .75rem .25rem rgb(79, 82, 178, .4);
}

.news-listing .wp-block-post-featured-image,
.search-result .wp-block-post-featured-image {
  position: relative;
  overflow: hidden;
}

.news-listing .wp-block-post-featured-image img,
.search-result .wp-block-post-featured-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  border-bottom: 1px solid var(--vl-grey);
  transition: transform .75s;
  width: 100%;
}

.news-listing a:hover .wp-block-post-featured-image img {
  transition: all .5s ease-out;
  transform: scale(1.15)
}

.news-listing li .taxonomy-category a,
.news-listing li .taxonomy-event_category a {
  display: block;
  height: auto;
  background: var(--white);
  padding: .25rem 1.5rem;
  position: absolute;
  top: .75rem;
  right: 0;
  font-size: .95em;
  color: var(--base);
  border: 1px solid var(--vl-grey);
  border-right: 0;
}

.news-listing li .taxonomy-category a:hover,
.news-listing li .taxonomy-event_category a:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
}

.news-listing li .wp-block-post-date {
  padding: .5rem 1.5rem;
  font-size: .9em;
  color: var(--base);
}

.news-listing li .wp-block-post-date.event {
  background: var(--primary);
  display: inline;
  font-weight: 700;
  position: relative;
  top: -.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.news-listing li a:hover .wp-block-post-date.event  {
  background: var(--secondary);
  color: var(--white)
}

.news-listing li .wp-block-post-title {
  margin: 0;
  padding: 0 1.5rem .75rem 1.5rem;
  font-size: 1.25em;
  line-height: 1.3;
  font-weight: 700;
}

.news-listing li .wp-block-post-excerpt p {
  font-size: .875em;
  margin: 0;
  padding: 0 1.5rem .75rem 1.5rem;
  color: var(--base);
}

.news-listing li a {
  text-decoration: none;
  color: var(--base);
  display: block;
  height: 100%;
}

.news-listing li a:hover {
  color: var(--secondary);
}

/* hide FAQ category */
.cat-item-88 {
	display: none;
}

/* blog pagination */
.wp-block-query-pagination {
  margin: 2.25rem 0 0 0;
  display: flex;
  gap: 0;
  justify-content: center;
  font-size: .875em;
}

.wp-block-query-pagination .wp-block-query-pagination-numbers {
  display: inline-flex;
  gap: 0;
}

.wp-block-query-pagination .page-numbers {
  display: inline-flex;
  padding: .2rem .4rem;
  background: transparent;
  color: var(--base);
  justify-content: center;
  text-decoration: none;
}
.wp-block-query-pagination .page-numbers:hover {
  background: var(--white);
}

.wp-block-query-pagination .page-numbers.current,
.wp-block-query-pagination .page-numbers.current:hover {
  background: var(--secondary);
  color: var(--white);
}

.wp-block-query-pagination .page-numbers.dots,
.wp-block-query-pagination .page-numbers.dots:hover {
  background: transparent;
  color: var(--base);
  padding: .25rem;
}

.wp-block-query-pagination .wp-block-query-pagination-previous,
.wp-block-query-pagination .wp-block-query-pagination-next,
.wp-block-query-pagination .prev,
.wp-block-query-pagination .next {
  padding: .2rem .4rem;
  font-weight: 500;
  color: var(--secondary);
  text-decoration: none;
}

.wp-block-query-pagination .wp-block-query-pagination-previous:hover,
.wp-block-query-pagination .wp-block-query-pagination-next:hover,
.wp-block-query-pagination .prev:hover,
.wp-block-query-pagination .next:hover{
  text-decoration: underline;
  background: transparent;
}

/* Search results */
.search-result {
  display: block;
  padding: 3em 0;
  border-bottom: 1px solid var(--grey);
}

.search-result:first-of-type {
  padding-top: 0;
}

/* Popup / Modal */
.overlay {
  position: fixed;
  /*! margin: auto; */
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.75);
  transform: translateY(-10%);
  visibility: hidden;
  opacity: 0;
  height: 0;
  z-index: 100;
}

.overlay .cancel {
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.overlay .cancel::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512" fill="%23FFFFFF"><path d="M342.6 150.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 210.7 86.6 105.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L146.7 256 41.4 361.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192 301.3 297.4 406.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L237.3 256 342.6 150.6z"/></svg>') center no-repeat;
  background-color: var(--d-grey);
  background-size: 1.15rem;
  position: absolute;
  top: -1px;
  right: 0;
  transition: all .2s ease-out;
}

.overlay:target {
  visibility: visible;
  transition: all 400ms;
  transform: translateY(0);
  opacity: 1;
  height: auto;
}

.overlay.wp-block-group.alignfull>div:first-of-type {
  position: static;
}

.site-header .popup {
  max-width: 400px;
  max-height: 550px;
  /* min-height: 200px; */
  width: calc(100% - 2rem);
  overflow: auto;
  padding: 1.5rem;
  border: none;
  border-radius: .25rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 8px 20px -4px rgba(0, 0, 0, .15);
}

.popup {
  max-width: 1000px;
  max-height: 500px;
  width: 90%;
  overflow: auto;
  padding: 2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*search*/
.wp-block-search__button-inside {
  display: block;
  margin: 0;
  padding: 0 2rem 0 0;
  line-height: 1;
  border: 1px solid var(--white);
  border-radius: .15rem;
  height: 2rem;
  position: relative;
}

.wp-block-search__button-inside input {
  margin: 0;
  padding: 0 .6rem;
  outline: 0;
  width: 100%;
  height: calc(2rem - 2px);
  font-size: .875em;
  line-height: 1;
  letter-spacing: .5px;
  border: 0;
  border-radius: 2px 0 0 2px;
  background: var(--white);
}

.wp-block-search__button-inside input::-moz-placeholder {
  color: var(--base);
  opacity: 1;
}

.wp-block-search__button-inside input::placeholder {
  color: var(--base);
  opacity: 1;
}

.wp-block-search__button-inside input::-ms-input-placeholder {
  color: var(--grey);
}

.wp-block-search__button-inside button {
  display: inline-block;
  margin: 0;
  padding: 0;
  border-radius: 0 2px 2px 0;
  line-height: 0;
  outline: 0;
  vertical-align: middle;
  width: 2rem;
  height: calc(2rem - 2px);
  background: var(--secondary);
  position: absolute;
  top: 0;
  right: 0;
}

.wp-block-search__button-inside button:hover {
  background: var(--base);
}

.wp-block-search__button-inside button svg.search-icon {
  fill: var(--white);
}

.wp-block-search__button-inside:hover button svg.search-icon {
  fill: var(--white);
}


.wp-block-search__button-inside button .search-icon {
  display: inline;
  line-height: 1;
  vertical-align: middle;
  width: 1.5rem;
  height: auto;
  fill: var(--grey);
  transform: rotate(-90deg);
}

/* buttons */
.wp-block-button .wp-block-button__link {
  display: block;
  padding: .625rem 1.625rem;
  font: 600 1em/1.25 'Montserrat', Arial, sans-serif;
  letter-spacing: .5px;
  white-space: normal;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: .25rem 1.75rem;
  transition: all .3s ease;
}

.wp-block-button .has-primary-background-color {
  color: var(--base);
}

.wp-block-button .wp-block-button__link:hover,
.wp-block-button .has-secondary-background-color:hover {
  background: var(--primary);
  color: var(--base);
}

.wp-block-button .has-primary-background-color:hover {
  background: var(--secondary);
  color: var(--white);
}

.has-primary-background-color .wp-block-button .has-secondary-background-color:hover {
  background: var(--white);
}

.wp-block-button .has-base-color.has-white-background-color:hover {
  background: var(--d-grey);
  color: var(--primary);
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
  background: transparent;
  color: var(--secondary);
}

.wp-block-button .wp-block-button__link:focus {
  color: var(--white);
}

.wp-block-button .wp-block-button__link:hover:focus {
  color: var(--base);
}

.wp-block-button .wp-block-button__link.has-primary-background-color:focus,
.wp-block-button .wp-block-button__link.has-white-background-color:focus{
  color: var(--base);
}

.wp-block-button .wp-block-button__link.has-f-grey-background-color:focus {
  color: var(--secondary);
}

.wp-block-button .wp-block-button__link.has-primary-background-color:hover:focus {
  color: var(--white);
}

.wp-block-button .wp-block-button__link.has-f-grey-background-color:hover:focus {
  color: var(--base);
}

.wp-block-button .wp-block-button__link.has-white-background-color:hover:focus {
  color: var(--primary);
}

.wp-block-buttons.is-content-justification-center {
  justify-content: center;
}
        
.wp-block-buttons.is-content-justification-right {
  justify-content: flex-end;
}

.wp-block-buttons {
  display: flex;
  justify-content: flex-start;
  gap: 1em;
}

.wp-block-buttons.mobile-column {
  flex-direction: column;
  align-items: center;
  margin: 0 0 1rem 0;
}

/*table styling*/
.wp-block-table {
  max-width: calc(100vw - 2rem);
  margin: 0 0 2rem 0;
  padding: 1rem 0;
  word-break: keep-all;
  overflow-x: scroll;
}

.wp-block-table table {
  border-collapse: collapse;
  display: table;
  /*width: fit-content;*/
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  width: 100%;
}

.wp-block-table table td,
.wp-block-table table th {
  border: 1px solid var(--d-grey);
  padding: 1.5rem 1.75rem;
}

.wp-block-table table thead {
  color: var(--secondary);
  background: transparent;
}

.wp-block-table table th, .wp-block-table table thead td {
  text-align: left;
  border-top: none;
  font-weight: 700;
}

.wp-block-table table td {
  /*white-space: nowrap;*/
  border-bottom: none;
  font-size: 0.9em;
  font-weight: 400;
  line-height: 1.3;
}

.wp-block-table table td:first-of-type,
.wp-block-table table th:first-of-type {
  border-left: none;
}

.wp-block-table table td:last-of-type,
.wp-block-table table th:last-of-type {
  border-right: none;
}

.is-style-stripes table {
  font-size: .9em
}

.is-style-stripes table th, .is-style-stripes table thead td, .is-style-stripes table thead td:first-child {
  font-size: 1.2em
}

.is-style-stripes table td:first-child {
  font-size: 1em;
}

.is-style-stripes table td,
.is-style-stripes table th {
  padding: .5rem;
}

.is-style-stripes table tr:nth-child(even) {
  background: var(--l-grey);
}

/* footer */
.site-footer {
  background: var(--d-grey);
  color: var(--white);
}

.site-footer a:hover {
  color: var(--primary);
}

.site-info {
  background: transparent;
}

.site-info .wp-block-button {
  width: 100%;
}

.site-info .wp-block-button .wp-block-button__link {
  padding: .75rem 1rem .75rem 3.5rem;
  font-size: 1.125em;
  font-weight: 400;
  text-align: left;
  letter-spacing: .5px;
  position: relative;
}

.site-info .wp-block-button .wp-block-button__link:hover {
  color: var(--white);
  background: var(--base);
}

.site-info .wp-block-button .wp-block-button__link:before {
  content: "";
  display: block;
  position: absolute;
  left: .75rem;
  top: 50%;
  transform: translateY(-50%);
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36" style="enable-background:new 0 0 36 36;"><path fill="%23000000" d="M36,18c0,10.1-8.3,18-18.1,18C7.9,35.9,0,27.7,0,17.9,0,7.9,8.3-.2,18.1,0c10.1.2,18.1,8.3,17.9,18ZM18,33.3c8.5,0,15.3-6.8,15.3-15.3,0-8.5-6.8-15.3-15.4-15.3-8.3,0-15.2,6.9-15.2,15.2,0,8.6,6.8,15.4,15.3,15.4Z"/><path fill="%23FFFFFF" d="M18,33.3c-8.5,0-15.3-6.9-15.3-15.4,0-8.3,6.9-15.2,15.2-15.2,8.6,0,15.4,6.8,15.4,15.3,0,8.5-6.9,15.3-15.3,15.3ZM22.3,16.5c0,0,0,.1,0,.2h-.8c-3.1,0-6.1,0-9.2,0-.7,0-1.3,0-2,0-.7,0-1.3.6-1.3,1.3,0,.7.5,1.2,1.3,1.3.2,0,.4,0,.6,0,3.5,0,7,0,10.5,0h1c-.3.3-.5.5-.6.7-1.4,1.4-2.8,2.8-4.2,4.2-.6.6-.6,1.4-.1,2,.5.5,1.3.5,2,0,2.4-2.4,4.7-4.7,7.1-7.1.6-.6.6-1.3,0-1.9-.2-.3-.5-.5-.7-.8-2.1-2.1-4.2-4.2-6.3-6.3-.6-.6-1.4-.7-2-.1-.6.5-.5,1.4,0,2,.3.3.6.6.9.9,1.2,1.2,2.5,2.5,3.7,3.7Z"/><path fill="%23000000" d="M22.3,16.5c-1.2-1.2-2.5-2.5-3.7-3.7-.3-.3-.6-.6-.9-.9-.6-.7-.6-1.5,0-2,.5-.5,1.3-.5,2,.1,2.1,2.1,4.2,4.2,6.3,6.3.2.2.5.5.7.8.6.6.6,1.4,0,1.9-2.4,2.4-4.7,4.7-7.1,7.1-.6.6-1.4.6-2,0-.5-.5-.5-1.3.1-2,1.4-1.4,2.8-2.8,4.2-4.2.2-.2.3-.3.6-.7h-1c-3.5,0-7,0-10.5,0-.2,0-.4,0-.6,0-.7,0-1.3-.6-1.3-1.3,0-.7.5-1.3,1.3-1.3.7,0,1.3,0,2,0,3.1,0,6.1,0,9.2,0h.8c0,0,0-.1,0-.2Z"/></svg>') center no-repeat;
  width: 2.1rem;
  height: 2.1rem;
}

.site-info .wp-block-button .wp-block-button__link:hover:before {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36" style="enable-background:new 0 0 36 36;" fill="%23FFFFFF"><path d="M18.1,0C8.3-.2,0,7.9,0,17.9c0,9.8,7.9,18,17.9,18.1,9.8,0,18.1-7.9,18.1-18C36.2,8.3,28.1.2,18.1,0ZM18,33.3c-8.5,0-15.3-6.9-15.3-15.4,0-8.3,6.9-15.2,15.2-15.2,8.6,0,15.4,6.8,15.4,15.3,0,8.5-6.9,15.3-15.3,15.3Z"/><path d="M25.8,16.3c-2.1-2.1-4.2-4.2-6.3-6.3-.6-.6-1.4-.7-1.9-.1-.6.5-.5,1.3,0,2,.3.3.6.6.9.9,1.2,1.2,2.5,2.5,3.7,3.7,0,0,0,.1,0,.2h-.7c-3.1,0-6.1,0-9.2,0-.7,0-1.3,0-2,0-.7,0-1.3.6-1.3,1.3,0,.7.5,1.2,1.3,1.3.2,0,.4,0,.6,0,3.5,0,7,0,10.5,0h1c-.3.3-.5.5-.6.7-1.4,1.4-2.8,2.8-4.2,4.2-.6.6-.6,1.4-.1,1.9.5.5,1.3.5,1.9,0,2.4-2.3,4.7-4.7,7.1-7.1.6-.6.6-1.3,0-1.9-.2-.3-.5-.5-.7-.7Z"/></svg>') center no-repeat;
}

.site-info p,
.site-info li {
  font-size: .875em;
  font-weight: 300;
  letter-spacing: .5px;
  margin: 0 0 .375rem 0;
}

.site-info li a {
   line-height: 2; /*touch point accessibilty requirement at mobile view */
 
}

.site-info p {
  margin: 0 0 1rem 0;
  line-height: 1.6;
}

.site-info p.has-medium-font-size {
  font-size: 1.15em;
  line-height: 1.4;
}

.copyright {
  display: block;
  padding: .75rem 0;
  padding: 1.5rem 0 .75rem 0;
  width: 100%;
  color: var(---white);
}

.copyright ul,
.copyright p {
  margin: 0;
  padding: 0;
}

.copyright ul li,
.copyright p {
  font-size: .875em;
  font-weight: 300;
  margin: 0 0 .375rem 0;
}

.copyright a,
.copyright li a {
  color: var(--white);
  line-height: 2;
}

.footer-below-spacer {
  margin: 0 0 .575rem 0;
}

/* Main content */
.module-contact {
  display: block;
  padding: 2rem 3rem;
  border-radius: 1rem;
}

.module-service {
  display: block;
  padding: 2rem;
  height: 100%;
}

.module-service .wp-block-image,
.module-service .wp-block-heading {
  margin: 0 0 1rem 0;
}

.module-service p {
  margin: 0;
}

.module-box {
  border-radius: 0 0 1.75rem 1.75rem;
  box-shadow: 0 .25rem .75rem .25rem rgba(0, 0, 0, .1);
  width: 100%;
  height: 100%;
}

.module-box .module-box-content {
  padding: 1.25rem 1.5rem;
}

.module-box.video-only {
  border-radius: 0;
  height: 0
}

.module-box .wp-block-button__link {
  margin: 0 0 1rem 0;
  padding: .25rem .75rem;
}

.module-box p {
  margin: 0 0 1rem 0; 
  line-height: 1.4;
}

.module-box p:last-child {
  margin: 0;
}

.module-box.has-base-background-color p a {
  color: var(--primary);
  text-decoration: none;
}

.module-box.has-base-background-color p a:hover {
  text-decoration: underline;
}

.module-box .wp-block-image img {
  margin: 0;
  width: initial;
}

.module-box .wp-block-image.wistia-thumbnail {
  position: relative;
  transition: opacity .5s 0.5s;
}

.module-box .wp-block-image.wistia-thumbnail img {
  padding: 0;
}

.module-box .wp-block-image.wistia-thumbnail.hide-img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
}

.module-box .wp-block-image.wistia-thumbnail:before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, transparent 40%, rgba(0,0,0,.5));
  display: block;
  position: absolute;
  top: 0;
}

.module-box .wp-block-image.wistia-thumbnail:after,
.testimonial-link .module-box .module-box-content p:before {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35 40" style="enable-background:new 0 0 35 40;" fill="%23FFFFFF"><polygon points="0 0 0 40 35 18.9 0 0"/></svg>');
  width: 2rem;
  height: 2rem;
  display: block;
  position: absolute;
  top: 1.25rem;
  left: 1.5rem;
}


.testimonial-link .module-box .module-box-content p:before {
  left: 0;
  top: calc(50% - .25rem);
  transform: translateY(-50%);
}

.testimonial-link {
  text-decoration: none;
}

.testimonial-link .module-box,
.height-auto {
  height: auto;
}

.testimonial-link .module-box-content p {
  padding: 0 2rem 0 3.25rem;
}

.module p.count-digit .has-inline-color {
  display: block;
  font-size: 3.5em;
  font-weight: 700;
  line-height: .75;
  margin-top: 1rem;
}

.module p.count-digit {
  font-size: 1.1em;
  font-weight: 700;
  line-height: 1.5;
}

.module p.count-digit br {
  line-height: 0
}

.service {
  text-decoration: none;
}

.service .wp-block-cover {
  padding: 1rem 0 10rem 0;
  transition: all .5s ease;
}

.service .wp-block-cover .wp-block-cover__image-background,
.service .wp-block-cover .has-background-dim {
  padding: 0;
  border-radius: 1.25rem 1.25rem 0 0;
}

.service .wp-block-heading {
  font-size: 1.4em;
  line-height: 1.15;
  letter-spacing: .5px;
}

.service:hover .wp-block-heading {
  color: var(--primary)
}

/* profiles */
.profile {
	display: block;
	margin: 0 0 2rem 0;
	text-align: center;
}

.profile,
.profile:hover {
	text-decoration: none;
	color: var(--base);
}

.profile figure.aligncenter img {
	margin-bottom: .5rem;
}

.profile .wp-element-caption strong {
	font-size: 1.25em;
	font-weight: 700;
}

.profile:hover .wp-element-caption strong {
	color: var(--secondary);
}

/* team page */
.profile-hover {
	width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
	aspect-ratio: 5/6;
}
.profile-hover img {
	position: absolute;
	top: 0;
	left: 0;
	transition: all .5s ease;
	border: .3rem solid transparent;
	transform: scale(.95);
	filter: grayscale(100%);
	-o-object-fit: contain;
	   object-fit: contain;
	width: 100%;
}
.profile-hover:hover img {
	border-color: var(--primary);
	transform: scale(1);
	filter: none;
}
.profile-hover div:first-of-type {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
}
.profile-hover figcaption {
  position: absolute;
	left: 0;
	top: calc(100% - 4rem);
	top: 77.5%;
  width: 100%;
  z-index: 10;
}

/* news */
.single .wp-block-post-featured-image {
	margin: 0 0 2rem 0;
}

.single .wp-block-post-date {
	margin: 0 0 2rem 0;
	font-style: italic;
}

.single .taxonomy-category {
	font-style: italic;
}

.single h2 {
	font-size: 1.75em;
}

.single h3 {
	font-size: 1.5em;
}

.grow.strapline img {
  max-height: 3.1rem;
}

/* partners */
.partners .wp-block-buttons {
  margin-bottom: 3rem;
}

.partners-map {
	margin: auto;
	/*! max-height: 440px; */ 
}

.partners-map a {
	text-decoration: none;
}

.partners-map .state-program {
	fill: var(--primary);
	stroke: var(--base);
	stroke-width: 1px;
}

.partners-map a:hover .state-program {
	fill: var(--secondary);
}

.partners-map .state-noprogram {
	fill: var(--grey);
	stroke: var(--base);
	stroke-width: 1px;
}

.partners-map text {
	fill: var(--base);
	font-size: 14px;
	font-weight: 600;
	cursor: default;
}

.partners-map a text {
	cursor: pointer;
}

.partners-map a:hover text {
	fill: var(--white);
}

/* strategic partnerships & awards */
.strategic-partnerships {
  margin: 3rem auto;
  max-width: 1120px;
}
.strategic-partnerships img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  max-height: 5rem;
}

.strategic-partnerships figcaption {
  margin: .75rem 0 0 0;
  font-size: .85em;
  line-height: 1.35;
  text-align: center;
}

/*accordions*/
.accordion .wp-block-heading {
  display: block;
  position: relative;
  margin: .25rem 0 0 0;
  padding: .6rem 1rem .6rem 3.75rem;
  font-size: 1.2em;
  line-height: 1.35;
  cursor: pointer;
}

.accordion .wp-block-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2.825rem;
  height: 2.825rem;
  display: block;
  background: var(--d-grey);
}

.accordion .wp-block-heading:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2.825rem;
  height: 2.825rem;
  color: #FFF;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" style="enable-background:new 0 0 28 28;" fill="%23FFFFFF"><path d="M19.6,6.4c0,.5-.2.9-.5,1.3l-6.3,6.3,6.3,6.3c.7.7.7,1.9,0,2.6-.7.7-1.9.7-2.6,0l-7.6-7.6c-.7-.7-.7-1.9,0-2.6l7.6-7.6c.7-.7,1.9-.7,2.6,0,.4.4.5.8.5,1.3Z"/></svg>') no-repeat center;
  background-size: 1.5rem;
  transition: transform .5s;
  transform: rotate(270deg);
}

.accordion .wp-block-heading.open  {
  background: var(--d-grey);
  color: var(--primary);
}

.accordion .wp-block-heading.open::after {
  transform: rotate(90deg);
}

.accordion .wp-block-group {
  padding: 1rem;
}

/* TABS */
.accordion-tabs {
  overflow: hidden;
  margin-top: 1.5rem;
}

.accordion-tabs nav.tabs {
  display: none;
}

.accordion-tabs nav.tabs ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .4rem 0;
}

.accordion-tabs nav.tabs ul li {
  position: relative;
}

.accordion-tabs nav.tabs ul li a {
  display: block;
  padding: 1.5rem;
  color: var(--base);
  background: #F9D58D;
  border-radius: .25rem 0 0 .25rem;
  line-height: 1.25;
  text-decoration: none;
  height: 100%;
}

.accordion-tabs nav.tabs ul li a:hover,
.accordion-tabs nav.tabs ul li.active a {
  background: var(--primary);
}

.accordion-tabs nav.tabs ul li.active a:after {
  content: "";
  width: 0; 
  height: 0; 
  border-top: .65rem solid transparent;
  border-bottom: .65rem solid transparent;
  border-left: .65rem solid var(--primary);
  position: absolute;
  right: -.65rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

/* tabs - services */
.accordion-tabs nav.tabs.rounded ul {
  gap: 1.2rem 1.6rem;
}

.accordion-tabs nav.tabs.rounded ul li a {
  display: block;
  padding: .75rem 1.25rem;
  color: var(--base);
  background: var(--primary);
  border-radius: 1rem;
  font-size: .875em;
  font-weight: 500;
  text-align: center;
}

.accordion-tabs nav.tabs.rounded ul li a:before {
  content: "";
  display: block;
  margin: auto auto .35rem auto;
  width: 4rem;
  height: 2rem;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" style="enable-background:new 0 0 32 32;" fill="%23FFFFFF"><path d="M26,13c0,2.9-.9,5.5-2.5,7.7l7.9,7.9c.8.8.8,2,0,2.8-.8.8-2.1.8-2.8,0l-7.9-7.9c-2.2,1.6-4.8,2.5-7.7,2.5C5.8,26,0,20.2,0,13S5.8,0,13,0s13,5.8,13,13ZM13,22c5,0,9-4,9-9S18,4,13,4,4,8,4,13s4,9,9,9Z"/></svg>') no-repeat center;
  text-align: center;
}

.accordion-tabs nav.tabs.rounded ul li.website a:before {
  background: url('/wp-content/uploads/icon-website.svg') no-repeat center;
}

.accordion-tabs nav.tabs.rounded ul li.software a:before {
  background: url('/wp-content/uploads/icon-software.svg') no-repeat center;
}

.accordion-tabs nav.tabs.rounded ul li.payment a:before {
  background: url('/wp-content/uploads/icon-payment.svg') no-repeat center;
}

.accordion-tabs nav.tabs.rounded ul li.localization a:before {
  background: url('/wp-content/uploads/icon-localization.svg') no-repeat center;
}

.accordion-tabs nav.tabs.rounded ul li.inventory a:before {
  background: url('/wp-content/uploads/icon-inventory.svg') no-repeat center;
}

.accordion-tabs nav.tabs.rounded ul li.b2b a:before {
  background: url('/wp-content/uploads/icon-b2b.svg') no-repeat center;
}

.accordion-tabs nav.tabs.rounded ul li.ppc a:before {
  background: url('/wp-content/uploads/icon-ppc.svg') no-repeat center;
}

.accordion-tabs nav.tabs.rounded ul li.smm a:before {
  background: url('/wp-content/uploads/icon-smm.svg') no-repeat center;
}

.accordion-tabs nav.tabs.rounded ul li.ecommerce a:before {
  background: url('/wp-content/uploads/icon-ecommerce.svg') no-repeat center;
}

.accordion-tabs nav.tabs.rounded ul li.affiliate a:before {
  background: url('/wp-content/uploads/icon-affiliate.svg') no-repeat center;
}

.accordion-tabs nav.tabs.rounded ul li.cro a:before {
  background: url('/wp-content/uploads/icon-cro.svg') no-repeat center;
}

.accordion-tabs nav.tabs.rounded ul li.linkedin a:before {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35 35" style="enable-background:new 0 0 35 35;" fill="%23FFFFFF"><path d="M30.7,0C33.1,0,35,1.9,35,4.3v26.4c0,2.4-1.9,4.3-4.3,4.3H4.3c-2.4,0-4.3-1.9-4.3-4.3V4.3C0,1.9,1.9,0,4.3,0h26.4ZM11,28.9v-15.4h-5.1v15.4h5.1ZM29.5,28.9v-8.8c0-4.7-2.5-6.9-5.9-6.9s-3.9,1.5-4.6,2.5v-2.2h-5.1c0,1.4,0,15.4,0,15.4h5.1v-8.6c0-.5,0-.9.2-1.3.4-.9,1.2-1.9,2.6-1.9s2.6,1.4,2.6,3.5v8.3h5.1ZM8.4,6.1c-1.8,0-2.9,1.2-2.9,2.7s1.1,2.7,2.8,2.7h0c1.8,0,2.9-1.2,2.9-2.7,0-1.5-1.1-2.7-2.9-2.7h0Z"/></svg>') no-repeat center;
}

.accordion-tabs nav.tabs.rounded ul li.abm a:before {
  background: url('/wp-content/uploads/icon-abm.svg') no-repeat center;
}

.accordion-tabs nav.tabs.rounded ul li.email a:before {
  background: url('/wp-content/uploads/icon-email.svg') no-repeat center;
}

.accordion-tabs nav.tabs.rounded ul li.video a:before {
  background: url('/wp-content/uploads/icon-video.svg') no-repeat center;
}

.accordion-tabs nav.tabs.rounded ul li.content a:before {
  background: url('/wp-content/uploads/icon-content.svg') no-repeat center;
}

.accordion-tabs nav.tabs.rounded ul li.reporting a:before {
  background: url('/wp-content/uploads/icon-reporting.svg') no-repeat center;
}

.accordion-tabs nav.tabs.rounded ul li.discovery a:before {
  background: url('/wp-content/uploads/icon-discovery.svg') no-repeat center;
}

.accordion-tabs nav.tabs.rounded ul li.journey a:before {
  background: url('/wp-content/uploads/icon-journey.svg') no-repeat center;
}

.accordion-tabs nav.tabs.rounded ul li.sitemap a:before {
  background: url('/wp-content/uploads/icon-sitemap.svg') no-repeat center;
}

.accordion-tabs nav.tabs.rounded ul li.ux a:before {
  background: url('/wp-content/uploads/icon-ux.svg') no-repeat center;
}

.accordion-tabs nav.tabs.rounded ul li.security a:before {
  background: url('/wp-content/uploads/icon-security.svg') no-repeat center;
}

.accordion-tabs nav.tabs.rounded ul li.export a:before {
  background: url('/wp-content/uploads/icon-export.svg') no-repeat center;
}

.accordion-tabs nav.tabs.rounded ul li.sales a:before {
  background: url('/wp-content/uploads/icon-sales.svg') no-repeat center;
}

.accordion-tabs nav.tabs.rounded ul li.brand a:before {
  background: url('/wp-content/uploads/icon-brand.svg') no-repeat center;
}

.accordion-tabs nav.tabs.rounded ul li.business a:before {
  background: url('/wp-content/uploads/icon-business.svg') no-repeat center;
}

.accordion-tabs nav.tabs.rounded ul li.account a:before {
  background: url('/wp-content/uploads/icon-account.svg') no-repeat center;
}

.accordion-tabs nav.tabs.rounded ul li.cloud a:before {
  background: url('/wp-content/uploads/icon-cloud.svg') no-repeat center;
}

.accordion-tabs nav.tabs.rounded ul li.cms a:before {
  background: url('/wp-content/uploads/icon-cms.svg') no-repeat center;
}

.accordion-tabs nav.tabs.rounded ul li.geolocation a:before {
  background: url('/wp-content/uploads/icon-geolocation.svg') no-repeat center;
}

.accordion-tabs nav.tabs.rounded ul li.helpdesk a:before {
  background: url('/wp-content/uploads/icon-helpdesk.svg') no-repeat center;
}

.accordion-tabs nav.tabs.rounded ul li.hosting a:before {
  background: url('/wp-content/uploads/icon-hosting.svg') no-repeat center;
}

.accordion-tabs nav.tabs.rounded ul li.leaving a:before {
  background: url('/wp-content/uploads/icon-leaving.svg') no-repeat center;
}

.accordion-tabs nav.tabs.rounded ul li a:after {
  content: "";
  position: absolute;
  right: -.54rem;
  top: calc(50% - .8rem);
  display: block;
  margin: auto;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 1rem;
  background: var(--white) url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" style="enable-background:new 0 0 28 28;" fill="%23000000"><path d="M19.6,6.4c0,.5-.2.9-.5,1.3l-6.3,6.3,6.3,6.3c.7.7.7,1.9,0,2.6-.7.7-1.9.7-2.6,0l-7.6-7.6c-.7-.7-.7-1.9,0-2.6l7.6-7.6c.7-.7,1.9-.7,2.6,0,.4.4.5.8.5,1.3Z"/></svg>') no-repeat;
  transition: transform .5s;
  border: 0;
}

.accordion-tabs nav.tabs.rounded ul li a:hover,
.accordion-tabs nav.tabs.rounded ul li.active a {
  background: var(--d-grey);
  color: var(--primary);
}

.accordion-tabs nav.tabs.rounded ul li.active a:after {
  transform: rotate(180deg);
}

/* tab content */
.accordion-tabs .tab-content {
  position: relative;
  border-top: .25rem solid #FFF;
}

.accordion-tabs .tab-content::after {
  content: "";
  position: absolute;
  top: 0;
  width: 2.6rem;
  height: 2.6rem;
  color: #FFF;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" style="enable-background:new 0 0 28 28;" fill="%23FFFFFF"><path d="M19.6,6.4c0,.5-.2.9-.5,1.3l-6.3,6.3,6.3,6.3c.7.7.7,1.9,0,2.6-.7.7-1.9.7-2.6,0l-7.6-7.6c-.7-.7-.7-1.9,0-2.6l7.6-7.6c.7-.7,1.9-.7,2.6,0,.4.4.5.8.5,1.3Z"/></svg>') no-repeat center;
  background-size: 1.5rem;
  transition: transform .5s;
  transform: rotate(270deg);
}

.accordion-tabs .tab-content::before {
  display: block;
  padding: .5em 1em;
  background: var(--primary);
  background: linear-gradient(to right, var(--d-grey), var(--d-grey) 2.6rem, var(--primary) 0%, var(--primary));
  cursor: pointer;
  content: attr(data-title);
  padding-left: 3.75rem;
  font-weight: 700;
  line-height: 1.6;
}

.accordion-tabs .tab-content.active::before {
  background: var(--d-grey);
  color: var(--primary);
}

.accordion-tabs .tab-content.active::after {
  transform: rotate(90deg);
}

.accordion-tabs .tab-content div {
  opacity: 0;
  visibility: hidden;
  height: 0;
}

.accordion-tabs .tab-content.active div {
  opacity: 1;
  visibility: visible;
  height: auto;
  transition: opacity 0.3s ease-in-out;
}

.accordion-tabs .tab-content.active div.wp-block-group__inner-container {
  padding: 1.5rem 1rem;
}

/* complianz consent banner */
#cmplz-manage-consent .cmplz-manage-consent {
  height: auto !important;
  padding: .35rem .75rem !important;
  font-size: .9em;
  right: 5.15rem !important;
}

/* 404 page */
.error-404 {
  min-height: 12rem;
}

/* tablet (medium) screens */
@media (min-width: 768px) {
  html {
    font-size: 16px;
    word-break: keep-all;
  }

  .wp-block-group>div:first-of-type,
  .wp-block-cover .wp-block-cover__inner-container,
  .wp-block-group.narrow>div:first-of-type,
  .wp-block-group.alignwide>div:first-of-type,
  .wp-block-cover>div:first-of-type,
  .wp-block-cover .wp-block-cover__inner-container,
  .wp-block-cover.alignwide .wp-block-cover__inner-container,
  .wp-block-cover.narrow .wp-block-cover__inner-container {
    padding: 3rem 2rem;
  }

  /*even columns*/
  .t-one-item {
    grid-auto-flow: row;
  }

  .t-two-items,
  .wp-block-media-text {
    grid-template-columns: repeat(2, 1fr);
  }

  .t-three-items {
    grid-template-columns: repeat(3, 1fr);
  }

  .t-four-items {
    grid-template-columns: repeat(4, 1fr);
  }

  .t-five-items {
    grid-template-columns: repeat(5, 1fr);
  }

  .t-six-items {
    grid-template-columns: repeat(6, 1fr);
  }

  /*uneven columns as fractions*/
  .t-one-of-two {
    grid-template-columns: 50fr 50fr;
  }

  .t-one-of-three {
    grid-template-columns: 33.3fr 76.7fr;
  }

  .t-one-of-four {
    grid-template-columns: 25fr 75fr;
  }

  .t-one-of-five {
    grid-template-columns: 20fr 80fr;
  }

  .t-one-of-six {
    grid-template-columns: 16.6fr 83.4fr;
  }

  .t-two-of-five {
    grid-template-columns: 40fr 60fr;
  }

  /*reverse uneven columns as fractions*/
  .t-two-of-three {
    grid-template-columns: 76.7fr 33.3fr;
  }

  .t-three-of-four {
    grid-template-columns: 75fr 25fr;
  }

  .t-four-of-five {
    grid-template-columns: 80fr 20fr;
  }

  .t-five-of-six {
    grid-template-columns: 83.4fr 16.6fr;
  }

  .t-three-of-five {
    grid-template-columns: 60fr 40fr;
  }

  .t-align-right {
    justify-content: flex-end;
  }

  .t-align-left {
    justify-content: flex-start;
  }

  .t-align-center {
    justify-content: center;
  }

  .t-has-text-align-center {
    text-align: center;
  }

  .t-has-text-align-right {
    text-align: right;
  }

  .t-has-text-align-left {
    text-align: left;
  }

  .heading-only.wp-block-heading,
  .heading-only.wp-block-post-title {
    margin-bottom: 3rem;
  }

  .main-navigation li a {
    line-height: 1.6;
  }

  .site-branding {
    padding: .9rem 2rem;
  }

  .site-branding img {
    width: auto;
  }

  .main-navigation .btn-toggle {
    padding: 2.95rem 2rem;
  }

  .main-navigation .btn-toggle i.bar,
  .main-navigation .btn-toggle i.bar::before,
  .main-navigation .btn-toggle i.bar::after {
    width: 2.25rem;
  }

  .main-navigation .btn-toggle i.bar::before {
    top: -12px;
  }

  .main-navigation .btn-toggle i.bar::after {
    bottom: -12px;
  }
  
  .copyright ul {
    display: flex;
    flex-direction: row;
    gap: 0 .75rem;
  }
  
  .menu-footer-bottom-container {
    display: inline-block;
  }
  
  .menu-footer-bottom-container li:before {
    content: "|";
    padding: 0 .75rem 0 0;
  }
  
  .menu-footer-bottom-container li:first-of-type:before {
    display: none;
  }

  .slider .wp-block-heading {
    font-size: 3.75em;
    line-height: 1.1;
  }

  .slider .owl-dots,
  .slider .owl-nav {
    text-align: center;
    -webkit-tap-highlight-color: transparent
  }

  .slider .owl-dots {
    position: absolute;
    bottom: 1em;
    left: 50%;
    transform: translate(-50%, 0)
  }

  .slider .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1
  }

  .slider .owl-nav {
    top: 0
  }

  .slider .owl-dots .owl-dot span {
    display: block;
    width: 1rem;
    height: 1rem;
    margin: 0 .2rem;
    background: var(--white);
    border: 1px solid var(--d-grey);
    border-radius: 100%;
    -webkit-backface-visibility: visible;
    background-size: 16px 19px;
    transition: opacity .2s ease;
  }

  .slider .owl-dots .owl-dot.active span,
  .slider .owl-dots .owl-dot:hover span {
    background: var(--d-grey);
    border-radius: 100%;
  }

  .list-two-cols,
  .list-three-cols {
    -moz-columns: 2;
    columns: 2;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
  }

  .list-two-cols li,
  .list-three-cols li {
    page-break-inside: avoid;
    -moz-column-break-inside: avoid;
    break-inside: avoid;
  }
  
  .menu-footer-bottom-container li:first-of-type:before {
    content: "|";
    padding: 0 .75rem 0 0;
  }
  
  .wp-block-buttons.mobile-column {
    flex-direction: row;
  }
  
  /* blog pagination */
  .wp-block-query-pagination {
    /*! gap: .5rem; */
  }
  
  .wp-block-query-pagination .page-numbers {
    max-width: 2rem;
  }
  
  .wp-block-query-pagination .page-numbers,
  .wp-block-query-pagination .wp-block-query-pagination-previous,
  .wp-block-query-pagination .wp-block-query-pagination-next,
  .wp-block-query-pagination .prev,
  .wp-block-query-pagination .next {
    padding: .25rem .75rem;
    max-width: initial;
  }
  
  /* tabs */
  .accordion-tabs nav.tabs {
    display: block;
  }
  .accordion-tabs nav.tabs li {
    display: inline-block;
  }
  .accordion-tabs nav.tabs li a {
    display: block;
  }
  
  /* tabs content */
  .accordion-tabs .tab-content {
    min-height: 0;
    border: 0;
  }
  .accordion-tabs .tab-content::before {
    display: none;
  }
  .accordion-tabs .tab-content.active div.wp-block-group__inner-container {
    padding: 0;
  }
  
  .accordion-tabs .tab-content-border {
    border: 1px solid var(--primary);
    padding: 1.25rem 1.75rem;
  }

  /* 404 page */
  .error-404 {
    min-height: 20rem;
  }
  
}

/* desktop */
@media (min-width: 1200px) {
  html {
    font-size: 17px;
    scroll-padding-top: 6.5rem;
  }

  h1 {
    font-size: 3.25em;
  }

  h2 {
    font-size: 2.75em;
    line-height: 1.2;
  }

  .wp-block-group>div:first-of-type,
  .wp-block-cover .wp-block-cover__inner-container,
  .wp-block-group.narrow>div:first-of-type,
  .wp-block-group.alignwide>div:first-of-type,
  .wp-block-cover>div:first-of-type,
  .wp-block-cover .wp-block-cover__inner-container,
  .wp-block-cover.alignwide .wp-block-cover__inner-container,
  .wp-block-cover.narrow .wp-block-cover__inner-container {
    padding: 5rem 2.5rem;
  }

  .site-header .wp-block-group.alignwide>div:first-of-type {
    padding: 0 2.5rem;
  }

  /*even columns*/
  .d-two-items {
    grid-template-columns: repeat(2, 1fr);
  }

  .d-three-items {
    grid-template-columns: repeat(3, 1fr);
  }

  .d-four-items {
    grid-template-columns: repeat(4, 1fr);
  }

  .d-five-items {
    grid-template-columns: repeat(5, 1fr);
  }

  .d-six-items {
    grid-template-columns: repeat(6, 1fr);
  }

  /*uneven columns as fractions*/
  .d-one-of-two {
    grid-template-columns: 50fr 50fr;
  }

  .d-one-of-three {
    grid-template-columns: 33.3fr 76.7fr;
  }

  .d-one-of-four {
    grid-template-columns: 25fr 75fr;
  }

  .d-one-of-five {
    grid-template-columns: 20fr 80fr;
  }

  .d-one-of-six {
    grid-template-columns: 16.6fr 83.4fr;
  }

  .d-two-of-five {
    grid-template-columns: 40fr 60fr;
  }

  /*reverse uneven columns as fractions*/
  .d-two-of-three {
    grid-template-columns: 76.7fr 33.3fr;
  }

  .d-three-of-four {
    grid-template-columns: 75fr 25fr;
  }

  .d-four-of-five {
    grid-template-columns: 80fr 20fr;
  }

  .d-five-of-six {
    grid-template-columns: 83.4fr 16.6fr;
  }

  .d-three-of-five {
    grid-template-columns: 60fr 40fr;
  }

  /* Switch 2 column order */
  .switcharoo:nth-of-type(1),
  .reverse .wp-block-media-text__media:nth-of-type(2) {
    order: 1;
  }

  .switcharoo:nth-of-type(2),
  .reverse .wp-block-media-text__media:nth-of-type(1) {
    order: 2;
  }

  .d-align-right {
    justify-content: flex-end;
  }

  .d-align-left {
    justify-content: flex-start;
  }

  .d-align-center {
    justify-content: center;
  }

  .d-has-text-align-center {
    text-align: center;
  }

  .d-has-text-align-right {
    text-align: right;
  }

  .d-has-text-align-left {
    text-align: left;
  }

  .line-separated-gutter {
    border-left: 1px solid var(--d-grey);
    margin: 0 0 4.5rem 0;
  }
  
  .line-separated-gutter .wp-block-column {
    padding: 0 4rem;
    border-right: 1px solid var(--d-grey);
  }

  .top-nav {
    display: block;
    width: 100%;
    margin: 0;
    font-size: .85em;
  }
  
  .site-header {
    position: sticky;
  }

  .site-header .one-item>.wp-block-column {
    flex: 1;
  }

  .site-branding {
    padding: .9rem 0;
    justify-content: flex-start;
  }

  .site-branding img {
    width: auto;
  }

  .btn-toggle,
  .btn-toggle2 {
    display: none;
  }

  .btn-content {
    display: inline !important;
  }

  .main-navigation {
    position: relative;
    z-index: 2;
  }

  .main-navigation .btn-content {
    background: transparent;
    padding: 0;
  }

  #primary-menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    align-content: center;
    margin: 0;
    width: 100%;
    position: relative;
  }

  #primary-menu li {
    margin: 0;
    flex: 1 1 100%;
    flex: 0 1 auto;
    position: relative;
  }

  #primary-menu li a {
    display: block;
    margin: 0;
    padding: 1.25rem .55rem;
    white-space: nowrap;
    transition: all .5s ease;
    color: var(--base);
    font-size: .875em;
    border-bottom: 0;
    text-transform: none;
  }

  #primary-menu li.btn-nav a {
    margin: 0 0 0 1.25rem;
    padding: .625rem 1.625rem;
    background: var(--secondary);
    border-radius: .25rem 1.75rem;
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
    line-height: 1.25;
    letter-spacing: .5px;
  }

  #primary-menu li.btn-nav a:hover {
    background: var(--primary);
    color: var(--base);
  }

  #primary-menu li a:hover {
    color: var(--secondary);
  }

  #primary-menu .current-menu-parent a,
  #primary-menu .current_page_item a {
    color: var(--secondary);
  }

  /* sub menu drop-down */
  #primary-menu .menu-item-has-children:after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 7 7" style="enable-background:new 0 0 7 7;" fill="%23F4AB1C"><path d="M7,0l-3.5,7L0,0h7Z"/></svg>');
    background-size: 7px 7px;
    width: 7px;
    height: 7px;
    top: 50%;
    right: initial;
    left: calc(100% - 1.15rem);
    transform: translateY(-50%);
    border-radius: 0;
  }

  #primary-menu .menu-item-has-children a {
    padding-right: 1.5rem;
  }

  #primary-menu .sub-menu {
    position: absolute;
    display: none;
    margin: 0 0 0 .55rem;
    margin: 0;
    min-width: 9.35rem;
  }

  #primary-menu li:hover .sub-menu,
  #primary-menu li:focus-within .sub-menu {
    display: block;
  }

  #primary-menu li .sub-menu li a,
  #primary-menu li .sub-menu li:last-of-type a {
    margin: 0;
    padding: .5rem .7rem;
    background: var(--primary);
    display: block;
    color: var(--base);
    border-top: 1px solid var(--white);
    border-radius: 0;
    text-align: left;
    white-space: normal;
    line-height: 1.4;
  }
  
  #primary-menu li .sub-menu li:first-of-type a {
    border-top: 0;
  }

  #primary-menu li .sub-menu li.current-menu-item a,
  #primary-menu li .sub-menu li a:hover,
  #primary-menu li .sub-menu li:last-of-type a:hover {
    background: var(--white);
    color: var(--secondary);
  }
  
  #primary-menu li.exporters a,
  #primary-menu li.icon-support a,
  #primary-menu li.icon-search a {
    padding: 0;
    font-size: .75em;
  }
  
  #primary-menu li.icon-support a,
  #primary-menu li.icon-search a {
    padding-right: 1.75rem;
  }
  
  #primary-menu li.icon-support a:after {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 23.4 20" style="enable-background:new 0 0 23.4 20;" fill="%23F4AB1C"><path d="M3.1,8.4c.2-1.4.5-2.7,1.2-3.9C5.9,1.5,9.1-.2,12.4,0c3.3.3,6.3,2.4,7.5,6.1.2.7.4,1.5.5,2.2.5,0,1.1.3,1.6.6,1.2.8,1.6,2.3,1.2,3.7-.4,1.4-1.7,2.3-3.1,2.3-.2,0-.3,0-.5,0-.5,0-.9-.4-.9-.9,0-1.6,0-3.1,0-4.7,0-1.8-.5-3.5-1.6-5-1.6-2-3.7-2.9-6.3-2.6-2.6.3-4.4,1.9-5.4,4.3-.4,1.1-.6,2.2-.6,3.3,0,1.3,0,2.7,0,4,0,1.7.7,3.1,2.1,4.2.7.5,1.5.8,2.3.8.6,0,1.2,0,1.8,0,.4,0,.8.3.8.7,0,.4-.1.8-.5.9,0,0-.1,0-.2,0-1,0-2.1.1-3.1-.2-2.4-.6-4-2.2-4.6-4.6,0-.2-.1-.3-.3-.3-1.4,0-2.5-.9-2.9-2.3-.4-1.4,0-3,1.1-3.8.5-.4,1.2-.6,1.9-.6Z"/><path d="M8.4,10.7c.5,0,.9.4.9.9,0,.5-.4.9-.9.9-.5,0-.9-.4-.9-.9,0-.5.4-.9.9-.9Z"/><path d="M11.8,10.7c.5,0,.9.4.9.9,0,.5-.4.9-.9.9-.5,0-.9-.4-.9-.9,0-.5.4-.9.9-.9Z"/><path d="M16,11.6c0,.5-.4.9-.9.9-.5,0-.9-.4-.9-.9,0-.5.4-.9.9-.9.5,0,.9.4.9.9Z"/></svg>') center no-repeat;
    right: 0;
  }
  
  #primary-menu li.icon-search a:after {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20.9 20" style="enable-background:new 0 0 20.9 20;" fill="%23F4AB1C"><path d="M20.4,17.3l-4.9-4.7c1.1-1.6,1.7-3.6,1.4-5.7C16.4,3.4,13.3.5,9.6,0,4-.6-.6,3.9,0,9.2c.5,3.6,3.5,6.5,7.3,7,2.2.3,4.3-.2,5.9-1.3l4.9,4.7c.6.6,1.7.6,2.3,0,.6-.6.6-1.6,0-2.2ZM3.2,8.1c0-2.8,2.3-5,5.2-5s5.2,2.2,5.2,5-2.3,5-5.2,5-5.2-2.2-5.2-5Z"/></svg>') center no-repeat;
    right: 0;
  }
  
  #primary-menu li.exporters img {
    border: none;
  }

  #primary-menu li.menu-languages {
    position: absolute;
    top: -3.5rem;
    right: 0;
    font-size: .775em;
    z-index: 10;
  }

  #primary-menu li.menu-languages a {
    padding: .3rem .3rem .3rem 3.7rem;
    color: var(--white);
    line-height: 1.6;
    text-align: right;
    text-transform: none;
  }

  #primary-menu li.menu-languages.menu-item-has-children:after {
    position: static;
  }

  #primary-menu li.menu-languages .sub-menu {
    margin: 0;
    min-width: initial;
    width: 100%;
  }

  #primary-menu li.menu-languages .sub-menu li a {
    padding: .25rem .4rem;
    color: var(--base);
    background: var(--white);
    font-size: .875em;
    border-color: var(--grey);
  }

  #primary-menu li.menu-languages .sub-menu li a:hover {
    background: var(--l-grey);
    color: var(--base);
  }
  
  #primary-menu li.exporters {
    position: absolute;
    top: -1rem;
    right: 0;
    display: none;
  }
  
  #primary-menu li.icon-support,
  #primary-menu li.icon-search {
    position: absolute;
    top: -1.25rem;
    right: 0;
  }
  
  #primary-menu li.icon-support {
    right: 5.75rem;
  }
  
  .site-footer {
    background: var(--d-grey) url('/wp-content/uploads/logo-ibtonline-emblem-footer.svg') no-repeat left bottom;
    /*! background-size: 20.5rem; */
  }
  
  .copyright ul li,
  .copyright p {
    font-size: .8em;
    font-weight: 300;
  }
  
  .copyright p {
    display: inline-flex;
    margin: 0 .5rem 0 0;
  }
  
  .menu-footer-bottom-container li:first-of-type:before {
    display: inline;
  }
  
  .social-together.alignfull>div:first-of-type {
    margin: 0;
    text-align: right;
  }
  
  .menu-social-media-container ul {
    gap: 2rem;
    justify-content: flex-end;
  }

  .wp-block-table {
    overflow-x: hidden;
  }

  .text-block-right {
    padding: 0 0 0 5rem;
  }

  .text-block-left {
    padding: 0 5rem 0 0;
  }
  
  .home .hero.wp-block-cover {
    min-height: 72.5vh;
  }

  .hero.wp-block-cover img {
    -o-object-fit: contain!important;
       object-fit: contain!important;
    width: 100%;
    height: 28rem;
  }
  
  .wp-block-cover.has-parallax .wp-block-cover__inner-container {
    background-attachment: fixed;
  }
  
  .grow {
    /*! height: calc(27.5vh - 5.825rem); */
  }
  
  .grow.wp-block-group>div:first-of-type {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
  
  .grow .wp-block-heading {
    font-size: 1.975em;
    line-height: 1.15;
  }
  
  .grow p {
    margin: 0 0 .75rem 0;
  }
  
  .grow p.has-d-grey-color {
    font-size: 1.3em;
    margin: 0;
  }

  .list-two-cols,
  .list-three-cols {
    -moz-column-gap: 4rem;
    column-gap: 4rem;
  }
  
  .list-three-cols {
    -moz-columns: 3;
    columns: 3;
  }
  
  .wp-block-media-text {
    grid-template-columns: 40fr 60fr;
  }
  
  .wp-block-media-text .wp-block-media-text__content {
    padding: 6rem 2.5rem;
    margin-left: auto;
    margin-right: 1rem;
    max-width: 34.25rem;
  }
  
  .services {
    min-height: 20rem;
  }
  
  .service.marketing .wp-block-cover {
    padding: 1rem 0 9rem 0
  }
  
  .service.marketing:hover .wp-block-cover {
    padding: 1rem 0 11em 0;
  }
  
  .service.ecommerce .wp-block-cover {
    padding: 1rem 0 11rem 0
  }
  
  .service.ecommerce:hover .wp-block-cover {
    padding: 1rem 0 12.6em 0;
  }
  
  .service.design .wp-block-cover {
    padding: 1rem 0 12.6rem 0
  }
  
  .service.design:hover .wp-block-cover {
    padding: 1rem 0 13.7rem 0;
  }
  
  .service.local .wp-block-cover {
    padding: 1rem 0 12.6rem 0;
  }
  
  .service.local:hover .wp-block-cover {
    padding: 1rem 0 14.25rem 0;
  }
  
  .service.ai-marketing .wp-block-cover {
    padding: 1rem 0 10.6em 0;
  }
  
  .service.ai-marketing:hover .wp-block-cover {
    padding: 1rem 0 12.6em 0;
  }
  
  .partners {
    padding: 3rem 0;
    border-bottom: 1px solid var(--base);
  }
  
  .partners:first-of-type {
    padding-top: 0;
  }
  
  .partners:last-of-type {
    padding-bottom: 0;
    border: 0;
  }
  
  .partners .wp-block-heading {
    margin-bottom: 1rem;
  }
  
  .partners p + .wp-block-buttons {
    margin-top: 0;
  }

  .partners .wp-block-buttons {
    margin-bottom: 0;
  }
  
  .accordion-tabs .tab-content::after {
    display: none;
  }
  
  .team {
    position: relative;
    margin: 0 0 2.5rem 0;
  }
  
  .team:last-of-type {
    margin: 0;
  }
  
  .team:after {
    content: "";
    width: 100vw;
    height: 52%;
    background: var(--d-grey);
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -25%);
  }

  /* 404 page */
  .error-404 {
    min-height: 30rem;
  }

}

@media (min-width: 1440px) {
  #primary-menu {
    justify-content: center;
  }

  #primary-menu li.icon-search {
    right: 10.6rem;
  }
  
  #primary-menu li.icon-support {
    right: 17.85rem;

  }
  
  #primary-menu li.exporters {
    display: block;
  }
}

.no-padding.wp-block-group>div:first-of-type {
  padding: 0;
}

.no-padding-top.wp-block-group>div:first-of-type {
  padding-top: 0;
}

.no-padding-bottom.wp-block-group>div:first-of-type {
  padding-bottom: 0;
}

.no-margin {
  margin: 0!important;
}

.no-margin-bottom {
  margin-bottom: 0!important;
}

.narrow-max-width,
.narrower-max-width {
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
}

.narrower-max-width {
  max-width: 800px;
}