/*TVC 22Background Work
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 {
  interpolate-size: allow-keywords;

  /* Parent brand */
  --brand-primary-pink: #EB0C8A; /* rose */ 
  --brand-primary-purple: #681A97;  /* muave */
  --brand-primary-blue: #0275AE;
  --brand-primary-green: #6EC047;
  --brand-primary-yellow: #FFF028;

  /* Sub brand */
  --subbrand-primary-pink: #DC0052;
  --subbrand-primary-teal: #0285A1;
  --subbrand-primary-green: #6CB73C;

  --gradient-pink-yellow:  linear-gradient(to right, var(--brand-primary-pink), var(--brand-primary-yellow));
  --gradient-purple-blue: linear-gradient(to right, var(--brand-primary-purple), var(--brand-primary-blue));
  --gradient-dark: linear-gradient(to bottom, #262626, #0A0A0A);

  --clr-secondary500: #6D757F;

  --clr-greyscale50:  #FAFAFA;
  --clr-greyscale100: #F5F5F5;

  --clr-greyscale200: #E5E5E5;
  --clr-greyscale300: #CCCCCC;
  --clr-greyscale400: #B3B3B3;
  --clr-greyscale500: #999999;
  --clr-greyscale600: #7F7F7F;
  --clr-greyscale700: #666666;

  --clr-greyscale800: #262626;
  --clr-greyscale900: #0A0A0A;

  --clr-white: #ffffff;
  --clr-black: #000000;

  --gradient-pink-yellow:  linear-gradient(to right, var(--brand-primary-pink), var(--brand-primary-yellow));
  --gradient-purple-blue: linear-gradient(to right, var(--brand-primary-purple), var(--brand-primary-blue));
  --gradient-dark: linear-gradient(to bottom, #262626, #0A0A0A);

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

  /* widths */
  --width-content: 1650px;
  --width-gutter: 60px;
  /* heights */
  --height-header: 128px;
  /* spacing */
  --b-space-lg: 175px;
  --b-space: 96px;
  --b-space-sm: 72px;
  --b-space-xsm: 24px;
  /* font family */
  --ff-heading: "Work Sans", sans-serif;;
  --ff-body: "Teachers", sans-serif;
  /* font sizes */
  --fs-h1: 3.4375rem;
  --fs-h2: 2.75rem;
  --fs-h3: 1.875rem;
  --fs-h4: 1.125rem;
  --fs-h5: 1rem;
  --fs-h6: 1.0625rem;
  --fs-p-lg: 1.375rem;
  --fs-p-sm: 9375rem;
  --fs-p: 1.125rem;

  /* override wp vars */
  --wp--preset--font-size--lg: var(--fs-p-lg);
  --wp--preset--font-size--md: var(--fs-p);
  --wp--preset--font-size--sm: var(--fs-p-sm);
  --wp--preset--font-size--xsm: var(--fs-p-xsm);

}


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

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

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

}

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

    --fs-h1: 2.25rem;
    --fs-h2: 1.75rem;
    --fs-h3: 1.5rem;
    --fs-h4: 1.25rem;
    /* spacing */
    --b-space-lg: 80px;
    --b-space: 68px;
    --b-space-sm: 56px;

    --width-gutter: 1.5rem;

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

  }
} 


/* 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--wide {
  max-width: 1500px;
}

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

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

html {
  scroll-behavior: smooth;
}

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

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

b, strong {
  font-weight: 800;
}

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

.has-background:is(h1, h2, h3, h4) {
  background-clip: text !important;
	-webkit-background-clip: text !important;
	color: transparent;
	-webkit-text-fill-color: transparent;
  padding: 0 !important;
  width: fit-content;
}

.has-background.has-text-align-center:is(h1, h2, h3, h4) {
  margin-left: auto;
  margin-right: auto;
}


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


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

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

h3 {
  font-size: var(--fs-h3);
  line-height: 1.2;
  margin: 2.5rem 0 1.25rem;
}

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

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

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

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

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

h6 {
  font-size: var(--fs-h6);
  line-height: 1.6;
  margin: 1.5rem 0 1rem;
}

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

h2:has(img), h3:has(img) {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}

h1 em, h2 em, h3 em, h4 em, h5 em, h6 em {
  background: var(--gradient-rose-mauve);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: normal;
}

p {
  margin-bottom: 1.25rem;
}

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

p.has-lg-font-size {
  font-size: var(--fs-p-lg);
  margin-bottom: 2rem;
}

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

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

p.has-background {
  padding: 1.25em 2.375em;
  border-radius: .5rem;
}

p.is-style-overline {
  font-size: .96875rem;
  font-family: var(--ff-body);
  font-weight: 500;
  padding: .125rem 1rem;
  border: 1px solid var(--clr-overline, var(--clr-primary500));
  margin-bottom: .75rem;
  border-radius: .25rem;
  width: max-content;
  color: var(--clr-overline, var(--clr-primary500));
}

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

.is-style-overline + h3 {
  margin-top: 0;
}

@media screen and (max-width: 1120px) {
  
  .is-style-overline + .wp-block-columns {
    margin-top: 0 !important;
  }
}

@media screen and (max-width: 600px) {
  p.is-style-overline {
  font-size: .925rem;
  }

  h3 {
    margin-top: 1.5;
  }
}

.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.25rem;
  margin: 0 0 1.625rem;
}

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

.wp-block-list {
  /* padding-left: 0; */
}

.wp-block-list li::marker  {
  color: var(--clr-primary500);
  font-size: 1.1em;
}

/* .wp-block-list li:before {
  content: '';
  background: var(--clr-secondary700);
  border-radius: 50%;
  width: .625rem;
  height: .625rem;
  flex-shrink: 0;
  position: relative;
  bottom: 1px;
} */

.wp-block-list.is-style-columns {
  column-count: 2;
  column-gap: 2rem
}

.wp-block-list.is-style-columns li {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
}

/* @media screen and (max-width: 980px) {
  .wp-block-list.is-style-columns {
    column-count: 2;
    column-gap: 2rem
  }

} */

@media screen and (max-width: 600px) {
  .wp-block-list.is-style-columns {
      column-count: 1;
  }
}

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

ol {
  margin: 0 0 1.625rem;
  padding-left: 1.25rem;
}


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

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

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

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

a, a:focus{
   outline: 0;
}

a {
  color: var(--linkColor, var(--brand-primary-purple));
  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(--linkHoverColor, var(--brand-primary-blue));
}

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

.wp-block-separator.is-style-block-space {
  margin: 0;
  height: var(--b-space);
  background: none;
}

*:has( + .wp-block-separator.is-style-block-space) {
  margin-bottom: 0 !important;
}

.wp-block-separator.is-style-block-space + * {
  margin-top: 0 !important;
}

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

