:root {
  --swiper-theme-color: #007aff;
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(
    --swiper-wrapper-transition-timing-function,
    initial
  );
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translateZ(0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper:before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal
  > .swiper-wrapper
  > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper:before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical
  > .swiper-wrapper
  > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper:before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: #00000026;
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, #00000080, #0000);
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, #00000080, #0000);
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, #00000080, #0000);
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, #00000080, #0000);
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper:after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper:after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  width: var(--swiper-navigation-size);
  height: var(--swiper-navigation-size);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}

.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  transform-origin: center;
  fill: currentColor;
  pointer-events: none;
}

.swiper-button-lock {
  display: none;
}

.swiper-button-prev,
.swiper-button-next {
  top: var(--swiper-navigation-top-offset, 50%);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
}

.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
}

.swiper-button-prev .swiper-navigation-icon {
  transform: rotate(180deg);
}

.swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 4px);
  left: auto;
}

.swiper-horizontal .swiper-button-prev,
.swiper-horizontal .swiper-button-next,
.swiper-horizontal ~ .swiper-button-prev,
.swiper-horizontal ~ .swiper-button-next {
  top: var(--swiper-navigation-top-offset, 50%);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  margin-left: 0;
}

.swiper-horizontal .swiper-button-prev,
.swiper-horizontal ~ .swiper-button-prev,
.swiper-horizontal.swiper-rtl .swiper-button-next,
.swiper-horizontal.swiper-rtl ~ .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
}

.swiper-horizontal .swiper-button-next,
.swiper-horizontal ~ .swiper-button-next,
.swiper-horizontal.swiper-rtl .swiper-button-prev,
.swiper-horizontal.swiper-rtl ~ .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 4px);
  left: auto;
}

.swiper-horizontal .swiper-button-prev .swiper-navigation-icon,
.swiper-horizontal ~ .swiper-button-prev .swiper-navigation-icon,
.swiper-horizontal.swiper-rtl .swiper-button-next .swiper-navigation-icon,
.swiper-horizontal.swiper-rtl ~ .swiper-button-next .swiper-navigation-icon {
  transform: rotate(180deg);
}

.swiper-horizontal.swiper-rtl .swiper-button-prev .swiper-navigation-icon,
.swiper-horizontal.swiper-rtl ~ .swiper-button-prev .swiper-navigation-icon {
  transform: rotate(0);
}

.swiper-vertical .swiper-button-prev,
.swiper-vertical .swiper-button-next,
.swiper-vertical ~ .swiper-button-prev,
.swiper-vertical ~ .swiper-button-next {
  left: var(--swiper-navigation-top-offset, 50%);
  right: auto;
  margin-left: calc(0px - var(--swiper-navigation-size) / 2);
  margin-top: 0;
}

.swiper-vertical .swiper-button-prev,
.swiper-vertical ~ .swiper-button-prev {
  top: var(--swiper-navigation-sides-offset, 4px);
  bottom: auto;
}

.swiper-vertical .swiper-button-prev .swiper-navigation-icon,
.swiper-vertical ~ .swiper-button-prev .swiper-navigation-icon {
  transform: rotate(-90deg);
}

.swiper-vertical .swiper-button-next,
.swiper-vertical ~ .swiper-button-next {
  bottom: var(--swiper-navigation-sides-offset, 4px);
  top: auto;
}

.swiper-vertical .swiper-button-next .swiper-navigation-icon,
.swiper-vertical ~ .swiper-button-next .swiper-navigation-icon {
  transform: rotate(90deg);
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translateZ(0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(
    --swiper-pagination-bullet-width,
    var(--swiper-pagination-bullet-size, 8px)
  );
  height: var(
    --swiper-pagination-bullet-height,
    var(--swiper-pagination-bullet-size, 8px)
  );
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0, -50%, 0);
}

.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  display: inline-block;
  transition:
    0.2s transform,
    0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translate(-50%);
  white-space: nowrap;
}

.swiper-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  transition:
    0.2s transform,
    0.2s left;
}

.swiper-horizontal.swiper-rtl
  > .swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  transition:
    0.2s transform,
    0.2s right;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(
    --swiper-pagination-progressbar-bg-color,
    rgba(0, 0, 0, 0.25)
  );
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-vertical > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-vertical {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  backface-visibility: hidden;
  overflow: hidden;
}

.vbox-overlay {
  --vbox-tools-color: #fff;
  --vbox-title-background: #101010;
  --vbox-title-width: "auto";
  --vbox-title-radius: 0;
  --vbox-share-background: #101010;
  --vbox-share-width: "auto";
  --vbox-share-radius: 0;
  --vbox-padding: 0;
  --vbox-max-width: 100%;
}

.vbox-overlay *,
.vbox-overlay :after,
.vbox-overlay :before {
  -webkit-backface-visibility: hidden;
  box-sizing: border-box;
}

.vbox-overlay * {
  backface-visibility: visible;
}

.vbox-overlay {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 999999;
}

.vbox-share,
.vbox-title {
  line-height: 1;
  position: fixed;
  z-index: 98;
  text-align: center;
  margin: 0 auto;
  color: var(--vbox-tools-color);
}

.vbox-title {
  font-size: 12px;
  background-color: var(--vbox-title-background);
  width: var(--vbox-title-width);
  border-radius: var(--vbox-title-radius);
  padding: 12px 54px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.vbox-share {
  font-size: 24px;
  padding: 0 0.35em;
  background-color: var(--vbox-share-background);
  width: var(--vbox-share-width);
  border-radius: var(--vbox-share-radius);
}

.vbox-link-btn,
button.vbox-link-btn,
button.vbox-link-btn:active,
button.vbox-link-btn:focus,
button.vbox-link-btn:hover {
  border: none !important;
  background: 0 0 !important;
  box-shadow: none !important;
  color: inherit !important;
  padding: 6px 12px;
  outline: 0;
  display: inline-block;
  cursor: pointer;
}

.vbox-share a {
  color: inherit !important;
  padding: 6px 12px;
  display: inline-block;
}

.vbox-share svg {
  z-index: 10;
  vertical-align: middle;
}

.vbox-close {
  cursor: pointer;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99;
  padding: 6px 15px;
  color: #000;
  color: var(--vbox-tools-color);
  border: 0;
  font-size: 24px;
  display: flex;
  align-items: center;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.vbox-close:hover {
  opacity: 1;
}

.vbox-left-corner {
  cursor: pointer;
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  line-height: 1;
  font-size: 12px;
  z-index: 99;
  display: flex;
  align-items: center;
  color: var(--vbox-tools-color);
}

.vbox-num {
  display: inline-block;
  padding: 12px 15px;
}

.vbox-left {
  left: 0;
}

.vbox-right {
  right: 0;
}

.vbox-top {
  top: 0;
}

.vbox-bottom {
  bottom: 0;
}

.vbox-next,
.vbox-prev {
  position: fixed;
  top: 50%;
  margin-top: -15px;
  overflow: hidden;
  cursor: pointer;
  display: block;
  width: 45px;
  height: 45px;
  z-index: 99;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.vbox-next:hover,
.vbox-prev:hover {
  opacity: 1;
}

.vbox-next span,
.vbox-prev span {
  position: relative;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top-color: var(--vbox-tools-color);
  border-right-color: var(--vbox-tools-color);
  text-indent: -100px;
  position: absolute;
  top: 8px;
  display: block;
}

.vbox-prev {
  left: 15px;
}

.vbox-next {
  right: 15px;
}

.vbox-prev span {
  left: 10px;
  transform: rotate(-135deg);
}

.vbox-next span {
  transform: rotate(45deg);
  right: 10px;
}

.vbox-open {
  overflow: hidden;
}

.vbox-container {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow-x: hidden;
  overflow-y: scroll;
  overflow-scrolling: touch;
  -webkit-overflow-scrolling: touch;
  z-index: 20;
  max-height: 100%;
  padding: 30px 0;
}

.vbox-content {
  opacity: 0;
  text-align: center;
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 0 4%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}

.vbox-container img {
  max-width: 100%;
  height: auto;
}

.vbox-child {
  box-shadow:
    0 0 12px #00000030,
    0 6px 6px #0000003b;
  max-width: var(--vbox-max-width);
  text-align: initial;
  padding: var(--vbox-padding);
}

.vbox-child img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  display: block;
}

.vbox-fit .vbox-child img,
.vbox-fit .vbox-child.venoratio {
  max-height: calc(100vh - 60px);
}

.vbox-inline,
.venoratio {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.venoratio:before {
  display: block;
  padding-top: var(--vb-aspect-ratio);
  content: "";
}

.venoratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: var(--vbox-padding);
}

.venoratio-1x1 {
  --vb-aspect-ratio: 100%;
  max-width: min(var(--vbox-max-width), 100vh - 60px);
}

.venoratio-4x3.vbox-child.venoratio {
  --vb-aspect-ratio: 75%;
  max-width: min(var(--vbox-max-width), (100vh - 60px) * 4 / 3);
}

.venoratio-16x9.vbox-child.venoratio {
  --vb-aspect-ratio: 56.25%;
  max-width: min(var(--vbox-max-width), (100vh - 60px) * 16 / 9);
}

.venoratio-21x9.vbox-child.venoratio {
  --vb-aspect-ratio: calc(9 / 21 * 100%);
  max-width: min(var(--vbox-max-width), (100vh - 60px) * 21 / 9);
}

.venoratio-full {
  --vb-aspect-ratio: calc(100vh - 60px);
}

.vbox-grab .vbox-child img {
  cursor: grab;
}

.vbox-child > iframe {
  border: none !important;
}

.vbox-content.swipe-left {
  margin-left: -200px !important;
}

.vbox-content.swipe-right {
  margin-left: 200px !important;
}

.vbox-preloader {
  transform: translateZ(0);
}

.vbox-preloader .vbox-preloader-inner {
  opacity: 1;
  transition: opacity 0.2s;
}

.vbox-hidden {
  display: none;
}

.vbox-preloader.vbox-hidden .vbox-preloader-inner {
  opacity: 0;
}

.vbox-backdrop {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: translateZ(-1px);
  z-index: 0;
}

.vbox-tooltip {
  position: relative;
  display: inline-block;
}

.vbox-tooltip .vbox-tooltip-text {
  visibility: hidden;
  color: #fff;
  text-align: center;
  padding: 0;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s;
  margin-bottom: 2px;
  font-family: sans-serif;
}

.vbox-top .vbox-tooltip .vbox-tooltip-text {
  bottom: auto;
  top: 100%;
  margin-bottom: 0;
  margin-top: 2px;
}

.vbox-tooltip-inner {
  padding: 5px 10px;
  background-color: #000000e6;
  border-radius: 6px;
  font-size: 10px;
}

.vbox-tooltip:hover .vbox-tooltip-text {
  visibility: visible;
  opacity: 1;
}

.vbox-overlay {
  --sk-size: 40px;
  --sk-color: #333;
}

.sk-center {
  margin: auto;
}

.sk-plane {
  width: var(--sk-size);
  height: var(--sk-size);
  background-color: var(--sk-color);
  animation: sk-plane 1.2s infinite ease-in-out;
}

@keyframes sk-plane {
  0% {
    transform: perspective(120px) rotateX(0) rotateY(0);
  }

  50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0);
  }

  to {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}

.sk-chase {
  width: var(--sk-size);
  height: var(--sk-size);
  position: relative;
  animation: sk-chase 2.5s infinite linear both;
}

.sk-chase-dot {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  animation: sk-chase-dot 2s infinite ease-in-out both;
}

.sk-chase-dot:before {
  content: "";
  display: block;
  width: 25%;
  height: 25%;
  background-color: var(--sk-color);
  border-radius: 100%;
  animation: sk-chase-dot-before 2s infinite ease-in-out both;
}

.sk-chase-dot:nth-child(1) {
  animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2) {
  animation-delay: -1s;
}

.sk-chase-dot:nth-child(3) {
  animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4) {
  animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5) {
  animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6) {
  animation-delay: -0.6s;
}

.sk-chase-dot:nth-child(1):before {
  animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2):before {
  animation-delay: -1s;
}

.sk-chase-dot:nth-child(3):before {
  animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4):before {
  animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5):before {
  animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6):before {
  animation-delay: -0.6s;
}

@keyframes sk-chase {
  to {
    transform: rotate(360deg);
  }
}

@keyframes sk-chase-dot {
  to,
  80% {
    transform: rotate(360deg);
  }
}

@keyframes sk-chase-dot-before {
  50% {
    transform: scale(0.4);
  }

  0%,
  to {
    transform: scale(1);
  }
}

.sk-bounce {
  width: var(--sk-size);
  height: var(--sk-size);
  position: relative;
}

.sk-bounce-dot {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--sk-color);
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  animation: sk-bounce 2s infinite cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.sk-bounce-dot:nth-child(2) {
  animation-delay: -1s;
}

@keyframes sk-bounce {
  0%,
  to {
    transform: scale(0);
  }

  45%,
  55% {
    transform: scale(1);
  }
}

.sk-wave {
  width: var(--sk-size);
  height: var(--sk-size);
  display: flex;
  justify-content: space-between;
}

.sk-wave-rect {
  background-color: var(--sk-color);
  height: 100%;
  width: 15%;
  animation: sk-wave 1.2s infinite ease-in-out;
}

.sk-wave-rect:nth-child(1) {
  animation-delay: -1.2s;
}

.sk-wave-rect:nth-child(2) {
  animation-delay: -1.1s;
}

.sk-wave-rect:nth-child(3) {
  animation-delay: -1s;
}

.sk-wave-rect:nth-child(4) {
  animation-delay: -0.9s;
}

.sk-wave-rect:nth-child(5) {
  animation-delay: -0.8s;
}

@keyframes sk-wave {
  0%,
  to,
  40% {
    transform: scaleY(0.4);
  }

  20% {
    transform: scaleY(1);
  }
}

.sk-pulse {
  width: var(--sk-size);
  height: var(--sk-size);
  background-color: var(--sk-color);
  border-radius: 100%;
  animation: sk-pulse 1.2s infinite cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

@keyframes sk-pulse {
  0% {
    transform: scale(0);
  }

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

.sk-flow {
  width: calc(var(--sk-size) * 1.3);
  height: calc(var(--sk-size) * 1.3);
  display: flex;
  justify-content: space-between;
}

.sk-flow-dot {
  width: 25%;
  height: 25%;
  background-color: var(--sk-color);
  border-radius: 50%;
  animation: sk-flow 1.4s cubic-bezier(0.455, 0.03, 0.515, 0.955) 0s infinite
    both;
}

.sk-flow-dot:nth-child(1) {
  animation-delay: -0.3s;
}

.sk-flow-dot:nth-child(2) {
  animation-delay: -0.15s;
}

@keyframes sk-flow {
  0%,
  to,
  80% {
    transform: scale(0.3);
  }

  40% {
    transform: scale(1);
  }
}

.sk-swing {
  width: var(--sk-size);
  height: var(--sk-size);
  position: relative;
  animation: sk-swing 1.8s infinite linear;
}

.sk-swing-dot {
  width: 45%;
  height: 45%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: var(--sk-color);
  border-radius: 100%;
  animation: sk-swing-dot 2s infinite ease-in-out;
}

.sk-swing-dot:nth-child(2) {
  top: auto;
  bottom: 0;
  animation-delay: -1s;
}

@keyframes sk-swing {
  to {
    transform: rotate(360deg);
  }
}

@keyframes sk-swing-dot {
  0%,
  to {
    transform: scale(0.2);
  }

  50% {
    transform: scale(1);
  }
}

.sk-circle {
  width: var(--sk-size);
  height: var(--sk-size);
  position: relative;
}

.sk-circle-dot {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.sk-circle-dot:before {
  content: "";
  display: block;
  width: 15%;
  height: 15%;
  background-color: var(--sk-color);
  border-radius: 100%;
  animation: sk-circle 1.2s infinite ease-in-out both;
}

.sk-circle-dot:nth-child(1) {
  transform: rotate(30deg);
}

.sk-circle-dot:nth-child(2) {
  transform: rotate(60deg);
}

.sk-circle-dot:nth-child(3) {
  transform: rotate(90deg);
}

.sk-circle-dot:nth-child(4) {
  transform: rotate(120deg);
}

.sk-circle-dot:nth-child(5) {
  transform: rotate(150deg);
}

.sk-circle-dot:nth-child(6) {
  transform: rotate(180deg);
}

.sk-circle-dot:nth-child(7) {
  transform: rotate(210deg);
}

.sk-circle-dot:nth-child(8) {
  transform: rotate(240deg);
}

.sk-circle-dot:nth-child(9) {
  transform: rotate(270deg);
}

.sk-circle-dot:nth-child(10) {
  transform: rotate(300deg);
}

.sk-circle-dot:nth-child(11) {
  transform: rotate(330deg);
}

.sk-circle-dot:nth-child(1):before {
  animation-delay: -1.1s;
}

.sk-circle-dot:nth-child(2):before {
  animation-delay: -1s;
}

.sk-circle-dot:nth-child(3):before {
  animation-delay: -0.9s;
}

.sk-circle-dot:nth-child(4):before {
  animation-delay: -0.8s;
}

.sk-circle-dot:nth-child(5):before {
  animation-delay: -0.7s;
}

.sk-circle-dot:nth-child(6):before {
  animation-delay: -0.6s;
}

.sk-circle-dot:nth-child(7):before {
  animation-delay: -0.5s;
}

.sk-circle-dot:nth-child(8):before {
  animation-delay: -0.4s;
}

.sk-circle-dot:nth-child(9):before {
  animation-delay: -0.3s;
}

.sk-circle-dot:nth-child(10):before {
  animation-delay: -0.2s;
}

.sk-circle-dot:nth-child(11):before {
  animation-delay: -0.1s;
}

@keyframes sk-circle {
  0%,
  to,
  80% {
    transform: scale(0);
  }

  40% {
    transform: scale(1);
  }
}

.sk-circle-fade {
  width: var(--sk-size);
  height: var(--sk-size);
  position: relative;
}

.sk-circle-fade-dot {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.sk-circle-fade-dot:before {
  content: "";
  display: block;
  width: 15%;
  height: 15%;
  background-color: var(--sk-color);
  border-radius: 100%;
  animation: sk-circle-fade 1.2s infinite ease-in-out both;
}

.sk-circle-fade-dot:nth-child(1) {
  transform: rotate(30deg);
}

.sk-circle-fade-dot:nth-child(2) {
  transform: rotate(60deg);
}

.sk-circle-fade-dot:nth-child(3) {
  transform: rotate(90deg);
}

.sk-circle-fade-dot:nth-child(4) {
  transform: rotate(120deg);
}

.sk-circle-fade-dot:nth-child(5) {
  transform: rotate(150deg);
}

.sk-circle-fade-dot:nth-child(6) {
  transform: rotate(180deg);
}

.sk-circle-fade-dot:nth-child(7) {
  transform: rotate(210deg);
}

.sk-circle-fade-dot:nth-child(8) {
  transform: rotate(240deg);
}

.sk-circle-fade-dot:nth-child(9) {
  transform: rotate(270deg);
}

.sk-circle-fade-dot:nth-child(10) {
  transform: rotate(300deg);
}

.sk-circle-fade-dot:nth-child(11) {
  transform: rotate(330deg);
}

.sk-circle-fade-dot:nth-child(1):before {
  animation-delay: -1.1s;
}

.sk-circle-fade-dot:nth-child(2):before {
  animation-delay: -1s;
}

.sk-circle-fade-dot:nth-child(3):before {
  animation-delay: -0.9s;
}

.sk-circle-fade-dot:nth-child(4):before {
  animation-delay: -0.8s;
}

.sk-circle-fade-dot:nth-child(5):before {
  animation-delay: -0.7s;
}

.sk-circle-fade-dot:nth-child(6):before {
  animation-delay: -0.6s;
}

.sk-circle-fade-dot:nth-child(7):before {
  animation-delay: -0.5s;
}

.sk-circle-fade-dot:nth-child(8):before {
  animation-delay: -0.4s;
}

.sk-circle-fade-dot:nth-child(9):before {
  animation-delay: -0.3s;
}

.sk-circle-fade-dot:nth-child(10):before {
  animation-delay: -0.2s;
}

.sk-circle-fade-dot:nth-child(11):before {
  animation-delay: -0.1s;
}

@keyframes sk-circle-fade {
  0%,
  to,
  39% {
    opacity: 0;
    transform: scale(0.6);
  }

  40% {
    opacity: 1;
    transform: scale(1);
  }
}

.sk-grid {
  width: var(--sk-size);
  height: var(--sk-size);
}

.sk-grid-cube {
  width: 33.33%;
  height: 33.33%;
  background-color: var(--sk-color);
  float: left;
  animation: sk-grid 1.3s infinite ease-in-out;
}

.sk-grid-cube:nth-child(1) {
  animation-delay: 0.2s;
}

.sk-grid-cube:nth-child(2) {
  animation-delay: 0.3s;
}

.sk-grid-cube:nth-child(3) {
  animation-delay: 0.4s;
}

.sk-grid-cube:nth-child(4) {
  animation-delay: 0.1s;
}

.sk-grid-cube:nth-child(5) {
  animation-delay: 0.2s;
}

.sk-grid-cube:nth-child(6) {
  animation-delay: 0.3s;
}

.sk-grid-cube:nth-child(7) {
  animation-delay: 0s;
}

.sk-grid-cube:nth-child(8) {
  animation-delay: 0.1s;
}

.sk-grid-cube:nth-child(9) {
  animation-delay: 0.2s;
}

@keyframes sk-grid {
  0%,
  to,
  70% {
    transform: scaleZ(1);
  }

  35% {
    transform: scale3D(0, 0, 1);
  }
}

.sk-fold {
  width: var(--sk-size);
  height: var(--sk-size);
  position: relative;
  transform: rotate(45deg);
}

.sk-fold-cube {
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  transform: scale(1.1);
}

.sk-fold-cube:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--sk-color);
  animation: sk-fold 2.4s infinite linear both;
  transform-origin: 100% 100%;
}

.sk-fold-cube:nth-child(2) {
  transform: scale(1.1) rotate(90deg);
}

.sk-fold-cube:nth-child(4) {
  transform: scale(1.1) rotate(180deg);
}

.sk-fold-cube:nth-child(3) {
  transform: scale(1.1) rotate(270deg);
}

.sk-fold-cube:nth-child(2):before {
  animation-delay: 0.3s;
}

.sk-fold-cube:nth-child(4):before {
  animation-delay: 0.6s;
}

.sk-fold-cube:nth-child(3):before {
  animation-delay: 0.9s;
}

@keyframes sk-fold {
  0%,
  10% {
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }

  25%,
  75% {
    transform: perspective(140px) rotateX(0);
    opacity: 1;
  }

  to,
  90% {
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}

.sk-wander {
  width: var(--sk-size);
  height: var(--sk-size);
  position: relative;
}

.sk-wander-cube {
  background-color: var(--sk-color);
  width: 20%;
  height: 20%;
  position: absolute;
  top: 0;
  left: 0;
  --sk-wander-distance: calc(var(--sk-size) * 0.75);
  animation: sk-wander 2s ease-in-out -2s infinite both;
}

.sk-wander-cube:nth-child(2) {
  animation-delay: -0.5s;
}

.sk-wander-cube:nth-child(3) {
  animation-delay: -1s;
}

@keyframes sk-wander {
  0% {
    transform: rotate(0);
  }

  25% {
    transform: translate(var(--sk-wander-distance)) rotate(-90deg) scale(0.6);
  }

  50% {
    transform: translate(var(--sk-wander-distance))
      translateY(var(--sk-wander-distance)) rotate(-179deg);
  }

  50.1% {
    transform: translate(var(--sk-wander-distance))
      translateY(var(--sk-wander-distance)) rotate(-180deg);
  }

  75% {
    transform: translate(0) translateY(var(--sk-wander-distance))
      rotate(-270deg) scale(0.6);
  }

  to {
    transform: rotate(-360deg);
  }
}

:root {
  --theme-font-size: 1rem;
  --theme-font-weight: 400;
  --theme-line-height: 1.4;
  --theme-font-family: "Figtree", Helvetica, Arial, sans-serif;
  --theme-color-primary: #000;
  --theme-color-secondary: #ffcb08;
  --theme-color-secondary-alt: #0f2495;
  --theme-color-tertiary: #94d227;
  --theme-color-quaternary: #3488ff;
  --theme-color-stars: #ffd60a;
  --theme-color-bg: #f5f5f5;
  --theme-color-bg2: #f4f4f4;
  --theme-transition-duration: 0.4s;
}

* {
  padding: 0;
  margin: 0;
  outline: 0;
  box-sizing: border-box;
}

*:before,
*:after {
  box-sizing: inherit;
  pointer-events: none;
}

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

template {
  display: none;
}

html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  text-size-adjust: none;
}

img,
iframe,
video,
audio,
object {
  max-width: 100%;
}

img,
iframe {
  border: 0 none;
}

img {
  height: auto;
  display: inline-block;
  vertical-align: middle;
}

b,
strong {
  font-weight: 700;
}

address {
  font-style: normal;
}

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

a,
button,
input[type="submit"],
input[type="button"],
input[type="reset"],
input[type="file"],
input[type="image"],
label[for] {
  cursor: pointer;
}

button[disabled],
input[disabled],
textarea[disabled],
select[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

input[type="text"],
input[type="password"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="month"],
input[type="week"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="time"],
input[type="url"],
input[type="color"],
textarea,
a[href^="tel"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

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

textarea {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

button,
select {
  text-transform: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

nav ul,
nav ol {
  list-style: none outside none;
}

input::-moz-placeholder {
  color: inherit;
  opacity: 1;
}

input::placeholder {
  color: inherit;
  opacity: 1;
}

textarea::-moz-placeholder {
  color: inherit;
  opacity: 1;
}

textarea::placeholder {
  color: inherit;
  opacity: 1;
}

input:-webkit-autofill {
  -webkit-text-fill-color: inherit;
  box-shadow: 0 0 0 1000px #fff inset;
}

input[type="text"],
input[type="button"],
input[type="tel"],
input[type="email"],
input[type="submit"],
input[type="date"],
input[type="search"],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

[class^="btn"] {
  cursor: pointer;
  display: inline-flex;
  vertical-align: middle;
  text-align: center;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  box-shadow: none;
  border: 0;
  font-size: 0;
  line-height: 0;
  position: relative;
  gap: clamp(5px, 0.4694835681vw + 3.2394366197px, 10px);
}

[class^="btn"] > * {
  display: inline-block;
  vertical-align: middle;
  pointer-events: none;
}

[class^="ico-"] {
  font-size: 0;
  line-height: 0;
  text-indent: -4000px;
  display: inline-block;
  vertical-align: top;
  position: relative;
}

[class^="list"] > ul {
  list-style: none;
  position: relative;
  padding: 0;
  margin: 0;
}

[class^="logo"] {
  font-size: 0;
  line-height: 0;
  text-indent: -4000px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  text-decoration: none;
}

[class^="logo"] > img {
  display: block;
  width: 100%;
}

[class^="nav"] > ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

[class^="nav"] a {
  display: block;
  text-decoration: none;
}

[class^="section"] {
  width: 100%;
  position: relative;
}

.heading-1,
.h1,
h1 {
  font-size: 3.5rem;
}

@media (max-width: 1440px) {
  .heading-1,
  .h1,
  h1 {
    font-size: clamp(2.75rem, 1.1267605634vw + 2.485915493rem, 3.5rem);
  }
}

.heading-2,
.section-single-product__head-title h1,
.section-image-and-content-alt__content h1,
.section--form-subscribe .section__head h1,
.h2,
h2 {
  font-size: 2.875rem;
}

@media (max-width: 1440px) {
  .heading-2,
  .section-single-product__head-title h1,
  .section-image-and-content-alt__content h1,
  .section--form-subscribe .section__head h1,
  .h2,
  h2 {
    font-size: clamp(2.25rem, 0.9389671362vw + 2.0299295775rem, 2.875rem);
  }
}

.heading-3,
.h3,
h3 {
  font-size: 2rem;
}

@media (max-width: 1440px) {
  .heading-3,
  .h3,
  h3 {
    font-size: clamp(1.5625rem, 0.6572769953vw + 1.4084507042rem, 2rem);
  }
}

.heading-4,
.section-hero__content-box .section-hero__content-entry h1 strong,
.form-subscribe .gform_confirmation_message,
.form-main .gform_confirmation_message,
.form-main div.gform_wrapper .gform_title,
.wp-block-group div.gform_wrapper .gform_title,
.text-note,
.h4,
h4 {
  font-size: 1.625rem;
}

@media (max-width: 1440px) {
  .heading-4,
  .section-hero__content-box .section-hero__content-entry h1 strong,
  .form-subscribe .gform_confirmation_message,
  .form-main .gform_confirmation_message,
  .form-main div.gform_wrapper .gform_title,
  .wp-block-group div.gform_wrapper .gform_title,
  .text-note,
  .h4,
  h4 {
    font-size: clamp(1.25rem, 0.5633802817vw + 1.1179577465rem, 1.625rem);
  }
}

.heading-5,
.h5,
h5 {
  font-size: 1.5rem;
}

@media (max-width: 1440px) {
  .heading-5,
  .h5,
  h5 {
    font-size: clamp(1.1875rem, 0.4694835681vw + 1.0774647887rem, 1.5rem);
  }
}

.heading-6,
.section-hero__content-box .section-hero__content-entry h1,
.h6,
h6 {
  font-size: 1.125rem;
}

@media (max-width: 1440px) {
  .heading-6,
  .section-hero__content-box .section-hero__content-entry h1,
  .h6,
  h6 {
    font-size: clamp(0.75rem, 0.5633802817vw + 0.6179577465rem, 1.125rem);
  }
}

html {
  scroll-behavior: smooth;
}

body {
  --admin-bar-height: 0.01px;
  min-width: 320px;
  font-family: var(--theme-font-family);
  font-optical-sizing: auto;
  font-weight: var(--theme-font-weight);
  font-style: normal;
  line-height: var(--theme-line-height);
  color: var(--theme-color-primary);
  font-size: 1rem;
}

@media (max-width: 1440px) {
  body {
    font-size: clamp(0.875rem, 0.1877934272vw + 0.8309859155rem, 1rem);
  }
}

body.show-popup {
  position: relative;
  overflow: hidden;
}

@media (max-width: 985px) {
  body.show-nav-main {
    position: relative;
    overflow: hidden;
  }
}

body.admin-bar {
  --admin-bar-height: 32px;
}

@media (max-width: 782px) {
  body.admin-bar {
    --admin-bar-height: 46px;
  }
}

a {
  color: inherit;
  text-decoration: underline;
}

@media (hover: hover) and (pointer: fine) {
  a:where(:hover, :focus-visible) {
    text-decoration: none;
  }
}

a[href^="tel"] {
  text-decoration: none;
}

.h1,
h1 {
  margin-bottom: calc(var(--theme-line-height) * 0.5em);
  font-weight: 700;
}

.h1:last-child,
h1:last-child {
  margin-bottom: 0;
}

.h2,
h2 {
  margin-bottom: calc(var(--theme-line-height) * 0.5em);
  font-weight: 700;
}

.h2:last-child,
h2:last-child {
  margin-bottom: 0;
}

.h3,
h3 {
  margin-bottom: calc(var(--theme-line-height) * 0.5em);
  font-weight: 700;
}

.h3:last-child,
h3:last-child {
  margin-bottom: 0;
}

.h4,
h4 {
  margin-bottom: calc(var(--theme-line-height) * 0.5em);
  font-weight: 700;
}

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

.h5,
h5 {
  margin-bottom: calc(var(--theme-line-height) * 0.5em);
  font-weight: 700;
}

.h5:last-child,
h5:last-child {
  margin-bottom: 0;
}

.h6,
h6 {
  margin-bottom: calc(var(--theme-line-height) * 0.5em);
  font-weight: 700;
}

.h6:last-child,
h6:last-child {
  margin-bottom: 0;
}

p,
ul,
ol,
dl,
hr,
table,
blockquote {
  margin-bottom: calc(var(--theme-line-height) * 0.5em);
}

p:last-child,
ul:last-child,
ol:last-child,
dl:last-child,
hr:last-child,
table:last-child,
blockquote:last-child {
  margin-bottom: 0;
}

.clear:after {
  content: "";
  line-height: 0;
  display: table;
  clear: both;
}

.sr-only,
.sr-only-focusable:not(:focus, :focus-within) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.image-fit {
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.image-fit img,
.image-fit video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.notext {
  white-space: nowrap;
  text-indent: 100%;
  text-shadow: none;
  overflow: hidden;
}

[disabled],
.disabled {
  cursor: default;
}

[hidden],
.hidden {
  display: none;
}

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .hidden-xs {
    display: none !important;
  }
}

@media (min-width: 767.02px) and (max-width: 1023px) {
  .hidden-sm {
    display: none !important;
  }
}

@media (min-width: 1023.02px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}

@media (min-width: 1199.02px) {
  .hidden-lg {
    display: none !important;
  }
}

pre {
  padding: 10px;
  overflow: hidden;
  background-color: #000;
  color: #fff;
  z-index: 9999;
  font-size: 14px;
}

.richtext-entry > ul:not([class]),
.richtext-entry > ol:not([class]),
.richtext-entry > ul.wp-block-list,
.richtext-entry > ol.wp-block-list {
  padding-left: 18px;
}

.richtext-entry > ul:not([class]) ol,
.richtext-entry > ul:not([class]) ul,
.richtext-entry > ol:not([class]) ol,
.richtext-entry > ol:not([class]) ul,
.richtext-entry > ul.wp-block-list ol,
.richtext-entry > ul.wp-block-list ul,
.richtext-entry > ol.wp-block-list ol,
.richtext-entry > ol.wp-block-list ul {
  padding-left: 18px;
}

.richtext-entry > blockquote {
  border-left: 2px solid var(--theme-color-primary);
  margin-left: 0;
  padding: 0 0 0 16px;
}

.richtext-entry > *.alignwide {
  width: 100%;
  max-width: 100%;
  clear: both;
}

.richtext-entry > *.aligncenter {
  margin-left: auto;
  margin-right: auto;
}

.richtext-entry > *.alignfull {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: auto;
  padding: 0 20px;
}

.has-background {
  background-color: var(--theme-color-bg);
}

.has-background:not(.has-background--image) + section.has-background {
  padding-top: 0;
}

.has-background--dark {
  background-color: #000;
  color: #fff;
}

@media (hover: hover) and (pointer: fine) {
  .has-background--dark a.btn:where(:hover, :focus-visible),
  .has-background--dark button.btn:where(:hover, :focus-visible) {
    --background-hover: transparent;
    --color-hover: white;
    --border-color-hover: #ffcb08;
  }
}

@media (hover: hover) and (pointer: fine) {
  .has-background--dark a.btn--alt:where(:hover, :focus-visible),
  .has-background--dark button.btn--alt:where(:hover, :focus-visible) {
    --background-hover: #ffcb08;
    --color-hover: var(--theme-color-primary);
    --border-color-hover: #ffcb08;
  }
}

.has-background--dark:not(.has-background--image)
  + section.has-background--dark {
  padding-top: 0;
}

.comment-respond {
  width: 100%;
  padding-top: 30px;
  border-top: 1px solid #363636;
}

.comment-respond h3 {
  position: relative;
}

.comment-respond small {
  position: absolute;
  top: 0;
  right: 0;
}

.comment-respond label {
  display: inline-block;
  padding-bottom: 4px;
}

.comment-respond input[type="text"],
.comment-respond textarea {
  display: block;
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  background: #f7f7f7;
}

.comment-respond textarea {
  height: 100px;
}

.comment-respond input[type="text"]:focus {
  background-color: #fff;
}

.comment-respond input[type="text"]::-moz-placeholder {
  color: #777;
}

.comment-respond input[type="text"]::placeholder {
  color: #777;
}

.comment-respond .required {
  color: red;
}

.comment-respond .comment-notes {
  padding-top: 15px;
}

.comment-respond .form-submit input {
  display: block;
  width: 16px;
  height: 40px;
  border: 0;
  font-size: r(14px);
  font-weight: 700;
  color: #fff;
  background: #363636;
  cursor: pointer;
  border-radius: 4px;
}

.comments {
  position: relative;
}

.comments .children {
  position: relative;
  padding-left: 7rem;
}

.comments .children:before,
.comments .children:after {
  content: "";
  position: absolute;
  display: block;
}

.comments .children:before {
  top: 33px;
  left: 23px;
  width: 32px;
  height: 27px;
  border-left: 8px solid #c3c3c3;
  border-bottom: 8px solid #c3c3c3;
  border-radius: 0 0 0 8px;
}

.comments .children:after {
  top: -0.5rem;
  left: 8px;
  border: 20px solid transparent;
  border-width: 20px 19px;
  border-bottom-color: #c3c3c3;
}

.comments .comment {
  position: relative;
  border-top: 1px dashed #363636;
}

.comments .avatar {
  position: absolute;
  top: 28px;
  left: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #ccc;
}

.comments .says {
  padding-left: 5px;
}

.comments .moderation-notice {
  display: inline-block;
  margin: 3px 0 8px;
  color: #999;
}

.comments .comment__entry {
  position: relative;
  padding: 30px 0 30px 65px;
}

.comments .comment__text p:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}

.comments .comment__meta {
  padding-bottom: 12px;
}

.comments .comment__meta a {
  color: #363636;
}

.comments .comment__reply {
  padding-top: 10px;
  text-align: right;
}

.comments .comment__reply a {
  display: inline-block;
  padding: 5px 10px;
  background: #363636;
  color: #fff;
  border-radius: 6px;
}

@media (hover: hover) and (pointer: fine) {
  .comments .comment__reply a:where(:hover, :focus-visible) {
    text-decoration: none;
    opacity: 0.8;
  }
}

.paging {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .paging {
    flex-wrap: wrap;
  }
}

.paging a {
  text-decoration: none;
}

.paging ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  margin-inline: auto;
  padding-inline: 20px;
}

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .paging ul {
    width: 100%;
    order: -1;
    padding: 0;
    margin-bottom: 20px;
  }
}

.paging ul li {
  margin-inline: 5px;
}

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .paging ul li:first-child {
    margin-left: 0;
  }
}

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .paging ul li:last-child {
    margin-right: 0;
  }
}

.paging ul li.paging__spacer,
.paging ul a {
  background-color: #fff;
  font-size: 0.875rem;
  color: #000;
  width: 35px;
  height: 35px;
  display: block;
  text-align: center;
  line-height: 35px;
  transition: all 0.4s;
}

.paging ul a:hover,
.paging ul li.is-current a {
  color: #fff;
  background-color: #000;
}

.paging .paging__next,
.paging .paging__prev {
  font-size: 1rem;
  color: #000;
  transition: all 0.4s;
}

@media (hover: hover) and (pointer: fine) {
  .paging .paging__next:where(:hover, :focus-visible),
  .paging .paging__prev:where(:hover, :focus-visible) {
    color: #000;
  }
}

.paging .paging__next:only-child {
  margin-left: auto;
  margin-right: 0;
}

.paging .paging__prev:only-child {
  margin-right: auto;
  margin-left: 0;
}

.paging .paging__label,
.paging .paging__first,
.paging .paging__last,
.paging .paging__prev,
.paging .paging__next {
  margin: 9px;
}

.search-form {
  position: relative;
  overflow: hidden;
}

.search-form__field {
  display: block;
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  background: #f7f7f7;
}

.search-form__field:focus {
  background-color: #fff;
}

.search-form__field::-moz-placeholder {
  color: #777;
}

.search-form__field::placeholder {
  color: #777;
}

.section-comments {
  padding-top: 15px;
}

.section-comments a {
  text-decoration: none;
}

.section-comments p {
  padding-bottom: 18px;
}

.section-comments ol,
.section-comments ul {
  padding: 0;
  margin: 0;
  list-style: none outside none;
}

.section-comments h3 {
  position: relative;
  padding: 0 0 10px;
}

.section-comments h3 small {
  position: absolute;
  top: 0;
  right: 0;
}

.widget {
  margin-bottom: 15px;
}

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

.widget > ul {
  list-style: none outside none;
  margin: 0;
}

.widget > ul li {
  padding: 5px;
}

.widget > ul a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color, border;
  transition-duration: var(--theme-transition-duration);
}

@media (hover: hover) and (pointer: fine) {
  .widget > ul a:where(:hover, :focus-visible) {
    border-bottom-color: var(--theme-color-primary);
    color: var(--theme-color-primary);
  }
}

.widget_nav_menu ul {
  list-style: none;
}

.widget_nav_menu ul li {
  padding: 5px;
}

.widgets {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin: -10px -20px;
}

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .widgets {
    margin: 0;
  }
}

