/*
Theme name: DKB
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-primary400: #5a98c1;
  --clr-primary500: #3B7CA3;
  --clr-primary600: #02597f;
  --clr-greyscale100: #F2F2F2;
  --clr-greyscale200: #E5E5E5;
  --clr-greyscale300: #CCCCCC;
  --clr-greyscale400: #B3B3B3;
  --clr-greyscale500: #999999;
  --clr-greyscale600: #7F7F7F;
  --clr-greyscale700: #666666;
  --clr-greyscale800: #4C4C4C;
  --clr-greyscale900:  #252525;

  --clr-white: #ffffff;

  --clr-text: var(--clr-greyscale900);
  --clr-text-light: var(--clr-greyscale600);
  --clr-text-reverse: white;

  /* widths */
  --width-content: 1450px;
  --width-gutter: 3rem;
  /* heights */
  --height-header: 109px;
  /* spacing */
  --b-space: 128px;
  --b-space-lg: calc(var(--b-space) * 3);
  --b-space-sm: 100px;
  /* font family */
  --ff-body: "Inter", sans-serif;
  --ff-heading: "Literata", serif;
  /* font sizes */
  --fs-h1: 3.75rem;
  --fs-h2: 3.125rem;
  --fs-h3: 2.0rem;
  --fs-h4: 1.875rem;
  --fs-h5: 1.125rem;
  --fs-h6: .9375rem;
  --fs-p-lg: 1.5rem;
  --fs-p: 1.25rem;
  --fs-p-sm: 1rem;

  --wp--preset--font-size--md: var(--fs-p);
  --wp--preset--font-size--sm: var(--fs-p-sm);
  --wp--preset--font-size--lg: var(--fs-p-lg);


  --wp--preset--shadow--natural: 6px 6px 24px rgba(0, 0, 0, 0.1)
}

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

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

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

}

@media screen and (max-width:600px) {
  :root {
    --height-header: 60px;
    /* font sizes */

    --fs-h1: 2.25rem;
    --fs-h2: 2rem;
    --fs-h3: 1.75rem;
    --fs-h4: 1.5rem;

    --fs-p-lg: 1.25rem;
    --fs-p: 1rem;

    /* spacing */
    /* --b-space-lg: 80px; */
    --b-space: 68px;
    --b-space-sm: 56px;

    --width-gutter: 1.5rem;
  }
}

@media screen and (max-width:480px) {
  :root {
    --fs-h1: 2.25rem;
  }
}

/* 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--full {
  max-width: 100%;
  padding: 0;
}

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

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

.u-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: 400;
	font-size: var(--fs-p);
	margin: 0;
	color: var(--clr-text);
  position: relative;
  line-height: 1.6;
	-moz-osx-font-smoothing:grayscale;
	-webkit-font-smoothing:antialiased;
}

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

b, strong {
  font-weight: 700;
}

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

h1, .h1 {
  font-size: var(--fs-h1);
  line-height: 1.1;
  font-weight: 600;
  margin: 0 0 2rem;
}


h2, .h2 {
  font-size: var(--fs-h2);
  line-height: 1.2;
  margin: calc(var(--b-space) * 2/3) 0 1.5rem;
}

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

h3 {
  font-size: var(--fs-h3);
  line-height: 1.2;
  margin: 3rem 0 1.75rem;
  font-weight: 400;

}

.wp-block-image + h3 {
  margin-top: 1rem;
}

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

h4 {
  font-size: var(--fs-h4);
  line-height: 1.2;
  margin: 2.5rem 0 .75rem;
  font-weight: 400;
}

.wp-block-image + h4 {
  margin-top: 1rem;
}

h5 {
  font-size: var(--fs-h5);
  line-height: 1.6;
  margin: 24px 0 12px;
  font-weight: 400;
  line-height: 1.3;
}

h6 {
  font-size: var(--fs-h6);
  font-family: var(--ff-body);
  font-weight: 700;
  line-height: 1.6;
  margin: 1rem 0 .5rem
}

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

h1.has-background, h2.has-background, h3.has-background, h4.has-background, h5.has-background, h6.has-background {
  padding: 1rem 1.5rem;
  width: max-content;
  max-width: 100%;
}

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

    margin-bottom: 1.25rem;
  }
}

p {
  margin-bottom: .75rem;
}

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

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

p.has-sm-font-size {
  margin-bottom: 1rem;
}

p.has-sm-font-size:last-child {
  margin-bottom: 0;
}

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

p.has-lg-font-size {
  margin-bottom: 1rem;
  line-height: 1.2;
}

p.has-lg-font-size:last-child {
  margin-bottom: 0;
}

.is-sticky-sidebar {
  position: sticky;
  top: 1rem;
}

.is-layout-flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  grid-gap: 1.5rem
}

.is-vertical {
  flex-direction: column;
  align-items: flex-start;
}

.is-nowrap {
  flex-wrap: nowrap;
}


.is-content-justification-left {
  justify-content: flex-start;
}

.is-content-justification-right {
  justify-content: flex-end;
}

.is-content-justification-center {
  justify-content: center;
}

.is-vertically-aligned-center {
  align-self: center;
}

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

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

ul.has-sm-font-size:last-child {
  margin-bottom: 0;
}

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

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


ol.has-sm-font-size:last-child {
  margin-bottom: 0;
}

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

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

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

blockquote {
  display: block;
  margin: 40px 0;
  padding-left: 32px;
  border-left: 4px solid var(--clr-primary500);
}

blockquote p {
  margin: 0 12px 0 0;
  font-size: 22px;
  font-style: italic;
}

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

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

blockquote cite {
  font-style: normal;
  display: block;
  margin: 12px 0 0;
  font-size: var(--fs-p-sm);
}

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

  blockquote {
    display: block;
    margin: 30px 0;
    padding-left: 25px;
  }

  blockquote p {
    font-size: 19px;
  }

}

a, a:focus{
   outline: 0;
}

a {
  color: var(--clr-primary500);
  text-decoration: none;
	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-primary600);
}


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

.wp-block-separator, hr {
  display: block;
  padding: 0;
  height: 1px;
  background: var(--clr-greyscale200);
  margin: calc(var(--b-space) / 2) 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;
  background-repeat: no-repeat;
}

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

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

.c-section--sm {
  padding: calc(var(--width-gutter) * 1.25) 0;
}

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

.c-section--rounded {
  border-radius: .625rem;
  overflow: hidden;
  max-width: calc(var(--width-content) - (var(--width-gutter) * 2));
  width: calc(100% - (var(--width-gutter) * 2));
  margin: 0 auto;
}

.c-section--rounded:first-child {
  margin-top: var(--width-gutter);
}

.c-section--rounded + .c-section--rounded, .c-section--rounded + .has-black-background-color {
  margin-top: var(--width-gutter);
}

.c-section--rounded:last-child {
  margin-bottom: var(--width-gutter);
}


/* .content-wrap > .c-section--rounded:last-child {
  margin-bottom: 0;
} */

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

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

.c-section__overlay {
  --overlay-color: 0, 0, 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(var(--overlay-color), 0.4);
}

.c-section__overlay--primary {
  --overlay-color: 37, 90, 168;
}

.c-section__overlay--gradient {
  top: 25%;
  background: linear-gradient(0deg, rgba(var(--overlay-color), .65) 0%, rgba(var(--overlay-color), .65) 50%, rgba(var(--overlay-color), 0) 100%);
}

.c-section--rounded .c-section__overlay {
  border-radius: .625rem;
}