.c-section {
  padding: var(--b-space) 0;
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  scroll-margin-top: var(--height-header);
}

.c-section .c-section {
  border-radius: .75rem;
  overflow: hidden;
  padding: var(--b-space) calc(var(--b-space) - var(--width-gutter)) var(--b-space);
}

@media screen and (max-width: 600px) {
  .c-section .c-section {
    padding: var(--b-space) 0;
  }
}

.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__overlay {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.c-section__overlay--dark {
  background: rgba(0,0,0,.7);
}

.c-section__video {
  display: block;
  margin: 0;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

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

.is-vertically-aligned-center .wp-block-image img {
  margin-inline: 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;
  border-radius: .75rem;
}

.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 {
  padding-left: 0;
  padding: .625rem 0 .625rem 2.275rem;
  margin: 0;
  position: relative;
}

.wp-block-list.is-style-checklist li:first-child {
  border-top: none;
}

.wp-block-list.is-style-checklist li:last-child {
  padding-bottom: 0.625rem;
}

.wp-block-list.is-style-checklist li:before {
  content: '';
  width: 1.375rem;
  height: 1.375rem;
  flex-shrink: 0;
  position: relative;
  top: .25rem;
  left: 0;
  background: var(--listCheckBoxUrl, url('imgs/icon-check.svg')) no-repeat center center / 1.375rem 1.375rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 600px) {
  .wp-block-list.is-style-checklist li {
    padding: .325rem 0 .325rem 2.275rem;
  }

  .wp-block-list.is-style-checklist li:last-child {
    padding-bottom: 0.325rem;
  }
}


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

.wp-block-buttons:first-child, .wp-block-buttons:has(.has-sm-font-size):first-child {
  margin-top: 0;
}

.wp-block-buttons:last-child, .wp-block-buttons:has(.has-sm-font-size):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-heading);
  font-weight: 800;
  color: var(--clr-text);
  flex-shrink: 0;
  line-height: 1.1;
  text-decoration: none;
  display: inline-flex;
  grid-gap: 1rem;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: none;
  box-shadow: none;
  -webkit-appearance: none;
  border-radius: 0;
  transition: .3s background, .3s color, .3s border;
}

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

.wp-block-button__link img {
  flex-shrink: 0;
  /* margin-top: -1rem;
  margin-bottom: -1rem; */
}


.wp-block-button:not([class*="is-style-"]) .wp-block-button__link, .is-style-pink .wp-block-button__link {
  border-radius: .75rem;
  padding: 1.325rem 1.625rem;
  background: var(--brand-primary-pink);
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
  transition: .3s background !important;
}

.wp-block-button:not([class*="is-style-"]) .wp-block-button__link:hover, .is-style-pink .wp-block-button__link:hover {
  background: oklch(from var(--brand-primary-pink) calc(l + 0.05) c h);
}

.is-style-green .wp-block-button__link {
  border-radius: .75rem;
  padding: 1.325rem 1.625rem;
  background: var(--brand-primary-green);
  color: black;
  font-weight: 700;
  font-size: 1.25rem;
  transition: .3s background !important;
}

.is-style-green .wp-block-button__link:hover {
  background: oklch(from var(--brand-primary-green) calc(l + 0.05) c h);
}

.is-style-purple .wp-block-button__link {
  border-radius: .75rem;
  padding:  1.325rem 1.625rem;
  background: var(--brand-primary-purple);
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
  transition: .3s background !important;
}

.is-style-purple .wp-block-button__link:hover {
  background: oklch(from var(--brand-primary-purple) calc(l + 0.05) c h);
}

.is-style-tertiary .wp-block-button__link {
  border-radius: .75rem;
  padding:  1.325rem 1.625rem;
  background: white;
  border: 1px solid var(--brand-primary-purple);
  color: var(--brand-primary-purple);
  font-weight: 700;
  font-size: 1.125rem;
  transition: .3s background !important;
}

.is-style-tertiary .wp-block-button__link:hover {
  background: oklch(from var(--brand-primary-purple) calc(l + 1) c h);
}

.is-style-purple .wp-block-button__link.has-sm-font-size,
.is-style-pink .wp-block-button__link.has-sm-font-size,
.is-style-green .wp-block-button__link.has-sm-font-size,
.is-style-tertiary .wp-block-button__link.has-sm-font-size {
  padding: .825rem 1.125rem;
  font-size: 1.125rem !important;
  border-radius: .625rem;
}

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

  .wp-block-buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: .5rem;
  }

  .wp-block-buttons:has(.is-style-tertiary) {
    align-items: start;
  }

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

  .wp-block-button {
    flex-grow: 1;
  }

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

  .is-style-purple .wp-block-button__link
  .is-style-pink .wp-block-button__link,
  .is-style-green .wp-block-button__link,
  .is-style-tertiary .wp-block-button__link {
    padding: 1rem 1.25rem;
  }

  .is-style-purple .wp-block-button__link.has-sm-font-size,
  .is-style-pink .wp-block-button__link.has-sm-font-size,
  .is-style-green .wp-block-button__link.has-sm-font-size,
  .is-style-tertiary .wp-block-button__link.has-sm-font-size {
    font-size: 1rem !important;
  }

}

/*header styles*/

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

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

.c-mainHeader .wp-block-buttons {
  margin: 0;
  width: auto;
}

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

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

.c-mainHeader__logo img {
  display: block;
}

@media screen and (max-width: 1230px)  {
  .c-mainHeader {
    padding: 0;
  }
  .c-mainHeader .u-wc {
    align-items: center;
    gap: 2rem;
  }
}


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

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

  .c-mainHeader__logo {
    max-width: 92px;
  }

}


.c-mainHeader__menuWrap {
  display: flex;
  align-items: center;
  /* flex-grow: 1; */
}

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

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

}

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

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

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

@media screen and (min-width: 1231px) {
  .menu-item--mobile {
    display: none !important;
  }
}

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

.c-mainMenu .menu-item > a {
  font-size: 1.25rem;
  font-family: var(--ff-heading);
  font-weight: 800;
  color: var(--clr-white);
  position: relative;
  text-decoration: none;
  padding: 0;
  transition:.3s color, .3s border;
  display: block;
  text-wrap: nowrap;
}

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

.c-mainMenu > ul > li.current-menu-item > a, .c-mainMenu > ul > li:hover > a, .c-mainMenu > ul > li.current-menu-ancestor > a, .c-mainMenu > ul > li:focus-within > a {
  color: var(--clr-greyscale300);
}


.c-mainMenu .menu-btn a {
  border-radius: .375rem;
  padding: 1rem 1.625rem !important;
  background: var(--brand-primary-pink);
  color: white;
  font-weight: 800;
  line-height: 1.1;
  transition: .3s color, .3s background !important;
}

