/*
Theme name: OLMCM
Description: Custom Theme
Version: 9.0.1
*/

/*
naming convention:
BEM - BLOCK__ELEMENT--MODIFIER
name spacing:
u = utilities
l = layout
c = component
js = javascript hook
breakpoints:
mobile - 600px
*/

/* CSS vars */

:root {
  --clr-primary-100: #F5F5FF;
  --clr-primary-500: #535AA2;
  --clr-primary-600: #27508D;
  --clr-greyscale-50: #F9FAFB;
  --clr-greyscale-100: #F3F4F6;
  --clr-greyscale-200: #E5E7EB;
  --clr-greyscale-300: #D1D5DB;
  --clr-greyscale-400: #9CA3AF;
  --clr-greyscale-500: #6B7280;
  --clr-greyscale-600: #4B5563;
  --clr-greyscale-700: #374151;
  --clr-greyscale-800: #1F2937;
  --clr-greyscale-900: #111827;

  --clr-text: var(--clr-greyscale-700);
  --clr-text-reverse: white;

  /* widths */
  --width-content: 1350px;
  --width-gutter: 60px;
  /* heights */
  --height-header: 100px;
  --headerOffset: 50px;
  /* spacing */
  --b-space-lg: 100px;
  --b-space: 82px;
  --b-space-sm: 72px;
  /* font family */
  --ff-body: "Inter", sans-serif;
  --ff-heading: var(--ff-body);
  /* font sizes */
  --fs-h1: 3.25rem;
  --fs-h2: 2rem;
  --fs-h3: 1.25rem;
  --fs-h4: 1rem;
  --fs-p: 1rem;
  --fs-p-lg: 1.125rem;
  --fs-p-sm: .875rem;
}

@media screen and (max-width:1200px) {
  :root {
    --height-header: 100px;
    --headerOffset: 16px;
    --b-space: 100px;
    --b-space-lg: 150px;
  }
}

@media screen and (max-width:1000px) {
  :root {
    --b-space-lg: 120px;
  }
}

@media screen and (max-width: 980px) {
  :root {
   --width-gutter: 3.75rem;
  }
}

@media screen and (max-width:800px) {

  :root {
    --height-header: 75px;
    --headerOffset: 12px;
  }

}

@media screen and (max-width:600px) {
  :root {
    --height-header: 60px;
    --headerOffset: 8px;
    /* font sizes */
    --fs-h1: 2.25rem;
    --fs-h2: 1.5rem;
    --fs-h3: 1.125rem;
    --fs-h4: 1rem;
    --fs-p: 1rem;
    --fs-p-lg: 1.125rem;
    /* spacing */
    --b-space-lg: 72px;
    --b-space: 60px;
    --b-space-sm: 52px;

    --width-gutter: 1.5rem;
  }
}


/* utilities */

.u-wc {
	width:100%;
	max-width: var(--width-content);
  padding: 0 var(--width-gutter);
	margin:0 auto;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
}

.u-wc.w-sidebar {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 20px 20px;
}

@media screen and (max-width: 600px) {
  .u-wc.w-sidebar {
    grid-template-columns: 1fr;
  }
}

.u-wc.w-sidebar .c-articleItems {
  --columns: 1;
}

.sidebar ul {
  list-style-type: none;
  margin: 0px 0px 20px;
  padding: 0px;
}

.u-wc--full {
  max-width: 100%;
  padding: 0;
}

.u-wc--md {
  max-width: 1120px;
}

.u-wc--sm {
  max-width: 915px;
}

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

.u-text-reverse {
  color: var(--clr-text-reverse);
}

/* base styles */

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
	background: white;
	font-family: var(--ff-body);
  font-weight: 500;
	font-size: var(--fs-p);
	margin: 0;
	color: var(--clr-text);
  position: relative;
  line-height: 1.5;
	-moz-osx-font-smoothing:grayscale;
	-webkit-font-smoothing:antialiased;
  user-select: none;         /* Standard */
  -webkit-user-select: none; /* Chrome/Safari */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* IE/Edge */
}

.u-wc iframe {
    max-width: 100%;
    height: 450px;
}


@media screen and (max-width: 600px) {
  body {
    line-height: 1.4;
  }
}

b, strong {
  font-weight: 600;
}

.content-wrap {
  overflow: clip;
}

p, h1, h2, h3, h4, h5, h6, ul{
	margin:0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-heading);
  font-weight: 700;
  color: var(--clr-greyscale-900);
}

h1 a, h2 a, h3 a, h4 a, h5 a {
  text-decoration: none;
}

h1 {
  font-size: var(--fs-h1);
  line-height: 1.1;
  margin: 0 0 1.5rem;
}


h2, .h2 {
  font-size: var(--fs-h2);
  line-height: 1.15;
  margin: 2rem 0 1rem;
}

h2:first-child, .h2:first-child {
  margin-top: 0;
}

