/*
Theme name: Nation Vet Hospital
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-primary50: #D2E6E9; 
  --clr-primary500: #4E97A2;
  --clr-secondary500: #00A69C; 
  --clr-greyscale50: #F9FAFB;
  --clr-greyscale100: #F3F4F6;
  --clr-greyscale200: #E5E7EB;
  --clr-greyscale300: #D1D5DB;
  --clr-greyscale400: #9CA3AF;
  --clr-greyscale500: #6B7280;
  --clr-greyscale600: #4B5563;
  --clr-greyscale700: #374151;
  --clr-greyscale800: #1F2937;
  --clr-greyscale900: #111827;

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

  --gradient-1: linear-gradient(89.87deg, #4E97A2 0.13%, #A5D672 99.9%);

  /* widths */
  --width-content: 1350px;
  /* heights */
  --height-header: 146px;
  --headerOffset: 50px;
  /* spacing */
  --b-space-lg: 180px;
  --b-space: 120px;
  --b-space-sm: 80px;
  /* font family */
  --ff-body: "Fira Sans", sans-serif;
  --ff-heading: "Outfit", sans-serif;
  /* font sizes */
  --fs-h1: 3.815rem;
  --fs-h2: 3.052rem;
  --fs-h3: 2.441rem;
  --fs-h4: 1.953rem;
  --fs-h5: 1.562rem;
  --fs-h6: 1.250rem;
  --fs-p: 1rem;
  --fs-p-lg: 1.125rem;
  --fs-p-sm: .800rem;
  --fs-p-xsm: .64rem;
}

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

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

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

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

}


@media screen and (max-width:600px) {
  :root {
    --height-header: 60px;
    --headerOffset: 8px;
    /* font sizes */
    --fs-h1: 3rem;
    --fs-h2: 2.5rem;
    --fs-h3: 2rem;
    --fs-h4: 1.5rem;
    --fs-h5: 1.25rem;
    --fs-h6: 1.1rem;
    /* spacing */
    --b-space-lg: 80px;
    --b-space: 68px;
    --b-space-sm: 56px;
  }
} 

@media screen and (max-width:480px) {
  :root {
   --fs-h1: 34px;
   --fs-h2: 28px;
  }

}

/* utilities */

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

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

  .u-wc { 
    padding: 0 3.75rem;
  }

}


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

  .u-wc { 
    padding: 0 1.5rem;
  }

}

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

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

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

.content-wrap {
  overflow: clip;
}

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

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

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

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

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


h2, .h2 {
  font-size: var(--fs-h2);
  line-height: 1.15;
  margin: 32px 0 30px;
}

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

h3 {
  font-size: var(--fs-h3);
  line-height: 1.35;
  margin: 32px 0 12px;
}

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

h4 {
  font-size: var(--fs-h4);
  line-height: 1.3;
  margin: 32px 0 16px;
}

h5 {
  font-size: var(--fs-h5);
  line-height: 1.2;
  margin: 32px 0 16px;
}

h6 {
  font-size: var(--fs-h6);
  line-height: 1.2;
  margin: 32px 0 16px;
}

.is-style-overhead + h1, 
.is-style-overhead + h2,
.is-style-overhead + h3,
.is-style-overhead + h4,
.is-style-overhead + h5,
.is-style-overhead + h6 {
  margin-top: 0;
}

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

  h1 {
    margin-bottom: 24px;
  }

  h2 {
    margin-bottom: 20px;
  }

  h3 {
    margin-bottom: 12px;
  }

  h4 {
    margin-bottom: 12px;
  }

  h5 {
    margin-bottom: 12px;
  }
  
}

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

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

p {
  margin-bottom: 1rem;
}

.is-style-overhead {
  font-size: .875rem;
  font-weight: 600;
  margin-bottom: .5rem;
  color: var(--clr-primary);
}

.is-layout-flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  grid-gap: 24px;
  flex-grow: 1;
}

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


.has-lg-font-size {
  font-size: var(--fs-p-lg);
  margin-top: 24px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 20px;
}