.c-mainMenu .menu-btn a:hover {
  color: white;
  background: oklch(from var(--brand-primary-pink) calc(l + 0.05) c h);
}

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

  .c-menuBtn  {
    font-size: .825rem;
    padding: .75rem .75rem;
  }
  .c-menuBtn span {
    display: none;
  }
}

.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 .sub-menu a {
  text-wrap: wrap;
  font-weight: 400;
}

.c-mainMenu .sub-menu {
  padding: 1rem 0;
}

.c-mainMenu .sub-menu li {
  padding: .125rem 0;
  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  {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
  flex-wrap: nowrap;
  text-wrap: wrap;
}

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

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

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

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

}


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



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

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

  .c-mainMenu .menu-item-has-children:after {
    content: '';
    height: var(--dropdown-position-offset);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
  }
  
  .c-mainMenu .sub-menu {
    width: 240px;
    display: block;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    background:  var(--gradient-dark);
    border-radius: .25rem;
    padding: 1rem;
    left: -1rem;
    top: calc(100% + 1rem);
    transform: translateY(-.25rem);
    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 .menu-item:not(.mega-menu-item) > .sub-menu .sub-menu {
    left: calc(100% + 1rem);
    transform: translateY(-.25rem);
    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.125rem;
  }

}

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

  .c-mainHeader__menuWrap {
    width: 100%;
    margin: 0;
    height: 100%;
    margin-right: 0;
    background: var(--clr-black);
    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: var(--width-gutter);
  }

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

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

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

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

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

  .c-mainMenu .menu-item > 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: 1rem;
  }

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

  .c-mainMenu .menu-item-has-children > a:after, .c-mainMenu .mega-menu-item > a:after {
    display: block;
  }

  .c-mainMenu li.menu-item--btn {
    margin-top: 1rem;
  }

  .c-mainMenu .sub-menu {
    padding: 1rem 0 .25rem;
  }


}

@media screen and (max-width: 600px) {
  .c-mainMenu .menu-item > a {
    justify-content: space-between;
    font-size: 1.1rem;
  }

  .c-mainMenu .sub-menu a {
    font-size: 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-white);
  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-white);
  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: 1230px) { 

  .c-navIcon {
    display: flex;
  }
}

/* gutenberg block / group styling */


:where(.has-black-background-color, .has-grey-900-background-color, .has-brand-primary-pink-background-color, .has-brand-primary-purple-background-color, .has-brand-primary-blue-background-color,
.has-brand-primary-green-background-color,
.has-brand-primary-yellow-background-color,
.has-subbrand-primary-pink-background-color,
.has-subbrand-primary-teal-background-color,
.has-subbrand-primary-green-background-color,
.has-dark-gradient-background) {
  --clr-overline: white;
  color: white;
}

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

.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: 2.5rem;
  border-radius: .5rem;
}

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

@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: 1.5rem !important;
  }

}


.wp-block-media-text {
  --overlap: 100px;
  background: transparent !important;
  margin: var(--b-space) 0;
  column-gap: 0;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  color: white;
}

.wp-block-media-text:has(+ .wp-block-media-text) {
  margin-bottom: 0;
}

.wp-block-media-text + .wp-block-media-text {
  margin-top: 1.25rem;
}

.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__content {
  padding: 100px 100px 100px calc(var(--overlap) + 100px);
  background: var(--brand-primary-purple);
  border-radius: .75rem;
  margin-left: calc(var(--overlap) * -1);
  align-self: stretch !important;
  align-content: center;
}

.wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
  padding-left: 100px;
  padding-right: calc(var(--overlap) + 100px);
  margin-left: 0;
  margin-right: calc(var(--overlap) * -1);
}

.wp-block-media-text .wp-block-media-text__content p {
  font-size: var(--fs-p-lg);
}

.wp-block-media-text__media {
  position: relative;
  z-index: 2;
  padding: 40px 0;
}

.wp-block-media-text__media img {
  border-radius: .75rem;
  /* aspect-ratio: 4/3;
  object-fit: cover; */
}


.has-brand-primary-purple-background-color > .wp-block-media-text__content {
  background: var(--brand-primary-purple);
}

.has-brand-primary-blue-background-color > .wp-block-media-text__content {
  background: var(--brand-primary-blue);
}

.has-brand-primary-pink-background-color > .wp-block-media-text__content {
  background: var(--brand-primary-pink);
}

.has-brand-primary-green-background-color > .wp-block-media-text__content {
  background: var(--brand-primary-green);
}

.has-brand-primary-yellow-background-color > .wp-block-media-text__content {
  background: var(--brand-primary-yellow);
}

.has-subbrand-primary-pink-background-color > .wp-block-media-text__content {
  background: var(--subbrand-primary-pink);
}

.has-subbrand-primary-teal-background-color > .wp-block-media-text__content {
  background: var(--subbrand-primary-teal);
}

.has-subbrand-primary-green-background-color > .wp-block-media-text__content {
  background: var(--subbrand-primary-green);
}


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

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

  .wp-block-media-text  .wp-block-media-text__media {
    margin-left: auto;
    margin-right: auto;
    grid-row: 1 !important;
    grid-column: 1 !important;
    padding: 0 1rem;

  }

  .wp-block-media-text  .wp-block-media-text__content {
    margin-left: auto !important;
    margin-right: auto !important;
    grid-row: 2 !important;
    grid-column: 1 !important;
    margin-top: calc(var(--overlap) * -1);
    padding: calc(100px + var(--overlap)) 100px 100px !important;
  }

}

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

   .wp-block-media-text  .wp-block-media-text__content {
    padding: calc(40px + var(--overlap)) var(--width-gutter) 40px !important;
  }

}

.wpcf7, .wp-block-contact-form-7-contact-form-selector {
  margin: 3rem auto;
  overflow: hidden;
}

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

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

  .wpcf7, .wp-block-contact-form-7-contact-form-selector  {
    margin: 2rem 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;
}

.wpcf7-not-valid-tip {
  margin: .25rem 0 0;
  font-weight: 700;
  font-size: var(--fs-p-sm);
}

.input-cols {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1rem 0 2rem;
}

.input-cols:first-child {
  margin-top: 0;
}

.input-cols:last-child {
  margin-bottom: 0;
}

.input-instructions {
  font-size: var(--fs-p-xsm);
  color: var(--clr-greyscale800);
  margin-top: .25rem;
}

@media screen and (min-width: 601px) {
  
  .input-col {
    width: calc((99.99% - 1rem) / 2);
  }

  .input-col--full {
    width: 100%;
  }
  
}

@media screen and (max-width: 600px) {
  .input-cols { 
    flex-direction: column;
  }

  .input-col {
    width: 100%;
  }
}