h3 {
  font-size: var(--fs-h3);
  line-height: 1.35;
  margin: 2rem 0 1rem;
}

h3:first-child {
  margin-top: 0;
}

h4 {
  font-size: var(--fs-h4);
  line-height: 1.3;
  margin: 1rem 0 .75rem;
}

h5 {
  font-size: var(--fs-h5);
  line-height: 1.3;
  margin: 1rem 0 1rem;
}

h6 {
  font-size: var(--fs-h6);
  line-height: 1.3;
  margin: 1rem 0 .75rem;
}

[class*="is-style-tag"] + h1,
[class*="is-style-tag"] + h2,
[class*="is-style-tag"] + h3,
[class*="is-style-tag"] + h4,
[class*="is-style-tag"] + h5,
[class*="is-style-tag"] + h6 {
  margin-top: 0;
}

@media screen and (max-width: 600px) {

  h1 {
    margin-bottom: 24px;
  }

  h2 {
    margin-bottom: 20px;
  }

  h3 {
    margin-bottom: 12px;
  }

  h4 {
    margin-bottom: 12px;
  }

  h5 {
    margin-bottom: 12px;
  }

}

h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
  margin-top: 0;
}

h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child,
p:last-child {
  margin-bottom: 0;
}

p {
  margin-bottom: 1.5rem;
}

.has-lg-font-size, .p--lg {
  font-size: var(--fs-p-lg);
  margin-top: 1.5rem;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 1.25rem;
}

h1 + .p--lg  {
  margin-top: 0;
}

.p--overline {
  text-transform: uppercase;
  font-size: var(--fs-p-sm);
  letter-spacing: .2em;
  margin-bottom: .75rem;
  font-weight: 600;
  color: var(--clr-primary-500);
}

.p--overline + h2 {
  margin-top: 0;
}


@media screen and (max-width: 600px) {
  .has-lg-font-size {
     margin-top: 1rem;
  }

  .has-cta-font-size::before {
    background-size: 21px 23px;
    width: 21px;
    height: 23px;
    margin-right: 12px;
    margin-top: 2px;
  }


}

.has-lg-font-size:first-child {
  margin-top: 0;
}

.has-sm-font-size {
  font-size: var(--fs-p-sm);
}


@media screen and (max-width: 600px) {

  p {
    margin-bottom: 12px;
  }
}

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

ul {
  padding-left: 1.5rem;
  margin: 0 0 1.5rem;
}

ul.is-style-no-left-spacing {
  padding-left: 0;
}

ul:first-child {
  margin-top: 0;
}

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

ol {
  margin: 0 0 1.5rem;
  padding-left: 1.5rem;
}

ol:first-child {
  margin-top: 0;
}

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

li {
  padding-left: .25rem;
  margin-bottom: .5rem;
}

.wp-block-list .wp-block-list {
  margin-top: .5rem;
}

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

blockquote {
  border-left: .25rem solid var(--clr-greyscale-200);
  margin-left: 0;
  padding-left: 1rem;
  margin: 1.5rem -3px;
}

blockquote p {
  font-style: italic;
}

blockquote cite {
  color: var(--clr-greyscale-500);
  font-style: normal;
}

a, a:focus{
   outline: 0;
}

a {
  text-decoration: none;
  color: var(--clr-primary-500);
	transition: .3s color, .3s background;
	-webkit-transition:.3s color, .3s background;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
  -webkit-tap-highlight-color: transparent; /* For some Androids */
}

a:hover {
  color: var(--clr-primary-600);
}


img, svg{
	max-width:100%;
	height:auto;
}

.alignleft {
  float: left;
  margin: 0 2rem 2rem 0;
}

.alignright {
  float: left;
  margin: 0 0 2rem 2rem;
}

.wp-block-separator, hr {
  display: block;
  padding: 0;
  height: 1px;
  background: var(--clr-greyscale-200);
  margin: 2rem 0;
  border: none !important;
}


@media screen and (max-width: 600px) {
  hr, .wp-block-separator {
    margin: 32px 0;
  }
}

.c-section {
  padding: var(--b-space) 0;
  position: relative;
  background-size: cover;
  background-position: center center;
}

.c-section--lg {
  padding: var(--b-space-lg) 0;
}

.c-section--sm {
  padding: var(--b-space-sm) 0;
}

.c-section--xsm {
  padding: var(--b-space-xsm) 0;
}

.c-section--noTopPadding {
  padding-top: 0;
}

.c-section--noBottomPadding {
  padding-bottom: 0;
}

.c-section .u-wc {
  position: relative;
  z-index: 4;
}

.c-btn {
  font-size: var(--fs-p);
  font-family: var(--ff-body);
  font-weight: 500;
  color: var(--clr-text);
  flex-shrink: 0;
  line-height: 1.1;
  text-decoration: none;
  display: inline-flex;
  grid-gap: .5rem;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: none;
  box-shadow: none;
  -webkit-appearance: none;
  border-radius: .5rem;
  color: white;
  background: var(--clr-primary-500);
  border: none;
  padding: .8rem 1.5rem;
  transition: .3s background, .3s color, .3s border;
}


