:root {
  --primary: #fd8205;
  --secondary: #0e4c84;
  --grey: #9b9b9b;
  --base: #000;
  --white: #FFF;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
html {
  font: 400 16px/1.5 'Montserrat',Helvetica,Arial,Lucida,sans-serif;
  color: var(--base);
  -webkit-text-size-adjust: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

body {
  margin: 0 auto;
  background: var(--white);
}

/* Narrow Width of blocks */
.narrow>div:first-of-type {
  max-width: 980px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

/* Width of "wide" blocks */
.alignwide>div:first-of-type {
  max-width: calc(1200px + 5rem);
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

/* Width of "full-wide" blocks */
.alignfull>div:first-of-type {
  max-width: 1366px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.site-header .alignfull>div:first-of-type {
  padding: 0;
}

h1, h2, h3, h4 {
  font-weight: 700;
  margin: 0 0 1rem 0;
  padding: 0;
}

h1 {
  font-size: 2.5em;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

h2 {
  font-size: 2em;
  margin: 0 0 2rem 0;
  line-height: 1.15;
  font-weight: 800;
  color: var(--primary);
}

h2.h2--black {
  color: var(--base);
  display: flex;
  flex-direction: column;
  align-items: center;
}

h2.h2--black:after {
  content: "";
  height: 2px;
  width: 5rem;
  display: block;
  background: var(--primary);
  margin: 2rem 0 1rem;
}

h3 {
  font-size: 1.5em;
  line-height: 1.25;
  margin: 0 0 1rem 0;
  color: var(--grey);
  text-transform: uppercase;
}

h4 {
  font-size: 1em;
  line-height: 1.5;
  margin: 0 0 0.4rem 0;
}

.subtitle {
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 auto 1rem;
  font-size: 1.2rem;
  font-weight: 500;
}

p {
  font-size: 1em;
  line-height: 2;
  margin: 0 0 2rem 0;
  padding: 0;
}

p.has-small-font-size {
  font-size: .85em;
}

p.has-medium-font-size {
  font-size: 1.15em;
  font-weight: 600;
}

p.has-large-font-size {
  font-size: 1.4em;
}

b, strong {
  font-weight: 700;
}

hr {
  background-color: var(--grey);
  border: 0;
  height: 1px;
  margin: 0;
}

img {
  max-width: 100%;
  width: initial;
  height: auto;
  display: block;
  margin: 0 auto;
}

.img-margin img {
  margin: 2rem 0 3rem 0;
}

svg {
  display: block;
}

figure {
  margin: 0;
}

figcaption {
  font-size: .875rem;
  color: var(--grey);
  margin: 0.25rem 0 0 0;
}

ul.list, ol.list {
  list-style-type: square;
  font-size: 1em;
  margin: 0 0 2rem 2rem;
  padding: 0;
  line-height: 1.6;
}

ol.list {
  list-style-type: decimal;
}

ul {
  list-style-type: none;
  font-size: 1em;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  color: var(--primary);
}

a:hover, a:focus, a:active {
  cursor: pointer;
  text-decoration: none;
  color: var(--primary);
}

a:focus {
  outline: thin dotted;
}

a:hover, a:active {
  outline: 0;
}

/* 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(--b-grey);
  border-radius: 3px;
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  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: bold;
  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;
}

/*--------------------------------------------------------------
# Video (YouTube)
--------------------------------------------------------------*/
.wp-block-embed__wrapper {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}

.wp-block-embed__wrapper iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button, input, optgroup, select, textarea {
  font-family: inherit;
  /* cross-browser fix */
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button, input[type="button"], input[type="reset"], input[type="submit"] {
  border: 0;
  display: block;
  margin: 0 auto;
  padding: 1.6rem 2rem;
  background: var(--primary);
  border-radius: 0;
  text-transform: uppercase;
  line-height: 0;
  white-space: nowrap;
  color: var(--white);
  cursor: pointer;
}

button:hover, input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover {
  background: var(--base);
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  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"], textarea, select {
  color: var(--d-grey);
  border: 1px solid var(--primary);
  border-radius: 10px;
  margin: 0 0 1.5em 0;
  padding: .75rem 1rem;
  width: 100%;
}

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


/*--------------------------------------------------------------
## Fade animations
--------------------------------------------------------------*/

.animate {
  opacity: 0;
}

.fade {
  opacity: 1;
  transition: opacity 0.5s ease;
  transition-delay: 0.5s;
}

.on-scroll--bottom {
  opacity: 0;
  transform: translateY(20px);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  will-change: transform;
}

.fade--bottom {
  animation: fade-bottom .7s ease forwards;
}

@keyframes fade-bottom {
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.on-scroll--top {
  opacity: 0;
  transform: translateY(-20px);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  will-change: transform;
}

.fade--top {
  animation: fade-top .7s ease forwards;
}


@keyframes fade-top {
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.on-scroll--left {
  opacity: 0;
  transform: translateX(-20px);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  will-change: transform;
}

.fade--left {
  animation: fade-left .7s ease forwards;
}

@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 {
  animation: fade-right .7s ease forwards;
}

@keyframes fade-right {
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.delay-200 {
  animation-delay: 0.2s !important;
}

.delay-400 {
  animation-delay: 0.4s !important;
}

.delay-600 {
  animation-delay: 0.6s !important;
}

.delay-800 {
  animation-delay: 0.8s !important;
}

.delay-1000 {
  animation-delay: 1s !important;
}

.delay-1200 {
  animation-delay: 1.2s !important;
}

.delay-1600 {
  animation-delay: 1.6s !important;
}



/*--------------------------------------------------------------
## Site logo
--------------------------------------------------------------*/
.site-header {
  background: var(--white);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2;
  border-bottom: 1px solid #eaeaea;
  height: 67px;
}

.site-header .alignfull {
  padding: 0;
}

.site-branding {
  margin: .8rem 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*! justify-content: center; */
}

.site-branding img {
  width: 5rem;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
}

.site-branding a:hover img {
  opacity: .75;
}

.top-nav {
  display: none;
}

/* Social Media */
.menu-social-media-container ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.menu-social-media-container ul li {
  margin: .65rem 1rem .65rem 0;
}

.menu-social-media-container ul li:last-of-type {
  margin-right: 0;
}

.menu-social-media-container img {
  width: .9rem;
  max-height: 1rem;
}

/* Language selector */
.menu-languages-container {
  position: relative;
  top: 0;
  cursor: pointer;
}

.menu-languages-container ul {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 3;
}

.menu-languages-container ul .sub-menu {
  position: relative;
}

.menu-languages-container ul li a {
  display: block;
  padding: .5rem 1rem;
  color: var(--white);
  background: url(/wp-content/uploads/icon-submenu.svg) no-repeat right center;
  background-size: 8px;
  font-size: .9em;
  line-height: 1.55;
  text-align: right;
}

.menu-languages-container ul .sub-menu li a {
  text-align: left;
}

.menu-languages-container a img {
  display: inline;
  vertical-align: middle;
  margin-right: .45rem;
  position: relative;
  bottom: 1px;
}

.menu-languages-container ul.sub-menu {
  display: none;
  border: 1px solid var(--d-grey);
}

.menu-languages-container:hover ul.sub-menu {
  display: block;
}

.menu-languages-container ul.sub-menu li a {
  display: block;
  padding: .5rem 1rem;
  -webkit-box-shadow: 0px 4px 12px -3px rgb(0 0 0 / 20%);
  box-shadow: 0px 4px 12px -3px rgb(0 0 0 / 20%);
  background-color: var(--white);
  border-bottom: 1px solid var(--d-grey);
  text-decoration: none;
  color: var(--base);
}

.menu-languages-container ul.sub-menu li:last-child a {
  border: 0;
}

.menu-languages-container ul.sub-menu a:hover {
  color: var(--primary);
  background: var(--b-grey);
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/* Hide/show nav*/
.btn-content {
  display: none;
  width: 100%;
  background: var(--primary);
  padding: 2rem 1.5rem;
  text-align: center;
  -webkit-box-shadow: 0 8px 14px -4px rgba(0, 0, 0, 0.5);
  box-shadow: 0 8px 14px -4px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
  top: 0;
  border-top: 1px solid rgba(225, 225, 225, .6);
}

.btn-content a {
  color: var(--white);
  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);
  -webkit-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  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;
  -webkit-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  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;
  -webkit-transform: rotateZ(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotateZ(-135deg);
}

.main-navigation .btn-toggle.btn-toggle-expand i.bar::after {
  bottom: 0;
  -webkit-transform: rotateZ(135deg);
  -ms-transform: rotate(135deg);
  transform: rotateZ(135deg);
}

.main-navigation li a {
  display: block;
  padding: .75rem;
  border-bottom: 1px solid rgba(225, 225, 225, .5);
  line-height: 1.25;
}

.main-navigation li:last-child a {
  border: 0;
}

/*--------------------------------------------------------------
## col and Modules
--------------------------------------------------------------*/
/* quotations */
blockquote {
  display: block;
  margin: 0 0 .75rem 0;
  padding: 0;
  font-style: normal;
  quotes: "\201C""\201D";
}

blockquote p:before {
  content: open-quote;
  margin-right: .1rem
}

blockquote p:after {
  content: close-quote;
}

blockquote p {
  color: var(--white);
  font-size: 1.15rem;
}

.quotee {
  font-size: 1em;
  font-style: normal;
  font-weight: 700;
}

address {
  font-style: normal;
}

iframe, object, embed {
  max-width: 100%;
}

/* col */
div.wp-block-columns, ul.wp-block-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row;
  flex-flow: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -1.5rem;
  /*gutter*/
  gap: 0;
  align-items: initial;
}

.wp-block-columns .wp-block-column {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.wp-block-column {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

/* without gutter */
.wp-block-columns.no-gutter {
  margin-left: 0;
  /*no-gutter*/
}

.wp-block-columns.no-gutter .wp-block-column {
  padding-left: 0;
  margin-bottom: 0;
}

.wp-block-columns.no-gutter-bottom .wp-block-column {
  margin-bottom: 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 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.align-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* vertical alignment */
div.is-vertically-aligned-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

div.is-vertically-aligned-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

div.is-vertically-aligned-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

div.is-vertically-aligned-baseline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

/* horizontal alignment */
.h-align-height .module, .h-align-height .module-box {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  height: 100%;
}

/* base classes for all media - mobile first */
.one-item>.wp-block-column, .one-of-one>.wp-block-column:first-of-type {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}

.two-items>.wp-block-column, .one-of-two>.wp-block-column:first-of-type {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
}

.three-items>.wp-block-column, .one-of-three>.wp-block-column:first-of-type {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.3333%;
  flex: 0 0 33.3333%;
  /* IE11 < */
  -ms-flex: 0 0 calc(100% / 3);
  flex: 0 0 calc(100% / 3);
}

.four-items>.wp-block-column, .one-of-four>.wp-block-column:first-of-type {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
}

.five-items>.wp-block-column, .one-of-five>.wp-block-column:first-of-type {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
}

.six-items>.wp-block-column, .one-of-six>.wp-block-column:first-of-type {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.66666666666667%;
  flex: 0 0 16.66666666666667%;
  /* IE11 < */
  -ms-flex: 0 0 calc(100% / 6);
  flex: 0 0 calc(100% / 6);
}

.two-of-three>.wp-block-column:first-of-type {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 66.6666%;
  flex: 0 0 66.6666%;
  /* IE11 < */
  -ms-flex: 0 0 calc(100% / 3 * 2);
  flex: 0 0 calc(100% / 3 * 2);
}

.three-of-four>.wp-block-column:first-of-type {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
}

.three-of-five>.wp-block-column:first-of-type {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 60%;
  flex: 0 0 60%;
}

.five-of-six>.wp-block-column:first-of-type {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 83.3333%;
  flex: 0 0 83.3333%;
  /* IE11 < */
  -ms-flex: 0 0 calc(100% / 6 * 5);
  flex: 0 0 calc(100% / 6 * 5);
}

/* Switch 2 column order */
.switcharoo:nth-of-type(1) {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.switcharoo:nth-of-type(2) {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

/* slider */
.hero .message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*justify-content: center;*/
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: var(--b-grey);
  position: relative;
  padding: 4rem;
  z-index: 1;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.slider {
  display: block;
}

.hero .message p {
  font-size: 1.4em;
  line-height: 1.6;
  margin: 0 0 2rem 0;
  color: var(--primary);
}

.hero.main-img .message h1 {
  margin: 0;
}

.hero img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.text-block-right, .text-block-left {
  padding: 2rem 0 0 0;
}

.grey {
  background: var(--b-grey);
}

.white {
  background: var(--white);
}

.bg-orange {
  background: var(--primary);
}

.bg-orange * {
  color: var(--white);
}

.bg-wave {
  background: url('/wp-content/uploads/Website_Banner_01-wave.png');
  background-size: inherit;
  background-position: center;
}

.bg-wave > .wp-block-group__inner-container {
  padding: 3rem 1.5rem 5rem!important;
}

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

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

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

.mb--0 {
  margin-bottom: 0!important;
}

.mt--0 {
  margin-top: 0!important;
}

.p--0 .wp-block-group__inner-container {
  padding-bottom: 0!important;
  padding-top: 0!important;
}

.pb--0 .wp-block-group__inner-container {
  padding-bottom: 0!important;
}

.pt--0 .wp-block-group__inner-container {
  padding-top: 0!important;
}

.wp-block-cover {
  padding: 4rem 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.wp-block-cover .module-box {
  display: block;
  width: calc(100vw - 4rem);
  padding: 2rem;
  background: var(--white);
  background: rgba(255, 255, 255, .85);
  border-radius: 3px;
  position: relative;
  z-index: 2;
}

.heading-only {
  margin: 0 0 3rem 0;
}

.blog .latest-news h2 {
  font-size: 1.15em
}

.blog .latest-news h2.main-archive-title { font-size: 2rem; }

.blog .latest-news p {
  font-size: .85em;
}

/* Support & Resources */
.border-top {
  border-top: 1px solid var(--d-grey);
}

.latest-news .outer-link {
  display: block;
  border: 1px solid var(--d-grey);
  border-radius: 4px;
  color: var(--base);
  position: relative;
}

.latest-news .outer-img {
  position: relative;
  overflow: hidden;
}

.latest-news .outer-link img {
  border-radius: 4px 4px 0 0;
  -webkit-transition: -webkit-transform .75s;
  transition: -webkit-transform .75s;
  -o-transition: transform .75s;
  transition: transform .75s;
  transition: transform .75s, -webkit-transform .75s;
  width: 100%;
}

.latest-news .outer-link:hover img {
  -webkit-transition: all .5s ease-out;
  -o-transition: all .5s ease-out;
  transition: all .5s ease-out;
  -webkit-transform: scale(1.15);
  -ms-transform: scale(1.15);
  transform: scale(1.15)
}

.latest-news .inner-content {
  padding: 0;
  height: 100%;
}

.latest-news .category {
  display: block;
  background: var(--primary);
  padding: .5rem 1.75rem;
  border-radius: 0 4px;
  position: absolute;
  top: 0;
  right: 0;
  font-size: .75em;
  text-transform: uppercase;
  color: var(--white);
}

.latest-news .read {
  display: block;
  margin: 1.75rem 0 0 0;
  font-size: .9em;
  color: var(--primary);
  text-transform: uppercase;
}

.latest-news .outer-link:hover .read {
  color: var(--primary);
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
}

/* buttons */
.wp-block-button a {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--white);
  border-radius: 0;
  font-weight: 700;
  color: var(--primary);
  /* white-space: nowrap; */
  text-align: center;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.wp-block-button a:hover {
  background: var(--primary);
  color: var(--white);
}

.button--outline {
  border: 2px solid var(--primary);
}

.wp-block-buttons.is-content-justification-center {
  text-align: center;
}

.wp-block-buttons .wp-block-button {
  display: inline-block;
  margin-right: 2rem;
}

.wp-block-buttons .wp-block-button:last-of-type {
  margin: 0;
}

.cta {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 98;
}

.cta .wp-block-button__link {
  border: 2px solid var(--primary);
  padding: .5rem 1rem;
  font-size: 1.15em;
}

/*table styling*/
.wp-block-table {
  max-width: calc(100vw - 2rem);
  padding: 1rem 0;
}

.wp-block-table table {
  border-collapse: collapse;
  overflow-x: auto;
  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(--primary);
  background: transparent;
}

.wp-block-table table th {
  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: 100;
  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 {
  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(--b-grey);
}

#main-content {padding-top: 21px;}

/* footer */
.site-footer {
  background: var(--secondary);
  color: var(--white);
}

.site-footer a, .site-footer li a {
  color: var(--white);
}

.site-footer .wp-block-columns {
  align-items: center;
}

.site-footer .wp-block-column {
  margin: 0;
}

.site-footer .wp-block-column:first-of-type {
  margin: 0 auto 1.5rem;
}

.site-footer .wp-block-column .wp-block-image img {
  height: 5rem;
}

.menu-footer-menu-container ul,
.footer-sns {
  display: flex;
  justify-content: center;
}

.menu-footer-menu-container ul li:not(:last-of-type):after {
  content: "|";
  margin: 0 .5rem;
}

.menu-footer-menu-container ul li {
  font-size: .9rem;
}

.menu-footer-menu-container ul li:hover a { text-decoration: underline; }

.footer-sns {
  margin: 1rem 0 0;
}

.footer-sns li {
  margin: 0 .5rem 0 0;
}

.footer-sns li svg path { fill: var(--white); }

.footer-sns li:hover svg {
  opacity: 0.5;
}

.copyright {
  display: block;
  padding: .25rem 0 .45rem 0;
  width: 100%;
  background: var(--base);
  color: var(--white);
}

.copyright .wp-block-group__inner-container {
  padding: 0!important;
}

.site-footer .copyright .wp-block-column:first-of-type {
  margin: 0!important;
}

.copyright ul,
.copyright p {
  margin: 0;
  padding: 0;
}

.copyright ul li,
.copyright p {
  display: inline-block;
  font-size: .65em;
  line-height: 1.4;
}

.copyright ul li:first-child:after {
  content: "|";
  padding: 0 .2rem 0 0.5rem;
}

.copyright a,
.copyright li a {
  color: var(--white);
}
/* Main content */
.module {
  margin: 0 0 3.5rem 0;
}

.module a h2 {
  display: block;
  font-size: 1.85em;
  line-height: 1.25;
  color: var(--primary);
}

/* Cookie popup */
.cookie-banner {
  position: fixed;
  display: none;
  width: 100%;
  bottom: 0;
  padding: 1rem 2rem .5rem 2rem;
  background: var(--primary);
  color: var(--white);
  z-index: 99;
  left: 0;
  -webkit-box-shadow: 0px 1px 23px 1px rgb(0 0 0 / 36%);
  box-shadow: 0px 1px 23px 1px rgb(0 0 0 / 36%);
}

.cookie-banner .wp-block-columns {
  justify-content: center;
  display: flex;
}

.cookie-banner a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
}

.cookie-banner .wp-block-buttons {
  margin: 0 auto;
  display: flex;
}

.cookie-banner .wp-block-button a {
  padding: .5rem 1rem;
  text-decoration: none;
  background: var(--white);
  color: var(--base);
  font-size: 14px;
}

.cookie-banner .wp-block-button a:hover {
  opacity: .8;
}

.cookie-banner p {
  color: var(--white);
  font-size: .75em;
}

.cookie-banner p {
  margin: 0;
}

.cookie-banner .close {
  color: var(--base);
}


/*--------------------------------------------------------------
# Homepage
--------------------------------------------------------------*/

.wp-block-cover.mv__cover-overflow {
  padding: 0;
  max-height: calc(100vh - 180px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-attachment: fixed;
  position: relative;
  background-position: center;
}

.mv__cover-overflow .wp-block-cover__inner-container {
  position: absolute;
  z-index: 1;
  top: 0;
  padding: 3rem 1.5rem!important;
}

.mv__content > .wp-block-group__inner-container {
  padding: 0;
}

.mv__content h1 {
  color: var(--white);
  font-size: 3.35rem;
  margin: 0;
  font-weight: 800;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  grid-gap: 30px!important;
  grid-auto-flow: dense;
  height: auto;
  margin: 4rem 0 0;
}

.gallery > .wp-block-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  max-height: 12rem;
  max-width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery > .wp-block-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.justify-center.wp-block-buttons {
  justify-content: center;
  display: flex;
  align-items: center;
}

.hp_section__04 {
  background: url('/wp-content/uploads/melt-vegan-butter-background-organge-02.jpg') no-repeat;
  background-size: cover;
}

.hp_section__04 * {color: var(--white);}

.hp_section__04 h2 {
  margin: 0 auto 5rem;
}

.hp_section__04 h3 {
  min-height: 3.8rem;
}

.hp_section__04 .wp-block-image {
  max-width: 125px;
  margin: 0 auto 2rem;
}

.mv__cover-overflow.mid-banner .wp-block-cover__inner-container {
  top: unset;
}

.wp-block-cover.mid-banner:after {
  content: "";
  height: 100%;
  width: 100%;
  display: block;
  background: rgba(0,0,0,0.5);
  position: absolute;
}

.wp-block-cover.mid-banner h2 {
  color: var(--white);
  margin: 0;
}

.wp-block-cover.mv__cover-overflow.height-280 {
  min-height: 280px!important;
}

.recent-recipe h2 {
  color: var(--base);
  font-size: 1.1rem;
  margin: 0 0 1rem;
}

.recent-recipe h2.recipe-title {
  color: var(--primary);
  font-size: 1.75rem;
}

.recent-recipe ul,
.recent-recipe ol,
.single-post__content .inner-content ul,
.single-post__content .inner-content ol {
  list-style-type: circle;
  margin: 0 0 2rem 1.5rem;
  padding: 0;
  line-height: 2;
}

.recent-recipe ol,
.single-post__content .inner-content ol{
  list-style-type: decimal;
}

.recent-recipe li {
  padding: 0 0 0 1rem;
  position: relative;
}


/*--------------------------------------------------------------
# Secondary pages
--------------------------------------------------------------*/

.about-us__columns {
  align-items: center!important;
  margin: 0 auto 5rem;
}

.team__columns:first-of-type {
  margin: 5rem auto 0;
}

.team__columns:last-of-type {
  margin: 2rem auto 0;
}

.team__column img {
  max-width: 200px;
  width: 100%;
}

.team__column h3 {
  color: var(--primary);
  text-transform: initial;
  margin: 1rem 0 .5rem;
  font-size: 1.25rem;
}

.team__column p {
  line-height: 1.3;
  margin: 0;
}

.bg-faq {
  background: url('/wp-content/themes/ibtonline/img/Melt-Organic-Background_FAQs-01.png');
}

.bg-faq h1 {
  color: var(--white);
  margin: 0 auto 4rem;
}

.faq-single {
  background: var(--white);
  border-radius: 3px;
  padding: 1.5rem;
  margin: 0 auto 2rem;
}

.faq-single h2 {
  font-size: 1.2rem;
  margin: 0 auto .75rem;
  width: 100%;
  border-bottom: 1px solid;
  padding: 0 0 .75rem 0;
}

.faq-single p {
  margin: 0 0 0.5rem;
  line-height: 1.6;
  color: var(--grey);
}

.faq-single p:last-of-type { margin: 0; }

.contact-columns label span {
  text-transform: capitalize;
  color: var(--primary);
  font-size: .75rem;
}

.contact-columns label span.optional { color: var(--grey)}

.contact-map > .wp-block-group__inner-container{
  padding: 0!important;
  max-width: 100vw!important;
}


.accordion {
  background-color: var(--primary);
  color: var(--white);
  cursor: pointer;
  width: 100%;
  text-align: left;
  transition: 0.4s;
  padding: 1.5rem 1rem;
  border-radius: 0;
  font-weight: 400;
  position: relative;
}


.accordion:hover {
  background-color: var(--secondary);
}

.accordion + .panel {
  padding: 0;
  max-height: 0;
  transition: max-height 0.2s ease-out;
  overflow: auto;
}

.accordion + .panel h4 { font-size: 1.1rem; }

.accordion + .panel p {
  font-size: .9rem;
  line-height: 1.6;
  margin: 0 0 1rem;
}

.accordion + .panel p:first-of-type { padding-top: 1rem;}

.accordion:after {
  content: '+';
  color: var(--green);
  margin-left: 5px;
  font-weight: 300;
  font-size: 2rem;
  position: absolute;
  right: 1rem;
}

.accordion.active:after {
  content: "-";
}

.accordion__outer + .wp-block-buttons {
  margin: 2rem 0 0;
}

.product__column {
  margin: 0 auto 3rem!important;
}

.product__column .wp-block-image {
  height: 20rem;
  width: 100%;
}

.product__column .product-img_mx {
  height: 14rem;
  margin: 0 auto 1rem;
}

.butter-fr {
  position: relative;
  top: 2.2rem;
}

.product__column .wp-block-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ingredients__title {
  margin: 4rem auto 3rem;
  font-size: 2.25rem;
}

.ingredients__column .wp-block-image {
  width: 100px;
  margin: 0 auto 1rem;
}

.blog .wp-block-cover {
  background-position: center 3rem;
  align-items: flex-end;
}

.page-id-4149 .wp-block-cover {
  align-items: flex-end;
  background-position: bottom;
}


.single-post .outer-link {
  box-shadow: 0 0px 10px rgba(0,0,0,.2);
}

.single-post .outer-img {
  height: 18rem;
  border: 5px solid var(--primary);
}

.single-post .outer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-post .inner-content {
  padding: 1.25rem 1.75rem;
  text-align: center;
  min-height: 8rem;
}

.single-post .inner-content h3 {
  text-align: center;
  text-transform: initial;
  color: var(--primary);
  font-size: 1.25rem;
}

.single-post .inner-content .read {
  color: var(--base);
  margin: 0;
}

h1.recipe-title {
  font-size: 2.5rem;
}

.single-post__content {
  padding: 0!important;
}

.single-post__content .inner-content {
  text-align: left;
}

.single-post__content .inner-content h2 {
  color: var(--base);
  font-size: 1.1rem;
  margin: 0 0 1rem;
}

.single-post__image .outer-img {
  border: none;
  height: 100%;
  width: 100%;
}

.post-navigation {
  width: 100%;
  border-top: 1px solid var(--grey);
  padding: 1rem 1rem 0;
  margin: 1rem auto 0;
}

.post-navigation .nav-links {
  display: flex;
  justify-content: space-between;
}

.nav-next a {
  position: relative;
  padding: 0 .75rem 0 0;
}

.nav-previous a:before,
.nav-next a:before {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 1px solid var(--primary);
  border-bottom: 1px solid var(--primary);
  transform: rotate(135deg);
  position: relative;
  top: -.1rem;
  display: inline-block;
}

.nav-next a:before {
  transform: rotate(-45deg);
  position: absolute;
  right: 0;
  top: 6px;
}

.contact-columns > div:first-of-type {
    padding: 0 0 0 1.5rem;
}





/* tablet (medium) screens */
@media (min-width: 768px) {
  html {
    font-size: 18px;
  }

  .narrow>div:first-of-type, .alignwide>div:first-of-type, .alignfull>div:first-of-type {
    padding: 4rem 2rem;
  }

  .t-one-item>.wp-block-column {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  .t-two-items>.wp-block-column, .t-one-of-two>.wp-block-column:first-of-type {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }

  .t-three-items>.wp-block-column, .t-one-of-three>.wp-block-column:first-of-type {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.3333%;
    flex: 0 0 33.3333%;
    /* IE11 < */
    -ms-flex: 0 0 calc(100% / 3);
    flex: 0 0 calc(100% / 3);
  }

  .t-four-items>.wp-block-column, .t-one-of-four>.wp-block-column:first-of-type {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
  }

  .t-five-items>.wp-block-column, .t-one-of-five>.wp-block-column:first-of-type {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
  }

  .t-six-items>.wp-block-column, .t-one-of-six>.wp-block-column:first-of-type {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66666666666667%;
    flex: 0 0 16.66666666666667%;
    /* IE11 < */
    -ms-flex: 0 0 calc(100% / 6);
    flex: 0 0 calc(100% / 6);
  }

  .t-two-of-three>.wp-block-column:first-of-type {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.6666%;
    flex: 0 0 66.6666%;
    /* IE11 < */
    -ms-flex: 0 0 calc(100% / 3 * 2);
    flex: 0 0 calc(100% / 3 * 2);
  }

  .t-three-of-four>.wp-block-column:first-of-type {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
  }

  .t-three-of-five>.wp-block-column:first-of-type {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
  }

  .t-five-of-six>.wp-block-column:first-of-type {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.3333%;
    flex: 0 0 83.3333%;
    /* IE11 < */
    -ms-flex: 0 0 calc(100% / 6 * 5);
    flex: 0 0 calc(100% / 6 * 5);
  }

  .hero .switcharoo:nth-of-type(1) {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .hero .switcharoo:nth-of-type(2) {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .t-align-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .t-align-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: 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;
  }

  .site-header { height: 111px; }

  .main-navigation li a {
    border-bottom: 0;
    line-height: 1.5;
  }

  .site-branding {
    margin: 0 auto;
    padding: 1rem;
  }

  .site-branding img {
    width: 8rem;
  }

  .main-navigation .btn-toggle {
    padding: 3rem 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;
  }

  .site-info .logo img {
    margin: 0;
  }

  .site-info .menu-social-media-container ul {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .hero img {
    height: 100vh;
  }

  .hero .wp-block-button a {
    padding: 1.25rem .5rem;
  }

  .slider .owl-dots, .slider .owl-nav {
    text-align: center;
    -webkit-tap-highlight-color: transparent
  }

  .slider .owl-dots {
    position: absolute;
    bottom: 1em;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    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(--grey);
    border-radius: 100%;
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    background-size: 16px 19px;
    -webkit-transition: opacity .2s ease;
    -o-transition: opacity .2s ease;
    transition: opacity .2s ease;
  }

  .slider .owl-dots .owl-dot.active span, .slider .owl-dots .owl-dot:hover span {
    background: var(--grey);
    border-radius: 100%;
  }

  .slider .owl-nav [class*=owl-] {
    display: inline-block;
    cursor: pointer;
    width: 42px;
    height: 82px;
    background-size: 11px 20px;
    background-size: 42px 82px;
  }

  .slider .owl-nav .owl-prev, .slider .owl-nav .owl-prev:hover {
    background: url(/wp-content/themes/ibtonline/img/chevron-left.svg) no-repeat;
    background-size: 11px 20px;
    background-size: 42px 82px;
  }

  .slider .owl-nav .owl-next, .slider .owl-nav .owl-next:hover {
    background: url(/wp-content/themes/ibtonline/img/chevron-right.svg) no-repeat;
    background-size: 11px 20px;
    background-size: 42px 82px;
  }

  .slider .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    left: 98%;
    -webkit-transform: translate(-98%, -50%);
    -ms-transform: translate(-98%, -50%);
    transform: translate(-98%, -50%)
  }

  .slider .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    left: 2%;
    -webkit-transform: translate(-2%, -50%);
    -ms-transform: translate(-2%, -50%);
    transform: translate(-2%, -50%)
  }

  .slider .owl-nav [class*=owl-]:hover {
    opacity: .8
  }

  .wp-block-cover {
    padding: 4rem 0;
  }

  .wp-block-cover .module-box {
    padding: 3rem;
  }

  .wp-block-cover {
    padding: 4rem 0;
    background-position: top left;
    background-size: cover;
  }

  .wp-block-cover .module-box {
    display: block;
    width: 100%;
    background: var(--white);
  }

  .list-three-cols {
    -moz-columns: 2;
    -webkit-columns: 2;
    columns: 2;
    -moz-column-gap: 1rem;
    -webkit-column-gap: 1rem;
    column-gap: 1rem;
  }

  .list-three-cols li {
    page-break-inside: avoid;
    -moz-column-break-inside: avoid;
    -webkit-column-break-inside: avoid;
    break-inside: avoid;
  }

  .site-footer > div:first-of-type > .wp-block-group__inner-container { padding: 0!important; }

  .menu-footer-menu-container ul,
  .footer-sns {
    justify-content: unset;
  }
  
  .site-info .wp-block-columns {
    justify-content: unset;
  }

  .site-footer .wp-block-column:first-of-type { margin: 0; }
  
  .site-info {
    padding: 2rem 0 1.5rem 0;
  }

  .copyright {
    padding: 0.25rem 1rem;
  }

  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-four-items {
    grid-template-columns: repeat(4, 1fr);
  }

  .gallery.gallery-certifications {
    grid-template-columns: repeat(5, 1fr);
  }

  .aboutus-gallery-mx > .wp-block-image:nth-of-type(2) img {
    width: 16rem;
    height: auto;
    object-fit: cover;
    max-width: unset;
  }
  

  #main-content {
    padding-top: 65px;
  }

  /* cookie banner */

  .cookie-banner .wp-block-columns {
    flex-direction: column;
  }
  
   .cookie-banner .wp-block-columns > div {
     flex: 1!important;
   }

  .cookie-banner .wp-block-buttons {
    margin: 0 auto;
  }

  
  
}




/* desktop */
@media (min-width: 1366px) {
  html {
    font-size: 18px;
  }

  h1 {
    font-size: 3.25em;
  }

  h2 {
    font-size: 2.78em;
  }

  p.has-medium-font-size {
    font-size: 1.45em;
    line-height: 1.8;
  }

  .narrow>div:first-of-type, .alignwide>div:first-of-type, .alignfull>div:first-of-type {
    padding: 5rem 2.5rem;
  }

  .site-header {
    height: auto;
  }

  .site-header .alignfull>div:first-of-type {
    padding: 0 2.5rem;
  }

  .wp-block-columns {
    margin-left: -2.5rem;
  }

  .wp-block-columns .wp-block-column {
    padding-left: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .alignfull.narrow > div:first-of-type {
    max-width: calc(980px + 5rem);
  }
  
  /* slim gutter */
  .wp-block-columns.slim-gutter {
    margin-left: -.5rem;
  }

  .wp-block-columns.slim-gutter .wp-block-column {
    padding-left: .5rem;
    margin-bottom: .5rem;
  }

  .d-one-item>.wp-block-column {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  .d-two-items>.wp-block-column, .d-one-of-two>.wp-block-column:first-of-type {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }

  .d-three-items>.wp-block-column, .d-one-of-three>.wp-block-column:first-of-type {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.3333%;
    flex: 0 0 33.3333%;
    /* IE11 < */
    -ms-flex: 0 0 calc(100% / 3);
    flex: 0 0 calc(100% / 3);
  }

  .d-four-items>.wp-block-column, .d-one-of-four>.wp-block-column:first-of-type {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
  }

  .d-five-items>.wp-block-column, .d-one-of-five>.wp-block-column:first-of-type {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
  }

  .d-six-items>.wp-block-column, .d-one-of-six>.wp-block-column:first-of-type {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66666666666667%;
    flex: 0 0 16.66666666666667%;
    /* IE11 < */
    -ms-flex: 0 0 calc(100% / 6);
    flex: 0 0 calc(100% / 6);
  }

  .d-two-of-three>.wp-block-column:first-of-type {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.6666%;
    flex: 0 0 66.6666%;
    /* IE11 < */
    -ms-flex: 0 0 calc(100% / 3 * 2);
    flex: 0 0 calc(100% / 3 * 2);
  }

  .d-three-of-four>.wp-block-column:first-of-type {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
  }

  .d-three-of-five>.wp-block-column:first-of-type {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
  }

  .d-five-of-six>.wp-block-column:first-of-type {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.3333%;
    flex: 0 0 83.3333%;
    /* IE11 < */
    -ms-flex: 0 0 calc(100% / 6 * 5);
    flex: 0 0 calc(100% / 6 * 5);
  }

  /* Switch 2 column order */
  .switcharoo:nth-of-type(1) {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .switcharoo:nth-of-type(2) {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .d-align-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .d-align-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: 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;
  }

  .top-nav {
    display: block;
    width: 100%;
    margin: 0;
    background: var(--primary);
    font-size: .85em;
  }

  header .wp-block-columns {
    flex-direction: column;
    justify-content: center;
  }

  .top-nav .wp-block-columns {
    flex-direction: row;
    justify-content: space-between;
  }

  .site-header .one-item>.wp-block-column {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .site-branding {
    display: block;
    padding: .75rem 0 .25rem;
  }

  .site-branding img {
    width: 7.5rem;
  }

  .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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    -ms-flex-line-pack: center;
    align-content: center;
    margin: 0;
    width: 100%;
  }

  #primary-menu li {
    font-size: .9rem;
    margin: 0;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    position: relative;
  }

  #primary-menu li a {
    display: block;
    margin: 0;
    padding: 01rem;
    white-space: nowrap;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    color: var(--grey);
    font-size: 1em;
    font-weight: 600;
  }

  #primary-menu li:first-child a {
    margin-left: 0;
  }

  #primary-menu li:last-child a {
    margin-right: 0;
  }

  #primary-menu li a:hover {
    color: var(--primary);
  }

  #primary-menu .current-menu-parent a, #primary-menu .current_page_item a {
    color: var(--primary);
  }

  /* sub menu drop-down */
  #primary-menu .menu-item-has-children {
    background: url(/wp-content/uploads/chevron-down.svg) no-repeat calc(100% - 1rem) 1.5rem;
    background-size: 10px;
  }

  #primary-menu .menu-item-has-children a {
    padding-right: 2.25em;
  }

  #primary-menu .sub-menu {
    position: absolute;
    display: none;
    margin: 0 0 0 1rem;
  }

  #primary-menu li:hover .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 .3rem;
    background: var(--primary);
    display: block;
    color: var(--white);
    border-top: 1px solid var(--white);
    border-radius: 0;
    text-align: left;
    white-space: normal;
    text-transform: capitalize;
    line-height: 1.4;
  }

  #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(--primary);
  }
  
  .site-info .wp-block-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-start;
    text-align: left;
    margin: 0;
  }

  .site-info .wp-block-column:first-of-type {
    flex: 0 0 20%;
    margin: 0;
  }

  .hero figure {
    max-height: 750px;
    overflow: hidden;
  }

  .hero img {
    height: auto;
  }

  .hero .wp-block-button a, .wp-block-button a {
    display: inline-block;
  }

  .text-block-right {
    padding: 0 0 0 5rem;
  }

  .text-block-left {
    padding: 0 5rem 0 0;
  }

  .list-three-cols {
    -moz-columns: 3;
    -webkit-columns: 3;
    columns: 3;
    -moz-column-gap: 4rem;
    -webkit-column-gap: 4rem;
    column-gap: 4rem;
  }

  #main-content {
    padding-top: 157px;
  }

  /* cookie banner */
  .cookie-banner .wp-block-columns {
    justify-content: space-between;
    display: flex;
    flex-direction: row;
  }

  .cookie-banner .wp-block-columns > div:first-of-type {
    flex: 0 0 64%!important;
  }

  .cookie-banner .wp-block-columns > div:last-of-type {
    flex: 0 0 34%!important;
  }

  .cookie-banner .wp-block-buttons {
    margin: 0 0 0 auto;
  }

  /*--------------------------------------------------------------
  # Homepage
  --------------------------------------------------------------*/


  .gallery > .wp-block-image {
    max-height: 18rem;
  }

  .gallery-fr > .wp-block-image:first-of-type img {
    position: relative;
    top: -0.75rem;
  }

  .gallery-four-items > .wp-block-image {
    max-height: 10rem;
  }
  
  .gallery.gallery-certifications > .wp-block-image {
    max-width: 10rem;
    max-height: 7rem;
    margin: auto;
  }

 /*--------------------------------------------------------------
  # Secondary pages
  --------------------------------------------------------------*/

  .bg-wave {
    background-size: cover;
  }
  
  .contact-columns {
    justify-content: space-between;
    padding-top: 2rem;
    flex-direction: row;
  }

  .contact-columns > div:first-of-type {flex: 0 0 65%;padding-top: 0;padding-bottom: 0;}
  .contact-columns > div:last-of-type { flex:  0 0 35%; }

  .contact-columns h2 {
    font-size: 1.5rem;
    margin: 0 0 1rem;
  }

  .blog .latest-news h2.main-archive-title {
    font-size: 2.75rem
  }




  
}