label, legend, body .gform_wrapper.gravity-theme .gfield_label {
  font-weight: 500;
  font-size: inherit;
  margin: 0 0 .5rem 0;
  display: block;
  color: var(--clr-greyscale900)
}

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 select {
  outline: none;
  display: block;
  width: 100%;
  border: none;
  border-radius: 0;
  padding: 1rem 1.125rem;
  font-weight: 400;
  font-size: 1rem;
  border-radius: .325rem;
  margin-bottom: 0;
  font-family: inherit;
  background: white;
  border: 1px solid var(--clr-greyscale200);
  color: var(--clr-greyscale900);
  transition: .3s border, .3s background;
}

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


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-greyscale800);
  opacity: 1;
}


select,
body .gform_wrapper.gravity-theme select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: white url('imgs/icon-drop-arrow.svg') no-repeat calc(100% - 1rem) center / .5rem .5rem;
  color: var(--clr-text);
  padding-right: 1.5rem;
}

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

input[type="submit"] {
  line-height: 1.1;
  border-radius: .375rem;
  padding: 1rem 1.625rem;
  background-image: var(--gradient-btn-rose-mauve);
  background-size: 200% 200%;
  background-position: center center;
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
  border: none;
  box-shadow: none;
  -webkit-appearance: none;
  outline: none;
  transition: .3s background !important;
}

input[type="submit"]:hover {
  background-position: 100% 0;
  color: white;
}

/* gravity forms styling */

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

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

@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: 12px;
  }

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

.gform_confirmation_message {
  text-align: center;
}