.c-btn:hover {
  color: white;
  background: var(--clr-primary-600);
}

.menu-button a {
  font-size: var(--fs-p);
  font-family: var(--ff-body);
  font-weight: 500;
  color: var(--clr-text);
  flex-shrink: 0;
  line-height: 1.1;
  text-decoration: none;
  display: inline-flex;
  grid-gap: .5rem;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: none;
  box-shadow: none;
  -webkit-appearance: none;
  border-radius: .5rem;
  background: var(--clr-primary-500);
  border: none;
  padding: .8rem 1.5rem;
  transition: .3s background, .3s color, .3s border;
  color: #fff !important;
}

.menu-button a:hover {
  color: white;
  background: var(--clr-primary-600);
}

/*header styles*/

.c-mainHeader {
  position: relative;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  background:  white;
  transition: .3s background, .3s height, .3s box-shadow, .3s backdrop-filter, .3s transform, .3s opacity;
}

.c-mainHeader__top {
  padding: 1rem 0;
  border-bottom: 1px solid var(--clr-greyscale-100);
  display: flex;
  justify-content: flex-end;
}

.c-langMenu {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.c-langMenu li {
  padding: 0;
  margin: 0;
}

.c-langMenu a {
  color: var(--clr-greyscale-600);
  font-size: 1rem;
  font-weight: 500;
}

.c-langMenu a:hover {
  color: var(--clr-primary-500);
}

.c-langMenu .current-lang a {
  font-weight: 700;
}

@media screen and (max-width: 600px) {

  .c-langMenu a {
    font-size: .925rem;
  }
}

.c-mainHeader__bottom {
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
}

.c-mainHeader__logo {
  display: block;
  text-decoration: none;
  transition: .3s width;
}

.c-mainHeader__logo img {
  display: block;
}

.c-mainHeader__btns {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.c-mainHeader__login {
  font-weight: 500;
  color: var(--clr-greyscale-600);
}

.c-mainHeader__top .c-mainHeader__login {
  display: none;
}

.c-mainHeader__login:hover {
  color: var(--clr-primary-500);
}

.c-mainHeader__menuWrap {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 1200px) {

  .c-mainHeader__logo {
    margin-right: auto;
  }

}

@media screen and (max-width: 800px) {
  .c-mainHeader__logo {
    width: 156px;
  }

}

@media screen and (max-width:600px) {

  .c-mainHeader__logo {
    width: 106px;
  }

  .c-mainHeader__top, .c-mainHeader__bottom {
    padding: .75rem 0;
  }

  .c-mainHeader__btns .c-btn {
    font-size: .875rem;
    padding: .75rem 1rem;
  }

  .c-mainHeader__login {
    font-size: .925rem;
  }

  .c-mainHeader__bottom .c-mainHeader__login {
    display: none;
  }

  .c-mainHeader__top .c-mainHeader__login {
    display: block;
    margin-left: auto;
  }

}

.c-userMenu {
  --dropdown-position-offset: 1rem;
  position: relative;
}

.c-userMenu__btn {
  display: flex;
  gap: .5rem;
  align-items: center;
  color: var(--clr-greyscale-500);
  font-size: 1rem;
}

.c-userMenu__btn::after {
  --icon-size-width: 10px;
  --icon-size-height: 6px;
  content: '';
  flex-shrink: 0;
  width: var(--icon-size-width);
  height: var(--icon-size-height);
  background: url('imgs/chevron-down.svg') center center / var(--icon-size-width) var(--icon-size-height);
  transition: .3s transform;
}

.c-userMenu:hover .c-userMenu__btn::after, .c-userMenu:focus-within .c-userMenu__btn::after {
  transform: rotate(180deg);
}

.c-userMenu__avatar {
  width: 2rem;
  margin-right: .25rem;
}

.c-userMenu__avatar img {
  display: block;
  border-radius: 50%;
  margin: 0;
}

.c-userMenu__letter {
  background: var(--clr-primary-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 1.4375rem;
  text-transform: uppercase;
  color: white;
  aspect-ratio: 1/1;
  width: 100%;
  line-height: 1;
}

.c-userMenu__list {
  list-style-type: none;
  width: 160px;
  display: block;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  border-radius: 6px;
  background: white;
  right: .25rem;
  top: calc(100% + var(--dropdown-position-offset));
  padding: 1rem;
  transform: translateY(-4px);
  box-shadow: 0px 2px 5px 0px #0000001A, 0px 9px 9px 0px #00000017, 0px 21px 12px 0px #0000000D, 0px 36px 15px 0px #00000003, 0px 57px 16px 0px #00000000;
  transition: .3s opacity, 0s visibility .3s, .3s transform;
}

.c-userMenu__list li {
  text-align: right;
  padding: 0;
  margin: 0;
}

.c-userMenu__list ul {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.c-userMenu::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: var(--dropdown-position-offset);
}

.c-userMenu:hover .c-userMenu__list, .c-userMenu:focus-within .c-userMenu__list {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
  transform: translateY(-1px);
}

.c-userMenu li a {
  color: var(--clr-greyscale-600);
}

.c-userMenu.current-menu-item > a, .c-userMenu a:hover {
  color: var(--clr-primary-500);
}

.c-userMenu__list ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

@media screen and (max-width: 600px) {
  .c-userMenu__btn {
    font-size: .925rem;
  }
}

@media screen and (max-width: 400px) {
  .c-userMenu__btn {
    font-size: 0;
    gap: .25rem;
  }
}

.c-mainMenu {
  margin-right: auto;
}

.c-mainMenu ul {
  list-style-type: none;
  padding-left: 0;
  display: flex;
  align-items: center;
  margin: 0;
  gap: .5rem;
}

.c-mainMenu li {
  margin: 0 28px 0 0;
  padding: 0;
}

.c-mainMenu li:last-child {
  margin-right: 0;
}

.c-mainMenu li a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--clr-greyscale-600);
  position: relative;
  text-decoration: none;
  transition: .3s color;
}

.c-mainMenu .current-menu-item > a, .c-mainMenu a:hover {
  color: var(--clr-primary-500);
}

.c-mainMenu li.menu-item-has-children {
  position: relative;
}

.c-mainMenu li.menu-item-has-children > a {
  position: relative;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.c-mainMenu .menu-item-drop-arrow {
  --icon-size-width: .6875rem;
  --icon-size-height: .375rem;
  width: var(--icon-size-width);
  height: var(--icon-size-height);
  background: url('imgs/icon-menu-drop-arrow.svg') center center / var(--icon-size-width) var(--icon-size-height);
  transition: .3s transform;
}

.c-mainMenu .menu-item-has-children:hover > a .menu-item-drop-arrow, .c-mainMenu .menu-item-has-children:focus-within > a .menu-item-drop-arrow {
  transform: rotate(180deg);
}


@media screen and (min-width: 1201px) {

  .c-mainMenu .menu-item-has-children {
    --dropdown-position-offset: 1rem;
    position: relative;
  }

  .c-mainMenu .menu-item-has-children:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: var(--dropdown-position-offset);
  }

  .c-mainMenu .sub-menu {
    width: 200px;
    display: block;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    border-radius: .5rem;
    background: white;
    padding: 10px;
    left: 50%;
    top: calc(100% + var(--dropdown-position-offset));
    transform: translateY(-4px) translateX(-50%);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.1);
    padding: 0;
    background: rgba(0,0,0,.6);
    padding: 0;
    transition: .3s opacity, 0s visibility .3s, .3s transform;
  }

  .c-mainMenu .menu-item-has-children:hover > .sub-menu, .c-mainMenu .menu-item-has-children:focus-within > .sub-menu  {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
    transform: translateY(-1px) translateX(-50%);
  }


  .c-mainMenu .sub-menu li {
    padding: 0;
    margin: 0;
  }

  .c-mainMenu .sub-menu a {
    padding: 1rem;
    display: flex;
    color: white;
    border: none;
    transition: .3s color, .3s background;
  }

  .c-mainMenu .sub-menu li:first-child > a {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }

  .c-mainMenu .sub-menu li:last-child > a {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
  }

  .c-mainMenu .sub-menu a:hover,  .c-mainMenu .sub-menu .current-menu-item > a, .c-mainMenu .sub-menu a:focus-within  {
    background: var(--clr-primary-500);
    color: white;
    border: none;
  }

  .c-mainMenu .sub-menu .menu-item-drop-arrow {
    display: none;
  }

  .c-mainMenu .sub-menu .sub-menu {
    left: calc(100% + 1rem);
    transform: translateY(-4px);
    top: -1rem;
  }

  .c-mainMenu .menu-item-has-children:hover > .sub-menu .sub-menu, .c-mainMenu .menu-item-has-children:focus-within > .sub-menu .sub-menu  {
    transform: none;
  }

  .c-mainMenu .sub-menu {
    display: block !important;
  }

}