.widgets > li {
  width: 50%;
  padding: 10px 20px;
}

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .widgets > li {
    width: 100%;
    padding: 10px 0;
  }
}

.alignnone,
.alignleft,
.alignright,
.aligncenter {
  margin: 5px 15px calc(var(--lh-base) * 0.5em);
}

.alignleft {
  margin-left: 0;
}

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .alignleft {
    margin: 5px 0 10px;
  }
}

.alignright {
  margin-right: 0;
}

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .alignright {
    margin: 5px 0 10px;
  }
}

.alignnone {
  margin-left: 0;
  margin-right: 0;
}

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .alignnone {
    margin: 5px 0 10px;
  }
}

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

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .aligncenter {
    margin: 5px 0 10px;
  }
}

.wp-caption {
  position: relative;
}

.wp-caption img {
  width: 100%;
}

.wp-caption-text {
  padding: 8px;
  font-size: 0.8em;
  color: inherit;
  background: transparent;
  text-align: center;
}

.nocomments {
  padding-top: 12px;
  font-weight: 700;
  font-size: r(18px);
}

.wp-block-search__input {
  border: 2px solid var(--theme-color-primary);
}

.wp-block-search__button {
  text-transform: uppercase;
  border: 2px solid var(--theme-color-primary);
  background: var(--theme-color-primary);
  color: #fff;
  padding: 8px;
  transition: color, background, border;
  transition-duration: var(--theme-transition-duration);
}

@media (hover: hover) and (pointer: fine) {
  .wp-block-search__button:where(:hover, :focus-visible) {
    background: transparent;
    color: var(--theme-color-primary);
  }
}

.main {
  width: 100%;
  flex-grow: 1;
  flex-shrink: 0;
  padding-top: var(--header-height, 177px);
}

.main > *:last-child {
  --gap-bottom: clamp(80px, 3.7558685446vw + 65.9154929577px, 120px);
}

.main > *[class*="has-background"] {
  padding-top: var(--gap-top);
  padding-bottom: var(--gap-bottom);
}

.main > *:not([class*="has-background"]) {
  margin-top: var(--gap-top);
  margin-bottom: var(--gap-bottom);
}

.main > * {
  --gap-top: clamp(80px, 3.7558685446vw + 65.9154929577px, 120px);
  --gap-bottom: clamp(80px, 3.7558685446vw + 65.9154929577px, 120px);
}

body:not(.home)
  .main
  > section:not([class*="has-background"])
  + section:not([class*="has-background"]) {
  border-top: 1px solid rgba(8, 16, 78, 0.1);
  padding-top: clamp(80px, 3.7558685446vw + 65.9154929577px, 120px);
}

.main
  > section:not([class*="has-background"])
  + section.section--map-services:not([class*="has-background"]) {
  padding-top: clamp(80px, 3.7558685446vw + 65.9154929577px, 120px);
}

.main
  > section:not([class*="has-background"])
  + section.section--map-services:not([class*="has-background"])
  .section__map {
  top: 0;
}

body.error404 .main {
  display: flex;
  flex-wrap: wrap;
}

body.error404 .main > section {
  width: 100%;
}

body.search .main section.section--articles-top {
  display: none;
}

body.post-type-archive-app_locations .main,
body.post-type-archive-app_services .main,
body.tax-services_category .main,
body.single-app_services .main {
  display: flex;
  flex-direction: column;
}

body.post-type-archive-app_locations .main > *,
body.post-type-archive-app_services .main > *,
body.tax-services_category .main > *,
body.single-app_services .main > * {
  order: 2;
}

body.post-type-archive-app_locations .main > section.section-hero,
body.post-type-archive-app_services .main > section.section-hero,
body.tax-services_category .main > section.section-hero,
body.single-app_services .main > section.section-hero {
  order: 1;
}

body.post-type-archive-app_locations
  .main
  > section.section-hero
  ~ section.section-hero,
body.post-type-archive-app_services
  .main
  > section.section-hero
  ~ section.section-hero,
body.tax-services_category .main > section.section-hero ~ section.section-hero,
body.single-app_services .main > section.section-hero ~ section.section-hero {
  order: unset;
}

.shell,
.nav__megamenu-holder {
  --shell-max-width: 1128px;
  max-width: calc(var(--shell-max-width) + var(--shell-gutter) * 2);
  padding-inline: var(--shell-gutter);
  margin-inline: auto;
  width: 100%;
  --shell-gutter: clamp(16px, 2.2535211268vw + 7.5492957746px, 40px);
}

.shell--fluid {
  max-width: none;
}

.shell--flex {
  display: flex;
}

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .shell--flex {
    flex-wrap: wrap;
  }
}

.shell--large,
.nav__megamenu-holder {
  --shell-max-width: 1440px;
}

.header {
  width: 100%;
  position: fixed;
  z-index: 900;
  left: 0;
  right: 0;
  top: 0;
  background-color: #000;
}

.header__bar {
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #000 100%);
  min-height: 34px;
}

@media (max-width: 985px) {
  .header__bar {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}

.header__bar > * {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .header__bar > * {
    justify-content: center;
  }
}

.header__inner {
  position: relative;
  z-index: 20;
  display: flex;
  border-bottom: 1px solid #bfbb98;
}

@media (max-width: 985px) {
  .header__inner {
    padding-block: 6px;
  }
}

.header__inner-logo {
  margin-right: auto;
  margin-top: calc(0px - var(--header-height-bar, 34px) / 2);
  padding-right: var(--inner-inline-offset);
}

@media (max-width: 985px) {
  .header__inner-logo {
    margin-top: 0;
    padding-right: 0;
    display: flex;
    align-items: center;
  }
}

.header__inner-nav {
  padding-block: var(--inner-block-offset);
}

.header__inner-nav:not(:last-child) {
  padding-right: var(--inner-inline-offset);
}

@media (max-width: 985px) {
  .header__inner-nav {
    position: fixed;
    inset: calc(
        var(--header-height-bar) + var(--header-height-inner) +
          var(--admin-bar-height)
      )
      0 0;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-left: var(--inner-inline-offset);
    padding-bottom: 0;
    padding-top: 3px;
    transition-property: opacity, visibility;
    transition-duration: var(--theme-transition-duration);
  }

  body.show-nav-main .header__inner-nav {
    opacity: 1;
    visibility: visible;
  }
}

.header__inner-nav nav.nav-utilities {
  display: none;
}

@media (max-width: 985px) {
  .header__inner-nav nav.nav-utilities {
    display: block;
  }
}

.header__inner-phone {
  display: flex;
  min-height: 100%;
  border-left: 1px solid #f5f5f5;
  position: relative;
}

.header__inner-phone a.link-phone {
  padding-left: var(--inner-inline-offset);
  min-width: calc(100% + var(--shell-gutter));
}

@media (max-width: 985px) {
  .header__inner-phone {
    display: none;
  }
}

.header__text {
  display: grid;
  grid-template-rows: 1fr;
  transition-property: grid-template-rows, padding;
  transition-duration: var(--theme-transition-duration);
  background-color: #bfbb98;
  color: #000;
  position: relative;
  margin-top: -1px;
}

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .header__text {
    overflow: hidden;
  }

  .header__text:after {
    content: " ";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: var(--inner-inline-offset);
    z-index: 10;
    background-color: #bfbb98;
    box-shadow: 0 0 10px 2px #bfbb98;
  }
}

.header__text > * {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.header__text blockquote {
  width: auto;
  position: relative;
  overflow: hidden;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-block: 12px;
  white-space: nowrap;
}

.header__text h6 {
  text-transform: uppercase;
  font-weight: 600;
}

.header__inner-menu {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (min-width: 985.02px) {
  .header__inner-menu {
    display: none;
  }
}

@media (max-width: 374px) {
  .header__inner-menu {
    gap: 4px;
  }
}

.header__inner-menu .btn {
  --min-width: 0;
  --padding-inline: 14px;
  --padding-block: 10px;
}

.header__inner-menu .btn span {
  font-size: 14px;
  white-space: nowrap;
}

@media (max-width: 374px) {
  .header__inner-menu .btn {
    --padding-inline: 10px;
    --padding-block: 8px;
  }

  .header__inner-menu .btn span {
    font-size: 12px;
  }
}

.header {
  --inner-block-offset: clamp(12px, 1.1267605634vw + 7.7746478873px, 24px);
  --inner-inline-offset: clamp(0px, 3.7558685446vw + -14.0845070423px, 40px);
}

@media (min-width: 1023.02px) and (max-width: 1399px) {
  .header {
    --inner-inline-offset: 10px;
  }
}

@media (min-width: 985.02px) and (max-width: 1023px) {
  .header {
    --inner-inline-offset: 15px;
  }
}

@media (max-width: 985px) {
  .header {
    --inner-inline-offset: clamp(16px, 2.2535211268vw + 7.5492957746px, 40px);
  }
}

body.admin-bar #wpadminbar {
  position: fixed;
}

body.admin-bar .header {
  margin-top: var(--admin-bar-height);
}

.footer {
  width: 100%;
  background-color: #000;
  color: #fff;
  position: relative;
  z-index: 200;
  padding-top: clamp(80px, 2.8169014085vw + 69.4366197183px, 110px);
}

.footer:before {
  content: " ";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #fff;
  top: clamp(14px, 1.3145539906vw + 9.0704225352px, 28px);
}

.footer:after {
  content: " ";
  display: none;
  position: absolute;
  left: 50%;
  top: 0;
  height: 40px;
  width: calc(1.7 * var(--shape-width));
  background-color: #000;
  transform: translate(-50%);
}

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .footer:after {
    width: var(--shape-width);
  }
}

.footer__logo {
  position: absolute;
  left: 50%;
  top: 0;
  width: auto;
  transform: translate(-50%, -60%);
  z-index: 10;
}

.footer__logo:before {
  content: " ";
  position: absolute;
  left: 50%;
  top: calc(0px - var(--shape-top-offset));
  width: 0;
  height: 9px;
  /* border-left: var(--shape-width) solid transparent; */
  /* border-right: var(--shape-width) solid transparent; */
  /* border-bottom: var(--shape-height) solid #000; */
  border-left: 360px solid #000;
  border-top: 100px solid #000;
  transform: translate(-50%);
}

.footer__inner {
  padding-bottom: clamp(38px, 3.5680751174vw + 24.6197183099px, 76px);
}

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .footer__inner > * {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.footer__inner__aside {
  width: var(--aside-width);
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 0.7511737089vw + 21.1830985915px, 32px);
}

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .footer__inner__aside {
    width: 100%;
  }
}

.footer__inner__aside-actions {
  display: flex;
  flex-wrap: wrap;
  font-size: 0;
  line-height: 0;
  justify-content: space-between;
  gap: clamp(8px, 0.7511737089vw + 5.1830985915px, 16px);
}

.footer__inner__aside-content {
  line-height: 1.6;
}

.footer__inner-nav {
  width: 100%;
}

@media (min-width: 767.02px) {
  .footer__inner-nav {
    width: calc(100% - var(--aside-width));
    padding-left: clamp(0px, 8.3568075117vw + -31.338028169px, 89px);
  }
}

.footer__bar {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer__bar > * {
  gap: clamp(10px, 0.9389671362vw + 6.4788732394px, 20px);
}

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .footer__bar > * {
    flex-direction: column-reverse;
  }
}

.footer__bar {
  padding-block: clamp(12px, 1.3145539906vw + 7.0704225352px, 26px);
}

.footer__bar-content {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
}

@media (max-width: 1440px) {
  .footer__bar-content {
    font-size: clamp(0.75rem, 0.1877934272vw + 0.7059859155rem, 0.875rem);
  }
}

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .footer__bar-content {
    flex-direction: column-reverse;
    width: 100%;
    gap: 5px;
    text-align: center;
  }
}

@media (min-width: 767.02px) {
  .footer__bar-content > *:not(:last-child) {
    position: relative;
    padding-right: var(--gap);
  }

  .footer__bar-content > *:not(:last-child):after {
    content: " ";
    position: absolute;
    right: calc(var(--gap) / 2);
    top: 50%;
    height: 16px;
    width: 1px;
    background-color: #fff3;
    transform: translateY(-50%);
  }
}

.footer__bar-content > p {
  margin-bottom: 0;
}

.footer__bar-content {
  --gap: clamp(24px, 2.2535211268vw + 15.5492957746px, 48px);
}

.footer__bar-socials {
  margin-left: auto;
}

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .footer__bar-socials {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

.footer {
  --shape-width: clamp(220px, 0.9389671362vw + 216.4788732394px, 230px);
  --shape-height: clamp(100px, 0.4694835681vw + 98.2394366197px, 105px);
  --shape-top-offset: clamp(10px, 1.8779342723vw + 2.9577464789px, 30px);
  --aside-width: clamp(260px, 10.234741784vw + 221.6197183099px, 369px);
}

.wrapper {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100svh;
}

@media (min-width: 767.02px) {
  body.single-post .wrapper,
  body.tax-services_category .wrapper,
  body.single-app_services .wrapper,
  body.single-app_careers .wrapper {
    overflow: visible;
  }
}

body.admin-bar .wrapper {
  min-height: calc(100svh - var(--admin-bar-height));
}

.logo {
  width: var(--width);
  height: var(--height);
  transition: opacity var(--theme-transition-duration);
  --width: clamp(167px, 12.4882629108vw + 120.1690140845px, 300px);
  --height: clamp(52px, 3.8497652582vw + 37.5633802817px, 93px);
  position: relative;
  overflow: hidden;
}

.logo img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

@media (max-width: 374px) and (min-width: 320px) and (max-width: 374px) {
  .logo {
    --width: clamp(146px, 38.8888888889vw + 21.5555555556px, 167px);
  }
}

@media (max-width: 374px) and (min-width: 320px) and (max-width: 374px) {
  .logo {
    --height: clamp(50px, 3.7037037037vw + 38.1481481481px, 52px);
  }
}

@media (hover: hover) and (pointer: fine) {
  .logo:where(:hover, :focus-visible) {
    opacity: 0.75;
  }
}

.logo--footer {
  --width: clamp(146px, 15.3990610329vw + 88.2535211268px, 310px);
  --height: clamp(50px, 4.3192488263vw + 33.8028169014px, 96px);
}

.logo--popup {
  --width: clamp(116px, 12.3943661972vw + 69.5211267606px, 248px);
  --height: clamp(40px, 3.3802816901vw + 27.323943662px, 76px);
}

span.logo {
  display: block;
  margin-inline: auto;
}

@media (hover: hover) and (pointer: fine) {
  span.logo:where(:hover, :focus-visible) {
    opacity: 1;
  }
}

@media (min-width: 767.02px) {
  .sidebar-main {
    position: sticky;
    top: calc(var(--admin-bar-height) + var(--header-height) + 20px);
  }
}

.sidebar-main > ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-main > ul > li {
  background-color: var(--theme-color-bg);
  margin: 0;
  padding: clamp(20px, 0.9389671362vw + 16.4788732394px, 30px);
}

.sidebar-main > ul > li.widget--promotions {
  padding: clamp(5px, 0.4694835681vw + 3.2394366197px, 10px);
}

.sidebar-main .wp-block-group__inner-container > .wp-block-heading {
  line-height: 1.1;
  font-weight: 500;
  font-size: 1.375rem;
}

@media (max-width: 1440px) {
  .sidebar-main .wp-block-group__inner-container > .wp-block-heading {
    font-size: clamp(1.0625rem, 0.4694835681vw + 0.9524647887rem, 1.375rem);
  }
}

.sidebar-main .wp-block-group__inner-container > .wp-block-heading {
  margin-bottom: clamp(10px, 0.9389671362vw + 6.4788732394px, 20px);
}

.sidebar-main .wp-block-latest-posts {
  width: auto;
  margin-inline: -16px;
  display: flex;
  flex-direction: column;
}

.sidebar-main .wp-block-latest-posts > li {
  display: flex;
  align-items: center;
  padding: 10px 8px;
  background-color: #fff;
}

.sidebar-main .wp-block-latest-posts > li ~ li {
  border-top: 1px solid var(--theme-color-bg);
}

.sidebar-main .wp-block-latest-posts__featured-image {
  width: var(--image-width);
  aspect-ratio: 1/0.75;
  position: relative;
  overflow: hidden;
}

.sidebar-main .wp-block-latest-posts__featured-image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.sidebar-main .wp-block-latest-posts__post-title {
  font-weight: 700;
  text-decoration: none;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color var(--theme-transition-duration);
  font-size: 1.125rem;
}

@media (max-width: 1440px) {
  .sidebar-main .wp-block-latest-posts__post-title {
    font-size: clamp(1rem, 0.1877934272vw + 0.9559859155rem, 1.125rem);
  }
}

.sidebar-main .wp-block-latest-posts__post-title:not(:first-child) {
  width: calc(100% - var(--image-width));
  padding-left: clamp(8px, 0.7511737089vw + 5.1830985915px, 16px);
}

@media (hover: hover) and (pointer: fine) {
  .sidebar-main
    .wp-block-latest-posts__post-title:where(:hover, :focus-visible) {
    color: var(--theme-color-quaternary);
  }
}

.sidebar-main .wp-block-latest-posts {
  --image-width: clamp(70px, 2.8169014085vw + 59.4366197183px, 100px);
}

.sidebar-main .wp-block-categories {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: auto;
  margin-right: -16px;
}

.sidebar-main .wp-block-categories a {
  display: block;
  text-decoration: none;
  font-weight: 500;
  background-color: #3488ff1a;
  transition-property: color, background;
  transition-duration: var(--theme-transition-duration);
  padding-inline: clamp(8px, 0.7511737089vw + 5.1830985915px, 16px);
  padding-block: clamp(4px, 0.1877934272vw + 3.2957746479px, 6px);
}

@media (hover: hover) and (pointer: fine) {
  .sidebar-main .wp-block-categories a:where(:hover, :focus-visible) {
    background-color: var(--theme-color-primary);
    color: #fff;
  }
}

.sidebar-main .wp-block-categories li.cat-item-1 {
  order: 100;
}

.post__entry {
  font-size: 1.125rem;
}

@media (max-width: 1440px) {
  .post__entry {
    font-size: clamp(1rem, 0.1877934272vw + 0.9559859155rem, 1.125rem);
  }
}

.post__entry > h2 {
  line-height: 1.1;
  font-weight: 700;
  font-size: 2.25rem;
}

@media (max-width: 1440px) {
  .post__entry > h2 {
    font-size: clamp(1.75rem, 0.7511737089vw + 1.573943662rem, 2.25rem);
  }
}

.post__entry > h2 {
  margin-bottom: clamp(12px, 1.1267605634vw + 7.7746478873px, 24px);
}

.post__entry > h3 {
  line-height: 1.1;
  font-weight: 700;
  font-size: 1.625rem;
}

@media (max-width: 1440px) {
  .post__entry > h3 {
    font-size: clamp(1.25rem, 0.5633802817vw + 1.1179577465rem, 1.625rem);
  }
}

.post__entry > h3 {
  margin-bottom: clamp(13px, 1.1267605634vw + 8.7746478873px, 25px);
}

.post__entry > p,
.post__entry > ul,
.post__entry > ol {
  line-height: 1.4;
  color: #08104ecc;
  margin-bottom: clamp(12px, 1.0328638498vw + 8.1267605634px, 23px);
}

.post__entry > ul,
.post__entry > ol {
  margin-left: 22px;
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.1267605634vw + 7.7746478873px, 24px);
}