/* 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: 1 !important;
  }
}

.c-newsletter_wrapper {
  max-width: 900px;
  margin: 0 auto;
}


.c-newsletter .gform_fields {
  display: flex !important;
  justify-content: center;
  gap: .5rem !important;
}

.c-newsletter .gfield:not(:last-child) {
  flex-grow: 1;
}

.c-newsletter .gfield:last-child {
  flex-shrink: 0;
}

.c-newsletter .gfield {
  position: relative;
}

.c-newsletter .gfield .validation_message {
  position: absolute;
  top: 100%;
  left: 0;
} 

.c-newsletter .gform_footer {
  margin: 0 !important;
}

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

  .c-newsletter .gfield:last-child {
    flex-grow: 1;
  }

  .c-newsletter input[type="submit"] {
    width: 100%;
    text-align: center;
  }
}


.wp-block-table {
  margin: 1.5rem 0 2rem;
  font-size: .9rem;
}

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

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

.wp-block-table thead {
  border-bottom: 2px solid var(--clr-greyscale200);
  background: var(--clr-primary100);
  border-top-left-radius: .5rem;
  border-top-right-radius: .5rem;
}

.wp-block-table th {
  font-weight: 700;
  padding: .5rem;
  border: none;
  text-align: left;
}

.wp-block-table td {
  padding: .5rem;
  border: none;
  border-bottom: 1px solid var(--clr-greyscale200);
}

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

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

  .wp-block-table thead {
    display: none;
  }

  .wp-block-table tbody, .wp-block-table tr {
    display: block;
  }

  .wp-block-table td {
    display: flex;
    gap: 1rem;
  }

  .wp-block-table tr {
    border: 1px solid var(--clr-greyscale200);
    border-radius: .25rem;
    margin-bottom: .75rem;
  }

  .wp-block-table td:before {
    content: attr(data-heading);
    font-size: .9rem;
    font-weight: 700;
    width: 100px;
    flex-shrink: 0;
  }
}

.c-modal {
  z-index: 99999;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  visibility: hidden;
  padding: 50px;
  opacity: 0;
  transition: .3s opacity, 0s visibility .3s;
}

.c-modal__overlay {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:  rgba(107, 114, 128, .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: 800px;
  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;
  overflow: hidden;
  display: flex;
}

.c-modal__close {
  background: url('imgs/icon-close.svg') no-repeat center center / 1rem 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  display: block;
  position: absolute;
  z-index: 10;
  right: -2rem;
  top: -2rem;
  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;
  }

}


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


.wp-block-social-links {
  grid-gap: 1rem;
  display: flex;
  margin: 2rem 0;
}

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

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

.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;
  border: 1px solid var(--clr-primary200) !important;
  border-radius: 50%;
  padding: .25rem;
}

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

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

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


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

.c-pagination__numbers {
  display: flex;
  gap: .25rem;
  align-items: center;
}

.c-pagination__number {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .75rem;
  min-width: 3rem;
  font-size: 1.25rem;
  color: var(--brand-primary-purple);
  border-radius: .75rem;
  border: 1px solid var(--brand-primary-purple);
  background: white;
  line-height: 1;
  transition: .3s background, .3s color, .3s border;
} 

.c-pagination__number:hover, .c-pagination__number--current {
  color: white;
  background: var(--brand-primary-purple);
}

.c-pagination__number a, .c-pagination__number a:hover {
  color: inherit;
  transition: .3s color;
}

.c-pagination__prev, .c-pagination__next {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem;
  min-width: 3rem;
  font-size: 1.25rem;
  color: var(--brand-primary-purple);
  border-radius: .75rem;
  border: 1px solid var(--brand-primary-purple);
  background: white;
  line-height: 1;
  font-weight: 800;
   transition: .3s background, .3s color, .3s border;
}

.c-pagination__prev:hover:not(.disabled), .c-pagination__next:hover:not(.disabled) {
  color: white;
  background: var(--brand-primary-purple);
}

.c-pagination__prev.disabled, .c-pagination__next.disabled {
  opacity: .5;
}

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

.c-pagination__prev svg path, .c-pagination__next svg path {
  transition: .3s fill;
}

.c-pagination__prev:hover:not(.disabled) svg path, .c-pagination__next:hover:not(.disabled) svg path {
  fill: white;
}

.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: 99rem;
  border-bottom-right-radius: 99rem;
  color: white;
  background: var(--clr-secondary500);
  padding: 1rem 1.25rem;
  font-size: 1rem;
  font-family: var(--ff-body);
  font-weight: 500;
  border: none;
  box-shadow: none;
  line-height: 1;
  -webkit-appearance: none;
  transition: .3s background; 
}

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

.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: 2.5rem;
  border-radius: .5rem;
}


@media screen and (max-width: 600px) {
  .has-background.wp-block-group {
    padding: 2rem;
  }
}

.wp-block-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: calc(var(--b-space) * 2/3) auto;
  max-width: 830px;
}

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

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

.wp-block-accordion-item {
  padding: 1.5rem 1.875rem;
  border-radius: .75rem;
  border: 1px solid var(--brand-primary-purple);
  background: white;
}

.wp-block-accordion-heading {
  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;
  margin: 0;
  font-size: 1.375rem;
  color: var(--brand-primary-purple);
  font-weight: 700;
  transition: .3s color;
}

.wp-block-accordion-item:hover .wp-block-accordion-heading {
  color: var(--brand-primary-blue);
}

.wp-block-accordion-heading * {
  margin: 0;
}

.wp-block-accordion-heading__toggle-icon {
  width: 1rem;
  height: 1rem;
  background: url('imgs/icon-plus.svg') center center / 1rem 1rem;
  border-radius: .25rem;
  flex-shrink: 0;
  position: relative;
  font-size: 0;
  transform: none !important;
  transition: .3s transform;
}

.wp-block-accordion-item.is-open .wp-block-accordion-heading__toggle-icon  {
  transform: none;
}

.wp-block-accordion-heading__toggle {
  padding: 0;
  gap: .5rem;
}

.wp-block-accordion-heading__toggle-title {
  text-decoration: none !important;
}

.wp-block-accordion-panel {
  display: block !important;
  padding: 0;
  height: 0;
  overflow: hidden;
  transition: .3s height, .3s padding;
}

.wp-block-accordion-item.is-open .wp-block-accordion-panel {
  height: auto;
  padding: 1rem 0 0;
}

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

@media screen and (max-width: 600px) {
  .wp-block-accordion-heading {
    font-size: 1.125rem;
  }
}

.c-cardGrid {
  --gap: 2.5rem;
  --count: 3;
  display: flex;
  gap: var(--gap);
  flex-wrap: wrap;
  margin: var(--b-space) 0;
}

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

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

.c-cardGrid--2 {
  --count: 2;
}

.c-cardGrid--1 {
  --count: 1;
}

.c-cardItem {
  --iconWidth: 157px;
  --padding: 2.5rem;
  width: calc((100% - ((var(--count) - 1) * var(--gap))) / var(--count));
  border-radius: .75rem;
  padding: var(--padding);
}

.c-cardItem.is-style-icon {
  border: 1px solid var(--brand-primary-purple);
  margin-top: calc(var(--iconWidth) / 2);
}

.c-cardItem__icon {
  border-radius: 50% !important;
  aspect-ratio: 1/1;
  width: var(--iconWidth);
  margin:  calc(((var(--iconWidth) / 2) + var(--padding)) * -1) auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
}

.c-cardItem__icon img {
  width: 72px;
  aspect-ratio: 1/1; 
  object-fit: contain;
  display: block;
}

.c-cardGrid--center .c-cardItem {
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-cardItem.is-style-hover {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.c-cardItem.is-style-hover > .wp-block-image {
  margin: 0;
}

.c-cardItem.is-style-hover > .wp-block-image > img {
  width: 100%;
  display: block;
}

.c-cardItem__hover {
  position: absolute;
  background: inherit;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: var(--padding);
  place-content: center;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-.5rem);
  overflow-y: auto;
  transition: .3s opacity, 0s visibility .3s, .3s transform;
}

.c-cardItem:hover .c-cardItem__hover {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition-delay: 0s;

}

@media screen and (max-width: 920px) {
  .c-cardItem {
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .c-cardGrid {
    --gap: 1rem; 
    --padding: 1.5rem;
    --iconWidth: 120px;
  }

  .c-cardItem {
     --iconWidth: 120px;
  }

  .c-cardItem__icon img {
    width: 54px;
  }

}


.c-newsWrapper {
  border-bottom: 1px solid var(--clr-greyscale600);
}

.c-newsWrapper h2 {
  flex-shrink: 0;
  font-size: .875rem;
  margin: 0 0 -1px 0;
  width: 171px;
  border-right: 1px solid var(--clr-greyscale600);
  border-bottom: 1px solid var(--clr-greyscale600);
  color: var(--clr-greyscale700);
  padding: 1rem 1.5rem;
  text-align: right;
}


.c-newsItems {
  --gap: 1.125rem;
  --count: 4;
  --gapCount: calc(var(--count) - 1);
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
  margin: 0;
  border-left: 1px solid var(--clr-greyscale600);
  border-top: 1px solid var(--clr-greyscale600);
  margin-left: 170px;
  padding: 3rem;
}

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

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

.c-newsItems > .c-newsItem {
  width: calc((100% - (var(--gap) * var(--gapCount))) / var(--count));
}

@media screen and (max-width:1300px) {
  .c-newsItems  {
    --count: 3;
  }
}

@media screen and (max-width:1100px) {
  .c-newsItems  {
    --count: 2;
  }
}

@media screen and (max-width:850px) {
 .c-newsItems  {
    --count: 1;
    padding: 2rem;
    margin-left: 140px;
  }

  .c-newsWrapper h2 { 
    width: 141px;
  }

}

@media screen and (max-width:600px) {
  .c-newsWrapper h2 {
    border-right: 0;
    text-align: left;
    border-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .c-newsItems  {
    border-left: 0;
    padding: 2rem 0;
    margin-left: 0;
  }
}

.c-newsItem {
  display: flex;
  flex-direction: column;
}

.c-newsItem__thumb {
  margin-bottom: .75rem;
}

.c-newsItem__thumb img {
  display: block;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: .75rem;
}

.c-newsItem__categories {
  display: flex;
  gap: .25rem;
  margin-bottom: .25rem;
}

.c-newsItem__categories a {
  font-weight: 700;
  font-size: .8125rem;
  color: var(--clr-greyscale700);
}

.c-newsItem__categories a:hover {
  color: var(--brand-primary-purple);
}

.c-newsItem__meta {
  display: flex;
  gap: .25rem;
  align-items: flex-start;
  margin-top: .5rem;
}

.c-newsItem__date {
  font-size: .8125rem;
  font-weight: 700;
  color: var(--clr-greyscale700);
}

.c-newsItem__date:after {
  content: ' | '
}

.c-newsItem h3 {
  margin: 0 0 .25rem 0;
  font-size: 1.25rem;
}

.c-newsItem h3 a {
  color: var(--clr-text);
  transition: .3s color;
}

.c-newsItem h3 a:hover {
  color: var(--brand-primary-purple);
}

.c-newsItem .wp-block-button {
  margin-top: 2rem;
}

.c-newsItem p {
  font-size: .9375rem;
  margin: 0;
  color: var(--clr-greyscale700);
}


@media screen and (max-width: 800px) {
  .c-newsItem .wp-block-button {
    margin-top: 1.25rem;
  }

}

.c-broadcastItems {
  --gap: 1.125rem;
  --count: 5;
  --gapCount: calc(var(--count) - 1);
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
  row-gap: 3rem;
  margin: 0;
}

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

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

.c-broadcastItems > .c-broadcastItem {
  width: calc((100% - (var(--gap) * var(--gapCount))) / var(--count));
}

@media screen and (max-width:1400px) {
  .c-broadcastItems  {
    --count: 4;
  }
}


@media screen and (max-width:1200px) {
  .c-broadcastItems  {
    --count: 3;
  }
}

@media screen and (max-width:900px) {
  .c-broadcastItems  {
    --count: 2;
  }
}

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

}

.c-broadcastItem {
  display: flex;
  flex-direction: column;
}

.c-broadcastItem__thumb {
  margin-bottom: 1.5rem;
}

.c-broadcastItem__thumb img {
  display: block;
  aspect-ratio:7/10;
  object-fit: cover;
  border-radius: .75rem;
}

.c-broadcastItem h3 {
  margin: 0;
  font-size: 1.25rem;
}

.c-broadcastItem h3 a {
  color: var(--clr-text);
  transition: .3s color;
}

.c-broadcastItem h3 a:hover {
  color: var(--brand-primary-purple);
}

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

  .c-broadcastItem__thumb {
    margin-bottom: 1rem;
  }
}

.c-newsSliderWrap {
  position: relative;
  margin: 2rem 0 var(--b-space);
}

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

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

.c-newsSliderWrap__view {
  position: absolute;
  z-index: 9;
  bottom: calc(100% + 2rem);
  right: 0;
}

.c-newsSlider .owl-next, .c-newsSlider .owl-prev {
  position: absolute;
  right: 0;
  top: calc(var(--slide-width) * (10 / 16) / 2);
  transform: translate(50%, -50%);
}

.c-newsSlider .owl-prev {
  right: auto;
  left: 0;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 600px) {
  .c-newsSliderWrap {
    margin: 1.75rem 0;
  }
  .c-newsSliderWrap__view {
    bottom: calc(100% + 1.75rem);
  }
}

.owl-nav {
  display: flex !important;
  gap: .25rem;
}

.owl-nav button.owl-next, .owl-nav button.owl-prev {
  padding: 0 !important;
  width: 3.625rem;
  height: 3.625rem;
  border-radius: 99rem;
  border: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-primary-green) !important;
  transition: .3s background, .3s opacity;
}

.owl-nav button.owl-next:hover:not(.disabled), .owl-nav button.owl-prev:hover:not(.disabled) {
  background-color: oklch(from var(--brand-primary-green) calc(l + 0.05) c h) !important;
}

.owl-nav button.owl-next.disabled, .owl-nav button.owl-prev.disabled {
  opacity: 0;
  pointer-events: none;
}

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

  .owl-nav button.owl-next svg, .owl-nav button.owl-prev svg {
    width: 1.125rem;
  }
}

.c-broadcastsSliderWrap {
  position: relative;
  margin: 2rem 0 var(--b-space);
}

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

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

.c-broadcastsSliderWrap__view {
  position: absolute;
  z-index: 9;
  bottom: calc(100% + 2rem);
  right: 0;
}

.c-broadcastsSlider .owl-next, .c-broadcastsSlider .owl-prev {
  position: absolute;
  right: 0;
  top: calc(var(--slide-width) * (10 / 7) / 2);
  transform: translate(50%, -50%);
}

.c-broadcastsSlider .owl-prev {
  right: auto;
  left: 0;
  transform: translate(-50%, -50%);
}

.c-broadcastsSlider .c-broadcastItem h3 {
  font-size: 1.875rem;
  text-align: center;
}

@media screen and (max-width: 600px) {
  .c-broadcastsSliderWrap {
    margin: 1.75rem 0;
  }
  .c-broadcastsSliderWrap__view {
    bottom: calc(100% + 1.75rem);
  }

  .c-broadcastsSlider .c-broadcastItem h3 {
    font-size: 1.5rem;
  }
}

/* .c-backToTop {
  position: fixed;
  z-index: 10;
  bottom: -.375rem;
  right: 2rem;
  border-radius: .375rem;
  background-image: var(--gradient-btn-rose-mauve);
  background-size: 200% 200%;
  background-position: center center;
  width: 2.5rem;
  height: 2.5rem;
  visibility: hidden;
  opacity: 0;
  transition: .3s opacity, 0s visibility .3s, .3s background
}

.c-backToTop:hover {
  background-position: 100% 0;
}

.c-backToTop:after {
  content: '';
  width: 11px;
  height: 7px;
  background: url('imgs/icon-arrow-top.svg') center center / 11px 7px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.is-scrolled .c-backToTop {
  transition-delay: 0s;
  opacity: 1;
  visibility: visible;
} */