h5 + .has-lg-font-size {
  margin-top: 0;
}


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

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


}

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

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


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

  p {
    margin-bottom: 12px;
  }
}

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

ul {
  padding-left: 24px;
  margin: 0 0 16px;
}

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

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

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

ol {
  margin: 20px 0 16px;
}

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

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

li {
  padding-left: 4px;
  margin-bottom: 20px;
}

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

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


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

.wp-block-separator, hr {
  display: block;
  padding: 0;
  height: 1px;
  background: #BFBFBF;
  margin: 60px 0;
  border: none !important;
}


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

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

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

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

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

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

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

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

/* offset for bottom header spacing */
.content-wrap > .c-section:first-child:not([class*="background-color"]) {
  padding-top: calc(var(--b-space) - var(--headerOffset));
}

.content-wrap > .c-section--lg:first-child:not([class*="background-color"]) {
  padding-top: calc(var(--b-space-lg) - var(--headerOffset));
}

.wp-block-image {
  margin: 40px 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 img, img.is-style-rounded {
  border-radius: .375rem;
}

.wp-block-image.is-style-rounded-shadow img {
  border-radius: .375rem;
  box-shadow: 0px 5.44px 11.78px 0px #0000001A, 0px 21.75px 21.75px 0px #00000017, 0px 48.03px 29px 0px #0000000D, 0px 85.18px 34.44px 0px #00000003, 0px 133.21px 37.15px 0px #00000000;
}

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

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

  .wp-block-image {
    margin: 28px 0;
  }
  
}

.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-buttons {
  margin: 2rem 0;
  grid-gap: 1rem;
  display: flex;
  align-items: center;
}

.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: var(--fs-p);
  font-family: var(--ff-body);
  font-weight: 400;
  color: var(--clr-text);
  flex-shrink: 0;
  line-height: 1.1;
  text-decoration: none;
  display: inline-flex;
  grid-gap: .5rem;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: none;
  box-shadow: none;
  -webkit-appearance: none;
  transition: .3s background, .3s color, .3s border;
}

.wp-block-button__link svg {
  width: .5625rem;
  height: .5625rem;
  display: block;
}

.wp-block-button:not([class*="is-style-"]) .wp-block-button__link, .is-style-primary .wp-block-button__link {
  border-radius: 999px;
  color: white;
  background: var(--clr-greyscale800);
  padding: .9rem 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-primary500);
}

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

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

.is-style-secondary .wp-block-button__link {
  border-radius: 999px;
  color: var(--clr-greyscale800);
  background: transparent;
  border: 1px solid var(--clr-greyscale800);
  padding: calc(.9rem - 1px) calc(1.5rem - 1px);
}

.is-style-secondary .wp-block-button__link:hover {
  color: white;
  background: var(--clr-greyscale900);
}

.is-style-tertiary .wp-block-button__link {
  padding: 0;
  color: var(--clr-primary500);
  background: none;
  font-size: var(--fs-p-sm);
}

.is-style-tertiary .wp-block-button__link:hover {
  color: var(--clr-greyscale900);
  background: none;
}



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

  .wp-block-buttons {
    grid-gap: 16px;
  }

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

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

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

  .wp-block-button__link {
    font-size: 16px;
  }

  /* truncate the exit button to fit on mobile */
  .wp-block-button__icon--exit + span {
    display: none;
  }

}

/*header styles*/

.c-mainHeader {
  height: var(--height-header);
  position: sticky;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  background:  rgba(255,255,255,.94);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 12px rgba(0,0,0,0);
  backdrop-filter: blur(2px);
  transition: .3s background, .3s height, .3s box-shadow, .3s backdrop-filter, .3s transform, .3s opacity;
}

.c-mainHeader--hidden {
  opacity: 0;
}

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

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

  .c-mainHeader--mobileActive {
    background: white !important;
  }

}


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

  .admin-bar .c-mainHeader {
    top: 32px;
  }

}

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

  .admin-bar .c-mainHeader {
    top: 46px;
  }
  
}

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

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