.post__entry > ul li::marker,
.post__entry > ol li::marker {
  font-size: 14px;
}

.post__entry > ul.is-style-checklist,
.post__entry > ol.is-style-checklist {
  list-style: none;
  margin-left: 0;
  gap: clamp(8px, 0.7511737089vw + 5.1830985915px, 16px);
  margin-bottom: clamp(24px, 0.6572769953vw + 21.5352112676px, 31px);
}

.post__entry > ul.is-style-checklist li,
.post__entry > ol.is-style-checklist li {
  display: flex;
  gap: 8px;
}

.post__entry > ul.is-style-checklist li:before,
.post__entry > ol.is-style-checklist li:before {
  content: " ";
  display: block;
  width: var(--icon-size);
  min-width: var(--icon-size);
  height: var(--icon-size);
  background-image: url("data:image/svg+xml,%3csvg%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M10.525%2016.55L17.6%209.475L16.45%208.35L10.525%2014.275L7.525%2011.275L6.4%2012.4L10.525%2016.55ZM12%2022C10.6334%2022%209.34165%2021.7375%208.125%2021.2125C6.90835%2020.6875%205.84585%2019.9708%204.9375%2019.0625C4.02917%2018.1542%203.3125%2017.0917%202.7875%2015.875C2.2625%2014.6583%202%2013.3666%202%2012C2%2010.6166%202.2625%209.31665%202.7875%208.1C3.3125%206.88335%204.02917%205.825%204.9375%204.925C5.84585%204.025%206.90835%203.3125%208.125%202.7875C9.34165%202.2625%2010.6334%202%2012%202C13.3834%202%2014.6833%202.2625%2015.9%202.7875C17.1166%203.3125%2018.175%204.025%2019.075%204.925C19.975%205.825%2020.6875%206.88335%2021.2125%208.1C21.7375%209.31665%2022%2010.6166%2022%2012C22%2013.3666%2021.7375%2014.6583%2021.2125%2015.875C20.6875%2017.0917%2019.975%2018.1542%2019.075%2019.0625C18.175%2019.9708%2017.1166%2020.6875%2015.9%2021.2125C14.6833%2021.7375%2013.3834%2022%2012%2022ZM12%2020.5C14.3666%2020.5%2016.375%2019.6709%2018.025%2018.0125C19.675%2016.3542%2020.5%2014.35%2020.5%2012C20.5%209.63335%2019.675%207.625%2018.025%205.975C16.375%204.325%2014.3666%203.5%2012%203.5C9.65%203.5%207.64585%204.325%205.9875%205.975C4.32917%207.625%203.5%209.63335%203.5%2012C3.5%2014.35%204.32917%2016.3542%205.9875%2018.0125C7.64585%2019.6709%209.65%2020.5%2012%2020.5Z'%20fill='%2308104E'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  --icon-size: clamp(16px, 0.7511737089vw + 13.1830985915px, 24px);
}

.post__entry > .wp-block-heading:not(:first-child) {
  margin-top: clamp(26px, 0.6572769953vw + 23.5352112676px, 33px);
}

.post__entry > .wp-block-image {
  margin-block: clamp(30px, 0.9389671362vw + 26.4788732394px, 40px);
}

.post__entry > .wp-block-columns {
  gap: clamp(16px, 0.7511737089vw + 13.1830985915px, 24px);
  margin-block: clamp(22px, 0.6572769953vw + 19.5352112676px, 29px);
}

.post__entry > *:first-child {
  margin-top: 0;
}

.post__entry > *:last-child {
  margin-bottom: 0;
}

.post__share {
  margin-top: clamp(30px, 2.8169014085vw + 19.4366197183px, 60px);
}

.text-note {
  text-align: center;
  font-weight: 700;
  color: var(--theme-color-tertiary);
}

.ico-phone {
  --fill: #f5f5f5;
  width: var(--size);
  height: var(--size);
}

.ico-phone svg {
  display: block;
  width: inherit;
  height: inherit;
}

.ico-phone path {
  fill: var(--fill);
  transition: fill var(--theme-transition-duration);
}

.ico-phone {
  --size: clamp(24px, 0.8450704225vw + 20.8309859155px, 33px);
}

@media (hover) and (pointer: fine) {
  a:hover .ico-phone,
  button:hover .ico-phone {
    --fill: white;
  }
}

.ico-stars {
  width: 88px;
  height: 16px;
  -webkit-mask: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='a'%20data-name='Layer%201'%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2087.22%2014.47'%3e%3cpath%20d='M7.61,0l2.35,4.76,5.26.76-3.8,3.71.9,5.24-4.7-2.47-4.7,2.47.9-5.24L0,5.53l5.26-.76L7.61,0ZM25.61,0l2.35,4.76,5.26.76-3.8,3.71.9,5.24-4.7-2.47-4.7,2.47.9-5.24-3.8-3.71,5.26-.76L25.61,0ZM43.61,0l2.35,4.76,5.26.76-3.8,3.71.9,5.24-4.7-2.47-4.7,2.47.9-5.24-3.8-3.71,5.26-.76L43.61,0ZM61.61,0l2.35,4.76,5.26.76-3.8,3.71.9,5.24-4.7-2.47-4.7,2.47.9-5.24-3.8-3.71,5.26-.76L61.61,0ZM79.61,0l2.35,4.76,5.26.76-3.8,3.71.9,5.24-4.7-2.47-4.7,2.47.9-5.24-3.8-3.71,5.26-.76,2.35-4.76Z'/%3e%3c/svg%3e");
  mask: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='a'%20data-name='Layer%201'%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2087.22%2014.47'%3e%3cpath%20d='M7.61,0l2.35,4.76,5.26.76-3.8,3.71.9,5.24-4.7-2.47-4.7,2.47.9-5.24L0,5.53l5.26-.76L7.61,0ZM25.61,0l2.35,4.76,5.26.76-3.8,3.71.9,5.24-4.7-2.47-4.7,2.47.9-5.24-3.8-3.71,5.26-.76L25.61,0ZM43.61,0l2.35,4.76,5.26.76-3.8,3.71.9,5.24-4.7-2.47-4.7,2.47.9-5.24-3.8-3.71,5.26-.76L43.61,0ZM61.61,0l2.35,4.76,5.26.76-3.8,3.71.9,5.24-4.7-2.47-4.7,2.47.9-5.24-3.8-3.71,5.26-.76L61.61,0ZM79.61,0l2.35,4.76,5.26.76-3.8,3.71.9,5.24-4.7-2.47-4.7,2.47.9-5.24-3.8-3.71,5.26-.76,2.35-4.76Z'/%3e%3c/svg%3e");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-color: var(--theme-color-bg);
}

.ico-stars:before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--percentage, 0%);
  background-color: var(--theme-color-stars);
}

.ico-stars--large {
  width: 126px;
  height: 20px;
}

.ico-tel {
  --fill: var(--theme-color-primary);
  width: var(--size);
  height: var(--size);
}

.ico-tel svg {
  display: block;
  width: inherit;
  height: inherit;
}

.ico-tel path {
  fill: var(--fill);
  transition: fill var(--theme-transition-duration);
}

.ico-tel {
  --size: clamp(12px, 0.3755868545vw + 10.5915492958px, 16px);
}

.ico-social {
  width: var(--size);
  height: var(--size);
  --size: clamp(24px, 0vw + 24px, 24px);
}

.ico-social svg {
  display: block;
  width: inherit;
  height: inherit;
}

.ico-social path {
  fill: currentColor;
  transition: fill var(--theme-transition-duration);
}

@media (hover) and (pointer: fine) {
  a:hover .ico-social path {
    fill: var(--theme-color-tertiary);
  }
}

.ico-check {
  width: var(--size);
  height: var(--size);
}

.ico-check svg {
  display: block;
  width: inherit;
  height: inherit;
}

.ico-check path {
  fill: currentColor;
  transition: fill var(--theme-transition-duration);
}

.ico-check {
  --size: clamp(18px, 0.2816901408vw + 16.9436619718px, 21px);
}

@media (hover) and (pointer: fine) {
  a:hover .ico-check path {
    fill: var(--theme-color-tertiary);
  }
	.header__bar a:hover .ico-social path {
    	fill: #ffc935;
	}
}

.ico-play {
  width: var(--size);
  height: var(--size);
  background-color: #ffcb08;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--theme-transition-duration);
  --size: clamp(36px, 3.7558685446vw + 21.9154929577px, 76px);
}

.ico-play:before {
  content: " ";
  width: 0;
  height: 0;
  border-top: var(--border-y) solid transparent;
  border-bottom: var(--border-y) solid transparent;
  border-left: var(--border-x) solid white;
}

.ico-play {
  --border-y: clamp(7px, 0.6572769953vw + 4.5352112676px, 14px);
  --border-x: clamp(13px, 1.220657277vw + 8.4225352113px, 26px);
}

@media (hover) and (pointer: fine) {
  a:hover .ico-play {
    background-color: var(--theme-color-primary);
  }
}

.ico-arrow {
  width: var(--width);
  height: var(--height);
  --width: clamp(20px, 0.3755868545vw + 18.5915492958px, 24px);
  --height: clamp(14px, 0.3755868545vw + 12.5915492958px, 18px);
}

.ico-arrow svg {
  display: block;
  width: inherit;
  height: inherit;
}

.ico-arrow path {
  fill: currentColor;
  transition: fill var(--theme-transition-duration);
}

@media (hover) and (pointer: fine) {
  a:hover .ico-arrow path {
    fill: var(--theme-color-tertiary);
  }
}

.ico-arrow--next svg {
  transform: rotate(180deg);
}

.ico-arrow-alt {
  width: 18px;
  height: 10px;
}

.ico-arrow-alt svg {
  display: block;
  width: inherit;
  height: inherit;
  transition: transform var(--theme-transition-duration);
}

.ico-arrow-alt path {
  fill: #000;
  transition: fill var(--theme-transition-duration);
}

.ico-arrow-link {
  width: 14px;
  height: 12px;
}

.ico-arrow-link svg {
  display: block;
  width: inherit;
  height: inherit;
  transition: transform var(--theme-transition-duration);
}

.ico-arrow-link path {
  fill: #000;
}
.section--grid-box-services .ico-arrow-link path {
  fill: #ffcb08;
}

@media (hover) and (pointer: fine) {
  a:hover .ico-arrow-link:last-child svg {
    transform: translate(5px);
  }

  a:hover .ico-arrow-link:first-child svg {
    transform: translate(-5px);
  }
}

.ico-arrow-link--left {
  transform: rotate(180deg);
}

.ico-arrow-link--large {
  width: 24px;
  height: 17px;
}

.ico-pin {
  width: 12px;
  min-width: 12px;
  height: 16px;
}

.ico-pin svg {
  display: block;
  width: inherit;
  height: inherit;
}

.ico-pin path {
  fill: #000;
}

@media (hover) and (pointer: fine) {
  a:hover .ico-pin path {
    fill: currentColor;
  }
}

.ico-clock {
  width: var(--size);
  height: var(--size);
}

.ico-clock svg {
  display: block;
  width: inherit;
  height: inherit;
}

.ico-clock path {
  fill: currentColor;
  transition: fill var(--theme-transition-duration);
}

.ico-clock {
  --size: clamp(12px, 0.1877934272vw + 11.2957746479px, 14px);
}

.ico-clock-alt {
  width: var(--size);
  height: var(--size);
}

.ico-clock-alt svg {
  display: block;
  width: inherit;
  height: inherit;
}

.ico-clock-alt path {
  fill: var(--theme-color-quaternary);
  transition: fill var(--theme-transition-duration);
}

.ico-clock-alt {
  --size: clamp(12px, 0.0938967136vw + 11.6478873239px, 13px);
}

.ico-get-a-quote {
  --size: 32px;
  width: var(--size);
  height: var(--size);
}

.ico-get-a-quote svg {
  display: block;
  width: inherit;
  height: inherit;
}

.ico-get-a-quote path {
  fill: var(--theme-color-primary);
  transition: fill var(--theme-transition-duration);
}

.btn,
div.gform_wrapper.gravity-theme.gform-theme--no-framework
  .gform_button_select_files,
div.gform_wrapper.gravity-theme.gform-theme--no-framework .gform_footer input,
div.gform_wrapper.gravity-theme.gform-theme--no-framework .gform_footer button,
div.gform_wrapper.gravity-theme.gform-theme--no-framework
  .gform_page_footer
  input,
div.gform_wrapper.gravity-theme.gform-theme--no-framework
  .gform_page_footer
  button {
  --background: #ffcb08;
  --background-hover: var(--theme-color-primary);
  --color: var(--theme-color-primary);
  --color-hover: white;
  --min-width: 115px;
  --font-weight: 600;
  --border-width: 1px;
  --border-color: #ffcb08;
  --border-color-hover: var(--theme-color-primary);
  --padding-inline: clamp(18px, 0.4694835681vw + 16.2394366197px, 23px);
  --padding-block: clamp(12px, 0.0938967136vw + 11.6478873239px, 13px);
  padding-inline: var(--padding-inline);
  padding-block: var(--padding-block);
  background-color: var(--background);
  color: var(--color);
  min-width: var(--min-width);
  border-width: var(--border-width);
  border-style: solid;
  border-color: var(--border-color);
  justify-content: center;
  transition-property: color, border, background;
  transition-duration: var(--theme-transition-duration);
}

.btn > span,
div.gform_wrapper.gravity-theme.gform-theme--no-framework
  .gform_button_select_files
  > span,
div.gform_wrapper.gravity-theme.gform-theme--no-framework
  .gform_footer
  input
  > span,
div.gform_wrapper.gravity-theme.gform-theme--no-framework
  .gform_footer
  button
  > span,
div.gform_wrapper.gravity-theme.gform-theme--no-framework
  .gform_page_footer
  input
  > span,
div.gform_wrapper.gravity-theme.gform-theme--no-framework
  .gform_page_footer
  button
  > span {
  line-height: 1;
  font-weight: var(--font-weight);
  font-size: 1.125rem;
}

@media (max-width: 1440px) {
  .btn > span,
  div.gform_wrapper.gravity-theme.gform-theme--no-framework
    .gform_button_select_files
    > span,
  div.gform_wrapper.gravity-theme.gform-theme--no-framework
    .gform_footer
    input
    > span,
  div.gform_wrapper.gravity-theme.gform-theme--no-framework
    .gform_footer
    button
    > span,
  div.gform_wrapper.gravity-theme.gform-theme--no-framework
    .gform_page_footer
    input
    > span,
  div.gform_wrapper.gravity-theme.gform-theme--no-framework
    .gform_page_footer
    button
    > span {
    font-size: clamp(0.875rem, 0.3755868545vw + 0.786971831rem, 1.125rem);
  }
}

@media (hover: hover) and (pointer: fine) {
  .btn:where(:hover, :focus-visible),
  div.gform_wrapper.gravity-theme.gform-theme--no-framework
    .gform_button_select_files:where(:hover, :focus-visible),
  div.gform_wrapper.gravity-theme.gform-theme--no-framework
    .gform_footer
    input:where(:hover, :focus-visible),
  div.gform_wrapper.gravity-theme.gform-theme--no-framework
    .gform_footer
    button:where(:hover, :focus-visible),
  div.gform_wrapper.gravity-theme.gform-theme--no-framework
    .gform_page_footer
    input:where(:hover, :focus-visible),
  div.gform_wrapper.gravity-theme.gform-theme--no-framework
    .gform_page_footer
    button:where(:hover, :focus-visible) {
    background-color: var(--background-hover);
    color: var(--color-hover);
    border-color: var(--border-color-hover);
  }

  .btn:where(:hover, :focus-visible) i svg path,
  div.gform_wrapper.gravity-theme.gform-theme--no-framework
    .gform_button_select_files:where(:hover, :focus-visible)
    i
    svg
    path,
  div.gform_wrapper.gravity-theme.gform-theme--no-framework
    .gform_footer
    input:where(:hover, :focus-visible)
    i
    svg
    path,
  div.gform_wrapper.gravity-theme.gform-theme--no-framework
    .gform_footer
    button:where(:hover, :focus-visible)
    i
    svg
    path,
  div.gform_wrapper.gravity-theme.gform-theme--no-framework
    .gform_page_footer
    input:where(:hover, :focus-visible)
    i
    svg
    path,
  div.gform_wrapper.gravity-theme.gform-theme--no-framework
    .gform_page_footer
    button:where(:hover, :focus-visible)
    i
    svg
    path {
    fill: var(--color-hover);
  }
}

.btn--alt {
  --background: transparent;
  --background-hover: #ffcb08;
  --border-color: #ffcb08;
  --border-color-hover: #ffcb08;
  --color: currentColor;
  --color-hover: var(--theme-color-primary);
}

.btn-menu {
  --size: 60px;
}

@media (max-width: 374px) and (min-width: 320px) and (max-width: 374px) {
  .btn-menu {
    --size: clamp(60px, 22.2222222222vw + -11.1111111111px, 72px);
  }
}

.btn-menu {
  width: var(--size);
  height: var(--size);
  border: 1px solid var(--theme-color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
}

.btn-menu span {
  display: block;
  position: relative;
  width: 32px;
  height: 4px;
  margin-top: -2px;
  background-color: var(--theme-color-primary);
  transition: background var(--theme-transition-duration);
}

.btn-menu span:before,
.btn-menu span:after {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: inherit;
  background-color: var(--theme-color-primary);
  transition-property: transform, margin;
  transition-duration: var(--theme-transition-duration);
}

.btn-menu span:before {
  margin-top: -10px;
}

.btn-menu span:after {
  margin-top: 10px;
}

body.show-nav-main .btn-menu span {
  background-color: transparent;
}

body.show-nav-main .btn-menu span:before,
body.show-nav-main .btn-menu span:after {
  margin-top: 0;
}

body.show-nav-main .btn-menu span:before {
  transform: rotate(45deg);
}

body.show-nav-main .btn-menu span:after {
  transform: rotate(-45deg);
}

.btn-arrow {
  width: var(--size);
  height: var(--size);
  border: 1px solid #f5f5f5;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition-property: border, background, opacity, color;
  transition-duration: var(--theme-transition-duration);
  --size: clamp(36px, 1.8779342723vw + 28.9577464789px, 56px);
}

.btn-arrow[disabled] {
  opacity: 0.5;
  pointer-events: none;
}

.btn-arrow.swiper-button-lock {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .btn-arrow:where(:hover, :focus-visible) {
    background-color: #ffcb08;
    border-color: #ffcb08;
  }
}

.btn-action {
  --size: 72px;
}

@media (max-width: 374px) and (min-width: 320px) and (max-width: 374px) {
  .btn-action {
    --size: clamp(60px, 22.2222222222vw + -11.1111111111px, 72px);
  }
}

.btn-action {
  width: var(--size);
  height: var(--size);
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--theme-color-tertiary);
}

.link-phone {
  display: inline-flex;
  align-items: center;
  line-height: 1.2;
  transition-property: color, background;
  transition-duration: var(--theme-transition-duration);
}

.link-phone span {
  display: block;
  font-size: 1rem;
  color: #f5f5f5;
}
.link-phone:hover span {
  color: #000;
}
a:hover .ico-phone {
  --fill: #000;
}
.nav__has-button a {
  background-color: #ffcb08;
  color: #000;
  border-color: transparent;
}
.nav__has-button a span {
  color: #000;
}
.nav__has-button a:hover {
  background-color: #ffcb08;
  color: #000;
}
@media (max-width: 1440px) {
  .link-phone span {
    font-size: clamp(0.75rem, 0.3755868545vw + 0.661971831rem, 1rem);
  }
}

@media (max-width: 1199px) {
  /* .link-phone span {
        display:none
    } */
}

.link-phone strong {
  display: block;
  font-weight: 600;
  font-size: 1.125rem;
}

@media (max-width: 1440px) {
  .link-phone strong {
    font-size: clamp(0.875rem, 0.3755868545vw + 0.786971831rem, 1.125rem);
  }
}

@media (hover: hover) and (pointer: fine) {
  .link-phone:where(:hover, :focus-visible) {
    color: #fff;
    background-color: var(--theme-color-secondary);
  }
}

.link-phone {
  gap: clamp(6px, 0.5633802817vw + 3.8873239437px, 12px);
}

.link-phone-mobile {
  display: none;
  align-items: center;
  gap: 10px;
}

@media (max-width: 985px) {
  .link-phone-mobile {
    display: inline-flex;
  }
  .header .btn-menu span,
  .header .btn-menu span:before,
  .header .btn-menu span:after {
    background-color: #f5f5f5;
  }
  .link-phone-mobile span {
    color: #f5f5f5;
  }
}

.nav a {
  transition-property: color, border, background;
  transition-duration: var(--theme-transition-duration);
}

@media (max-width: 985px) {
  .nav {
    margin-inline: calc(0px - var(--inner-inline-offset));
    padding-inline: var(--inner-inline-offset);
    background-color: #fff;
    padding-block: 11px 20px;
  }

  .nav li.nav__has-button {
    display: none;
  }
}

@media (max-width: 985px) {
  .nav ul {
    display: block;
  }
}

.nav > ul {
  align-items: center;
  gap: clamp(0px, 3.3802816901vw + -12.676056338px, 21px);
}

@media (max-width: 985px) {
  .nav > ul {
    display: block;
    gap: 0;
  }
}

.nav > ul > li.menu-item-has-children > a {
  display: inline-flex;
  align-items: center;
  position: relative;
  gap: clamp(7px, 0.6572769953vw + 4.5352112676px, 14px);
}

@media (max-width: 985px) {
  .nav > ul > li.menu-item-has-children > a {
    justify-content: space-between;
    width: 100%;
  }
}

.nav > ul > li.menu-item-has-children > a:after {
  content: " ";
  display: block;
  width: 12px;
  height: 7px;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='a' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11.43 6.5'%3E%3Cpath d='M5.72,4.65L10.15.22c.15-.15.33-.22.53-.21.2,0,.38.09.52.24.15.15.23.33.23.54s-.07.39-.23.54l-4.95,4.95c-.08.08-.17.14-.25.17s-.18.05-.28.05-.19-.02-.28-.05c-.08-.03-.17-.09-.25-.17L.22,1.3c-.15-.15-.22-.33-.22-.54S.07.38.22.22c.15-.15.33-.22.54-.22s.39.08.54.22l4.42,4.43Z' fill='%23f5f5f5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 12px 7px;
  transition: transform var(--theme-transition-duration);
}

@media (max-width: 985px) {
  .nav > ul > li.menu-item-has-children > a:after {
    transform: rotate(-90deg);
  }
}

.nav > ul > li.menu-item-has-children > a:before {
  content: " ";
  position: absolute;
  left: -20px;
  right: -20px;
  top: 100%;
  height: 50px;
  pointer-events: all;
  display: none;
}

@media (max-width: 985px) {
  .nav > ul > li {
    width: 100%;
  }
}

.nav > ul > li.current-menu-item > a:not(.btn),
.nav > ul > li.current-menu-ancestor > a:not(.btn) {
  color: var(--theme-color-secondary);
}

@media (hover) and (pointer: fine) {
  .nav > ul > li:hover > a:not(.btn) {
    color: var(--theme-color-secondary);
  }

  .nav > ul > li.menu-item-has-children:hover > a:after {
    transform: rotate(180deg);
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='a' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11.43 6.5'%3E%3Cpath d='M5.72,4.65L10.15.22c.15-.15.33-.22.53-.21.2,0,.38.09.52.24.15.15.23.33.23.54s-.07.39-.23.54l-4.95,4.95c-.08.08-.17.14-.25.17s-.18.05-.28.05-.19-.02-.28-.05c-.08-.03-.17-.09-.25-.17L.22,1.3c-.15-.15-.22-.33-.22-.54S.07.38.22.22c.15-.15.33-.22.54-.22s.39.08.54.22l4.42,4.43Z' fill='%23ffcb08'/%3E%3C/svg%3E");
  }

  .nav > ul > li.menu-item-has-children:hover > a:before {
    display: block;
  }

  .nav > ul > li:hover > .nav__megamenu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
}

@media (hover) and (pointer: fine) and (max-width: 985px) {
  .nav > ul > li:hover > .nav__megamenu {
    max-height: 9999px;
  }
}

@media (hover) and (pointer: fine) {
  .nav
    > ul
    > li:hover
    > .nav__megamenu
    .nav__megamenu__primary
    > ul
    > li.current-menu-item:not(:hover)
    > .nav__megamenu__secondary,
  .nav
    > ul
    > li:hover
    > .nav__megamenu
    .nav__megamenu__primary
    > ul
    > li.current-menu-item:not(:hover)
    > .nav__megamenu__secondary
    > ul
    > li.current-menu-item:not(:hover)
    > .nav__megamenu__tertiary {
    opacity: 1;
    visibility: visible;
  }
}

.nav > ul > li > a {
  font-weight: 600;
  font-size: 1.125rem;
  color: #f5f5f5;
}

@media (max-width: 1440px) {
  .nav > ul > li > a {
    font-size: clamp(0.875rem, 0.3755868545vw + 0.786971831rem, 1.125rem);
  }
}

@media (max-width: 985px) {
  .nav > ul > li > a {
    padding-block: 16px;
    font-size: 20px;
  }
}

.nav > ul > li > a.btn {
  margin-left: clamp(0px, 2.8169014085vw + -10.5633802817px, 6px);
}

@media (max-width: 985px) {
  .nav > ul > li > a.btn {
    margin-top: 10px;
  }
}

.nav li.menu-item-has-megamenu {
  position: static;
}

.nav__megamenu {
  position: fixed;
  left: 0;
  right: 0;
  top: calc(
    var(--header-height-bar, 34px) + var(--header-height-inner, 95px) +
      var(--admin-bar-height)
  );
  background-color: #f5f5f5;
  box-shadow: 0 20px 20px #0000001a;
  opacity: 0;
  visibility: hidden;
  transition-property: opacity, visibility;
  transition-duration: var(--theme-transition-duration);
  pointer-events: none;
  --grid-cols: clamp(20px, 1.8779342723vw + 12.9577464789px, 40px);
}