.wp-block-gallery {
  margin: 2rem 0;
  background: var(--clr-primary100);
  padding: 1.25rem;
  border-radius: .5rem;
}

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

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

.wp-block-gallery.has-nested-images {
  gap: 1rem !important;
  --wp--style--unstable-gallery-gap: 1rem !important;
}

.wp-block-gallery.has-nested-images figure.wp-block-image {
  flex-grow: 0;
}

.wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
  background: rgba(0,0,0,.5);
  border-radius: .5rem;
  padding: .5rem;
  font-weight: 700;
  letter-spacing: normal;
  text-transform: none;
  border-bottom-right-radius: .5rem;
  border-bottom-left-radius: .5rem;
  display:  none;
}

.wp-block-gallery.has-nested-images figure.wp-block-image:has(figcaption)::before {
  display: none;
}

.wp-block-gallery.has-nested-images figure.wp-block-image img {
  border-radius: .5rem;
}

.c-testimonialSlider {
  flex-direction: column;
  gap: 1.5rem;
}

.c-testimonialSlider:before {
  content: '';
  background: url('imgs/icon-quote.svg') center center / cover;
  width: 54px;
  height: 46px;
  display: block;
}

.c-testimonialSlide {
  padding-right: 100px;
}

.c-testimonialSlide p {
  font-size: 1.9375rem;
  line-height: 1.2;
}

.c-testimonialSlider .owl-nav {
  position: absolute;
  right: 0;
  bottom: 0;
}

@media screen and (max-width: 600px) {
  .c-testimonialSlide {
    padding-right: 0;
  }

  .c-testimonialSlider .owl-nav { 
    position: static;
  }

  .c-testimonialSlide p {
    font-size: 1.25rem;
    line-height: 1.4;
  }
}

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

.c-footer .u-wc {
  max-width: 1400px;
}

.c-footer h4 {
  font-size: 1.25rem;
}

.c-footer__top {
  flex-direction: space-between;
}

.c-footer__top > :nth-of-type(2) {
  min-width: 200px;
}


.c-footer__bottom  p {
  margin: 0;
}

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

.c-footerMenu ul {
  gap: .75rem;
}

.c-footerMenu .wp-block-navigation-item__label {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9375rem;
  color: white;
  transition: .3s color;
}