@media screen and (max-width: 1200px) {

  .c-mainHeader__menuWrap {
    position: relative;
    order: 3;
  }

  .c-mainHeader__btns {
    order: 2;
  }

  .c-mainMenu {
    list-style-type: none;
    width: 160px;
    display: block;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    border-radius: 6px;
    background: white;
    right: 0;
    top: calc(100% + .75rem);
    padding: 1rem;
    transform: translateY(-4px);
    box-shadow: 0px 2px 5px 0px #0000001A, 0px 9px 9px 0px #00000017, 0px 21px 12px 0px #0000000D, 0px 36px 15px 0px #00000003, 0px 57px 16px 0px #00000000;
    transition: .3s opacity, 0s visibility .3s, .3s transform;
  }

  .c-mainHeader__menuWrap--active .c-mainMenu  {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
  }

  .c-mainMenu ul {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: .25rem;
  }

  .c-mainMenu li  {
    margin: 0;
  }

  .c-mainMenu li a {
    padding: 0;
    display: block;
    border: none;
    font-weight: 400;
    color: var(--clr-greyscale-600);
    transition: .3s color;
  }

  .c-mainMenu li.menu-item-has-children > a {
    justify-content: space-between;
  }

  .c-mainMenu a:hover,  .c-mainMenu .current-menu-item > a, .c-mainMenu a:focus-within  {
    color: var(--clr-primary-500);
    border: none;
  }

  .c-mainMenu .current-menu-item > a {
    font-weight: 700;
  }

  .c-mainMenu li .sub-menu {
    display: none;
  }

  .c-mainMenu li .sub-menu a {
    padding: .75rem 1rem .75rem 1.5rem;
  }

  .menu-item-has-children-active > a .menu-item-drop-arrow {
    transform: rotate(180deg);
  }


}