@media (max-width: 985px) {
  .nav__megamenu {
    inset: calc(
        var(--header-height-bar) + var(--header-height-inner) +
          var(--admin-bar-height) - 1px
      )
      0 0;
    box-shadow: none;
    max-height: 0;
    width: auto;
    background-color: var(--theme-color-bg);
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.nav__megamenu:before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 20%;
  background-color: var(--theme-color-bg);
}

@media (max-width: 985px) {
  .nav__megamenu:before {
    display: none;
  }
}

.nav__megamenu button.nav__back {
  all: unset;
  display: none;
  font-size: 14px;
  line-height: 1.42;
  padding-block: 15px;
  align-items: center;
  gap: 19px;
  text-transform: uppercase;
  position: relative;
  width: 100%;
}

@media (max-width: 985px) {
  .nav__megamenu button.nav__back {
    display: flex;
  }
}

.nav__megamenu button.nav__back:before {
  content: " ";
  display: block;
  min-width: 12px;
  width: 12px;
  height: 7px;
  background-image: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='a'%20data-name='Layer%201'%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2011.43%206.5'%3e%3cpath%20d='M5.72,4.65L10.15.22c.15-.15.33-.22.53-.21.2,0,.38.09.52.24.15.15.23.33.23.54s-.07.39-.23.54l-4.95,4.95c-.08.08-.17.14-.25.17s-.18.05-.28.05-.19-.02-.28-.05c-.08-.03-.17-.09-.25-.17L.22,1.3c-.15-.15-.22-.33-.22-.54S.07.38.22.22c.15-.15.33-.22.54-.22s.39.08.54.22l4.42,4.43Z'%20fill='%2308104e'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 12px 7px;
  transform: rotate(90deg);
}

.nav__megamenu button.nav__back:after {
  content: " ";
  position: absolute;
  left: calc(0px - var(--inner-inline-offset));
  right: calc(0px - var(--inner-inline-offset));
  bottom: 0;
  height: 1px;
  background-color: #08104e1a;
}

.nav__megamenu-holder {
  width: 100%;
  position: relative;
  overflow: hidden;
}

@media (min-width: 985.02px) {
  .nav__megamenu-holder {
    max-height: calc(
      100svh -
        (
          var(--header-height-bar, 34px) + var(--header-height-inner, 95px) +
            var(--admin-bar-height)
        )
    );
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 985px) {
  .nav__megamenu-holder {
    padding-right: 0;
  }
}

.nav__megamenu__primary {
  position: relative;
  max-width: 33.3333333333%;
  background-color: var(--theme-color-bg);
}

@media (min-width: 767.02px) {
  .nav__megamenu__primary {
    min-height: var(--min-height);
  }
}

@media (max-width: 985px) {
  .nav__megamenu__primary {
    max-width: 100%;
  }
}

.nav__megamenu__primary > ul {
  flex-direction: column;
  gap: 1px;
}

@media (max-width: 985px) {
  .nav__megamenu__primary > ul:before {
    content: attr(data-title);
    display: block;
    padding-block: 24px;
    font-size: 20px;
    line-height: 1.1;
    font-weight: 600;
  }
}

.nav__megamenu__primary > ul > li {
  padding-right: var(--grid-cols);
}

.nav__megamenu__primary > ul > li:first-child {
  padding-top: var(--grid-cols);
}

@media (max-width: 985px) {
  .nav__megamenu__primary > ul > li:first-child {
    padding-top: 0;
  }
}

.nav__megamenu__primary > ul > li:last-child {
  padding-bottom: var(--grid-cols);
}

@media (max-width: 985px) {
  .nav__megamenu__primary > ul > li.hover {
    position: fixed;
    inset: calc(
        var(--header-height-bar) + var(--header-height-inner) +
          var(--admin-bar-height) - 1px
      )
      0 0;
    max-height: auto;
    width: auto;
    background-color: var(--theme-color-bg);
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 100 !important;
    padding-inline: var(--inner-inline-offset);
  }

  .nav__megamenu__primary > ul > li.hover > button {
    margin-bottom: 16px;
  }

  .nav__megamenu__primary > ul > li.hover > a {
    padding-top: 24px;
    padding-bottom: 16px;
  }

  .nav__megamenu__primary > ul > li.hover > a:after,
  .nav__megamenu__primary > ul > li.hover > a strong:after {
    display: none;
  }

  .nav__megamenu__primary > ul > li.hover > a span {
    display: block;
  }
}

@media (max-width: 985px) {
  .nav__megamenu__primary > ul > li:not(.hover) > button {
    display: none;
  }
}

@media (max-width: 985px) {
  .nav__megamenu__primary > ul > li ~ li {
    margin-top: 8px;
  }
}

@media (hover) and (pointer: fine) {
  .nav__megamenu__primary
    > ul
    > li.menu-item-without-children:hover
    .nav__megamenu__tertiary {
    opacity: 1;
    visibility: visible;
  }
}

@media (min-width: 767.02px) {
  .nav__megamenu__primary
    > ul
    > li.menu-item-without-children
    .nav__megamenu__tertiary {
    left: 0;
  }

  .nav__megamenu__primary
    > ul
    > li.menu-item-without-children
    .nav__megamenu__tertiary:before {
    content: " ";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 100%;
    background: #fff;
    min-width: calc(100% + 5px);
  }
}

@media (max-width: 985px) {
  .nav__megamenu__primary
    > ul
    > li.menu-item-without-children.hover
    .nav__megamenu__tertiary {
    opacity: 1 !important;
    visibility: visible !important;
    max-height: 9999px !important;
  }

  .nav__megamenu__primary
    > ul
    > li.menu-item-without-children.hover
    .nav__megamenu__tertiary
    > ul
    > li {
    padding-top: 0;
  }
}

.nav__megamenu__primary > ul > li > a {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  z-index: 10;
  transition: background var(--theme-transition-duration);
  padding: clamp(12px, 1.1267605634vw + 7.7746478873px, 24px);
  gap: clamp(4px, 0.3755868545vw + 2.5915492958px, 8px);
}

@media (max-width: 985px) {
  .nav__megamenu__primary > ul > li > a {
    background-color: #fff;
    min-height: 72px;
    padding: 12px 20px 12px 24px;
  }
}

.nav__megamenu__primary > ul > li > a:before {
  content: " ";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  background-color: #ffcb08;
  opacity: 0;
  transition: opacity var(--theme-transition-duration);
  height: 6px;
}

@media (max-width: 985px) {
  .nav__megamenu__primary > ul > li > a:after {
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background-color: #ffcb08;
  }
}

.nav__megamenu__primary > ul > li > a strong {
  display: block;
  line-height: 1.1;
  font-size: 1.5rem;
}

@media (max-width: 1440px) {
  .nav__megamenu__primary > ul > li > a strong {
    font-size: clamp(1.1875rem, 0.4694835681vw + 1.0774647887rem, 1.5rem);
  }
}

@media (max-width: 985px) {
  .nav__megamenu__primary > ul > li > a strong {
    margin-block: auto;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .nav__megamenu__primary > ul > li > a strong:after {
    content: " ";
    display: block;
    min-width: 12px;
    width: 12px;
    height: 7px;
    background-image: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='a'%20data-name='Layer%201'%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2011.43%206.5'%3e%3cpath%20d='M5.72,4.65L10.15.22c.15-.15.33-.22.53-.21.2,0,.38.09.52.24.15.15.23.33.23.54s-.07.39-.23.54l-4.95,4.95c-.08.08-.17.14-.25.17s-.18.05-.28.05-.19-.02-.28-.05c-.08-.03-.17-.09-.25-.17L.22,1.3c-.15-.15-.22-.33-.22-.54S.07.38.22.22c.15-.15.33-.22.54-.22s.39.08.54.22l4.42,4.43Z'%20fill='%2308104e'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 12px 7px;
    transform: rotate(-90deg);
    margin-left: auto;
  }
}

.nav__megamenu__primary > ul > li > a span {
  display: block;
  opacity: 0.8;
}

@media (max-width: 985px) {
  .nav__megamenu__primary > ul > li > a span {
    display: none;
  }
}

.nav__megamenu__primary:not(:hover) > ul > li.current-menu-item > a {
  background-color: #fff;
  position: relative;
  z-index: 10;
}

.nav__megamenu__primary:not(:hover) > ul > li.current-menu-item > a:before {
  opacity: 1;
}

@media (max-width: 985px) {
  .nav__megamenu__primary:not(:hover) > ul > li.current-menu-item > a:before {
    opacity: 0;
  }
}

@media (hover) and (pointer: fine) {
  .nav__megamenu__primary > ul > li:hover {
    z-index: 10;
  }

  .nav__megamenu__primary > ul > li:hover > a {
    background-color: #fff;
    position: relative;
    z-index: 10;
  }

  .nav__megamenu__primary > ul > li:hover > a:before {
    opacity: 1;
  }

  .nav__megamenu__primary > ul > li:hover > .nav__megamenu__secondary,
  .nav__megamenu__primary
    > ul
    > li:hover
    > .nav__megamenu__secondary
    > ul
    > li.current-menu-item:not(:hover)
    > .nav__megamenu__tertiary {
    opacity: 1;
    visibility: visible;
  }
}

@media (hover) and (pointer: fine) and (max-width: 985px) {
  .nav__megamenu__primary > ul > li:hover > .nav__megamenu__secondary,
  .nav__megamenu__primary
    > ul
    > li:hover
    > .nav__megamenu__secondary
    > ul
    > li.current-menu-item:not(:hover)
    > .nav__megamenu__tertiary {
    max-height: 9999px;
  }
}

.nav__megamenu__secondary {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
}

@media (min-width: 767.02px) {
  .nav__megamenu__secondary {
    min-height: var(--min-height);
  }
}

@media (max-width: 985px) {
  .nav__megamenu__secondary {
    left: 0;
    position: relative;
    overflow: hidden;
    max-height: 0;
    min-height: 0;
    width: auto;
  }
}

.nav__megamenu__secondary > button {
  position: absolute;
  left: -4000px;
  opacity: 0;
}

.nav__megamenu__secondary > ul {
  flex-direction: column;
  gap: 4px;
}

@media (max-width: 985px) {
  .nav__megamenu__secondary > ul {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
}

.nav__megamenu__secondary > ul > li {
  padding-inline: var(--grid-cols);
}

.nav__megamenu__secondary > ul > li:first-child {
  padding-top: var(--grid-cols);
}

@media (max-width: 985px) {
  .nav__megamenu__secondary > ul > li:first-child {
    padding-top: 0;
  }
}

.nav__megamenu__secondary > ul > li:last-child {
  padding-bottom: var(--grid-cols);
}

.nav__megamenu__secondary > ul > li > a {
  line-height: 1.1;
  font-weight: 600;
  transition: background var(--theme-transition-duration);
  padding: clamp(5px, 0.4694835681vw + 3.2394366197px, 10px);
  font-size: 1.125rem;
}

@media (max-width: 1440px) {
  .nav__megamenu__secondary > ul > li > a {
    font-size: clamp(1rem, 0.1877934272vw + 0.9559859155rem, 1.125rem);
  }
}

@media (max-width: 985px) {
  .nav__megamenu__secondary > ul > li > a {
    background: none !important;
    padding: 8px 0;
    border-top: 1px solid rgba(8, 16, 78, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
  }
}

.nav__megamenu__secondary > ul > li > a i {
  display: none;
  width: 80px;
  max-width: 80px;
  min-width: 80px;
  aspect-ratio: 1/1;
}

@media (max-width: 985px) {
  .nav__megamenu__secondary > ul > li > a i {
    display: block;
    position: relative;
    overflow: hidden;
  }

  .nav__megamenu__secondary > ul > li > a i img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
  }
}

@media (max-width: 985px) {
  .nav__megamenu__secondary > ul > li > a span {
    display: block;
  }
}

.nav__megamenu__secondary:not(:hover) > ul > li.current-menu-item > a {
  background-color: #f5f5f5;
}

@media (hover) and (pointer: fine) {
  .nav__megamenu__secondary > ul > li:hover {
    z-index: 10;
  }

  .nav__megamenu__secondary > ul > li:hover > a {
    background-color: var(--theme-color-bg);
  }

  .nav__megamenu__secondary > ul > li:hover > .nav__megamenu__tertiary {
    opacity: 1;
    visibility: visible;
    z-index: 5;
  }
}

@media (hover) and (pointer: fine) and (max-width: 985px) {
  .nav__megamenu__secondary > ul > li:hover > .nav__megamenu__tertiary {
    max-height: 9999px;
  }
}

.nav__megamenu__tertiary {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
}

@media (min-width: 767.02px) {
  .nav__megamenu__tertiary {
    min-height: var(--min-height);
  }
}

@media (max-width: 985px) {
  .nav__megamenu__tertiary {
    left: 0;
    position: relative;
    overflow: hidden;
    max-height: 0;
    min-height: 0;
  }
}

.nav__megamenu__tertiary:after {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: var(--theme-color-bg);
}

@media (max-width: 985px) {
  .nav__megamenu__tertiary:after {
    width: auto;
    right: 0;
    top: auto;
    height: 1px;
  }
}

.nav__megamenu__tertiary img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform var(--theme-transition-duration);
}

.nav__megamenu__tertiary a:not([class]) {
  aspect-ratio: 1/1;
  display: block;
  font-size: 0;
  line-height: 0;
  text-decoration: none;
  z-index: 2;
  position: relative;
  overflow: hidden;
}

.nav__megamenu__tertiary a:not([class]) img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.nav__megamenu__tertiary a.btn {
  display: inline-flex;
  background-color: #ffcb08;
  border-color: #ffcb08;
  color: #000;
}

.nav__megamenu__tertiary a.btn:hover {
  background-color: #000;
  border-color: #000;
  color: #f5f5f5;
}
@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .nav__megamenu__tertiary a.btn {
    width: 100%;
  }
}

.nav__megamenu__tertiary > ul {
  display: block;
}

@media (max-width: 985px) {
  .nav__megamenu__tertiary > ul {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
}

.nav__megamenu__tertiary > ul > li {
    padding-left: var(--grid-cols);
    padding-right: var(--grid-cols);
}
@media (max-width: 985px) {
  .nav__megamenu__tertiary > ul > li {
    padding-left: 0;
    padding-right: 0;
  }
}

.nav__megamenu__tertiary > ul > li:first-child {
  padding-top: var(--grid-cols);
}

@media (max-width: 985px) {
  .nav__megamenu__tertiary > ul > li:first-child {
    max-width: 300px;
  }
}

.nav__megamenu__tertiary > ul > li:last-child {
  padding-bottom: var(--grid-cols);
  margin-top: clamp(12px, 1.0328638498vw + 8.1267605634px, 23px);
}

.nav__megamenu__tertiary > ul > li:nth-child(2){
	padding-top: 20px;
}

@media (max-width: 985px) {
  .nav__megamenu__tertiary > ul > li:last-child {
    padding-bottom: 0;
  }
}

@media (hover) and (pointer: fine) {
  .nav__megamenu__tertiary a:hover img {
    transform: scale(1.1);
  }
}

body.is-touch .nav > ul > li.hover > a {
  color: var(--theme-color-secondary);
}

body.is-touch .nav > ul > li.hover.menu-item-has-children > a:after {
  transform: rotate(180deg);
}

body.is-touch .nav > ul > li.hover.menu-item-has-children > a:before {
  display: block;
}

body.is-touch .nav > ul > li.hover > .nav__megamenu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

@media (max-width: 985px) {
  body.is-touch .nav > ul > li.hover > .nav__megamenu {
    max-height: 9999px;
  }
}

body.is-touch
  .nav
  > ul
  > li.hover
  > .nav__megamenu
  .nav__megamenu__primary
  > ul
  > li.current-menu-item:not(.hover)
  > .nav__megamenu__secondary,
body.is-touch
  .nav
  > ul
  > li.hover
  > .nav__megamenu
  .nav__megamenu__primary
  > ul
  > li.current-menu-item:not(.hover)
  > .nav__megamenu__secondary
  > ul
  > li.current-menu-item:not(.hover)
  > .nav__megamenu__tertiary {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 985px) {
  body.is-touch
    .nav
    > ul
    > li.hover
    > .nav__megamenu
    .nav__megamenu__primary
    > ul
    > li.current-menu-item:not(.hover)
    > .nav__megamenu__secondary,
  body.is-touch
    .nav
    > ul
    > li.hover
    > .nav__megamenu
    .nav__megamenu__primary
    > ul
    > li.current-menu-item:not(.hover)
    > .nav__megamenu__secondary
    > ul
    > li.current-menu-item:not(.hover)
    > .nav__megamenu__tertiary {
    opacity: 0;
    visibility: hidden;
  }
}

body.is-touch .nav__megamenu__primary > ul > li.hover {
  z-index: 10;
}

body.is-touch .nav__megamenu__primary > ul > li.hover > a {
  background-color: #fff;
  position: relative;
  z-index: 10;
}

body.is-touch .nav__megamenu__primary > ul > li.hover > a:before {
  opacity: 1;
}

body.is-touch
  .nav__megamenu__primary
  > ul
  > li.hover
  > .nav__megamenu__secondary,
body.is-touch
  .nav__megamenu__primary
  > ul
  > li.hover
  > .nav__megamenu__secondary
  > ul
  > li
  > .nav__megamenu__tertiary {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 985px) {
  body.is-touch
    .nav__megamenu__primary
    > ul
    > li.hover
    > .nav__megamenu__secondary,
  body.is-touch
    .nav__megamenu__primary
    > ul
    > li.hover
    > .nav__megamenu__secondary
    > ul
    > li
    > .nav__megamenu__tertiary {
    opacity: 0;
    visibility: hidden;
  }
}

body.is-touch .nav__megamenu__secondary > ul > li.hover {
  z-index: 10;
}

body.is-touch .nav__megamenu__secondary > ul > li.hover > a {
  background-color: var(--theme-color-bg);
}

body.is-touch
  .nav__megamenu__secondary
  > ul
  > li.hover
  > .nav__megamenu__tertiary {
  opacity: 1;
  visibility: visible;
  z-index: 5;
  margin-bottom: 20px;
}

@media (max-width: 985px) {
  body.is-touch .nav__megamenu li.hover > .nav__megamenu__secondary,
  body.is-touch .nav__megamenu li.hover > .nav__megamenu__tertiary {
    max-height: 9999px;
    opacity: 1 !important;
    visibility: visible !important;
  }
}

@media (max-width: 985px) {
  .nav-utilities {
    display: none;
    margin-inline: calc(0px - var(--inner-inline-offset));
    padding-inline: var(--inner-inline-offset);
    background-color: var(--theme-color-bg);
    padding-block: 10px;
  }
}

.nav-utilities > ul {
  gap: clamp(16px, 1.5023474178vw + 10.3661971831px, 32px);
}

@media (max-width: 985px) {
  .nav-utilities > ul {
    gap: 0;
    flex-direction: column;
  }
}

.nav-utilities li {
  line-height: 1;
  font-size: 0.875rem;
}

@media (max-width: 1440px) {
  .nav-utilities li {
    font-size: clamp(0.75rem, 0.1877934272vw + 0.7059859155rem, 0.875rem);
  }
}

@media (max-width: 985px) {
  .nav-utilities li {
    font-size: 16px;
  }
}

.nav-utilities li.current-menu-item > a {
  color: var(--theme-color-secondary);
}

@media (max-width: 985px) {
  .nav-utilities li ~ li {
    border-top: 1px solid rgba(8, 16, 78, 0.1);
  }
}

.nav-utilities a {
  padding-block: 10px;
  transition: color var(--theme-transition-duration);
  color: #f5f5f5;
}

@media (max-width: 985px) {
  .nav-utilities a {
    padding-block: 16px;
  }
  .nav-utilities a,
  .nav > ul > li > a {
    color: #000;
  }
  .nav > ul > li.menu-item-has-children > a:after {
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='a' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11.43 6.5'%3E%3Cpath d='M5.72,4.65L10.15.22c.15-.15.33-.22.53-.21.2,0,.38.09.52.24.15.15.23.33.23.54s-.07.39-.23.54l-4.95,4.95c-.08.08-.17.14-.25.17s-.18.05-.28.05-.19-.02-.28-.05c-.08-.03-.17-.09-.25-.17L.22,1.3c-.15-.15-.22-.33-.22-.54S.07.38.22.22c.15-.15.33-.22.54-.22s.39.08.54.22l4.42,4.43Z' fill='%2300000'/%3E%3C/svg%3E");
  }
}

@media (hover: hover) and (pointer: fine) {
  .nav-utilities a:where(:hover, :focus-visible) {
    color: var(--theme-color-secondary);
  }
}

.nav-socials > ul {
  gap: clamp(8px, 0.7511737089vw + 5.1830985915px, 16px);
}

.nav-footer-copyright > ul {
  gap: clamp(12px, 1.1267605634vw + 7.7746478873px, 24px);
}

.nav-footer-copyright a {
  transition: color var(--theme-transition-duration);
}

@media (hover: hover) and (pointer: fine) {
  .nav-footer-copyright a:where(:hover, :focus-visible) {
    color: var(--theme-color-tertiary);
  }
}

.nav-footer-inner > ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: clamp(8px, 0.7511737089vw + 5.1830985915px, 16px);
  column-gap: clamp(8px, 0.7511737089vw + 5.1830985915px, 16px);
  row-gap: clamp(24px, 0.7511737089vw + 21.1830985915px, 32px);
}

@media (max-width: 985px) {
  .nav-footer-inner > ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .nav-footer-inner > ul {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
}

.nav-footer-inner > ul > li > a {
  font-weight: 600;
  text-transform: uppercase;
  opacity: 0.6;
  line-height: 1.6;
  pointer-events: none;
  margin-bottom: clamp(12px, 1.3145539906vw + 7.0704225352px, 26px);
}

.nav-footer-inner ul ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-footer-inner a {
  transition: color var(--theme-transition-duration);
}

@media (hover: hover) and (pointer: fine) {
  .nav-footer-inner a:where(:hover, :focus-visible) {
    color: var(--theme-color-tertiary);
  }
}

.nav-share {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.nav-share > ul {
  gap: 15px;
}

.nav-share p {
  margin: 0;
  font-size: 1.125rem;
}

@media (max-width: 1440px) {
  .nav-share p {
    font-size: clamp(1rem, 0.1877934272vw + 0.9559859155rem, 1.125rem);
  }
}

.nav-share a {
  width: var(--size);
  min-width: var(--size);
  height: var(--size);
  border: 1px solid var(--theme-color-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--theme-transition-duration);
  --size: clamp(28px, 0.7511737089vw + 25.1830985915px, 36px);
}

@media (hover: hover) and (pointer: fine) {
  .nav-share a:where(:hover, :focus-visible) {
    background-color: var(--theme-color-tertiary);
  }
}

.nav-pagination {
  position: relative;
  min-height: var(--prev-next-size);
  display: flex;
  align-items: center;
  padding-inline: clamp(60px, 1.8779342723vw + 52.9577464789px, 80px);
}

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .nav-pagination {
    flex-wrap: wrap;
    gap: 18px;
    padding: 0;
  }
}

.nav-pagination > a {
  display: flex;
  position: absolute;
  top: 0;
  align-items: center;
  justify-content: center;
  width: var(--prev-next-size);
  height: var(--prev-next-size);
  border: 1px solid var(--theme-color-tertiary);
  transition: background var(--theme-transition-duration);
}

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .nav-pagination > a {
    position: relative;
    flex-grow: 1;
  }
}

.nav-pagination__prev {
  left: 0;
}

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .nav-pagination__prev {
    margin-right: auto;
  }
}

.nav-pagination__next {
  right: 0;
}

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .nav-pagination__next {
    margin-left: auto;
  }
}

.nav-pagination > ul {
  list-style: none;
  justify-content: center;
  width: 100%;
  gap: 14px;
  font-weight: 600;
  line-height: 1.3;
  font-size: 1.25rem;
}

@media (max-width: 1440px) {
  .nav-pagination > ul {
    font-size: clamp(1.125rem, 0.1877934272vw + 1.0809859155rem, 1.25rem);
  }
}

.nav-pagination > ul li {
  display: flex;
  align-items: flex-end;
}

.nav-pagination > ul a {
  text-decoration: none;
  transition: color var(--theme-transition-duration);
}

@media (hover: hover) and (pointer: fine) {
  .nav-pagination > ul a:where(:hover, :focus-visible) {
    color: var(--theme-color-tertiary);
  }
}

.nav-pagination > ul a.next {
  margin-left: 16px;
}

.nav-pagination > ul a.prev {
  margin-right: 16px;
}

.nav-pagination > ul span.current {
  color: var(--theme-color-tertiary);
}

@media (hover) and (pointer: fine) {
  .nav-pagination > a:hover {
    background-color: var(--theme-color-tertiary);
  }

  .nav-pagination > .nav-pagination__prev:hover > i.ico-arrow-link svg {
    transform: translate(-5px);
  }

  .nav-pagination > .nav-pagination__next:hover > i.ico-arrow-link svg {
    transform: translate(5px);
  }
}

.nav-pagination {
  --prev-next-size: clamp(40px, 1.5023474178vw + 34.3661971831px, 56px);
}

.block-checks ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, 1.1267605634vw + 7.7746478873px, 24px);
}

.block-checks li {
  display: flex;
  align-items: center;
  text-align: left;
  gap: clamp(4px, 0.3755868545vw + 2.5915492958px, 8px);
}

.block-checks p {
  margin: 0 !important;
}

.block-review {
  width: 100%;
  gap: clamp(10px, 0.9389671362vw + 6.4788732394px, 20px);
}

.block-review__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--gap);
}

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .block-review__grid {
    flex-direction: column;
  }
}

.block-review__box {
  width: auto;
  display: flex;
  align-items: center;
}

.block-review__box-icon {
  min-width: clamp(108px, 2.6291079812vw + 98.1408450704px, 136px);
  max-width: clamp(108px, 2.6291079812vw + 98.1408450704px, 136px);
  width: 100%;
  position: relative;
}

.block-review__box-icon img {
  display: block;
  width: 100%;
  height: auto;
}

.block-review__box--review {
  background-color: #f5f5f5;
  color: #6a6a6a;
  border-top: 4px solid #ffcb08;
  padding-inline: clamp(12px, 1.1267605634vw + 7.7746478873px, 24px);
  padding-block: clamp(8px, 0.7511737089vw + 5.1830985915px, 16px);
}

.block-review__box--review .block-review__box-icon {
  width: 54px;
  min-width: 54px;
  height: 54px;
}

.block-review__box--review .block-review__box-stars {
  display: flex;
  flex-direction: column;
  gap: 7px;
  width: calc(100% - 48px);
  padding-left: 8px;
  line-height: 1.2;
  font-size: 12px;
}

.block-review__box--review .block-review__box-stars h6 {
  font-size: 15px;
  margin-bottom: 0;
}

.block-review {
  --gap: clamp(12px, 1.220657277vw + 7.4225352113px, 25px);
}

.block-review-alt {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 0.9389671362vw + 6.4788732394px, 20px);
}

.block-review-alt__head h6 {
  text-transform: uppercase;
  color: #fff9;
  font-weight: 600;
  line-height: 1.6;
  font-size: 1rem;
}

@media (max-width: 1440px) {
  .block-review-alt__head h6 {
    font-size: clamp(0.875rem, 0.1877934272vw + 0.8309859155rem, 1rem);
  }
}

.block-review-alt__grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
}

.block-review-alt__box {
  width: 130px;
  min-width: var(--box-width);
  display: flex;
  align-items: center;
}

.block-review-alt__box-icon {
  position: relative;
  overflow: hidden;
}

.block-review-alt__box-icon img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

.block-review-alt__box-icon {
  width: 100%;
  height: 110px;
  position: relative;
}

.block-review-alt__box--review {
  width: 230px; /*calc(100% - (var(--box-width) + var(--gap) + 1px))*/
}

.block-review-alt__box--review .block-review-alt__box-icon {
  width: 48px;
  height: 48px;
}

.block-review-alt__box--review .block-review-alt__box-stars {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: calc(100% - 48px);
  padding-left: 8px;
  line-height: 1.2;
}

.block-review-alt {
  --box-width: clamp(60px, 2.2535211268vw + 51.5492957746px, 84px);
  --gap: clamp(4px, 0.3755868545vw + 2.5915492958px, 8px);
}

.block-review-main {
  display: flex;
  flex-direction: column;
  background-color: #f5f5f5;
  color: var(--theme-color-primary);
  position: relative;
  overflow: hidden;
  padding-inline: var(--padding-inline);
  padding-block: var(--padding-block);
  gap: var(--gap);
}

.block-review-main:before {
  content: " ";
  position: absolute;
  top: calc(var(--padding-block) - 11px);
  right: calc(var(--padding-inline) - 3px);
  background-image: url("data:image/svg+xml,%3csvg%20width='46'%20height='36'%20viewBox='0%200%2046%2036'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20opacity='0.1'%20d='M16.4648%2035.625H0V23.8477C0%2019.082%200.410156%2015.332%201.23047%2012.5977C2.08984%209.82422%203.65234%207.34375%205.91797%205.15625C8.18359%202.96875%2011.0742%201.25%2014.5898%200L17.8125%206.79688C14.5312%207.89063%2012.168%209.41406%2010.7227%2011.3672C9.31641%2013.3203%208.57422%2015.918%208.49609%2019.1602H16.4648V35.625ZM43.9453%2035.625H27.4805V23.8477C27.4805%2019.043%2027.8906%2015.2734%2028.7109%2012.5391C29.5703%209.80469%2031.1328%207.34375%2033.3984%205.15625C35.7031%202.96875%2038.5938%201.25%2042.0703%200L45.293%206.79688C42.0117%207.89063%2039.6484%209.41406%2038.2031%2011.3672C36.7969%2013.3203%2036.0547%2015.918%2035.9766%2019.1602H43.9453V35.625Z'%20fill='%230F2495'/%3e%3c/svg%3e");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: clamp(36px, 0.9389671362vw + 32.4788732394px, 46px);
  height: clamp(26px, 0.9389671362vw + 22.4788732394px, 36px);
}

.block-review-main:after {
  content: " ";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 6px;
  background-color: #ffcb08;
}

.block-review-main__head {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  padding-right: clamp(40px, 0.9389671362vw + 36.4788732394px, 50px);
}

.block-review-main__head h5 {
  line-height: 1.1;
  margin: 0;
  font-size: 1.25rem;
}

@media (max-width: 1440px) {
  .block-review-main__head h5 {
    font-size: clamp(1rem, 0.3755868545vw + 0.911971831rem, 1.25rem);
  }
}

.block-review-main__content {
  padding-block: 8px;
}

.block-review-main__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(8, 16, 78, 0.1);
  padding-top: var(--gap);
}

.block-review-main__foot > * {
  margin: 0;
}

.block-review-main__foot h6 {
  font-size: 1rem;
}

@media (max-width: 1440px) {
  .block-review-main__foot h6 {
    font-size: clamp(0.875rem, 0.1877934272vw + 0.8309859155rem, 1rem);
  }
}

.block-review-main__foot p {
  opacity: 0.6;
  display: none;
  font-size: 0.875rem;
}

@media (max-width: 1440px) {
  .block-review-main__foot p {
    font-size: clamp(0.75rem, 0.1877934272vw + 0.7059859155rem, 0.875rem);
  }
}

.block-review-main {
  --padding-block: clamp(20px, 0.9389671362vw + 16.4788732394px, 30px);
  --padding-inline: clamp(22px, 0.9389671362vw + 18.4788732394px, 32px);
  --gap: clamp(10px, 0.5633802817vw + 7.8873239437px, 16px);
}