@media screen and (min-width: 601px) {
  .c-section--rounded .c-section__overlay--gradient {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}


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

.wp-block-image {
  margin: 1.25rem 0;
}

.wp-block-image:first-child {
  margin-top: 0;
}

.wp-block-image:last-child {
  margin-bottom: 0;
}

.wp-block-image img {
  display: block;
}

.wp-block-image.is-style-rounded-corners img, img.is-style-rounded-corners {
  border-radius: 1rem;
}

.is-vertically-aligned-center .wp-block-image img {
  margin-inline: auto;
}

.aligncenter.wp-block-image {
  margin-left: auto;
  margin-right: auto;
}

.u-wc--full > .wp-block-image img {
  width: 100%;
}

.wp-block-image figcaption {
  text-transform: uppercase;
  font-size: 12px;
  color: #656565;
  margin: 0;
  padding: 12px 12px 0 12px;
  letter-spacing: .05em;
}

.wp-block-embed {
  margin: 40px auto;
}

.wp-block-embed iframe  {
  display: block;
  margin: 0 auto;
}

.wp-block-embed:first-child {
  margin-top: 0;
}

.wp-block-embed:last-child {
  margin-bottom: 0;
}

.wp-embed-aspect-4-3 iframe {
  aspect-ratio: 4 / 3;
  height: 100%;
  width: 100%;
}

.wp-embed-aspect-16-9 iframe {
  aspect-ratio: 16 / 9;
  height: 100%;
  width: 100%;
}

.wp-block-audio {
  width: 100%;
}

.wp-block-audio audio {
  display: block;
  min-width: initial;
}

.wp-block-list.is-style-checklist {
  list-style-type: none;
  margin-left: 0;
  padding-left: 0;
}

.wp-block-list.is-style-checklist li {
  display: flex;
  gap: .75rem;
  padding-left: 0;
}

.wp-block-list.is-style-checklist li:before {
  content: '';
  width: 1.4375rem;
  height: 1.375rem;
  flex-shrink: 0;
  position: relative;
  top: .25rem;
  background: url('imgs/icon-check.svg') no-repeat center center / 1.4375rem 1.375rem;
}

.wp-block-buttons {
  margin: 2rem 0;
  grid-gap: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

/* .wp-block-buttons:has(.is-style-tertiary) {
  margin: 1rem 0;
} */

.wp-block-buttons:first-child {
  margin-top: 0;
}

.wp-block-buttons:last-child {
  margin-bottom: 0;
}

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

  .wp-block-buttons {
    margin: 1.5rem 0;
  }

}

.wp-block-button__link:disabled, .wp-block-button__link--disabled {
  opacity: .5;
  cursor: wait;
}

.wp-block-button__link {
  font-size: 1rem;
  font-family: var(--ff-body);
  font-weight: 700;
  color: var(--clr-text);
  flex-shrink: 0;
  line-height: 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: 99em;
  transition: .3s background, .3s color, .3s border;
}

.wp-block-button__link svg {
  flex-shrink: 0;
  margin-left: auto;
}

.wp-block-button:not([class*="is-style-"]) .wp-block-button__link, .is-style-primary .wp-block-button__link {
  color: white;
  background: var(--clr-primary500);
  padding: .85rem 1.5rem;
}

.wp-block-button:not([class*="is-style-"]) .wp-block-button__link:hover, .is-style-primary .wp-block-button__link:hover {
  color: white;
  background: var(--clr-primary600);
}

.is-style-primary-reverse .wp-block-button__link {
  color: var(--clr-primary500);
  background: white;
  padding: .85rem 1.5rem;
}

.is-style-primary-reverse .wp-block-button__link:hover {
  color: white;
  background: var(--clr-primary600);
}


.wp-block-button__link.disabled {
  opacity: .5;
  pointer-events: none;
}

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

  .wp-block-buttons {
    flex-direction: column;
    gap: .5rem;
    align-items: flex-start;
  }

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

}

/*header styles*/

.c-mainHeader {
  position: sticky;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  background:  white;
  height: var(--height-header);
  transition: .3s background, .3s height, .3s opacity, .3s box-shadow;
}

.c-mainHeader--hidden {
  opacity: 0;
  pointer-events: none;
}

.is-scrolled .c-mainHeader {
  box-shadow: 2px 2px 12px rgba(0,0,0,.1);
}

.c-mainHeader .u-wc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 100%;
}


.c-mainHeader__right {
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  gap: .5rem;
  margin-top: .5rem;
}

.c-mainHeader__topActions {
  margin-left: auto;
}

.c-mainHeader__logo {
  display: block;
  margin-left: calc(var(--width-gutter) * -1);
}

.c-mainHeader--minimal .c-mainHeader__logo {
  margin-left: auto;
  margin-right: auto;
}

.c-mainHeader__logo img {
  display: block;
  height: var(--height-header);
  object-fit: contain;
  width: initial;
}

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

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

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

.c-mainHeader__topActions a {
  font-size: 1rem;
  color: var(--clr-text);
  text-decoration: none;
  display: block;
  font-weight: 600;
}

.c-mainHeader__topActions a:hover {
  color: var(--clr-primary500);
}

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

  .c-mainHeader__right {
    align-self: center;
    margin-left: auto;
    margin-top: 0;
  }
}


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

  .c-mainHeader .u-wc {
    gap: .5rem;
  }
}

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

.c-mainMenu  {
  line-height: 1.5;
  margin: 0 auto;
}

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

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

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

.c-mainMenu li a {
  font-size: var(--fs-p);
  font-weight: 400;
  color: var(--clr-text);
  position: relative;
  text-decoration: none;
  padding: 0;
  transition:.3s color;
  display: block;
}

.c-mainMenu li.c-menuBtn a {
  color: white;
  background: var(--clr-primary500);
  padding: .85rem 1.5rem;
  font-weight: 700;
  border-radius: 99em;
  font-size: 1rem;
  line-height: 1;
  transition: .3s color, .3s background;
}

.c-mainMenu li.c-menuBtn a:hover {
  background: var(--clr-primary600);
  color: white;
}

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

.c-mainMenu li.menu-item--tel a {
  display: flex;
  align-items: center;
  gap: .5rem;
  justify-content: flex-start;
}

.c-mainMenu li.menu-item--tel a:before {
  content: '';
  background: url('imgs/icon-phone.svg') center center / 1.3125rem 1.3125rem;
  width: 1.3125rem;
  height: 1.3125rem;
  display: block;
}

.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 .sub-menu {
  padding: 1rem 0;
}

.c-mainMenu .sub-menu li {
  padding: .25rem 0;
  border-top: 1px solid #ececec;
  margin: 0;
}

.c-mainMenu .sub-menu li:first-child {
  border-top: 0;
  padding-top: 0;
}

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

.c-mainMenu .sub-menu a, .c-mainMenu .mega-menu-item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
  flex-wrap: nowrap;
}

.c-mainMenu .menu-item-has-children > a:after {
  content: '';
  width: .625rem;
  height: .625rem;
  flex-shrink: 0;
  background: url('imgs/icon-menu-arrow.svg') no-repeat center center / contain;
  margin-top: 1px;
  transition: .3s transform;
}

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

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

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

  .c-mainMenu .sub-menu .menu-item-has-children > a:after {
    transform: rotate(-90deg);
  }

  .c-mainMenu .menu-item-has-children {
    --dropdown-position-offset: .5rem;
    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: 250px;
    display: block;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    background: white;
    left: -1.5rem;
    top: calc(100% + var(--dropdown-position-offset));
    padding: 1rem 1.5rem;
    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-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);
  }

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

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

  .c-mainMenu .sub-menu a {
    font-size: 1.2rem;
  }

}

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

  .c-mainHeader__menuWrap {
    margin-right: 0;
    background: white;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    position: fixed;
    top: var(--height-header);
    left: 0;
    right: 0;
    height: calc(100vh - var(--height-header));
    height: calc(100svh - var(--height-header));
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    margin-left: 0;
    margin-right: 0;
    transition: .3s opacity, 0s visibility .3s;
    padding: 24px var(--width-gutter);
  }

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

  .c-mainMenu {
    width: 100%;
    margin: 0;
    height: 100%;
  }

  .c-mainMenu ul {
    gap: 1.5rem;
  }

  .c-mainMenu > ul {
    display: flex;
    flex-direction: column;
    align-items: start;
    height: 100%;
  }

  .c-mainMenu li {
    margin: 0;
    width: 100%;
  }

  .c-mainMenu > ul > li {
    margin: 0;
  }

  .c-mainMenu li a {
    justify-content: space-between;
    font-size: 1.2rem;
  }

  .c-mainMenu .sub-menu {
    margin-left: 1rem;
    display: none;
  }

  .c-mainMenu .sub-menu a {
    font-size: 1.1rem;
  }

  .c-mainMenu .menu-item-has-children-active > a:after {
    transform: rotate(180deg);
  }

  .c-mainMenu li.c-menuBtn a {
    width: max-content;
  }

}