.c-footerMenu a:hover .wp-block-navigation-item__label {
  color: var(--clr-greyscale300);
}

.c-footerMenu .wp-block-navigation-item {
  margin: 0;
}

.c-footerMenu .wp-block-navigation-item__label img {
  display: block;
  flex-shrink: 0;
}

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

.c-footer__bottom a {
  color: white;
}

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

@media screen and (max-width: 920px) {
  .c-footer__top {
    flex-direction: column;
    gap: 3rem;
    align-items: flex-start !important;
  }
}

@media screen and (max-width: 768px) {
  .c-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
    margin-top: 3rem;
  }
}


.c-featureSlider {
  display: flex;
  gap: 3%;
  align-items: center;
}

.c-featureSlider__slider .owl-nav {
  display: none !important;
}

.c-featureSlider__left {
  width: 44%;
  flex-shrink: 0;
}

.c-featureSlider__bullets  {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 3.5rem 0;
}

.c-featureSlider__bullet  {
  border-left: 2px solid var(--clr-greyscale500);
  padding: 1.5rem 0 1.5rem 2rem;
  color: var(--clr-greyscale500);
  cursor: pointer;
  max-width: 460px;
  position: relative;
}

.c-featureSlider__bullet h3 {
  font-size: var(--fs-h2);
  transition: .3s color;
  margin: 0 0 .25rem 0;
}

.c-featureSlider__bullet p {
  transition: .3s color;
}

.c-featureSlider__right {
  min-width: 0;
  margin-right: calc((100% - 100vw + var(--scrollbar-width, 0px)) / 2) !important;
  flex-grow: 1 !important;
}

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

.c-featureSlider__bullet.active  {
  /* border-left: 2px solid var(--clr-primary500); */
  color: var(--clr-text);
}

.c-featureSlider__bullet.active h3 {
  color: var(--clr-primary500);
}

.c-featureSlider__bullet:before {
  content: '';
  position: absolute;
  left: -1px;
  top: -20px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clr-primary500);

  /* glow effect */
  box-shadow:
     0 0 8px rgba(151, 71, 152, 0.8),
    0 0 20px rgba(151, 71, 152, 1),
    0 0 40px rgba(151, 71, 152, 0.4);

  transform: translateX(-50%);
  opacity: 0;
}

.c-featureSlider__bullet.active:before {
   animation: floatDown 1.5s linear forwards;
}

.c-featureSlider__bullet:after {
  content: '';
  width: 2px;
  background: var(--clr-primary500);
  opacity: 0;
  position: absolute;
  top: 0;
  bottom: 100%;
  left: -2px;
  transition: 1.5s opacity, 1.5s bottom;
}

.c-featureSlider__bullet.active:after {
  opacity: 1;
  bottom: 0;
}


@keyframes floatDown {
  0% {
    top: 0;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}



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

  .c-featureSlider {
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    gap: 2rem;
  }

  .c-featureSlider__left {
    display: contents;
    width: 100%;
  }

  .c-featureSlider__header {
    order: 1;
  }

  .c-featureSlider__bullets {
    order: 2;
    margin: 0;
    gap: 1rem;
  }

  .c-featureSlider__bullet {
    max-width: 100%;
    padding: 1rem 0 1rem 1.5rem
  }

  .c-featureSlider__bullet h3 {
    font-size: var(--fs-h3);
    margin: 0 0 .5rem 0;
  }

  .c-featureSlider__right {
    order: 3;
    width: calc((100% + 100vw + var(--scrollbar-width, 0px)) / 2) !important;
  }

  .c-featureSlider__footer {
    order: 4;
    width: 100%;
  }

  .c-featureSlider__footer .wp-block-buttons {
    flex-direction: row;
  }

  .c-featureSlider__footer .wp-block-button:not(.is-style-app-store):not(.is-style-google-play) {
    width: 100%;
  }

  .c-featureSlider__footer .is-style-app-store,  .c-featureSlider__footer .is-style-google-play {
    flex-grow: 0;
  }


}

.c-teamMember {
  margin: 5rem 0;
}

.c-teamMember:first-child {
  margin-top: 0
}

.c-teamMember:last-child {
  margin-bottom: 0
}


.c-teamMember > .wp-block-image {
  width: 24%;
  flex-shrink: 0;
}

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

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

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

  .c-teamMember > .wp-block-image {
    width: 100%;
    max-width: 200px; 
  }
}

.c-bannerSlider {
  position: relative;
}

.c-bannerSlider .owl-nav {
  display: none !important;
}

.c-bannerSlider .owl-dots {
  position: absolute;
  right: 5%;
  bottom: 4rem;
}

@media screen and (max-width: 1600px) {
  .c-bannerSlider .owl-dots {
    right: var(--width-gutter);
  }
}

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


.owl-dots {
  display: flex;
  align-items: center;
  gap: .5rem
}

.owl-dot {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  padding: 0;
  border: 1px solid white !important;
  background: transparent !important;
  transition: .3s border, .3s background;
}

.owl-dot:hover, .owl-dot.active {
  border: 1px solid var(--brand-primary-green) !important; 
  background: var(--brand-primary-green) !important;
}

.c-logoBar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: calc(var(--b-space) * (1/2)) 0;
  gap: 4%;
}

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

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

.c-logoBar img {
  display: block;
  margin: 0 auto;
}

.c-logoBar a {
  transition: .3s opacity;
}

.c-logoBar a:hover {
  opacity: .8;
}

@media screen and (max-width: 600px) {
  .c-logoBar {
    justify-content: center !important;
    gap: 1.5rem;
    row-gap: .25rem;
    flex-wrap: wrap !important;
  }

   .c-logoBar img {
    margin: 0 auto;
   }

  .c-logoBar > *{
    width: calc((100% - 4.5rem) / 4);
  }
}