.block-content-boxes {
  --gap: 8px;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

.active .block-content-boxes__box-head {
  margin-bottom: 12px;
}

.active .block-content-boxes__box-head i svg {
  transform: rotate(-90deg);
}

.active .block-content-boxes__box-wrap {
  grid-template-rows: 1fr;
}

.block-content-boxes__box {
  display: flex;
  gap: var(--gap);
  padding-inline: clamp(20px, 1.1267605634vw + 15.7746478873px, 32px);
  padding-block: clamp(16px, 0.7511737089vw + 13.1830985915px, 24px);
}

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .block-content-boxes__box {
    flex-direction: column;
  }
}

.block-content-boxes__box-icon {
  width: 32px;
  min-width: 32px;
}

.block-content-boxes__box-head {
  cursor: pointer;
  display: flex;
  align-items: center;
  width: 100%;
  transition: margin var(--theme-transition-duration);
}

.block-content-boxes__box-head > * {
  pointer-events: none;
}

.block-content-boxes__box-head h5 {
  margin: 0 auto 0 0;
}

.block-content-boxes__box-head i svg {
  transform: rotate(90deg);
  transition: transform var(--theme-transition-duration);
}

.block-content-boxes__box-entry > *:last-child {
  margin-bottom: 0;
}

.block-content-boxes__box-entry {
  width: calc(100% - 32px);
}

.block-content-boxes__box-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--theme-transition-duration);
}

.block-content-boxes__box-wrap-holder {
  position: relative;
  overflow: hidden;
}

.block-progress {
  width: 100%;
  max-width: 370px;
  background-color: #fff;
  box-shadow: inset 0 0 0 8px var(--theme-color-bg);
  display: flex;
  flex-direction: column;
  padding-block: clamp(20px, 1.5023474178vw + 14.3661971831px, 36px);
  padding-inline: clamp(20px, 0.9389671362vw + 16.4788732394px, 30px);
  gap: clamp(8px, 0.7511737089vw + 5.1830985915px, 16px);
}

.block-progress__row {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-right: 10px;
}

.block-progress__row p {
  margin: 0;
  font-weight: 500;
}

.block-progress__row strong {
  font-weight: 600;
  color: #ffcb08;
}

.block-progress__row label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  gap: 12px;
}

.block-progress__progress {
  width: 100%;
  height: 8px;
  background-color: var(--theme-color-bg);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.block-progress__progress:after {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--progress, 0%);
  background-color: #ffcb08;
  border-radius: inherit;
}

.block-video {
  width: 100%;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/0.673;
  z-index: 10;
}

.block-video a {
  position: relative;
  overflow: hidden;
}

.block-video a img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.block-video a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-decoration: none;
}

@media (hover) and (pointer: fine) {
  .block-video a:hover img {
    transform: scale(1.1);
  }
}

.block-video a > * {
  pointer-events: none;
}

.block-video i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.block-video span {
  position: absolute;
  z-index: 10;
  left: 10px;
  bottom: 10px;
  padding: 2px 8px;
  background-color: #08104ecc;
  color: #fff;
  font-style: italic;
  font-weight: 500;
}

.block-video img {
  transition: transform var(--theme-transition-duration);
}

.block-video:after {
  content: " ";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 6px;
  background-color: #ffcb08;
}

.block-list-locations ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.block-list-locations a {
  font-weight: 500;
  background-color: #3488ff1a;
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  transition:
    background var(--theme-transition-duration),
    color var(--theme-transition-duration);
  padding-inline: clamp(10px, 0.5633802817vw + 7.8873239437px, 16px);
  padding-block: clamp(4px, 0.2816901408vw + 2.9436619718px, 7px);
}

@media (hover: hover) and (pointer: fine) {
  .block-list-locations a:where(:hover, :focus-visible) {
    background-color: var(--theme-color-primary);
    color: #fff;
  }
}

.block-testimonial {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-inline: clamp(20px, 1.1267605634vw + 15.7746478873px, 32px);
  padding-top: clamp(18px, 1.1267605634vw + 13.7746478873px, 30px);
  padding-bottom: clamp(30px, 2.9107981221vw + 19.0845070423px, 61px);
  margin-bottom: clamp(20px, 1.0328638498vw + 16.1267605634px, 31px);
  margin-top: clamp(20px, 1.8779342723vw + 12.9577464789px, 40px);
  gap: clamp(16px, 0.7511737089vw + 13.1830985915px, 24px);
}

.block-testimonial:before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 6px;
  background-color: var(--theme-color-tertiary);
}

.block-testimonial:after {
  content: " ";
  position: absolute;
  background-image: url("data:image/svg+xml,%3csvg%20width='46'%20height='36'%20viewBox='0%200%2046%2036'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20opacity='0.1'%20d='M16.4648%2035.625H0V23.8477C0%2019.082%200.410156%2015.332%201.23047%2012.5977C2.08984%209.82422%203.65234%207.34375%205.91797%205.15625C8.18359%202.96875%2011.0742%201.25%2014.5898%200L17.8125%206.79688C14.5312%207.89063%2012.168%209.41406%2010.7227%2011.3672C9.31641%2013.3203%208.57422%2015.918%208.49609%2019.1602H16.4648V35.625ZM43.9453%2035.625H27.4805V23.8477C27.4805%2019.043%2027.8906%2015.2734%2028.7109%2012.5391C29.5703%209.80469%2031.1328%207.34375%2033.3984%205.15625C35.7031%202.96875%2038.5938%201.25%2042.0703%200L45.293%206.79688C42.0117%207.89063%2039.6484%209.41406%2038.2031%2011.3672C36.7969%2013.3203%2036.0547%2015.918%2035.9766%2019.1602H43.9453V35.625Z'%20fill='%230F2495'/%3e%3c/svg%3e");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: clamp(36px, 0.9389671362vw + 32.4788732394px, 46px);
  height: clamp(26px, 0.9389671362vw + 22.4788732394px, 36px);
  right: clamp(20px, 4.7887323944vw + 2.0422535211px, 71px);
  top: clamp(10px, 0.9389671362vw + 6.4788732394px, 20px);
}

.block-testimonial__head h4 {
  line-height: 1.1;
  font-weight: 700;
  font-size: 1.25rem;
}

@media (max-width: 1440px) {
  .block-testimonial__head h4 {
    font-size: clamp(1rem, 0.3755868545vw + 0.911971831rem, 1.25rem);
  }
}

.block-testimonial__head p {
  line-height: 1.4;
  opacity: 0.8;
  font-size: 1rem;
}

@media (max-width: 1440px) {
  .block-testimonial__head p {
    font-size: clamp(0.875rem, 0.1877934272vw + 0.8309859155rem, 1rem);
  }
}

.block-testimonial__head > *:first-child {
  padding-right: clamp(60px, 3.7558685446vw + 45.9154929577px, 100px);
}

.block-testimonial__foot {
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(8, 16, 78, 0.1);
  padding-top: clamp(10px, 0.5633802817vw + 7.8873239437px, 16px);
}

.block-testimonial__foot > * {
  margin: 0;
}

.block-testimonial__foot h6 {
  margin-right: auto;
  font-weight: 600;
  line-height: 1.1;
  font-size: 1rem;
}

@media (max-width: 1440px) {
  .block-testimonial__foot h6 {
    font-size: clamp(0.875rem, 0.1877934272vw + 0.8309859155rem, 1rem);
  }
}

.block-testimonial__foot p {
  margin-left: auto;
  opacity: 0.6;
  font-size: 0.875rem;
}

@media (max-width: 1440px) {
  .block-testimonial__foot p {
    font-size: clamp(0.75rem, 0.1877934272vw + 0.7059859155rem, 0.875rem);
  }
}

.block-callout {
  width: 100%;
  background-color: #fff;
  box-shadow: inset 0 0 0 8px var(--theme-color-bg);
  display: flex;
  align-items: center;
  padding-block: 20px;
}

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .block-callout {
    flex-direction: column-reverse;
    gap: 20px;
  }
}

.block-callout {
  padding-left: clamp(20px, 1.8779342723vw + 12.9577464789px, 40px);
  padding-right: clamp(20px, 0.9389671362vw + 16.4788732394px, 30px);
}

.block-callout__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 0.7511737089vw + 9.1830985915px, 20px);
}

@media (min-width: 767.02px) {
  .block-callout__content {
    width: calc(100% - var(--image-width));
    padding-right: clamp(20px, 1.8779342723vw + 12.9577464789px, 40px);
  }
}

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .block-callout__content {
    text-align: center;
  }
}

.block-callout__content-title h3 {
  line-height: 1.1;
  font-size: 2.25rem;
}

@media (max-width: 1440px) {
  .block-callout__content-title h3 {
    font-size: clamp(1.75rem, 0.7511737089vw + 1.573943662rem, 2.25rem);
  }
}

.block-callout__image {
  aspect-ratio: 1/1;
  width: var(--image-width);
  max-width: var(--image-width);
  position: relative;
  overflow: hidden;
}

.block-callout__image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.block-callout {
  --image-width: clamp(120px, 5.2582159624vw + 100.2816901408px, 176px);
}

.block-carrers {
  width: 100%;
  max-width: 744px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: clamp(5px, 0.4694835681vw + 3.2394366197px, 10px);
}

.block-carrers__head {
  background-color: var(--theme-color-secondary-alt);
  color: #fff;
  padding-inline: clamp(12px, 0.7511737089vw + 9.1830985915px, 20px);
  padding-block: clamp(8px, 0.4694835681vw + 6.2394366197px, 13px);
}

.block-carrers__head h5 {
  font-weight: 500;
}

.block-carrers__career {
  border: 1px solid var(--theme-color-bg);
  background-color: #fff;
  color: var(--theme-color-primary);
  padding: clamp(12px, 0.7511737089vw + 9.1830985915px, 20px);
}

.block-carrers__career > *:last-child {
  margin-bottom: 0;
}

.block-carrers__career-head {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
  gap: 10px;
}

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .block-carrers__career-head {
    flex-direction: column;
    margin-bottom: 20px;
    text-align: center;
  }
}

.block-carrers__career-head h5 {
  margin: 0 auto 0 0;
  font-weight: 700;
}

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .block-carrers__career-head h5 {
    margin: 0;
  }
}

.block-carrers__career-list {
  margin-bottom: 20px;
}

.block-carrers__career-list ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(8px, 0.7511737089vw + 5.1830985915px, 16px);
}

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .block-carrers__career-list ul {
    flex-direction: column;
  }
}

.block-carrers__career-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #3488ff1a;
  padding: 7px 16px;
}

.block-carrers__career-entry {
  font-size: 1.125rem;
}

@media (max-width: 1440px) {
  .block-carrers__career-entry {
    font-size: clamp(1rem, 0.1877934272vw + 0.9559859155rem, 1.125rem);
  }
}

.block-carrers__career-entry {
  padding-bottom: 8px;
}

.block-carrers__career-entry > * {
  opacity: 0.8;
}

.block-carrers__career-entry p {
  max-width: 558px;
}

.block-form-popup {
  cursor: pointer;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition-property: opacity, visibility;
  transition-duration: var(--theme-transition-duration);
  background-color: #08104ecc;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  z-index: 9999;
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.block-form-popup .gform_title {
  text-align: center;
}

.block-form-popup > button {
  position: absolute;
  right: 20px;
  top: calc(var(--admin-bar-height) + 20px);
  color: #fff;
  width: 24px;
  height: 24px;
  border: 0;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: opacity var(--theme-transition-duration);
}

@media (hover: hover) and (pointer: fine) {
  .block-form-popup > button:where(:hover, :focus-visible) {
    opacity: 1;
  }
}

.block-form-popup > button svg {
  display: block;
  width: inherit;
  height: inherit;
}

.block-form-popup .form-main {
  cursor: default;
  max-width: 640px;
  margin-inline: auto;
}

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .block-form-popup .form-main {
    max-width: 100%;
  }
}

.block-form-popup__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100%;
  padding-block: 64px;
}

.block-form-popup.active {
  opacity: 1;
  visibility: visible;
}

.accordion-main {
  width: 100%;
}

.active .accordion-main__head i.ico-arrow-alt svg {
  transform: rotate(180deg);
}

.active .accordion-main__body {
  grid-template-rows: 1fr;
}

.active .accordion-main__body-wrap {
  padding-top: 16px;
}

.accordion-main__group {
  padding-block: clamp(16px, 1.5023474178vw + 10.3661971831px, 32px);
}

.accordion-main__group:first-child {
  padding-top: 0;
}

.accordion-main__group:last-child {
  padding-bottom: 0;
}

.accordion-main__group ~ .accordion-main__group {
  border-top: 1px solid var(--theme-color-bg);
}

.accordion-main__head {
  cursor: pointer;
  display: flex;
  align-items: center;
}

.accordion-main__head > * {
  pointer-events: none;
  margin-bottom: 0;
}

.accordion-main__head i {
  margin-left: auto;
}

.accordion-main__head {
  gap: clamp(16px, 1.5023474178vw + 10.3661971831px, 32px);
}

.accordion-main__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--theme-transition-duration);
}

.accordion-main__body-wrap {
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: padding var(--theme-transition-duration);
  font-size: 1.125rem;
}

@media (max-width: 1440px) {
  .accordion-main__body-wrap {
    font-size: clamp(1rem, 0.1877934272vw + 0.9559859155rem, 1.125rem);
  }
}

.form-main {
  background-color: #fff;
  color: #2229;
  min-height: 100%;
  padding-inline: clamp(20px, 1.8779342723vw + 12.9577464789px, 40px);
  padding-block: clamp(25px, 1.4084507042vw + 19.7183098592px, 40px);
}

.form-main .gform_confirmation_message {
  text-align: center;
  width: 100%;
  color: #000000;
}

.form-main__head {
  text-align: center;
  margin-bottom: clamp(15px, 1.4084507042vw + 9.7183098592px, 30px);
}

.form-main--has-alt-submit div.gform_wrapper .gform_footer {
  margin: 0;
  height: 0;
}

.form-main--has-alt-submit div.gform_wrapper .gform_footer > span {
  width: 32px;
  height: 32px;
  margin: -16px 0 0 -16px;
  pointer-events: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.form-main--has-alt-submit div.gform_wrapper .gform_footer > *:not(span) {
  position: absolute;
  left: -4000px;
  opacity: 0;
}

.form-main--alt {
  max-width: 744px;
  margin-inline: auto;
  background-color: #fff;
  padding: clamp(20px, 1.8779342723vw + 12.9577464789px, 40px);
}

.form-main div.gform_wrapper .gform_required_legend,
.wp-block-group div.gform_wrapper .gform_required_legend {
  display: none;
}

.form-main div.gform_wrapper .gform_heading,
.wp-block-group div.gform_wrapper .gform_heading {
  margin-bottom: clamp(8px, 0.2816901408vw + 6.9436619718px, 11px);
}

.form-main div.gform_wrapper .gform_title,
.wp-block-group div.gform_wrapper .gform_title {
  font-weight: 600;
  color: var(--theme-color-primary);
}

.form-main div.gform_wrapper .gform_fields,
.wp-block-group div.gform_wrapper .gform_fields {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  width: auto;
  margin: -4px;
}

.form-main div.gform_wrapper .gform_fields > *,
.wp-block-group div.gform_wrapper .gform_fields > * {
  padding: 4px;
  width: 100%;
}

.form-main div.gform_wrapper .gform_fields > .gfield--width-half,
.wp-block-group div.gform_wrapper .gform_fields > .gfield--width-half {
  width: 50%;
}

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .form-main div.gform_wrapper .gform_fields > .gfield--width-half,
  .wp-block-group div.gform_wrapper .gform_fields > .gfield--width-half {
    width: 100%;
  }
}

.form-main
  div.gform_wrapper
  .ginput_container
  input:not([type="radio"], [type="checkbox"]),
.form-main div.gform_wrapper .ginput_container textarea,
.form-main div.gform_wrapper .ginput_container select,
.wp-block-group
  div.gform_wrapper
  .ginput_container
  input:not([type="radio"], [type="checkbox"]),
.wp-block-group div.gform_wrapper .ginput_container textarea,
.wp-block-group div.gform_wrapper .ginput_container select {
  width: 100%;
  line-height: 1.1;
  background-color: var(--theme-color-bg2);
  color: #2229;
  border: 1px solid var(--theme-color-bg2);
  border-radius: 0;
  align-items: center;
  outline: none;
  transition-property: color, border;
}

.form-main
  div.gform_wrapper
  .ginput_container
  input:not([type="radio"], [type="checkbox"]):focus,
.form-main div.gform_wrapper .ginput_container textarea:focus,
.form-main div.gform_wrapper .ginput_container select:focus,
.wp-block-group
  div.gform_wrapper
  .ginput_container
  input:not([type="radio"], [type="checkbox"]):focus,
.wp-block-group div.gform_wrapper .ginput_container textarea:focus,
.wp-block-group div.gform_wrapper .ginput_container select:focus {
  border-color: var(--theme-color-primary);
  color: var(--theme-color-primary);
}

.form-main
  div.gform_wrapper
  .ginput_container
  input:not([type="radio"], [type="checkbox"]),
.form-main div.gform_wrapper .ginput_container textarea,
.form-main div.gform_wrapper .ginput_container select,
.wp-block-group
  div.gform_wrapper
  .ginput_container
  input:not([type="radio"], [type="checkbox"]),
.wp-block-group div.gform_wrapper .ginput_container textarea,
.wp-block-group div.gform_wrapper .ginput_container select {
  height: clamp(36px, 0.9389671362vw + 32.4788732394px, 46px);
  padding-inline: clamp(8px, 0.5633802817vw + 5.8873239437px, 14px);
  font-size: 0.875rem;
}

@media (max-width: 1440px) {
  .form-main
    div.gform_wrapper
    .ginput_container
    input:not([type="radio"], [type="checkbox"]),
  .form-main div.gform_wrapper .ginput_container textarea,
  .form-main div.gform_wrapper .ginput_container select,
  .wp-block-group
    div.gform_wrapper
    .ginput_container
    input:not([type="radio"], [type="checkbox"]),
  .wp-block-group div.gform_wrapper .ginput_container textarea,
  .wp-block-group div.gform_wrapper .ginput_container select {
    font-size: clamp(0.75rem, 0.1877934272vw + 0.7059859155rem, 0.875rem);
  }
}

.form-main div.gform_wrapper .ginput_container select,
.wp-block-group div.gform_wrapper .ginput_container select {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='a'%20data-name='Layer%201'%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2011.43%206.5'%3e%3cpath%20d='M5.72,4.65L10.15.22c.15-.15.33-.22.53-.21.2,0,.38.09.52.24.15.15.23.33.23.54s-.07.39-.23.54l-4.95,4.95c-.08.08-.17.14-.25.17s-.18.05-.28.05-.19-.02-.28-.05c-.08-.03-.17-.09-.25-.17L.22,1.3c-.15-.15-.22-.33-.22-.54S.07.38.22.22c.15-.15.33-.22.54-.22s.39.08.54.22l4.42,4.43Z'%20fill='%23222'%20fill-opacity='0.5'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 12px 7px;
  background-position: calc(100% - 26px) center;
  padding-right: 40px;
}

.form-main div.gform_wrapper .ginput_container textarea,
.wp-block-group div.gform_wrapper .ginput_container textarea {
  resize: vertical;
  min-block-size: clamp(36px, 0.9389671362vw + 32.4788732394px, 46px);
  padding-block: clamp(8px, 0.5633802817vw + 5.8873239437px, 14px);
}

.form-main
  div.gform_wrapper
  .gfield_error
  .ginput_container
  input:not([type="radio"], [type="checkbox"]),
.form-main div.gform_wrapper .gfield_error .ginput_container textarea,
.form-main div.gform_wrapper .gfield_error .ginput_container select,
.wp-block-group
  div.gform_wrapper
  .gfield_error
  .ginput_container
  input:not([type="radio"], [type="checkbox"]),
.wp-block-group div.gform_wrapper .gfield_error .ginput_container textarea,
.wp-block-group div.gform_wrapper .gfield_error .ginput_container select {
  border-color: red;
}

.form-main
  div.gform_wrapper
  .gfield--fileupload
  .ginput_container
  input:not([type="radio"], [type="checkbox"]),
.wp-block-group
  div.gform_wrapper
  .gfield--fileupload
  .ginput_container
  input:not([type="radio"], [type="checkbox"]) {
  padding: 0;
}

.form-main
  div.gform_wrapper
  .gfield--fileupload
  .ginput_container_fileupload
  .validation_message,
.wp-block-group
  div.gform_wrapper
  .gfield--fileupload
  .ginput_container_fileupload
  .validation_message {
  display: none;
}

.form-main div.gform_wrapper .gfield--type-address .ginput_complex,
.wp-block-group div.gform_wrapper .gfield--type-address .ginput_complex {
  gap: 0;
}

.form-main div.gform_wrapper .gfield--type-address .ginput_complex > *,
.wp-block-group div.gform_wrapper .gfield--type-address .ginput_complex > * {
  width: 50%;
}

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .form-main div.gform_wrapper .gfield--type-address .ginput_complex > *,
  .wp-block-group div.gform_wrapper .gfield--type-address .ginput_complex > * {
    width: 100%;
  }
}

.form-main div.gform_wrapper .gfield--radio,
.wp-block-group div.gform_wrapper .gfield--radio {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  position: relative;
  overflow: hidden;
  padding-block: 17px 12px;
  gap: clamp(5px, 0.4694835681vw + 3.2394366197px, 10px);
}

.form-main div.gform_wrapper .gfield--radio .gfield_label,
.wp-block-group div.gform_wrapper .gfield--radio .gfield_label {
  display: inline-flex;
  line-height: 1;
  color: #222;
  margin: 0;
  float: left;
  font-size: 0.875rem;
}

@media (max-width: 1440px) {
  .form-main div.gform_wrapper .gfield--radio .gfield_label,
  .wp-block-group div.gform_wrapper .gfield--radio .gfield_label {
    font-size: clamp(0.75rem, 0.1877934272vw + 0.7059859155rem, 0.875rem);
  }
}

.form-main div.gform_wrapper .gfield--radio .gfield_radio,
.wp-block-group div.gform_wrapper .gfield--radio .gfield_radio {
  flex-direction: row;
  flex-wrap: nowrap;
}

.form-main div.gform_wrapper .gfield--radio .gfield_radio input,
.wp-block-group div.gform_wrapper .gfield--radio .gfield_radio input {
  position: absolute;
  left: -4000px;
  opacity: 0;
}

.form-main
  div.gform_wrapper
  .gfield--radio
  .gfield_radio
  input:checked
  + label:before,
.wp-block-group
  div.gform_wrapper
  .gfield--radio
  .gfield_radio
  input:checked
  + label:before {
  border-color: var(--theme-color-quaternary);
  background-color: var(--theme-color-quaternary);
  box-shadow: inset 0 0 0 5px #fff;
}

.form-main div.gform_wrapper .gfield--radio .gfield_radio label,
.wp-block-group div.gform_wrapper .gfield--radio .gfield_radio label {
  cursor: pointer;
  display: block;
  position: relative;
  padding-left: 28px;
  font-size: 0.875rem;
}

@media (max-width: 1440px) {
  .form-main div.gform_wrapper .gfield--radio .gfield_radio label,
  .wp-block-group div.gform_wrapper .gfield--radio .gfield_radio label {
    font-size: clamp(0.75rem, 0.1877934272vw + 0.7059859155rem, 0.875rem);
  }
}

.form-main div.gform_wrapper .gfield--radio .gfield_radio label:before,
.wp-block-group div.gform_wrapper .gfield--radio .gfield_radio label:before {
  content: " ";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(34, 34, 34, 0.7);
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  transition-property: border, background, box-shadow;
  transition-duration: var(--theme-transition-duration);
}

.form-main div.gform_wrapper .gfield--consent input,
.wp-block-group div.gform_wrapper .gfield--consent input {
  position: absolute;
  left: -4000px;
  opacity: 0;
}

.form-main div.gform_wrapper .gfield--consent label,
.wp-block-group div.gform_wrapper .gfield--consent label {
  display: block;
  padding: 0 0 0 26px;
  margin: 0;
  position: relative;
  font-size: 12px;
  line-height: 1.3;
  color: #2229;
}

.form-main div.gform_wrapper .gfield--consent label:before,
.wp-block-group div.gform_wrapper .gfield--consent label:before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(34, 34, 34, 0.6);
  background-color: #fff;
  transition-property: border, background, box-shadow;
  transition-duration: var(--theme-transition-duration);
}

.form-main div.gform_wrapper .gfield--consent input:checked + label:before,
.wp-block-group
  div.gform_wrapper
  .gfield--consent
  input:checked
  + label:before {
  border-color: var(--theme-color-quaternary);
  background-color: var(--theme-color-quaternary);
  box-shadow: inset 0 0 0 3px #fff;
}

.form-main div.gform_wrapper button,
.wp-block-group div.gform_wrapper button {
  margin-top: 8px !important;
  margin-bottom: 5px !important;
  width: 100% !important;
  border-radius: 0 !important;
  font-size: var(--font-size) !important;
  line-height: 1.1 !important;
  background-color: #ffcb08 !important;
  font-weight: 600 !important;
  padding: 0 20px !important;
  height: var(--height) !important;
  transition-property: color, background !important;
  transition-duration: var(--theme-transition-duration) !important;
  color: var(--theme-color-primary) !important;
  --font-size: clamp(14px, 0.3755868545vw + 12.5915492958px, 18px);
  --height: clamp(36px, 0.9389671362vw + 32.4788732394px, 46px);
}

@media (hover: hover) and (pointer: fine) {
  .form-main div.gform_wrapper button:where(:hover, :focus-visible),
  .wp-block-group div.gform_wrapper button:where(:hover, :focus-visible) {
    background-color: var(--theme-color-primary) !important;
    color: #fff !important;
  }
}

.form-main div.gform_wrapper .gform_validation_errors,
.wp-block-group div.gform_wrapper .gform_validation_errors {
  display: none;
}