@media screen and (max-width: 600px) {
  .c-mainMenu ul {
    gap: 1rem;
  }
}

.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-primary500);
  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-primary500);
  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: 1300px) {

  .c-navIcon {
    display: flex;
  }
}

/* gutenberg block / group styling */

.has-primary-500-background-color {
  background-color: var(--clr-primary500);
  color: var(--clr-text-reverse);
}

.has-primary-900-background-color {
  background-color: var(--clr-primary900);
  color: var(--clr-text-reverse);
}

.has-black-background-color {
  background-color: black;
  color: white;
}

.has-white-background-color {
  background-color: white;
  color: var(--clr-text);
}

.has-grey-900-background-color {
  background-color: var(--clr-greyscale900);
  color: var(--clr-text-reverse);
}

.has-grey-800-background-color {
  background-color: var(--clr-greyscale800);
  color: var(--clr-text-reverse);
}

.has-grey-700-background-color {
  background-color: var(--clr-greyscale700);
  color: var(--clr-text-reverse);
}

.has-grey-600-background-color {
  background-color: var(--clr-greyscale600);
  color: var(--clr-text-reverse);
}

.has-grey-500-background-color {
  background-color: var(--clr-greyscale500);
  color: var(--clr-text-reverse);
}

.has-grey-400-background-color {
  background-color: var(--clr-greyscale400);
  color: var(--clr-text-reverse);
}

.has-grey-300-background-color {
  background-color: var(--clr-greyscale300);
  color: var(--clr-text);
}

.has-grey-200-background-color {
  background-color: var(--clr-greyscale200);
  color: var(--clr-text);
}

.has-grey-100-background-color {
  background-color: var(--clr-greyscale100);
  color: var(--clr-text);
}

.has-primary-50-color {
  color: var(--clr-primary50);
}

.has-primary-500-color {
  color: var(--clr-primary500);
}

.has-primary-900-color {
  color: var(--clr-primary900);
}

.has-white-color {
  color: var(--clr-white);
}

.has-grey-100-color {
  color: var(--clr-greyscale100);
}

.has-grey-200-color {
  color: var(--clr-greyscale200);
}

.has-grey-300-color {
  color: var(--clr-greyscale300);
}

.has-grey-400-color {
  color: var(--clr-greyscale400);
}

.has-grey-500-color {
  color: var(--clr-greyscale500);
}

.has-grey-600-color {
  color: var(--clr-greyscale600);
}

.has-grey-700-color {
  color: var(--clr-greyscale500);
}

.has-grey-800-color {
  color: var(--clr-greyscale800);
}

.has-grey-900-color {
  color: var(--clr-greyscale900);
}

.wp-block-columns {
  margin: calc(var(--b-space) * 2/3) 0;
  grid-gap: 7%;
}

.has-background.wp-block-columns, .has-background.wp-block-column {
  padding: 3.75rem;
  border-radius: .625rem;
}

.wp-block-columns:first-child {
  margin-top: 0;
}

.wp-block-columns:last-child {
  margin-bottom: 0;
}

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

  .wp-block-columns:not(.is-not-stacked-on-mobile) {
    display: flex;
    flex-direction: column;
    grid-gap: 2.5rem;
  }

  .wp-block-columns:not(.is-not-stacked-on-mobile) .wp-block-column:not(.u-fullRight) {
    width: 100% !important;
  }


}

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


  .has-background.wp-block-columns, .has-background.wp-block-column {
    padding: 2rem;
  }

  .wp-block-columns:not(.is-not-stacked-on-mobile) {
    grid-gap: 2rem !important;
  }

}


.wp-block-media-text {
  margin: var(--b-space) auto;
  column-gap: 0;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}

.wp-block-media-text.has-media-on-the-right {
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}

.wp-block-media-text:first-child {
  margin-top: 0;
}


.wp-block-media-text:last-child {
  margin-bottom: 0;
}

.wp-block-media-text + .wp-block-media-text {
  margin-top: calc(var(--b-space) * -1);
}

.wp-block-media-text .wp-block-media-text__content {
  padding: 3.5rem;
}

.wp-block-media-text__content :first-child {
  margin-top: 0;
}


.wp-block-media-text > .wp-block-media-text__media {
  align-self: stretch;
}

/*
.wp-block-media-text__media img {
  aspect-ratio: 1/1;
  object-fit: cover;
  height: 100%;
  min-height: 100%;
}*/


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

  .wp-block-media-text, .wp-block-media-text.has-media-on-the-right {
    display: grid;
    grid-template-columns: 100% !important;
  }

  .wp-block-media-text  .wp-block-media-text__media {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    grid-row: 2 !important;
    grid-column: 1 !important;
    width: 100%;
  }

  .wp-block-media-text  .wp-block-media-text__media img {
    aspect-ratio: 16/9;
    width: 100%;
  }

  .wp-block-media-text  .wp-block-media-text__content {
    margin-left: auto;
    margin-right: auto;
    grid-row: 1 !important;
    grid-column: 1 !important;
    padding: var(--width-gutter);
  }


}

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

  .wp-block-media-text  .wp-block-media-text__media {
    max-width: 100%;
  }

  .wp-block-media-text .wp-block-media-text__media {
    margin-top: 32px;
  }

  .wp-block-media-text {
    margin: 52px auto;
  }

  .wp-block-media-text:first-child {
    margin-top: 0;
  }

  .wp-block-media-text:last-child {
    margin-bottom: 0;
  }

}

.wpcf7, .wp-block-contact-form-7-contact-form-selector {
  margin: 48px auto;
}

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

  .wpcf7, .wp-block-contact-form-7-contact-form-selector  {
    margin: 32px 0;
  }
}

.wpcf7:first-child, .wp-block-contact-form-7-contact-form-selector:first-child {
  margin-top: 0;
}

.wpcf7:last-child, .wp-block-contact-form-7-contact-form-selector:first-child {
  margin-bottom: 0;
}

.wpcf7-spinner {
  vertical-align: middle;
}

.wpcf7__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  grid-gap: 32px;
}
.wpcf7__disclaimer {
  font-size: var(--fs-p-sm);
  margin: 0;
}

.wpcf7__disclaimer a {
  color: white;
}

.wpcf7__footer .wp-block-button__link {
  flex-shrink: 0;
}

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

  .input-cols {
    display: flex;
  }

  .input-col {
    width: calc((99.99% - 12px) / 2);
    margin-right: 12px;
  }

  .input-col:last-child {
    margin-right: 0;
  }

}

label, legend, body .gform_wrapper.gravity-theme .gfield_label {
  font-weight: 600;
  font-size: 1.235rem;
  margin: 0 0 .75rem 0;
  display: block;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
input[type="search"],
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,
body .gform_wrapper.gravity-theme .gfield select {
  outline: none;
  display: block;
  width: 100%;
  border-radius: 0;
  padding: .825rem 0;
  font-weight: inherit;
  font-size: var(--fs-p);
  margin-bottom: 0;
  font-family: inherit;
  background: transparent !important;
  border: none;
  border-bottom: 2px solid var(--clr-greyscale300);
  color: var(--clr-greyscale900);
  transition: .3s border, .3s background;
}

textarea, body .gform_wrapper.gravity-theme textarea {
  height: 180px !important;
  border: none;
  border-bottom: 2px solid var(--clr-greyscale300);
  padding: .825rem 0;
  border-radius: 0;
  font-weight: inherit;
  font-size: var(--fs-p);
}


input[type="text"]::placeholder,
input[type="phone"]::placeholder,
input[type="email"]::placeholder,
input[type="password"]::placeholder,
body .gform_wrapper.gravity-theme input[type="email"]::placeholder,
body .gform_wrapper.gravity-theme input[type="text"]::placeholder,
body .gform_wrapper.gravity-theme input[type="tel"]::placeholder,
body .gform_wrapper.gravity-theme input[type="password"]::placeholder,
textarea::placeholder,
body .gform_wrapper.gravity-theme textarea::placholder {
  color: var(--clr-greyscale600);
  opacity: 1;
}




select,
body .gform_wrapper.gravity-theme .gfield select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent url('imgs/triangle.svg') no-repeat 100% center / .875rem .625rem !important;
  color: var(--clr-text);
  padding-right: 1.7rem;
}