.c-navIcon {
  position: relative;
  padding: 0;
  width: 51px;
  height: 51px;
  background: none;
  /* background: var(--clr-primary500); */
  border: none;
  display: none;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  margin-right: -12px;
  transition: .3s background;
  border-radius: 50%;
}

.c-navIcon:before,
.c-navIcon:after {
  content: "";
  width: 21px;
  height: 2px;
  position: absolute;
  left: 15px;
  background: var(--clr-primary-500);
  transition: .3s transform, .3s top, .3s bottom, .3s width;
}

/* .c-navIcon:before {
  width: 14px;
} */

.c-navIcon span {
  width: 21px;
  height: 2px;
  position: absolute;
  top: 25px;
  left: 15px;
  background: var(--clr-primary-500);
  transition: .3s opacity;
}

.c-navIcon:before {
  top: 18px;
}

.c-navIcon:after {
  bottom: 17px;
}

@media (hover: hover) and (pointer: fine) {

  .c-navIcon:not(.c-navIcon--active):hover:before {
    top: 24px;
    width: 21px;
  }

  .c-navIcon:not(.c-navIcon--active):hover:after {
    bottom: 24px;
    transform: rotate(90deg);
  }

  .c-navIcon:hover span {
    opacity: 0;
  }
}

.c-navIcon--active:before {
  top: 24px;
  transform: rotate(45deg);
  width: 21px;
}

.c-navIcon--active:after {
  bottom: 25px;
  transform: rotate(135deg);
}

.c-navIcon--active span  {
  opacity: 0;
}


@media screen and (max-width: 1200px) {

  .c-navIcon {
    display: flex;
  }
}

/* footer styles */

.c-mainFooter {
  text-align: center;
  font-size: var(--fs-p-sm);
  color: var(--clr-greyscale-500);
  padding-bottom: var(--b-space);
}

.c-mainFooter .u-wc {
  max-width: 540px;
}


.c-mainFooter__logo {
  margin: 0 auto 2rem;
  display: block;
}

.c-mainFooter__canada {
  margin: 0 auto 1.5rem;
  display: block;
}

.c-mainFooter__copy {
  margin-top: 2rem;
  margin-bottom: 0;
}

@media screen and (max-width: 600px) {
  .c-mainFooter__copy {
    margin-top: 1rem;
  }
}

.c-mainFooter a {
  color: var(--clr-greyscale-500);
}

.c-mainFooter a:hover {
  color: var(--clr-primary-500);
}

.gform_wrapper {
  margin-top: var(--b-space);
}

label, legend, body .gform_wrapper.gravity-theme .gfield_label {
  font-weight: 400;
  font-size: 1rem;
  margin: 0;
  display: block;
  color: var(--clr-greyscale-900);
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
body .gform_wrapper.gravity-theme input[type="email"],
body .gform_wrapper.gravity-theme input[type="text"],
body .gform_wrapper.gravity-theme input[type="tel"],
textarea,
select {
  outline: none;
  display: block;
  width: 100%;
  border: none;
  border-radius: 0;
  padding: .75rem 0;
  font-weight: 400;
  font-size: var(--fs-p-sm);
  margin-bottom: 12px;
  font-family: inherit;
  background: white;
  border: 0;
  color: var(--clr-greyscale-700);
  border-bottom: 1px solid var(--clr-greyscale-300);
  transition: .3s border, .3s background;
}

input[type="text"]:placeholder,
input[type="phone"]:placeholder,
input[type="email"]:placeholder,
input[type="password"]:placeholder {
  color: #747474;
  opacity: 1;
}

input[type="text"].wpcf7-not-valid,
input[type="phone"].wpcf7-not-valid,
input[type="email"].wpcf7-not-valid,
select.wpcf7-not-valid {
  border-bottom: 1px solid #FF001F;
}

textarea, body .gform_wrapper.gravity-theme textarea {
  height: 160px;
  border: 1px solid var(--clr-greyscale-400);
  padding: .75rem 1rem;
  border-radius: .375rem;
  margin-top: .75rem;
}

textarea:focus {
  outline: none;
  border: 1px solid var(--clr-greyscale600)
}

textarea.wpcf7-not-valid {
  border: 1px solid #FF001F;
}

.wpcf7-not-valid-tip {
  font-size: .75rem;
}


select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: white url('imgs/chevron-down.svg') no-repeat calc(100% - 1rem) center / 10px 6px;
  color: var(--clr-text);
  padding-right: 1.5rem;
}