.c-mainHeader__logo img {
  display: block;
}

.c-mainHeader__btns {
  display: flex;
  align-items: center;
  grid-gap: 12px;
}

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

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

  .c-mainHeader__logo {
    width: 176px;
    margin-right: auto;
  }

}

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

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

    .c-mainHeader__logo {
      width: 100px;
    }

    .c-mainHeader__tel {
      display: none;
    }

}


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

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

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

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

.c-mainMenu li a {
  font-size: 1rem;
  color: var(--clr-text);
  position: relative;
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
  text-decoration: none;
  padding: 2px 0;
  transition: .3s border, .3s color;
}

.c-mainMenu .current-menu-item > a, .c-mainMenu a:hover {
  border-bottom: 2px solid var(--clr-primary500);
}

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

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

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

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

.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 {
  padding: .375rem .5rem;
  font-size: .875rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
  border-radius: .25rem;
  flex-wrap: nowrap;
  color: var(--clr-greyscale500);
  border: none;
  transition: .3s color, .3s background;
}

.c-mainMenu .sub-menu a:after {
  content: '';
  width: .5625rem;
  height: .5625rem;
  flex-shrink: 0;
  background: url('imgs/icon-link-arrow.svg') center center / cover;
}

.c-mainMenu .sub-menu a:hover:after, .c-mainMenu .sub-menu a:focus-within:after {
  mix-blend-mode: color-dodge;
}

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

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

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

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

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

  .c-mainMenu .sub-menu {
    width: 200px;
    display: block;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    border-radius: 6px;
    background: white;
    padding: 10px;
    left: 50%;
    top: calc(100% + var(--dropdown-position-offset));
    padding: 1rem;
    transform: translateY(-4px) translateX(-50%);
    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) translateX(-50%);
  }

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

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

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

}

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

  .c-mainHeader__menuWrap {
    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: 30px 60px 30px;
  }

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

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

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

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


}

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

  .c-mainHeader__menuWrap{
    padding: 20px 25px;
  }

}

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

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

.c-langMenu__btn {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  text-transform: uppercase;
  border: none;
  background: none;
  outline: none;
}

.c-langMenu__btn:after {
  --icon-size-width: .6875rem;
  --icon-size-height: .375rem;
  content: '';
  flex-shrink: 0;
  width: var(--icon-size-width);
  height: var(--icon-size-height);
  background: url('imgs/icon-menu-drop-arrow.svg') center center / var(--icon-size-width) var(--icon-size-height);
  transition: .3s transform;
}

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

.c-langMenu__list {
  list-style-type: none;
  width: 160px;
  display: block;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  border-radius: 6px;
  background: white;
  padding: 10px;
  left: 50%;
  top: calc(100% + var(--dropdown-position-offset));
  padding: 1rem;
  transform: translateY(-4px) translateX(-50%);
  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-langMenu:hover .c-langMenu__list, .c-langMenu:focus-within .c-langMenu__list {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
  transform: translateY(-1px) translateX(-50%);
}

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

.c-langMenu__list li:first-child {
  border-top: 0;
  padding-top: 0;
}

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

.c-langMenu__list a {
  text-decoration: none;
  padding: .375rem .5rem;
  font-size: .875rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: .25rem;
  flex-wrap: nowrap;
  color: var(--clr-greyscale500);
  border: none;
  transition: .3s color, .3s background;
}

.c-langMenu__list a:hover, .c-langMenu__list a:focus-visible {
  background: var(--clr-primary500);
  color: white;
  border: none;
}

.c-langMenu__list a:after {
  content: '';
  width: .5625rem;
  height: .5625rem;
  background: url('imgs/icon-link-arrow.svg') center center / cover;
}

.c-langMenu__list a:hover:after {
  mix-blend-mode: color-dodge;
}

.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: 1200px) { 

  .c-navIcon {
    display: flex;
  }
}

/* footer styles */