body .gform_wrapper.gravity-theme .gfield select[data-has-value="false"]  {
  color: var(--clr-greyscale600);
}

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

input[type="submit"] {
  font-size: 1rem;
  font-family: var(--ff-body);
  font-weight: 700;
  color: white;
  flex-shrink: 0;
  line-height: 1 !important;
  text-decoration: none;
  display: inline-flex;
  grid-gap: .5rem;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: none;
  -webkit-appearance: none;
  border-radius: 99em;
  color: white;
  background: var(--clr-primary500);
  padding: .85rem 1.5rem;
  transition: .3s background, .3s color, .3s border;
}

input[type="submit"]:hover {
  color: white;
  background: var(--clr-primary600);
}

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

/* gravity forms styling */

.gform_wrapper {
  margin-right: auto;
  margin: calc(var(--b-space) * 1/3) auto 0;
}

.gform_wrapper:first-child {
  margin-top: 0;
}

.gform_wrapper:last-child {
  margin-bottom: 0;
}

.ginput_container.ginput_container_consent {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.ginput_container.ginput_container_consent label {
  font-weight: 400;
  font-size: 1rem;
  margin: 0;
}

body .gform_wrapper.gravity-theme .gform_page_footer input {
  margin-bottom: 0;
}

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

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);
  padding-bottom: 0;
  margin-bottom: 0;
}

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

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

.gform_wrapper .gfield_required {
  color: inherit !important;
}

.gform_required_legend {
  display: none;
}

.gfield_validation_message {
  margin: 4px 0 !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;
}

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

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

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

@media screen and (max-width: 600px) {
  body .gform_wrapper.gravity-theme .gform_fields {
    grid-row-gap: 1rem;
  }

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

}

.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"]):not([type="submit"]) {
    line-height: inherit !important;
  }
}

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

  label {
    margin: 0 0 8px 0;
    font-size: 18px;
  }

  input[type="text"], input[type="tel"], input[type="email"], textarea, select {
    font-size: 16px;
  }

  textarea {
    height: 200px;
  }


}

.gform_wrapper.newsletter_wrapper {
  margin-top: 1rem;
  margin-bottom: 0;
}


body .gform_wrapper.newsletter_wrapper input[type="email"], body .gform_wrapper.newsletter_wrapper input[type="text"] {
  color: white;
  border-bottom: 1px solid white;
  font-size: var(--fs-p-sm);
}

body .gform_wrapper.newsletter_wrapper input[type="email"]::placeholder, body .gform_wrapper.newsletter_wrapper input[type="text"]::placeholder {
  color: white;
}

body .gform_wrapper.newsletter_wrapper input[type="submit"] {
  background: white;
  color: var(--clr-primary500);
  padding: .625rem 1.25rem;
}

body .gform_wrapper.newsletter_wrapper input[type="submit"]:hover {
  color: white;
  background: var(--clr-primary500);
}

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

.wp-block-table {
  padding: 24px 0 32px;
}

.wp-block-table th {
  text-align: left;
  font-size: 20px;
  font-weight: 700;
  padding: 0 8px 8px;
}

.wp-block-table td {
  padding: 8px;
  border: none;
  border-bottom: 1px solid #ececec;
}

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

  .wp-block-table {
    padding: 18px;
  }

  .wp-block-table th {
    font-size: 0;
  }

  .wp-block-table th:after {
    content: attr(data-label);
    font-size: 17px;
  }
}

/* .c-modal {
  z-index: 99999;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  visibility: hidden;
  padding: 50px;
  opacity: 0;
  color: var(--clr-text);
  transition: .3s opacity, 0s visibility .3s;
}

.c-modal__overlay {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:  rgba(0, 0, 0, .3);
}

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

.c-modal--active .c-modal__outerContainer {
  transform: scale(1);
}

.c-modal__outerContainer {
  display: flex;
  flex-direction: column;
  margin: auto;
  width: 100%;
  max-width: 1200px;
  max-height: 100%;
  transform: scale(.9);
  position: relative;
  z-index: 2;
  transition: .3s transform;
}

.c-modal__container {
  background: white;
  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;
  border-radius: .75rem;
  padding: 3rem;
  overflow-y: auto;
  display: flex;
}

.c-modal__close {
  background: rgba(255,255,255,.9) url('imgs/icon-close-modal.svg') no-repeat center center / 1.375rem 1.375rem;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  display: block;
  position: absolute;
  z-index: 10;
  right: 1rem;
  top: 1rem;
  transition: .3s background;
}

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

  .c-modal__container {
    padding: 2rem;
  }
}

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

  .c-modal {
    padding: 2rem 1.5rem;
  }

  .c-modal__container {
    padding: 1.5rem;
  }

} */

.c-modal {
  --scrollbar-spacing: 1rem;
  z-index: 99999;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  visibility: hidden;
  padding: 50px;
  opacity: 0;
  color: var(--clr-text);
  transition: .3s opacity, 0s visibility .3s;
}

.c-modal__overlay {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:  rgba(0, 0, 0, .3);
}

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

.c-modal--active .c-modal__outerContainer {
  transform: scale(1);
}

.c-modal__outerContainer {
  display: flex;
  flex-direction: column;
  margin: auto;
  width: 100%;
  max-width: 1200px;
  max-height: 100%;
  transform: scale(.9);
  position: relative;
  z-index: 2;
  transition: .3s transform;
}

.c-modal__container {
  background: white;
  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;
  border-radius: .75rem;
  padding: 3.5rem calc(3.5rem - var(--scrollbar-spacing)) 3.5rem 3.5rem;
  overflow: hidden;
  display: flex;
}

.c-modal__close {
  background: url('imgs/icon-close-modal.svg') no-repeat center center / 1.375rem 1.375rem;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  display: block;
  position: absolute;
  z-index: 10;
  right: 1rem;
  top: 1rem;
  transition: .3s background;
}

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

  .c-modal__container {
    padding: 2rem calc(2rem - var(--scrollbar-spacing)) 2rem 2rem;
  }
}

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

  .c-modal {
    padding: 2rem 1.5rem;
  }
/*
  .c-modal__container {
    padding: 1.5rem;
  } */

}

@media screen and (min-width: 601px) {
  .is-style-mobile-only {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .is-style-desktop-only {
    display: none;
  }
}


@media screen and (max-width: 600px) {
  #wpadminbar {
    top: -46px;
  }
}


.c-newsItems {
  display: flex;
  flex-wrap: wrap;
  --gap: 100px;
  --columns: 2;
  max-width: 1100px;
  margin: calc(var(--b-space) * (4/6)) auto;
  gap: var(--gap);
}

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

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

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

@media screen and (max-width: 1280px) {
  .c-newsItems {
    --gap: 60px;
  }
}


@media screen and (max-width: 600px) {
  .c-newsItems {
    --columns: 1;
    --gap: 40px;
  }
}

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

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

.c-newsItem h4 {
  margin: 1.5rem 0;
}

.c-newsItem__thumb {
  margin-bottom: 1.75rem;
  display: block;
}

.c-newsItem__thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.c-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.c-tag {
  font-size: 1rem;
  font-weight: 500;
}

.c-tags--blogSingle {
  justify-content: center;
}

.c-tags--blogSingle .c-tag {
  font-weight: 700;
  font-family: var(--ff-heading);
}

.c-newsItem__link {
  text-decoration: none;
  font-size: 16px;
  margin-top: auto;
}


.wp-block-social-links {
  grid-gap: .75rem;
  display: flex;
}

.wp-social-link {
  margin: 0;
  padding: 0;
  transition: .3s background
}

.wp-block-social-link:hover {
  transform: none;
}