select:-ms-expand {
  display: none;
}

.gform_button {
  margin-top: 1rem;
  font-size: var(--fs-p);
  font-family: var(--ff-body);
  font-weight: 400;
  color: var(--clr-text);
  flex-shrink: 0;
  line-height: 1.1;
  text-decoration: none;
  display: inline-block;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: none;
  -webkit-appearance: none;
  border-radius: .5rem;
  color: white;
  border: none;
  background: var(--clr-primary-500);
  padding: .8rem 1.5rem;
  outline: none;
  transition: .3s background, .3s color, .3s border;
}

.gform_button:hover {
  color: white;
  background: var(--clr-primary-600);
  border:none;
}


button[type="submit"]:focus {
  outline: none;
}

.gform_button svg {
  width: .75rem;
  height: .75rem;
  display: block;
}

/* gravity forms styling */


body .gform_wrapper.gravity-theme .gform_fields {
  grid-row-gap: .5rem;
}

body .gform_wrapper.gravity-theme .field_sublabel_above .description, body .gform_wrapper.gravity-theme .field_sublabel_above .gfield_description, body .gform_wrapper.gravity-theme .field_sublabel_above .gsection_description {
  font-size: var(--fs-p-sm);
  margin: .5rem 0 .5rem;
  padding: 0;
}

body .gform_wrapper.gravity-theme .gform_footer, body .gform_wrapper.gravity-theme .gform_page_footer {
  margin: 0;
  padding: 0;
}

body .gform_wrapper.gravity-theme .gfield_error [aria-invalid="true"] {
  border-bottom: 1px solid #c02b0a;
}

.gform_required_legend {
  display: none;
}

.gfield_validation_message {
  margin: 0 0 1rem !important;
  font-size: 13px !important;
  font-weight: 500;
  padding: 4px 8px !important;
  background: red;
  border-radius: 4px;
  color: white;
}

.gform-field-label--type-sub {
  font-weight: 600;
  font-size: 15px;
  display: block;
  margin: 0 0 8px 0;
}

.gfield_description {
  font-size: 16px;
  display: block;
  margin: 0 0 8px 0;
}

.gform_button input[type="submit"] {
  margin-right: 8px;
}

.gform_wrapper.gravity-theme .ginput_counter {
  color: var(--clr-text-light);
  font-size: 14px;
  display: block;
  margin: 0 0 14px 0;
}

.gf_clear_complex {
  display: none;
}

@media screen and (min-width: 601px) {

  .ginput_complex {
    display: flex;
    grid-gap: 24px;
  }
  .ginput_complex > span {
    flex-grow: 1;
  }
}


.gform_validation_errors {
  background: var(--clr-greyscale100);
  color: var(--clr-text);
  outline: none;
  padding: 24px 24px;
  margin: 0 0 24px 0;
  border-radius: 4px;
  font-size: 16px;
}

.gform_submission_error {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 12px 0;
}

.gform_submission_error  .gform-icon {
  display: none;
}

.gform_validation_errors ol {
  margin-top: 8px;
}

/* override silly gravity from style */

@media only screen and (max-width: 641px) {
  .gform_wrapper.gravity-theme input:not([type="radio"]):not([type="checkbox"]):not([type="image"]):not([type="file"]) {
    line-height: normal !important;
  }
}

@media screen and (max-width: 980px) {

  textarea {
    height: 200px;
  }

}

.c-articleItems {
  display: flex;
  flex-wrap: wrap;
  margin-block: var(--b-space);
  --gap: 2rem;
  --columns: 3;
  gap: var(--gap);
  row-gap: 2rem;
}

.c-articleItems:first-child {
  margin-top: 0;
}

.c-articleItems:last-child {
  margin-bottom: 0;
}

.c-articleItems .c-articleItem {
  width: calc((100% - (var(--gap) * (var(--columns) - 1))) / var(--columns));
  flex-basis: auto;
  flex-grow: 0;
}

@media screen and (max-width: 767px) {
  .c-articleItems {
    --columns: 2;
  }
}

@media screen and (max-width: 480px) {
  .c-articleItems {
    --columns: 1;
  }
}

.c-articleItems:last-child {
  margin-bottom: 0;
}

.c-articleItems:first-child {
  margin-top: 0;
}