.form-main div.gform_wrapper .validation_message,
.wp-block-group div.gform_wrapper .validation_message {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.form-main div.gform_wrapper .validation_message:before,
.wp-block-group div.gform_wrapper .validation_message:before {
  content: "!";
  min-width: 12px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: red;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 10px;
  line-height: 1;
}

.wp-block-group
  div.gform_wrapper
  .ginput_container
  input:not([type="radio"], [type="checkbox"]),
.wp-block-group div.gform_wrapper .ginput_container textarea,
.wp-block-group div.gform_wrapper .ginput_container select {
  background-color: #fff;
  border-color: var(--theme-color-primary);
}

.wp-block-group
  div.gform_wrapper
  .ginput_container
  input:not([type="radio"], [type="checkbox"]):focus,
.wp-block-group div.gform_wrapper .ginput_container textarea:focus,
.wp-block-group div.gform_wrapper .ginput_container select:focus {
  border-color: var(--theme-color-secondary);
}

.wp-block-group div.gform_wrapper .gfield_label {
  margin-bottom: 0;
}

.wp-block-group div.gform_wrapper .gform_footer {
  margin: 0;
  height: 0;
}

.wp-block-group div.gform_wrapper .gform_footer > span {
  width: 32px;
  height: 32px;
  margin: -16px 0 0 -16px;
  pointer-events: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.wp-block-group div.gform_wrapper .gform_footer > *:not(span) {
  position: absolute;
  left: -4000px;
  opacity: 0;
}

.form-main--alt div.gform_wrapper .gform_heading {
  text-align: center;
  margin-bottom: clamp(12px, 1.1267605634vw + 7.7746478873px, 24px);
}

.form-main--alt div.gform_wrapper .gform_title {
  font-size: 1.625rem;
}

@media (max-width: 1440px) {
  .form-main--alt div.gform_wrapper .gform_title {
    font-size: clamp(1.25rem, 0.5633802817vw + 1.1179577465rem, 1.625rem);
  }
}

.form-main--alt div.gform_wrapper .gform_title {
  margin-bottom: clamp(7px, 0.6572769953vw + 4.5352112676px, 14px);
}

.form-main--alt div.gform_wrapper .gform_description {
  color: var(--theme-color-primary);
  opacity: 0.8;
  line-height: 1.4;
  font-size: 1.125rem;
}

@media (max-width: 1440px) {
  .form-main--alt div.gform_wrapper .gform_description {
    font-size: clamp(1rem, 0.1877934272vw + 0.9559859155rem, 1.125rem);
  }
}

.form-main--alt div.gform_wrapper .ginput_container textarea {
  resize: none;
  min-block-size: clamp(60px, 2.8169014085vw + 49.4366197183px, 90px);
}

.form-subscribe {
  background-color: #fff;
  max-width: 1073px;
  margin-inline: auto;
  padding: clamp(10px, 0.9389671362vw + 6.4788732394px, 20px);
}

.form-subscribe .gform_confirmation_message {
  text-align: center;
  width: 100%;
  color: var(--theme-color-tertiary);
}

.form-subscribe div.gform_wrapper {
  display: flex;
  align-items: flex-start;
}

@media (max-width: 985px) {
  .form-subscribe div.gform_wrapper {
    flex-direction: column;
    gap: 12px;
  }
}

.form-subscribe div.gform_wrapper .gform_heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: var(--width-heading);
  padding-right: 20px;
  text-align: center;
}

@media (max-width: 985px) {
  .form-subscribe div.gform_wrapper .gform_heading {
    width: 100%;
    padding-right: 0;
  }
}

.form-subscribe div.gform_wrapper .gform_heading h2 {
  color: var(--theme-color-primary);
  font-size: 1.375rem;
}

@media (max-width: 1440px) {
  .form-subscribe div.gform_wrapper .gform_heading h2 {
    font-size: clamp(1.0625rem, 0.4694835681vw + 0.9524647887rem, 1.375rem);
  }
}

.form-subscribe div.gform_wrapper .gform_heading {
  min-height: clamp(36px, 0.9389671362vw + 32.4788732394px, 46px);
}

.form-subscribe div.gform_wrapper form {
  width: calc(100% - var(--width-heading));
  display: flex;
  align-items: center;
}

@media (max-width: 985px) {
  .form-subscribe div.gform_wrapper form {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
}

.form-subscribe div.gform_wrapper .gform_body {
  width: 100%;
}

.form-subscribe div.gform_wrapper .gform_page {
  width: 100%;
  display: flex;
}

@media (max-width: 985px) {
  .form-subscribe div.gform_wrapper .gform_page {
    flex-direction: column;
  }
}

.form-subscribe div.gform_wrapper .gform_page:first-child .gform_fields {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
}

@media (max-width: 985px) {
  .form-subscribe div.gform_wrapper .gform_page:first-child .gform_fields {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
}

.form-subscribe div.gform_wrapper .gform_page:first-child .gform_fields > * {
  width: 100%;
  position: relative;
}

@media (min-width: 985.02px) {
  .form-subscribe
    div.gform_wrapper
    .gform_page:first-child
    .gform_fields
    > *:nth-child(1) {
    width: var(--width);
    min-width: var(--width);
    max-width: var(--width);
    --width: clamp(150px, 4.6948356808vw + 132.3943661972px, 200px);
  }
}

.form-subscribe div.gform_wrapper .gform_page ~ .gform_page {
  flex-wrap: wrap;
}

.form-subscribe div.gform_wrapper .gform_page ~ .gform_page .gform_fields {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  width: auto;
  margin: -4px;
}

.form-subscribe div.gform_wrapper .gform_page ~ .gform_page .gform_fields > * {
  padding: 4px;
  width: 100%;
}

.form-subscribe
  div.gform_wrapper
  .gform_page
  ~ .gform_page
  .gform_fields
  > .gfield--width-half {
  width: 50%;
}

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .form-subscribe
    div.gform_wrapper
    .gform_page
    ~ .gform_page
    .gform_fields
    > .gfield--width-half {
    width: 100%;
  }
}

.form-subscribe
  div.gform_wrapper
  .gform_page
  ~ .gform_page
  .gform_fields
  > .gfield--type-address
  .ginput_complex {
  gap: 0;
}

.form-subscribe
  div.gform_wrapper
  .gform_page
  ~ .gform_page
  .gform_fields
  > .gfield--type-address
  .ginput_complex
  > * {
  width: 50%;
}

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .form-subscribe
    div.gform_wrapper
    .gform_page
    ~ .gform_page
    .gform_fields
    > .gfield--type-address
    .ginput_complex
    > * {
    width: 100%;
  }
}

.form-subscribe div.gform_wrapper .gform_page ~ .gform_page .gform_page_fields {
  width: 100%;
  padding-right: 0;
}

.form-subscribe div.gform_wrapper .gform_page ~ .gform_page .gform_page_footer {
  width: 100%;
  flex-direction: row;
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  margin-top: 20px;
}

@media (min-width: 985.02px) {
  .form-subscribe div.gform_wrapper .gform_page_fields {
    width: calc(100% - var(--width-footer));
    padding-right: 16px;
  }
}

.form-subscribe div.gform_wrapper .gform_footer,
.form-subscribe div.gform_wrapper .gform_page_footer {
  margin: 0;
  padding: 0;
  width: var(--width-footer);
}

@media (max-width: 985px) {
  .form-subscribe div.gform_wrapper .gform_footer,
  .form-subscribe div.gform_wrapper .gform_page_footer {
    margin-top: 12px;
    width: 100%;
  }
}

.form-subscribe div.gform_wrapper .gform_footer > span,
.form-subscribe div.gform_wrapper .gform_page_footer > span {
  width: 32px;
  height: 32px;
  margin: -16px 0 0 -16px;
  pointer-events: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.form-subscribe
  div.gform_wrapper
  .ginput_container
  input:not([type="radio"], [type="checkbox"]),
.form-subscribe div.gform_wrapper .ginput_container textarea,
.form-subscribe div.gform_wrapper .ginput_container select {
  width: 100%;
  line-height: 1.1;
  background-color: var(--theme-color-bg2);
  color: #2229;
  border: 1px solid var(--theme-color-bg2);
  border-radius: 0;
  align-items: center;
  outline: none;
  transition-property: color, border;
}

.form-subscribe
  div.gform_wrapper
  .ginput_container
  input:not([type="radio"], [type="checkbox"]):focus,
.form-subscribe div.gform_wrapper .ginput_container textarea:focus,
.form-subscribe div.gform_wrapper .ginput_container select:focus {
  border-color: var(--theme-color-primary);
  color: var(--theme-color-primary);
}

.form-subscribe
  div.gform_wrapper
  .ginput_container
  input:not([type="radio"], [type="checkbox"]),
.form-subscribe div.gform_wrapper .ginput_container textarea,
.form-subscribe div.gform_wrapper .ginput_container select {
  height: clamp(36px, 0.9389671362vw + 32.4788732394px, 46px);
  padding-inline: clamp(8px, 0.5633802817vw + 5.8873239437px, 14px);
  font-size: 0.875rem;
}

@media (max-width: 1440px) {
  .form-subscribe
    div.gform_wrapper
    .ginput_container
    input:not([type="radio"], [type="checkbox"]),
  .form-subscribe div.gform_wrapper .ginput_container textarea,
  .form-subscribe div.gform_wrapper .ginput_container select {
    font-size: clamp(0.75rem, 0.1877934272vw + 0.7059859155rem, 0.875rem);
  }
}

.form-subscribe div.gform_wrapper .ginput_container select {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'?%3e%3csvg%20id='a'%20data-name='Layer%201'%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2011.43%206.5'%3e%3cpath%20d='M5.72,4.65L10.15.22c.15-.15.33-.22.53-.21.2,0,.38.09.52.24.15.15.23.33.23.54s-.07.39-.23.54l-4.95,4.95c-.08.08-.17.14-.25.17s-.18.05-.28.05-.19-.02-.28-.05c-.08-.03-.17-.09-.25-.17L.22,1.3c-.15-.15-.22-.33-.22-.54S.07.38.22.22c.15-.15.33-.22.54-.22s.39.08.54.22l4.42,4.43Z'%20fill='%23222'%20fill-opacity='0.5'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 12px 7px;
  background-position: calc(100% - 26px) center;
  padding-right: 40px;
}

.form-subscribe div.gform_wrapper .ginput_container textarea {
  resize: none;
  min-block-size: clamp(60px, 1.8779342723vw + 52.9577464789px, 80px);
  padding-block: clamp(8px, 0.5633802817vw + 5.8873239437px, 14px);
}

.form-subscribe div.gform_wrapper .gfield--radio {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  position: relative;
  overflow: hidden;
  padding-block: 17px 12px !important;
  gap: clamp(5px, 0.4694835681vw + 3.2394366197px, 10px);
}

.form-subscribe div.gform_wrapper .gfield--radio .gfield_label {
  display: inline-flex;
  line-height: 1;
  color: #222;
  margin: 0;
  float: left;
  font-size: 0.875rem;
}

@media (max-width: 1440px) {
  .form-subscribe div.gform_wrapper .gfield--radio .gfield_label {
    font-size: clamp(0.75rem, 0.1877934272vw + 0.7059859155rem, 0.875rem);
  }
}

.form-subscribe div.gform_wrapper .gfield--radio .gfield_radio {
  flex-direction: row;
  flex-wrap: nowrap;
}

.form-subscribe div.gform_wrapper .gfield--radio .gfield_radio input {
  position: absolute;
  left: -4000px;
  opacity: 0;
}

.form-subscribe
  div.gform_wrapper
  .gfield--radio
  .gfield_radio
  input:checked
  + label:before {
  border-color: var(--theme-color-quaternary);
  background-color: var(--theme-color-quaternary);
  box-shadow: inset 0 0 0 5px #fff;
}

.form-subscribe div.gform_wrapper .gfield--radio .gfield_radio label {
  cursor: pointer;
  display: block;
  position: relative;
  padding-left: 28px;
  font-size: 0.875rem;
}

@media (max-width: 1440px) {
  .form-subscribe div.gform_wrapper .gfield--radio .gfield_radio label {
    font-size: clamp(0.75rem, 0.1877934272vw + 0.7059859155rem, 0.875rem);
  }
}

.form-subscribe div.gform_wrapper .gfield--radio .gfield_radio label:before {
  content: " ";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(34, 34, 34, 0.7);
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  transition-property: border, background, box-shadow;
  transition-duration: var(--theme-transition-duration);
}

.form-subscribe div.gform_wrapper .gfield--consent input {
  position: absolute;
  left: -4000px;
  opacity: 0;
}

.form-subscribe div.gform_wrapper .gfield--consent label {
  display: block;
  padding: 0 0 0 26px;
  margin: 0;
  position: relative;
  font-size: 12px;
  line-height: 1.3;
  color: #2229;
}

.form-subscribe div.gform_wrapper .gfield--consent label:before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(34, 34, 34, 0.6);
  background-color: #fff;
  transition-property: border, background, box-shadow;
  transition-duration: var(--theme-transition-duration);
}

.form-subscribe
  div.gform_wrapper
  .gfield--consent
  input:checked
  + label:before {
  border-color: var(--theme-color-quaternary);
  background-color: var(--theme-color-quaternary);
  box-shadow: inset 0 0 0 3px #fff;
}

.form-subscribe
  div.gform_wrapper
  .gfield_error
  .ginput_container
  input:not([type="radio"], [type="checkbox"]),
.form-subscribe div.gform_wrapper .gfield_error .ginput_container textarea,
.form-subscribe div.gform_wrapper .gfield_error .ginput_container select {
  border-color: red;
}

.form-subscribe div.gform_wrapper button,
.form-subscribe div.gform_wrapper .button {
  margin: 0 !important;
  width: 100% !important;
  border-radius: 0 !important;
  font-size: var(--font-size) !important;
  line-height: 1.1 !important;
  background-color: #ffcb08 !important;
  font-weight: 600 !important;
  padding: 0 20px !important;
  height: var(--height) !important;
  transition-property: color, background !important;
  transition-duration: var(--theme-transition-duration) !important;
  color: var(--theme-color-primary) !important;
  border: 0 !important;
  --font-size: clamp(14px, 0.3755868545vw + 12.5915492958px, 18px);
  --height: clamp(36px, 0.9389671362vw + 32.4788732394px, 46px);
}

@media (hover: hover) and (pointer: fine) {
  .form-subscribe div.gform_wrapper button:where(:hover, :focus-visible),
  .form-subscribe div.gform_wrapper .button:where(:hover, :focus-visible) {
    background-color: var(--theme-color-primary) !important;
    color: #fff !important;
  }
}

.form-subscribe div.gform_wrapper .gform_validation_errors {
  display: none;
}

.form-subscribe div.gform_wrapper .validation_message {
  font-size: 12px;
  align-items: center;
  gap: 5px;
  z-index: 10;
  display: none;
}

@media (min-width: 985.02px) {
  .form-subscribe div.gform_wrapper .validation_message {
    position: absolute;
    left: 0;
    bottom: calc(100% + 2px);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.form-subscribe div.gform_wrapper .validation_message:before {
  content: "!";
  min-width: 12px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: red;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 10px;
  line-height: 1;
}

.form-subscribe div.gform_wrapper {
  --width-heading: clamp(280px, 5.6338028169vw + 258.8732394366px, 340px);
  --width-footer: clamp(130px, 3.1924882629vw + 118.0281690141px, 164px);
}

.slider-brands {
  width: 100%;
  position: relative;
}

.slider-brands__slides {
  align-items: center;
  justify-content: space-between;
}

.slider-brands__slide {
  width: auto;
  font-size: 0;
  line-height: 0;
  display: flex;
  align-items: center;
  min-height: 100%;
  max-width: clamp(140px, 5.0704225352vw + 120.985915493px, 194px);
}

.slider-brands__slide a {
  transition: opacity var(--theme-transition-duration);
}

@media (hover: hover) and (pointer: fine) {
  .slider-brands__slide a:where(:hover, :focus-visible) {
    opacity: 0.75;
  }
}

.slider-brands__slide span,
.slider-brands__slide a {
  display: block;
  position: relative;
}

.slider-brands__slide img {
  display: block;
  width: auto;
  margin-inline: auto;
  max-height: clamp(100px, 1.8779342723vw + 92.9577464789px, 120px);
}

.slider-brands__actions {
  --button-size: 32px;
  font-size: 0;
  line-height: 0;
}

.slider-brands__actions > button {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: var(--button-size);
  height: var(--button-size);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(52, 136, 255, 0.1);
  background: #fff;
  border-radius: 50%;
  transition-property: opacity, visibility, background;
  transition-duration: var(--theme-transition-duration);
}

@media (hover) and (pointer: fine) {
  .slider-brands__actions > button:hover {
    background-color: var(--theme-color-quaternary);
  }

  .slider-brands__actions > button:hover:before {
    border-color: #fff;
  }
}

.slider-brands__actions > button[disabled] {
  opacity: 0;
  visibility: hidden;
}

.slider-brands__actions > button:before {
  content: " ";
  display: block;
  width: calc(var(--button-size) / 3);
  height: calc(var(--button-size) / 3);
  border-left: 2px solid var(--theme-color-secondary);
  border-top: 2px solid var(--theme-color-secondary);
  margin-top: -1px;
  transition: border var(--theme-transition-duration);
}

.slider-brands__actions > button:first-child {
  left: calc(-16px - var(--padding-inline));
}

.slider-brands__actions > button:first-child:before {
  transform: rotate(-45deg);
  margin-right: -4px;
}

.slider-brands__actions > button:last-child {
  right: calc(-16px - var(--padding-inline));
}

.slider-brands__actions > button:last-child:before {
  transform: rotate(135deg);
  margin-right: 2px;
}

.slider-infinite-gallery {
  overflow: visible;
}

.slider-infinite-gallery__slides {
  transition-timing-function: linear !important;
}

.slider-infinite-gallery__slide {
  width: clamp(280px, 18.779342723vw + 209.5774647887px, 480px);
}

.slider-infinite-gallery__image {
  position: relative;
  overflow: hidden;
}

.slider-infinite-gallery__image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.slider-infinite-gallery__image {
  height: clamp(200px, 11.2676056338vw + 157.7464788732px, 320px);
}

.slider-infinite-gallery__image a {
  display: block;
  text-decoration: none;
  font-size: 0;
  line-height: 0;
}

@media (hover) and (pointer: fine) {
  .slider-infinite-gallery__image a:hover img {
    transform: scale(1.1);
  }
}

.slider-infinite-gallery__image img {
  transition: transform var(--theme-transition-duration);
}

.slider-video-testimonials {
  overflow: visible;
}

.slider-video-testimonials__actions {
  position: absolute;
  right: 0;
  top: calc(0px - (var(--offset) + var(--button-size) + 10px));
  z-index: 100;
  display: flex;
  gap: 16px;
  --offset: clamp(40px, 0.8450704225vw + 36.8309859155px, 49px);
  --button-size: clamp(36px, 1.8779342723vw + 28.9577464789px, 56px);
}

@media (max-width: 374px) {
  .slider-video-testimonials__actions {
    top: calc(0px - (var(--button-size) + 4px));
  }
}

.slider-infinite-review {
  overflow: visible;
}

.slider-infinite-review__slides {
  transition-timing-function: linear !important;
}

.slider-infinite-review__slide {
  display: flex;
  flex-direction: column;
  width: clamp(280px, 7.323943662vw + 252.5352112676px, 358px);
  gap: clamp(16px, 0.7511737089vw + 13.1830985915px, 24px);
}

.article {
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: 30px;
}

@media (max-width: 575px) {
  .article {
    grid-template-columns: 100px 1fr;
    gap: 20px;
  }
}

@media (max-width: 374px) {
  .article {
    grid-template-columns: 1fr;
  }
}

.article__image img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
}

.article__content:only-child {
  grid-column: 1/-1;
}

.article__head,
.article__title,
.article__entry {
  margin-bottom: 10px;
}

.article__head:last-child,
.article__title:last-child,
.article__entry:last-child {
  margin-bottom: 0;
}

.article-single__head,
.article-single__image {
  margin-bottom: 40px;
}

.article-single__head:last-child,
.article-single__image:last-child {
  margin-bottom: 0;
}

.article-single__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
  object-fit: cover;
}

.article-service {
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: #000;
  color: #fff;
  min-height: 100%;
  padding-block: var(--padding-inline);
  padding-inline: var(--padding-block);
  z-index: 10;
  display: flex;
  flex-direction: column;
  transition: background var(--theme-transition-duration);
  --padding-inline: clamp(20px, 1.1267605634vw + 15.7746478873px, 32px);
  --padding-block: clamp(30px, 0.4694835681vw + 28.2394366197px, 35px);
  height: 260px;
}

.article-service > a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 20;
  font-size: 0;
  line-height: 0;
}

.article-service > a ~ * {
  pointer-events: none;
}

.article-service:before {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to bottom, #0000, #000c 60%, #000);
  z-index: 10;
  opacity: 0;
  transition: opacity var(--theme-transition-duration);
}

@media (hover) and (pointer: fine) {
  .article-service:hover {
    background-color: var(--theme-color-secondary);
  }

  .article-service:hover:before {
    opacity: 1;
  }

  .article-service:hover .article-service__content-hidden {
    grid-template-rows: 1fr;
  }
}

.article-service__image {
  position: relative;
  overflow: hidden;
}

.article-service__image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.article-service__image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.article-service__image:after {
  content: " ";
  position: absolute;
  top: -400px;
  right: -400px;
  bottom: 0;
  left: -400px;
  z-index: 2;
  box-shadow: inset 0 0 100px 100px #000;
  transition: box-shadow var(--theme-transition-duration);
}

.article-service__content {
  margin-top: auto;
  position: relative;
  z-index: 11;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: auto; /*clamp(250px,8.0751173709vw + 219.7183098592px,336px)*/
}

.article-service__content-head h3 {
  margin-bottom: clamp(8px, 0.7511737089vw + 5.1830985915px, 16px);
}

.article-service__content-head > *:last-child {
  margin-bottom: 0;
}

.article-service__content-hidden {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--theme-transition-duration);
}

.article-service__content-hidden-wrap {
  position: relative;
  overflow: hidden;
}

.article-service__content-hidden-wrap > p {
  padding-top: clamp(8px, 0.7511737089vw + 5.1830985915px, 16px);
}

.article-service__content-action {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  color: #ffcb08;
  font-size: 1.125rem;
}

@media (max-width: 1440px) {
  .article-service__content-action {
    font-size: clamp(1rem, 0.1877934272vw + 0.9559859155rem, 1.125rem);
  }
}

.article-service__content-action {
  margin-top: clamp(14px, 1.4084507042vw + 8.7183098592px, 29px);
}

.article-service__content-action p {
  position: relative;
  font-weight: 600;
  margin: 0;
}

.article-main {
  width: 100%;
  max-width: 350px;
  margin-inline: auto;
  background-color: #fff;
  min-height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.article-main > a {
  position: absolute;
  font-size: 0;
  line-height: 0;
  text-decoration: none;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
}

.article-main__image {
  width: 100%;
  aspect-ratio: 1/0.675;
  z-index: 2;
  position: relative;
  overflow: hidden;
}

.article-main__image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.article-main__image:after {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to bottom, #00209900, #00209980);
}

.article-main__image img {
  transition: transform var(--theme-transition-duration);
}

.article-main__image > span {
  position: absolute;
  left: 10px;
  top: 10px;
  background-color: var(--theme-color-quaternary);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
  padding: 6px 8px;
  font-style: italic;
  font-size: 1rem;
}

@media (max-width: 1440px) {
  .article-main__image > span {
    font-size: clamp(0.875rem, 0.1877934272vw + 0.8309859155rem, 1rem);
  }
}

.article-main__content {
  padding-inline: clamp(20px, 0.9389671362vw + 16.4788732394px, 30px);
  padding-top: clamp(20px, 0.9389671362vw + 16.4788732394px, 30px);
  padding-bottom: clamp(15px, 0.5633802817vw + 12.8873239437px, 21px);
}

.article-main__content h5 {
  line-height: 1.1;
  margin-bottom: 8px;
  transition: color var(--theme-transition-duration);
}

.article-main__content p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.article-main__content > *:last-child {
  margin-bottom: 0;
}

.article-main__content + .article-main__action {
  padding-top: 0;
}

.article-main__action {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 9px;
  justify-content: flex-start;
  color: #ffcb08;
  margin-top: auto;
  padding: clamp(20px, 0.9389671362vw + 16.4788732394px, 30px);
}

.article-main__action p {
  position: relative;
  font-weight: 600;
  transition: color var(--theme-transition-duration);
  margin: 0;
  font-size: 1.125rem;
}

@media (max-width: 1440px) {
  .article-main__action p {
    font-size: clamp(1rem, 0.1877934272vw + 0.9559859155rem, 1.125rem);
  }
}

@media (hover) and (pointer: fine) {
  .article-main:hover .article-main__image img {
    transform: scale(1.1);
  }

  .article-main:hover .article-main__content h5 {
    color: #ffcb08;
  }

  .article-main:hover .article-main__action i.ico-arrow-link svg {
    transform: translate(5px);
  }
}

.article-main--alt {
  background: none;
}

.article-main--alt .article-main__image {
  aspect-ratio: 1/0.563;
}

.article-main--alt .article-main__content {
  padding-inline: clamp(10px, 0.9389671362vw + 6.4788732394px, 20px);
  padding-bottom: clamp(15px, 0.5633802817vw + 12.8873239437px, 21px);
}

.article-main--alt .article-main__content h5 {
  font-size: 1.625rem;
}

@media (max-width: 1440px) {
  .article-main--alt .article-main__content h5 {
    font-size: clamp(1.25rem, 0.5633802817vw + 1.1179577465rem, 1.625rem);
  }
}

.article-main--alt .article-main__content h5 {
  margin-bottom: clamp(10px, 0.6572769953vw + 7.5352112676px, 17px);
}

.article-main--alt .article-main__content p {
  opacity: 0.8;
}

.article-main--alt .article-main__content > *:last-child {
  margin-bottom: 0;
}

.article-main--alt .article-main__content + .article-main__action {
  padding-top: 0;
}

.article-main--alt .article-main__action {
  padding: clamp(10px, 0.9389671362vw + 6.4788732394px, 20px);
}

.article-main--large-article {
  max-width: 100%;
  background-color: var(--theme-color-bg);
}

.has-background .article-main--large-article {
  background-color: #fff;
}

.has-background--dark .article-main--large-article {
  background-color: #fff;
  color: var(--theme-color-primary);
}

.article-main--large-article .article-main__image {
  aspect-ratio: 1/0.723;
}

.article-main--without-image-overlay .article-main__image:after {
  display: none;
}

.article-main--discount .article-main__image {
  aspect-ratio: 1/0.542;
  margin-top: 10px;
}

.article-main--discount .article-main__image img {
  -o-object-fit: contain;
  object-fit: contain;
}

.article-main--discount .article-main__action {
  padding-bottom: clamp(12px, 0.7511737089vw + 9.1830985915px, 20px);
}

.article-small {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-block: var(--offset-block);
  padding-inline: var(--offset-inline);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 100%;
}

.article-small > a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  font-size: 0;
  line-height: 0;
  text-decoration: none;
}

@media (hover) and (pointer: fine) {
  .article-small > a:hover ~ .article-small__image img {
    transform: scale(1.1);
  }
}

.article-small__image {
  position: relative;
  overflow: hidden;
}

.article-small__image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.article-small__image {
  width: auto;
  margin-top: calc(0px - var(--offset-block));
  margin-inline: calc(0px - var(--offset-inline));
  aspect-ratio: 1/0.734;
}

.article-small__image img {
  transition: transform var(--theme-transition-duration);
}

.article-small__title {
  padding-top: 6px;
}

.article-small__title h5 {
  line-height: 1.1;
}

.article-small__action {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffcb08;
  font-weight: 600;
  font-size: 1.125rem;
}

@media (max-width: 1440px) {
  .article-small__action {
    font-size: clamp(1rem, 0.1877934272vw + 0.9559859155rem, 1.125rem);
  }
}

.article-small {
  --offset-block: clamp(12px, 1.1267605634vw + 7.7746478873px, 24px);
  --offset-inline: clamp(16px, 1.5023474178vw + 10.3661971831px, 32px);
}

.articles {
  list-style: none;
  display: grid;
  gap: 40px;
}

.list-locations h6 {
  color: var(--theme-color-quaternary);
}

.list-locations ul {
  list-style: none;
}

.list-locations a {
  text-decoration: none;
  transition: color var(--theme-transition-duration);
}

@media (hover: hover) and (pointer: fine) {
  .list-locations a:where(:hover, :focus-visible) {
    color: var(--theme-color-quaternary);
  }
}

.list-locations > ul {
  -moz-column-count: 2;
  column-count: 2;
  -moz-column-gap: var(--gap);
  column-gap: var(--gap);
}

.list-locations > ul > li {
  page-break-inside: avoid;
  margin-bottom: var(--gap);
}

.list-locations > ul > li > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.list-locations > ul > li > ul > li {
  flex: 1 1 max(33.333%, 150px);
  max-width: 183px;
  padding-right: var(--gap);
}

.list-locations {
  --gap: clamp(20px, 0.9389671362vw + 16.4788732394px, 30px);
}

.block-subtitle,
.section-image-and-content__content-entry h5,
.section-hero__content-entry h6,
.fragments-heading h6,
.section-content-and-list-of-ticks__content h6,
.section--grid-box-content-and-image .section__content h6,
.section__head h6 {
  display: flex;
  align-items: center;
  color: currentColor;
  line-height: 1.22;
  text-transform: uppercase;
  font-weight: 400;
  gap: clamp(8px, 0.7511737089vw + 5.1830985915px, 16px);
  font-size: 1.125rem;
}

@media (max-width: 1440px) {
  .block-subtitle,
  .section-image-and-content__content-entry h5,
  .section-hero__content-entry h6,
  .fragments-heading h6,
  .section-content-and-list-of-ticks__content h6,
  .section--grid-box-content-and-image .section__content h6,
  .section__head h6 {
    font-size: clamp(0.875rem, 0.3755868545vw + 0.786971831rem, 1.125rem);
  }
}

.block-subtitle:before,
.section-image-and-content__content-entry h5:before,
.section-hero__content-entry h6:before,
.fragments-heading h6:before,
.section-content-and-list-of-ticks__content h6:before,
.section--grid-box-content-and-image .section__content h6:before,
.section__head h6:before {
  content: " ";
  width: var(--width);
  min-width: var(--width);
  height: 1px;
  background-color: currentColor;
  --width: clamp(20px, 1.8779342723vw + 12.9577464789px, 40px);
}

.fragments-heading,
.section-content-and-list-of-ticks__content,
.section--grid-box-content-and-image .section__content,
.section__head {
  text-align: center;
}

.fragments-heading h6,
.section-content-and-list-of-ticks__content h6,
.section--grid-box-content-and-image .section__content h6,
.section__head h6 {
  justify-content: center;
  margin-bottom: clamp(5px, 0.3755868545vw + 3.5915492958px, 9px);
}

.has-background--dark .fragments-heading h6,
.has-background--dark .section-content-and-list-of-ticks__content h6,
.has-background--dark .section--grid-box-content-and-image .section__content h6,
.section--grid-box-content-and-image .has-background--dark .section__content h6,
.has-background--dark .section__head h6 {
  color: #ffcb08;
}

.fragments-heading h2,
.section-content-and-list-of-ticks__content h2,
.section--grid-box-content-and-image .section__content h2,
.section__head h2 {
  line-height: 1.1;
  max-width: var(--max-width, 900px);
  margin-inline: auto;
  margin-bottom: clamp(16px, 0.8450704225vw + 12.8309859155px, 25px);
}

.fragments-heading p,
.section-content-and-list-of-ticks__content p,
.section--grid-box-content-and-image .section__content p,
.section__head p {
  font-size: 1.125rem;
}

@media (max-width: 1440px) {
  .fragments-heading p,
  .section-content-and-list-of-ticks__content p,
  .section--grid-box-content-and-image .section__content p,
  .section__head p {
    font-size: clamp(1rem, 0.1877934272vw + 0.9559859155rem, 1.125rem);
  }
}

.fragments-heading p,
.section-content-and-list-of-ticks__content p,
.section--grid-box-content-and-image .section__content p,
.section__head p {
  max-width: var(--max-width, 944px);
  margin-inline: auto;
}

.fragments-heading > *:last-child,
.section-content-and-list-of-ticks__content > *:last-child,
.section--grid-box-content-and-image .section__content > *:last-child,
.section__head > *:last-child {
  margin-bottom: 0;
}

.fragments-heading--left,
.section-content-and-list-of-ticks__content,
.section--grid-box-content-and-image .section__content {
  text-align: left;
}

.fragments-heading--left h6,
.section-content-and-list-of-ticks__content h6,
.section--grid-box-content-and-image .section__content h6 {
  justify-content: flex-start;
}