.wp-block-social-links .wp-social-link a {
  padding: 0;
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.wp-block-social-links.is-style-logos-only .wp-social-link {
  color: var(--clr-primary900);
  transition: .3s color;
}

.wp-block-social-links.is-style-logos-only .wp-social-link:hover {
  color: var(--clr-secondary500);
}

.wp-block-social-links .wp-social-link svg, .wp-block-social-links.is-style-logos-only .wp-social-link svg {
  width: 2rem;
  height: auto;
}


.c-pagination  {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.c-pagination__number {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: .3rem .75rem;
  color: var(--clr-greyscale900);
  font-size: .9375rem;
  background: transparent;
  font-weight: 600;
  transition: .3s background, .3s color;
}

.c-pagination__number a {
  color: inherit;
}

.c-pagination__number:not(.c-pagination__number--current):hover {
  color: var(--clr-primary700);
  background: var(--clr-greyscale100);
}

.c-pagination__number--current {
  color: white;
  background: var(--clr-primary500);
}

.c-pagination__next, .c-pagination__prev {
  flex-shrink: 0;
}

.c-pagination__next a, .c-pagination__prev a, span.c-pagination__next, span.c-pagination__prev {
  text-decoration: none;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: .5rem;
  color: var(--clr-greyscale900);
  flex-shrink: 0;
  color: inherit;
}

.c-pagination__next a:hover, .c-pagination__prev a:hover {
  color: var(--clr-primary500);
}

.c-pagination__next.disabled, .c-pagination__prev.disabled {
  pointer-events: none;
  opacity: .2;
}

.c-pagination__next a:after, .c-pagination__prev a:before, span.c-pagination__next:after, span.c-pagination__prev:before  {
  content: '';
  background: url('imgs/icon-pagination-arrow.svg') center center  / 1rem 1rem;
  width: 1rem;
  height: 1rem;
}

.c-pagination__prev a:before, span.c-pagination__prev:before {
  transform: rotate(180deg);
}

@media screen and (max-width: 600px) {
  .c-pagination__next, .c-pagination__prev {
    font-size: 0;
  }

  .c-pagination__next a, .c-pagination__prev a {
    gap: 0;
  }

}


.c-accordionWrap {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  margin: calc(var(--b-space) * 1/3) auto;
}

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

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

.c-accordion {
  color: var(--clr-text);
  padding: 1.875rem;
  border-radius: .625rem;
  background: var(--clr-greyscale100);
}

.c-accordion__title {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  grid-gap: 1.5rem;
  cursor: pointer;
  transition: .3s background;
  border: none;
  outline: none;
  box-shadow: none;
  text-align: left;
  line-height: inherit;
  transition: .3s color;
}

.c-accordion__title p {
  font-weight: 700;
}

.c-accordion__title * {
  margin: 0;
}

.c-accordion__action {
  width: 2rem;
  height: 2rem;
  background: var(--clr-primary500);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: .3s background;
}

.c-accordion__action:hover {
  background: var(--clr-primary600);
}


.c-accordion__action:after {
  content: '';
  height: 1px;
  position: absolute;
  top: 50%;
  width: .8125rem;
  left: 50%;
  transform: translateX(-50%);
  background: white;
}

.c-accordion__action:before {
  content: '';
  width: 1px;
  height: .8125rem;
  position: absolute;
  left: 50%;
  top:50%;
  transform: translateY(-50%);
  background: white;
  transition: .3s opacity;
}

.c-accordion--active .c-accordion__action:before {
  opacity: 0;
}

.c-accordion--active .c-accordion__action {
  background: var(--clr-primary600);
}

.c-accordion__content {
  display: none;
  padding: 1rem 0 0;
}

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

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

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

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

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

.u-ml-auto {
  margin-left: auto;
}

.u-bg-position-center {
  background-position: center center;
}

.u-bg-position-top-center {
  background-position: top center;
}

.u-bg-position-bottom-center {
  background-position: bottom center;
}

.u-bg-size-cover {
  background-size: cover;
}

.u-bg-size-100-auto {
  background-size: 100% auto;
}

.search-term-empty .search-results {
  display: none;
}

.c-searchResult {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--clr-greyscale100);
}

.c-searchForm {
  display: flex;
  margin: 0 auto;
  max-width: 600px;
}

.c-searchForm__input[type="text"] {
  width: 100%;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  margin: 0;
}

.c-searchForm__btn[type="submit"] {
  flex-shrink: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.c-overlay {
  position: fixed;
  z-index: 998;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0,0,0,.2);
  visibility: hidden;
  opacity: 0;
  transition: .3s opacity, 0s visibility .3s;
}

@media screen and (min-width: 1231px) {
  body:has(.mega-menu-item:hover) .c-overlay, body:has(.mega-menu-item:focus-within) .c-overlay {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
  }
}

.wp-block-search {
  margin: 2rem auto;
  max-width: 600px;
}

.wp-block-search:first-child {
  margin-top: 0;
}

.wp-block-search:last-child {
  margin-bottom: 0;
}

.wp-block-search__inside-wrapper  {
  gap: 0;
}

.wp-block-search__button {
  margin: 0;
  border-top-right-radius: .375rem;
  border-bottom-right-radius: .375rem;
  color: white;
  background: var(--clr-primary500);
  padding: 1rem 1.25rem;
  font-size: 1rem;
  font-family: var(--ff-body);
  font-weight: 700;
  border: none;
  box-shadow: none;
  line-height: 1;
  -webkit-appearance: none;
  transition: .3s background;
}

.wp-block-search__button:hover {
  color: white;
  background: var(--clr-primary600);
}

.wp-block-search--light .wp-block-search__button {
  background: var(--clr-primary900);
}

.wp-block-search--light .wp-block-search__button:hover {
  background: var(--clr-greyscale900);
}

.wp-block-search__input[type="search"] {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  display: block;
  outline: none;
  padding: 0 1rem;
}

.wp-block-search:not(.wp-block-search--light) .wp-block-search__input[type="search"] {
  border: none;
}



.has-background.wp-block-group {
  padding: 2rem;
  border-radius: .625rem;
}

.c-teamItems {
  display: flex;
  flex-wrap: wrap;
  gap: 1.875rem;
  row-gap: 3rem;
  margin: calc(var(--b-space) * 1/2) 0;
}

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

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

.c-teamItems .c-teamItem {
  width: calc((100% - 3.75rem) / 3);
}

@media screen and (max-width: 768px) {
  .c-teamItems .c-teamItem {
    width: calc((100% - 1.875rem) / 2);
  }
}

@media screen and (max-width: 540px) {
  .c-teamItems .c-teamItem {
    width: 100%;
  }
}

.c-teamItem {
  position: relative;
}

.c-teamItem h4 {
  margin: 0 0 .75rem;
}

.c-teamItem__thumb {
  margin-bottom: 1.25rem;
  position: relative;
  overflow: hidden;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  padding: 0;
}

.c-teamItem__thumb:after {
  content: '';
  position: absolute;
  width: 1.375rem;
  height: 1.375rem;
  right: 2rem;
  bottom: 2rem;
  z-index: 1;
  background: url('imgs/icon-team-link.png') center center / 1.375rem 1.375rem;
}

.c-teamItem__thumb img {
  display: block;
  margin: 0;
  aspect-ratio: 1/1;
  object-fit: cover;
  width: 100%;
  transition: .6s transform;
}

.c-teamItem__thumb:hover img {
  transform: scale(1.0875) rotate(.5deg);
}

.c-teamItem__occupation {
  display: block;
  width: max-content;
  padding: .5rem 1rem;
  font-size: 1rem;
  background: var(--clr-greyscale100);
  color: var(--clr-text);
  font-weight: 400;
  margin: 1.25rem 0 0;
}

/* .c-teamItem__phone {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  color: var(--clr-primary900);
}


.c-teamItem__phone:before {
  content: '';
  background: url('imgs/icon-phone.svg') center center / 1rem 1rem;
  width: 1rem;
  height: 1rem;
} */

@media screen and (max-width: 600px) {
  .c-teamItem {
    padding: 0.5rem;
  }
}

.c-footer.c-section--rounded {
  margin-top: 0;
}

.c-footer__bottom {
  margin-top: 4rem;
}

.c-footer__bottom > .wp-block-group {
  gap: 1.75rem;
}

.c-footer__bottom p {
  margin: 0;
}

.c-footer__top {
  gap: 2.5rem;
  border-bottom: 1px solid var(--clr-greyscale800);
  padding-bottom: 3rem;
  margin-bottom: 3rem;
}


.c-footer__middle {
  justify-content: space-between;
}

.c-footer__middle > .wp-block-group {
  max-width: 320px;
}

.c-footer a:not(.wp-block-button__link){
  color: white;
}

.c-footer a:not(.wp-block-button__link):hover {
  color: var(--clr-greyscale300);
}


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

  .c-footer__middle {
    flex-direction: column;
  }

  .c-footer__middle .wp-block-group {
    max-width: 100%;
  }

  .c-footer__bottom {
    flex-direction: column;
    align-items: flex-start !important;
    text-align: left;
    gap: .5rem;
  }


}

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

  .c-footer {
    padding-bottom: 4rem;
  }
}