.c-footer {
  color: white;
  position: relative;
  padding: 0 0 32px 0;
  margin: 0 auto;
}

.c-footer__top {
  padding: var(--b-space) 0;
  position: relative;
}

.c-footer__top .u-wc {
  display: flex;
  align-items: flex-start;
  grid-gap: 2rem;
}

.c-footer__col {
  flex-basis: 0;
  flex-grow: 1;
  width: auto;
}


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

.c-footer__bottom a {
  text-decoration: none;
}

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

.c-footer__bottom p {
  margin: 0;
  color: white;
}

.c-footer__top p {
  color: white;
  line-height: 1.8;
}

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

.c-footer__top p a:not(.wp-block-button__link):hover {
  color: var(--clr-greyscale200);
}

@media screen and (max-width: 980px) {
  .c-footer__top .u-wc {
    flex-wrap: wrap;
  }
  
  .c-footer__col {
    width: calc((100% - 2rem) / 2);
    flex-basis: calc((100% - 2rem) / 2);
  }
  
}

@media screen and (max-width: 600px) {
  .c-footer__col {
    width: 100%;
    flex-basis: 100%;
  }
}


/* gutenberg block / group styling */


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

.has-secondary-500-background-color {
  background-color: var(--clr-secondary500);
  color: var(--clr-text);
}

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

.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-500-background-color {
  background-color: var(--clr-greyscale500);
  color: var(--clr-text-reverse);
}

.has-grey-50-background-color {
  background-color: var(--clr-greyscale50);
  color: var(--clr-text);
}

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

.has-secondary-500-color {
  color: var(--clr-primary700);
}

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

.has-grey-50-color {
  color: var(--clr-greyscale50);
}

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

.wp-block-columns {
  margin: 70px 0;
  grid-gap: 9%;
}

.has-background.wp-block-columns {
  padding: calc(var(--b-space) * (3/4));
  border-radius: .375rem;
}

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

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

.has-background.wp-block-column {
  padding: 40px;
}

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

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

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

 
}

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

  .wp-block-columns {
    margin: 40px 0;
  }

  .has-background.wp-block-columns {
    padding: 36px 32px;
  }

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

}


.wp-block-media-text {
  margin: var(--b-space) auto;
  column-gap: 6%;
  -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__content {
  padding: 0;
}

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


@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: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
    grid-row: 2 !important;
    grid-column: 1 !important;
  }

  .wp-block-media-text  .wp-block-media-text__content {
    margin-left: auto;
    margin-right: auto;
    grid-row: 1 !important;
    grid-column: 1 !important;
  }

  .wp-block-media-text, .wp-block-media-text.has-media-on-the-right { 
    padding-left: 0;
    padding-right: 0;
  }

}

@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: 400;
  font-size: 1rem;
  margin: 0 0 .25rem 0;
  display: block;
  color: var(--clr-greyscale900)
}

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

input[type="text"]:focus, 
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border-bottom: 1px solid var(--clr-greyscale500);
}

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

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

textarea, body .gform_wrapper.gravity-theme textarea {
  height: 160px;
  border: 1px solid var(--clr-greyscale300);
  padding: .75rem;
  border-radius: .375rem;
  font-size: var(--fs-p-sm);
  margin-top: .75rem;
}

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

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

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


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

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

input[type="submit"] {
  -webkit-appearance: none;
  font-size: var(--fs-p);
  font-family: var(--ff-body);
  font-weight: 400;
  flex-shrink: 0;
  line-height: 1.1;
  text-decoration: none;
  display: inline-flex;
  grid-gap: .5rem;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: none;
  box-shadow: none;
  border-radius: 999px;
  color: white;
  background: var(--clr-greyscale800);
  padding: .9rem 1.5rem;
  -webkit-appearance: none;
  transition: .3s background, .3s color, .3s border;
}

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

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

/* gravity forms styling */


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

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

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

body .gform_wrapper.gravity-theme .gfield_error [aria-invalid="true"] {
  border: 0;
  border-bottom: 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;
  }
}