.section > .shell {
  display: flex;
  flex-direction: column;
  gap: clamp(45px, 1.0328638498vw + 41.1267605634px, 56px);
}

.section__background {
  position: relative;
  overflow: hidden;
}

.section__background img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.section__background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  font-size: 0;
  line-height: 0;
  pointer-events: none;
  opacity: 0.15;
}

.section__background--dark {
  opacity: 1;
  background-color: #000;
}

.section__background--dark:after {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to bottom, #00209900, #00209980);
}

.section__background--dark img {
  opacity: 0.5;
}

.section:not([class*="has-background"]) .section__head p {
  opacity: 0.8;
}

.section__head + .section__actions {
  margin-top: calc(0px - var(--move-top));
  --move-top: clamp(16px, 0.5633802817vw + 13.8873239437px, 22px);
}

.section__grid {
  overflow: hidden;
  --inline-offset: clamp(12px, 1.1267605634vw + 7.7746478873px, 24px);
  --block-offset: clamp(12px, 1.1267605634vw + 7.7746478873px, 24px);
}

.section__grid .section__row {
  width: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-inline: calc(0px - var(--inline-offset) / 2);
  margin-block: calc(0px - var(--block-offset) / 2);
}

.section__grid .section__col {
  padding: calc(var(--inline-offset) / 2);
  flex: 1 1 max(33.33%, 350px);
}

.section__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(8px, 0.7511737089vw + 5.1830985915px, 16px);
}

.section--arrow-shape-on-head .section__head {
  max-width: var(--max-width, 704px);
  margin-inline: auto;
}

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .section--arrow-shape-on-head .section__head {
    max-width: 100%;
  }
}

.section--arrow-shape-on-head .section__head h6 {
  margin-bottom: clamp(8px, 0.6572769953vw + 5.5352112676px, 15px);
}

.section--arrow-shape-on-head .section__head h2 {
  margin-bottom: clamp(16px, 1.4084507042vw + 10.7183098592px, 31px);
}

.section--arrow-shape-on-head .section__head p {
  line-height: 1.3;
  font-size: 1.25rem;
}

@media (max-width: 1440px) {
  .section--arrow-shape-on-head .section__head p {
    font-size: clamp(1.125rem, 0.1877934272vw + 1.0809859155rem, 1.25rem);
  }
}

.section--arrow-shape-on-head .section__head p {
  margin-bottom: clamp(18px, 0.6572769953vw + 15.5352112676px, 25px);
  padding-inline: calc(var(--shape-height) / 2.5);
}

.section--arrow-shape-on-head .section__head:before {
  content: " ";
  position: absolute;
  right: -8px;
  bottom: calc(0px - var(--bottom-offset));
  width: var(--shape-width);
  height: var(--shape-height);
  background-image: url(./shape-arrow-02-BYwEXzUr.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.section--arrow-shape-on-head .section__head {
  --shape-width: clamp(86px, 2.0657276995vw + 78.2535211268px, 108px);
  --shape-height: clamp(132px, 3.1924882629vw + 120.0281690141px, 166px);
  --bottom-offset: clamp(40px, 1.8779342723vw + 32.9577464789px, 60px);
}

.section--arrow-shape-on-head .section__head > *:last-child {
  margin-bottom: 0;
}

.section--arrow-shape-on-head .section__actions {
  margin-top: 0;
}

.section--content-boxes-and-iamge-with-progress > .shell {
  gap: clamp(30px, 1.6901408451vw + 23.661971831px, 48px);
}

.section--content-boxes-and-iamge-with-progress .section__body {
  display: flex;
}

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .section--content-boxes-and-iamge-with-progress .section__body {
    flex-direction: column;
    gap: 40px;
  }
}

@media (min-width: 767.02px) {
  .section--content-boxes-and-iamge-with-progress .section__body-content {
    width: calc(50% - 14px);
  }
}

@media (min-width: 767.02px) {
  .section--content-boxes-and-iamge-with-progress .section__body__image {
    width: calc(50% + 14px);
    padding-left: clamp(46px, 4.6948356808vw + 28.3943661972px, 96px);
  }
}

.section--content-boxes-and-iamge-with-progress
  .section__body__image-holder
  > img {
  display: block;
  width: 100%;
  height: auto;
}

.section--content-boxes-and-iamge-with-progress
  .section__body__image-holder
  .block-progress {
  position: absolute;
  left: calc(0px - var(--offset));
  bottom: var(--offset);
  --offset: clamp(20px, 1.8779342723vw + 12.9577464789px, 40px);
}

.section--content-and-form {
  overflow: hidden;
}

.section--content-and-form > .shell {
  gap: 0;
}

.section--content-and-form .block-review__box-icon {
  min-width: clamp(128px, 5.0704225352vw + 108.985915493px, 182px);
  max-width: clamp(128px, 5.0704225352vw + 108.985915493px, 182px);
}

.section--content-and-form
  .form-main
  div.gform_wrapper
  .ginput_container
  textarea {
  resize: none;
  min-block-size: clamp(60px, 1.8779342723vw + 52.9577464789px, 80px);
}

.section--content-and-form .section__inner {
  display: flex;
}

@media (max-width: 985px) {
  .section--content-and-form .section__inner {
    flex-direction: column;
    gap: 40px;
  }
}

.section--content-and-form .section__inner-content {
  display: flex;
  flex-direction: column;
  margin-block: auto;
  gap: clamp(20px, 0.9389671362vw + 16.4788732394px, 30px);
}

@media (min-width: 985.02px) {
  .section--content-and-form .section__inner-content {
    width: var(--the-content-width);
    padding-bottom: 20px;
  }
}

@media (min-width: 985.02px) {
  .section--content-and-form .section__inner-form {
    width: calc(100% - var(--the-content-width));
    padding-left: clamp(20px, 9.6713615023vw + -16.2676056338px, 123px);
  }
}

.section--content-and-form .section__head {
  text-align: left;
}

.section--content-and-form .section__head h6 {
  justify-content: flex-start;
  margin-bottom: clamp(7px, 0.6572769953vw + 4.5352112676px, 14px);
}

.section--content-and-form .section__head h2 {
  line-height: 1.2;
}

.section--content-and-form .section__head h2,
.section--content-and-form .section__head p {
  max-width: 100%;
}

.section--content-and-form .section__head p {
  line-height: 1.3;
  font-size: 1.25rem;
}

@media (max-width: 1440px) {
  .section--content-and-form .section__head p {
    font-size: clamp(1.125rem, 0.1877934272vw + 1.0809859155rem, 1.25rem);
  }
}

.section--content-and-form .section__head p {
  margin-bottom: clamp(12px, 2.0657276995vw + 4.2535211268px, 34px);
}

.section--content-and-form .section__head p a {
  text-decoration: none;
}

@media (hover: hover) and (pointer: fine) {
  .section--content-and-form .section__head p a:where(:hover, :focus-visible) {
    text-decoration: underline;
  }
}

.section--content-and-form .section__head > *:last-child {
  margin-bottom: 0;
}

.section {
  --the-content-width: clamp(320px, 10.5164319249vw + 280.5633802817px, 432px);
}

.section--content-with-ticks {
  overflow: hidden;
}

.section--content-with-ticks .section__inner {
  background-color: var(--theme-color-bg);
  color: var(--theme-color-primary);
  padding-block: clamp(20px, 4.0375586854vw + 4.8591549296px, 63px);
  padding-top: clamp(20px, 3.0985915493vw + 8.3802816901px, 53px);
  padding-inline: clamp(20px, 3.7558685446vw + 5.9154929577px, 60px);
}

.section--content-with-ticks .section__inner:before {
  content: " ";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 6px;
  background-color: var(--theme-color-tertiary);
}

.section--content-with-ticks .section__inner p,
.section--content-with-ticks .section__inner h5 {
  opacity: 0.8;
}

.section--content-with-ticks .section__head {
  margin-bottom: clamp(20px, 0.9389671362vw + 16.4788732394px, 30px);
}

.section--content-with-ticks .section__head h3 {
  font-size: 2.25rem;
}

@media (max-width: 1440px) {
  .section--content-with-ticks .section__head h3 {
    font-size: clamp(1.75rem, 0.7511737089vw + 1.573943662rem, 2.25rem);
  }
}

.section--content-with-ticks .section__head h3 {
  margin-bottom: clamp(6px, 0.1877934272vw + 5.2957746479px, 8px);
}

.section--content-with-ticks .section__head > *:last-child {
  margin-bottom: 0;
}

.section--content-with-ticks .section__grid {
  --inline-offset: clamp(12px, 1.3145539906vw + 7.0704225352px, 26px);
  --block-offset: clamp(12px, 1.3145539906vw + 7.0704225352px, 26px);
}

.section--content-with-ticks .section__col {
  flex: 1 1 max(25%, 250px);
}

.section--content-with-ticks .section__col h5 {
  margin-bottom: 4px;
  font-size: 1.125rem;
}

@media (max-width: 1440px) {
  .section--content-with-ticks .section__col h5 {
    font-size: clamp(1rem, 0.1877934272vw + 0.9559859155rem, 1.125rem);
  }
}

.section--content-with-ticks .section__col blockquote {
  position: relative;
  padding-left: 32px;
}

.section--content-with-ticks .section__col blockquote > *:last-child {
  margin-bottom: 0;
}

.section--content-with-ticks .section__col blockquote:before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  width: var(--icon-size);
  min-width: var(--icon-size);
  height: var(--icon-size);
  background-image: url("data:image/svg+xml,%3csvg%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M10.525%2016.55L17.6%209.475L16.45%208.35L10.525%2014.275L7.525%2011.275L6.4%2012.4L10.525%2016.55ZM12%2022C10.6334%2022%209.34165%2021.7375%208.125%2021.2125C6.90835%2020.6875%205.84585%2019.9708%204.9375%2019.0625C4.02917%2018.1542%203.3125%2017.0917%202.7875%2015.875C2.2625%2014.6583%202%2013.3666%202%2012C2%2010.6166%202.2625%209.31665%202.7875%208.1C3.3125%206.88335%204.02917%205.825%204.9375%204.925C5.84585%204.025%206.90835%203.3125%208.125%202.7875C9.34165%202.2625%2010.6334%202%2012%202C13.3834%202%2014.6833%202.2625%2015.9%202.7875C17.1166%203.3125%2018.175%204.025%2019.075%204.925C19.975%205.825%2020.6875%206.88335%2021.2125%208.1C21.7375%209.31665%2022%2010.6166%2022%2012C22%2013.3666%2021.7375%2014.6583%2021.2125%2015.875C20.6875%2017.0917%2019.975%2018.1542%2019.075%2019.0625C18.175%2019.9708%2017.1166%2020.6875%2015.9%2021.2125C14.6833%2021.7375%2013.3834%2022%2012%2022ZM12%2020.5C14.3666%2020.5%2016.375%2019.6709%2018.025%2018.0125C19.675%2016.3542%2020.5%2014.35%2020.5%2012C20.5%209.63335%2019.675%207.625%2018.025%205.975C16.375%204.325%2014.3666%203.5%2012%203.5C9.65%203.5%207.64585%204.325%205.9875%205.975C4.32917%207.625%203.5%209.63335%203.5%2012C3.5%2014.35%204.32917%2016.3542%205.9875%2018.0125C7.64585%2019.6709%209.65%2020.5%2012%2020.5Z'%20fill='%2308104E'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  --icon-size: clamp(16px, 0.7511737089vw + 13.1830985915px, 24px);
}

.section--slider-infinite-gallery {
  overflow: hidden;
}

.section--slider-infinite-gallery .section__head p {
  max-width: 882px;
}

.section--slider-infinite-gallery .section__gallery {
  width: auto;
  margin-inline: calc(0px - var(--shell-gutter));
}

@media (min-width: 1199.02px) {
  .section--slider-infinite-gallery .section__gallery {
    margin-inline: calc(0px - ((100vw - 1128px) / 2));
  }
}

.section--slider-infinite-review-testimonials {
  overflow: hidden;
}

.section--slider-infinite-review-testimonials > .shell {
  gap: clamp(29px, 1.8779342723vw + 21.9577464789px, 49px);
}

body.single-app_services
  .section--slider-infinite-review-testimonials
  ~ .section--slider-infinite-review-testimonials {
  display: none;
}

.section--slider-infinite-review-testimonials .section__inner {
  display: flex;
  align-items: center;
}

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .section--slider-infinite-review-testimonials .section__inner {
    flex-direction: column;
    gap: 30px;
  }
}

.section--slider-infinite-review-testimonials .section__inner-rating {
  width: auto;
  padding-left: clamp(80px, 9.9530516432vw + 42.676056338px, 186px);
}

.section--slider-infinite-review-testimonials .section__inner-rating:before {
  content: " ";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: var(--shape-width);
  height: var(--shape-height);
  background-image: url(./shape-arrow-04-1t0aaDoY.png);
  background-size: contain;
  background-position: center;
}

.section--slider-infinite-review-testimonials .section__inner-rating {
  --shape-width: clamp(132px, 3.1924882629vw + 120.0281690141px, 166px);
  --shape-height: clamp(85px, 2.0657276995vw + 77.2535211268px, 107px);
}

.section--slider-infinite-review-testimonials .section__head {
  text-align: left;
}

.section--slider-infinite-review-testimonials .section__head h6 {
  justify-content: flex-start;
  margin-bottom: clamp(7px, 0.6572769953vw + 4.5352112676px, 14px);
}

.section--slider-infinite-review-testimonials .section__head h2,
.section--slider-infinite-review-testimonials .section__head p {
  max-width: 100%;
}

.section--slider-infinite-review-testimonials .section__head > *:last-child {
  margin-bottom: 0;
}

@media (min-width: 767.02px) {
  .section--slider-infinite-review-testimonials .section__actions {
    padding-top: 12px;
  }
}

.section--slider-video-testimonials {
  overflow: hidden;
}

.section--slider-video-testimonials > .shell {
  gap: clamp(40px, 0.8450704225vw + 36.8309859155px, 49px);
}

.section--slider-video-testimonials .section__head {
  text-align: left;
  padding-right: clamp(100px, 5.6338028169vw + 78.8732394366px, 160px);
}

@media (max-width: 374px) {
  .section--slider-video-testimonials .section__head {
    padding-right: 0;
  }
}

.section--slider-video-testimonials .section__head h6 {
  justify-content: flex-start;
  margin-bottom: clamp(7px, 0.6572769953vw + 4.5352112676px, 14px);
}

.section--slider-video-testimonials .section__head h2,
.section--slider-video-testimonials .section__head p {
  max-width: 100%;
}

.section--slider-video-testimonials .section__head > *:last-child {
  margin-bottom: 0;
}

@media (min-width: 767.02px) {
  .section--slider-video-testimonials .section__actions {
    padding-top: 12px;
  }
}

.section--services .section__col:first-child + * ~ * {
  flex: 1 1 max(33.333%, 300px);
}

.section--map-services > .shell {
  gap: 0;
}

.section--map-services .section__map {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: calc(50% - var(--offset));
  background-color: #000;
  z-index: 100;
  --offset: clamp(30px, 2.8169014085vw + 19.4366197183px, 60px);
}

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .section--map-services .section__map {
    position: relative;
    aspect-ratio: 1/0.7;
    bottom: auto;
    right: 0;
    width: auto;
  }
}

.section--map-services .section__map-holder {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.section--map-services:not([class*="has-background"]) .section__map {
  top: calc(0px - var(--gap-top));
  bottom: calc(0px - var(--gap-bottom));
}

.section--map-services .section__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 0.7511737089vw + 7.1830985915px, 18px);
}

@media (min-width: 767.02px) {
  .section--map-services .section__inner {
    padding-left: calc(50% + 20px);
  }
}

.section--map-services .section__head {
  text-align: left;
}

.section--map-services .section__head h6 {
  justify-content: flex-start;
  margin-bottom: clamp(7px, 0.6572769953vw + 4.5352112676px, 14px);
}

.section--map-services .section__head h2,
.section--map-services .section__head p {
  max-width: 100%;
}

.section--map-services .section__head > *:last-child {
  margin-bottom: 0;
}

.section--map-services .section__actions {
  justify-content: flex-start;
  padding-top: clamp(10px, 0.7511737089vw + 7.1830985915px, 18px);
}

.section--form-subscribe {
  overflow: hidden;
}

.section--form-subscribe > .shell {
  gap: clamp(20px, 1.8779342723vw + 12.9577464789px, 40px);
}

.section--form-subscribe .section__head:before {
  right: -40px;
  background-image: url(./shape-arrow-03-DuLkp0v1.png);
  z-index: 1;
  --bottom-offset: clamp(40px, 1.3145539906vw + 35.0704225352px, 54px);
}

.section--content-and-accordion > .shell {
  gap: 0;
}

.section--content-and-accordion .section__inner {
  display: flex;
}

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .section--content-and-accordion .section__inner {
    flex-direction: column;
    gap: 40px;
  }
}

.section--content-and-accordion .section__inner-content {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.1267605634vw + 7.7746478873px, 24px);
}

@media (min-width: 767.02px) {
  .section--content-and-accordion .section__inner-content {
    width: var(--content-width);
  }
}

@media (min-width: 767.02px) {
  .section--content-and-accordion .section__inner-accordion {
    width: calc(100% - var(--content-width));
    padding-left: clamp(40px, 5.3521126761vw + 19.9295774648px, 97px);
  }
}

.section--content-and-accordion .section__head {
  text-align: left;
}

.section--content-and-accordion .section__head h6 {
  justify-content: flex-start;
}

.section--content-and-accordion .section__head h2 {
  line-height: 1.2;
}

.section--content-and-accordion .section__head p {
  margin-bottom: clamp(12px, 0.9389671362vw + 8.4788732394px, 22px);
}

.section--content-and-accordion .section__head h2,
.section--content-and-accordion .section__head p {
  max-width: 100%;
}

.section--content-and-accordion .section__head > *:last-child {
  margin-bottom: 0;
}

.section--content-and-accordion .section__actions {
  justify-content: flex-start;
  margin-top: 0;
}

.section {
  --content-width: clamp(300px, 7.8873239437vw + 270.4225352113px, 384px);
}

.section--articles {
  overflow: hidden;
}

.section--articles > .shell {
  gap: clamp(40px, 0.8450704225vw + 36.8309859155px, 49px);
}

.section--articles .section__inner {
  display: flex;
  align-items: flex-end;
  gap: 20px;
}

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .section--articles .section__inner {
    flex-direction: column;
  }
}

.section--articles .section__head {
  text-align: left;
}

.section--articles .section__head h6 {
  justify-content: flex-start;
  margin-bottom: clamp(7px, 0.6572769953vw + 4.5352112676px, 14px);
}

.section--articles .section__head h2,
.section--articles .section__head p {
  max-width: 100%;
}

.section--articles .section__head:last-child {
  text-align: center;
}

.section--articles .section__head:last-child h6 {
  justify-content: center;
}

.section--articles .section__head > *:last-child {
  margin-bottom: 0;
}

.section--articles .section__actions {
  margin-top: 0;
  margin-left: auto;
  width: auto;
  flex-direction: column;
}

.section--articles .section__col {
  flex: 1 1 max(33.333%, 350px);
}

.section--articles .section__nav {
  margin-top: -10px;
}

.section--articles-top {
  overflow: hidden;
  --gap-top: clamp(40px, 3.7558685446vw + 25.9154929577px, 80px);
  --gap-bottom: clamp(40px, 3.7558685446vw + 25.9154929577px, 80px);
}

.section--articles-top .section__head {
  text-align: left;
}

.section--articles-top .section__head h6 {
  margin-bottom: clamp(7px, 0.6572769953vw + 4.5352112676px, 14px);
}

.section--articles-top .section__head h2,
.section--articles-top .section__head p {
  max-width: 100%;
}

.section--articles-top .section__head:last-child {
  text-align: center;
}

.section--articles-top .section__head > *:last-child {
  margin-bottom: 0;
}

.section--grid-box-content-and-image > .shell {
  min-height: clamp(350px, 18.9671361502vw + 278.8732394366px, 552px);
}

@media (min-width: 767.02px) {
  .section--grid-box-content-and-image > .shell {
    flex-direction: row;
    gap: 0;
  }
}

.section--grid-box-content-and-image .section__background {
  opacity: 1;
}

.section--grid-box-content-and-image .section__background + .shell {
  min-height: 0;
}

.section--grid-box-content-and-image:last-child {
  --gap-bottom: clamp(80px, 3.7558685446vw + 65.9154929577px, 120px);
  margin-bottom: clamp(80px, 4.5070422535vw + 63.0985915493px, 128px);
}

@media (min-width: 767.02px) {
  .section--grid-box-content-and-image.section--has-reverse > .shell {
    flex-direction: row-reverse;
  }
}

@media (min-width: 767.02px) {
  .section--grid-box-content-and-image.section--has-reverse .section__content {
    margin-right: 0;
    margin-left: auto;
  }
}

.section--grid-box-content-and-image.section--has-reverse
  .section__content:last-child {
  min-height: 0;
  margin-block: auto;
}

@media (min-width: 767.02px) {
  .section--grid-box-content-and-image.section--has-reverse .section__image {
    margin-left: 0;
    margin-right: auto;
  }
}

.section--grid-box-content-and-image.has-background .section__content,
.section--grid-box-content-and-image.has-background--dark .section__content {
  background-color: #fff;
  color: var(--theme-color-primary);
}

.section--grid-box-content-and-image .section__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow: hidden;
  background-color: var(--theme-color-bg);
  padding-inline: clamp(20px, 3.7558685446vw + 5.9154929577px, 60px);
  padding-block: clamp(30px, 4.6948356808vw + 12.3943661972px, 80px);
}

.section--grid-box-content-and-image .section__content:last-child {
  padding-block: clamp(30px, 1.8779342723vw + 22.9577464789px, 50px);
  padding-inline: clamp(20px, 2.6291079812vw + 10.1408450704px, 48px);
}

.section--grid-box-content-and-image .section__content:before {
  content: " ";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 6px;
  background-color: var(--theme-color-tertiary);
}

@media (min-width: 767.02px) {
  .section--grid-box-content-and-image .section__content {
    width: calc(50% - 12px);
    margin-right: auto;
  }
}

.section--grid-box-content-and-image .section__content-entry {
  line-height: 1.4;
  font-size: 1.125rem;
}

@media (max-width: 1440px) {
  .section--grid-box-content-and-image .section__content-entry {
    font-size: clamp(1rem, 0.1877934272vw + 0.9559859155rem, 1.125rem);
  }
}

.section--grid-box-content-and-image .section__content-entry h2 {
  line-height: 1.1;
  margin-bottom: clamp(14px, 0.6572769953vw + 11.5352112676px, 21px);
}

.section--grid-box-content-and-image .section__content-entry p {
  opacity: 0.8;
}

.section--grid-box-content-and-image .section__content-entry > *:last-child {
  margin-bottom: 0;
}

.section--grid-box-content-and-image .section__content-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section--grid-box-content-and-image .section__image {
  aspect-ratio: 1/1;
  min-height: 100%;
  position: relative;
  overflow: hidden;
}

.section--grid-box-content-and-image .section__image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

@media (min-width: 767.02px) {
  .section--grid-box-content-and-image .section__image {
    width: calc(50% - 12px);
    margin-left: auto;
  }
}

.section--grid-of-discounts > .shell {
  gap: clamp(24px, 1.5962441315vw + 18.014084507px, 41px);
}

.section--grid-of-discounts .section__actions:not(:first-child) {
  padding-top: clamp(10px, 0.9389671362vw + 6.4788732394px, 20px);
}

.section--four-grid-articles > .shell {
  gap: clamp(25px, 1.0328638498vw + 21.1267605634px, 36px);
}

.section--four-grid-articles .section__head p {
  max-width: var(--max-width, 742px);
}

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .section--four-grid-articles .section__head p {
    max-width: 100%;
  }
}

.section--four-grid-articles .section__col {
  flex: 1 1 max(25%, 200px);
}

.section--careers > .shell {
  gap: clamp(20px, 1.5962441315vw + 14.014084507px, 37px);
}

.section--careers .section__head p {
  max-width: var(--max-width, 742px);
}

@media (min-width: 767.02px) {
  .section--videos .block-video {
    max-width: 552px;
    margin-inline: auto;
  }
}

body.single-app_services .section--form ~ .section--form {
  display: none;
}

.section--list-testimonials .block-review-main {
  min-height: 100%;
}

.section--list-testimonials .block-review-main__foot {
  margin-top: auto;
}

.section-default--404 {
  width: 100%;
  display: flex;
  align-items: center;
  text-align: center;
}

.section-default__content,
.section-default__head {
  margin-bottom: 40px;
}

.section-default__content:last-child,
.section-default__head:last-child {
  margin-bottom: 0;
}

.section-default__entry {
  margin-bottom: 20px;
}

.section-default__entry:last-child {
  margin-bottom: 0;
}

.section-default--404 .section-default__entry {
  max-width: 600px;
  margin-inline: auto;
}

.section-hero {
  display: flex;
  align-items: center;
  min-height: clamp(400px, 11.2676056338vw + 357.7464788732px, 520px);
}

.section-hero:first-child {
  --gap-top: clamp(25px, 2.3474178404vw + 16.1971830986px, 50px);
  --gap-bottom: clamp(100px, 3.661971831vw + 86.2676056338px, 139px);
}

.section-hero + section.section-slider-brands {
  --gap-top: 0;
  margin-top: calc(0px - var(--margin-top));
  --margin-top: clamp(60px, 2.2535211268vw + 51.5492957746px, 84px);
}

.section-hero__background {
  position: relative;
  overflow: hidden;
}

.section-hero__background img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.section-hero__background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  font-size: 0;
  line-height: 0;
  text-indent: -4000px;
  opacity: 0.15;
}

.section-hero__content {
  display: flex;
  flex-direction: column;
  z-index: 10;
  gap: clamp(15px, 1.4084507042vw + 9.7183098592px, 30px);
}

@media (min-width: 767.02px) {
  .section-hero__content {
    width: calc(100% - var(--form-width));
    margin-block: auto;
    padding-top: 20px;
    padding-right: clamp(26px, 2.441314554vw + 16.8450704225px, 52px);
  }
}

.section-hero__content:last-child {
  padding-right: 0;
  width: 100%;
  text-align: center;
  max-width: var(--max-width, 830px);
  margin-inline: auto;
}

.section-hero__content:last-child h6 {
  justify-content: center;
}

.section-hero__content:last-child p {
  max-width: var(--max-width, 714px);
  margin-inline: auto;
}

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .section-hero__content:last-child p {
    max-width: 100%;
  }
}

.section-hero__content:last-child .block-checks ul,
.section-hero__content:last-child .block-checks li {
  justify-content: center;
}

@media (min-width: 767.02px) {
  .section-hero__content:last-child .block-checks ul,
  .section-hero__content:last-child .block-checks li {
    white-space: nowrap;
  }
}

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .section-hero__content:last-child .block-checks ul,
  .section-hero__content:last-child .block-checks li {
    justify-content: flex-start;
  }
}

.section-hero__content-checks {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 3px;
  padding-top: 19px;
}

.section-hero__content-entry {
  line-height: 1.3;
}

.section-hero__content-entry h6 {
  color: #ffcb08;
  margin-bottom: clamp(12px, 0.3755868545vw + 10.5915492958px, 16px);
}

.section-hero__content-entry h1 {
  line-height: 1.1;
  margin-bottom: clamp(8px, 1.0328638498vw + 4.1267605634px, 19px);
}

.section-hero__content-entry {
  font-size: 1.25rem;
}

@media (max-width: 1440px) {
  .section-hero__content-entry {
    font-size: clamp(1rem, 0.3755868545vw + 0.911971831rem, 1.25rem);
  }
}

.section-hero__content-entry > *:last-child {
  margin-bottom: 0;
}

.section-hero__form {
  width: var(--form-width);
}

.section-hero__form:before {
  content: " ";
  position: absolute;
  left: calc(var(--left-offset) / 1.2 - var(--width));
  top: var(--height);
  height: var(--height);
  width: var(--width);
  background-image: url(./shape-arrow-01-yIYr7tIy.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  --width: clamp(132px, 3.1924882629vw + 120.0281690141px, 166px);
  --height: clamp(85px, 2.0657276995vw + 77.2535211268px, 107px);
  --left-offset: clamp(20px, 1.8779342723vw + 12.9577464789px, 40px);
}

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .section-hero__form {
    width: 100%;
  }

  .section-hero__form:not(:first-child) {
    margin-top: 30px;
  }
}

.section-hero__content-image {
  aspect-ratio: 1/0.35;
  position: relative;
  overflow: hidden;
}

.section-hero__content-image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.section-hero__content-box {
  border: 1px solid var(--theme-color-primary);
  background-color: #fff;
}

.section-hero__content-box .section-hero__content-buttons {
  width: auto;
  margin-right: -1px;
}

.section-hero__content-box .section-hero__content-entry {
  padding: clamp(20px, 1.5023474178vw + 14.3661971831px, 36px);
}

.section-hero__content-box .section-hero__content-entry h1 {
  border-bottom: 1px solid var(--theme-color-bg);
  color: #08104e80;
  font-weight: 400;
  padding-bottom: clamp(10px, 0.5633802817vw + 7.8873239437px, 16px);
}

.section-hero__content-box .section-hero__content-entry h1 strong {
  color: var(--theme-color-primary);
  font-weight: 600;
}

.section-hero__content-box
  .section-hero__content-entry
  + .section-hero__content-buttons {
  margin-top: 0;
}