.c-pageCards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: calc(var(--b-space) * 1/3) auto;
}

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

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

.c-pageCards .c-pageCard {
  width: calc((100% - 3rem) / 3);
}

@media screen and (max-width: 1100px) {
  .c-pageCards .c-pageCard {
    width: calc((100% - 1.5rem) / 2);
  }
}

@media screen and (max-width: 798px) {
  .c-pageCards .c-pageCard {
    width: 100%;
  }
}

.c-pageCard {
  color: var(--clr-greyscale700);
  font-size: var(--fs-p-sm);
}



.c-pageCard__thumb  {
  display: block;
  position: relative;
  overflow: hidden;
}

.c-pageCard__thumb img {
  display: block;
  aspect-ratio: 17/10;
  margin: 0;
  width: 100%;
  object-fit: cover;
  border-top-right-radius: 1rem;
  border-top-left-radius: 1rem;
  transition: .6s transform;
}

.c-pageCard__thumb:hover img {
  transform: scale(1.0875) rotate(.5deg);
}

.c-pageCard__content {
  background: var(--clr-greyscale100);
  padding: 1.5rem;
  border-bottom-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
}

.c-pageCard__date {
  display: block;
  margin-bottom: .25rem;
}

.c-pageCard h3 {
  margin: 0 0 .75rem;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--clr-greyscale800);
  line-height: 1.4;
}

.c-pageCard h3:hover {
  color: var(--clr-primary500);
}

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

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

.c-pageCard__link {
  font-size: var(--fs-p-sm);
  font-weight: 600;
}

.c-pageCard__categories {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: absolute;
  z-index: 2;
  top: 1rem;
  right: 1rem;
}
.c-pageCard__categories a {
  padding: .5rem 1rem;
  font-size: var(--fs-p-sm);
  background: var(--clr-greyscale100);
  border-radius: .25rem;
  font-weight: 400;
  margin: 0;
  color: var(--clr-greyscale700);
}


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

  .c-pageCard--featured {
    display: flex;
    gap: 3.75rem;
    align-items: center;
  }

  .c-pageCard--featured .c-pageCard__thumb {
    width: calc(50% - 3.75rem);
    flex-shrink: 0;
  }

}

@media screen and (max-width: 798px) {
  .c-pageCard--featured .c-pageCard__thumb {
    margin-bottom: 2rem;
  }
}

.c-pageCard--featured .c-pageCard__categories {
  position: static;
  margin-bottom: 1rem;
}

.c-pageCard--featured p {
  font-size: var(--fs-p-lg);
}


.owl-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem
}

.owl-nav button {
  width: 2.625rem;
  height: 2.625rem;
  border: none;
  background: transparent !important;
  border-radius: 50%;
  outline: none;
  transition: .3s background, .3s opacity;
  display: flex;
  align-items: center;
  justify-content: center;
}


.owl-nav button svg {
  max-height: 100%;
}

.owl-nav button.disabled {
  opacity: .4;
  pointer-events: none;
}

.owl-nav button:hover {
  background: var(--clr-greyscale100) !important;
}

@media screen and (max-width: 600px) {
  .owl-nav button {
    width: 2.5rem;
    height: 2.5rem;
  }
}

@media screen and (max-width: 360px) {
  .owl-nav {
    gap: .5rem;
  }

  .owl-nav button {
    width: 2rem;
    height: 2rem;
  }
}

.owl-dots {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.owl-dots button {
  width: .75rem;
  height: .75rem;
  border-radius: 50%;
  background: white !important;
  border: 1px solid var(--clr-greyscale500) !important;
  transition: .3s border, .3s background;
}

.owl-dots button.active, .owl-dots button:hover {
  background: var(--clr-primary500) !important;
  border: 1px solid var(--clr-primary500) !important;
}

.c-bannerSlider {
  position: relative;
  min-width: 0;
}

.c-bannerSlider .owl-stage {
  display: flex;
  flex-grow: 1;
}

.c-bannerSlider .owl-item {
  display: flex;
}

.c-bannerSlider .c-section {
  width: 100%;
  display: flex;
  align-items: flex-end;
}

.c-bannerSlider .owl-nav {
  position: absolute;
  bottom: 3rem;
  right: 4rem;
}


.c-bannerSlider__count {
  color: white;
  font-size: 1.125rem;
  font-weight: 500;
  display: none;
}

.c-bannerSlider .owl-nav button svg path{
  fill: white;
}

.c-bannerSlider .owl-nav button:hover {
  background: var(--clr-primary500) !important;
}

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

  .c-bannerSlider__count {
    display: none;
  }

  .c-bannerSlider .owl-nav {
    bottom: 0;
    right: var(--width-gutter);
    transform: translateY(50%);
  }

  .c-bannerSlider .owl-nav button {
    background: var(--clr-primary500) !important;
  }

  .c-bannerSlider .owl-nav button:hover {
    background: var(--clr-primary600) !important;
  }
}

.c-imgGallery {
  max-width: 832px;
  margin: calc(var(--b-space) * 1/3) auto;
}

.c-imgGallery + .c-imgGallery {
  margin-top: calc(((var(--b-space) * 1/3) * -1) + 2rem);
}

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

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

.c-imgGallery .owl-next, .c-imgGallery .owl-prev {
  position: absolute;
  right: calc((99.99% - 100vw - var(--scrollbar-width, 0px)) / 2 + var(--width-gutter));
  top: 50%;
  transform: translateY(-50%);
}

.c-imgGallery .owl-next:hover, .c-imgGallery .owl-prev:hover {
  opacity: 1;
}

.c-imgGallery .owl-nav button svg path {
  fill: white;
}

.c-imgGallery .owl-nav button {
  background: var(--clr-primary500) !important;
}

.c-imgGallery .owl-nav button:hover {
  background: var(--clr-primary600) !important;
}

.c-imgGallery .owl-prev {
  right: auto;
  left: calc((99.99% - 100vw - var(--scrollbar-width, 0px)) / 2 + var(--width-gutter));
}

.c-imgGallery img {
  display: block;
  border-radius: .625rem;
  aspect-ratio: 3/2;
  object-fit: cover;
}

.c-imgGallery__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 2.5rem;
  color: white;
  border-bottom-right-radius: .625rem;
  border-bottom-left-radius: .625rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0, .75) 100%);
}

.c-imgGallery .owl-stage-outer {
  overflow: visible;
}

.c-imgGallery .owl-stage-outer {
  display: flow-root;
}

@media screen and (max-width: 1200px) {
  .c-imgGallery .owl-next {
    right: 1rem;
  }

  .c-imgGallery .owl-prev {
    right: auto;
    left: 1rem;
  }
}

.c-pageMenu  {
  list-style-type: none;
  padding: 0;
  background: var(--clr-greyscale100);
  padding: 1.875rem;
}

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

.c-pageMenu li:not(:first-child) {
  border-top: 1px solid var(--clr-greyscale300);
}

.c-pageMenu a  {
  font-weight: 600;
  font-size: 1.1875rem;
  color: var(--clr-greyscale900);
  display: block;
  padding: .75rem 0;
  font-family: var(--ff-heading);
}

.c-pageMenu li:not(.current-menu-item):first-child a {
  padding-top: 0;
}