.c-newsletter_wrapper {
  margin: 28px 0 60px;
}

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

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


  .c-newsletter_wrapper .gfield {
    grid-column: initial !important;
  }

  .c-newsletter_wrapper #field_submit {
    grid-column: auto !important;
  }

  .c-newsletter .gform_fields {
    grid-gap: 0 !important;
    grid-template-columns:  1fr auto !important;
  }

  .c-newsletter input[type="email"] {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .c-newsletter input[type="submit"] {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .c-newsletter_wrapper .gfield_validation_message {
    position: absolute;
    top: calc(100% + 4px);
    margin: 0 !important;
  }

}

.c-newsletter input[type="email"] {
  margin: 0;
  height: 50px;
  border: 1px solid var(--clr-greyscale100);
}

.c-newsletter input[type="submit"] {
  height: 50px;
}

.c-newsletter_wrapper .gform_validation_errors {
  display: none;
}

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

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

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

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

/* override silly gravity from style */

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

@media screen and (max-width: 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;
  }

  .c-newsletter_wrapper {
    margin: 24px 0 32px;
  }

}

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


.c-newsItems {
  display: flex;
  flex-wrap: wrap;
   margin-block: calc(var(--b-space) * (4/6));
  --gap: 2rem;
  --columns: 3;
  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: 767px) {
  .c-newsItems {
    --columns: 2;
  }
}

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

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

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

.c-newsItem h5 {
  margin: 0 0 .5rem 0;
}

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

.c-newsItem__thumb img {
  display: block;
  width: 100%;
  border-radius: .5rem;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  box-shadow: 0px 8px 10px -6px #1018281A,  0px 20px 25px -5px #1018281A;
}

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

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

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


@media screen and (max-width: 600px) {
  .c-newsItems {
    margin: 24px 0 48px
  }
  .c-newsItem {
    padding: 32px 24px 24px;
  }
}

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

.u-fullBottom {
  margin-bottom: calc(var(--b-space) * -1);
}

.u-fullRight img {
  width: 100%;
  height: 622px;
  object-fit: cover;
  object-position: top left;
}

@media (max-width: 1120px) {
  .u-fullRight img {
    height: 500px;
  }
}

@media screen and (max-width: 600px) {
  .u-fullRight img {
    height: 300px;
  }
}

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

.wp-social-link {
  background: var(--clr-primary500) !important;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  margin: 0;
  padding: 0;
  transition: .3s background
}

.wp-block-social-link:hover {
  transform: none;
  background: var(--clr-greyscale700) !important;
}

.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 .wp-social-link svg, .wp-block-social-links.is-style-logos-only .wp-social-link svg {
  width: 1rem;
  height: auto;
  fill: white;
}


.c-pagination {
  margin-top: 1rem;
}

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

.page-numbers:not(.next):not(.prev) {
  border-radius: 50%;
  background: var(--clr-primary500);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  width: 2rem;
  height: 2rem;
  text-decoration: none;
}

.page-numbers:not(.next):not(.prev):hover {
  background: var(--clr-greyscale800);
}

.page-numbers.prev {
  margin-right: .5rem;
}

.page-numbers.next {
  margin-left: .5rem;
}


.page-numbers.next, .page-numbers.prev {
  text-decoration: none;
}


.c-serviceItem {
  padding: 3rem 0;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  text-decoration: none;
  border-top: 1px solid var(--clr-greyscale200);
}

.c-serviceItem:first-child {
  border-top: none;
  padding-top: 0;
}

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

.c-serviceItem__icon {
  --icon-size: 4rem;
  flex-shrink: 0;
  width: var(--icon-size);
  height: var(--icon-size);
  object-fit: cover;
}

.c-serviceItem:after {
  --icon-size: 2.5rem;
  content: '';
  margin-left: auto;
  width: var(--icon-size);
  height: var(--icon-size);
  background: url('imgs/icon-arrow-right.svg') center center / var(--icon-size) var(--icon-size);
  transition: .3s transform;
}

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