.c-eventItems {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

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

.c-eventItem__thumb  {
  width: 33.33%;
  flex-shrink: 0;
}

.c-eventItem__thumb img {
  border-radius: .75rem;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.c-eventItem__date {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 1.125rem;
  color: var(--brand-primary-purple);
  font-weight: 800;
}

.c-eventItem__date:before {
  content: '';
  background: url('imgs/icon-calendar.svg') center center / 45px 45px;
  width: 45px;
  height: 45px;
}

@media screen and (max-width: 1100px) {
  .c-eventItem__thumb  {
    width: 50%;
  }
}

@media screen and (max-width: 768px) {
  .c-eventItem__wrap {
    flex-direction: column;
    gap: 1.5rem;
  }
  .c-eventItem__thumb  {
    width: 100%;
  }
}

.c-team {
  display: flex;
}

.c-team__details {
  background: black;
  color: white;
  width: 731px;
  flex-shrink: 0;
  padding: 130px 230px 60px 100px;
  margin-right: -175px;
  margin-left: -100px;
  display: grid;
  grid-template-rows: 1fr 0;
  align-items: start;
}

@media screen and (max-width: 1600px) {
  .c-team__details {
    margin-left: calc(var(--width-gutter) * -1);
    padding-left: 60px;
    width: 690px;
  }
}

.c-team__detail {
  min-width: 0;
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  position: sticky;
  top: calc(var(--height-header) + 1rem);
  opacity: 0;
  visibility: hidden;
  transition: .3s opacity, 0s visibility .3s;
}

.c-team__detail.active {
  opacity: 1;
  visibility: visible;
  transition: .3s opacity .2s, 0s visibility 0s;
}

.c-team__grid {
  --gap: 1.125rem;
  --count: 3;
  --gapCount: calc(var(--count) - 1);
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
  margin: 0;
  padding: 100px 0 26px 0;
}

.c-team__trigger {
  width: calc((100% - (var(--gap) * var(--gapCount))) / var(--count));
  position: relative;
  border: none;
  outline: none;
  padding: 0;
  border-radius: .75rem;
  overflow: hidden;
}

.c-team__trigger img {
  display: block;
  object-fit: cover;
  aspect-ratio: 4/5;
}

.c-team__trigger span {
  position: absolute;
  z-index: 3;
  top: 50%;
  bottom: 0;
  right: 0;
  left: 0;
  color: white;
  background: linear-gradient(0deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  padding: 2rem 1.5rem;
  text-align: right;
  font-weight: 800;
  font-size: 1.625rem;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  opacity: 0;
  transition: .3s opacity;
}

.c-team__trigger:hover span, .c-team__trigger.active span {
  opacity: 1;
}

@media screen and (max-width: 980px) {
  .c-team__trigger span {
    font-size: 1.25rem;
    padding: 1.5rem;
  }
}

.c-team__trigger img:nth-of-type(2) {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  opacity: 0;
  transition: .3s opacity;
}

.c-team__trigger:hover  img:nth-of-type(2), .c-team__trigger.active  img:nth-of-type(2) {
  opacity: 1;
}

.c-team__detail h3 {
  margin-bottom: .25rem;
}

.c-team__title {
  background-clip: text !important;
  -webkit-background-clip: text !important;
  color: transparent;
  -webkit-text-fill-color: transparent;
  width: fit-content;
  font-weight: 800;
  font-size: 1.375rem;
}

@media screen and (max-width:1300px) {
  .c-team__grid  {
    --count: 2;
  }
}

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

  .c-team__details {
  
    width: 500px;
    flex-shrink: 0;
    padding: 120px 130px 60px 60px;
    margin-right: -100px;
  }
}

@media screen and (max-width:900px) {
  .c-team__grid  {
    --count: 1;
  }
}

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

.c-teamSlider {
  position: relative;
  margin-top: var(--b-space);
}

@media screen and (min-width:769px) {
  .c-teamSlider {
    display: none !important;
  }
}

.c-teamSlider .owl-next, .c-teamSlider .owl-prev {
  position: absolute;
  right: 0;
  top: calc(var(--slide-width) * (5/4) / 2);
  transform: translate(50%, -50%);
}

.c-teamSlider .owl-prev {
  right: auto;
  left: 0;
  transform: translate(-50%, -50%);
}

.c-teamItem__thumb {
  position: relative;
  border-radius: .75rem;
  overflow: hidden;
}


.c-teamItem__thumb img {
  display: block;
  object-fit: cover;
  aspect-ratio: 4/5;
}


.c-teamItem__thumb img:nth-of-type(2) {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  opacity: 0;
  transition: .3s opacity;
}

.c-teamItem__thumb:hover  img:nth-of-type(2) {
  opacity: 1;
}

.c-teamItem__content {

}

.c-teamItem__content h3 {
  margin-bottom: .25rem;
}

.c-teamItem__title {
  background-clip: text !important;
  -webkit-background-clip: text !important;
  color: transparent;
  -webkit-text-fill-color: transparent;
  width: fit-content;
  font-weight: 800;
  font-size: 1.275rem;
}

.c-careerItems {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: calc(var(--b-space) * 2/3) auto;
  max-width: 830px;
}

.c-careerItem {
  padding: 1.5rem 1.5rem 1.5rem 1.875rem;
  border-radius: .75rem;
  border: 1px solid var(--brand-primary-purple);
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.375rem;
  font-family: var(--ff-heading);
  color: var(--brand-primary-purple);
  font-weight: 700;
  transition: .3s color;
}

.c-careerItem:hover {
  color: var(--brand-primary-blue);
}

.c-careerItem:after {
  content: '';
  width: 1.5rem;
  height: 1.5rem;
  background: url('imgs/icon-btn-arrow.svg') center center / 1.5rem 1.5rem;
  flex-shrink: 0;
}

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


.c-projectSlider {
  margin: var(--b-space) 0;
}

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

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

.c-projectSlider .owl-next, .c-projectSlider .owl-prev {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, calc(-50% - (2.75rem / 2)));
}

.c-projectSlider .owl-prev {
  left: calc(52.5%);
  transform: translate(-50%, calc(-50% - (2.75rem / 2)));
}

.c-projectSlider .owl-dots {
  margin-top: 1.5rem;
}

.c-projectItem {
  display: flex;
  gap: 5%;
  align-items: center;
}

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

.c-projectItem__thumb {
  width: calc((100% - 5%) / 2 );
  flex-shrink: 0;
}

.c-projectItem__thumb img {
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: .75rem;
}

@media screen and (max-width: 920px) {
  .c-projectSlider .owl-next, .c-projectSlider .owl-prev {
    top: calc(var(--slide-width) * (9 / 16) / 2);
    transform: translate(50%, -50%);
  }

  .c-projectSlider .owl-prev {
    right: auto;
    left: 0;
    transform: translate(-50%, -50%);
  }

  .c-projectItem { 
    flex-direction: column-reverse;
    gap: 1.5rem;
  }

  .c-projectItem__thumb {
    width: 100%;
  }
}

.c-fullBleed {
  margin-right: calc((100% - 100vw + var(--scrollbar-width, 0px)) / 2) !important;
  position: relative;
  flex-grow: 1 !important;
}

.c-fullBleed--top {
  margin-top: calc(var(--b-space) * -1) !important;
}

.c-fullBleed--bottom {
   margin-bottom: calc(var(--b-space) * -1) !important;
}

.c-fullBleed .wp-block-image {
  width: 100%;
}

.c-fullBleed img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center center;
  border-radius: 0;
}

@media screen and (max-width: 1120px) {
  .c-fullBleed--top {
    margin-top: 0 !important;
  }
  .c-fullBleed img {
    height: auto;
    aspect-ratio: 16 / 7;
  }

}