:root {
  --f-button-width: 40px;
  --f-button-height: 40px;
  --f-button-border: 0;
  --f-button-border-radius: 0;
  --f-button-color: #374151;
  --f-button-bg: #f8f8f8;
  --f-button-shadow: none;
  --f-button-transition: all .15s ease;
  --f-button-transform: none;
  --f-button-outline-width: 1px;
  --f-button-outline-color: #000000b3;
  --f-button-svg-width: 20px;
  --f-button-svg-height: 20px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: none;
  --f-button-svg-opacity: 1;
  --f-button-svg-disabled-opacity: .5;
  --f-button-svg-transition: opacity .15s ease;
  --f-button-svg-transform: none;
}

.f-button {
  width: var(--f-button-width);
  height: var(--f-button-height);
  border: var(--f-button-border);
  border-radius: var(--f-button-border-radius);
  color: var(--f-button-color);
  background: var(--f-button-bg);
  box-shadow: var(--f-button-shadow);
  transform: var(--f-button-transform);
  transition: var(--f-button-transition);
  backdrop-filter: var(--f-button-backdrop-filter);
  box-sizing: content-box;
  pointer-events: all;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

@media (hover: hover) {
  .f-button:hover:not([aria-disabled]) {
    color: var(--f-button-hover-color, var(--f-button-color));
    background-color: var(--f-button-hover-bg, var(--f-button-bg));
  }
}

.f-button:active:not([aria-disabled]) {
  color: var(--f-button-active-color, var(--f-button-hover-color, var(--f-button-color)));
  background-color: var(--f-button-active-bg, var(--f-button-hover-bg, var(--f-button-bg)));
}

.f-button:focus {
  outline: none;
}

.f-button:focus-visible {
  outline: var(--f-button-outline-width) solid var(--f-button-outline-color);
  outline-offset: var(--f-button-outline-offset);
  z-index: 1;
  position: relative;
}

.f-button svg {
  width: var(--f-button-svg-width);
  height: var(--f-button-svg-height);
  transform: var(--f-button-svg-transform);
  fill: var(--f-button-svg-fill);
  filter: var(--f-button-svg-filter);
  opacity: var(--f-button-svg-opacity, 1);
  transition: var(--f-button-svg-transition);
  stroke: currentColor;
  stroke-width: var(--f-button-svg-stroke-width);
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.f-button[aria-disabled] {
  cursor: default;
}

.f-button[aria-disabled] svg {
  opacity: var(--f-button-svg-disabled-opacity);
}

:root {
  --f-spinner-color-1: #0000001a;
  --f-spinner-color-2: #11181ccc;
  --f-spinner-width: 50px;
  --f-spinner-height: 50px;
  --f-spinner-border-radius: 50%;
  --f-spinner-border-width: 4px;
}

.f-spinner {
  margin: calc(var(--f-spinner-width) * -.5) 0 0 calc(var(--f-spinner-height) * -.5);
  width: var(--f-spinner-width);
  height: var(--f-spinner-height);
  border-radius: var(--f-spinner-border-radius);
  border: var(--f-spinner-border-width) solid var(--f-spinner-color-1);
  border-top-color: var(--f-spinner-color-2);
  padding: 0;
  animation: .75s linear infinite f-spinner, .2s .2s both f-fadeIn;
  position: absolute;
  top: 50%;
  left: 50%;
}

@keyframes f-spinner {
  to {
    transform: rotate(360deg);
  }
}

.f-panzoom, .f-zoomable {
  flex-direction: column;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.f-panzoom:before, .f-panzoom:after, .f-zoomable:before, .f-zoomable:after {
  content: "";
  display: block;
}

.f-panzoom:not(.has-controls):before, .f-zoomable:not(.has-controls):before {
  margin-bottom: auto;
}

.f-panzoom:after, .f-zoomable:after {
  margin-top: auto;
}

.f-panzoom__wrapper {
  min-width: 0;
  max-width: 100%;
  min-height: 0;
  max-height: 100%;
  position: relative;
}

.f-panzoom__wrapper.will-zoom-out {
  cursor: zoom-out;
}

.f-panzoom__wrapper.can-drag {
  cursor: move;
  cursor: grab;
}

.f-panzoom__wrapper.will-zoom-in {
  cursor: zoom-in;
}

.f-panzoom__wrapper.is-dragging {
  cursor: move;
  cursor: grabbing;
}

.f-panzoom__wrapper.has-error {
  display: none;
}

.f-panzoom__content {
  min-width: 0;
  max-width: 100%;
  min-height: 0;
  max-height: 100%;
}

.f-panzoom__content.is-lazyloading, .f-panzoom__content.has-lazyerror {
  visibility: hidden;
}

img.f-panzoom__content {
  vertical-align: top;
  object-fit: contain;
  -webkit-user-select: none;
  user-select: none;
  transition: none;
}

.f-panzoom__wrapper > img.f-panzoom__content, .f-panzoom__wrapper > picture.f-panzoom__content {
  visibility: hidden;
}

.f-panzoom__viewport {
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.f-panzoom__viewport > .f-panzoom__content {
  object-fit: fill;
  width: 100%;
  height: 100%;
  display: block;
}

picture.f-panzoom__content img {
  vertical-align: top;
  object-fit: contain;
  -webkit-user-select: none;
  user-select: none;
  width: 100%;
  height: auto;
  max-height: 100%;
  transition: none;
}

.f-panzoom__protected {
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
  position: absolute;
  inset: 0;
}

.f-fadeIn {
  animation: var(--f-transition-duration, .2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeIn;
  z-index: 2;
}

.f-fadeOut {
  animation: var(--f-transition-duration, .2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeOut;
  z-index: 1;
}

@keyframes f-fadeIn {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes f-fadeOut {
  to {
    opacity: 0;
  }
}

.f-crossfadeIn {
  animation: var(--f-transition-duration, .2s) ease both f-crossfadeIn;
  z-index: 2;
}

.f-crossfadeOut {
  animation: calc(var(--f-transition-duration, .2s) * .2) ease calc(var(--f-transition-duration, .2s) * .8) both f-crossfadeOut;
  z-index: 1;
}

@keyframes f-crossfadeIn {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes f-crossfadeOut {
  to {
    opacity: 0;
  }
}

.is-horizontal .f-slideIn.from-next {
  animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideInNextX;
}

.is-horizontal .f-slideIn.from-prev {
  animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideInPrevX;
}

.is-horizontal .f-slideOut.to-next {
  animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideOutNextX;
}

.is-horizontal .f-slideOut.to-prev {
  animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideOutPrevX;
}

@keyframes f-slideInPrevX {
  0% {
    transform: translate(calc(100% + var(--f-carousel-gap, 0)));
  }

  to {
    transform: translateZ(0);
  }
}

@keyframes f-slideInNextX {
  0% {
    transform: translate(calc(-100% - var(--f-carousel-gap, 0)));
  }

  to {
    transform: translateZ(0);
  }
}

@keyframes f-slideOutNextX {
  to {
    transform: translate(calc(-100% - var(--f-carousel-gap, 0)));
  }
}

@keyframes f-slideOutPrevX {
  to {
    transform: translate(calc(100% + var(--f-carousel-gap, 0)));
  }
}

.is-vertical .f-slideIn.from-next {
  animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideInNextY;
}

.is-vertical .f-slideIn.from-prev {
  animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideInPrevY;
}

.is-vertical .f-slideOut.to-next {
  animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideOutNextY;
}

.is-vertical .f-slideOut.to-prev {
  animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideOutPrevY;
}

@keyframes f-slideInPrevY {
  0% {
    transform: translateY(calc(100% + var(--f-carousel-gap, 0)));
  }

  to {
    transform: translateZ(0);
  }
}

@keyframes f-slideInNextY {
  0% {
    transform: translateY(calc(-100% - var(--f-carousel-gap, 0)));
  }

  to {
    transform: translateZ(0);
  }
}

@keyframes f-slideOutNextY {
  to {
    transform: translateY(calc(-100% - var(--f-carousel-gap, 0)));
  }
}

@keyframes f-slideOutPrevY {
  to {
    transform: translateY(calc(100% + var(--f-carousel-gap, 0)));
  }
}

.f-zoomInUp {
  animation: var(--f-transition-duration, .3s) ease both f-zoomInUp;
}

.f-zoomOutDown {
  animation: var(--f-transition-duration, .3s) ease both f-zoomOutDown;
}

@keyframes f-zoomInUp {
  0% {
    transform: scale(var(--f-zoomInUp-scale, .975)) translate3d(var(--f-zoomInUp-x, 0), var(--f-zoomInUp-y, 16px), 0);
    opacity: var(--f-zoomInUp-opacity, 0);
  }

  to {
    opacity: 1;
    transform: scale(1)translateZ(0);
  }
}

@keyframes f-zoomOutDown {
  to {
    transform: scale(var(--f-zoomOutDown-scale, .975)) translate3d(var(--f-zoomOutDown-x, 0), var(--f-zoomOutDown-y, 16px), 0);
    opacity: 0;
  }
}

.f-throwOutUp {
  animation: var(--f-throwOutUp-duration, .2s) ease-out both f-throwOutUp;
}

.f-throwOutDown {
  animation: var(--f-throwOutDown-duration, .2s) ease-out both f-throwOutDown;
}

@keyframes f-throwOutUp {
  to {
    transform: translate3d(0, calc(var(--f-throwOutUp-y, 150px) * -1), 0);
    opacity: 0;
  }
}

@keyframes f-throwOutDown {
  to {
    transform: translate3d(0, var(--f-throwOutDown-y, 150px), 0);
    opacity: 0;
  }
}

.has-iframe .f-html, .has-pdf .f-html, .has-gmap .f-html {
  width: 100%;
  height: 100%;
  min-height: 1px;
  overflow: visible;
}

.has-pdf .f-html, .has-gmap .f-html {
  padding: 0;
}

.f-html {
  box-sizing: border-box;
  margin: var(--f-html-margin, 0);
  padding: var(--f-html-padding, 2rem);
  color: var(--f-html-color, currentColor);
  background: var(--f-html-bg);
  position: relative;
}

.f-html.is-error {
  text-align: center;
}

.f-iframe {
  border: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  display: block;
}

.f-caption {
  margin: var(--f-caption-margin);
  padding: var(--f-caption-padding, 16px 8px);
  overflow-wrap: anywhere;
  max-width: 100%;
  max-height: calc(80vh - 100px);
  line-height: var(--f-caption-line-height);
  color: var(--f-caption-color);
  background: var(--f-caption-bg);
  font: var(--f-caption-font);
  flex-shrink: 0;
  align-self: center;
  overflow: auto;
}

.has-html5video .f-html, .has-youtube .f-html, .has-vimeo .f-html {
  width: 100%;
  height: 100%;
  min-height: 1px;
  max-width: var(--f-video-width, 960px);
  max-height: var(--f-video-height, 540px);
  aspect-ratio: var(--f-video-aspect-ratio);
  background: var(--f-video-bg, #000000e6);
  padding: 0;
  overflow: visible;
}

.f-html5video {
  background: none;
  border: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.f-button.is-arrow {
  --f-button-width: var(--f-arrow-width, 46px);
  --f-button-height: var(--f-arrow-height, 46px);
  --f-button-svg-width: var(--f-arrow-svg-width, 24px);
  --f-button-svg-height: var(--f-arrow-svg-height, 24px);
  --f-button-svg-stroke-width: var(--f-arrow-svg-stroke-width, 1.75);
  --f-button-border-radius: var(--f-arrow-border-radius, unset);
  --f-button-bg: var(--f-arrow-bg, transparent);
  --f-button-hover-bg: var(--f-arrow-hover-bg, var(--f-arrow-bg));
  --f-button-active-bg: var(--f-arrow-active-bg, var(--f-arrow-hover-bg));
  --f-button-shadow: var(--f-arrow-shadow);
  --f-button-color: var(--f-arrow-color);
  --f-button-hover-color: var(--f-arrow-hover-color, var(--f-arrow-color));
  --f-button-active-color: var(--f-arrow-active-color, var(--f-arrow-hover-color));
  overflow: visible;
}

.f-button.is-arrow.is-prev, .f-button.is-arrow.is-next {
  z-index: 20;
  position: absolute;
  transform: translate(0);
}

.is-horizontal .f-button.is-arrow.is-prev, .is-horizontal .f-button.is-arrow.is-next {
  inset: 50% auto auto;
  transform: translateY(-50%);
}

.is-horizontal.is-ltr .f-button.is-arrow.is-prev {
  left: var(--f-arrow-pos, 0);
}

.is-horizontal.is-ltr .f-button.is-arrow.is-next {
  right: var(--f-arrow-pos, 0);
}

.is-horizontal.is-rtl .f-button.is-arrow.is-prev {
  right: var(--f-arrow-pos, 0);
  transform: translateY(-50%)rotateY(180deg);
}

.is-horizontal.is-rtl .f-button.is-arrow.is-next {
  left: var(--f-arrow-pos, 0);
  transform: translateY(-50%)rotateY(180deg);
}

.is-vertical.is-ltr .f-button.is-arrow.is-prev, .is-vertical.is-rtl .f-button.is-arrow.is-prev {
  top: var(--f-arrow-pos, 0);
  bottom: auto;
  left: 50%;
  right: auto;
  transform: translate(-50%);
}

.is-vertical.is-ltr .f-button.is-arrow.is-next, .is-vertical.is-rtl .f-button.is-arrow.is-next {
  top: auto;
  right: auto;
  bottom: var(--f-arrow-pos, 0);
  left: 50%;
  transform: translate(-50%);
}

.is-vertical .f-button.is-arrow.is-prev svg, .is-vertical .f-button.is-arrow.is-next svg {
  transform: rotate(90deg);
}

.f-carousel__toolbar {
  --f-progressbar-height: 100%;
  margin: var(--f-toolbar-margin, 0);
  padding: var(--f-toolbar-padding, 8px);
  line-height: var(--f-toolbar-line-height);
  background: var(--f-toolbar-bg, none);
  box-shadow: var(--f-toolbar-shadow, none);
  backdrop-filter: var(--f-toolbar-backdrop-filter);
  z-index: 20;
  color: var(--f-toolbar-color, currentColor);
  font-size: var(--f-toolbar-font-size, 17px);
  font-weight: var(--f-toolbar-font-weight, inherit);
  font-family: var(--f-toolbar-font, -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif);
  text-shadow: var(--f-toolbar-text-shadow);
  text-align: center;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
  white-space: nowrap;
  pointer-events: none;
  grid-template-columns: 1fr auto 1fr;
  display: grid;
  position: relative;
}

.f-carousel__toolbar.is-absolute {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.f-carousel__toolbar__column {
  align-content: flex-start;
  gap: var(--f-toolbar-gap, 0);
  pointer-events: none;
  flex-flow: wrap;
  display: flex;
}

.f-carousel__toolbar__column.is-left {
  justify-content: flex-start;
  justify-self: flex-start;
}

.f-carousel__toolbar__column.is-middle {
  justify-content: center;
}

.f-carousel__toolbar__column.is-right {
  flex-flow: row;
  justify-content: flex-end;
  justify-self: flex-end;
}

.f-carousel__toolbar__column > * {
  pointer-events: all;
}

.f-carousel:has(.f-carousel__slide.is-fullsize) [data-panzoom-action="toggleFull"] g {
  display: none;
}

[data-autoplay-action="toggle"] svg g:first-child {
  display: flex;
}

[data-autoplay-action="toggle"] svg g:last-child, .has-autoplay [data-autoplay-action="toggle"] svg g:first-child {
  display: none;
}

.has-autoplay [data-autoplay-action="toggle"] svg g:last-child {
  display: flex;
}

:fullscreen [data-fullscreen-action="toggle"] svg [data-fullscreen-action="toggle"] svg g:first-child {
  display: none;
}

:fullscreen [data-fullscreen-action="toggle"] svg [data-fullscreen-action="toggle"] svg g:last-child {
  display: flex;
}

.f-carousel__counter {
  cursor: default;
  -webkit-user-select: none;
  user-select: none;
  margin: var(--f-counter-margin, 0);
  padding: var(--f-counter-padding, 4px);
  line-height: var(--f-counter-line-height);
  background: var(--f-counter-bg);
  border-radius: var(--f-counter-border-radius);
  flex-direction: row;
  display: flex;
  position: relative;
}

.f-carousel__counter span {
  padding: 0 var(--f-counter-gap, 4px);
}

:root {
  --f-thumbs-gap: 8px;
  --f-thumbs-margin: 0;
  --f-thumbs-padding-x: 8px;
  --f-thumbs-padding-y: 8px;
  --f-thumbs-z-index: 1;
  --f-thumb-width: 96px;
  --f-thumb-height: 72px;
  --f-thumb-fit: cover;
  --f-thumb-opacity: 1;
  --f-thumb-transition: opacity .3s ease, transform .15s ease;
  --f-thumb-border: none;
  --f-thumb-border-radius: 4px;
  --f-thumb-transfors: none;
  --f-thumb-shadow: none;
  --f-thumb-bg: linear-gradient(#0000001a, #0000000d);
  --f-thumb-focus-shadow: inset 0 0 0 .8px #222, inset 0 0 0 2.25px #fff;
  --f-thumb-selected-shadow: inset 0 0 0 .8px #222, inset 0 0 0 2.25px #fff;
}

.f-thumbs {
  --f-carousel-slide-width: calc(var(--f-thumb-width)  + var(--f-thumbs-gap));
  --f-carousel-slide-height: calc(var(--f-thumb-height)  + var(--f-thumbs-gap));
  --f-carousel-gap: 0;
  max-height: calc(var(--f-carousel-slide-height)  + var(--f-thumbs-padding-y) * 2);
  margin: var(--f-thumbs-margin);
  background: var(--f-thumbs-bg);
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  user-select: none;
  z-index: var(--f-thumbs-z-index);
  flex-shrink: 0;
  padding: 0;
  transition: max-height .3s;
  overflow: hidden;
}

.f-thumbs__viewport {
  margin: var(--f-thumbs-padding-y) var(--f-thumbs-padding-x);
  display: grid;
  overflow: visible;
}

.f-thumbs__slide {
  width: var(--f-carousel-slide-width);
  height: var(--f-carousel-slide-height);
  padding: calc(var(--f-thumbs-gap) * .5);
  cursor: pointer;
  flex-direction: column;
  grid-area: 1 / 1;
  align-items: center;
  margin: 0;
  display: flex;
  position: relative;
  overflow: visible;
}

.f-thumbs__slide:hover button {
  opacity: var(--f-thumb-hover-opacity, 1);
  transform: var(--f-thumb-hover-transform, none);
}

.f-thumbs__slide:hover button:after {
  border: var(--f-thumb-hover-border, none);
  box-shadow: var(--f-thumb-hover-shadow, var(--f-thumb-shadow));
}

.f-thumbs__slide button {
  all: unset;
  width: 100%;
  height: 100%;
  transition: var(--f-thumb-transition);
  border-radius: var(--f-thumb-border-radius);
  opacity: var(--f-thumb-opacity);
  transform: var(--f-thumb-transform);
  background: var(--f-thumb-bg);
  outline: none;
  margin: auto;
  padding: 0;
  position: relative;
  overflow: visible;
}

.f-thumbs__slide button:after {
  content: "";
  z-index: 1;
  border-radius: inherit;
  border: var(--f-thumb-border);
  box-shadow: var(--f-thumb-shadow);
  transition: none;
  position: absolute;
  inset: 0;
}

.f-thumbs__slide button:focus-within {
  opacity: var(--f-thumb-focus-opacity, 1);
  transform: var(--f-thumb-focus-transform, none);
}

.f-thumbs__slide button:focus-within:after {
  border: var(--f-thumb-focus-border, none);
  box-shadow: var(--f-thumb-focus-shadow, var(--f-thumb-shadow));
}

.f-thumbs__slide:active {
  opacity: var(--f-thumb-active-opacity, 1);
  transform: var(--f-thumb-active-transform, none);
}

.f-thumbs__slide:active:after {
  border: var(--f-thumb-active-border, none);
  box-shadow: var(--f-thumb-active-shadow, var(--f-thumb-shadow));
}

.f-thumbs__slide.is-selected {
  z-index: 2;
}

.f-thumbs__slide.is-selected button {
  opacity: var(--f-thumb-selected-opacity, 1);
  transform: var(--f-thumb-selected-transform, none);
}

.f-thumbs__slide.is-selected button:after {
  border: var(--f-thumb-selected-border, none);
  box-shadow: var(--f-thumb-selected-shadow, var(--f-thumb-shadow));
}

.f-thumbs__slide img {
  object-fit: var(--f-thumb-fit);
  border-radius: inherit;
  pointer-events: none;
  width: 100%;
  height: 100%;
  display: block;
}

.f-thumbs__slide img.has-lazyerror {
  display: none;
}

.f-thumbs.is-modern {
  --f-thumb-clip-width: 46px;
  --f-thumb-extra-gap: 16px;
  --f-carousel-slide-width: calc(var(--f-thumb-clip-width)  + var(--f-thumbs-gap));
  --f-carousel-slide-height: var(--f-thumb-height);
  --width-diff: calc((var(--f-thumb-width)  - var(--f-thumb-clip-width)));
}

.f-thumbs.is-modern .f-thumbs__viewport {
  width: calc(100% + var(--width-diff) * 2);
  margin-left: calc(var(--width-diff) * -1);
}

.f-thumbs.is-modern .f-thumbs__slide {
  --clip-shift: calc((var(--width-diff) * .5) * var(--progress));
  --clip-path: inset(0 var(--clip-shift) round var(--f-thumb-border-radius, 0));
  left: var(--shift, 0);
  will-change: left;
  transition: left var(--f-transition-duration) var(--f-transition-easing);
  padding: 0;
  overflow: visible;
}

.f-thumbs.is-modern .f-thumbs__slide button {
  width: var(--f-thumb-width);
  clip-path: var(--clip-path);
  box-shadow: none;
  transition: clip-path var(--f-transition-duration) var(--f-transition-easing), opacity var(--f-thumb-transition-duration, .2s) var(--f-thumb-transition-easing, ease);
  border: none;
  margin-left: -50%;
  display: block;
}

.f-thumbs.is-modern .f-thumbs__slide button:after {
  display: none;
}

.f-thumbs.is-modern .f-thumbs__slide:focus:not(:focus-visible) {
  outline: none;
}

.f-thumbs.is-modern .f-thumbs__slide:focus-within:not(.is-selected) button:before {
  content: "";
  z-index: 1;
  top: 0;
  left: var(--clip-shift);
  bottom: 0;
  right: var(--clip-shift);
  transition: border var(--f-transition-duration) var(--f-transition-easing), box-shadow var(--f-transition-duration) var(--f-transition-easing);
  border-radius: inherit;
  border: var(--f-thumb-focus-border, none);
  box-shadow: var(--f-thumb-focus-shadow, none);
  position: absolute;
}

.f-thumbs.is-modern {
  --f-transition-duration: .25s;
  --f-transition-easing: ease-out;
}

.f-thumbs.is-modern.is-syncing {
  --f-transition-duration: 0s;
}

.f-progressbar {
  z-index: 30;
  height: var(--f-progressbar-height, 3px);
  transform-origin: 0;
  background: var(--f-progressbar-color, var(--f-carousel-theme-color, #575ad6));
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
  animation-name: f-progressbar;
  animation-timing-function: linear;
  animation-play-state: running;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: scaleX(0);
}

@keyframes f-progressbar {
  0% {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

[data-fullscreen-action="toggle"] svg g:first-child {
  display: flex;
}

[data-fullscreen-action="toggle"] svg g:last-child, :fullscreen [data-fullscreen-action="toggle"] svg g:first-child {
  display: none;
}

:fullscreen [data-fullscreen-action="toggle"] svg g:last-child {
  display: flex;
}

.in-fullscreen-mode > .f-carousel {
  flex: 1;
  min-width: 0 !important;
  min-height: 0 !important;
}

html.with-fancybox {
  scroll-behavior: auto;
  width: auto;
  overflow: visible;
}

html.with-fancybox body {
  touch-action: none;
}

html.with-fancybox body.hide-scrollbar {
  width: auto;
  margin-right: calc(var(--f-body-margin, 0px)  + var(--f-scrollbar-compensate, 0px));
  overscroll-behavior-y: none;
  overflow: hidden !important;
}

.fancybox__dialog {
  width: 100%;
  height: 100vh;
  max-height: unset;
  max-width: unset;
  background: none;
  border: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.fancybox__dialog:focus {
  outline: none;
}

.fancybox__dialog::backdrop {
  opacity: 0;
}

@supports (height: 100dvh) {
  .fancybox__dialog {
    height: 100dvh;
  }
}

.fancybox__container {
  --fancybox-color: #dbdbdb;
  --fancybox-backdrop-bg: #18181bf2;
  --f-toolbar-margin: 0;
  --f-toolbar-padding: 8px;
  --f-toolbar-gap: 0;
  --f-toolbar-color: #ddd;
  --f-toolbar-font-size: 16px;
  --f-toolbar-font-weight: 500;
  --f-toolbar-font: -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif;
  --f-toolbar-line-height: var(--f-button-height);
  --f-toolbar-text-shadow: 1px 1px 1px #000000bf;
  --f-toolbar-shadow: none;
  --f-toolbar-bg: none;
  --f-counter-margin: 0;
  --f-counter-padding: 0px 10px;
  --f-counter-gap: 4px;
  --f-counter-line-height: var(--f-button-height);
  --f-carousel-gap: 17px;
  --f-carousel-slide-width: 100%;
  --f-carousel-slide-height: 100%;
  --f-carousel-slide-padding: 0;
  --f-carousel-slide-bg: unset;
  --f-html-color: #222;
  --f-html-bg: #fff;
  --f-error-color: #fff;
  --f-error-bg: #333;
  --f-caption-margin: 0;
  --f-caption-padding: 16px 8px;
  --f-caption-color: var(--fancybox-color, #dbdbdb);
  --f-caption-bg: transparent;
  --f-caption-font: inherit;
  --f-caption-line-height: 1.375;
  --f-spinner-color-1: #fff3;
  --f-spinner-color-2: #fffc;
  --f-spinner-width: 50px;
  --f-spinner-height: 50px;
  --f-spinner-border-radius: 50%;
  --f-spinner-border-width: 4px;
  --f-progressbar-color: #fff3;
  --f-button-width: 46px;
  --f-button-height: 46px;
  --f-button-color: #ddd;
  --f-button-hover-color: #fff;
  --f-button-outline-width: 1px;
  --f-button-outline-color: #ffffffbf;
  --f-button-outline-offset: 0px;
  --f-button-bg: #363636bf;
  --f-button-border: 0;
  --f-button-border-radius: 0;
  --f-button-shadow: none;
  --f-button-transition: all .2s ease;
  --f-button-transform: none;
  --f-button-svg-width: 24px;
  --f-button-svg-height: 24px;
  --f-button-svg-stroke-width: 1.75;
  --f-button-svg-filter: drop-shadow(1px 1px 1px #18181b03), drop-shadow(1px 2px 1px #18181b0d);
  --f-button-svg-fill: none;
  --f-button-svg-disabled-opacity: .5;
  --f-arrow-pos: 32px;
  --f-arrow-width: 50px;
  --f-arrow-height: 50px;
  --f-arrow-svg-width: 24px;
  --f-arrow-svg-height: 24px;
  --f-arrow-svg-stroke-width: 2;
  --f-arrow-border-radius: 50%;
  --f-arrow-bg: #363636a6;
  --f-arrow-color: #ddd;
  --f-arrow-hover-color: #fff;
  --f-thumbs-margin: 0px;
  --f-thumbs-padding-x: 8px;
  --f-thumbs-padding-y: 8px;
  --f-thumbs-bg: none;
  --f-thumb-transition: all .2s ease;
  --f-thumb-width: 94px;
  --f-thumb-height: 76px;
  --f-thumb-opacity: 1;
  --f-thumb-border: none;
  --f-thumb-shadow: none;
  --f-thumb-transform: none;
  --f-thumb-focus-opacity: 1;
  --f-thumb-focus-border: none;
  --f-thumb-focus-shadow: inset 0 0 0 2px #ffffffa6;
  --f-thumb-focus-transform: none;
  --f-thumb-hover-opacity: 1;
  --f-thumb-hover-border: none;
  --f-thumb-hover-transform: none;
  --f-thumb-active-opacity: var(--f-thumb-hover-opacity);
  --f-thumb-active-border: var(--f-thumb-hover-border);
  --f-thumb-active-transform: var(--f-thumb-hover-transform);
  --f-thumb-selected-opacity: 1;
  --f-thumb-selected-border: none;
  --f-thumb-selected-shadow: inset 0 0 0 2px #fff;
  --f-thumb-selected-transform: none;
  outline: none;
  flex-direction: column;
  display: flex;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.fancybox__container[theme="light"] {
  --fancybox-color: #222;
  --fancybox-backdrop-bg: #fffffff7;
  --f-toolbar-color: var(--fancybox-color, #222);
  --f-toolbar-text-shadow: none;
  --f-toolbar-font-weight: 400;
  --f-html-color: var(--fancybox-color, #222);
  --f-html-bg: #fff;
  --f-error-color: #555;
  --f-error-bg: #fff;
  --f-video-bg: #fff;
  --f-caption-color: #333;
  --f-spinner-color-1: #0003;
  --f-spinner-color-2: #000c;
  --f-spinner-border-width: 3.5px;
  --f-progressbar-color: #6f6f7433;
  --f-button-color: #333;
  --f-button-hover-color: #000;
  --f-button-outline-color: #000000d9;
  --f-button-bg: #ffffffd9;
  --f-button-svg-stroke-width: 1.3;
  --f-button-svg-filter: none;
  --f-arrow-bg: #ffffffd9;
  --f-arrow-color: #333;
  --f-arrow-hover-color: #000;
  --f-arrow-svg-stroke-width: 1.3;
  --f-close-button-color: #555;
  --f-close-button-hover-color: #000;
  --f-thumb-bg: linear-gradient(#ebeff2, #e2e8f0);
  --f-thumb-focus-shadow: 0 0 0 1.8px #fff, 0px 0px 0px 2.25px #888;
  --f-thumb-selected-shadow: 0 0 0 1.8px #fff, 0px 0px 0px 2.25px #000;
}

.fancybox__container::backdrop {
  background-color: #0000;
}

.fancybox__container > :not(.fancybox__carousel), .fancybox__container .fancybox__carousel > :not(.fancybox__viewport), .fancybox__container .fancybox__carousel > .fancybox__viewport > .fancybox__slide:not(.is-selected), .fancybox__container .fancybox__carousel > .fancybox__viewport > .fancybox__slide.is-selected > :not(.f-html, .f-panzoom__wrapper, .f-spinner) {
  opacity: var(--f-drag-opacity, 1);
}

.fancybox__container:not(.is-ready, .is-hiding) {
  visibility: hidden;
}

.fancybox__container.is-revealing > :not(.fancybox__carousel), .fancybox__container.is-revealing .fancybox__carousel > :not(.fancybox__viewport), .fancybox__container.is-revealing .fancybox__carousel > .fancybox__viewport > .fancybox__slide:not(.is-selected), .fancybox__container.is-revealing .fancybox__carousel > .fancybox__viewport > .fancybox__slide.is-selected > :not(.f-html, .f-panzoom__wrapper, .f-spinner) {
  animation: var(--f-interface-enter-duration, .35s) ease none f-fadeIn;
}

.fancybox__container.is-hiding > :not(.fancybox__carousel), .fancybox__container.is-hiding .fancybox__carousel > :not(.fancybox__viewport), .fancybox__container.is-hiding .fancybox__carousel > .fancybox__viewport > .fancybox__slide:not(.is-selected), .fancybox__container.is-hiding .fancybox__carousel > .fancybox__viewport > .fancybox__slide.is-selected > :not(.f-html, .f-panzoom__wrapper) {
  animation: var(--f-interface-exit-duration, .35s) ease forwards f-fadeOut;
}

.fancybox__container.is-idle .f-carousel__toolbar {
  pointer-events: none;
  opacity: 0;
}

.fancybox__container.is-idle .f-button.is-arrow {
  opacity: 0;
}

.fancybox__container.is-idle.is-ready .f-carousel__toolbar {
  pointer-events: none;
  animation: .15s ease-out both f-fadeOut;
}

.fancybox__container.is-idle.is-ready .f-button.is-arrow {
  animation: .15s ease-out both f-fadeOut;
}

.fancybox__backdrop {
  z-index: -1;
  background: var(--fancybox-backdrop-bg);
  position: fixed;
  inset: 0;
}

.fancybox__carousel {
  z-index: 10;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  min-height: 0;
  display: flex;
  position: relative;
  overflow: clip visible;
}

.fancybox__carousel.is-vertical {
  --f-carousel-slide-height: 100%;
}

.fancybox__carousel.is-ltr {
  direction: ltr;
}

.fancybox__carousel.is-rtl {
  direction: rtl;
}

.fancybox__carousel > .f-button.is-arrow:before {
  content: "";
  z-index: 1;
  position: absolute;
  inset: -30px;
}

.fancybox__carousel > .f-progressbar {
  background-color: var(--fancybox-color);
}

.fancybox__viewport {
  min-width: 0;
  min-height: 0;
  transform: translate3d(0, var(--f-drag-offset, 0), 0);
  flex: 1;
  display: grid;
  position: relative;
  overflow: visible;
}

.fancybox__viewport.is-draggable {
  cursor: move;
  cursor: grab;
}

.fancybox__viewport.is-dragging {
  cursor: move;
  cursor: grabbing;
}

.fancybox__viewport [data-selectable], .fancybox__viewport [contenteditable] {
  cursor: auto;
}

.fancybox__slide {
  box-sizing: border-box;
  width: var(--f-carousel-slide-width);
  height: var(--f-carousel-slide-height);
  min-width: 0;
  max-width: 100%;
  min-height: 0;
  padding: var(--f-carousel-slide-padding);
  background: var(--f-carousel-slide-bg);
  backface-visibility: hidden;
  will-change: transform;
  flex-direction: column;
  grid-area: 1 / 1;
  align-items: center;
  margin: 0;
  display: flex;
  position: relative;
  transform: translateZ(0);
}

.fancybox__slide:before, .fancybox__slide:after {
  content: "";
  display: block;
}

.fancybox__slide:before {
  margin-bottom: auto;
}

.fancybox__slide:after {
  margin-top: auto;
}

.fancybox__slide.is-selected {
  z-index: 1;
}

.fancybox__slide.f-zoomable {
  overflow: visible;
}

.fancybox__slide.has-error {
  --f-html-color: var(--f-error-color, --f-html-color);
  --f-html-bg: var(--f-error-bg, --f-html-bg);
}

.fancybox__slide.has-html {
  padding: 8px;
  overflow: auto;
}

.fancybox__slide.has-close-btn {
  padding-top: 34px;
}

.fancybox__slide .f-button[data-fancybox-close] {
  --f-button-width: var(--f-close-button-width, 34px);
  --f-button-height: var(--f-close-button-height, 34px);
  --f-button-border-radius: var(--f-close-border-radius, 4px);
  --f-button-color: var(--f-close-button-color, #fff);
  --f-button-hover-color: var(--f-close-button-hover-color, #fff);
  --f-button-bg: var(--f-close-button-bg, transparent);
  --f-button-hover-bg: var(--f-close-button-hover-bg, transparent);
  --f-button-active-bg: var(--f-close-button-active-bg, transparent);
  --f-button-svg-width: var(--f-close-button-svg-width, 22px);
  --f-button-svg-height: var(--f-close-button-svg-height, 22px);
  top: calc(var(--f-button-height) * -1);
  z-index: 40;
  position: absolute;
  right: 0;
}

.fancybox__slide .f-spinner {
  cursor: pointer;
}

.fancybox__container.is-closing .f-caption, .fancybox__slide.is-loading .f-caption {
  visibility: hidden;
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  height: 100%;
  display: flex;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  pointer-events: none;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0;
  display: flex;
}

.splide__pagination li {
  pointer-events: auto;
  margin: 0;
  line-height: 1;
  list-style-type: none;
  display: inline-block;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  visibility: hidden;
  position: relative;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  margin: 0;
  position: relative;
  list-style-type: none !important;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  contain: strict;
  border: 2px solid #999;
  border-left-color: #0000;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  margin: auto;
  animation: 1s linear infinite splide-loading;
  display: inline-block;
  position: absolute;
  inset: 0;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  z-index: 0;
  position: relative;
  overflow: hidden;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }

  to {
    transform: rotate(1turn);
  }
}

.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  opacity: 0;
  z-index: 0;
  margin: 0 !important;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__arrow {
  cursor: pointer;
  opacity: .7;
  z-index: 1;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 2em;
  height: 2em;
  padding: 0;
  display: flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.splide__arrow svg {
  fill: #000;
  width: 1.2em;
  height: 1.2em;
}

.splide__arrow:hover:not(:disabled) {
  opacity: .9;
}

.splide__arrow:disabled {
  opacity: .3;
}

.splide__arrow:focus-visible {
  outline-offset: 3px;
  outline: 3px solid #0bf;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
  outline-offset: 3px;
  outline: 3px solid #0bf;
}

.splide__pagination {
  z-index: 1;
  padding: 0 1em;
  position: absolute;
  bottom: .5em;
  left: 0;
  right: 0;
}

.splide__pagination__page {
  opacity: .7;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  margin: 3px;
  padding: 0;
  transition: transform .2s linear;
  display: inline-block;
  position: relative;
}

.splide__pagination__page.is-active {
  z-index: 1;
  background: #fff;
  transform: scale(1.4);
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: .9;
}

.splide__pagination__page:focus-visible, .splide.is-focus-in .splide__pagination__page:focus {
  outline-offset: 3px;
  outline: 3px solid #0bf;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: #0000;
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline-offset: -3px;
    outline: 3px solid #0bf;
  }
}

@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}

@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline-offset: -3px;
    outline: 3px solid #0bf;
  }
}

@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }

  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}

.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible, .splide.is-focus-in .splide__toggle:focus {
  outline-offset: 3px;
  outline: 3px solid #0bf;
}

.splide__track--nav > .splide__list > .splide__slide {
  cursor: pointer;
  border: 3px solid #0000;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  top: auto;
  bottom: 1em;
}

.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  flex-direction: column;
  padding: 1em 0;
  display: flex;
  inset: 0 .5em 0 auto;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-family: sans-serif;
}

body {
  margin: 0;
}

article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
  display: block;
}

audio, canvas, progress, video {
  display: inline-block;
}

audio:not([controls]) {
  height: 0;
  display: none;
}

progress {
  vertical-align: baseline;
}

template, [hidden] {
  display: none;
}

a {
  -webkit-text-decoration-skip: objects;
  background-color: #0000;
  text-decoration: none;
}

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

abbr[title] {
  border-bottom: none;
  text-decoration: underline dotted;
}

b, strong {
  font-weight: inherit;
  font-weight: bold;
}

dfn {
  font-style: italic;
}

mark {
  color: #000;
  background-color: #ff0;
}

sub, sup {
  vertical-align: baseline;
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

img {
  border-style: none;
}

svg:not(:root) {
  overflow: hidden;
}

code, kbd, pre, samp {
  font-family: monospace;
  font-size: 1em;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

button, input, optgroup, select, textarea {
  color: inherit;
  font: inherit;
  vertical-align: middle;
  margin: 0;
}

button, select {
  text-transform: none;
}

button, html [type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: none;
}

button:hover, html [type="button"]:hover, [type="reset"]:hover, [type="submit"]:hover {
  cursor: pointer;
}

button {
  background-color: #0000;
  border: none;
  margin: 0;
  padding: 0;
}

fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: .35em .625em .75em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  white-space: normal;
  max-width: 100%;
  padding: 0;
  display: table;
}

textarea {
  resize: none;
  vertical-align: top;
  overflow: auto;
}

input, select, textarea {
  outline: 0;
}

[disabled] {
  cursor: default;
}

[type="checkbox"], [type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button {
  height: auto;
}

[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

input::-moz-placeholder {
  color: $ colorPlaceholder;
}

textarea::-moz-placeholder {
  color: $ colorPlaceholder;
}

:is(input:-ms-placeholder-shown, textarea:-ms-placeholder-shown), :is(input:placeholder-shown, textarea:placeholder-shown) {
  color: $ colorPlaceholder;
}

input::-webkit-input-placeholder {
  color: $ colorPlaceholder;
}

textarea::-webkit-input-placeholder {
  color: $ colorPlaceholder;
}

input::-ms-clear {
  display: none;
}

input::-ms-reveal {
  display: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td, th {
  padding: 0;
}

h1, h2, h3, h4, h5, h6, p, figure, form, blockquote {
  margin: 0;
}

ul, ol, li, dl, dd {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
}

:root {
  --black: #000;
  --white: #fff;
  --green: #4caf50;
  --green-med: #8bc34a;
  --green-light: #ceead6;
  --green-pale: #e6f4ea;
  --green-bg: #e2edcf;
  --green-dark: #388e3c;
  --blue: #1976d2;
  --blue-med: #64b5f6;
  --blue-light: #e8f0fe;
  --blue-pale: #e8f0fe;
  --yellow: #fbc02d;
  --yelow-pale: #ffd979;
  --yellow-light: #fef7e0;
  --orange: #ffa000;
  --orange-light: #fdecea;
  --dark: #363636;
  --gray: #5f6368;
  --gray-med: #9e9e9e;
  --gray-pale: #f8f9fa;
  --color-text: #5f6368;
  --color-heading: #363636;
  --font-regular: "Lato-Regular";
  --font-medium: "Lato-Medium";
  --font-semi: "Lato-SemiBold";
  --font-bold: "Lato-Bold";
  --font-heading: "LeagueSpartan-Bold";
  --font-heading-semi: "LeagueSpartan-SemiBold";
  --font-heading-med: "LeagueSpartan-Medium";
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-black: 900;
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-xxl: 32px;
  --radius-xxxl: 64px;
  --radius-full: 9999px;
  --lh-tight: 1.15;
  --lh-small: 1.25;
  --lh-normal: 1.5;
  --lh-loose: 1.75;
  --size-0: 0px;
  --size-4: 4px;
  --size-8: 8px;
  --size-12: 12px;
  --size-16: 16px;
  --size-18: 18px;
  --size-20: 20px;
  --size-24: 24px;
  --size-28: 28px;
  --size-32: 32px;
  --size-40: 40px;
  --size-48: 48px;
  --size-56: 56px;
  --size-64: 64px;
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 500;
  --z-modal: 1000;
  --z-toast: 1100;
}

@font-face {
  font-family: LeagueSpartan-Bold;
  src: url("subset-LeagueSpartan-Bold.ff1da19a.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: LeagueSpartan-SemiBold;
  src: url("subset-LeagueSpartan-SemiBold.1ff97e87.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: LeagueSpartan-Medium;
  src: url("subset-LeagueSpartan-Medium.af65cd6e.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Lato-Bold;
  src: url("subset-Lato-Bold.ec113e44.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Lato-Medium;
  src: url("subset-Lato-Medium.4c160a5d.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Lato-SemiBold;
  src: url("subset-Lato-SemiBold.425446fe.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Lato-Regular;
  src: url("subset-Lato-Regular.31ff65f9.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: var(--font-regular);
}

html {
  color: var(--color-text);
  font-size: 20px;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--color-heading);
  font-family: var(--font-heading);
}

h1 {
  font-size: var(--size-64);
  font-family: var(--font-heading);
  margin-bottom: var(--size-24);
  line-height: 1.05;
}

@media (width <= 1480px) {
  h1 {
    margin-bottom: 16px;
    font-size: 54px;
  }
}

@media (width <= 1400px) {
  h1 {
    font-size: 50px;
  }
}

@media (width <= 1200px) {
  h1 {
    font-size: 42px;
  }
}

@media (width <= 1023px) {
  h1 {
    font-size: 38px;
  }
}

@media (width <= 767px) {
  h1 {
    margin-bottom: 12px;
    font-size: 36px;
  }
}

h2 {
  color: var(--dark);
  font-size: 48px;
  line-height: var(--lh-tight);
}

@media (width <= 1480px) {
  h2 {
    font-size: 42px;
  }
}

@media (width <= 1400px) {
  h2 {
    font-size: 38px;
  }
}

@media (width <= 1200px) {
  h2 {
    font-size: 34px;
  }
}

@media (width <= 1023px) {
  h2 {
    font-size: 32px;
  }
}

@media (width <= 767px) {
  h2 {
    font-size: 30px;
  }
}

h3 {
  font-size: 42px;
  font-family: var(--font-heading-semi);
  line-height: var(--lh-tight);
  margin-bottom: 24px;
}

@media (width <= 1480px) {
  h3 {
    margin-bottom: 20px;
    font-size: 38px;
  }
}

@media (width <= 1400px) {
  h3 {
    font-size: 32px;
  }
}

@media (width <= 1200px) {
  h3 {
    margin-bottom: 16px;
    font-size: 28px;
  }
}

@media (width <= 1023px) {
  h3 {
    font-size: 26px;
  }
}

h3 strong {
  color: var(--orange);
  display: block;
}

h4 {
  color: var(--dark);
  font-size: 28px;
  font-family: var(--font-heading-semi);
  line-height: var(--lh-small);
  margin-bottom: 12px;
}

@media (width <= 1480px) {
  h4 {
    font-size: 26px;
  }
}

@media (width <= 1400px) {
  h4 {
    font-size: 24px;
  }
}

@media (width <= 1200px) {
  h4 {
    font-size: 22px;
  }
}

p {
  font-size: 22px;
  line-height: var(--lh-normal);
  color: var(--gray);
}

@media (width <= 1480px) {
  p {
    font-size: 20px;
  }
}

@media (width <= 1023px) {
  p {
    font-size: 18px;
  }
}

p a {
  font-family: var(--font-semi);
  color: var(--green-dark);
  text-decoration: underline;
}

p a:hover {
  color: var(--green);
  text-decoration: none;
}

p strong {
  color: var(--gray);
}

@font-face {
  font-family: icomoon;
  src: url("icomoon.51d0560d.eot");
  src: url("icomoon.51d0560d.eot#iefix") format("embedded-opentype"), url("icomoon.216a0bc3.ttf") format("truetype"), url("icomoon.fe7fa49d.woff") format("woff"), url("icomoon.30e22549.svg#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  speak: never;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  font-family: icomoon !important;
}

.icon-star:before {
  content: "";
  color: #ffc107;
}

.icon-checked:before {
  content: "";
}

.icon-phone-icon:before {
  content: "";
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, .col-xl-auto {
  box-sizing: border-box;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

@media (width <= 575px) {
  .container {
    max-width: calc(100% - 16px);
  }
}

@media (width >= 576px) {
  .container {
    max-width: 540px;
  }
}

@media (width >= 768px) {
  .container {
    max-width: 720px;
  }
}

@media (width >= 992px) {
  .container {
    max-width: 960px;
  }
}

@media (width >= 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (width >= 1400px) {
  .container {
    max-width: 1320px;
  }
}

@media (width >= 1620px) {
  .container {
    max-width: 1430px;
  }
}

@media (width <= 1400px) {
  .container {
    box-sizing: border-box;
  }
}

.row {
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  display: flex;
}

.col {
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

@media (width <= 767.98px) {
  .col {
    flex-basis: 100%;
  }
}

@media (width >= 576px) {
  .col-sm-auto {
    flex: none;
    width: auto;
    max-width: 100%;
  }

  .col-sm-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-sm-2 {
    flex: 0 0 16.6667%;
    max-width: 16.6667%;
  }

  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }

  .col-sm-5 {
    flex: 0 0 41.6667%;
    max-width: 41.6667%;
  }

  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    flex: 0 0 58.3333%;
    max-width: 58.3333%;
  }

  .col-sm-8 {
    flex: 0 0 66.6667%;
    max-width: 66.6667%;
  }

  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    flex: 0 0 83.3333%;
    max-width: 83.3333%;
  }

  .col-sm-11 {
    flex: 0 0 91.6667%;
    max-width: 91.6667%;
  }

  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.33333%;
  }

  .offset-sm-2 {
    margin-left: 16.6667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.3333%;
  }

  .offset-sm-5 {
    margin-left: 41.6667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.3333%;
  }

  .offset-sm-8 {
    margin-left: 66.6667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.3333%;
  }

  .offset-sm-11 {
    margin-left: 91.6667%;
  }
}

@media (width >= 768px) {
  .col-md-auto {
    flex: none;
    width: auto;
    max-width: 100%;
  }

  .col-md-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-md-2 {
    flex: 0 0 16.6667%;
    max-width: 16.6667%;
  }

  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    box-sizing: border-box;
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }

  .col-md-5 {
    flex: 0 0 41.6667%;
    max-width: 41.6667%;
  }

  .col-md-6 {
    box-sizing: border-box;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    flex: 0 0 58.3333%;
    max-width: 58.3333%;
  }

  .col-md-8 {
    flex: 0 0 66.6667%;
    max-width: 66.6667%;
  }

  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    flex: 0 0 83.3333%;
    max-width: 83.3333%;
  }

  .col-md-11 {
    flex: 0 0 91.6667%;
    max-width: 91.6667%;
  }

  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.33333%;
  }

  .offset-md-2 {
    margin-left: 16.6667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.3333%;
  }

  .offset-md-5 {
    margin-left: 41.6667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.3333%;
  }

  .offset-md-8 {
    margin-left: 66.6667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.3333%;
  }

  .offset-md-11 {
    margin-left: 91.6667%;
  }
}

@media (width >= 992px) {
  .col-lg-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-lg-2 {
    flex: 0 0 16.6667%;
    max-width: 16.6667%;
  }

  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }

  .col-lg-5 {
    flex: 0 0 41.6667%;
    max-width: 41.6667%;
  }

  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 58.3333%;
    max-width: 58.3333%;
  }

  .col-lg-8 {
    flex: 0 0 66.6667%;
    max-width: 66.6667%;
  }

  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    flex: 0 0 83.3333%;
    max-width: 83.3333%;
  }

  .col-lg-11 {
    flex: 0 0 91.6667%;
    max-width: 91.6667%;
  }

  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.33333%;
  }

  .offset-lg-2 {
    margin-left: 16.6667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.3333%;
  }

  .offset-lg-5 {
    margin-left: 41.6667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.3333%;
  }

  .offset-lg-8 {
    margin-left: 66.6667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.3333%;
  }

  .offset-lg-11 {
    margin-left: 91.6667%;
  }
}

@media (width >= 1200px) {
  .col-xl-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-xl-2 {
    flex: 0 0 16.6667%;
    max-width: 16.6667%;
  }

  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xl-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }

  .col-xl-5 {
    flex: 0 0 41.6667%;
    max-width: 41.6667%;
  }

  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-7 {
    flex: 0 0 58.3333%;
    max-width: 58.3333%;
  }

  .col-xl-8 {
    flex: 0 0 66.6667%;
    max-width: 66.6667%;
  }

  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    flex: 0 0 83.3333%;
    max-width: 83.3333%;
  }

  .col-xl-11 {
    flex: 0 0 91.6667%;
    max-width: 91.6667%;
  }

  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.33333%;
  }

  .offset-xl-2 {
    margin-left: 16.6667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.3333%;
  }

  .offset-xl-5 {
    margin-left: 41.6667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.3333%;
  }

  .offset-xl-8 {
    margin-left: 66.6667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.3333%;
  }

  .offset-xl-11 {
    margin-left: 91.6667%;
  }
}

.btn {
  border-radius: var(--radius-full);
  text-transform: uppercase;
  height: 56px;
  font-size: 16px;
  line-height: 56px;
  font-family: var(--font-bold);
  color: var(--dark);
  background-color: var(--yellow);
  padding: 0 36px;
  transition: all .25s ease-in-out;
  display: inline-block;
}

@media (width <= 1480px) {
  .btn {
    height: 54px;
    line-height: 54px;
  }
}

@media (width <= 1200px) {
  .btn {
    height: 50px;
    padding: 0 32px;
    font-size: 15px;
    line-height: 50px;
  }
}

@media (width <= 1023px) {
  .btn {
    height: 48px;
    line-height: 48px;
  }
}

.btn:hover {
  background-color: var(--orange);
  color: var(--black);
}

.btn small {
  background-color: var(--yelow-pale);
  border-radius: var(--radius-full);
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  margin-right: 12px;
  transition: all .25s ease-in-out;
  display: flex;
}

@media (width <= 1023px) {
  .btn small {
    width: 38px;
    height: 38px;
  }
}

@media (width <= 767px) {
  .btn small {
    display: none;
  }
}

.btn small span {
  transition: all .25s ease-in-out;
}

.btn--phone {
  align-items: center;
  padding-left: 8px;
  display: inline-flex;
}

@media (width <= 767px) {
  .btn--phone {
    padding: 0 16px;
  }
}

.btn--phone:hover small {
  background-color: var(--green);
}

.btn--phone:hover small span {
  color: var(--white);
}

.btn--large {
  padding: 0 48px;
}

.btn--small {
  height: 46px;
  padding: 0 24px;
  font-size: 16px;
  line-height: 46px;
}

.btn--green {
  background-color: var(--green);
  color: var(--white);
}

.btn--green:hover {
  background-color: var(--green-dark);
  color: var(--yellow-light);
}

.section-header {
  text-align: center;
  padding: 64px 0 48px;
}

@media (width <= 1200px) {
  .section-header {
    max-width: 720px;
    margin: 0 auto;
    padding: 48px 0 32px;
  }
}

@media (width <= 1023px) {
  .section-header {
    max-width: 560px;
  }
}

.up-title {
  text-transform: uppercase;
  font-size: 18px;
  font-family: var(--font-heading-semi);
  letter-spacing: 1px;
  color: var(--green-dark);
  margin-bottom: 16px;
  display: block;
}

@media (width <= 1400px) {
  .up-title {
    font-size: 16px;
  }
}

@media (width <= 767px) {
  .up-title {
    margin-bottom: 12px;
    font-size: 15px;
  }
}

.up-title--blue {
  color: var(--blue);
}

.up-title--orange {
  color: var(--orange);
}

.up-title--black {
  color: var(--black);
}

.up-title--yellow {
  color: var(--yelow-pale);
}

.section-title {
  max-width: 1000px;
  margin: 0 auto;
}

@media (width <= 1480px) {
  .section-title {
    max-width: 900px;
  }
}

.block-header {
  padding-bottom: 48px;
}

@media (width <= 1400px) {
  .block-header {
    padding-bottom: 32px;
  }
}

@media (width <= 1023px) {
  .block-header {
    padding-bottom: 24px;
  }
}

.block-header h3 {
  max-width: 70%;
  margin-bottom: 0;
}

@media (width <= 1023px) {
  .block-header h3 {
    max-width: 80%;
  }
}

@media (width <= 767px) {
  .block-header h3 {
    max-width: 100%;
  }
}

.block-header h3 strong {
  color: var(--black);
  font-family: var(--font-heading);
  display: inline-block;
}

.block-header--full h3 {
  max-width: 100%;
}

.btn-more {
  text-transform: uppercase;
  color: var(--orange);
  font-family: var(--text-bold);
  border-bottom: 1px solid var(--orange);
  margin-top: 24px;
  padding-bottom: 3px;
  font-size: 16px;
  transition: all .25s ease-in-out;
  display: inline-block;
}

@media (width <= 1023px) {
  .btn-more {
    margin-top: 16px;
  }
}

.btn-more--blue {
  color: var(--blue);
  border-color: var(--blue);
}

.btn-more:hover {
  color: var(--green-dark);
  border-color: var(--green-dark);
}

.top-bar {
  z-index: var(--z-fixed);
  background-color: var(--white);
  width: 100%;
  transition: all .25s ease-in-out;
  position: fixed;
  top: 0;
  left: 0;
}

.top-bar .container {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  transition: all .25s ease-in-out;
  display: flex;
  position: relative;
}

@media (width <= 1480px) {
  .top-bar .container {
    height: 86px;
  }
}

@media (width <= 767px) {
  .top-bar .container {
    height: 80px;
  }
}

.top-bar__branding a {
  display: block;
}

.top-bar__branding a img {
  max-width: 200px;
}

@media (width <= 1200px) {
  .top-bar__branding a img {
    max-width: 160px;
  }
}

@media (width <= 1023px) {
  .top-bar__branding a img {
    max-width: 140px;
  }

  .top-bar__menu {
    display: none;
  }
}

.top-bar__menu ul {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.top-bar__menu ul li {
  padding: 0 16px;
}

@media (width <= 1200px) {
  .top-bar__menu ul li {
    padding: 0 12px;
  }
}

.top-bar__menu ul li a {
  color: var(--dark);
  font-size: 18px;
  font-family: var(--font-semi);
  position: relative;
}

@media (width <= 1200px) {
  .top-bar__menu ul li a {
    font-size: 16px;
  }
}

.top-bar__menu ul li a:after {
  content: "";
  background-color: var(--blue);
  border-radius: var(--radius-full);
  opacity: 0;
  width: 8px;
  height: 8px;
  transition: all .25s ease-in-out;
  display: block;
  position: absolute;
  top: auto;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
}

.top-bar__menu ul li a:hover {
  color: var(--blue);
}

.top-bar__menu ul li a:hover:after {
  opacity: 1;
  bottom: -16px;
}

.top-bar__menu ul li.current-menu-item a {
  color: var(--orange);
}

.top-bar__menu ul li.current-menu-item a:after {
  background-color: var(--orange);
  opacity: 1;
  bottom: -16px;
}

@media (width <= 1023px) {
  .top-bar__btns {
    display: none;
  }
}

.top-bar.sticky {
  backdrop-filter: blur(5px);
  background-color: #ffffffd9;
  box-shadow: 0 5px 20px #0000000d;
}

.top-bar.sticky .container {
  height: 86px;
}

@media (width <= 767px) {
  .top-bar.sticky .container {
    height: 74px;
  }
}

.top-bar__btn-menu {
  background-color: var(--orange);
  border-radius: var(--radius-full);
  width: 44px;
  height: 44px;
  display: none;
}

@media (width <= 1023px) {
  .top-bar__btn-menu {
    flex-flow: wrap;
    justify-content: flex-end;
    align-items: flex-start;
    display: block;
  }
}

.top-bar__btn-menu span {
  background-color: var(--yellow-light);
  border-radius: 6px;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  transition: all .25s ease-in-out;
  display: block;
}

.top-bar__btn-menu:hover {
  cursor: pointer;
}

.top-bar__btn-menu:hover span {
  background-color: var(--orange);
  width: 100%;
}

.top-bar__mobnav {
  z-index: 9999;
  background: var(--blue-pale);
  width: 70vw;
  height: 100vh;
  padding: 85px 35px 25px;
  transition-duration: .52s;
  transition-timing-function: ease-out;
  position: fixed;
  top: 0;
  right: -70vw;
  overflow-y: scroll;
  transform: translateX(650px);
  box-shadow: -6px 6px 18px #00000040;
}

@media (width >= 768px) {
  .top-bar__mobnav {
    width: 320px;
  }
}

.top-bar__mobnav.is-active {
  right: 0;
  transform: translateX(0);
}

.top-bar__mobnav ul.menu {
  margin-bottom: var(--size-48);
}

.top-bar__mobnav ul.menu li {
  margin-bottom: 20px;
  position: relative;
}

.top-bar__mobnav ul.menu li.menu-item-has-children .submenu-after {
  z-index: 1;
  cursor: pointer;
  speak: never;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--orange);
  text-align: center;
  border-radius: 100%;
  width: 36px;
  height: 36px;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  position: absolute;
  top: -5px;
  right: 0;
  font-family: icomoon !important;
}

.top-bar__mobnav ul.menu li.menu-item-has-children .submenu-after:after {
  z-index: 1;
  speak: never;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  color: var(--white);
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: icomoon !important;
}

.top-bar__mobnav ul.menu li.menu-item-has-children > a {
  width: 70%;
}

.top-bar__mobnav ul.menu li {
  text-align: center;
  margin-bottom: 16px;
}

.top-bar__mobnav ul.menu li a {
  color: var(--dark);
  font-size: 22px;
  font-family: var(--text-regular);
}

.top-bar__mobnav ul.menu li a:hover {
  color: var(--accent);
}

.top-bar__mobnav ul.sub-menu {
  text-align: left;
  padding: 20px 0 0 20px;
  transition-duration: .6s;
  transition-timing-function: ease-out;
  display: none;
}

.top-bar__mobnav ul.sub-menu li {
  margin-bottom: 15px;
}

.top-bar__mobnav ul.sub-menu li a {
  color: var(--dark);
  font-size: 18px;
  font-family: var(--text-semi);
}

.top-bar__mobnav ul.sub-menu li a:hover {
  color: var(--accent);
}

.top-bar__mobnav ul.sub-menu.is-open {
  max-height: 300px;
}

.top-bar__mobnav ul.sub-menu.active-mobile {
  display: block;
}

.top-bar__mobnav .menu-primary-menu-container li {
  margin-bottom: 15px;
}

.top-bar__mobnav .menu-primary-menu-container li.active-li a:after {
  transform: rotate(180deg);
}

.top-bar__mobnav .menu-primary-menu-container li a {
  color: var(--charcoal);
  font-size: 20px;
  font-family: var(--text-semi);
  text-align: center;
  display: block;
}

.top-bar__mobnav .menu-primary-menu-container li a:hover {
  color: var(--accent);
}

.top-bar__mobnav a[href="#"] {
  cursor: auto;
}

.top-bar__mobnav a[href="#"]:hover {
  color: var(--dark);
}

.top-bar__mobnav::-webkit-scrollbar {
  background-color: #0000;
  width: 15px;
}

.top-bar__mobnav::-webkit-scrollbar:horizontal {
  height: 6px;
}

.top-bar__mobnav::-webkit-scrollbar-track {
  border: none;
  border-radius: 3px;
}

.top-bar__mobnav::-webkit-scrollbar-thumb {
  background-color: var(--pale);
  border: 3px solid var(--red);
  border-radius: 0;
}

.top-bar__mobnav {
  scrollbar-color: var(--red) transparent;
  scrollbar-width: thin;
}

.top-bar__ctas a {
  text-align: center;
  box-sizing: border-box;
  width: 100%;
}

.top-bar__close {
  cursor: pointer;
  background-image: url("close.729968e2.svg");
  background-position: center;
  background-size: 200%;
  width: 28px;
  height: 28px;
  position: absolute;
  top: 30px;
  right: 30px;
}

.top-bar__overlay {
  z-index: 999;
  background-color: #0009;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0;
}

.top-bar__overlay.is-active {
  display: block;
}

.hero-blog {
  border-radius: var(--radius-xxl);
  background: linear-gradient(to right, #ffd979 0%, #fff5dd 100%);
  width: calc(100% - 96px);
  margin: 100px 48px 0;
  padding: 64px 0;
  position: relative;
}

@media (width <= 1480px) {
  .hero-blog {
    width: calc(100% - 48px);
    margin: 86px 24px 0;
  }
}

@media (width <= 1023px) {
  .hero-blog {
    width: calc(100% - 24px);
    margin: 86px 12px 0;
  }
}

@media (width <= 767px) {
  .hero-blog {
    border-radius: var(--radius-xl);
    width: calc(100% - 24px);
    margin: 80px 12px 0;
    padding: 48px 0;
  }
}

.hero-blog__caption {
  max-width: 50%;
}

@media (width <= 1400px) {
  .hero-blog__caption {
    max-width: 65%;
  }
}

@media (width <= 1023px) {
  .hero-blog__caption {
    max-width: 80%;
  }
}

@media (width <= 767px) {
  .hero-blog__caption {
    max-width: 90%;
  }
}

.hero-blog__caption h1 {
  margin-bottom: 0;
}

.hero-single {
  background-color: var(--yellow-light);
  border-radius: var(--radius-xxl);
  width: calc(100% - 96px);
  margin: 100px 48px 64px;
}

@media (width <= 1480px) {
  .hero-single {
    width: calc(100% - 48px);
    margin: 86px 24px 48px;
  }
}

@media (width <= 1023px) {
  .hero-single {
    width: calc(100% - 24px);
    margin: 86px 12px 48px;
  }
}

@media (width <= 767px) {
  .hero-single {
    border-radius: var(--radius-xl);
    width: calc(100% - 24px);
    margin: 80px 12px 40px;
  }
}

.hero-single__caption {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 0;
}

@media (width <= 1400px) {
  .hero-single__caption {
    max-width: 720px;
    padding: 64px 0;
  }
}

@media (width <= 1023px) {
  .hero-single__caption {
    max-width: 640px;
    padding: 64px 0;
  }
}

@media (width <= 767px) {
  .hero-single__caption {
    padding: 48px 0;
  }
}

.hero-single__caption h1 {
  line-height: var(--lh-tight);
  margin-bottom: 24px;
}

.hero-single__time {
  text-align: center;
  text-transform: uppercase;
  color: var(--gray-med);
  margin-top: 12px;
  font-size: 14px;
  display: block;
}

.hero-single__photo {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
  margin-bottom: 12px;
  display: flex;
}

.hero-single__photo img {
  border-radius: var(--radius-full);
  width: 164px;
  height: 164px;
}

.hero-single__location {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
  display: flex;
}

.hero-single__location img {
  width: 16px;
  margin-right: 6px;
}

.hero-single__cats ul {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.hero-single__cats ul li {
  margin-left: 6px;
  margin-right: 6px;
}

@media (width <= 1480px) {
  .hero-single__cats ul li {
    margin-bottom: 6px;
    margin-right: 6px;
  }
}

.hero-single__cats ul li a {
  background-color: var(--yelow-pale);
  border-radius: var(--radius-full);
  height: 44px;
  color: var(--dark);
  font-size: 18px;
  line-height: 44px;
  font-family: var(--font-medium);
  padding: 0 24px;
  transition: all .25s ease-in-out;
  display: inline-block;
}

@media (width <= 1480px) {
  .hero-single__cats ul li a {
    height: 40px;
    padding: 0 16px;
    line-height: 40px;
  }
}

@media (width <= 1400px) {
  .hero-single__cats ul li a {
    font-size: 16px;
  }
}

@media (width <= 1023px) {
  .hero-single__cats ul li a {
    height: 36px;
    padding: 0 12px;
    font-size: 16px;
    line-height: 36px;
  }
}

.hero-single__cats ul li a:hover {
  background-color: var(--yellow);
  color: var(--black);
}

.hero-simple {
  margin-top: 100px;
  padding: 80px 0;
}

@media (width <= 1400px) {
  .hero-simple {
    margin-top: 80px;
    padding: 60px 0;
  }
}

@media (width <= 1023px) {
  .hero-simple {
    margin-top: 70px;
    padding: 40px 0;
  }
}

.hero-simple__caption {
  max-width: 900px;
  margin: 0 auto;
}

@media (width <= 1400px) {
  .hero-simple__caption {
    max-width: 700px;
  }
}

@media (width <= 1023px) {
  .hero-simple__caption {
    max-width: 600px;
  }
}

.hero-inner {
  border-radius: var(--radius-xxl);
  background: #000;
  width: calc(100% - 96px);
  margin: 100px 48px 0;
  position: relative;
}

@media (width <= 1480px) {
  .hero-inner {
    width: calc(100% - 48px);
    margin: 86px 24px 0;
  }
}

@media (width <= 1023px) {
  .hero-inner {
    width: calc(100% - 24px);
    margin: 86px 12px 0;
  }
}

@media (width <= 767px) {
  .hero-inner {
    border-radius: var(--radius-xl);
    width: calc(100% - 24px);
    margin: 80px 12px 0;
  }
}

.hero-inner__caption {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: end;
  display: flex;
}

.hero-inner__content {
  width: 50%;
  padding: 98px 0;
}

@media (width <= 1400px) {
  .hero-inner__content {
    padding: 64px 0;
  }
}

@media (width <= 1023px) {
  .hero-inner__content {
    width: 55%;
  }
}

@media (width <= 767px) {
  .hero-inner__content {
    width: 100%;
    padding: 48px 0 24px;
  }
}

.hero-inner--green {
  background: linear-gradient(to right, #4caf50 0%, #8bc34a 100%);
}

.hero-inner--blue {
  background: linear-gradient(to right, #1976d2 0%, #64b5f6 100%);
}

.hero-inner__content h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.hero-inner__content ul {
  margin-bottom: 32px;
}

.hero-inner__content ul li {
  color: var(--white);
  font-size: 24px;
  font-family: var(--font-heading-semi);
  background: url("check-yellow.bd2b83f6.svg") 0 no-repeat;
  margin-bottom: 16px;
  padding-left: 46px;
  display: block;
  position: relative;
}

@media (width <= 1480px) {
  .hero-inner__content ul li {
    margin-bottom: 12px;
    padding-left: 40px;
    font-size: 22px;
  }
}

@media (width <= 1023px) {
  .hero-inner__content ul li {
    background-size: 18px;
    padding-left: 32px;
    font-size: 20px;
  }
}

.hero-inner__content p {
  color: var(--white);
  margin-bottom: var(--size-32);
  font-family: var(--font-heading-semi);
  font-size: 24px;
}

@media (width <= 1400px) {
  .hero-inner__content p {
    margin-bottom: 24px;
    font-size: 22px;
  }
}

@media (width <= 767px) {
  .hero-inner__content p {
    margin-bottom: 16px;
  }
}

.hero-inner__image {
  max-width: 660px;
  position: relative;
  right: -64px;
}

@media (width <= 1480px) {
  .hero-inner__image {
    right: 0;
  }
}

@media (width <= 1400px) {
  .hero-inner__image {
    max-width: 50%;
  }
}

@media (width <= 1023px) {
  .hero-inner__image {
    max-width: 40%;
    right: -12px;
  }
}

@media (width <= 767px) {
  .hero-inner__image {
    max-width: 100%;
  }
}

.hero-inner__image img {
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.page-footer {
  background-color: var(--gray-pale);
}

.page-footer__info {
  border-bottom: 1px solid #0000001c;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 48px 0;
  display: flex;
}

@media (width <= 1480px) {
  .page-footer__info {
    padding: 32px 0;
  }
}

@media (width <= 1023px) {
  .page-footer__info {
    padding: 24px 0;
  }
}

@media (width <= 767px) {
  .page-footer__info {
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    display: flex;
  }
}

.page-footer__brand img {
  max-width: 220px;
}

@media (width <= 767px) {
  .page-footer__brand img {
    margin: 0 auto 16px;
    display: block;
  }
}

.page-footer__socials {
  flex-flow: wrap;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

@media (width <= 767px) {
  .page-footer__socials {
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    display: flex;
  }
}

.page-footer__socials small {
  color: var(--dark);
  font-size: 22px;
  font-family: var(--font-medium);
}

@media (width <= 1200px) {
  .page-footer__socials small {
    font-size: 20px;
  }
}

.page-footer__socials ul {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.page-footer__socials ul li {
  margin-left: 12px;
}

.page-footer__socials ul li a img {
  width: 24px;
  transition: all .25s ease-in-out;
}

@media (width <= 1200px) {
  .page-footer__socials ul li a img {
    width: 20px;
  }
}

.page-footer__socials ul li a img:hover {
  filter: brightness(0%);
}

.page-footer__navs {
  padding: 48px 0 64px;
}

@media (width <= 767px) {
  .page-footer__navs {
    text-align: center;
    padding: 32px 0 24px;
  }
}

.page-footer__navs ul li {
  margin-bottom: 12px;
  display: block;
}

@media (width <= 1400px) {
  .page-footer__navs ul li {
    margin-bottom: 8px;
  }
}

.page-footer__navs ul li a {
  color: var(--black);
  font-size: 18px;
  transition: all .25s ease-in-out;
}

@media (width <= 1400px) {
  .page-footer__navs ul li a {
    font-size: 16px;
  }
}

.page-footer__navs ul li a:hover {
  color: var(--green-dark);
  text-decoration: underline;
}

@media (width <= 767px) {
  .page-footer__nav {
    margin-bottom: 24px;
  }
}

@media (width <= 1023px) {
  .page-footer__about {
    margin-bottom: 24px;
  }
}

.page-footer__about p {
  max-width: 90%;
  font-size: 18px;
}

@media (width <= 1400px) {
  .page-footer__about p {
    font-size: 16px;
  }
}

@media (width <= 1200px) {
  .page-footer__about p {
    max-width: 100%;
  }
}

.page-footer__title {
  text-transform: uppercase;
  line-height: var(--lh-tight);
  letter-spacing: 1px;
  font-family: var(--font-semi);
  color: var(--dark);
  margin-bottom: 24px;
  font-size: 18px;
  display: block;
}

@media (width <= 1400px) {
  .page-footer__title {
    margin-bottom: 20px;
    font-size: 16px;
  }
}

@media (width <= 767px) {
  .page-footer__title {
    margin-bottom: 12px;
  }
}

.page-footer__bottom {
  border-top: 1px solid #0000001c;
  border-bottom: 1px solid #0000001c;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  display: flex;
}

@media (width <= 767px) {
  .page-footer__bottom {
    text-align: center;
    display: block;
  }
}

.page-footer__contact {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: start;
  display: flex;
}

@media (width <= 767px) {
  .page-footer__contact {
    display: block;
  }
}

.page-footer__contact span {
  display: block;
}

.page-footer__card {
  margin-right: 84px;
}

@media (width <= 1200px) {
  .page-footer__card {
    margin-right: 64px;
  }
}

@media (width <= 767px) {
  .page-footer__card {
    margin-bottom: 16px;
    margin-right: 0;
  }

  .page-footer__card:last-child {
    margin-bottom: 0;
  }
}

.page-footer__card span, .page-footer__card address {
  font-style: normal;
}

.page-footer__card span a, .page-footer__card address a {
  color: var(--green);
  font-size: 18px;
  transition: all .25s ease-in-out;
}

.page-footer__card span a:hover, .page-footer__card address a:hover {
  color: var(--green-dark);
  text-decoration: underline;
}

.page-footer__subtitle {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
  margin-bottom: 4px;
  font-size: 18px;
}

@media (width <= 1400px) {
  .page-footer__subtitle {
    font-size: 16px;
  }
}

@media (width <= 1023px) {
  .page-footer__cta {
    display: none;
  }
}

.page-footer__copy {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  padding: 32px 0;
  display: flex;
}

@media (width <= 767px) {
  .page-footer__copy {
    text-align: center;
    padding: 24px 16px;
    display: block;
  }
}

.page-footer__copy small {
  color: var(--black);
  margin-right: 12px;
  font-size: 18px;
}

@media (width <= 1400px) {
  .page-footer__copy small {
    font-size: 16px;
  }
}

.page-footer__copy ul {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

@media (width <= 767px) {
  .page-footer__copy ul {
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    display: flex;
  }
}

.page-footer__copy ul li a {
  color: var(--black);
  border-left: 1px solid var(--black);
  padding: 0 12px;
  font-size: 18px;
  text-decoration: underline;
}

@media (width <= 1400px) {
  .page-footer__copy ul li a {
    font-size: 16px;
  }
}

@media (width <= 767px) {
  .page-footer__copy ul li a {
    border: none;
  }
}

.page-footer__copy ul li a:hover {
  color: var(--green-dark);
}

.main-cta {
  text-align: center;
}

.main-cta__wrapper {
  background-color: var(--green-pale);
  border-radius: var(--radius-xxl);
  padding: 120px 0;
}

@media (width <= 1480px) {
  .main-cta__wrapper {
    padding: 100px 0;
  }
}

@media (width <= 1200px) {
  .main-cta__wrapper {
    padding: 80px 0;
  }
}

@media (width <= 1023px) {
  .main-cta__wrapper {
    padding: 64px 0;
  }
}

@media (width <= 767px) {
  .main-cta__wrapper {
    border-radius: var(--radius-xl);
    padding: 48px 0;
  }
}

.main-cta--bottom {
  margin-bottom: 100px;
}

@media (width <= 1480px) {
  .main-cta--bottom {
    margin-bottom: 80px;
  }
}

@media (width <= 1023px) {
  .main-cta--bottom {
    margin-bottom: 60px;
  }
}

@media (width <= 767px) {
  .main-cta--bottom {
    margin-bottom: 50px;
  }

  .main-cta__caption {
    padding: 0 24px;
  }
}

.main-cta__caption h2 {
  color: var(--green);
  margin-bottom: 12px;
}

@media (width <= 1023px) {
  .main-cta__caption h2 {
    margin-bottom: 6px;
  }
}

.main-cta__caption p {
  color: var(--black);
  font-size: 32px;
  font-family: var(--font-heading-med);
  line-height: var(--lh-tight);
  margin-bottom: 32px;
}

@media (width <= 1200px) {
  .main-cta__caption p {
    margin-bottom: 24px;
    font-size: 28px;
  }
}

@media (width <= 1023px) {
  .main-cta__caption p {
    font-size: 26px;
  }
}

@media (width <= 767px) {
  .main-cta__caption p {
    font-size: 22px;
  }
}

.main-cta__caption ul {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 48px;
  display: flex;
}

@media (width <= 1023px) {
  .main-cta__caption ul {
    margin-bottom: 32px;
  }
}

@media (width <= 767px) {
  .main-cta__caption ul {
    margin-bottom: 24px;
  }
}

.main-cta__caption ul li {
  font-size: 18px;
  font-family: var(--font-medium);
  color: var(--dark);
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  margin: 0 20px;
  display: flex;
}

@media (width <= 1200px) {
  .main-cta__caption ul li {
    margin: 0 16px;
  }
}

@media (width <= 1023px) {
  .main-cta__caption ul li {
    margin: 0 6px;
    font-size: 16px;
  }
}

@media (width <= 767px) {
  .main-cta__caption ul li {
    margin-bottom: 12px;
  }
}

.main-cta__caption ul li:before {
  speak: never;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  color: var(--green);
  margin-right: 12px;
  font-size: 22px;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  font-family: icomoon !important;
}

.latest {
  padding: 80px 0;
}

@media (width <= 1200px) {
  .latest {
    padding: 64px 0;
  }
}

@media (width <= 767px) {
  .latest {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}

.latest .row > [class*="col-"] {
  display: flex;
}

@media (width <= 1023px) {
  .latest .row > [class*="col-"]:last-child {
    display: none;
  }
}

.latest .article {
  background-color: var(--white);
  border-radius: var(--radius-xxl);
  border: 1px solid var(--gray-med);
  flex-direction: column;
  flex: 1;
  padding: 32px;
  transition: all .25s ease-in-out;
  display: flex;
  position: relative;
}

@media (width <= 1200px) {
  .latest .article {
    padding: 24px;
  }
}

@media (width <= 767px) {
  .latest .article {
    border-radius: var(--radius-xl);
    margin-bottom: 16px;
  }
}

.latest .article:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 12px #0000001a;
}

.latest .article__photo {
  border-radius: var(--radius-xl);
  margin-bottom: 24px;
  overflow: hidden;
}

@media (width <= 767px) {
  .latest .article__photo {
    border-radius: var(--radius-md);
  }
}

.latest .article__photo img {
  object-fit: cover;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 100%;
  height: 240px;
  transition: all .25s ease-in-out;
  display: block;
}

@media (width <= 1400px) {
  .latest .article__photo img {
    height: 200px;
  }
}

@media (width <= 1200px) {
  .latest .article__photo img {
    height: 160px;
  }
}

.latest .article__photo:hover img {
  transform: scale(1.1);
}

.latest .article__text h3 {
  margin-bottom: 12px;
  font-size: 32px;
}

@media (width <= 1480px) {
  .latest .article__text h3 {
    font-size: 30px;
  }
}

@media (width <= 1400px) {
  .latest .article__text h3 {
    margin-bottom: 6px;
    font-size: 26px;
  }
}

.latest .article__text h3 a {
  color: var(--dark);
}

.latest .article__text h3 a:hover {
  color: var(--blue);
  text-decoration: underline;
}

.latest .article__text {
  position: relative;
}

.latest .article__date {
  text-transform: uppercase;
  font-size: 16px;
}

.latest .article small {
  background-color: var(--blue);
  border-radius: var(--radius-full);
  width: 48px;
  height: 48px;
  transition: all .25s ease-in-out;
  position: absolute;
  bottom: 16px;
  right: 16px;
}

@media (width <= 1023px) {
  .latest .article small {
    width: 38px;
    height: 38px;
  }
}

@media (width <= 767px) {
  .latest .article small {
    bottom: 12px;
    right: 12px;
  }
}

.latest .article small:hover {
  background-color: var(--blue-med);
}

.latest .article small a {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.latest .article small a img {
  width: 24px;
}

.faq {
  margin-bottom: 100px;
}

@media (width <= 1400px) {
  .faq {
    margin-bottom: 80px;
  }
}

@media (width <= 1023px) {
  .faq {
    margin-bottom: 60px;
  }
}

@media (width <= 767px) {
  .faq {
    margin-bottom: 50px;
  }
}

.faq__content .accordion__item {
  width: 100%;
  overflow: hidden;
}

.faq__content .accordion__title {
  border-bottom: 1px solid var(--dark);
  padding: 20px 48px 20px 0;
  position: relative;
}

@media (width <= 767px) {
  .faq__content .accordion__title {
    padding: 16px 32px 16px 0;
  }
}

.faq__content .accordion__title h3 {
  margin-bottom: 0;
}

.faq__content .accordion__title:after {
  content: "+";
  background-color: var(--blue-light);
  text-align: center;
  width: 32px;
  height: 32px;
  color: var(--dark);
  border-radius: 100%;
  font-size: 28px;
  line-height: 32px;
  display: block;
  position: absolute;
  top: 20px;
  right: 0;
}

@media (width <= 767px) {
  .faq__content .accordion__title:after {
    top: 12px;
  }
}

.faq__content .accordion__title h3 {
  font-size: 22px;
  line-height: 1.4;
  font-family: var(--font-semi);
  transition: all .25s ease-in-out;
}

@media (width >= 768px) {
  .faq__content .accordion__title h3 {
    padding-right: 44px;
  }
}

@media (width <= 1480px) {
  .faq__content .accordion__title h3 {
    font-size: 22px;
  }
}

@media (width <= 1200px) {
  .faq__content .accordion__title h3 {
    font-size: 20px;
  }
}

@media (width <= 1023px) {
  .faq__content .accordion__title h3 {
    font-size: 18px;
  }
}

.faq__content .accordion__title:hover {
  cursor: pointer;
}

.faq__content .accordion__title:hover h3 {
  color: var(--blue);
}

.faq__content .accordion__content {
  will-change: max-height;
  opacity: 0;
  max-height: 0;
  transition: all .25s ease-out;
  overflow: hidden;
}

.faq__content .accordion__text {
  padding: 24px 0;
}

.faq__content .accordion--active .accordion__title {
  border-color: var(--blue);
}

.faq__content .accordion--active .accordion__title h3 {
  color: var(--blue);
}

.faq__content .accordion--active .accordion__title:after {
  background-color: var(--blue);
  color: var(--white);
  content: "-";
  line-height: 28px;
}

.faq__content .accordion--active .accordion__content {
  opacity: 1;
  max-height: auto;
  height: auto;
}

.simple {
  padding-bottom: 100px;
}

@media (width <= 1400px) {
  .simple {
    padding-bottom: 60px;
  }
}

@media (width <= 1023px) {
  .simple {
    padding-bottom: 32px;
  }
}

@media (width <= 767px) {
  .simple {
    padding-bottom: 0;
  }
}

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

@media (width <= 1400px) {
  .simple__wrapper {
    max-width: 700px;
  }
}

@media (width <= 1023px) {
  .simple__wrapper {
    max-width: 600px;
  }
}

.simple__wrapper .wp-block-image {
  margin-bottom: 32px;
}

.simple__wrapper .wp-block-image img {
  border-radius: var(--radius-xxl);
}

.simple__wrapper p {
  margin-bottom: 24px;
}

@media (width <= 767px) {
  .simple__wrapper p {
    margin-bottom: 16px;
  }
}

.simple__wrapper h2 {
  margin-bottom: 32px;
}

@media (width <= 767px) {
  .simple__wrapper h2 {
    margin-bottom: 28px;
  }
}

.simple__wrapper h3 {
  margin-bottom: 24px;
}

@media (width <= 767px) {
  .simple__wrapper h3 {
    margin-bottom: 22px;
  }
}

.simple__wrapper h4 {
  margin-bottom: 20px;
}

.simple__wrapper ul {
  margin-bottom: 32px;
  list-style: inside;
}

@media (width <= 767px) {
  .simple__wrapper ul {
    margin-bottom: 24px;
  }
}

.simple__wrapper ul li {
  font-size: 22px;
  line-height: var(--lh-normal);
  color: var(--gray);
}

@media (width <= 1480px) {
  .simple__wrapper ul li {
    font-size: 20px;
  }
}

@media (width <= 1023px) {
  .simple__wrapper ul li {
    font-size: 18px;
  }
}

.simple__wrapper ul li a {
  font-family: var(--font-semi);
  color: var(--green-dark);
  text-decoration: underline;
}

.simple__wrapper ul li a:hover {
  color: var(--green);
  text-decoration: none;
}

.about {
  margin: 64px 0 0;
  position: relative;
}

@media (width <= 1400px) {
  .about {
    margin: 48px 0 0;
  }
}

@media (width <= 1023px) {
  .about {
    margin: 32px 0 0;
  }
}

@media (width <= 767px) {
  .about {
    margin: 24px 0;
  }
}

.about .container {
  justify-content: space-between;
  align-items: start;
  display: flex;
}

@media (width <= 767px) {
  .about .container {
    display: block;
  }
}

.about .about__content {
  width: 35%;
  padding: 64px 0;
}

@media (width <= 1023px) {
  .about .about__content {
    width: 40%;
    padding: 48px 0;
  }
}

@media (width <= 767px) {
  .about .about__content {
    width: 100%;
    padding-bottom: 24px;
  }
}

.about .about__content h2 {
  margin-bottom: 32px;
}

@media (width <= 1023px) {
  .about .about__content h2 {
    margin-bottom: 24px;
  }
}

.about .about__content p {
  margin-bottom: 24px;
}

@media (width <= 1023px) {
  .about .about__content p {
    margin-bottom: 16px;
  }
}

.about__slider {
  z-index: -1;
  z-index: 99;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  width: 55%;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
}

@media (width <= 1023px) {
  .about__slider {
    width: 50%;
  }
}

@media (width <= 767px) {
  .about__slider {
    box-sizing: border-box;
    width: 100%;
    padding: 0 24px;
    position: relative;
  }
}

.about .splide .photo img {
  object-fit: cover;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 100%;
  height: 480px;
  display: block;
}

@media (width <= 1480px) {
  .about .splide .photo img {
    height: 440px;
  }
}

@media (width <= 767px) {
  .about .splide .photo img {
    height: 280px;
  }
}

.about .splide__arrow {
  background-color: var(--yelow-pale);
  width: 64px;
  height: 64px;
  transition: all .25s ease-in-out;
}

@media (width <= 1200px) {
  .about .splide__arrow {
    opacity: 1;
    width: 48px;
    height: 48px;
  }
}

.about .splide__arrow:hover {
  background-color: var(--yellow);
}

.mission {
  margin-bottom: 48px;
}

@media (width <= 1480px) {
  .mission {
    margin-bottom: 24px;
  }
}

@media (width <= 1023px) {
  .mission {
    margin-bottom: 0;
  }
}

.mission__wrapper {
  text-align: center;
  background-color: var(--green-med);
  border-radius: var(--radius-xxl);
  padding: 124px 0;
}

@media (width <= 1400px) {
  .mission__wrapper {
    padding: 86px 0;
  }
}

@media (width <= 1023px) {
  .mission__wrapper {
    padding: 64px;
  }
}

@media (width <= 767px) {
  .mission__wrapper {
    padding: 32px;
  }
}

.mission__wrapper--blue {
  background-color: var(--blue-med);
  margin-bottom: 100px;
}

.mission__wrapper p {
  max-width: 946px;
  color: var(--white);
  font-size: 48px;
  font-family: var(--font-heading);
  line-height: var(--lh-tight);
  margin: 0 auto;
}

@media (width <= 1480px) {
  .mission__wrapper p {
    font-size: 42px;
  }
}

@media (width <= 1400px) {
  .mission__wrapper p {
    max-width: 860px;
    font-size: 38px;
  }
}

@media (width <= 1200px) {
  .mission__wrapper p {
    max-width: 700px;
    font-size: 32px;
  }
}

@media (width <= 1023px) {
  .mission__wrapper p {
    font-size: 28px;
  }
}

@media (width <= 767px) {
  .mission__wrapper p {
    font-size: 24px;
  }
}

.challenges {
  margin-bottom: 100px;
}

@media (width <= 1480px) {
  .challenges {
    margin-bottom: 80px;
  }
}

@media (width <= 1200px) {
  .challenges {
    margin-bottom: 60px;
  }
}

.challenges .challange {
  background-color: var(--orange-light);
  border-radius: var(--radius-xl);
  padding: 32px 24px 24px;
}

@media (width <= 1200px) {
  .challenges .challange {
    padding: 24px 16px 16px;
  }
}

@media (width <= 1023px) {
  .challenges .challange {
    margin-bottom: 32px;
  }
}

@media (width <= 767px) {
  .challenges .challange {
    margin-bottom: 16px;
  }
}

.challenges .challange__headline {
  margin-bottom: 24px;
}

@media (width <= 1400px) {
  .challenges .challange__headline {
    margin-bottom: 16px;
  }
}

.challenges .challange__photo img {
  object-fit: cover;
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.challenges__notice {
  text-align: center;
  padding-top: 48px;
}

@media (width <= 1480px) {
  .challenges__notice {
    padding-top: 32px;
  }
}

@media (width <= 1023px) {
  .challenges__notice {
    padding-top: 16px;
  }
}

.challenges__notice p {
  font-size: 32px;
  font-family: var(--font-heading-med);
}

@media (width <= 1400px) {
  .challenges__notice p {
    font-size: 30px;
  }
}

@media (width <= 1200px) {
  .challenges__notice p {
    font-size: 26px;
  }
}

@media (width <= 767px) {
  .challenges__notice p {
    font-size: 24px;
  }
}

.challenges__notice p strong {
  color: var(--black);
  font-family: var(--font-heading);
}

.solutions {
  margin-bottom: 100px;
}

@media (width <= 1400px) {
  .solutions {
    margin-bottom: 80px;
  }
}

@media (width <= 1200px) {
  .solutions {
    margin-bottom: 60px;
  }
}

@media (width <= 767px) {
  .solutions {
    margin-bottom: 50px;
  }
}

.solutions__wrapper {
  background-color: var(--green-pale);
  border-radius: var(--radius-xxl);
  min-height: 200px;
  padding: 0 90px 64px;
}

@media (width <= 1400px) {
  .solutions__wrapper {
    padding: 0 76px 48px;
  }
}

@media (width <= 1023px) {
  .solutions__wrapper {
    padding-left: 48px;
    padding-right: 48px;
  }
}

@media (width <= 767px) {
  .solutions__wrapper {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.solutions__wrapper--blue {
  background-color: var(--blue-light);
}

.solutions__list {
  flex-flow: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 32px;
  display: flex;
}

@media (width <= 1023px) {
  .solutions__list {
    gap: 12px;
  }
}

.solutions__list .solution {
  background-color: var(--green-light);
  border-radius: var(--radius-xl);
  flex-direction: column;
  flex: 1;
  margin-bottom: 30px;
  padding: 32px;
  display: flex;
}

@media (width <= 1200px) {
  .solutions__list .solution {
    padding: 28px;
  }
}

@media (width <= 767px) {
  .solutions__list .solution {
    margin-bottom: 16px;
  }
}

.solutions__list .solution__icon {
  border-radius: var(--radius-full);
  background-color: var(--green);
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 32px;
  display: flex;
  box-shadow: 0 10px 36px #00000029, 0 0 0 1px #0000000f;
}

@media (width <= 1200px) {
  .solutions__list .solution__icon {
    margin-bottom: 24px;
  }
}

@media (width <= 767px) {
  .solutions__list .solution__icon {
    margin-bottom: 16px;
  }
}

.solutions__list .solution__icon img {
  width: 32px;
}

.solutions__list .solution__desc {
  padding-bottom: 12px;
}

.solutions__cta {
  text-align: center;
  padding-top: 32px;
}

@media (width <= 1480px) {
  .solutions__cta {
    padding-top: 24px;
  }
}

@media (width <= 1400px) {
  .solutions__cta {
    padding-top: 16px;
  }
}

@media (width <= 1023px) {
  .solutions__cta {
    padding-top: 12px;
  }
}

.solutions .solutions__wrapper--blue .solution {
  background-color: var(--blue);
}

.solutions .solutions__wrapper--blue .solution__icon {
  background-color: var(--blue-med);
}

.solutions .solutions__wrapper--blue .solution__desc h4, .solutions .solutions__wrapper--blue .solution__desc p {
  color: var(--white);
}

.content {
  margin-bottom: 100px;
}

@media (width <= 767px) {
  .content {
    margin-bottom: 60px;
  }
}

.content__wrapper {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
  display: flex;
}

@media (width <= 767px) {
  .content__wrapper {
    margin-bottom: 32px;
    display: block;
  }
}

.content__wrapper:nth-child(odd) .content__photo {
  order: -1;
}

.content__wrapper:nth-child(odd) .content__photo--right {
  order: 2;
}

.content__text {
  width: 40%;
}

@media (width <= 1200px) {
  .content__text {
    width: 45%;
  }
}

@media (width <= 767px) {
  .content__text {
    width: 100%;
  }
}

.content__text ul {
  margin-bottom: 32px;
  list-style: inside;
}

@media (width <= 767px) {
  .content__text ul {
    margin-bottom: 24px;
  }
}

.content__text ul li {
  font-size: 22px;
  line-height: var(--lh-normal);
  color: var(--gray);
}

@media (width <= 1480px) {
  .content__text ul li {
    font-size: 20px;
  }
}

@media (width <= 1023px) {
  .content__text ul li {
    font-size: 18px;
  }
}

.content__text ul li a {
  font-family: var(--font-semi);
  color: var(--green-dark);
  text-decoration: underline;
}

.content__text ul li a:hover {
  color: var(--green);
  text-decoration: none;
}

.content__photo {
  width: 50%;
}

@media (width <= 767px) {
  .content__photo {
    width: 100%;
    margin-top: 16px;
  }
}

.content__photo--right {
  order: 2;
}

.content__photo img {
  object-fit: cover;
  border-radius: var(--radius-xxl);
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.hero {
  border-radius: var(--radius-xxl);
  background: #000;
  width: calc(100% - 96px);
  height: 680px;
  margin: 100px 48px 0;
  position: relative;
}

@media (width <= 1480px) {
  .hero {
    width: calc(100% - 48px);
    height: 580px;
    margin: 86px 24px 0;
  }
}

@media (width <= 1400px) {
  .hero {
    height: 540px;
  }
}

@media (width <= 1200px) {
  .hero {
    height: 500px;
  }
}

@media (width <= 1023px) {
  .hero {
    width: calc(100% - 24px);
    height: 460px;
    margin: 86px 12px 0;
  }
}

@media (width <= 767px) {
  .hero {
    border-radius: var(--radius-xl);
    width: calc(100% - 24px);
    height: 420px;
    margin: 80px 12px 0;
  }
}

.hero__overlay {
  object-fit: cover;
  border-radius: var(--radius-xxl);
  background: linear-gradient(to right, #000000bf 0%, #0000 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.hero__overlay .container {
  height: 100%;
  position: relative;
}

.hero__caption {
  max-width: 50%;
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
}

@media (width <= 1023px) {
  .hero__caption {
    max-width: 70%;
    left: 24px;
  }
}

@media (width <= 767px) {
  .hero__caption {
    max-width: 90%;
    left: 16px;
  }
}

.hero__caption h1 {
  color: var(--white);
}

.hero__caption p {
  color: var(--white);
  margin-bottom: var(--size-32);
  font-family: var(--font-heading-semi);
  font-size: 24px;
}

@media (width <= 1400px) {
  .hero__caption p {
    margin-bottom: 24px;
    font-size: 22px;
  }
}

@media (width <= 767px) {
  .hero__caption p {
    margin-bottom: 16px;
  }
}

.hero__image {
  height: 100%;
}

.hero__image img {
  border-radius: var(--radius-xxl);
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: block;
}

.hero--about .hero__caption {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (width <= 1400px) {
  .hero--about .hero__caption {
    width: 90%;
  }
}

.hero--about .hero__overlay {
  background: linear-gradient(to right, #000000bf 30%, #0000 100%);
}

.start__cta {
  text-align: center;
  border-radius: var(--radius-xxl);
  background-color: var(--green);
  flex-direction: column;
  flex: 1;
  padding: 64px;
  transition: all .25s ease-in-out;
  display: flex;
}

@media (width <= 1480px) {
  .start__cta {
    padding: 48px;
  }
}

@media (width <= 1200px) {
  .start__cta {
    padding: 32px;
  }
}

@media (width <= 1023px) {
  .start__cta {
    padding: 28px;
  }
}

@media (width <= 767px) {
  .start__cta {
    margin-bottom: 16px;
  }
}

.start__cta:hover {
  box-shadow: 0 13px 27px -5px #32325d40, 0 8px 16px -8px #0000004d;
}

.start__icon {
  margin-bottom: 32px;
}

@media (width <= 1200px) {
  .start__icon {
    margin-bottom: 24px;
  }
}

@media (width <= 1023px) {
  .start__icon {
    margin-bottom: 16px;
  }
}

@media (width <= 1200px) {
  .start__icon img {
    width: 64px;
  }
}

.start__title {
  color: var(--white);
  font-size: 42px;
  font-family: var(--font-heading-semi);
  margin-bottom: 16px;
  display: block;
}

@media (width <= 1480px) {
  .start__title {
    font-size: 38px;
  }
}

@media (width <= 1200px) {
  .start__title {
    margin-bottom: 12px;
    font-size: 32px;
  }
}

@media (width <= 1023px) {
  .start__title {
    margin-bottom: 8px;
    font-size: 28px;
  }
}

.start__desc p {
  color: var(--white);
  font-size: 24px;
  font-family: var(--font-medium);
  margin-bottom: 32px;
}

@media (width <= 1480px) {
  .start__desc p {
    font-size: 22px;
  }
}

@media (width <= 1200px) {
  .start__desc p {
    margin-bottom: 16px;
    font-size: 20px;
  }
}

.start .container {
  max-width: 1170px;
}

@media (width <= 1200px) {
  .start .container {
    max-width: 90%;
  }
}

.start .container .col-md-6:nth-child(2) .start__cta {
  background-color: var(--blue);
}

.start .col-md-6 {
  display: flex;
}

.stats {
  text-align: center;
  padding: 64px 0;
}

@media (width <= 1200px) {
  .stats {
    padding: 48px 0;
  }
}

@media (width <= 767px) {
  .stats {
    padding: 32px 0;
  }
}

.stats p {
  font-size: 32px;
  font-family: var(--font-heading-semi);
  color: var(--gray);
  line-height: var(--lh-small);
  padding: 0 48px;
}

@media (width <= 1480px) {
  .stats p {
    font-size: 28px;
  }
}

@media (width <= 1023px) {
  .stats p {
    font-size: 24px;
  }
}

@media (width <= 767px) {
  .stats p {
    padding: 0;
  }
}

.stats p strong {
  color: var(--black);
}

.stats__list {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 48px;
  display: flex;
}

@media (width <= 1200px) {
  .stats__list {
    margin-top: 32px;
  }
}

@media (width <= 767px) {
  .stats__list {
    text-align: center;
    width: 100%;
    display: block;
  }
}

.stats__list--inner {
  margin-top: 0;
}

.stats__list .stat {
  text-align: left;
  flex-flow: wrap;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

@media (width <= 1023px) {
  .stats__list .stat {
    display: block;
  }
}

@media (width <= 767px) {
  .stats__list .stat {
    text-align: center;
    width: 100%;
    margin-bottom: 16px;
  }
}

.stats__list .stat span {
  color: var(--black);
  font-size: 58px;
  font-family: var(--font-bold);
  display: block;
}

@media (width <= 1400px) {
  .stats__list .stat span {
    font-size: 46px;
  }
}

@media (width <= 1200px) {
  .stats__list .stat span {
    font-size: 36px;
  }
}

.stats__list .stat small {
  color: var(--dark);
  max-width: 170px;
  padding-left: 24px;
  font-size: 22px;
  display: block;
}

@media (width <= 1400px) {
  .stats__list .stat small {
    font-size: 20px;
  }
}

@media (width <= 1200px) {
  .stats__list .stat small {
    font-size: 18px;
  }
}

@media (width <= 1023px) {
  .stats__list .stat small {
    padding-left: 0;
  }
}

@media (width <= 767px) {
  .stats__list .stat small {
    text-align: center;
    max-width: 100%;
    padding: 0;
  }
}

.experts {
  margin-bottom: 120px;
}

@media (width <= 1480px) {
  .experts {
    margin-bottom: 100px;
  }
}

@media (width <= 1200px) {
  .experts {
    margin-bottom: 80px;
  }
}

@media (width <= 767px) {
  .experts {
    margin-bottom: 50px;
  }
}

.experts__wrapper {
  background-color: var(--gray-pale);
  border-radius: var(--radius-xxl);
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

@media (width <= 767px) {
  .experts__wrapper {
    display: block;
  }
}

.experts__content {
  box-sizing: border-box;
  width: 40%;
  padding: 80px 0 80px 80px;
}

@media (width <= 1620px) {
  .experts__content {
    width: 45%;
    padding: 64px 0 64px 64px;
  }
}

@media (width <= 1200px) {
  .experts__content {
    padding: 48px 0 48px 48px;
  }
}

@media (width <= 1023px) {
  .experts__content {
    padding: 32px 12px 32px 32px;
  }
}

@media (width <= 767px) {
  .experts__content {
    width: 100%;
  }
}

.experts__photo {
  width: 50%;
}

@media (width <= 1023px) {
  .experts__photo {
    padding-right: 24px;
  }
}

@media (width <= 767px) {
  .experts__photo {
    box-sizing: border-box;
    width: 100%;
    padding: 0 16px 16px;
  }
}

.experts__photo img {
  object-fit: cover;
  border-top-right-radius: 32px;
  border-bottom-right-radius: 32px;
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

@media (width <= 1023px) {
  .experts__photo img {
    border-radius: 24px;
  }
}

@media (width <= 767px) {
  .experts__photo img {
    height: 260px;
  }
}

.experts__list {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-top: 48px;
  display: flex;
}

@media (width <= 1200px) {
  .experts__list {
    margin-top: 32px;
  }
}

@media (width <= 1023px) {
  .experts__list {
    margin-top: 24px;
  }
}

.experts__list .expert {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

@media (width <= 1023px) {
  .experts__list .expert {
    display: block;
  }
}

.experts__list .expert {
  flex: 1;
}

.experts__list .expert__photo {
  width: 82px;
}

@media (width <= 1480px) {
  .experts__list .expert__photo {
    width: 72px;
  }
}

.experts__list .expert__photo img {
  object-fit: cover;
  border-radius: var(--radius-full);
  width: 82px;
  max-width: 100%;
  height: 82px;
  display: block;
}

@media (width <= 1480px) {
  .experts__list .expert__photo img {
    width: 72px;
    height: 72px;
  }
}

.experts__list .expert__meta {
  flex: 1;
  padding-left: 16px;
}

@media (width <= 1023px) {
  .experts__list .expert__meta {
    padding-top: 12px;
    padding-left: 0;
  }
}

.experts__list .expert__meta span {
  color: var(--dark);
  font-size: 24px;
  font-family: var(--font-heading-semi);
  margin-bottom: 4px;
  display: block;
}

@media (width <= 1480px) {
  .experts__list .expert__meta span {
    font-size: 20px;
  }
}

.experts__list .expert__meta small {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
  font-size: 18px;
  display: block;
}

@media (width <= 1480px) {
  .experts__list .expert__meta small {
    font-size: 16px;
  }
}

.services {
  margin-bottom: 120px;
}

@media (width <= 1480px) {
  .services {
    margin-bottom: 100px;
  }
}

@media (width <= 1400px) {
  .services {
    margin-bottom: 80px;
  }
}

@media (width <= 1023px) {
  .services {
    margin-bottom: 60px;
  }
}

@media (width <= 767px) {
  .services {
    margin-bottom: 50px;
  }
}

.services--inner {
  margin-top: 80px;
}

.services .service {
  background-color: var(--blue-light);
  border-radius: var(--radius-xl);
  flex-direction: column;
  margin-bottom: 30px;
  padding: 32px;
  display: flex;
}

@media (width <= 1200px) {
  .services .service {
    padding: 28px;
  }
}

@media (width <= 767px) {
  .services .service {
    margin-bottom: 16px;
  }
}

.services .service__icon {
  border-radius: var(--radius-full);
  background-color: var(--blue);
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 32px;
  display: flex;
  box-shadow: 0 10px 36px #00000029, 0 0 0 1px #0000000f;
}

@media (width <= 1200px) {
  .services .service__icon {
    margin-bottom: 24px;
  }
}

@media (width <= 767px) {
  .services .service__icon {
    margin-bottom: 16px;
  }
}

.services .service__icon img {
  width: 32px;
}

.services .service__desc {
  padding-bottom: 12px;
}

.services .col-lg-4 {
  display: flex;
}

.reviews {
  margin-bottom: 100px;
}

@media (width <= 1400px) {
  .reviews {
    margin-bottom: 80px;
  }
}

@media (width <= 1023px) {
  .reviews {
    margin-bottom: 60px;
  }
}

@media (width <= 767px) {
  .reviews {
    margin-bottom: 50px;
  }
}

.reviews .section-header {
  padding-bottom: 12px;
}

@media (width <= 767px) {
  .reviews .section-header {
    padding: 32px 12px 0;
  }
}

.reviews__wrapper {
  background-color: var(--yellow-light);
  border-radius: var(--radius-xxl);
  padding-top: 24px;
  padding-bottom: 64px;
}

@media (width <= 1023px) {
  .reviews__wrapper {
    padding-top: 8px;
    padding-bottom: 32px;
  }
}

.reviews__wrapper .splide {
  max-width: 1000px;
  margin: 0 auto;
}

@media (width <= 1480px) {
  .reviews__wrapper .splide {
    max-width: 900px;
  }
}

@media (width <= 1400px) {
  .reviews__wrapper .splide {
    max-width: 800px;
  }
}

@media (width <= 1200px) {
  .reviews__wrapper .splide {
    max-width: 680px;
  }
}

@media (width <= 1023px) {
  .reviews__wrapper .splide {
    max-width: 560px;
  }
}

.reviews .splide__arrow {
  background-color: var(--yelow-pale);
  width: 64px;
  height: 64px;
  transition: all .25s ease-in-out;
}

@media (width <= 1200px) {
  .reviews .splide__arrow {
    width: 48px;
    height: 48px;
  }
}

.reviews .splide__arrow--prev {
  left: -32px;
}

@media (width <= 767px) {
  .reviews .splide__arrow--prev {
    left: 12px;
  }
}

.reviews .splide__arrow--next {
  right: -32px;
}

@media (width <= 767px) {
  .reviews .splide__arrow--next {
    right: 12px;
  }
}

.reviews .splide__arrow:hover {
  background-color: var(--yellow);
}

.reviews .review {
  text-align: center;
  background: url("quote.bf293ce0.svg") top no-repeat;
  padding: 100px 64px 0;
}

@media (width <= 1023px) {
  .reviews .review {
    padding-top: 64px;
  }
}

@media (width <= 767px) {
  .reviews .review {
    padding-top: 48px;
    padding-bottom: 24px;
  }
}

.reviews .review__body p {
  font-size: 28px;
  font-family: var(--font-medi);
  color: var(--dark);
}

@media (width <= 1480px) {
  .reviews .review__body p {
    font-size: 26px;
  }
}

@media (width <= 1400px) {
  .reviews .review__body p {
    font-size: 24px;
  }
}

@media (width <= 1023px) {
  .reviews .review__body p {
    font-size: 22px;
  }
}

@media (width <= 767px) {
  .reviews .review__body p {
    font-size: 20px;
  }
}

.reviews .review__meta {
  margin-top: 32px;
}

@media (width <= 1400px) {
  .reviews .review__meta {
    margin-top: 24px;
  }
}

.reviews .review__photo {
  margin-bottom: 12px;
}

.reviews .review__photo img {
  border-radius: var(--radius-full);
}

@media (width <= 1400px) {
  .reviews .review__photo img {
    width: 88px;
  }
}

@media (width <= 767px) {
  .reviews .review__photo img {
    width: 64px;
  }
}

.reviews .review__author {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.reviews .review__author small, .reviews .review__author span {
  font-size: 20px;
}

@media (width <= 767px) {
  .reviews .review__author small, .reviews .review__author span {
    font-size: 18px;
  }
}

.reviews .review__author span {
  color: var(--black);
}

.reviews .review__author span:after {
  border-radius: var(--radius-full);
  content: "";
  background-color: var(--gray);
  width: 8px;
  height: 8px;
  margin: 0 12px;
  display: inline-block;
}

.reviews .review__author small {
  color: var(--gray);
}

.why {
  margin-bottom: 100px;
}

@media (width <= 1400px) {
  .why {
    margin-bottom: 80px;
  }
}

@media (width <= 767px) {
  .why {
    margin-bottom: 50px;
  }
}

.why .container {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

@media (width <= 767px) {
  .why .container {
    display: block;
  }
}

.why__content {
  width: 50%;
}

@media (width <= 1400px) {
  .why__content {
    width: 45%;
  }
}

@media (width <= 1200px) {
  .why__content {
    width: 50%;
  }
}

@media (width <= 1023px) {
  .why__content {
    width: 55%;
  }
}

@media (width <= 767px) {
  .why__content {
    width: 100%;
  }
}

.why__list {
  margin-bottom: 48px;
}

@media (width <= 1200px) {
  .why__list {
    margin-bottom: 32px;
  }
}

.why__list .step {
  background-color: var(--gray-pale);
  border-radius: var(--radius-md);
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  max-width: 570px;
  margin-bottom: 16px;
  padding: 24px;
  display: flex;
}

@media (width <= 1023px) {
  .why__list .step {
    padding: 16px;
  }
}

.why__list .step__number {
  background-color: var(--white);
  border-radius: var(--radius-md);
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  display: flex;
}

.why__list .step__number span {
  color: var(--blue);
  font-size: 24px;
  font-family: var(--font-bold);
}

.why__list .step__desc {
  box-sizing: border-box;
  flex: 1;
  padding-left: 24px;
}

@media (width <= 1023px) {
  .why__list .step__desc {
    padding-left: 16px;
  }
}

.why__list .step__desc span {
  display: block;
}

.why__list .step__title {
  font-size: 18px;
  font-family: var(--font-bold);
  color: var(--dark);
  margin-bottom: 6px;
}

@media (width <= 1023px) {
  .why__list .step__title {
    margin-bottom: 4px;
  }
}

.why__list .step__subtitle {
  color: var(--dark);
  font-size: 18px;
}

@media (width <= 1023px) {
  .why__list .step__subtitle {
    font-size: 16px;
  }
}

.why__photo {
  width: 40%;
  position: relative;
}

@media (width <= 767px) {
  .why__photo {
    width: 100%;
    margin-top: 32px;
  }
}

.why__photo img {
  object-fit: cover;
  border-radius: var(--radius-xxl);
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

@media (width <= 767px) {
  .why__photo img {
    border-radius: var(--radius-xl);
    height: 320px;
  }
}

.why__notice {
  border-radius: var(--radius-xl);
  box-sizing: border-box;
  background: #ffffffe6;
  max-width: 270px;
  padding: 32px;
  position: absolute;
  bottom: 12px;
  right: 12px;
}

@media (width <= 1200px) {
  .why__notice {
    max-width: 220px;
  }
}

@media (width <= 1023px) {
  .why__notice {
    max-width: 200px;
    padding: 24px;
  }
}

.why__notice span {
  color: var(--blue-med);
  font-size: 32px;
  font-family: var(--font-heading-semi);
}

@media (width <= 1400px) {
  .why__notice span {
    font-size: 28px;
  }
}

@media (width <= 1200px) {
  .why__notice span {
    font-size: 24px;
  }
}

@media (width <= 1023px) {
  .why__notice span {
    font-size: 22px;
  }
}

.ermac {
  background: var(--green-bg);
  border-radius: var(--radius-xxl);
  width: calc(100% - 96px);
  margin: 100px 48px;
  padding: 100px 0;
  position: relative;
}

@media (width <= 1480px) {
  .ermac {
    padding: 80px 0;
  }
}

@media (width <= 1400px) {
  .ermac {
    margin-bottom: 80px;
  }
}

@media (width <= 1023px) {
  .ermac {
    margin-bottom: 60px;
  }
}

@media (width <= 767px) {
  .ermac {
    border-radius: var(--radius-xl);
    width: calc(100% - 24px);
    margin: 80px 12px 50px;
    padding: 60px 0;
  }
}

.ermac__content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

@media (width <= 1480px) {
  .ermac__content {
    max-width: 600px;
  }
}

@media (width <= 1400px) {
  .ermac__content {
    max-width: 560px;
  }
}

.ermac__content h1 {
  color: var(--dark);
  margin-bottom: 24px;
}

@media (width <= 1400px) {
  .ermac__content h1 {
    margin-bottom: 16px;
  }
}

.ermac__content p {
  font-size: 32px;
  font-family: var(--font-heading-semi);
  color: var(--gray);
  margin-bottom: 24px;
}

@media (width <= 1480px) {
  .ermac__content p {
    font-size: 28px;
  }
}

@media (width <= 1400px) {
  .ermac__content p {
    font-size: 26px;
  }
}

@media (width <= 1200px) {
  .ermac__content p {
    font-size: 24px;
  }
}

@media (width <= 1023px) {
  .ermac__content p {
    font-size: 22px;
  }
}

.ermac__content form {
  text-align: left;
  max-width: 480px;
  margin: 0 auto;
}

@media (width <= 1023px) {
  .ermac__content form {
    max-width: 380px;
  }
}

.ermac__content form .wpcf7-response-output {
  border-radius: var(--radius-md);
  background-color: var(--blue-pale);
  color: var(--blue);
  border: none;
  margin: 0;
  padding: 16px;
  box-shadow: 1.95px 1.95px 2.6px #00000026;
}

.ermac__content form label {
  color: var(--black);
  margin-bottom: 6px;
  font-size: 18px;
  display: block;
}

.ermac__content form input[type="text"], .ermac__content form input[type="tel"], .ermac__content form input[type="email"], .ermac__content form textarea {
  border-radius: var(--radius-xxl);
  border: 1px solid var(--green);
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 24px;
  padding: 16px;
}

.ermac__content form input[type="text"].wpcf7-not-valid, .ermac__content form input[type="tel"].wpcf7-not-valid, .ermac__content form input[type="email"].wpcf7-not-valid, .ermac__content form textarea.wpcf7-not-valid {
  border-color: red;
}

.ermac__content form textarea {
  height: 140px;
}

.ermac__content form input[type="submit"] {
  border-radius: var(--radius-full);
  text-transform: uppercase;
  height: 56px;
  font-size: 16px;
  line-height: 56px;
  font-family: var(--font-bold);
  color: var(--white);
  background-color: var(--green-dark);
  text-align: center;
  border: none;
  width: 100%;
  padding: 0;
  transition: all .25s ease-in-out;
  display: inline-block;
}

@media (width <= 1480px) {
  .ermac__content form input[type="submit"] {
    height: 54px;
    line-height: 54px;
  }
}

@media (width <= 1200px) {
  .ermac__content form input[type="submit"] {
    height: 50px;
    padding: 0 32px;
    font-size: 15px;
    line-height: 50px;
  }
}

@media (width <= 1023px) {
  .ermac__content form input[type="submit"] {
    height: 48px;
    line-height: 48px;
  }
}

.ermac__content form input[type="submit"]:hover {
  background-color: var(--green);
  color: var(--white);
}

.ermac__content form .wpcf7-not-valid-tip {
  padding-left: 24px;
  font-size: 14px;
  position: relative;
  top: -12px;
}

.error404 .main-cta, .blog .main-cta, .single .main-cta {
  margin-bottom: 100px;
}

@media (width <= 1480px) {
  .error404 .main-cta, .blog .main-cta, .single .main-cta {
    margin-bottom: 80px;
  }
}

@media (width <= 1023px) {
  .error404 .main-cta, .blog .main-cta, .single .main-cta {
    margin-bottom: 60px;
  }
}

@media (width <= 767px) {
  .error404 .main-cta, .blog .main-cta, .single .main-cta {
    margin-bottom: 50px;
  }
}

.intro {
  padding: 100px 0 32px;
}

@media (width <= 1480px) {
  .intro {
    padding: 80px 0 32px;
  }
}

@media (width <= 1200px) {
  .intro {
    padding: 60px 0 12px;
  }
}

@media (width <= 1023px) {
  .intro {
    padding: 50px 0 12px;
  }
}

.intro .container {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: start;
  display: flex;
}

@media (width >= 1460px) {
  .intro .container {
    max-width: 1170px;
  }
}

@media (width <= 767px) {
  .intro .container {
    display: block;
  }
}

.intro__headline {
  width: 45%;
}

@media (width <= 767px) {
  .intro__headline {
    width: 100%;
    margin-bottom: 12px;
  }
}

.intro__content {
  width: 50%;
}

@media (width <= 767px) {
  .intro__content {
    width: 100%;
  }
}

.intro__content p {
  margin-bottom: 32px;
}

.intro__video {
  max-width: 1170px;
  margin: 32px auto 0;
}

@media (width <= 1200px) {
  .intro__video {
    max-width: 90%;
  }
}

@media (width <= 1023px) {
  .intro__video {
    margin-top: 16px;
  }
}

.intro__video img {
  object-fit: cover;
  border-radius: var(--radius-xxl);
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

@media (width <= 767px) {
  .intro__video img {
    border-radius: var(--radius-xl);
    height: 240px;
  }
}

.features {
  padding-bottom: 120px;
}

@media (width <= 1480px) {
  .features {
    padding-bottom: 100px;
  }
}

@media (width <= 1400px) {
  .features {
    padding-bottom: 80px;
  }
}

@media (width <= 1200px) {
  .features {
    padding-bottom: 60px;
  }
}

@media (width <= 1023px) {
  .features {
    padding-bottom: 32px;
  }

  .features .feature {
    margin-bottom: 24px;
  }
}

@media (width <= 767px) {
  .features .feature {
    text-align: center;
  }
}

.features .feature__icon {
  margin-bottom: 24px;
}

@media (width <= 1480px) {
  .features .feature__icon {
    margin-bottom: 16px;
  }
}

.features .feature__icon img {
  width: 64px;
}

@media (width <= 1200px) {
  .features .feature__icon img {
    width: 48px;
  }
}

.features .feature__text h3 {
  color: var(--blue);
  margin-bottom: 12px;
  font-size: 28px;
}

@media (width <= 1480px) {
  .features .feature__text h3 {
    font-size: 24px;
  }
}

@media (width <= 1200px) {
  .features .feature__text h3 {
    margin-bottom: 6px;
    font-size: 22px;
  }
}

.features .feature__text p {
  max-width: 90%;
}

@media (width <= 1480px) {
  .features .feature__text p {
    max-width: 100%;
  }
}

.founders {
  margin-bottom: 80px;
}

@media (width <= 1200px) {
  .founders {
    margin-bottom: 60px;
  }
}

@media (width <= 767px) {
  .founders {
    margin-bottom: 50px;
  }
}

.founders header h3 strong {
  color: var(--blue);
}

.founders__wrapper {
  border-radius: var(--radius-xxl);
  background-color: var(--gray-pale);
  padding: 80px;
}

@media (width <= 1480px) {
  .founders__wrapper {
    padding: 48px;
  }
}

@media (width <= 767px) {
  .founders__wrapper {
    border-radius: var(--radius-xl);
    padding: 32px;
  }
}

.founders__list {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: start;
  display: flex;
}

@media (width <= 1200px) {
  .founders__list {
    display: block;
  }
}

.founders__list .founder {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: start;
  width: 50%;
  display: flex;
}

@media (width <= 1200px) {
  .founders__list .founder {
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-bottom: 32px;
    display: flex;
  }
}

@media (width <= 767px) {
  .founders__list .founder {
    display: block;
  }
}

@media (width <= 1200px) {
  .founders__list .founder:last-child {
    margin-bottom: 0;
  }
}

.founders__list .founder__photo {
  width: 35%;
}

@media (width <= 1023px) {
  .founders__list .founder__photo {
    width: 40%;
  }
}

@media (width <= 767px) {
  .founders__list .founder__photo {
    width: 100%;
    margin-bottom: 12px;
  }
}

.founders__list .founder__photo img {
  object-fit: cover;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 100%;
  height: 340px;
  display: block;
}

@media (width <= 767px) {
  .founders__list .founder__photo img {
    height: 280px;
  }
}

.founders__list .founder__meta {
  flex: 1;
  padding-top: 16px;
  padding-left: 32px;
  padding-right: 32px;
}

@media (width <= 1023px) {
  .founders__list .founder__meta {
    padding-right: 12px;
  }
}

@media (width <= 767px) {
  .founders__list .founder__meta {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

.founders__list .founder__meta p {
  font-size: 20px;
}

@media (width <= 1480px) {
  .founders__list .founder__meta p {
    font-size: 18px;
  }
}

.founders__list .founder__name {
  color: var(--dark);
  font-size: 28px;
  font-family: var(--font-heading-semi);
  margin-bottom: 6px;
  display: block;
}

.founders__list .founder small {
  margin-bottom: 12px;
  font-size: 16px;
  display: block;
}

.values {
  margin-bottom: 100px;
}

@media (width <= 1400px) {
  .values {
    margin-bottom: 80px;
  }
}

@media (width <= 1200px) {
  .values {
    margin-bottom: 60px;
  }
}

.values__wrapper {
  border-radius: var(--radius-xxl);
  background-color: var(--green-pale);
  padding: 80px 80px 40px;
}

@media (width <= 1200px) {
  .values__wrapper {
    padding: 64px 64px 32px;
  }
}

@media (width <= 1023px) {
  .values__wrapper {
    padding: 48px 32px 8px;
  }
}

@media (width <= 767px) {
  .values__wrapper {
    border-radius: var(--radius-xl);
    padding: 32px 32px 12px;
  }
}

.values .section-header {
  padding-top: 0;
}

.values__list .value {
  text-align: center;
  background-color: var(--green-light);
  border-radius: var(--radius-xl);
  margin-bottom: 48px;
  padding: 48px 0 64px;
}

@media (width <= 1200px) {
  .values__list .value {
    margin-bottom: 32px;
  }
}

@media (width <= 1023px) {
  .values__list .value {
    margin-bottom: 24px;
  }
}

@media (width <= 767px) {
  .values__list .value {
    margin-bottom: 16px;
    padding: 24px;
  }
}

.values__list .value__icon {
  border-radius: var(--radius-full);
  background-color: var(--green);
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 124px;
  height: 124px;
  margin: 0 auto 32px;
  display: flex;
  box-shadow: 0 10px 36px #00000029, 0 0 0 1px #0000000f;
}

@media (width <= 1480px) {
  .values__list .value__icon {
    width: 100px;
    height: 100px;
  }
}

@media (width <= 1023px) {
  .values__list .value__icon {
    width: 88px;
    height: 88px;
    margin-bottom: 24px;
  }
}

.values__list .value__icon img {
  width: 64px;
}

@media (width <= 1480px) {
  .values__list .value__icon img {
    width: 48px;
  }
}

@media (width <= 1023px) {
  .values__list .value__icon img {
    width: 42px;
  }
}

.values__list .value p {
  max-width: 320px;
  color: var(--dark);
  font-size: 24px;
  font-family: var(--font-heading-med);
  line-height: var(--lh-tight);
  margin: 0 auto;
}

@media (width <= 1200px) {
  .values__list .value p {
    font-size: 22px;
  }
}

@media (width <= 1023px) {
  .values__list .value p {
    max-width: 240px;
  }
}

.values__blocks {
  margin-bottom: 32px;
}

.values__block {
  background-color: var(--green-light);
  border-radius: var(--radius-xl);
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 32px;
  display: flex;
}

@media (width <= 1023px) {
  .values__block {
    padding: 24px;
  }
}

@media (width <= 767px) {
  .values__block {
    display: block;
  }
}

.values__photo {
  width: 48%;
}

@media (width <= 767px) {
  .values__photo {
    width: 100%;
  }
}

.values__photo img {
  object-fit: cover;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

@media (width <= 1023px) {
  .values__photo img {
    height: 320px;
  }
}

@media (width <= 767px) {
  .values__photo img {
    height: 240px;
  }
}

.values__content {
  flex: 1;
  padding-left: 48px;
}

@media (width <= 1023px) {
  .values__content {
    padding-left: 32px;
  }
}

@media (width <= 767px) {
  .values__content {
    padding-top: 24px;
    padding-left: 0;
  }
}

.values__content p {
  font-size: 32px;
  font-family: var(--font-heading-med);
  color: var(--dark);
  line-height: var(--lh-tight);
}

@media (width <= 1480px) {
  .values__content p {
    font-size: 28px;
  }
}

@media (width <= 1200px) {
  .values__content p {
    font-size: 26px;
  }
}

@media (width <= 1023px) {
  .values__content p {
    font-size: 24px;
  }
}

@media (width <= 767px) {
  .values__content p {
    font-size: 22px;
  }
}

.articles {
  padding: 64px 0;
}

@media (width <= 1480px) {
  .articles {
    padding: 48px 0;
  }
}

.articles__cats {
  margin-bottom: 48px;
}

@media (width <= 1480px) {
  .articles__cats {
    margin-bottom: 32px;
  }
}

@media (width <= 1400px) {
  .articles__cats {
    margin-bottom: 24px;
  }
}

.articles__cats ul {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.articles__cats ul li {
  margin-right: 12px;
}

@media (width <= 1480px) {
  .articles__cats ul li {
    margin-bottom: 6px;
    margin-right: 6px;
  }
}

.articles__cats ul li a {
  background-color: var(--green-pale);
  border-radius: var(--radius-full);
  height: 44px;
  color: var(--dark);
  font-size: 18px;
  line-height: 44px;
  font-family: var(--font-medium);
  padding: 0 24px;
  transition: all .25s ease-in-out;
  display: inline-block;
}

@media (width <= 1480px) {
  .articles__cats ul li a {
    height: 40px;
    padding: 0 16px;
    line-height: 40px;
  }
}

@media (width <= 1400px) {
  .articles__cats ul li a {
    font-size: 16px;
  }
}

@media (width <= 1023px) {
  .articles__cats ul li a {
    height: 36px;
    padding: 0 12px;
    font-size: 16px;
    line-height: 36px;
  }
}

.articles__cats ul li a:hover {
  background-color: var(--green-light);
  color: var(--green);
}

.articles__list .article {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 48px;
  display: flex;
}

@media (width <= 1400px) {
  .articles__list .article {
    margin-bottom: 32px;
  }
}

@media (width <= 1023px) {
  .articles__list .article {
    display: block;
  }
}

.articles__list .article__photo {
  border-radius: var(--radius-xl);
  width: 330px;
  overflow: hidden;
}

@media (width <= 1480px) {
  .articles__list .article__photo {
    width: 300px;
  }
}

@media (width <= 1400px) {
  .articles__list .article__photo {
    width: 240px;
  }
}

@media (width <= 1023px) {
  .articles__list .article__photo {
    width: 100%;
    margin-bottom: 24px;
  }
}

.articles__list .article__photo img {
  object-fit: cover;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 100%;
  height: 340px;
  transition: all .25s ease-in-out;
  display: block;
}

@media (width <= 1480px) {
  .articles__list .article__photo img {
    height: 300px;
  }
}

@media (width <= 1023px) {
  .articles__list .article__photo img {
    height: 240px;
  }
}

.articles__list .article__photo:hover img {
  transform: scale(1.1);
}

.articles__list .article__text {
  flex: 1;
  padding-left: 32px;
}

@media (width <= 1023px) {
  .articles__list .article__text {
    padding-left: 0;
  }
}

.articles__list .article__text h3 {
  margin-bottom: 12px;
  font-size: 32px;
}

@media (width <= 1480px) {
  .articles__list .article__text h3 {
    font-size: 30px;
  }
}

@media (width <= 1400px) {
  .articles__list .article__text h3 {
    margin-bottom: 6px;
    font-size: 26px;
  }
}

.articles__list .article__text h3 a {
  color: var(--dark);
}

.articles__list .article__text h3 a:hover {
  color: var(--green);
  text-decoration: underline;
}

.articles__trending ul li {
  margin-bottom: 32px;
}

@media (width <= 767px) {
  .articles__trending ul li {
    margin-bottom: 16px;
  }
}

.articles__trending ul li a {
  border: 1px solid var(--gray);
  border-radius: var(--radius-xl);
  font-size: 24px;
  font-family: var(--font-heading-semi);
  color: var(--gray);
  line-height: var(--lh-small);
  padding: 48px;
  transition: all .25s ease-in-out;
  display: block;
}

@media (width <= 1480px) {
  .articles__trending ul li a {
    padding: 32px;
  }
}

@media (width <= 1023px) {
  .articles__trending ul li a {
    padding: 24px;
    font-size: 22px;
  }
}

.articles__trending ul li a:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.articles__trending ul li:first-child a {
  background-color: var(--blue);
  color: var(--white);
}

.articles__trending ul li:first-child a:hover {
  background-color: var(--green);
  border-color: var(--green);
}

.blog-single__content {
  max-width: 924px;
  margin: 0 auto;
  padding-bottom: 80px;
}

@media (width <= 1480px) {
  .blog-single__content {
    max-width: 820px;
  }
}

@media (width <= 1400px) {
  .blog-single__content {
    max-width: 680px;
  }
}

@media (width <= 1023px) {
  .blog-single__content {
    max-width: 620px;
    padding-bottom: 64px;
  }
}

@media (width <= 767px) {
  .blog-single__content {
    padding-bottom: 40px;
  }
}

.blog-single__content .wp-block-image {
  margin-bottom: 32px;
}

.blog-single__content .wp-block-image img {
  border-radius: var(--radius-xxl);
}

.blog-single__content p {
  margin-bottom: 24px;
}

@media (width <= 767px) {
  .blog-single__content p {
    margin-bottom: 16px;
  }
}

.blog-single__content h2 {
  margin-bottom: 32px;
}

@media (width <= 767px) {
  .blog-single__content h2 {
    margin-bottom: 28px;
  }
}

.blog-single__content h3 {
  margin-bottom: 24px;
}

@media (width <= 767px) {
  .blog-single__content h3 {
    margin-bottom: 22px;
  }
}

.blog-single__content h4 {
  margin-bottom: 20px;
}

.blog-single__content ul {
  margin-bottom: 32px;
  list-style: inside;
}

@media (width <= 767px) {
  .blog-single__content ul {
    margin-bottom: 24px;
  }
}

.blog-single__content ul li {
  font-size: 22px;
  line-height: var(--lh-normal);
  color: var(--gray);
}

@media (width <= 1480px) {
  .blog-single__content ul li {
    font-size: 20px;
  }
}

@media (width <= 1023px) {
  .blog-single__content ul li {
    font-size: 18px;
  }
}

.blog-single__content ul li a {
  font-family: var(--font-semi);
  color: var(--green-dark);
  text-decoration: underline;
}

.blog-single__content ul li a:hover {
  color: var(--green);
  text-decoration: none;
}

.blog-related {
  padding: 0 0 80px;
}

@media (width <= 1200px) {
  .blog-related {
    padding: 0 0 64px;
  }
}

.blog-related .row > [class*="col-"] {
  display: flex;
}

@media (width <= 1023px) {
  .blog-related .row > [class*="col-"]:last-child {
    display: none;
  }
}

.blog-related .article {
  background-color: var(--gray-pale);
  border-radius: var(--radius-xxl);
  flex-direction: column;
  flex: 1;
  padding: 32px;
  display: flex;
}

@media (width <= 767px) {
  .blog-related .article {
    margin-bottom: 16px;
    padding: 24px;
  }
}

.blog-related .article__photo {
  border-radius: var(--radius-xl);
  margin-bottom: 24px;
  overflow: hidden;
}

.blog-related .article__photo img {
  object-fit: cover;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 100%;
  height: 240px;
  transition: all .25s ease-in-out;
  display: block;
}

@media (width <= 1400px) {
  .blog-related .article__photo img {
    height: 200px;
  }
}

@media (width <= 1200px) {
  .blog-related .article__photo img {
    height: 160px;
  }
}

.blog-related .article__photo:hover img {
  transform: scale(1.1);
}

.blog-related .article__text h3 {
  margin-bottom: 12px;
  font-size: 32px;
}

@media (width <= 1480px) {
  .blog-related .article__text h3 {
    font-size: 30px;
  }
}

@media (width <= 1400px) {
  .blog-related .article__text h3 {
    margin-bottom: 6px;
    font-size: 26px;
  }
}

.blog-related .article__text h3 a {
  color: var(--dark);
}

.blog-related .article__text h3 a:hover {
  color: var(--green);
  text-decoration: underline;
}

.videos {
  padding: 64px 0;
}

@media (width <= 1480px) {
  .videos {
    padding: 48px 0;
  }
}

.videos__list .col-lg-4 {
  display: flex;
}

.videos .podcast {
  background-color: var(--blue-light);
  border-radius: var(--radius-xxl);
  flex-flow: column wrap;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 48px;
  padding: 24px 24px 32px;
  display: flex;
}

@media (width <= 1400px) {
  .videos .podcast {
    margin-bottom: 32px;
  }
}

@media (width <= 1023px) {
  .videos .podcast {
    display: block;
  }
}

.videos .podcast__photo {
  border-radius: var(--radius-xl);
  width: 100%;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

@media (width <= 1023px) {
  .videos .podcast__photo {
    margin-bottom: 16px;
  }
}

.videos .podcast__photo img.img-responsive {
  object-fit: cover;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 100%;
  height: 240px;
  transition: all .25s ease-in-out;
  display: block;
}

@media (width <= 1480px) {
  .videos .podcast__photo img.img-responsive {
    height: 200px;
  }
}

@media (width <= 1023px) {
  .videos .podcast__photo img.img-responsive {
    height: 180px;
  }
}

.videos .podcast__photo:hover img.img-responsive {
  transform: scale(1.1);
}

.videos .podcast__icon {
  width: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.videos .podcast__time {
  text-transform: uppercase;
  color: var(--gray-med);
  margin-bottom: 12px;
  font-size: 14px;
  display: block;
}

.videos .podcast__meta {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.videos .podcast__meta img {
  width: 16px;
  margin-right: 6px;
}

.videos .podcast__rating {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 12px;
  display: flex;
}

.videos .podcast__rating span {
  margin-right: 4px;
}

.videos .podcast__text {
  width: 100%;
}

.videos .podcast__text h3 {
  margin-bottom: 12px;
  font-size: 32px;
}

@media (width <= 1480px) {
  .videos .podcast__text h3 {
    font-size: 30px;
  }
}

@media (width <= 1400px) {
  .videos .podcast__text h3 {
    margin-bottom: 6px;
    font-size: 26px;
  }
}

.videos .podcast__text h3 a {
  color: var(--dark);
}

.videos .podcast__text h3 a:hover {
  color: var(--green);
  text-decoration: underline;
}
/*# sourceMappingURL=main.css.map */