.c-serviceItem h5 {
  color: var(--clr-greyscale900);
  margin: 0;
  transition: .3s color;
}

.c-serviceItem:hover h5 {
  color: var(--clr-primary500);
}

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

  .c-serviceItem {
    padding: 1rem 0;
  }

  .c-serviceItem__icon {
    --icon-size: 3rem;
  }

  .c-serviceItem:after {
    --icon-size: 2rem;
  }
}

.c-teamList {
  display: flex;
  flex-wrap: wrap;
  margin-block: calc(var(--b-space) * (1/2));
  --gap: 2rem;
  --columns: 4;
  gap: var(--gap);
}

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

.c-teamList:first-child {
  margin-bottom: 0;
}

@media screen and (max-width: 980px) {
  .c-teamList {
    --columns: 3;
  }
}

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

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

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

.c-teamItem {
  text-align: center;
}

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

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

.c-teamItem h6 {
  margin-bottom: .25rem;
}

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

@media screen and (max-width: 600px) {
  .c-teamItem__thumb {
    max-width: 280px;
    margin-inline: auto;
  }
}

.c-teamModal {
  display: flex;
  gap: 3.5rem;
  overflow-y: auto;
}

.c-teamModal__left  {
  width: 280px;
  flex-shrink: 0;
}

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

.c-teamModal h5 {
  margin-bottom: .5rem;
}


@media screen and (max-width: 980px) {
  .c-teamModal__left  {
    width: 180px;
  }
}

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

  .c-teamModal {
    gap: 2rem;
  }

}

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

.c-testimonialItem {
  background: var(--clr-primary500);
  border-radius: .5rem;
  color: white;
  padding: 2rem;
}

.c-testimonialItem__stars {
  display: block;
  height: 23px;
  width: 160px;
  margin-bottom: 2rem;
  background: url('imgs/icon-stars.svg') center left / 160px 23px;
}

.c-testimonialItem__stars--4 {
  width: 130px;
}

.c-testimonialItem p:not(:last-child) {
  font-size: var(--fs-p-lg);
  line-height: 1.5;
}

.c-testimonialSlider {
  max-width: 345px;
}

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

.c-testimonialSlider  .owl-stage, .c-testimonialSlider .owl-item {
  display: flex;
}

.c-testimonials {
  position: relative;
  margin-block: calc(var(--b-space) * (1/2)) calc(var(--b-space) * (1/4));
}

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

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

.c-testimonials__nav {
  position: absolute;
  right: 0;
  bottom: calc(100% + (var(--b-space) * (1/2)));
  display: flex;
  align-items: center;
  gap: 1rem;
}

.c-testimonials__nav button {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  background: var(--clr-greyscale800);
  transition: .3s background, .3s opacity;
}

.c-testimonials__nav button:hover {
  background: var(--clr-primary500);
}

.c-testimonials__nav button.disabled {
  pointer-events: none;
  opacity: .5;
}

.c-testimonialSlider {
  margin-bottom: 2rem;
}

@media screen and (max-width: 767px) {
  .c-testimonials__nav {
    bottom: auto;
    gap: .5rem;
    background: rgba(255,255,255,.9);
    padding: .25rem;
    top: 0;
    z-index: 9;
    border-radius: 99px;
    transform: translateY(-50%);
  }
}

.c-faq {
  margin: calc(var(--b-space) * (1/2)) auto;
  background: white;
  max-width: 800px;
  padding: 0 1rem;
  border-radius: .5rem;
}

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

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

.c-faqItem {
  color: var(--clr-text);
  border-top: 1px solid var(--clr-greyscale200);
}

.c-faqItem:first-child {
  border-top: 0;
}

.c-faqItem__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  grid-gap: 1.5rem;
  cursor: pointer;
  background: white;
  border-radius: 4px;
  transition: .3s background;
  padding-block: 1rem;
}

.c-faqItem__title * {
  margin: 0;
}