.c-pageMenu li:not(.current-menu-item):last-child a {
  padding-bottom: 0;
}

.c-pageMenu a:hover {
  color: var(--clr-primary500);
}

.c-pageMenu  .current-menu-item a {
  background: var(--clr-primary500);
  color: white;
  padding: .75rem 1.25rem;
}

.c-programs {
  gap: 2rem !important;
  margin-bottom: 3.75rem;
}

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

.c-programItem:nth-of-type(n+3) {
  border-top: 1px solid var(--clr-greyscale800);
  padding-top: 2rem;
}


.c-programItem > .wp-block-image {
  margin: 0;
  flex-shrink: 0;
}

.c-programItem h3, .c-programItem p {
  max-width: 415px;
}

@media screen and (max-width:800px) {
  .c-programs {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
  .c-programItem:not(:first-child) {
    border-top: 1px solid var(--clr-greyscale800);
    padding-top: 2rem;
  }
}

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

.c-sectionTitle {
  margin-top: calc(var(--b-space) * 2/3);
  align-items: baseline;
  margin: calc(var(--b-space) * 2/3) 0 2rem;
}

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

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

.c-ratings:before {
  content: '';
  width: 22px;
  height: 22px;
  background: url('imgs/icon-google.png') no-repeat center center / contain;
}

.c-ratings a {
  font-weight: 700;
}

.c-reviewItem {
  background: var(--clr-greyscale100);
  padding: 2rem;
  border-radius: 1rem;
  position: relative;
}

.c-reviewItem:after {
  content: '';
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  width: 66px;
  height: 54px;
  background: url('imgs/icon-quote.svg') center center / 66px 54px;
}

.c-reviewItem__foot {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .5rem;
  margin-right: 4rem;
  margin-top: 1.5rem;
}

.c-reviewItem__rating {
  width: calc(1.5rem * 5);
  height: 1.5rem;
  position: relative;
  overflow: hidden;
  display: block;
}

.c-reviewItem__rating:before {
  content: "";
  display: block;
  height: 100%;
  background: url('imgs/icon-star.png') repeat-x;
  background-size: 1.5rem 1.5rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
}

/* Control width by rating */
.c-reviewItem__rating--4:before {
  width: calc(1.5rem * 4);
}
.c-reviewItem__rating--4\.5:before {
  width: calc(1.5rem * 4.5);
}
.c-reviewItem__rating--5:before {
  width: calc(1.5rem * 5);
}

.c-reviewItem h5 {
  margin: 0;
  font-size: var(--fs-p);
  font-weight: 700;
  font-family: var(--ff-body);
}

.c-reviewsSlider  {
  margin: calc(var(--b-space) * 1/2) auto;
}

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

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

.c-reviewsSlider .owl-item {
  opacity: .41;
  pointer-events: none;
  transition: .3s opacity;
}

.c-reviewsSlider .owl-item.active {
  opacity: 1;
  pointer-events: initial;
}

.c-reviewsSlider .owl-stage-outer {
  overflow: visible;
}

.c-reviewsSlider .owl-stage {
  display: flow-root;
  pointer-events: none;
}

.c-reviewsSlider  .owl-nav {
  margin-top: 2rem;
  margin-bottom: 1px;
}

.c-serviceCards {
  gap: 2.5rem;
  margin: 2rem 0 calc(var(--b-space) * 2/3);
}

@media screen and (max-width: 900px) {
  .c-serviceCards {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;;
  }
}

@media screen and (max-width: 600px) {
  .c-serviceCards {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;;
  }
}

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

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

.c-serviceCard img {
  border-radius: .625rem;
  aspect-ratio: 16/9;
  object-fit: cover;
  width: 100%;
  display: block;
}

.c-projects {
  display: flex;
  flex-direction: column;
  gap: calc(var(--b-space) * 2/3);
}

.c-project {
  display: flex;
  gap: 3.75rem;
  align-items: center;
}

.c-project__thumb {
  width: 100%;
  min-width: 0;
  max-width: calc(50% - 3.75rem);
  flex-shrink: 0;
}

.c-project__thumb img {
  aspect-ratio: 1.5/1;
  display: block;
  border-radius: .625rem;
  margin: 0;
  object-fit: cover;
}

.c-projectSlider__nav {
  display: flex;
  flex-wrap: wrap;
  gap: .625rem;
  margin-top: 1.25rem;
}

.c-projectSlider__nav button {
  width: calc((100% - 1.875rem) / 4);
  border: none;
  outline: none;
  border-radius: 0;
  padding: 0;
  background: none;
  opacity: .5;
  transition: .3s opacity;
}

.c-projectSlider__nav button:hover, .c-projectSlider__nav button.active {
  opacity: 1;
}

.c-project__tags {
  display: flex;
  gap: 1rem;
  margin: -.5rem 0 1rem;
}

.c-project__tag {
  padding: .5rem 1rem;
  color: white;
  font-size: 1.125rem;
  background: var(--clr-primary500);
  border-radius: .25rem;
  font-weight: 700;
  margin: 0;
}

@media screen and (max-width: 767px) {
  .c-project {
    flex-direction: column;
  }

  .c-project__thumb {
    max-width: 100%;
  }
}

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

  .c-project__tags {
    margin-top: -.25rem;
  }
}

.wp-block-post-terms {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.wp-block-post-terms a {
  padding: .5rem 1rem;
  color: white;
  font-size: 1.125rem;
  background: var(--clr-primary500);
  border-radius: .25rem;
  font-weight: 700;
  margin: 0;
}

@media screen and (min-width: 1121px) {
  .form-overlap .wp-block-column:nth-of-type(2) {
    margin-top: calc(var(--b-space) * -1 - 4rem);
  }
}

.form-overlap .wp-block-column:nth-of-type(2) {
  padding: 2.5rem;
}

.form-overlap .gform_wrapper {
  background: none;
  padding: 0;
  margin: 2rem 0 0;
}

@media screen and (max-width: 600px) {
  .form-overlap .wp-block-column:nth-of-type(2) {
    padding: 2rem;
  }
}

.c-logoSlider {
  min-width: 0;
}

.c-logoSlider img {
  display: block;
  max-width: 203px;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 406 / 335;
  object-fit: contain;
}

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

  .c-logoSlider  {
    margin-left: -4rem !important;
    margin-right: -4rem !important;
    margin-top: 2rem;
    width: calc(100% + 8rem);
  }

}

.c-categorySelector {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

.c-categorySelector h4 {
  margin: 0;
  flex-shrink: 0;
}

.c-categorySelector__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.c-categorySelector a {
  padding: .75rem 1.5rem;
  font-weight: 700;
  border-radius: 99em;
  font-size: 1rem;
  line-height: 1;
  background: white;
  border: 1px solid var(--clr-greyscale700);
  color: var(--clr-greyscale700);
  transition: .3s color, .3s background;
}

.c-categorySelector a.active, .c-categorySelector a:hover {
  background: var(--clr-greyscale700);
  color: white;
}

@media screen and (max-width: 768px) {
  .c-categorySelector {
    flex-direction: column;
  }

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

}

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

  .c-categorySelector {
    gap: 1.25rem;
  }

  .c-categorySelector__cats {
    gap: .75rem;
  }
  .c-categorySelector a {
    padding: .75rem 1.5rem;
    font-size: .875rem;
  }
}

.c-teamModal {
  display: flex;
  gap: 3rem;
}

.c-teamModal__left {
  width: 47%;
  flex-shrink: 0;
}

.c-teamModal__left img {
  display: block;
  aspect-ratio: 1/1;
  object-fit: cover;
  width: 100%;
}

.c-teamModal__contact {
  background: black;
  color: white;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 1.5rem;
  row-gap: .25rem;
  padding: 1.5rem 2rem;
  flex-wrap: wrap;
}

.c-teamModal__contact p {
  font-size: var(--fs-h4);
  font-family: var(--ff-heading);
  margin: 0;
  font-weight: 400;
}

.c-teamModal__contact a {
  color: var(--clr-greyscale300);
}

.c-teamModal__contact a:hover {
  color: white;
}