.c-articleItem  {
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0,0,0,.10), 0 1px 2px rgba(0,0,0,.10);
  display: flex;
  flex-direction: column;
}

.c-articleItem h3 {
  margin: 0 0 1rem 0;
}

.c-articleItem h3:hover {
  color: var(--clr-primary-500);
}

.c-articleItem h3 a {
  color: inherit;
}

.c-articleItem__date {
  display: block;
  color: var(--clr-greyscale-500);
  font-size: var(--fs-p-sm);
  margin-bottom: .25rem;
  font-weight: 400;
}


.c-articleItem__link {
  text-decoration: none;
  font-size: var(--fs-p-sm);
  margin-top: auto;
  display: flex;
  gap: .5rem;
  align-items: center;
}

.c-articleItem__link:after {
  content: '';
  background: url('imgs/icon-arrow-right.svg') center center / 1rem .75rem;
  width: 1rem;
  height: .75rem;
  transition: .3s transform;
}

.c-articleItem__link:hover:after {
  transform: translateX(.25rem);
}

.c-categoryTags {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.c-categoryTags:last-child {
  margin-bottom: 0;
}

.c-categoryTags--center {
  justify-content: center;
}

.c-categoryTags__tag {
  font-size: .8125rem;
  color: var(--clr-greyscale-600);
  border-radius: 99px;
  border: 1px solid var(--clr-greyscale-600);
  padding: .2rem .9rem;
  display: block;
  width: fit-content;
  font-weight: 400;
  background: var(--clr-greyscale-50);
}


@media screen and (max-width: 600px) {
  .c-articleItems {
    margin: 1.5rem 0 2rem;
  }
}

.u-fullRight, .wp-block-column.u-fullRight  {
  margin-right: calc((100% - 100vw + var(--scrollbar-width, 0px)) / 2);
  flex-grow: 1;
}

/*.u-fullRight img {
  width: 100%;
}
*/
.c-pagination {
  margin-top: 1rem;
  margin-bottom: var(--b-space-lg);
}

.c-pagination  {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  flex-wrap: wrap;
}

.page-numbers {
  font-weight: 500;
  border-radius: .5rem;
  background: transparent;
  color: var(--clr-text);
  font-size: 1rem;
  padding: .75rem 1rem;
  line-height: 1;
  text-decoration: none;
  transition: .3s background;
}

.page-numbers:hover, .page-numbers.current {
  background: var(--clr-primary-100);
  color: var(--clr-primary-500);
}

.page-numbers.prev {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.page-numbers.prev:before {
  content: '';
  background: url('imgs/chevron-left.svg') center center / 9px 16px;
  width: 9px;
  height: 16px;
  flex-shrink: 0;
}

.page-numbers.next {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.page-numbers.next:after {
  content: '';
  background: url('imgs/chevron-right.svg') center center / 9px 16px;
  width: 9px;
  height: 16px;
  flex-shrink: 0;
}


.c-pageBanner {
  background: linear-gradient(90deg, var(--clr-primary-500), var(--clr-primary-600));
  color: white;
}

.c-pageBanner h1, .c-pageBanner h2, .c-pageBanner h3 {
  color: white;
}

.c-search {
  max-width: 375px;
  margin: 2.5rem auto 0;
}

.c-search input[type="text"] {
  border-radius: .5rem;
  padding: .925rem .75rem .925rem 2.625rem;
  background: white url('imgs/icon-search.svg') no-repeat .75rem center / 1.125rem 1.125rem;
}

@media screen and (max-width: 600px) {
  .c-search {
    margin: 1.5rem auto 0;
  }
}

.c-hero {
  display: flex;
  gap: 8rem;
  align-items: center;
}

@media screen and (max-width: 980px) {
  .c-hero {
    flex-direction: column;
    gap: 4rem;
  }
}

@media screen and (max-width: 600px) {
  .c-hero {
    gap: 2rem;
  }
}

.c-hero__content {
  max-width: 554px;
}

.c-hero__content p {
  max-width: 600px;
  font-size: var(--fs-p-lg);
}

.c-hero__img {
  filter: drop-shadow(-30px 0 50px rgba(0,0,0,.2))
}

.c-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.c-tabs__navItem {
  font-size: .875rem;
  padding: 1rem;
  color: var(--clr-greyscale-500);
  border-bottom: 1px solid var(--clr-greyscale-300);
  transition: .3s border, .3s color;
  display: block;
}

.c-tabs__navItem:hover {
  border-bottom: 1px solid var(--clr-primary-500);
}

.c-tabs__navItem--active {
  font-weight: 700;
  color: var(--clr-text);
  border-bottom: 1px solid var(--clr-primary-500);
}

.c-tabs__contentWrap {
  margin-top: 3rem;
  display: grid;
  grid-template-rows: 1fr 0;
}

.c-tabs__content {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  min-width: 0;
  transform: translateX(200px);
  opacity: 0;
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  visibility: hidden;
  max-height: 0;
  transition: .4s max-height .8s, 0s visibility .3s, .3s transform 0s, .3s opacity 0s;
}

.c-tabs__content--active {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
  max-height: 10000px;
  transition: .4s max-height .3s, 0s visibility .3s, .3s transform .3s, .3s opacity .3s;
}

.c-tabs__content--visited  {
  opacity: 0;
  transform: translateX(-200px);
  visibility: hidden;
  max-height: 0;
  transition: .4s max-height .8s, 0s visibility .3s, .3s transform 0s, .3s opacity 0s;
}

.c-regionItem {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.5rem;
  background-size: cover;
  border-radius: 1.25rem;
  color: white;
  flex-basis: 100%;
  aspect-ratio: 109 / 122;
  text-align: center;
  box-shadow: 0 .5rem 1.25rem rgba(0,0,0,0);
  transition: .3s padding, .3s box-shadow;
}

.c-regionItem:hover {
  padding-bottom: 2rem;
  box-shadow: 0 .5rem 1.25rem rgba(0,0,0,.2);

}

.c-regionItem h3 {
  color: white;
}

@media screen and (max-width: 900px) {
  .c-tabs__content {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .c-tabs__content .c-regionItem {
    width: calc((100% - 2rem) / 3);
    flex-basis: auto;
  }
}

@media screen and (max-width: 600px) {

  .c-tabs__contentWrap {
    margin-top: 1.5rem;
  }


  .c-tabs__content .c-regionItem {
    width: calc((100% - 1rem) / 2);
  }
}

.c-author {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 3rem;
}

.c-author__avatar {
  flex-shrink: 0;
  width: 2rem;
}


.c-author__avatar img {
  display: block;
  margin: 0;
  border-radius: 50%;
}

.c-author__initials {
  background: var(--clr-primary-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: .875rem;
  text-transform: uppercase;
  color: white;
  aspect-ratio: 1/1;
  width: 100%;
  line-height: 1;
}

.c-author__name {
  font-weight: 500;
  margin-bottom: 0;
  display: block;
  font-size: var(--fs-p-sm);
}

.c-author__date, .c-author__count {
  display: block;
  color: var(--clr-greyscale-500);
  font-size: var(--fs-p-sm);
  margin-bottom: 0;
  font-weight: 400;
}


.c-fileDownload {
  border-top: 1px solid var(--clr-greyscale-200);
  margin-top: 3rem;
  text-align: center;
}

.c-fileDownload__meta {
  display: flex;
  margin: 3rem 0;
}

.c-fileDownload__metaItem:not(:first-child) {
  border-left: 1px solid var(--clr-greyscale-200);
}

.c-fileDownload__metaItem {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  width: 100%;
  padding: 1rem 0;
}

.c-fileDownload__metaItem p {
  margin: 0;
}

.c-fileDownload__data {
  font-size: var(--fs-h3);
  font-weight: 700;
}

.c-fileDownload__btn {
  font-size: var(--fs-p);
  font-family: var(--ff-body);
  font-weight: 500;
  color: var(--clr-text);
  line-height: 1.1;
  text-decoration: none;
  display: inline-block;
  margin: auto;
  text-align: center;
  border: none;
  box-shadow: none;
  -webkit-appearance: none;
  border-radius: 2rem;
  color: white;
  background: var(--clr-primary-500);
  border: none;
  padding: .8rem 1.5rem;
  transition: .3s background, .3s color;
}

.c-fileDownload__btn:hover {
  color: white;
  background: var(--clr-primary-600);
}

@media screen and (max-width: 768px) {
  .c-fileDownload__meta {
    display: block;
  }

  .c-fileDownload__metaItem {
    gap: .5rem;
  }

  .c-fileDownload__metaItem:first-child {
    padding-top: 0;
  }

  .c-fileDownload__metaItem:last-child {
    padding-bottom: 0;
  }

  .c-fileDownload__metaItem:not(:first-child) {
    border-left: none;
    border-top: 1px solid var(--clr-greyscale-200);
  }
}

.u-max-width-10 {
  max-width: calc(var(--width-content) * 0.1);
}

.u-max-width-20 {
  max-width: calc(var(--width-content) * 0.2);
}

.u-max-width-30 {
  max-width: calc(var(--width-content) * 0.3);
}

.u-max-width-40 {
  max-width: calc(var(--width-content) * 0.4);
}

.u-max-width-50 {
  max-width: calc(var(--width-content) * 0.5);
}

.u-max-width-60 {
  max-width: calc(var(--width-content) * 0.6);
}

.u-max-width-70 {
  max-width: calc(var(--width-content) * 0.7);
}

.u-max-width-80 {
  max-width: calc(var(--width-content) * 0.8);
}

.u-max-width-90 {
  max-width: calc(var(--width-content) * 0.9);
}

.u-max-width-100 {
  max-width: var(--width-content);
}

[class*="u-max-width-"].has-text-align-center {
  margin-inline: auto;
}