.c-faqItem__title:after {
  --icon-size-width: .6875rem;
  --icon-size-height: .375rem;
  content: '';
  background: url('imgs/icon-gradient-arrow.svg') center center / var(--icon-size-width) var(--icon-size-height);
  width: var(--icon-size-width);
  height: var(--icon-size-height);
  flex-shrink: 0;
  transition: .3s transform;
}

.c-faqItem--active .c-faqItem__title:after {
  transform: rotate(180deg);
}

.c-faqItem__content {
  display: none;
  background: white;
  padding-block: 0 1.5rem;
}

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

@media screen and (max-width: 600px) {
  .c-faq {
    margin: 24px 0;
  }

}


.c-heartBlock {
  position: relative;
  display: grid;
  max-width: 942px;
  margin: 0 auto;
  grid-template-areas: "container";
  align-items: center;
}

.c-heartBlock__content, .c-heartBlock__media {
  grid-area: container;
}

.c-heartBlock__content {
  max-width: 530px;
  margin-inline: auto;
  z-index: 2;
}

.c-heartBlock__content h2 {
  max-width: 480px;
  margin-inline: auto;
}

.c-heartBlock__media {
  aspect-ratio: 472 / 375;
  background: url('imgs/heart.svg') center center / cover;
  position: relative;
  margin-block: 9%;
  transition: .3s opacity;
}

.c-heartBlock__team {
  background: black;
  position: absolute;
  width: 19%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center center;
  border-radius: 50%;
  box-shadow: 0px 6px 13px 0px #0000001A, 0px 24px 24px 0px #00000017,  0px 53px 32px 0px #0000000D, 0px 94px 38px 0px #00000003, 0px 147px 41px 0px #00000000;
  transform: translate(-50%, -50%);
  transform-origin: center center;
}

.c-heartBlock__team--1 {
  top: 0;
  left: 25%;
}

.c-heartBlock__team--2 {
  top: 0;
  left: 75%;
}

.c-heartBlock__team--3 {
  left: 100%;
  top: 28%;
}

.c-heartBlock__team--4 {
  left: 88%;
  top: 72%;
}

.c-heartBlock__team--5 {
  left: 50%;
  top: 100%;
}

.c-heartBlock__team--6 {
  left: 12%;
  top: 72%
}

.c-heartBlock__team--7 {
  left: 0;
  top: 28%;
}

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

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

  .c-heartBlock__media {
    opacity: 1;
    padding-top: 2rem;
    margin-block: calc(12% + 2rem) 12%;
    margin-inline: 3%;
  }
  
  .c-heartBlock__team {
    width: 25%;
  }


}



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

  .u-stickyCol {
    position: sticky;
    top: calc(var(--height-header) + 1rem);
  }

  .u-colPullUp {
    margin-top: -132px;
  }
}


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

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

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

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

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

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

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

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

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

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

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

.u-paws-bg-2 {
  position:relative;
  z-index: 2;
}

.u-paws-bg-2:after {
  --width: 408px;
  --height: 363px;
  content: '';
  position: absolute;
  bottom: -2rem;
  right: 2rem;
  width: var(--width);
  height: var(--height);
  background: url('imgs/bg-paws-2.png') center center / var(--width) var(--height);
  image-rendering: crisp-edges;
}

.u-paws-bg-1 {
  position:relative;
  z-index: 2;
}

.u-paws-bg-1:after {
  --width: 692px;
  --height: 276px;
  content: '';
  position: absolute;
  z-index: -1;
  bottom: -2rem;
  right: 2rem;
  width: var(--width);
  height: var(--height);
  background: url('imgs/bg-paws-1.png') center center / var(--width) var(--height);
  image-rendering: crisp-edges;
  transform: translateY(50%);
}

@media screen and (max-width: 1120px) {
  .u-paws-bg-1:after {
    bottom: -2rem;
    transform: none;
  }
}

@media screen and (max-width: 600px) {
  .u-paws-bg-2:after {
    --width: 204px;
    --height: 181px;
  }

  .u-paws-bg-1:after {
    --width: 346px;
    --height: 138px;
  }
}