.section-hero__content-buttons {
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .section-hero__content-buttons {
    flex-direction: column;
  }
}

.section-hero__content-buttons {
  margin-top: clamp(10px, 0.9389671362vw + 6.4788732394px, 20px);
}

.section-hero__content-buttons > * {
  width: 50%;
  flex-grow: 1;
  border: 1px solid var(--theme-color-primary);
  border-left: 0;
  border-bottom: 0;
}

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .section-hero__content-buttons > * {
    width: 100%;
  }
}

.section-hero {
  --form-width: clamp(250px, 19.2488262911vw + 177.8169014085px, 455px);
}

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .section-hero > .shell--flex {
    gap: clamp(15px, 1.4084507042vw + 9.7183098592px, 30px);
  }

  .section-hero__content:not(:last-child) {
    display: contents;
  }

  .section-hero__content-entry,
  .section-hero__content-checks,
  .section-hero__content-foot,
  .section-hero__content-buttons,
  .section-hero__content-image {
    width: 100%;
  }

  .section-hero__content-entry {
    order: 1;
  }

  .section-hero__form {
    order: 2;
  }

  .section-hero__form:not(:first-child) {
    margin-top: 0;
  }

  .section-hero__content-checks {
    order: 3;
    border-top: 0;
    margin-top: 0;
    padding-top: 0;
  }

  .section-hero__content-foot {
    order: 4;
  }

  .section-hero__content-buttons {
    order: 5;
  }

  .section-hero__content-image {
    order: 0;
  }
}

.section-hero--simple {
  min-height: 0;
}

.section-hero--simple:first-child {
  --gap-bottom: clamp(50px, 3.7558685446vw + 35.9154929577px, 90px);
}

.section-hero--remove-arrow-shape .section-hero__form:before {
  display: none;
}

.section-slider-brands {
  --gap-top: clamp(15px, 0.4694835681vw + 13.2394366197px, 20px);
  --gap-bottom: clamp(15px, 0.4694835681vw + 13.2394366197px, 20px);
}

.section-slider-brands
  + section.section-callout-simple:not([class*="has-background"]) {
  --gap-top: clamp(15px, 0.4694835681vw + 13.2394366197px, 20px);
}

.section-slider-brands__inner {
  background-color: #f5f5f5;
  border: 1px solid rgba(52, 136, 255, 0.1);
  padding-inline: var(--padding-inline);
}

.section-slider-brands__inner:before,
.section-slider-brands__inner:after {
  content: " ";
  position: absolute;
  top: 0;
  bottom: 0;
  width: var(--padding-inline);
  z-index: 10;
}

.section-slider-brands__inner:before {
  left: var(--padding-inline);
  background: linear-gradient(to right, #fff, #fff0);
}

.section-slider-brands__inner:after {
  right: var(--padding-inline);
  background: linear-gradient(to right, #fff0, #fff);
}

.section-slider-brands__inner {
  padding-block: clamp(12px, 1.1267605634vw + 7.7746478873px, 24px);
  --padding-inline: clamp(8px, 0.7511737089vw + 5.1830985915px, 16px);
}

.section-callout-simple:first-child {
  --gap-top: clamp(20px, 1.8779342723vw + 12.9577464789px, 40px);
  --gap-bottom: clamp(20px, 3.3802816901vw + 7.323943662px, 56px);
}

.section-callout-simple.has-background:first-child + section.has-background {
  --gap-top: 0;
}

body.app_services-template-default .section-callout-simple {
  --gap-bottom: clamp(20px, 1.8779342723vw + 12.9577464789px, 40px);
}

body.home .section-callout-simple {
  --gap-bottom: clamp(80px, 2.6291079812vw + 70.1408450704px, 108px);
}

body.home
  .section-callout-simple
  + section.section-image-and-content[class*="has-background"] {
  padding-top: 0;
}

.section-callout-simple__inner {
  display: flex;
  align-items: center;
  padding-block: clamp(8px, 0.8450704225vw + 4.8309859155px, 17px);
  padding-inline: clamp(20px, 1.8779342723vw + 12.9577464789px, 40px);
  gap: clamp(12px, 0.7511737089vw + 9.1830985915px, 20px);
}

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .section-callout-simple__inner {
    flex-direction: column;
  }
}

.section-callout-simple__content {
  display: flex;
}

@media (max-width: 1023px) {
  .section-callout-simple__content {
    flex-direction: column;
  }
}

.section-callout-simple__content {
  gap: clamp(7px, 1.4084507042vw + 1.7183098592px, 22px);
}

.section-callout-simple__content > * {
  margin-bottom: 0;
}

.section-callout-simple__content h5 {
  line-height: 1.1;
  font-weight: 700;
  font-size: 1.375rem;
}

@media (max-width: 1440px) {
  .section-callout-simple__content h5 {
    font-size: clamp(1.0625rem, 0.4694835681vw + 0.9524647887rem, 1.375rem);
  }
}

.section-callout-simple__content h5 strong {
  font-weight: 700;
  color: var(--theme-color-tertiary);
  font-size: 1.625rem;
}

@media (max-width: 1440px) {
  .section-callout-simple__content h5 strong {
    font-size: clamp(1.25rem, 0.5633802817vw + 1.1179577465rem, 1.625rem);
  }
}

.section-callout-simple__content p {
  display: flex;
  align-items: center;
  font-size: 1.125rem;
}

@media (max-width: 1440px) {
  .section-callout-simple__content p {
    font-size: clamp(1rem, 0.1877934272vw + 0.9559859155rem, 1.125rem);
  }
}

.section-callout-simple__action {
  width: auto;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  white-space: nowrap;
}

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .section-callout-simple__action {
    width: 100%;
  }
}

.section-image-and-content {
  --gap-top: clamp(80px, 2.6291079812vw + 70.1408450704px, 108px);
  --gap-bottom: clamp(80px, 5.6338028169vw + 58.8732394366px, 140px);
}

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .section-image-and-content > .shell {
    gap: 50px;
  }
}

.section-image-and-content + section.section--content-with-ticks {
  margin-top: calc(var(--top-gap-offset) - var(--gap-top));
  --top-gap-offset: clamp(30px, 2.8169014085vw + 19.4366197183px, 60px);
}

.section-image-and-content:not([class*="has-background"])
  + section.section--content-with-ticks:not([class*="has-background"]) {
  padding-top: 0 !important;
  border-top: 0 !important;
}

.section-image-and-content__background {
  position: relative;
  overflow: hidden;
}

.section-image-and-content__background img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.section-image-and-content__background {
  position: absolute;
  width: 50%;
  top: calc(0px - var(--gap-top) * 3);
  left: 0;
  bottom: calc(0px - var(--gap-bottom));
  z-index: -1;
  opacity: 0.2;
}

.section-image-and-content__background:after {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to right, #0f249566, #fff);
}

.section-image-and-content__background span {
  position: absolute;
}

@media (min-width: 767.02px) {
  .section-image-and-content__image {
    width: 50%;
    padding-right: clamp(36px, 4.5070422535vw + 19.0985915493px, 84px);
  }
}

.section-image-and-content__image > img {
  display: block;
  width: 100%;
  height: auto;
}

.section-image-and-content__image > span {
  position: relative;
  overflow: hidden;
}

.section-image-and-content__image > span img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.section-image-and-content__image > span:not(:first-child) {
  position: absolute;
  width: 100%;
  left: calc(0px - var(--image-offset));
  bottom: calc(0px - var(--image-offset));
  aspect-ratio: 1/1;
  border: 6px solid var(--theme-color-bg2);
  max-width: clamp(180px, 7.5117370892vw + 151.8309859155px, 260px);
}

.section-image-and-content__image {
  --image-offset: clamp(20px, 1.8779342723vw + 12.9577464789px, 40px);
}

.section-image-and-content__content {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.1267605634vw + 7.7746478873px, 24px);
}

@media (min-width: 980.02px) {
   .section-image-and-content__image > span:not(:first-child) {
    bottom: calc(250px - var(--image-offset));
  }
}
@media (min-width: 767.02px) {
 
  .section-image-and-content__content {
    width: 50%;
    padding-left: 12px;
  }
}

@media(max-width:980px){
  .section-image-and-content .shell--flex{
    flex-direction: column;
    gap:50px;
  }
  .section-image-and-content__image, .section-image-and-content__content{
    width: 100%;
    position: relative;
    padding: 0;
  }
  
  
}

.section-image-and-content__content-entry {
  font-size: 1.125rem;
}

@media (max-width: 1440px) {
  .section-image-and-content__content-entry {
    font-size: clamp(1rem, 0.1877934272vw + 0.9559859155rem, 1.125rem);
  }
}

.section-image-and-content__content-entry h2 {
  line-height: 1.1;
}

.section-image-and-content__content-entry p {
  max-width: 518px;
}

.section-image-and-content:not([class*="has-background--dark"])
  .section-image-and-content__content-entry
  p {
  opacity: 0.8;
}

.section-image-and-content--reverse > .shell {
  flex-direction: row-reverse;
}

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .section-image-and-content--reverse > .shell {
    flex-direction: column-reverse;
  }
}

@media (min-width: 767.02px) {
  .section-image-and-content--reverse .section-image-and-content__content {
    padding-left: 0;
    padding-right: 12px;
  }
}

@media (min-width: 767.02px) {
  .section-image-and-content--reverse .section-image-and-content__image {
    padding-right: 0;
    padding-left: clamp(36px, 4.5070422535vw + 19.0985915493px, 84px);
  }
}

.section-image-and-content-alt {
  --gap-top: clamp(64px, 1.5023474178vw + 58.3661971831px, 80px);
  --gap-bottom: clamp(64px, 1.5023474178vw + 58.3661971831px, 80px);
}

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .section-image-and-content-alt > .shell {
    flex-direction: column;
    gap: 40px;
  }
}

@media (min-width: 767.02px) {
  .section-image-and-content-alt__image {
    width: calc(50% - 12px);
  }
}

.section-image-and-content-alt__image img {
  display: block;
  width: 100%;
  height: auto;
}

.section-image-and-content-alt__content {
  line-height: 1.4;
  font-size: 1.125rem;
}

@media (max-width: 1440px) {
  .section-image-and-content-alt__content {
    font-size: clamp(1rem, 0.1877934272vw + 0.9559859155rem, 1.125rem);
  }
}

@media (min-width: 767.02px) {
  .section-image-and-content-alt__content {
    width: calc(50% + 12px);
  }

  .section-image-and-content-alt__content:not(:first-child) {
    padding-left: clamp(10px, 7.79342723vw + -19.2253521127px, 93px);
  }
}

.section-image-and-content-alt__content p {
  margin-bottom: clamp(10px, 0.9389671362vw + 6.4788732394px, 20px);
}

.section-image-and-content-alt__content h1 {
  line-height: 1.1;
  margin-bottom: clamp(5px, 0.5633802817vw + 2.8873239437px, 11px);
}

.section-image-and-content-alt__content h1 + p {
  text-transform: capitalize;
}

.section-image-and-content-alt__content h1 + p span {
  opacity: 0.5;
  font-size: 1rem;
}

@media (max-width: 1440px) {
  .section-image-and-content-alt__content h1 + p span {
    font-size: clamp(0.875rem, 0.1877934272vw + 0.8309859155rem, 1rem);
  }
}

.section-image-and-content-alt__content > *:last-child {
  margin-bottom: 0;
}

@media (max-width: 985px) {
  .section-content-and-list-of-ticks > .shell {
    flex-direction: column;
    gap: 40px;
  }
}

.section-content-and-list-of-ticks__content {
  font-size: 1.125rem;
}

@media (max-width: 1440px) {
  .section-content-and-list-of-ticks__content {
    font-size: clamp(1rem, 0.1877934272vw + 0.9559859155rem, 1.125rem);
  }
}

@media (min-width: 985.02px) {
  .section-content-and-list-of-ticks__content {
    width: calc(100% - var(--box-width));
    padding-right: clamp(40px, 5.3521126761vw + 19.9295774648px, 97px);
  }
}

.section-content-and-list-of-ticks__content p {
  margin-bottom: clamp(12px, 1.0328638498vw + 8.1267605634px, 23px);
}

.has-background .section-content-and-list-of-ticks__content p {
  opacity: 0.8;
}

.section-content-and-list-of-ticks__content > *:last-child {
  margin-bottom: 0;
}

.section-content-and-list-of-ticks__box {
  display: flex;
  flex-direction: column;
  gap: 25px;
  background-color: var(--theme-color-bg);
  color: var(--theme-color-primary);
  padding: clamp(30px, 0.9389671362vw + 26.4788732394px, 40px);
  padding-top: clamp(40px, 1.0328638498vw + 36.1267605634px, 51px);
  padding-bottom: clamp(25px, 0.9389671362vw + 21.4788732394px, 35px);
}

.has-background--dark .section-content-and-list-of-ticks__box,
.has-background .section-content-and-list-of-ticks__box {
  background-color: #fff;
}

.section-content-and-list-of-ticks__box:before {
  content: " ";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 6px;
  background-color: #ffc935;
}

@media (min-width: 985.02px) {
  .section-content-and-list-of-ticks__box {
    width: var(--box-width);
  }
}

.section-content-and-list-of-ticks__box-entry p {
  opacity: 0.8;
}

.section-content-and-list-of-ticks__box-entry h5 {
  line-height: 1.1;
  max-width: 350px;
  margin-bottom: clamp(12px, 0.7511737089vw + 9.1830985915px, 20px);
}

.section-content-and-list-of-ticks__box-entry > *:last-child {
  margin-bottom: 0;
}

.section-content-and-list-of-ticks__box-list {
  overflow: hidden;
}

.section-content-and-list-of-ticks__box-list ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin: -8px -20px;
}

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .section-content-and-list-of-ticks__box-list ul {
    flex-direction: column;
  }
}

.section-content-and-list-of-ticks__box-list li {
  padding: 8px 20px;
  width: 50%;
  flex-grow: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .section-content-and-list-of-ticks__box-list li {
    width: 100%;
  }
}

.section-content-and-list-of-ticks__box-list li:before {
  content: " ";
  display: block;
  width: var(--icon-size);
  min-width: var(--icon-size);
  height: var(--icon-size);
  background-image: url("data:image/svg+xml,%3csvg%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M10.525%2016.55L17.6%209.475L16.45%208.35L10.525%2014.275L7.525%2011.275L6.4%2012.4L10.525%2016.55ZM12%2022C10.6334%2022%209.34165%2021.7375%208.125%2021.2125C6.90835%2020.6875%205.84585%2019.9708%204.9375%2019.0625C4.02917%2018.1542%203.3125%2017.0917%202.7875%2015.875C2.2625%2014.6583%202%2013.3666%202%2012C2%2010.6166%202.2625%209.31665%202.7875%208.1C3.3125%206.88335%204.02917%205.825%204.9375%204.925C5.84585%204.025%206.90835%203.3125%208.125%202.7875C9.34165%202.2625%2010.6334%202%2012%202C13.3834%202%2014.6833%202.2625%2015.9%202.7875C17.1166%203.3125%2018.175%204.025%2019.075%204.925C19.975%205.825%2020.6875%206.88335%2021.2125%208.1C21.7375%209.31665%2022%2010.6166%2022%2012C22%2013.3666%2021.7375%2014.6583%2021.2125%2015.875C20.6875%2017.0917%2019.975%2018.1542%2019.075%2019.0625C18.175%2019.9708%2017.1166%2020.6875%2015.9%2021.2125C14.6833%2021.7375%2013.3834%2022%2012%2022ZM12%2020.5C14.3666%2020.5%2016.375%2019.6709%2018.025%2018.0125C19.675%2016.3542%2020.5%2014.35%2020.5%2012C20.5%209.63335%2019.675%207.625%2018.025%205.975C16.375%204.325%2014.3666%203.5%2012%203.5C9.65%203.5%207.64585%204.325%205.9875%205.975C4.32917%207.625%203.5%209.63335%203.5%2012C3.5%2014.35%204.32917%2016.3542%205.9875%2018.0125C7.64585%2019.6709%209.65%2020.5%2012%2020.5Z'%20fill='%2308104E'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  --icon-size: clamp(16px, 0.7511737089vw + 13.1830985915px, 24px);
}

.section-content-and-list-of-ticks__box-actions {
  font-size: 1.125rem;
}

@media (max-width: 1440px) {
  .section-content-and-list-of-ticks__box-actions {
    font-size: clamp(1rem, 0.1877934272vw + 0.9559859155rem, 1.125rem);
  }
}

.section-content-and-list-of-ticks__box-actions:not(:first-child) {
  padding-top: 10px;
}

.section-content-and-list-of-ticks__box-actions a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  text-decoration: none;
  color: #ffc935;
}

.section-content-and-list-of-ticks {
  --box-width: clamp(350px, 12.3004694836vw + 303.8732394366px, 481px);
}

.section-single {
  --gap-top: clamp(64px, 1.5023474178vw + 58.3661971831px, 80px);
  --gap-bottom: clamp(64px, 2.9107981221vw + 53.0845070423px, 95px);
}

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .section-single > .shell {
    flex-direction: column;
    gap: 40px;
  }
}

@media (min-width: 767.02px) {
  .section-single__entry {
    width: calc(100% - var(--sidebar-width));
    padding-right: clamp(16px, 4.0375586854vw + 0.8591549296px, 59px);
  }
}

@media (min-width: 767.02px) {
  .section-single__sidebar {
    width: var(--sidebar-width);
  }
}

.section-single {
  --sidebar-width: clamp(180px, 16.9953051643vw + 116.2676056338px, 361px);
}

.section-single-product {
  --gap-top: clamp(40px, 1.7840375587vw + 33.3098591549px, 59px);
  --gap-bottom: clamp(40px, 2.8169014085vw + 29.4366197183px, 70px);
}

.section-single-product
  + section.section-hero
  + section.section--content-and-accordion,
.section-single-product + section.section--content-and-accordion {
  border-top: 1px solid rgba(8, 16, 78, 0.1);
  padding-top: clamp(80px, 3.7558685446vw + 65.9154929577px, 120px);
}

.section-single-product:not(:last-child) {
  margin-bottom: 0;
}

.section-single-product__head {
  display: flex;
  align-items: flex-end;
  border-bottom: 1px solid rgba(8, 16, 78, 0.1);
  gap: 16px;
  margin-bottom: clamp(20px, 1.8779342723vw + 12.9577464789px, 40px);
}

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .section-single-product__head {
    flex-direction: column;
  }
}

.section-single-product__head-title {
  width: auto;
  margin-right: auto;
}

.section-single-product__head-title h1 {
  max-width: 700px;
}

.section-single-product__head-actions {
  width: auto;
  margin-left: auto;
  display: flex;
  align-items: flex-end;
}

.section-single-product__head-actions button {
  border: 0;
  background: transparent;
  text-transform: uppercase;
  font-weight: 600;
  padding-inline: var(--padding-inline);
  padding-block: var(--padding-block);
  position: relative;
  transition-property: background, color;
  transition-duration: var(--theme-transition-duration);
  --padding-inline: clamp(12px, 1.1267605634vw + 7.7746478873px, 24px);
  --padding-block: clamp(10px, 0.9389671362vw + 6.4788732394px, 20px);
  font-size: 1.125rem;
}

@media (max-width: 1440px) {
  .section-single-product__head-actions button {
    font-size: clamp(1rem, 0.1877934272vw + 0.9559859155rem, 1.125rem);
  }
}

.section-single-product__head-actions button:before {
  content: " ";
  position: absolute;
  left: var(--padding-inline);
  right: var(--padding-inline);
  bottom: calc(var(--padding-block) - 9px);
  height: 4px;
  background-color: var(--theme-color-tertiary);
  opacity: 0;
  transition: opacity var(--theme-transition-duration);
}

@media (hover: hover) and (pointer: fine) {
  .section-single-product__head-actions button:where(:hover, :focus-visible) {
    background-color: var(--theme-color-tertiary);
  }
}

.section-single-product__head-actions button.active {
  background-color: var(--theme-color-secondary-alt);
  color: #fff;
  pointer-events: none;
}

.section-single-product__head-actions button.active:before {
  opacity: 1;
}

.section-single-product__body {
  display: flex;
}

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .section-single-product__body {
    flex-direction: column;
    gap: 20px;
  }
}

@media (min-width: 767.02px) {
  .section-single-product__body-gallery {
    width: calc(50% - 12px);
  }
}

.section-single-product__body-gallery a {
  position: relative;
  overflow: hidden;
}

.section-single-product__body-gallery a img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.section-single-product__body-gallery a {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  opacity: 0;
  display: block;
  width: 100%;
  visibility: hidden;
  transition-property: opacity, visibility;
  transition-duration: var(--theme-transition-duration);
  aspect-ratio: 1/1;
  border: 0;
  background: transparent;
}

.section-single-product__body-gallery a.active {
  opacity: 1;
  position: relative;
  visibility: visible;
}

@media (min-width: 767.02px) {
  .section-single-product__body-gallery a.active {
    position: sticky;
    top: calc(var(--admin-bar-height) + var(--header-height) + 20px);
  }
}

.section-single-product__body-gallery img {
  transition: transform var(--theme-transition-duration);
}

@media (hover) and (pointer: fine) {
  .section-single-product__body-gallery a:hover img {
    transform: scale(1.1);
  }
}

.section-single-product__body-inner {
  overflow: hidden;
}

@media (min-width: 767.02px) {
  .section-single-product__body-inner {
    width: calc(50% - 4px);
    margin-left: auto;
  }
}

.section-single-product__body-inner > * {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  transition-property: opacity, visibility;
  transition-duration: var(--theme-transition-duration);
}

.section-single-product__body-inner > .active {
  position: relative;
  opacity: 1;
  visibility: visible;
}

.section-single-product__body__content {
  display: flex;
  flex-direction: column;
  gap: clamp(17px, 1.220657277vw + 12.4225352113px, 30px);
}

@media (max-width: 767px),
  screen and (max-width: 812px) and (orientation: landscape) {
  .section-single-product__body__content {
    padding-top: 20px;
  }
}

.section-single-product__body__content-entry {
  font-size: 1.125rem;
}

@media (max-width: 1440px) {
  .section-single-product__body__content-entry {
    font-size: clamp(1rem, 0.1877934272vw + 0.9559859155rem, 1.125rem);
  }
}

@media (min-width: 767.02px) {
  .section-single-product__body__content-entry {
    padding-left: clamp(22px, 2.0657276995vw + 14.2535211268px, 44px);
  }
}

.section-single-product__body__content-entry h2 {
  line-height: 1.1;
  font-size: 2.25rem;
}

@media (max-width: 1440px) {
  .section-single-product__body__content-entry h2 {
    font-size: clamp(1.75rem, 0.7511737089vw + 1.573943662rem, 2.25rem);
  }
}

.section-single-product__body__content-entry h2 {
  margin-bottom: clamp(12px, 1.0328638498vw + 8.1267605634px, 23px);
}

.section-single-product__body__content-entry p,
.section-single-product__body__content-entry ul,
.section-single-product__body__content-entry ol {
  opacity: 0.8;
}

.section-single-product__body__content-entry > *:last-child {
  margin-bottom: 0;
}

.section-single-product__body__content-actions {
  font-size: 0;
  line-height: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (min-width: 767.02px) {
  .section-single-product__body__content-actions {
    padding-left: clamp(22px, 2.0657276995vw + 14.2535211268px, 44px);
  }
}

.section-single-product__body__thumbs {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 0.7511737089vw + 13.1830985915px, 24px);
}

.section-single-product__body__thumbs-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: clamp(12px, 0.8450704225vw + 8.8309859155px, 21px);
  column-gap: clamp(12px, 0.8450704225vw + 8.8309859155px, 21px);
  row-gap: clamp(8px, 0.8450704225vw + 4.8309859155px, 17px);
}

.section-single-product__body__thumbs-images button {
  cursor: pointer;
  border: 0;
  aspect-ratio: 1/1;
  z-index: 10;
  position: relative;
  overflow: hidden;
}

.section-single-product__body__thumbs-images button img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.section-single-product__body__thumbs-images button:after {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 6px solid var(--theme-color-tertiary);
  opacity: 0;
  transition: opacity var(--theme-transition-duration);
}

.section-single-product__body__thumbs-images button.active:after {
  opacity: 1;
}

.section-single-product__body__thumbs-images img {
  transition: transform var(--theme-transition-duration);
}

@media (hover) and (pointer: fine) {
  .section-single-product__body__thumbs-images button:hover img {
    transform: scale(1.1);
  }
}

.section-single-product__body__thumbs-actions {
  display: flex;
  font-size: 0;
  line-height: 0;
  justify-content: flex-end;
  gap: 16px;
}

.section-single-product__body__thumbs-actions .btn-arrow {
  border-color: #ffc935;
}

@media (hover: hover) and (pointer: fine) {
  .section-single-product__body__thumbs-actions
    .btn-arrow:where(:hover, :focus-visible) {
    border-color: var(--theme-color-quaternary);
  }
}

div.gform_wrapper.gravity-theme.gform-theme--no-framework
  .gform_required_legend {
  display: none;
}

div.gform_wrapper.gravity-theme.gform-theme--no-framework input[type="color"],
div.gform_wrapper.gravity-theme.gform-theme--no-framework input[type="date"],
div.gform_wrapper.gravity-theme.gform-theme--no-framework
  input[type="datetime-local"],
div.gform_wrapper.gravity-theme.gform-theme--no-framework
  input[type="datetime"],
div.gform_wrapper.gravity-theme.gform-theme--no-framework input[type="email"],
div.gform_wrapper.gravity-theme.gform-theme--no-framework input[type="month"],
div.gform_wrapper.gravity-theme.gform-theme--no-framework input[type="number"],
div.gform_wrapper.gravity-theme.gform-theme--no-framework
  input[type="password"],
div.gform_wrapper.gravity-theme.gform-theme--no-framework input[type="search"],
div.gform_wrapper.gravity-theme.gform-theme--no-framework input[type="tel"],
div.gform_wrapper.gravity-theme.gform-theme--no-framework input[type="text"],
div.gform_wrapper.gravity-theme.gform-theme--no-framework input[type="time"],
div.gform_wrapper.gravity-theme.gform-theme--no-framework input[type="url"],
div.gform_wrapper.gravity-theme.gform-theme--no-framework input[type="week"],
div.gform_wrapper.gravity-theme.gform-theme--no-framework select,
div.gform_wrapper.gravity-theme.gform-theme--no-framework textarea {
  display: block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid;
  border-radius: 0;
  box-shadow: none;
  height: 40px;
  background: #fff;
  color: #000;
  padding-inline: 8px;
  font-size: inherit;
}

div.gform_wrapper.gravity-theme.gform-theme--no-framework textarea {
  resize: vertical;
}

div.gform_wrapper.gravity-theme.gform-theme--no-framework textarea.large {
  height: 140px;
}

div.gform_wrapper.gravity-theme.gform-theme--no-framework
  .gform_validation_errors {
  display: none;
}

div.gform_wrapper.gravity-theme.gform-theme--no-framework
  .gfield_validation_message {
  padding: 0;
  border: 0;
  background: transparent;
  color: #c02b0a;
}

div.gform_wrapper.gravity-theme.gform-theme--no-framework .gform_footer,
div.gform_wrapper.gravity-theme.gform-theme--no-framework .gform_page_footer {
  position: relative;
  padding: 0;
  margin: 27px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

div.gform_wrapper.gravity-theme.gform-theme--no-framework .gform_footer input,
div.gform_wrapper.gravity-theme.gform-theme--no-framework .gform_footer button,
div.gform_wrapper.gravity-theme.gform-theme--no-framework
  .gform_page_footer
  input,
div.gform_wrapper.gravity-theme.gform-theme--no-framework
  .gform_page_footer
  button {
  margin: 0;
  line-height: 1.2 !important;
}

div.gform_wrapper.gravity-theme.gform-theme--no-framework .gform_ajax_spinner {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 50px;
}

.vbox-overlay {
  --offset: clamp(14px, 0.5633802817vw + 11.8873239437px, 20px);
}

.vbox-backdrop {
  background-color: #08104ecc !important;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.vbox-close {
  right: var(--offset);
  top: var(--offset);
}

.vbox-next {
  right: var(--offset);
}

.vbox-prev {
  left: var(--offset);
}

.vbox-inline {
  max-width: 600px;
}
.section--content-and-accordion {
  background: #f5f5f5;
  margin: 0 !important;
  padding-top: var(--gap-top);
  padding-bottom: var(--gap-bottom);
}
.section-callout-simple__inner.has-background--dark {
  background: #ffcb08;
  color: #000;
}
.section-callout-simple__action a.btn {
  background-color: #000;
  color: #fff;
}
.section-callout-simple__action a.btn:hover {
  background-color: #fff;
  color: #000;
}

/*14-04-2026*/

.section-callout-simple {
    margin-top: 80px !important;
    margin-bottom: 0px !important;
}
.section-image-and-content {
    padding-top: 80px !important;
    padding-bottom: 100px !important;
    border: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.footer-btn a {
    background: #000;
    width: 100%;
    color: #fff !important;
    text-align: center;
    padding: 10px 20px;
    max-width: 190px;
}
.footer-btn a:hover{
	background:#beb894;
	color:#000 !important;
}
@media (min-width:986px){
	.nav__megamenu__primary > ul > li > a span.mobile-menu{
		display:none;
	}
}
@media (max-width:767px){
		.section-callout-simple{
		margin:50px 0 0 !important;
	}
	.section-image-and-content{
		padding-top:50px !important;
	}
}