.c-teamModal .c-teamItem__occupation {
  font-size: var(--fs-p);
  margin-bottom: 2rem;
}

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

  .c-teamModal__left {
    width: 100%;
    max-width: 400px;
    align-self: center;
  }
}


@media screen and (max-width: 980px) {
  .c-teamModal {
    gap: 1.5rem;
  }

  .c-teamItem__occupation {
    width: 100%;
  }

  .c-teamModal .c-teamItem__occupation {
    margin-bottom: 1.5rem;
    width: 100%;
  }
  .c-teamModal__contact {
    padding: 1.5rem;
  }
}

.c-projectCards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  row-gap: 4rem;
  margin: 3rem 0;
}

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

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

.c-projectCards .c-projectCard {
  width: calc((100% - 3rem) / 3);
}

@media screen and (max-width: 980px) {
  .c-projectCards .c-projectCard {
    width: calc((100% - 1.5rem) / 2);
  }
}

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

  .c-projectCards {
    row-gap: 2.5rem;
  }
  .c-projectCards .c-projectCard {
    width: 100%;
    row-gap: 2rem;
  }
}

.c-projectCard__content {
  text-align: center;
  padding: 2rem 1rem 0;
}

.c-projectCard__thumb {
  display: block;
}

.c-projectCard h4 {
  margin-bottom: 1rem;
  min-height: 40px;
}

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

.c-projectCard h4 a {
  color: inherit;
}

.c-projectCard__thumb img {
  aspect-ratio: 7/8;
  object-fit: cover;
  width: 100%;
  border-radius: 1rem;
}

.c-projectCard .wp-block-buttons {
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 600px) {
  .c-projectCard__content {
    padding-top: 1.5rem;
  }
}

/* to hide long testimonials overlapping the blog section */
.c-latestBlogs {
  z-index: 2;
}

.c-awardWinningDesc {
  margin-bottom: 3rem;
}

.c-projectTag {
  font-size: var(--fs-p-sm);
  background: white;
  padding: .5rem .75rem;
  display: block;
  margin: 2rem auto calc((var(--b-space) / 2) * -1);
  width: max-content;
  color: var(--clr-text);
}

.c-statisticGrid {
  gap: 1.5rem;
}

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

  .c-statisticGrid {
    gap: 1rem;
  }
}


.c-who {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.c-whoItem > .wp-block-image {
  flex-shrink: 0;
}

.c-awardRow__img {
  flex-shrink: 0;
}

@media screen and (max-width: 900px) {
  .c-awardRow {
    position: relative;
  }

  .c-awardRow__img {
    position: absolute;
    bottom: calc(100% + 1rem);
    left: 0;
    width: 100px;
  }
}

.c-processSteps {
  margin: calc(var(--b-space) * 1/2) 0;
}

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

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

.c-processSteps__nav {
  display: flex;
  margin-bottom: calc(var(--b-space) * 1/2);
  justify-content: center;
}

.c-processSteps__nav button {
  border: none;
  background: none;
  border-bottom: .25rem solid var(--clr-greyscale300);
  color: var(--clr-greyscale500);
  font-size: var(--fs-p-sm);
  transition: .3s border, .3s color;
  padding: 0 1.5rem 1rem;
}

.c-processSteps__nav button span {
  display: block;
  font-size: .875rem;
  letter-spacing: .1em;
  font-weight: 400;
  margin-bottom: .2rem;
}

.c-processSteps__nav button:hover {
  color: var(--clr-text);
}

.c-processSteps__nav button.active {
  border-bottom: .25rem solid var(--clr-primary500);
  color: var(--clr-text);
  font-weight: 700;
}

.c-processItem {
  display: flex;
  align-items:center;
  gap: 3rem;
}

.c-processItem__thumb {
  width: calc(50% - 1.5rem);
  flex-shrink: 0;
}

.c-processItem__thumb img {
  display: block;
  border-radius: .625rem;
}

.c-processItem__title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  row-gap: .5rem;
  margin-bottom: 1rem;
}

.c-processItem__title span {
  width: 100%;
  font-size: .875rem;
  letter-spacing: .1em;
  font-weight: 400;
  margin-bottom: 0;
  text-transform: uppercase;
}

.c-processItem__title img {
  width: 3rem !important;
}

.c-processItem__title h4 {
  width: calc(100% - 3rem - 1.5rem);
  margin: 0;
}

@media screen and (max-width: 900px) {
  .c-processSteps__nav button {
    font-size: 0;
    flex-grow: 1;
  }

  .c-processItem__thumb {
    width: 100%;
  }

  .c-processItem {
    flex-direction: column;
  }
}

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

  .c-processItem {
    gap: 1.5rem;
  }

}

.c-wwdOverview {
  margin-bottom: calc(var(--width-gutter) * 1.25);
}

.top-margin {
    margin-top: 50px;
}

.bottom-margin {
    margin-bottom: 50px;
}

h2:has(+ .c-serviceSlider) {
  padding-right: 120px;
}

.c-serviceSlider {
  margin: 2rem 0;
}

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

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



.c-serviceSlider .owl-nav {
  position: absolute;
  right: 0;
  bottom: calc(100% + 2rem);
}

.c-serviceSlider .owl-stage-outer {
  overflow: visible;
}

.c-serviceSlider .owl-stage-outer {
  display: flow-root;
}

.c-serviceSlider .owl-item {
  visibility: hidden;
  opacity: 0;
  transition: .3s opacity, 0s visibility .3s;
}

.c-serviceSlider .owl-item.active {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.c-serviceSlider .c-serviceCard {
  cursor: pointer;
}

.c-serviceModalSlider {
  display: flex !important;
  flex-direction: column;
}

.c-serviceModalSlider .owl-stage-outer {
  overflow-y: auto;
  max-height: 100%;
  scrollbar-width: thin;
}

.c-serviceModalSlider .owl-stage {
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}

.c-serviceModalSlider .owl-nav {
  background: var(--clr-secondary100);
  padding: 2rem;
  border-radius: .625rem;
  margin-top: 2.5rem;
  justify-content: space-between;
  flex-shrink: 0;
  margin-right: var(--scrollbar-spacing);
}


.c-serviceModalSlider  .owl-item {
  flex: 0 0 auto;
}

.c-serviceModalSlider .owl-nav button {
  position: relative;
}


.c-serviceModalSlider .owl-prev:after {
  content: attr(data-title);
  left: calc(100% + .75rem);
  text-align: left;
}

.c-serviceModalSlider .owl-next:before {
  content: attr(data-title);
  right: calc(100% + .75rem);
  text-align: right;
}

.c-serviceModalSlider .owl-prev:after, .c-serviceModalSlider .owl-next:before {
  font-size: 1.125rem;
  font-weight: 500;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: max-content;
  max-width: 200px;
}

.c-serviceModal {
  display: flex;
  gap: 3.75rem;
  align-items: flex-start;
}

.c-serviceModal__thumb {
  flex-grow: 1;
}

.c-serviceModal img {
  display: block;
  aspect-ratio: 1/1;
  border-radius: .625rem;
  object-fit: cover;
}

.c-serviceModal__content {
  width: 66%;
  flex-shrink: 0;
  padding-right: var(--scrollbar-spacing);
}

.c-serviceModal h2 {
  padding-right: 1.75rem;
}

@media screen and (max-width: 700px) {
  .c-serviceModalSlider .owl-prev:after, .c-serviceModalSlider .owl-next:before {
    display: none;
  }
}

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

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

  .mobile-half-width {
    padding-right: 110px;
  }

  .c-serviceModalSlider .owl-nav {
    padding: 1rem;
    margin-top: 2rem;
  }

  .c-serviceModal {
    flex-direction: column;
  }

  .c-serviceModal img {
    max-width: 270px;
  }

  .c-serviceModal__content {
    width: 100%;
  }

  .c-serviceModal__thumb {
    display: none;
  }

  .c-serviceModalSlider .owl-nav {
    display: none;
  }

}

.c-teamModal__right {
  overflow: auto;
}

.slider-padding-right {
  padding-right: 110px;
}

.homepage-buckets .c-projectCard__content p {
  min-height: 96px;
}

.c-section--normal .c-projectCard__content p {
  min-height: 160px;
}
