@font-face {
  font-family: "Calibri";
  src: url("../fonts/Calibri-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
}
@font-face {
  font-family: "Calibri";
  src: url("../fonts/Calibri-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-stretch: normal;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-stretch: normal;
}
:root {
  --f-spinner-width: 36px;
  --f-spinner-height: 36px;
  --f-spinner-color-1: rgba(0, 0, 0, 0.1);
  --f-spinner-color-2: rgba(17, 24, 28, 0.8);
  --f-spinner-stroke: 2.75;
}

.f-spinner {
  margin: auto;
  padding: 0;
  width: var(--f-spinner-width);
  height: var(--f-spinner-height);
}

.f-spinner svg {
  width: 100%;
  height: 100%;
  vertical-align: top;
  animation: f-spinner-rotate 2s linear infinite;
}

.f-spinner svg * {
  stroke-width: var(--f-spinner-stroke);
  fill: none;
}

.f-spinner svg *:first-child {
  stroke: var(--f-spinner-color-1);
}

.f-spinner svg *:last-child {
  stroke: var(--f-spinner-color-2);
  animation: f-spinner-dash 2s ease-in-out infinite;
}

@keyframes f-spinner-rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes f-spinner-dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
.f-throwOutUp {
  animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutUp;
}

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

@keyframes f-throwOutUp {
  to {
    transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
    opacity: 0;
  }
}
@keyframes f-throwOutDown {
  to {
    transform: translate3d(0, var(--f-throw-out-distance, 150px), 0);
    opacity: 0;
  }
}
.f-zoomInUp {
  animation: var(--f-transition-duration, 0.2s) ease 0.1s both f-zoomInUp;
}

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

@keyframes f-zoomInUp {
  from {
    transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-zoomOutDown {
  to {
    transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
.f-fadeIn {
  animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeIn;
  z-index: 2;
}

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

@keyframes f-fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-fadeOut {
  100% {
    opacity: 0;
  }
}
.f-fadeFastIn {
  animation: var(--f-transition-duration, 0.2s) ease-out both f-fadeFastIn;
  z-index: 2;
}

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

@keyframes f-fadeFastIn {
  0% {
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-fadeFastOut {
  100% {
    opacity: 0;
  }
}
.f-fadeSlowIn {
  animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowIn;
  z-index: 2;
}

.f-fadeSlowOut {
  animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowOut;
  z-index: 1;
}

@keyframes f-fadeSlowIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-fadeSlowOut {
  100% {
    opacity: 0;
  }
}
.f-crossfadeIn {
  animation: var(--f-transition-duration, 0.2s) ease-out both f-crossfadeIn;
  z-index: 2;
}

.f-crossfadeOut {
  animation: calc(var(--f-transition-duration, 0.2s) * 0.5) linear 0.1s both f-crossfadeOut;
  z-index: 1;
}

@keyframes f-crossfadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-crossfadeOut {
  100% {
    opacity: 0;
  }
}
.f-slideIn.from-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext;
}

.f-slideIn.from-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrev;
}

.f-slideOut.to-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNext;
}

.f-slideOut.to-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrev;
}

@keyframes f-slideInPrev {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes f-slideInNext {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes f-slideOutNext {
  100% {
    transform: translateX(-100%);
  }
}
@keyframes f-slideOutPrev {
  100% {
    transform: translateX(100%);
  }
}
.f-classicIn.from-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;
  z-index: 2;
}

.f-classicIn.from-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInPrev;
  z-index: 2;
}

.f-classicOut.to-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutNext;
  z-index: 1;
}

.f-classicOut.to-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutPrev;
  z-index: 1;
}

@keyframes f-classicInNext {
  0% {
    transform: translateX(-75px);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-classicInPrev {
  0% {
    transform: translateX(75px);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-classicOutNext {
  100% {
    transform: translateX(-75px);
    opacity: 0;
  }
}
@keyframes f-classicOutPrev {
  100% {
    transform: translateX(75px);
    opacity: 0;
  }
}
:root {
  --f-button-width: 40px;
  --f-button-height: 40px;
  --f-button-border: 0;
  --f-button-border-radius: 0;
  --f-button-color: #374151;
  --f-button-bg: #f8f8f8;
  --f-button-hover-bg: #e0e0e0;
  --f-button-active-bg: #d0d0d0;
  --f-button-shadow: none;
  --f-button-transition: all 0.15s ease;
  --f-button-transform: none;
  --f-button-svg-width: 20px;
  --f-button-svg-height: 20px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: none;
  --f-button-svg-disabled-opacity: 0.65;
}

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

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

.f-button:focus:not(:focus-visible) {
  outline: none;
}

.f-button:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color));
}

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

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

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

.f-carousel__nav .f-button.is-prev,
.f-carousel__nav .f-button.is-next,
.fancybox__nav .f-button.is-prev,
.fancybox__nav .f-button.is-next {
  position: absolute;
  z-index: 1;
}

.is-horizontal .f-carousel__nav .f-button.is-prev,
.is-horizontal .f-carousel__nav .f-button.is-next,
.is-horizontal .fancybox__nav .f-button.is-prev,
.is-horizontal .fancybox__nav .f-button.is-next {
  top: 50%;
  transform: translateY(-50%);
}

.is-horizontal .f-carousel__nav .f-button.is-prev,
.is-horizontal .fancybox__nav .f-button.is-prev {
  left: var(--f-button-prev-pos);
}

.is-horizontal .f-carousel__nav .f-button.is-next,
.is-horizontal .fancybox__nav .f-button.is-next {
  right: var(--f-button-next-pos);
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-prev,
.is-horizontal.is-rtl .fancybox__nav .f-button.is-prev {
  left: auto;
  right: var(--f-button-next-pos);
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-next,
.is-horizontal.is-rtl .fancybox__nav .f-button.is-next {
  right: auto;
  left: var(--f-button-prev-pos);
}

.is-vertical .f-carousel__nav .f-button.is-prev,
.is-vertical .f-carousel__nav .f-button.is-next,
.is-vertical .fancybox__nav .f-button.is-prev,
.is-vertical .fancybox__nav .f-button.is-next {
  top: auto;
  left: 50%;
  transform: translateX(-50%);
}

.is-vertical .f-carousel__nav .f-button.is-prev,
.is-vertical .fancybox__nav .f-button.is-prev {
  top: var(--f-button-next-pos);
}

.is-vertical .f-carousel__nav .f-button.is-next,
.is-vertical .fancybox__nav .f-button.is-next {
  bottom: var(--f-button-next-pos);
}

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

.f-carousel__nav .f-button:disabled,
.fancybox__nav .f-button:disabled {
  pointer-events: none;
}

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

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

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

.fancybox__container {
  --fancybox-color: #dbdbdb;
  --fancybox-hover-color: #fff;
  --fancybox-bg: rgba(24, 24, 27, 0.98);
  --fancybox-slide-gap: 10px;
  --f-spinner-width: 50px;
  --f-spinner-height: 50px;
  --f-spinner-color-1: rgba(255, 255, 255, 0.1);
  --f-spinner-color-2: #bbb;
  --f-spinner-stroke: 3.65;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  direction: ltr;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #f8f8f8;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  overflow: visible;
  z-index: var(--fancybox-zIndex, 1050);
  outline: none;
  transform-origin: top left;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overscroll-behavior-y: contain;
}

.fancybox__container *,
.fancybox__container *::before,
.fancybox__container *::after {
  box-sizing: inherit;
}

.fancybox__container::backdrop {
  background-color: rgba(0, 0, 0, 0);
}

.fancybox__backdrop {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  background: var(--fancybox-bg);
  opacity: var(--fancybox-opacity, 1);
  will-change: opacity;
}

.fancybox__carousel {
  position: relative;
  box-sizing: border-box;
  flex: 1;
  min-height: 0;
  z-index: 10;
  overflow-y: visible;
  overflow-x: clip;
}

.fancybox__viewport {
  width: 100%;
  height: 100%;
}

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

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

.fancybox__track {
  display: flex;
  margin: 0 auto;
  height: 100%;
}

.fancybox__slide {
  flex: 0 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 var(--fancybox-slide-gap) 0 0;
  padding: 4px;
  overflow: auto;
  overscroll-behavior: contain;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn {
  padding-top: 40px;
}

.fancybox__slide.has-iframe,
.fancybox__slide.has-video,
.fancybox__slide.has-html5video {
  overflow: hidden;
}

.fancybox__slide.has-image {
  overflow: hidden;
}

.fancybox__slide.has-image.is-animating,
.fancybox__slide.has-image.is-selected {
  overflow: visible;
}

.fancybox__slide::before,
.fancybox__slide::after {
  content: "";
  flex: 0 0 0;
  margin: auto;
}

.fancybox__backdrop:empty,
.fancybox__viewport:empty,
.fancybox__track:empty,
.fancybox__slide:empty {
  display: block;
}

.fancybox__content {
  align-self: center;
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0;
  padding: 2rem;
  max-width: 100%;
  color: var(--fancybox-content-color, #374151);
  background: var(--fancybox-content-bg, #fff);
  cursor: default;
  border-radius: 0;
  z-index: 20;
}

.is-loading .fancybox__content {
  opacity: 0;
}

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

.can-zoom_in .fancybox__content {
  cursor: zoom-in;
}

.can-zoom_out .fancybox__content {
  cursor: zoom-out;
}

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

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

.fancybox__slide.has-image > .fancybox__content {
  padding: 0;
  background: rgba(0, 0, 0, 0);
  min-height: 1px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  transition: none;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.fancybox__slide.has-image > .fancybox__content > picture > img {
  width: 100%;
  height: auto;
  max-height: 100%;
}

.is-animating .fancybox__content,
.is-dragging .fancybox__content {
  will-change: transform, width, height;
}

.fancybox-image {
  margin: auto;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  user-select: none;
  filter: blur(0px);
}

.fancybox__caption {
  align-self: center;
  max-width: 100%;
  flex-shrink: 0;
  margin: 0;
  padding: 14px 0 4px 0;
  overflow-wrap: anywhere;
  line-height: 1.375;
  color: var(--fancybox-color, currentColor);
  opacity: var(--fancybox-opacity, 1);
  cursor: auto;
  visibility: visible;
}

.is-loading .fancybox__caption,
.is-closing .fancybox__caption {
  opacity: 0;
  visibility: hidden;
}

.is-compact .fancybox__caption {
  padding-bottom: 0;
}

.f-button.is-close-btn {
  --f-button-svg-stroke-width: 2;
  position: absolute;
  top: 0;
  right: 8px;
  z-index: 40;
}

.fancybox__content > .f-button.is-close-btn {
  --f-button-width: 34px;
  --f-button-height: 34px;
  --f-button-border-radius: 4px;
  --f-button-color: var(--fancybox-color, #fff);
  --f-button-hover-color: var(--fancybox-color, #fff);
  --f-button-bg: transparent;
  --f-button-hover-bg: transparent;
  --f-button-active-bg: transparent;
  --f-button-svg-width: 22px;
  --f-button-svg-height: 22px;
  position: absolute;
  top: -38px;
  right: 0;
  opacity: 0.75;
}

.is-loading .fancybox__content > .f-button.is-close-btn {
  visibility: hidden;
}

.is-zooming-out .fancybox__content > .f-button.is-close-btn {
  visibility: hidden;
}

.fancybox__content > .f-button.is-close-btn:hover {
  opacity: 1;
}

.fancybox__footer {
  padding: 0;
  margin: 0;
  position: relative;
}

.fancybox__footer .fancybox__caption {
  width: 100%;
  padding: 24px;
  opacity: var(--fancybox-opacity, 1);
  transition: all 0.25s ease;
}

.is-compact .fancybox__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(24, 24, 27, 0.5);
}

.is-compact .fancybox__footer .fancybox__caption {
  padding: 12px;
}

.is-compact .fancybox__content > .f-button.is-close-btn {
  --f-button-border-radius: 50%;
  --f-button-color: #fff;
  --f-button-hover-color: #fff;
  --f-button-outline-color: #000;
  --f-button-bg: rgba(0, 0, 0, 0.6);
  --f-button-active-bg: rgba(0, 0, 0, 0.6);
  --f-button-hover-bg: rgba(0, 0, 0, 0.6);
  --f-button-svg-width: 18px;
  --f-button-svg-height: 18px;
  --f-button-svg-filter: none;
  top: 5px;
  right: 5px;
}

.fancybox__nav {
  --f-button-width: 50px;
  --f-button-height: 50px;
  --f-button-border: 0;
  --f-button-border-radius: 50%;
  --f-button-color: var(--fancybox-color);
  --f-button-hover-color: var(--fancybox-hover-color);
  --f-button-bg: transparent;
  --f-button-hover-bg: rgba(24, 24, 27, 0.3);
  --f-button-active-bg: rgba(24, 24, 27, 0.5);
  --f-button-shadow: none;
  --f-button-transition: all 0.15s ease;
  --f-button-transform: none;
  --f-button-svg-width: 26px;
  --f-button-svg-height: 26px;
  --f-button-svg-stroke-width: 2.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.5));
  --f-button-svg-disabled-opacity: 0.65;
  --f-button-next-pos: 1rem;
  --f-button-prev-pos: 1rem;
  opacity: var(--fancybox-opacity, 1);
}

.fancybox__nav .f-button:before {
  position: absolute;
  content: "";
  top: -30px;
  right: -20px;
  left: -20px;
  bottom: -30px;
  z-index: 1;
}

.is-idle .fancybox__nav {
  animation: 0.15s ease-out both f-fadeOut;
}

.is-idle.is-compact .fancybox__footer {
  pointer-events: none;
  animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__slide > .f-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: var(--f-spinner-top, calc(var(--f-spinner-width) * -0.5)) 0 0 var(--f-spinner-left, calc(var(--f-spinner-height) * -0.5));
  z-index: 30;
  cursor: pointer;
}

.fancybox-protected {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  user-select: none;
}

.fancybox-ghost {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  z-index: 40;
  user-select: none;
  pointer-events: none;
}

.fancybox-focus-guard {
  outline: none;
  opacity: 0;
  position: fixed;
  pointer-events: none;
}

.fancybox__container:not([aria-hidden]) {
  opacity: 0;
}

.fancybox__container.is-animated[aria-hidden=false] > *:not(.fancybox__backdrop, .fancybox__carousel),
.fancybox__container.is-animated[aria-hidden=false] .fancybox__carousel > *:not(.fancybox__viewport),
.fancybox__container.is-animated[aria-hidden=false] .fancybox__slide > *:not(.fancybox__content) {
  animation: var(--f-interface-enter-duration, 0.25s) ease 0.1s backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop {
  animation: var(--f-backdrop-enter-duration, 0.35s) ease backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden=true] > *:not(.fancybox__backdrop, .fancybox__carousel),
.fancybox__container.is-animated[aria-hidden=true] .fancybox__carousel > *:not(.fancybox__viewport),
.fancybox__container.is-animated[aria-hidden=true] .fancybox__slide > *:not(.fancybox__content) {
  animation: var(--f-interface-exit-duration, 0.15s) ease forwards f-fadeOut;
}

.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop {
  animation: var(--f-backdrop-exit-duration, 0.35s) ease forwards f-fadeOut;
}

.has-iframe .fancybox__content,
.has-map .fancybox__content,
.has-pdf .fancybox__content,
.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
  max-width: 100%;
  flex-shrink: 1;
  min-height: 1px;
  overflow: visible;
}

.has-iframe .fancybox__content,
.has-map .fancybox__content,
.has-pdf .fancybox__content {
  width: calc(100% - 120px);
  height: 90%;
}

.fancybox__container.is-compact .has-iframe .fancybox__content,
.fancybox__container.is-compact .has-map .fancybox__content,
.fancybox__container.is-compact .has-pdf .fancybox__content {
  width: 100%;
  height: 100%;
}

.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
  width: 960px;
  height: 540px;
  max-width: 100%;
  max-height: 100%;
}

.has-map .fancybox__content,
.has-pdf .fancybox__content,
.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
  padding: 0;
  background: rgba(24, 24, 27, 0.9);
  color: #fff;
}

.has-map .fancybox__content {
  background: #e5e3df;
}

.fancybox__html5video,
.fancybox__iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0);
}

.fancybox-placeholder {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.f-carousel__thumbs {
  --f-thumb-width: 96px;
  --f-thumb-height: 72px;
  --f-thumb-outline: 0;
  --f-thumb-outline-color: #5eb0ef;
  --f-thumb-opacity: 1;
  --f-thumb-hover-opacity: 1;
  --f-thumb-selected-opacity: 1;
  --f-thumb-border-radius: 2px;
  --f-thumb-offset: 0px;
  --f-button-next-pos: 0;
  --f-button-prev-pos: 0;
}

.f-carousel__thumbs.is-classic {
  --f-thumb-gap: 8px;
  --f-thumb-opacity: 0.5;
  --f-thumb-hover-opacity: 1;
  --f-thumb-selected-opacity: 1;
}

.f-carousel__thumbs.is-modern {
  --f-thumb-gap: 4px;
  --f-thumb-extra-gap: 16px;
  --f-thumb-clip-width: 46px;
}

.f-thumbs {
  position: relative;
  flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  user-select: none;
  perspective: 1000px;
  transform: translateZ(0);
}

.f-thumbs .f-spinner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  background-image: linear-gradient(#ebeff2, #e2e8f0);
  z-index: -1;
}

.f-thumbs .f-spinner svg {
  display: none;
}

.f-thumbs.is-vertical {
  height: 100%;
}

.f-thumbs__viewport {
  width: 100%;
  height: auto;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}

.f-thumbs__track {
  display: flex;
}

.f-thumbs__slide {
  position: relative;
  flex: 0 0 auto;
  box-sizing: content-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  width: var(--f-thumb-width);
  height: var(--f-thumb-height);
  overflow: visible;
  cursor: pointer;
}

.f-thumbs__slide.is-loading img {
  opacity: 0;
}

.is-classic .f-thumbs__viewport {
  height: 100%;
}

.is-modern .f-thumbs__track {
  width: max-content;
}

.is-modern .f-thumbs__track::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc((var(--f-thumb-clip-width, 0)) * -0.5);
  width: calc(var(--width, 0) * 1px + var(--f-thumb-clip-width, 0));
  cursor: pointer;
}

.is-modern .f-thumbs__slide {
  width: var(--f-thumb-clip-width);
  transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
  transition: none;
  pointer-events: none;
}

.is-modern.is-resting .f-thumbs__slide {
  transition: transform 0.33s ease;
}

.is-modern.is-resting .f-thumbs__slide__button {
  transition: clip-path 0.33s ease;
}

.is-using-tab .is-modern .f-thumbs__slide:focus-within {
  filter: drop-shadow(-1px 0px 0px var(--f-thumb-outline-color)) drop-shadow(2px 0px 0px var(--f-thumb-outline-color)) drop-shadow(0px -1px 0px var(--f-thumb-outline-color)) drop-shadow(0px 2px 0px var(--f-thumb-outline-color));
}

.f-thumbs__slide__button {
  appearance: none;
  width: var(--f-thumb-width);
  height: 100%;
  margin: 0 -100% 0 -100%;
  padding: 0;
  border: 0;
  position: relative;
  border-radius: var(--f-thumb-border-radius);
  overflow: hidden;
  background: rgba(0, 0, 0, 0);
  outline: none;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  opacity: var(--f-thumb-opacity);
  transition: opacity 0.2s ease;
}

.f-thumbs__slide__button:hover {
  opacity: var(--f-thumb-hover-opacity);
}

.f-thumbs__slide__button:focus:not(:focus-visible) {
  outline: none;
}

.f-thumbs__slide__button:focus-visible {
  outline: none;
  opacity: var(--f-thumb-selected-opacity);
}

.is-modern .f-thumbs__slide__button {
  --clip-path: inset(
      0
          calc(
              ((var(--f-thumb-width, 0) - var(--f-thumb-clip-width, 0))) *
                  (1 - var(--progress, 0)) * 0.5
          )
          round var(--f-thumb-border-radius, 0)
  );
  clip-path: var(--clip-path);
}

.is-classic .is-nav-selected .f-thumbs__slide__button {
  opacity: var(--f-thumb-selected-opacity);
}

.is-classic .is-nav-selected .f-thumbs__slide__button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: auto;
  bottom: 0;
  border: var(--f-thumb-outline, 0) solid var(--f-thumb-outline-color, transparent);
  border-radius: var(--f-thumb-border-radius);
  animation: f-fadeIn 0.2s ease-out;
  z-index: 10;
}

.f-thumbs__slide__img {
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: var(--f-thumb-offset);
  box-sizing: border-box;
  pointer-events: none;
  object-fit: cover;
  border-radius: var(--f-thumb-border-radius);
}

.f-thumbs.is-horizontal .f-thumbs__track {
  padding: 8px 0 12px 0;
}

.f-thumbs.is-horizontal .f-thumbs__slide {
  margin: 0 var(--f-thumb-gap) 0 0;
}

.f-thumbs.is-vertical .f-thumbs__track {
  flex-wrap: wrap;
  padding: 0 8px;
}

.f-thumbs.is-vertical .f-thumbs__slide {
  margin: 0 0 var(--f-thumb-gap) 0;
}

.fancybox__thumbs {
  --f-thumb-width: 96px;
  --f-thumb-height: 72px;
  --f-thumb-border-radius: 2px;
  --f-thumb-outline: 2px;
  --f-thumb-outline-color: #ededed;
  position: relative;
  opacity: var(--fancybox-opacity, 1);
  transition: max-height 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.fancybox__thumbs.is-classic {
  --f-thumb-gap: 8px;
  --f-thumb-opacity: 0.5;
  --f-thumb-hover-opacity: 1;
}

.fancybox__thumbs.is-classic .f-spinner {
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.fancybox__thumbs.is-modern {
  --f-thumb-gap: 4px;
  --f-thumb-extra-gap: 16px;
  --f-thumb-clip-width: 46px;
  --f-thumb-opacity: 1;
  --f-thumb-hover-opacity: 1;
}

.fancybox__thumbs.is-modern .f-spinner {
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.fancybox__thumbs.is-horizontal {
  padding: 0 var(--f-thumb-gap);
}

.fancybox__thumbs.is-vertical {
  padding: var(--f-thumb-gap) 0;
}

.is-compact .fancybox__thumbs {
  --f-thumb-width: 64px;
  --f-thumb-clip-width: 32px;
  --f-thumb-height: 48px;
  --f-thumb-extra-gap: 10px;
}

.fancybox__thumbs.is-masked {
  max-height: 0px !important;
}

.is-closing .fancybox__thumbs {
  transition: none !important;
}

.fancybox__toolbar {
  --f-progress-color: var(--fancybox-color, rgba(255, 255, 255, 0.94));
  --f-button-width: 46px;
  --f-button-height: 46px;
  --f-button-color: var(--fancybox-color);
  --f-button-hover-color: var(--fancybox-hover-color);
  --f-button-bg: rgba(24, 24, 27, 0.65);
  --f-button-hover-bg: rgba(70, 70, 73, 0.65);
  --f-button-active-bg: rgba(90, 90, 93, 0.65);
  --f-button-border-radius: 0;
  --f-button-svg-width: 24px;
  --f-button-svg-height: 24px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.15));
  --f-button-svg-fill: none;
  --f-button-svg-disabled-opacity: 0.65;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif;
  color: var(--fancybox-color, currentColor);
  opacity: var(--fancybox-opacity, 1);
  text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.5));
  pointer-events: none;
  z-index: 20;
}

.fancybox__toolbar :focus-visible {
  z-index: 1;
}

.fancybox__toolbar.is-absolute,
.is-compact .fancybox__toolbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.is-idle .fancybox__toolbar {
  pointer-events: none;
  animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__toolbar__column {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
}

.fancybox__toolbar__column.is-left,
.fancybox__toolbar__column.is-right {
  flex-grow: 1;
  flex-basis: 0;
}

.fancybox__toolbar__column.is-right {
  display: flex;
  justify-content: flex-end;
  flex-wrap: nowrap;
}

.fancybox__infobar {
  padding: 0 5px;
  line-height: var(--f-button-height);
  text-align: center;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
  cursor: default;
  user-select: none;
}

.fancybox__infobar span {
  padding: 0 5px;
}

.fancybox__infobar:not(:first-child):not(:last-child) {
  background: var(--f-button-bg);
}

[data-fancybox-toggle-slideshow] {
  position: relative;
}

[data-fancybox-toggle-slideshow] .f-progress {
  height: 100%;
  opacity: 0.3;
}

[data-fancybox-toggle-slideshow] svg g:first-child {
  display: flex;
}

[data-fancybox-toggle-slideshow] svg g:last-child {
  display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:first-child {
  display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:last-child {
  display: flex;
}

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

[data-fancybox-toggle-fullscreen] svg g:last-child {
  display: none;
}

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

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

.f-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  background: var(--f-progress-color, var(--f-carousel-theme-color, #0091ff));
  z-index: 30;
  user-select: none;
  pointer-events: none;
}

/**
 * Swiper 12.0.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 21, 2025
 */
:root {
  --swiper-theme-color: #007aff;
}

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

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

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

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

.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 {
  display: block;
  flex-shrink: 0;
  height: 100%;
  position: relative;
  transition-property: transform;
  width: 100%;
}

.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 {
  backface-visibility: hidden;
  transform: translateZ(0);
}

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

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

.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide {
  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 {
  height: var(--swiper-centered-offset-after);
  min-width: 1px;
  width: 100%;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.1490196078);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(270deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
}

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

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

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

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

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

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

.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 {
  height: var(--swiper-virtual-size);
  width: 1px;
}

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

.swiper-button-next,
.swiper-button-prev {
  align-items: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  cursor: pointer;
  display: flex;
  height: var(--swiper-navigation-size);
  justify-content: center;
  position: absolute;
  width: var(--swiper-navigation-size);
  z-index: 10;
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  cursor: auto;
  opacity: 0.35;
  pointer-events: none;
}
.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
  cursor: auto;
  opacity: 0;
  pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-next,
.swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}
.swiper-button-next svg,
.swiper-button-prev svg {
  height: 100%;
  object-fit: contain;
  transform-origin: center;
  width: 100%;
  fill: currentColor;
  pointer-events: none;
}

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

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

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

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

.swiper-horizontal .swiper-button-next,
.swiper-horizontal .swiper-button-prev,
.swiper-horizontal ~ .swiper-button-next,
.swiper-horizontal ~ .swiper-button-prev {
  margin-left: 0;
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  top: var(--swiper-navigation-top-offset, 50%);
}
.swiper-horizontal.swiper-rtl .swiper-button-next, .swiper-horizontal.swiper-rtl ~ .swiper-button-next, .swiper-horizontal ~ .swiper-button-prev,
.swiper-horizontal .swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
}
.swiper-horizontal.swiper-rtl .swiper-button-prev, .swiper-horizontal.swiper-rtl ~ .swiper-button-prev, .swiper-horizontal ~ .swiper-button-next,
.swiper-horizontal .swiper-button-next {
  left: auto;
  right: var(--swiper-navigation-sides-offset, 4px);
}
.swiper-horizontal.swiper-rtl .swiper-button-next .swiper-navigation-icon, .swiper-horizontal.swiper-rtl ~ .swiper-button-next .swiper-navigation-icon, .swiper-horizontal ~ .swiper-button-prev .swiper-navigation-icon,
.swiper-horizontal .swiper-button-prev .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(0deg);
}

.swiper-vertical .swiper-button-next,
.swiper-vertical .swiper-button-prev,
.swiper-vertical ~ .swiper-button-next,
.swiper-vertical ~ .swiper-button-prev {
  left: var(--swiper-navigation-top-offset, 50%);
  margin-left: calc(0px - var(--swiper-navigation-size) / 2);
  margin-top: 0;
  right: auto;
}
.swiper-vertical .swiper-button-prev,
.swiper-vertical ~ .swiper-button-prev {
  bottom: auto;
  top: var(--swiper-navigation-sides-offset, 4px);
}
.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;
  transform: translateZ(0);
  transition: opacity 0.3s;
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination.swiper-pagination-disabled, .swiper-pagination-disabled > .swiper-pagination {
  display: none !important;
}

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

.swiper-pagination-bullets-dynamic {
  font-size: 0;
  overflow: hidden;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  position: relative;
  transform: scale(0.33);
}
.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 {
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  display: inline-block;
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
}
button .swiper-pagination-bullet {
  appearance: none;
  border: none;
  box-shadow: none;
  margin: 0;
  padding: 0;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}

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

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  left: var(--swiper-pagination-left, auto);
  right: var(--swiper-pagination-right, 8px);
  top: 50%;
  transform: translate3d(0, -50%, 0);
}
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  display: block;
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
}
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: transform 0.2s, top 0.2s;
}

.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: translateX(-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: transform 0.2s, left 0.2s;
}

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

.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.2509803922));
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: scale(0);
  transform-origin: left top;
  width: 100%;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-horizontal > .swiper-pagination-progressbar, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
  width: 100%;
}
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar {
  height: 100%;
  left: 0;
  top: 0;
  width: var(--swiper-pagination-progressbar-size, 4px);
}

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

.swiper-scrollbar {
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1019607843));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
}
.swiper-scrollbar.swiper-scrollbar-disabled, .swiper-scrollbar-disabled > .swiper-scrollbar {
  display: none !important;
}
.swiper-scrollbar.swiper-scrollbar-horizontal, .swiper-horizontal > .swiper-scrollbar {
  bottom: var(--swiper-scrollbar-bottom, 4px);
  height: var(--swiper-scrollbar-size, 4px);
  left: var(--swiper-scrollbar-sides-offset, 1%);
  position: absolute;
  top: var(--swiper-scrollbar-top, auto);
  width: calc(100% - var(--swiper-scrollbar-sides-offset, 1%) * 2);
  z-index: 50;
}
.swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
  height: calc(100% - var(--swiper-scrollbar-sides-offset, 1%) * 2);
  left: var(--swiper-scrollbar-left, auto);
  position: absolute;
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  width: var(--swiper-scrollbar-size, 4px);
  z-index: 50;
}

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

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

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

.swiper-zoom-container {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  text-align: center;
  width: 100%;
}
.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

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

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

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

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

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

.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 {
  pointer-events: auto;
}
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

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

.swiper-cube .swiper-slide {
  backface-visibility: hidden;
  height: 100%;
  pointer-events: none;
  transform-origin: 0 0;
  visibility: hidden;
  width: 100%;
  z-index: 1;
}
.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 {
  bottom: 0;
  height: 100%;
  left: 0;
  opacity: 0.6;
  position: absolute;
  width: 100%;
  z-index: 0;
}
.swiper-cube .swiper-cube-shadow:before {
  background: #000;
  bottom: 0;
  content: "";
  filter: blur(50px);
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

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

.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,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
  backface-visibility: hidden;
  z-index: 0;
}

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

.swiper-flip .swiper-slide {
  backface-visibility: hidden;
  pointer-events: none;
  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-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
  backface-visibility: hidden;
  z-index: 0;
}

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

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

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

/*!
 * Generated using the Bootstrap Customizer (https://getbootstrap.com/docs/3.4/customize/)
 */
/*!
 * Bootstrap v3.4.1 (https://getbootstrap.com/)
 * Copyright 2011-2019 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

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

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

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

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

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

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

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

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

small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

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

figure {
  margin: 1em 40px;
}

hr {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

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

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

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

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

input {
  line-height: normal;
}

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

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

input[type=search] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

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

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

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

td,
th {
  padding: 0;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

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

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333333;
  background-color: #ffffff;
}

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

a {
  color: #337ab7;
  text-decoration: none;
}

a:focus {
  text-decoration: underline;
}

a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

figure {
  margin: 0;
}

img {
  vertical-align: middle;
}

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

.img-rounded {
  border-radius: 6px;
}

.img-thumbnail {
  padding: 4px;
  line-height: 1.42857143;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.img-circle {
  border-radius: 50%;
}

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee;
}

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

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

[role=button] {
  cursor: pointer;
}

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

.fade.in {
  opacity: 1;
}

.collapse {
  display: none;
}

.collapse.in {
  display: block;
}

tr.collapse.in {
  display: table-row;
}

tbody.collapse.in {
  display: table-row-group;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-property: height, visibility;
  -o-transition-property: height, visibility;
  transition-property: height, visibility;
  -webkit-transition-duration: 0.35s;
  -o-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid \9 ;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.dropup,
.dropdown {
  position: relative;
}

.dropdown-toggle:focus {
  outline: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-color: #ffffff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #cccccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}

.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}

.dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}

.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: 400;
  line-height: 1.42857143;
  color: #333333;
  white-space: nowrap;
}

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  color: #262626;
  text-decoration: none;
  background-color: #f5f5f5;
}

.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  color: #ffffff;
  text-decoration: none;
  background-color: #337ab7;
  outline: 0;
}

.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  color: #777777;
}

.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}

.open > .dropdown-menu {
  display: block;
}

.open > a {
  outline: 0;
}

.dropdown-menu-right {
  right: 0;
  left: auto;
}

.dropdown-menu-left {
  right: auto;
  left: 0;
}

.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.42857143;
  color: #777777;
  white-space: nowrap;
}

.dropdown-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 990;
}

.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  content: "";
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid \9 ;
}

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px;
}

@media (min-width: 768px) {
  .navbar-right .dropdown-menu {
    right: 0;
    left: auto;
  }
  .navbar-right .dropdown-menu-left {
    right: auto;
    left: 0;
  }
}
.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}

.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}

.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}

.modal-content {
  position: relative;
  background-color: #ffffff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #999999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000000;
}

.modal-backdrop.fade {
  filter: alpha(opacity=0);
  opacity: 0;
}

.modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: 0.5;
}

.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}

.modal-header .close {
  margin-top: -2px;
}

.modal-title {
  margin: 0;
  line-height: 1.42857143;
}

.modal-body {
  position: relative;
  padding: 15px;
}

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}

.modal-footer .btn + .btn {
  margin-bottom: 0;
  margin-left: 5px;
}

.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}

.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}
.clearfix:before,
.clearfix:after,
.modal-header:before,
.modal-header:after,
.modal-footer:before,
.modal-footer:after {
  display: table;
  content: " ";
}

.clearfix:after,
.modal-header:after,
.modal-footer:after {
  clear: both;
}

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

.pull-right {
  float: right !important;
}

.pull-left {
  float: left !important;
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.invisible {
  visibility: hidden;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.hidden {
  display: none !important;
}

.affix {
  position: fixed;
}

.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}

.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-selection--single .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}

.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}

.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline;
  list-style: none;
  padding: 0;
}

.select2-container .select2-selection--multiple .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}

.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  margin-left: 5px;
  padding: 0;
  max-width: 100%;
  resize: none;
  height: 18px;
  vertical-align: bottom;
  font-family: sans-serif;
  overflow: hidden;
  word-break: keep-all;
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}

.select2-results {
  display: block;
}

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.select2-results__option {
  padding: 6px;
  user-select: none;
  -webkit-user-select: none;
}

.select2-results__option--selectable {
  cursor: pointer;
}

.select2-container--open .select2-dropdown {
  left: 0;
}

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-search--dropdown {
  display: block;
  padding: 4px;
}

.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-search--dropdown.select2-search--hide {
  display: none;
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 26px;
  margin-right: 20px;
  padding-right: 0px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  padding-bottom: 5px;
  padding-right: 5px;
  position: relative;
}

.select2-container--default .select2-selection--multiple.select2-selection--clearable {
  padding-right: 25px;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  font-weight: bold;
  height: 20px;
  margin-right: 10px;
  margin-top: 5px;
  position: absolute;
  right: 0;
  padding: 1px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0;
  padding-left: 20px;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
  white-space: nowrap;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-right: 1px solid #aaa;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #999;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 0 4px;
  position: absolute;
  left: 0;
  top: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
  background-color: #f1f1f1;
  color: #333;
  outline: none;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  border-left: 1px solid #aaa;
  border-right: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__clear {
  float: left;
  margin-left: 10px;
  margin-right: auto;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
}

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield;
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}

.select2-container--default .select2-results__option--group {
  padding: 0;
}

.select2-container--default .select2-results__option--disabled {
  color: #999;
}

.select2-container--default .select2-results__option--selected {
  background-color: #ddd;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #5897fb;
  color: white;
}

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: -webkit-linear-gradient(top, #fff 50%, #eee 100%);
  background-image: -o-linear-gradient(top, #fff 50%, #eee 100%);
  background-image: linear-gradient(to bottom, #fff 50%, #eee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 26px;
  margin-right: 20px;
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: -webkit-linear-gradient(top, #eee 50%, #ccc 100%);
  background-image: -o-linear-gradient(top, #eee 50%, #ccc 100%);
  background-image: linear-gradient(to bottom, #eee 50%, #ccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFCCCCCC", GradientType=0);
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #fff 0%, #eee 50%);
  background-image: -o-linear-gradient(top, #fff 0%, #eee 50%);
  background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #eee 50%, #fff 100%);
  background-image: -o-linear-gradient(top, #eee 50%, #fff 100%);
  background-image: linear-gradient(to bottom, #eee 50%, #fff 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFFFFFFF", GradientType=0);
}

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0;
  padding-bottom: 5px;
  padding-right: 5px;
}

.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #888;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 0 4px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
  outline: none;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none;
}

.select2-container--classic .select2-dropdown {
  background-color: #fff;
  border: 1px solid transparent;
}

.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}

.select2-container--classic .select2-dropdown--below {
  border-top: none;
}

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--classic .select2-results__option--group {
  padding: 0;
}

.select2-container--classic .select2-results__option--disabled {
  color: grey;
}

.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #3875d7;
  color: #fff;
}

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}

* {
  margin: 0;
  padding: 0;
}

*,
:before,
:after {
  box-sizing: border-box;
}

:focus {
  outline: none;
}

html {
  font-family: sans-serif;
  line-height: 1;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  text-decoration-skip: objects;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

html * {
  max-height: 1000000px;
}

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

audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

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

[hidden],
template {
  display: none;
}

a {
  color: inherit;
  background-color: transparent;
}

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

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

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  flex: none;
  /*lazy-load*/
  opacity: 1;
  transition: opacity 0.3s;
}

img[data-src] {
  /*lazy-load*/
  opacity: 0;
}

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

hr {
  height: 0;
  margin: 0;
}

pre {
  overflow: auto;
}

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

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
}

input:required,
textarea:required {
  box-shadow: none;
}

button {
  overflow: visible;
  border: none;
  background: none;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  /* 2 */
  cursor: pointer;
  -webkit-appearance: button;
  /* 3 */
}

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

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

input {
  line-height: normal;
}

input[type=checkbox],
input[type=radio] {
  padding: 0;
}

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

input[type=search] {
  -webkit-appearance: textfield;
}

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

fieldset {
  border: 1px solid #c0c0c0;
}

legend {
  border: 0;
}

textarea {
  overflow: auto;
  resize: none;
}

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

ol,
ul,
li {
  list-style: none;
}

button,
hr,
input,
textarea {
  border: none;
}

label {
  cursor: pointer;
}

::-webkit-file-upload-button {
  cursor: pointer;
}

.clearfix:before,
.clearfix:after {
  display: table;
  content: " ";
}

.clear,
.clearfix:after {
  clear: both;
}

.center {
  text-align: center;
}

.ovh {
  overflow: hidden;
}

.ovv {
  overflow: visible;
}

.hid,
.hidden {
  display: none;
}

.dt {
  display: table;
}

.dtc {
  display: table-cell;
  vertical-align: middle;
}

.getModal {
  cursor: pointer;
}

/*responsive video iframe*/
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0;
}
.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

svg {
  width: 100%;
  height: 100%;
  transition: 0.3s all;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1.5rem;
}
@media only screen and (max-width: 768px) {
  .header-top {
    display: none;
  }
}
.header-top .left-col {
  display: flex;
  gap: 2rem;
}
.header-top .left-col a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #052922;
}
.header-top .left-col a:hover {
  text-decoration: underline;
}
.header-top .left-col a img {
  width: 1.25rem;
  height: 1.25rem;
}
.header-top .right-col {
  display: flex;
  gap: 0.625rem;
}
.header-top .right-col .dropdown .dropdown-btn {
  padding: 0.375rem 0.625rem;
  font-size: 0.875rem;
}
.header-top .right-col .dropdown .dropdown-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}
.header-top .right-col .dropdown .dropdown-menu {
  right: 0;
  left: initial;
  min-width: 100%;
}
.header-top .right-col .dropdown .dropdown-menu a {
  font-family: "Lato";
  font-weight: 600;
  padding: 0.25rem 0.625rem;
}
.header-top .right-col .special-features-btn {
  padding: 0.375rem;
}
.header-top .right-col .special-features-btn img {
  width: 1.5rem;
  height: 1.5rem;
}

.header-bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(92.49deg, #06332b 0.29%, #0c6d5c 100%);
  color: #fff;
  border-radius: 1rem;
  padding: 0.75rem 4rem;
  margin: 0 0 1rem;
}
@media only screen and (max-width: 1312px) {
  .header-bottom {
    padding: 0.75rem 1rem;
  }
}
@media only screen and (max-width: 768px) {
  .header-bottom {
    margin: 0.5rem 0 1.5rem;
  }
}
.header-bottom .logo img {
  height: 3.75rem;
  width: auto;
}
@media only screen and (max-width: 1312px) {
  .header-bottom .logo img {
    height: 2.75rem;
  }
}
@media only screen and (max-width: 768px) {
  .header-bottom .logo img {
    height: 1.875rem;
  }
}
.header-bottom .mobile-nav-box {
  display: contents;
}
@media only screen and (max-width: 1024px) {
  .header-bottom .mobile-nav-box {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    display: block;
    min-width: 11.375rem;
    background-color: #fff;
    color: #06332b;
    border-radius: 1rem;
    padding: 1rem 0;
    box-shadow: 0rem 0.0625rem 0.125rem 0rem rgba(10, 13, 18, 0.15);
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }
  .header-bottom .mobile-nav-box.open {
    opacity: 1;
    visibility: visible;
  }
}
@media only screen and (max-width: 768px) {
  .header-bottom .mobile-nav-box {
    width: 100%;
    padding: 0;
    font-size: 0.875rem;
  }
}
.header-bottom .mobile-nav-box .mobile-search-form {
  display: none;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .header-bottom .mobile-nav-box .mobile-search-form {
    display: block;
  }
}
.header-bottom .mobile-nav-box .mobile-search-form input {
  width: 100%;
  border-bottom: 0.0625rem solid #dddddd;
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  font-size: 1rem;
  transition: 0.3s;
}
.header-bottom .mobile-nav-box .mobile-search-form input:focus {
  border-color: #06332b;
}
.header-bottom .mobile-nav-box .mobile-search-form button {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  padding: 0.625rem 0.75rem;
}
.header-bottom .mobile-nav-box .mobile-search-form button img {
  width: 1.25rem;
  height: 1.25rem;
}
.header-bottom .mobile-nav-box .bottom-box {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-top: 0.0625rem solid #e5e5ea;
}
@media only screen and (max-width: 768px) {
  .header-bottom .mobile-nav-box .bottom-box {
    display: grid;
  }
}
.header-bottom .mobile-nav-box .bottom-box a,
.header-bottom .mobile-nav-box .bottom-box button {
  border: 0.0625rem solid rgba(2, 9, 5, 0.1490196078);
  border-radius: 0.5rem;
}
.header-bottom .mobile-nav-box .bottom-box a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #052922;
  padding: 0.5rem;
}
.header-bottom .mobile-nav-box .bottom-box a img {
  width: 1.125rem;
  height: 1.125rem;
}
.header-bottom .mobile-nav-box .bottom-box button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  width: 100%;
  padding: 0.375rem;
}
.header-bottom .mobile-nav-box .bottom-box button img {
  width: 1.25rem;
  height: 1.25rem;
}
.header-bottom .mobile-nav-box .bottom-box button svg {
  width: 1.125rem;
  height: 1.125rem;
}
.header-bottom .mobile-nav-box .bottom-box .dropdown .dropdown-menu {
  min-width: 100%;
}
.header-bottom .mobile-nav-box .bottom-box .dropdown .dropdown-menu a {
  border: none;
}
.header-bottom .nav {
  font-family: "Lato";
  font-weight: 600;
}
.header-bottom .nav > ul {
  display: flex;
}
@media only screen and (max-width: 1024px) {
  .header-bottom .nav > ul {
    flex-direction: column;
  }
}
.header-bottom .nav a {
  display: inline-flex;
  color: inherit;
  padding: 0.625rem;
}
@media only screen and (max-width: 1024px) {
  .header-bottom .nav a {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .header-bottom .nav a {
    padding: 0.625rem 1rem;
  }
}
.header-bottom .nav a:hover {
  color: #c2e161;
  text-decoration: underline;
}
.header-bottom .nav .dropdown.open .dropdown-btn {
  color: #c2e161;
}
.header-bottom .nav .dropdown.open .dropdown-btn img {
  transform: scale(1, -1);
}
.header-bottom .nav .dropdown .dropdown-btn {
  padding: 0.625rem;
}
@media only screen and (max-width: 1024px) {
  .header-bottom .nav .dropdown .dropdown-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .header-bottom .nav .dropdown .dropdown-btn {
    padding: 0.625rem 1rem;
  }
}
.header-bottom .nav .dropdown .dropdown-btn:hover {
  color: #c2e161;
}
@media only screen and (max-width: 1024px) {
  .header-bottom .nav .dropdown .dropdown-btn img {
    filter: brightness(0);
  }
}
.header-bottom .nav .dropdown .dropdown-menu {
  color: #052922;
}
@media only screen and (max-width: 1024px) {
  .header-bottom .nav .dropdown .dropdown-menu {
    width: 100%;
    position: relative;
    border: none;
    box-shadow: none;
    padding: 0 0 0.625rem;
    margin: 0;
  }
}
.header-bottom .nav .dropdown .dropdown-menu a {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .header-bottom .nav .dropdown .dropdown-menu a {
    padding: 0.25rem 0.625rem 0.25rem 1rem;
  }
}
.header-bottom .nav .dropdown .dropdown-menu a:hover {
  color: inherit;
}
.header-bottom .right-box {
  display: flex;
  gap: 0.75rem;
}
.header-bottom .search-form {
  width: 13.625rem;
  position: relative;
}
@media only screen and (max-width: 1312px) {
  .header-bottom .search-form {
    width: 10rem;
  }
}
@media only screen and (max-width: 768px) {
  .header-bottom .search-form {
    display: none;
  }
}
.header-bottom .search-form input {
  width: 100%;
  background-color: transparent;
  border: 0.0625rem solid #fff;
  border-radius: 0.5rem;
  padding: 0.75rem 0.625rem 0.75rem 2.5rem;
  color: #fff;
}
.header-bottom .search-form input::placeholder {
  color: #fff;
}
.header-bottom .search-form button {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  padding: 0.625rem;
}
.header-bottom .search-form button img {
  width: 1.25rem;
  height: 1.25rem;
}
.header-bottom .dashboard.btn {
  border: none;
}
@media only screen and (max-width: 1312px) {
  .header-bottom .dashboard.btn {
    padding: 0.625rem;
  }
  .header-bottom .dashboard.btn span {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  .header-bottom .dashboard.btn {
    padding: 0.625rem;
    background-color: transparent;
    border: 0.0625rem solid #fff;
  }
  .header-bottom .dashboard.btn:hover {
    background-color: transparent;
  }
  .header-bottom .dashboard.btn span {
    display: block;
    color: #fff;
  }
  .header-bottom .dashboard.btn img {
    filter: brightness(0) invert(1);
  }
}
@media only screen and (max-width: 768px) {
  .header-bottom .dashboard.btn {
    font-size: 0.875rem;
    padding: 0.5rem 0.625rem;
  }
}
.header-bottom .toggle-nav-btn {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .header-bottom .toggle-nav-btn {
    display: block;
  }
}

.footer-top {
  display: flex;
  gap: 2.5rem 1.5rem;
  flex-wrap: wrap;
  justify-content: space-between;
  background: linear-gradient(92.49deg, #06332b 0.29%, #0c6d5c 100%);
  color: #fff;
  border-radius: 1.5rem;
  padding: 3rem 4rem;
}
@media only screen and (max-width: 768px) {
  .footer-top {
    gap: 1.5rem;
    padding: 1.5rem;
  }
}
.footer-top .footer-about {
  width: 100%;
  max-width: 32.8125rem;
}
.footer-top .footer-about .logo {
  display: inline-flex;
  margin: 0 0 2.5rem;
}
.footer-top .footer-about .logo img {
  height: 3.75rem;
  width: auto;
}
.footer-top .footer-about .company-details .title {
  font-family: "Lato";
  font-weight: 700;
  margin: 0 0 1rem;
}
@media only screen and (max-width: 768px) {
  .footer-top .footer-about .company-details .title {
    margin: 0 0 0.5rem;
  }
}
.footer-top .footer-about .company-details .subtitle {
  font-weight: 1.125rem;
  color: #e6ebea;
}
.footer-top .footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 1rem;
}
@media only screen and (max-width: 768px) {
  .footer-top .footer-links {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }
}
.footer-top .footer-links .footer-col {
  min-width: 10rem;
}
@media only screen and (max-width: 768px) {
  .footer-top .footer-links .footer-col {
    min-width: initial;
  }
}
.footer-top .footer-links h4 {
  font-family: "Lato";
  font-weight: 700;
  margin: 0 0 1rem;
}
@media only screen and (max-width: 768px) {
  .footer-top .footer-links h4 {
    margin: 0 0 0.5rem;
  }
}
.footer-top .footer-links a {
  display: inline-flex;
  color: inherit;
  font-size: 0.875rem;
  padding: 0.5rem 0;
}
.footer-top .footer-links a:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 768px) {
  .footer-top .footer-links a {
    padding: 0.375rem 0;
  }
}

.footer-bottom {
  display: flex;
  align-items: center;
  gap: 1rem 1.5rem;
  flex-wrap: wrap;
  padding: 2rem 0 1.25rem;
  font-size: 0.875rem;
  color: #0c6d5c;
}
@media only screen and (max-width: 768px) {
  .footer-bottom {
    gap: 0.5rem;
    flex-direction: column;
    align-items: start;
    padding: 1.125rem 0 0.75rem;
  }
}
@media only screen and (max-width: 768px) {
  .footer-bottom .copyright {
    order: 1;
  }
}
.footer-bottom .policies {
  display: flex;
  gap: 1.125rem 1.5rem;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .footer-bottom .policies {
    gap: 0;
    flex-direction: column;
    margin: 0 0 0.75rem;
  }
}
.footer-bottom .policies a {
  display: inline-flex;
  padding: 0.375rem 0;
  text-decoration: underline;
}
.footer-bottom .created-by {
  margin: 0 0 0 auto;
}
@media only screen and (max-width: 768px) {
  .footer-bottom .created-by {
    margin: 0;
  }
}

.footer-financing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  padding: 1.25rem 0 2rem;
}
@media only screen and (max-width: 768px) {
  .footer-financing {
    align-items: start;
    flex-direction: column;
    gap: 1rem;
    padding: 0.75rem 0 2rem;
  }
}
.footer-financing img {
  height: 5.25rem;
  width: auto;
}
@media only screen and (max-width: 768px) {
  .footer-financing img {
    height: 3rem;
  }
}
.footer-financing .desc {
  max-width: 36.625rem;
  font-size: 0.875rem;
}

.page-hero-section .box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 5rem;
  position: relative;
  overflow: hidden;
  padding: 2.5rem 4rem;
  color: #06332b;
  border-radius: 1rem;
  z-index: 1;
  background: radial-gradient(circle, #e8f5c8, #f5fafa, #eff9d7, #f0f9fa, #d4eef0);
  background-size: 300% 300%;
  animation: gradientMove 12s ease-in-out infinite;
}
@media only screen and (max-width: 1024px) {
  .page-hero-section .box {
    padding: 2.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .page-hero-section .box {
    gap: 0.5rem 5rem;
    grid-template-columns: 100%;
    padding: 1rem;
  }
}
.page-hero-section .box .object-cover {
  z-index: -1;
}
.page-hero-section .box .btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin: 1.5rem 0 0 0;
}
@media only screen and (max-width: 768px) {
  .page-hero-section .box .btn-group {
    gap: 0.5rem;
    margin: 1rem 0 0 0;
  }
}
@media only screen and (max-width: 768px) {
  .page-hero-section .box .btn-group .btn {
    flex: 1;
  }
}

@keyframes gradientMove {
  0% {
    background-position: 20% 30%;
  }
  25% {
    background-position: 80% 20%;
  }
  50% {
    background-position: 40% 80%;
  }
  75% {
    background-position: 70% 60%;
  }
  100% {
    background-position: 20% 30%;
  }
}
.latest-updates {
  overflow: hidden;
}
.latest-updates .box {
  width: 100%;
  display: grid;
  grid-template-areas: "title btns" "swiper swiper";
  grid-template-columns: 1fr auto;
  gap: 3rem;
}
@media only screen and (max-width: 1024px) {
  .latest-updates .box {
    grid-template-columns: 100%;
    grid-template-areas: "title" "swiper" "btns";
    gap: 2rem;
  }
}
.latest-updates .h2 {
  grid-area: title;
  position: relative;
  color: #6f6f6f;
}
.latest-updates .h2::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 11.5rem;
  height: 0.0625rem;
  background-color: #e5e5ea;
}
.latest-updates .btn-group {
  grid-area: btns;
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}
.latest-updates .btn-group .swiper-controls {
  display: flex;
  gap: 1rem;
}
.latest-updates .btn-group .swiper-controls .swiper-button-prev,
.latest-updates .btn-group .swiper-controls .swiper-button-next {
  position: relative;
  right: initial;
  left: initial;
  border: 0.0625rem solid #e9eaeb;
  border-radius: 50%;
  background-position: center;
  background-size: 1.25rem;
  background-repeat: no-repeat;
  margin: 0;
}
.latest-updates .btn-group .swiper-controls .swiper-button-prev svg,
.latest-updates .btn-group .swiper-controls .swiper-button-next svg {
  display: none;
}
.latest-updates .btn-group .swiper-controls .swiper-button-prev {
  background-image: url("../../img/svg-icons/arrow-left-gray.svg");
}
.latest-updates .btn-group .swiper-controls .swiper-button-next {
  background-image: url("../../img/svg-icons/arrow-right-gray.svg");
}
.latest-updates .swiper-box {
  grid-area: swiper;
}
.latest-updates .swiper-box .swiper {
  overflow: visible;
}
.latest-updates .swiper-box .swiper .swiper-slide {
  height: auto;
}
.latest-updates .swiper-box .article-card a {
  box-shadow: none;
}

.files-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.files-list .files-list-item {
  border: 0.0625rem solid #e9eaeb;
  background-color: #fff;
  border-radius: 0.75rem;
  padding: 1rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  color: #414651;
}
@media only screen and (max-width: 768px) {
  .files-list .files-list-item {
    padding: 0.75rem;
  }
}
.files-list .files-list-item .icon {
  width: 1.25rem;
  height: 1.25rem;
  margin: 0 0 auto;
}
.files-list .files-list-item .about-file {
  flex: 1;
  display: flex;
  flex-direction: column;
  font-size: 0.875rem;
}
.files-list .files-list-item .about-file a {
  font-weight: 500;
}
.files-list .files-list-item .about-file a:hover {
  color: #020905;
  text-decoration: underline;
}
@media only screen and (max-width: 768px) {
  .files-list .files-list-item .about-file .file-size {
    font-size: 0.75rem;
  }
}
.files-list .files-list-item .btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0 0 0 auto;
}
@media only screen and (max-width: 768px) {
  .files-list .files-list-item .btn-group .view-link {
    display: none;
  }
}
.files-list .files-list-item .btn-group a:hover img {
  filter: brightness(0);
}
.files-list .files-list-item .btn-group img {
  width: 1.5rem;
  height: 1.5rem;
  transition: 0.3s;
}

.apply-for-services {
  margin: 0 0 4rem;
}
@media only screen and (max-width: 768px) {
  .apply-for-services {
    margin: 0 0 2rem;
  }
}
.apply-for-services .box {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 7rem;
  border-radius: 2.5rem;
  border: 0.0625rem solid rgba(2, 9, 5, 0.1490196078);
  padding: 3rem 3.5rem;
  overflow: hidden;
  z-index: 1;
}
@media only screen and (max-width: 1024px) {
  .apply-for-services .box {
    gap: 3.75rem;
    padding: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .apply-for-services .box {
    gap: 1.5rem;
    grid-template-columns: 100%;
    border-radius: 1.5rem;
    padding: 1rem;
  }
}
.apply-for-services .video {
  z-index: -1;
}
.apply-for-services .content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: #06332b;
}
@media only screen and (max-width: 768px) {
  .apply-for-services .content {
    gap: 1rem;
  }
}
.apply-for-services .content .subtitle {
  font-size: 1.125rem;
}
@media only screen and (max-width: 768px) {
  .apply-for-services .content .subtitle {
    font-size: initial;
  }
}
.apply-for-services .content .btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
@media only screen and (max-width: 768px) {
  .apply-for-services .content .btn-group {
    flex-direction: column;
    gap: 0.5rem;
    margin: 0.5rem 0 0 0;
  }
}
.apply-for-services .right-col {
  position: relative;
}
.apply-for-services .right-col::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #dae0df;
  border-radius: 1rem;
  transform: rotate(5deg);
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .apply-for-services .right-col::after {
    content: none;
  }
}
.apply-for-services .right-col .img-box {
  position: relative;
  padding: 0 0 77%;
  border-radius: 1rem;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .apply-for-services .right-col .img-box {
    padding: 0 0 125%;
  }
}

.interactive-map {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  gap: 1rem;
}
@media only screen and (max-width: 768px) {
  .interactive-map {
    gap: 0.5rem;
  }
}
.interactive-map .filters {
  position: relative;
  width: 16.75rem;
  background-color: #fff;
  padding: 1rem;
}
@media only screen and (max-width: 768px) {
  .interactive-map .filters {
    width: 100%;
    padding: 0;
    border-radius: 0.5rem;
  }
  .interactive-map .filters.open .dropdown-menu {
    display: block;
  }
}
.interactive-map .filters .btn {
  width: 100%;
  text-align: left;
  justify-content: space-between;
  padding: 0 0 0.5rem;
  font-family: "Lato";
  font-weight: 700;
  font-size: 1.25rem;
}
@media only screen and (max-width: 768px) {
  .interactive-map .filters .btn {
    padding: 0.5rem;
    font-size: 0.875rem;
  }
  .interactive-map .filters .btn[aria-expanded=true] img {
    transform: scale(1, -1);
  }
}
.interactive-map .filters .btn img {
  display: none;
  width: 1.25rem;
  height: 1.25rem;
  transition: 0.3s;
}
@media only screen and (max-width: 768px) {
  .interactive-map .filters .btn img {
    display: block;
  }
}
.interactive-map .filters .dropdown-menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  width: 100%;
  border: none;
  box-shadow: none;
  border-top: 0.0625rem solid rgba(2, 9, 5, 0.1490196078);
  padding: 0.5rem 0 0 0;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .interactive-map .filters .dropdown-menu {
    display: none;
    position: absolute;
    gap: 0;
    margin: 0.5rem 0 0 0;
    padding: 0.5rem;
    border: 0.0625rem solid rgba(2, 9, 5, 0.1490196078);
  }
}
.interactive-map .filters .dropdown-menu .input-field {
  position: relative;
}
.interactive-map .filters .dropdown-menu .input-field input {
  position: absolute;
  visibility: hidden;
}
.interactive-map .filters .dropdown-menu .input-field input:checked + label .icon {
  background-image: url("../img/svg-icons/check.svg");
}
.interactive-map .filters .dropdown-menu .input-field label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
}
.interactive-map .filters .dropdown-menu .input-field label .icon {
  width: 1.125rem;
  height: 1.125rem;
  background-size: 95%;
  background-position: center;
  background-repeat: no-repeat;
  border: 0.0625rem solid rgba(2, 9, 5, 0.1490196078);
  border-radius: 0.25rem;
}
.interactive-map .map-box {
  flex: 1;
  height: 43.9375rem;
  border-radius: 1.5rem;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .interactive-map .map-box {
    height: 15.75rem;
    border-radius: 1rem;
  }
}
.interactive-map .map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.pagination {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.125rem;
  margin: 2rem 0 0 0;
}
@media only screen and (max-width: 768px) {
  .pagination {
    margin: 1.5rem 0 0 0;
  }
}
.pagination .pagination-item {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.625rem;
  border-radius: 0.75rem;
}
@media only screen and (max-width: 768px) {
  .pagination .pagination-item {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 0.875rem;
  }
}
.pagination .pagination-item:is(a):hover {
  background-color: #e9eaeb;
}
.pagination .pagination-item:is(a).active {
  color: #06332b;
  background-color: #fff;
  border: 0.0625rem solid #e6ebea;
}
@media only screen and (max-width: 768px) {
  .pagination .pagination-prev-link,
  .pagination .pagination-next-link {
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
  }
  .pagination .pagination-prev-link span,
  .pagination .pagination-next-link span {
    display: none;
  }
}
.pagination .pagination-prev-link {
  margin: 0 auto 0 0;
}
.pagination .pagination-next-link {
  margin: 0 0 0 auto;
}

.article-card {
  height: 100%;
}
.article-card a {
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  border: 0.0625rem solid rgba(2, 9, 5, 0.1490196078);
  border-radius: 1rem;
}
.article-card a:hover {
  text-decoration: none;
  box-shadow: 0rem 0.25rem 2rem 0rem rgba(0, 0, 0, 0.1607843137);
}
.article-card a:hover::before {
  transform: rotate(3.62deg);
}
.article-card a:hover .img-box img {
  transform: translate(-50%, -50%) scale(1.05);
}
.article-card a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140.09deg, rgba(230, 235, 234, 0.84) 7.94%, rgba(237, 237, 237, 0.84) 98.19%);
  border-radius: 1rem;
  transition: 0.3s;
}
.article-card .img-box {
  position: relative;
  padding: 0 0 67%;
  overflow: hidden;
  border-radius: 1rem 1rem 0 0;
}
.article-card .article-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: start;
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 0 0 1rem 1rem;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .article-card .article-body {
    padding: 1rem;
  }
}
.article-card .article-body .tag {
  display: inline-block;
  border: 0.0625rem solid rgba(2, 9, 5, 0.1490196078);
  border-radius: 0.375rem;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.25rem 0.625rem;
  margin: 0 0 1rem;
}
.article-card .article-body .h4 {
  margin: 0 0 0.5rem;
}
.article-card .article-body .subtitle {
  margin: 0 0 1.5rem;
}
.article-card .article-body .read-more {
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin: auto 0 0 0;
}

.breadcrumbs {
  grid-column: 1/-1;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}
@media only screen and (max-width: 768px) {
  .breadcrumbs {
    font-size: 0.75rem;
    gap: 0.125rem 1.5rem;
  }
}
.breadcrumbs a {
  position: relative;
  color: #06332b;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.breadcrumbs a:last-of-type {
  font-weight: 700;
}
.breadcrumbs a:not(:last-of-type):after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(1.5rem, -50%);
  width: 1rem;
  height: 1rem;
  background-image: url("../../img/svg-icons/chevron-right-green.svg");
  background-size: 100%;
  pointer-events: none;
}
@media only screen and (max-width: 768px) {
  .breadcrumbs a:not(:last-of-type):after {
    transform: translate(1.25rem, -50%);
  }
}

.map-tooltip-section .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  padding: 6.25rem 0;
}

.map-tooltip {
  max-width: 15rem;
  position: relative;
  display: inline-flex;
  flex-direction: column;
  gap: 0.75rem;
  background-color: #fff;
  padding: 1rem;
  border-radius: 1rem;
  color: #06332b;
  font-size: 0.75rem;
}
.map-tooltip .map-tooltip-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-tooltip .map-tooltip-title {
  font-size: 1rem;
}
.map-tooltip .contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.map-tooltip .contact-links a {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.map-tooltip .contact-links a img,
.map-tooltip .contact-links a svg {
  width: 1.25rem;
  height: 1.25rem;
}
.map-tooltip .working-hours .working-hours-title {
  font-weight: 400;
  font-size: 0.875rem;
  margin: 0 0 0.5rem;
}
.map-tooltip .working-hours table td {
  min-width: 1.75rem;
}
.map-tooltip .working-hours table a {
  text-decoration: underline;
}

html {
  min-width: 320px;
  background: #fff;
}

body {
  min-width: 1312px;
  height: 100%;
  color: #000;
  background: url("../img/svg-icons/bg-shape-left.svg"), linear-gradient(180deg, rgba(6, 51, 43, 0) 0%, rgba(6, 51, 43, 0.08) 50.48%, rgba(6, 51, 43, 0) 100%);
  background-repeat: no-repeat;
  background-position: center 18.75rem;
  font-family: "Calibri", arial, sans-serif;
  font-size: 16px;
  line-height: 1.4;
}
@media only screen and (max-width: 1312px) {
  body {
    min-width: 320px;
  }
}
@media only screen and (max-width: 768px) {
  body {
    background: #fff;
  }
}

input:-webkit-autofill {
  box-shadow: 0 0 0 30px #fff inset;
}

a {
  text-decoration: none;
  transition: all 0.3s;
}

.global-wrap {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .global-wrap {
    height: 100%;
  }
}
.global-wrap .main {
  flex: 1 0 auto; /* NOT flex: 1; */
}

.wrap {
  position: relative;
  width: 1312px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media only screen and (max-width: 1312px) {
  .wrap {
    width: 1024px;
  }
}
@media only screen and (max-width: 1024px) {
  .wrap {
    width: 768px;
  }
}
@media only screen and (max-width: 768px) {
  .wrap {
    width: 480px;
  }
}
@media only screen and (max-width: 480px) {
  .wrap {
    width: 100%;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Lato";
  font-weight: 700;
}

.h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .h1 {
    font-size: 2rem;
  }
}

.h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  color: #06332b;
}
@media only screen and (max-width: 768px) {
  .h2 {
    font-size: 1.5rem;
  }
}

.h3 {
  font-size: 2rem;
  line-height: 1.2;
}
@media only screen and (max-width: 768px) {
  .h3 {
    font-size: 1.5rem;
  }
}

.h4 {
  font-size: 1.5rem;
}
@media only screen and (max-width: 768px) {
  .h4 {
    font-size: 1.25rem;
  }
}

.h5 {
  font-size: 1.25rem;
}
@media only screen and (max-width: 768px) {
  .h5 {
    font-size: 1.125rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  border-radius: 0.5rem;
  padding: 0.625rem 1rem;
  font-family: "Lato";
  font-weight: 600;
  transition: 0.3s;
}
.btn.green-gradient {
  position: relative;
  background: linear-gradient(92.49deg, #06332b 0.29%, #0c6d5c 100%);
  color: #fff;
  border: 0.0625rem solid transparent;
  overflow: hidden;
  z-index: 1;
}
.btn.green-gradient:hover::after {
  opacity: 1;
}
.btn.green-gradient::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(92.49deg, #06332b 0.29%, #0c6d5c 100%);
  transform: rotate(180deg);
  z-index: -1;
  opacity: 0;
  transition: 0.3s;
}
.btn.white {
  border: 0.0625rem solid #b2c0bd;
  background-color: #fff;
}
.btn.white:hover {
  background-color: #ececec;
}
.btn.white span {
  background-image: linear-gradient(92.49deg, #06332b 0.29%, #0c6d5c 100%);
  color: transparent;
  background-clip: text;
}

.section {
  margin: 0 0 4rem;
}
@media only screen and (max-width: 768px) {
  .section {
    margin: 0 0 2rem;
  }
}

.section-header {
  margin: 0 0 1.5rem;
}
.section-header.centered {
  text-align: center;
}
.section-header.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 5rem;
  margin: 0 0 2.5rem;
}
@media only screen and (max-width: 768px) {
  .section-header.two-col {
    grid-template-columns: 100%;
    margin: 0 0 1.5rem;
  }
}
.section-header.two-col .title {
  position: relative;
  padding: 0 0 0.5rem;
}
.section-header.two-col .title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  height: 1px;
  background-color: #e5e5ea;
}
.section-header.one-col {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1.5rem;
}
.section-header.one-col > * {
  max-width: 48.625rem;
}
.section-header .title span {
  color: #6f6f6f;
}
.section-header .text {
  font-size: 1.125rem;
  color: #06332b;
}
@media only screen and (max-width: 768px) {
  .section-header .text {
    font-size: initial;
  }
}
.section-header .text span {
  background: linear-gradient(92.49deg, #06332b 0.29%, #0c6d5c 100%);
  color: #fff;
  padding: 0.1875rem 0.375rem;
  border-radius: 0.3125rem;
}
@media only screen and (max-width: 768px) {
  .section-header .text span {
    padding: 0.125rem 0.25rem;
  }
}

.card {
  background-color: #fff;
  border: 0.0625rem solid rgba(2, 9, 5, 0.1490196078);
  border-radius: 1rem;
}

.gradient-color {
  background-image: linear-gradient(92.49deg, #06332b 0.29%, #0c6d5c 100%);
  color: transparent;
  background-clip: text;
}

.object-cover {
  object-fit: cover;
  position: absolute;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}

.dropdown {
  position: relative;
}
.dropdown .dropdown-btn {
  text-align: left;
  transition: 0.3s;
}

.table-box {
  width: 100%;
  border: 0.0625rem solid rgba(2, 9, 5, 0.1490196078);
  border-radius: 0.75rem;
  overflow: auto;
  box-shadow: 0rem 0.0625rem 0.125rem 0rem rgba(10, 13, 18, 0.0509803922);
}

.table {
  width: 100%;
  background-color: #fff;
  font-size: 0.875rem;
}
@media only screen and (max-width: 768px) {
  .table {
    min-width: 48rem;
  }
}
.table th,
.table td {
  border: 0.0625rem solid #e9eaeb;
  border-collapse: collapse;
}
.table thead {
  background: #f6f6f6;
  color: #717680;
  font-weight: 700;
  font-size: 0.75rem;
  text-align: left;
}
.table thead th {
  padding: 0.75rem 1.5rem;
}
@media only screen and (max-width: 768px) {
  .table thead th {
    padding: 0.75rem 0.5rem;
  }
}
.table tbody td {
  padding: 1rem 1.5rem;
  color: #06332b;
}
@media only screen and (max-width: 768px) {
  .table tbody td {
    padding: 0.75rem 0.5rem;
  }
}
.table tbody td ul {
  padding: 0 0 0 1rem;
}
.table tbody td ul li {
  list-style: disc;
}

.articles-filter {
  margin: 0 0 2.5rem;
}
@media only screen and (max-width: 768px) {
  .articles-filter {
    margin: 0 0 2rem;
  }
}
.articles-filter .form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
@media only screen and (max-width: 768px) {
  .articles-filter .form {
    flex-wrap: nowrap;
    justify-content: start;
    overflow: auto;
    margin: 0 -1rem;
    padding: 0 1rem;
  }
}
.articles-filter .input-field {
  position: relative;
}
.articles-filter .input-field input {
  position: absolute;
  visibility: hidden;
}
.articles-filter .input-field input:checked + label {
  background: linear-gradient(92.49deg, #06332b 0.29%, #0c6d5c 100%);
  color: #fff;
}
.articles-filter .input-field input:checked + label .icon {
  border-color: #fff;
  background-color: transparent;
  background-image: url("../img/svg-icons/check-white.svg");
}
.articles-filter .input-field label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  color: #06332b;
  font-weight: 600;
  transition: 0.3s;
}
@media only screen and (max-width: 768px) {
  .articles-filter .input-field label {
    padding: 0.625rem 1.5rem;
    border: 0.0625rem solid rgba(2, 9, 5, 0.1490196078);
  }
}
.articles-filter .input-field label:hover {
  background-color: #e6ebea;
}
.articles-filter .input-field label .icon {
  width: 1rem;
  height: 1rem;
  border-radius: 0.25rem;
  border: 0.0625rem solid #d5d7da;
  background-color: #fff;
  background-position: center;
  background-size: 90%;
  background-repeat: no-repeat;
}
.articles-filter .input-field label span {
  flex: 1;
  white-space: nowrap;
}

.articles-grid {
  display: flex;
  flex-direction: column;
}
.articles-grid .articles-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media only screen and (max-width: 1024px) {
  .articles-grid .articles-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .articles-grid .articles-list {
    grid-template-columns: 100%;
  }
}

.search {
  padding: 4rem 0;
}
@media only screen and (max-width: 768px) {
  .search {
    padding: 0 0 2rem;
  }
}
.search .search-form {
  width: 100%;
  max-width: 28.25rem;
  position: relative;
  margin: 0 auto 4rem;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .search .search-form {
    margin: 0 auto 1.25rem;
  }
}
.search .search-form input {
  width: 100%;
  color: #06332b;
  padding: 0.875rem 2.5rem;
  transition: 0.3s;
}
@media only screen and (max-width: 768px) {
  .search .search-form input {
    border-radius: 0.5rem;
  }
}
.search .search-form input:hover, .search .search-form input:focus {
  border-color: #6f6f6f;
}
.search .search-form input:not(:placeholder-shown) + .reset-btn {
  display: flex;
}
.search .search-form img {
  width: 1.25rem;
  height: 1.25rem;
}
.search .search-form .submit-btn {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  padding: 0 0.5rem 0 0.75rem;
}
.search .search-form .reset-btn {
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  align-items: center;
  padding: 0 0.75rem 0 0.5rem;
}
.search .search-categories {
  width: 100%;
  max-width: 51.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 auto 2.25rem;
}
@media only screen and (max-width: 768px) {
  .search .search-categories {
    margin: 0 auto 1.25rem;
  }
}
.search .search-categories .search-categories-link {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0.625rem 1rem;
  color: #06332b;
  font-weight: 600;
  border-radius: 0.5rem;
}
@media only screen and (max-width: 768px) {
  .search .search-categories .search-categories-link {
    font-weight: 400;
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
  }
}
.search .search-categories .search-categories-link:hover {
  background-color: #dae0df;
}
.search .search-categories .search-categories-link:hover span {
  background-color: #fff;
}
.search .search-categories .search-categories-link.active {
  background: linear-gradient(92.49deg, #06332b 0.29%, #0c6d5c 100%);
  color: #fff;
}
.search .search-categories .search-categories-link.active span {
  background-color: #fff;
  color: #06332b;
}
.search .search-categories .search-categories-link span {
  padding: 0.125rem 0.625rem;
  background-color: #e6ebea;
  border-radius: 50%;
  transition: 0.3s;
}
.search .search-results {
  width: 100%;
  max-width: 51.25rem;
  margin: auto;
}
.search .search-results .title {
  margin: 0 0 0.5rem;
}
.search .search-results .search-results-qnt {
  display: block;
  font-size: 0.875rem;
  color: #6f6f6f;
  margin: 0 0 1.5rem;
}
.search .search-results .search-results-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media only screen and (max-width: 768px) {
  .search .search-results .search-results-list {
    gap: 0.5rem;
  }
}
.search .search-results .search-results-item {
  position: relative;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  padding: 1rem 1.5rem 1.5rem;
}
@media only screen and (max-width: 768px) {
  .search .search-results .search-results-item {
    padding: 1rem;
  }
}
.search .search-results .search-results-item:hover {
  border-color: #06332b;
  box-shadow: 0rem 0.25rem 2rem 0rem rgba(0, 0, 0, 0.1215686275);
}
.search .search-results .search-results-item:hover::after {
  transform: rotate(1deg);
}
.search .search-results .search-results-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #e6ebea;
  border-radius: 1rem;
  transition: 0.3s;
  z-index: -1;
}
.search .search-results .search-results-item .top-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 0.5rem;
}
.search .search-results .search-results-item .top-box .category {
  border: 0.0625rem solid rgba(2, 9, 5, 0.1490196078);
  background: #e6ebea;
  color: #06332b;
  padding: 0.1875rem 0.5rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
}
.search .search-results .search-results-item .top-box .time {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6f6f6f;
  font-size: 0.875rem;
}
.search .search-results .search-results-item .top-box .time img {
  width: 1.25rem;
  height: 1.25rem;
}
.search .search-results .search-results-item .title {
  margin: 0 0 1rem;
}
.search .search-results .search-results-item .title span {
  background-color: #06332b;
  color: #fff;
  padding: 0 0.25rem;
}
.search .search-results .search-results-item .text {
  color: #06332b;
}
.search .search-results .search-results-item .text span {
  background-color: #06332b;
  color: #fff;
  padding: 0 0.125rem;
}
.search .search-results .search-results-item .read-more {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin: 1rem 0 0 0;
  color: #06332b;
}
@media only screen and (max-width: 768px) {
  .search .search-results .search-results-item .read-more {
    display: none;
  }
}
.search .search-results .search-results-item .read-more img {
  width: 1.25rem;
  height: 1.25rem;
}
.search .search-error-box {
  max-width: 30.9375rem;
  width: 100%;
  padding: 2rem 6.25rem;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-image: url("../img/svg-icons/search-empty-bg.svg");
  background-size: 100% auto;
  background-position: 50% 0;
}
@media only screen and (max-width: 768px) {
  .search .search-error-box {
    padding: 2rem 0;
  }
}
.search .search-error-box .icon {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  margin: 0 0 1.25rem;
}
.search .search-error-box .icon img {
  width: 1.75rem;
  height: 1.75rem;
}
.search .search-error-box .title {
  color: #06332b;
  margin: 0 0 0.5rem;
}
.search .search-error-box .msg {
  color: #6f6f6f;
}
.search .search-error-box .btn-group {
  display: flex;
  gap: 0.75rem;
  margin: 1.5rem 0 0 0;
}

.about-content .wrap {
  display: flex;
  flex-direction: column;
  gap: 4.375rem;
}
@media only screen and (max-width: 768px) {
  .about-content .wrap {
    gap: 2rem;
  }
}
.about-content .about-content-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8rem;
}
@media only screen and (max-width: 1312px) {
  .about-content .about-content-row {
    gap: 3.75rem;
  }
}
@media only screen and (max-width: 768px) {
  .about-content .about-content-row {
    grid-template-columns: 100%;
    gap: 1.5rem;
  }
}
.about-content .about-content-row:nth-of-type(2n) .img-box {
  order: 1;
}
@media only screen and (max-width: 768px) {
  .about-content .about-content-row:nth-of-type(2n) .img-box {
    order: initial;
  }
}
.about-content .about-content-row:nth-of-type(2n) .img-box .tags {
  right: 2rem;
  left: initial;
  align-items: end;
}
@media only screen and (max-width: 768px) {
  .about-content .about-content-row:nth-of-type(2n) .img-box .tags {
    right: initial;
    left: 1rem;
  }
}
.about-content .about-content-row:nth-of-type(2n) .box {
  align-items: end;
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .about-content .about-content-row:nth-of-type(2n) .box {
    align-items: start;
    text-align: initial;
  }
}
.about-content .about-content-row:last-of-type .box .desc {
  color: #6f6f6f;
}
.about-content .about-content-row .img-box {
  position: relative;
}
.about-content .about-content-row .img-box img {
  width: 100%;
  height: auto;
}
.about-content .about-content-row .img-box .tags {
  position: absolute;
  top: 2rem;
  left: 2rem;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 0.5rem;
}
@media only screen and (max-width: 768px) {
  .about-content .about-content-row .img-box .tags {
    top: 1rem;
    left: 1rem;
  }
}
.about-content .about-content-row .img-box .tags li {
  background-color: #fff;
  border: 0.0625rem solid #d5d7da;
  border-radius: 0.375rem;
  padding: 0.1875rem 0.5rem;
  font-size: 0.75rem;
  color: #052922;
}
.about-content .about-content-row .img-box .tags li::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 3.125rem;
  background-color: #ffcc00;
  margin: 0 0 0 0.125rem;
}
.about-content .about-content-row .box {
  display: flex;
  flex-direction: column;
  align-items: start;
  align-self: center;
  gap: 1.5rem;
}
@media only screen and (max-width: 768px) {
  .about-content .about-content-row .box {
    gap: 1rem;
  }
}
.about-content .about-content-row .box .desc {
  font-size: 1.125rem;
  color: #052922;
}
@media only screen and (max-width: 768px) {
  .about-content .about-content-row .box .desc {
    font-size: 1rem;
  }
}
.about-content .about-content-row .box ul li {
  padding: 1rem 0;
  border-bottom: 0.0625rem solid rgba(2, 9, 5, 0.1490196078);
}
.about-content .about-content-row .box ul li:nth-of-type(1) {
  padding-top: 0;
}
@media only screen and (max-width: 768px) {
  .about-content .about-content-row .box ul li {
    padding: 0.5rem 0;
  }
}
.about-content .about-content-row .box ul li .h5 {
  color: #052922;
  margin: 0 0 0.5rem;
}
@media only screen and (max-width: 768px) {
  .about-content .about-content-row .box ul li .h5 {
    margin: 0 0 0.25rem;
  }
}

.about-management .card {
  padding: 2.5rem;
  border-radius: 2.5rem;
}
@media only screen and (max-width: 768px) {
  .about-management .card {
    display: contents;
  }
}
.about-management .top-box {
  text-align: center;
  margin: 0 0 2.5rem;
}
@media only screen and (max-width: 768px) {
  .about-management .top-box {
    margin: 0 0 1.5rem;
  }
}
.about-management .top-box .subtitle {
  max-width: 28.125rem;
  font-size: 1.25rem;
  color: #6f6f6f;
  margin: 1.5rem auto 0;
}
@media only screen and (max-width: 768px) {
  .about-management .top-box .subtitle {
    font-size: initial;
  }
}
.about-management .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 1.5rem;
}
@media only screen and (max-width: 1024px) {
  .about-management .list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .about-management .list {
    gap: 1rem;
    grid-template-columns: 100%;
  }
}
.about-management .list .item {
  border-radius: 1rem;
  overflow: hidden;
  border: 0.0625rem solid rgba(2, 9, 5, 0.1490196078);
}
.about-management .list .card-header {
  background: linear-gradient(92.49deg, #06332b 0.29%, #0c6d5c 100%);
  color: #fff;
  padding: 1.5rem;
  border-radius: 1rem;
  font-size: 1.25rem;
}
@media only screen and (max-width: 768px) {
  .about-management .list .card-header {
    padding: 1rem;
    font-size: 0.875rem;
  }
}
.about-management .list .card-header h3 {
  font-family: "Lato";
  font-weight: 700;
  font-size: 1.5rem;
}
@media only screen and (max-width: 768px) {
  .about-management .list .card-header h3 {
    font-size: 1.25rem;
  }
}
.about-management .list .card-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
}
@media only screen and (max-width: 768px) {
  .about-management .list .card-body {
    padding: 1rem;
    font-size: 0.875rem;
  }
}
.about-management .list .card-body ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media only screen and (max-width: 768px) {
  .about-management .list .card-body ul {
    gap: 0.5rem;
  }
}
.about-management .list .card-body a {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.about-management .list .card-body a .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: #e6ebea;
  border-radius: 50%;
}
@media only screen and (max-width: 768px) {
  .about-management .list .card-body a .icon {
    display: contents;
  }
}
.about-management .list .card-body a .icon img {
  width: 1.25rem;
  height: 1.25rem;
}

.about-cooperation-partners .top-box {
  max-width: 48.125rem;
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 1.5rem;
  color: #052922;
}
.about-cooperation-partners .top-box .h2 {
  color: #6f6f6f;
}
.about-cooperation-partners .top-box .btn.open img {
  transform: scale(1, -1);
}
.about-cooperation-partners .top-box .btn img {
  width: 1.25rem;
  height: 1.25rem;
  transition: 0.3s;
}
.about-cooperation-partners .card {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 1.5rem;
  margin: 2.5rem 0 0;
}
.about-cooperation-partners .card.open {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .about-cooperation-partners .card {
    padding: 1.5rem 1rem;
    margin: 1.5rem 0 0 0;
  }
}
.about-cooperation-partners .card .h5 {
  color: #0c6d5c;
}
.about-cooperation-partners .card .contacts {
  color: #052922;
}
.about-cooperation-partners .card .contacts a {
  font-weight: 700;
}
.about-cooperation-partners .card .contacts a:hover {
  text-decoration: underline;
}

.about-key-statistics .stats-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 0 0 2.5rem;
}
@media only screen and (max-width: 1024px) {
  .about-key-statistics .stats-numbers {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .about-key-statistics .stats-numbers {
    margin: 0 0 1.5rem;
  }
}
.about-key-statistics .stats-numbers li {
  background-color: #fff;
  border: 0.0625rem solid rgba(2, 9, 5, 0.1490196078);
  padding: 1.5rem;
  border-radius: 1rem;
  font-size: 1.125rem;
}
@media only screen and (max-width: 768px) {
  .about-key-statistics .stats-numbers li {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border-radius: 0.5rem;
  }
}
.about-key-statistics .stats-numbers li .h2 {
  color: #06332b;
}

.faq-categories {
  padding: 0 0 2.5rem;
}
@media only screen and (max-width: 768px) {
  .faq-categories {
    padding: 0 0 1rem;
  }
}
@media only screen and (max-width: 768px) {
  .faq-categories .swiper {
    margin: 0 -1rem;
    padding: 0 1rem;
  }
}
.faq-categories .swiper .swiper-wrapper {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .faq-categories .swiper .swiper-wrapper {
    flex-wrap: nowrap;
    justify-content: initial;
    gap: 0;
  }
}
.faq-categories .swiper .swiper-slide {
  width: initial;
}
.faq-categories .swiper .swiper-button-prev,
.faq-categories .swiper .swiper-button-next {
  top: -0.0625rem;
  bottom: -0.0625rem;
  display: none;
  height: auto;
  width: 2.5rem;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .faq-categories .swiper .swiper-button-prev,
  .faq-categories .swiper .swiper-button-next {
    display: flex;
  }
}
.faq-categories .swiper .swiper-button-prev svg,
.faq-categories .swiper .swiper-button-next svg {
  width: 1rem;
  height: 1rem;
}
.faq-categories .swiper .swiper-button-prev svg path,
.faq-categories .swiper .swiper-button-next svg path {
  fill: #06332b;
}
.faq-categories .swiper .swiper-button-prev {
  left: 0;
  background: linear-gradient(-90deg, rgba(255, 255, 255, 0) 0%, #ffffff 40.61%);
}
.faq-categories .swiper .swiper-button-next {
  right: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #ffffff 40.61%);
}
.faq-categories a {
  display: inline-flex;
  padding: 0.625rem 1.5rem;
  font-weight: 600;
  color: #0c6d5c;
  border-radius: 0.5rem;
  text-wrap: nowrap;
}
@media only screen and (max-width: 768px) {
  .faq-categories a {
    font-weight: 400;
    background-color: #f6f6f6;
  }
}
.faq-categories a:hover {
  background: #dae0df;
  text-decoration: none;
}

.faq-category {
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  padding: 0 1rem;
  color: #06332b;
}
@media only screen and (max-width: 768px) {
  .faq-category {
    max-width: 480px;
    margin: 0 auto 2rem;
  }
}
.faq-category .h2 {
  margin: 0 0 2rem;
}
@media only screen and (max-width: 768px) {
  .faq-category .h2 {
    margin: 0 0 1rem;
  }
}
.faq-category .accordion {
  background-color: #fff;
  border: 0.0625rem solid rgba(2, 9, 5, 0.1490196078);
  margin: 0 0 1rem;
  border-radius: 1rem;
}
@media only screen and (max-width: 768px) {
  .faq-category .accordion {
    margin: 0 0 0.5rem;
  }
}
.faq-category .accordion:last-of-type {
  margin: 0;
}
.faq-category .accordion .accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  padding: 1rem 1.5rem;
}
@media only screen and (max-width: 768px) {
  .faq-category .accordion .accordion-btn {
    padding: 1rem;
  }
}
.faq-category .accordion .accordion-btn.opened img {
  transform: scale(1, -1);
}
.faq-category .accordion .accordion-btn .h5 {
  flex: 1;
}
.faq-category .accordion .accordion-btn img {
  transition: 0.3s;
}
.faq-category .accordion .accordion-body {
  display: none;
  padding: 0 1.5rem 1.5rem;
}
@media only screen and (max-width: 768px) {
  .faq-category .accordion .accordion-body {
    padding: 0 1rem 1rem;
  }
}

.faq-cta .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 0 1rem;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .faq-cta .wrap {
    gap: 0.5rem;
  }
}
.faq-cta .title {
  font-size: 2rem;
  color: #0c6d5c;
}
@media only screen and (max-width: 768px) {
  .faq-cta .title {
    font-size: 1.5rem;
  }
}
.faq-cta .subtitle {
  font-size: 1.125rem;
}
@media only screen and (max-width: 768px) {
  .faq-cta .subtitle {
    font-size: initial;
  }
}
.faq-cta .btn {
  color: #0c6d5c;
}
@media only screen and (max-width: 768px) {
  .faq-cta .btn {
    width: 100%;
    margin: 0.75rem 0 0 0;
  }
}

.contact-locations .locations-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0 0 1.5rem;
}
.contact-locations .locations-header .h2 {
  color: #06332b;
}
.contact-locations .locations-header .subtitle {
  max-width: 40rem;
  font-size: 1.125rem;
}
@media only screen and (max-width: 768px) {
  .contact-locations .locations-header .subtitle {
    font-size: initial;
  }
}
.contact-locations .locations-filter {
  margin: 0 0 2.5rem;
}
@media only screen and (max-width: 768px) {
  .contact-locations .locations-filter .swiper {
    margin: 0 -1rem;
    padding: 0 1rem;
  }
}
.contact-locations .locations-filter .swiper .swiper-wrapper {
  gap: 0.5rem;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .contact-locations .locations-filter .swiper .swiper-wrapper {
    flex-wrap: nowrap;
    justify-content: initial;
    gap: 0;
  }
}
.contact-locations .locations-filter .swiper .swiper-slide {
  width: initial;
  position: relative;
}
.contact-locations .locations-filter .swiper .swiper-slide input {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
}
.contact-locations .locations-filter .swiper .swiper-slide input:checked + .btn {
  color: #fff;
  background: linear-gradient(92.49deg, #06332b 0.29%, #0c6d5c 100%);
}
.contact-locations .locations-filter .swiper .swiper-slide .btn {
  padding: 0.625rem 1.5rem;
  color: #0c6d5c;
  text-wrap: nowrap;
}
@media only screen and (max-width: 768px) {
  .contact-locations .locations-filter .swiper .swiper-slide .btn {
    font-weight: 400;
    background-color: #f6f6f6;
  }
}
.contact-locations .locations-filter .swiper .swiper-slide .btn:hover {
  background: #dae0df;
  text-decoration: none;
}
.contact-locations .locations-filter .swiper .swiper-button-prev,
.contact-locations .locations-filter .swiper .swiper-button-next {
  top: -0.0625rem;
  bottom: -0.0625rem;
  display: none;
  height: auto;
  width: 2.5rem;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .contact-locations .locations-filter .swiper .swiper-button-prev,
  .contact-locations .locations-filter .swiper .swiper-button-next {
    display: flex;
  }
}
.contact-locations .locations-filter .swiper .swiper-button-prev svg,
.contact-locations .locations-filter .swiper .swiper-button-next svg {
  width: 1rem;
  height: 1rem;
}
.contact-locations .locations-filter .swiper .swiper-button-prev svg path,
.contact-locations .locations-filter .swiper .swiper-button-next svg path {
  fill: #06332b;
}
.contact-locations .locations-filter .swiper .swiper-button-prev {
  left: 0;
  background: linear-gradient(-90deg, rgba(255, 255, 255, 0) 0%, #ffffff 40.61%);
}
.contact-locations .locations-filter .swiper .swiper-button-next {
  right: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #ffffff 40.61%);
}
.contact-locations .list {
  display: grid;
}
.contact-locations .list.permanent-locations {
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media only screen and (max-width: 1312px) {
  .contact-locations .list.permanent-locations {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .contact-locations .list.permanent-locations {
    grid-template-columns: 100%;
  }
}
.contact-locations .list.other-locations {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media only screen and (max-width: 1312px) {
  .contact-locations .list.other-locations {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .contact-locations .list.other-locations {
    gap: 1rem;
    grid-template-columns: 100%;
  }
}
.contact-locations .list .card {
  display: flex;
  flex-direction: column;
}
.contact-locations .list .card.other-locations-card .card-header {
  background: transparent;
  flex-direction: row;
  color: #000000;
  padding: 1.5rem 1.5rem 1.25rem;
}
@media only screen and (max-width: 768px) {
  .contact-locations .list .card.other-locations-card .card-header {
    flex-direction: column;
  }
}
.contact-locations .list .card.other-locations-card .card-header .title {
  color: #06332b;
}
.contact-locations .list .card.other-locations-card .card-header .link img {
  filter: brightness(0);
  opacity: 0.4;
}
.contact-locations .list .card.other-locations-card .card-body {
  padding: 0 1.5rem 1.25rem;
  margin: auto 0 0 0;
}
.contact-locations .list .card.other-locations-card .card-footer {
  margin: 0;
}
.contact-locations .list .card .card-header {
  display: flex;
  gap: 1rem;
  background: linear-gradient(92.49deg, #06332b 0.29%, #0c6d5c 100%);
  color: #fff;
  padding: 1.5rem;
  border-radius: 1rem;
}
@media only screen and (max-width: 768px) {
  .contact-locations .list .card .card-header {
    padding: 1rem;
  }
}
.contact-locations .list .card .card-header .icon {
  width: 3.5rem;
  height: 3.5rem;
}
.contact-locations .list .card .card-header .card-header-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.contact-locations .list .card .card-header .title {
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}
.contact-locations .list .card .card-header .link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0;
}
.contact-locations .list .card .card-header .link:hover {
  text-decoration: underline;
}
.contact-locations .list .card .card-header .link img {
  width: 1.25rem;
  height: 1.25rem;
}
.contact-locations .list .card .card-body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.5rem 1.5rem 1.25rem;
}
@media only screen and (max-width: 768px) {
  .contact-locations .list .card .card-body {
    padding: 1rem;
  }
}
.contact-locations .list .card .card-body table {
  margin: 0 -0.5rem;
  color: #052922;
}
.contact-locations .list .card .card-body table td {
  padding: 0.25rem 0.5rem;
}
.contact-locations .list .card .card-body table td a {
  text-decoration: underline;
}
.contact-locations .list .card .card-body .info {
  font-size: 1.125rem;
}
@media only screen and (max-width: 768px) {
  .contact-locations .list .card .card-body .info {
    font-size: initial;
  }
}
.contact-locations .list .card .card-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem 1.5rem;
  margin: auto 0 0 0;
}
@media only screen and (max-width: 768px) {
  .contact-locations .list .card .card-footer {
    padding: 0 1rem 1rem;
  }
}
.contact-locations .list .card .card-footer .hint {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-family: "Lato";
  font-weight: 600;
}

.house-appointment .box {
  background: #f6f6f6;
  border: 0.0625rem solid rgba(2, 9, 5, 0.1490196078);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media only screen and (max-width: 768px) {
  .house-appointment .box {
    padding: 1rem;
  }
}
.house-appointment .box .h2 {
  font-size: 2rem;
}
@media only screen and (max-width: 768px) {
  .house-appointment .box .h2 {
    font-size: 1.5rem;
  }
}
.house-appointment .box .text {
  max-width: 48.75rem;
  font-size: 1.125rem;
}
@media only screen and (max-width: 768px) {
  .house-appointment .box .text {
    font-size: 1rem;
  }
}
.house-appointment .box .btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.customer-satisfaction-step .card {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 2rem;
  padding: 1.5rem;
}
@media only screen and (max-width: 768px) {
  .customer-satisfaction-step .card {
    padding: 1rem;
    gap: 1rem;
  }
}
.customer-satisfaction-step .content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: #06332b;
}
@media only screen and (max-width: 768px) {
  .customer-satisfaction-step .content {
    gap: 1rem;
    font-size: 0.875rem;
  }
}
.customer-satisfaction-step .list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.375rem;
}
@media only screen and (max-width: 1024px) {
  .customer-satisfaction-step .list {
    gap: 1rem;
  }
}
@media only screen and (max-width: 768px) {
  .customer-satisfaction-step .list {
    grid-template-columns: 100%;
    gap: 0.5rem;
  }
}
.customer-satisfaction-step .list-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 0.0625rem solid rgba(2, 9, 5, 0.1490196078);
  padding: 1rem;
  border-radius: 1rem;
  font-size: 1.125rem;
  color: #06332b;
}
@media only screen and (max-width: 768px) {
  .customer-satisfaction-step .list-item {
    padding: 0.75rem;
    font-size: 0.875rem;
  }
}
.customer-satisfaction-step .list-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: #e6ebea;
}
@media only screen and (max-width: 768px) {
  .customer-satisfaction-step .list-item .icon {
    width: 1.5rem;
    height: 1.5rem;
    background-color: transparent;
  }
}
.customer-satisfaction-step .list-item .icon img {
  width: 1.5rem;
  height: 1.5rem;
}
.customer-satisfaction-step .list-item p {
  flex: 1;
}
@media only screen and (max-width: 768px) {
  .customer-satisfaction-step .btn {
    width: 100%;
  }
}

.our-services .our-services-title {
  max-width: 45.1875rem;
  text-align: center;
  margin: 0 auto 2.5rem;
}
@media only screen and (max-width: 768px) {
  .our-services .our-services-title {
    margin: 0 auto 1.5rem;
  }
}
.our-services .our-services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  counter-reset: service-counter;
}
@media only screen and (max-width: 1024px) {
  .our-services .our-services-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .our-services .our-services-list {
    grid-template-columns: 100%;
    gap: 1rem;
  }
}
.our-services .our-services-link {
  counter-increment: service-counter;
  height: 100%;
  min-height: 17.375rem;
  position: relative;
  display: flex;
  gap: 1rem;
  flex-direction: column;
  background-color: #fff;
  padding: 1.5rem;
  border: 0.0625rem solid rgba(2, 9, 5, 0.1490196078);
  border-radius: 1.5rem;
}
@media only screen and (max-width: 768px) {
  .our-services .our-services-link {
    min-height: initial;
    padding: 1rem;
    border-radius: 1rem;
  }
}
.our-services .our-services-link:hover {
  border-color: #06332b;
}
.our-services .our-services-link:hover::after {
  transform: rotate(5deg);
  opacity: 1;
}
.our-services .our-services-link:hover .icon::after {
  opacity: 1;
}
.our-services .our-services-link:hover .icon img {
  filter: brightness(0) invert(1);
}
.our-services .our-services-link:before {
  content: counter(service-counter, decimal-leading-zero);
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background-color: #e6ebea;
  color: #06332b;
  padding: 0.125rem 0.625rem;
  border-radius: 1.25rem;
  font-size: 0.875rem;
}
@media only screen and (max-width: 768px) {
  .our-services .our-services-link:before {
    top: 1rem;
    right: 1rem;
  }
}
.our-services .our-services-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #e6ebea;
  border-radius: 1rem;
  z-index: -1;
  opacity: 0;
  transition: 0.3s;
}
.our-services .our-services-link .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: #e6ebea;
  overflow: hidden;
  z-index: 1;
}
.our-services .our-services-link .icon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(92.49deg, #06332b 0.29%, #0c6d5c 100%);
  z-index: -1;
  opacity: 0;
  transition: 0.3s;
}
.our-services .our-services-link .icon img {
  width: 2rem;
  height: 2rem;
}
.our-services .our-services-link .h5 {
  color: #06332b;
}
.our-services .our-services-link .explore {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Lato";
  font-weight: 600;
  color: #052e27;
  margin: auto 0 0 0;
}
.our-services .our-services-link .explore img {
  width: 1.25rem;
  height: 1.25rem;
}

.privacy-policy {
  padding: 5.5rem 0 4rem;
}
@media only screen and (max-width: 768px) {
  .privacy-policy {
    padding: 0 0 2rem;
  }
}
.privacy-policy .box {
  max-width: 40rem;
  margin: 0 auto;
  font-size: 1.25rem;
}
@media only screen and (max-width: 768px) {
  .privacy-policy .box {
    font-size: initial;
  }
}
.privacy-policy .box .h1 {
  padding: 0 0 1.5rem;
}
.privacy-policy .box ul {
  padding: 0 0 0 1.5rem;
}
.privacy-policy .box ul li {
  list-style: disc;
}
.privacy-policy .box ol {
  padding: 0 0 0 1.5rem;
}
.privacy-policy .box ol li {
  list-style: decimal;
}

.page-not-found {
  padding: 15.4375rem 0;
}
@media only screen and (max-width: 1024px) {
  .page-not-found {
    padding: 6.25rem 0;
  }
}
@media only screen and (max-width: 768px) {
  .page-not-found {
    padding: 2.5rem 0 5rem;
  }
}
.page-not-found .wrap {
  display: grid;
  gap: 3rem 2rem;
  grid-template-areas: "box img" "btn img";
  grid-template-columns: 1fr 40%;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .page-not-found .wrap {
    grid-template-columns: 100%;
    grid-template-areas: "box" "img" "btn ";
  }
}
.page-not-found .box {
  grid-area: box;
  max-width: 30rem;
}
.page-not-found .box .badge {
  display: block;
  color: #6f6f6f;
  margin: 0 0 0.75rem;
}
.page-not-found .box .h1 {
  color: #06332b;
  margin: 0 0 1.5rem;
}
.page-not-found .box .text {
  font-size: 1.25rem;
}
@media only screen and (max-width: 768px) {
  .page-not-found .box .text {
    font-size: initial;
  }
}
.page-not-found .btn {
  grid-area: btn;
  justify-self: start;
}
@media only screen and (max-width: 768px) {
  .page-not-found .btn {
    width: 100%;
  }
}
.page-not-found .img {
  grid-area: img;
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 1024px) {
  .page-not-found .img {
    width: 100%;
  }
}

.article-page {
  padding: 1.25rem 0 5rem;
}
.article-page .wrap {
  max-width: 65rem;
  margin: 0 auto;
}
.article-page .article-page-title {
  margin: 1.5rem 0;
  color: #06332b;
}
@media only screen and (max-width: 768px) {
  .article-page .article-page-title {
    margin: 1rem 0;
  }
}
.article-page .article-page-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 20rem auto;
  gap: 3rem;
}
@media only screen and (max-width: 1024px) {
  .article-page .article-page-grid {
    grid-template-columns: 100%;
  }
}
.article-page .aside-links {
  position: sticky;
  top: 2.5rem;
  padding: 1rem;
}
@media only screen and (max-width: 1024px) {
  .article-page .aside-links {
    display: none;
  }
}
.article-page .aside-links .aside-links-title {
  color: #06332b;
  margin: 0 0 1.5rem;
}
.article-page .aside-links .aside-link {
  position: relative;
  display: flex;
  font-size: 1.125rem;
  color: #6f6f6f;
  padding: 1rem 0 1rem 2rem;
}
.article-page .aside-links .aside-link::after {
  content: "";
  position: absolute;
  top: 1.125rem;
  left: -0.25rem;
  width: 1.25rem;
  height: 1.25rem;
  background-image: url("../img/svg-icons/arrow-right-green.svg");
  background-size: 1.25rem;
  opacity: 0;
  transition: 0.4s;
}
.article-page .aside-links .aside-link:hover {
  font-weight: 700;
  color: #06332b;
}
.article-page .aside-links .aside-link:hover::after {
  left: 0;
  opacity: 1;
}
.article-page .article-content {
  overflow: hidden;
}
.article-page .article-content .article-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0 0 1rem;
  margin: 0 0 1rem;
  border-bottom: 0.0625rem solid #e5e5ea;
}
@media only screen and (max-width: 768px) {
  .article-page .article-content .article-info {
    flex-direction: column;
    align-items: start;
  }
}
.article-page .article-content .article-info .date time {
  color: #8e8e93;
}
.article-page .article-content .article-info .right-col {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.article-page .article-content .article-info .right-col .right-col-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.article-page .article-content .article-info .right-col .right-col-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background-color: #e6e8e7;
}
.article-page .article-content .article-info .right-col .right-col-item .icon img {
  width: 1.25rem;
  height: 1.25rem;
}
.article-page .article-content .hero-img {
  position: relative;
  border-radius: 1rem;
  background-color: #a7a7a7;
  overflow: hidden;
  margin: 0 0 1rem;
}
.article-page .article-content .hero-img img {
  width: 100%;
}
.article-page .article-content .audio-box {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  margin: 0 0 1.5rem;
}
.article-page .article-content .audio-box .audio-row {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.article-page .article-content .audio-box .audio-row .play-btn {
  display: flex;
}
.article-page .article-content .audio-box .audio-row .play-btn img {
  width: 1.5rem;
  height: 1.5rem;
}
.article-page .article-content .audio-box .audio-row .link {
  color: #06332b;
  font-weight: 600;
  text-decoration: underline;
}
.article-page .article-content .audio-box .audio-row audio {
  flex: 1;
}
.article-page .article-content .audio-box .audio-row .download-link {
  display: flex;
}
.article-page .article-content .audio-box .audio-row .download-link img {
  width: 1.25rem;
  height: 1.25rem;
}
.article-page .article-content .text {
  font-size: 1.25rem;
}
@media only screen and (max-width: 768px) {
  .article-page .article-content .text {
    font-size: initial;
  }
}
.article-page .article-content .text > * {
  margin: 0 0 1rem;
}
.article-page .article-content .text > *:last-child {
  margin-bottom: 0;
}
.article-page .article-content .text h1,
.article-page .article-content .text h2,
.article-page .article-content .text h3,
.article-page .article-content .text h4,
.article-page .article-content .text h5,
.article-page .article-content .text h6 {
  font-weight: 400;
}
.article-page .article-content .text q {
  display: block;
  margin: 2.25rem 0;
  padding: 0 0 0 1.25rem;
  font-style: italic;
  border-left: 0.125rem solid rgba(2, 9, 5, 0.1490196078);
}
.article-page .article-content .text ul {
  padding: 0 0 0 1.25rem;
}
.article-page .article-content .text ul li {
  list-style: disc;
}
.article-page .article-content .text ol {
  padding: 0 0 0 1.25rem;
}
.article-page .article-content .text ol li {
  list-style: decimal;
}
.article-page .article-content .accordion {
  border-radius: 0.75rem;
  margin: 1.5rem 0;
}
.article-page .article-content .accordion .accordion-btn {
  width: 100%;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  padding: 1.5rem;
}
@media only screen and (max-width: 768px) {
  .article-page .article-content .accordion .accordion-btn {
    padding: 0.75rem;
  }
}
.article-page .article-content .accordion .accordion-btn.opened img {
  transform: scale(1, -1);
}
.article-page .article-content .accordion .accordion-btn h3 {
  font-size: initial;
  color: #06332b;
}
.article-page .article-content .accordion .accordion-btn img {
  width: 1.5rem;
  height: 1.5rem;
  transition: 0.3s;
}
.article-page .article-content .accordion .accordion-body {
  display: none;
  padding: 0 1.5rem 1.5rem;
}
@media only screen and (max-width: 768px) {
  .article-page .article-content .accordion .accordion-body {
    padding: 0 0.75rem 0.75rem;
  }
}
.article-page .article-content .swiper-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2.5rem 0;
}
@media only screen and (max-width: 768px) {
  .article-page .article-content .swiper-box {
    gap: 0.5rem;
  }
}
.article-page .article-content .swiper-main {
  width: 100%;
}
.article-page .article-content .swiper-main .swiper-button-prev,
.article-page .article-content .swiper-main .swiper-button-next {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: #e6ebea;
  transition: 0.3s;
}
@media only screen and (max-width: 768px) {
  .article-page .article-content .swiper-main .swiper-button-prev,
  .article-page .article-content .swiper-main .swiper-button-next {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.article-page .article-content .swiper-main .swiper-button-prev:hover,
.article-page .article-content .swiper-main .swiper-button-next:hover {
  background-color: #dae0df;
}
.article-page .article-content .swiper-main .swiper-button-prev svg,
.article-page .article-content .swiper-main .swiper-button-next svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #06332b;
}
@media only screen and (max-width: 768px) {
  .article-page .article-content .swiper-main .swiper-button-prev svg,
  .article-page .article-content .swiper-main .swiper-button-next svg {
    width: 0.875rem;
    height: 0.875rem;
  }
}
.article-page .article-content .swiper-main .swiper-button-prev {
  left: 1rem;
}
@media only screen and (max-width: 768px) {
  .article-page .article-content .swiper-main .swiper-button-prev {
    left: 0.3125rem;
  }
}
.article-page .article-content .swiper-main .swiper-button-next {
  right: 1rem;
}
@media only screen and (max-width: 768px) {
  .article-page .article-content .swiper-main .swiper-button-next {
    right: 0.3125rem;
  }
}
.article-page .article-content .swiper-main .img-box {
  display: flex;
  position: relative;
  width: 100%;
  padding: 0 0 55%;
  border-radius: 1rem;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .article-page .article-content .swiper-main .img-box {
    border-radius: 0.5rem;
  }
}
.article-page .article-content .swiper-main .img-box[data-fancybox]:hover::after {
  transform: scale(1.2);
}
.article-page .article-content .swiper-main .img-box[data-fancybox]::after {
  content: "";
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  width: 2rem;
  height: 2rem;
  background-image: url("../img/svg-icons/expand.svg");
  background-size: 100%;
  transition: 0.3s;
}
@media only screen and (max-width: 768px) {
  .article-page .article-content .swiper-main .img-box[data-fancybox]::after {
    top: 0.5rem;
    right: 0.5rem;
    width: 1.5rem;
    height: 1.5rem;
  }
}
.article-page .article-content .swiper-nav {
  width: 100%;
}
.article-page .article-content .swiper-nav .swiper-slide {
  border: 0.0625rem solid #fff;
  border-radius: 1rem;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .article-page .article-content .swiper-nav .swiper-slide {
    border-radius: 0.5rem;
  }
}
.article-page .article-content .swiper-nav .swiper-slide.swiper-slide-thumb-active {
  border-color: #06332b;
}
.article-page .article-content .swiper-nav .img-box {
  position: relative;
  width: 100%;
  padding: 0 0 100%;
}

.how-to-receive .wrap {
  max-width: 65rem;
  margin: 0 auto;
  display: grid;
  align-items: start;
  grid-template-columns: 20rem auto;
  gap: 3rem;
}
@media only screen and (max-width: 1024px) {
  .how-to-receive .wrap {
    grid-template-columns: 100%;
  }
}
.how-to-receive .aside-links {
  position: sticky;
  top: 2.5rem;
  padding: 1rem;
}
@media only screen and (max-width: 1024px) {
  .how-to-receive .aside-links {
    display: none;
  }
}
.how-to-receive .aside-links .aside-links-title {
  color: #06332b;
  margin: 0 0 1.5rem;
}
.how-to-receive .aside-links .tab-pane {
  display: none;
}
.how-to-receive .aside-links .tab-pane.active {
  display: block;
}
.how-to-receive .aside-links .aside-link {
  position: relative;
  display: flex;
  font-size: 1.125rem;
  color: #6f6f6f;
  padding: 1rem 0 1rem 2rem;
}
.how-to-receive .aside-links .aside-link::after {
  content: "";
  position: absolute;
  top: 1.125rem;
  left: -0.25rem;
  width: 1.25rem;
  height: 1.25rem;
  background-image: url("../img/svg-icons/arrow-right-green.svg");
  background-size: 1.25rem;
  opacity: 0;
  transition: 0.4s;
}
.how-to-receive .aside-links .aside-link:hover {
  font-weight: 700;
  color: #06332b;
}
.how-to-receive .aside-links .aside-link:hover::after {
  left: 0;
  opacity: 1;
}
.how-to-receive .how-to-receive-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media only screen and (max-width: 768px) {
  .how-to-receive .how-to-receive-content {
    gap: 1rem;
  }
}
.how-to-receive .how-to-receive-content .hero-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  border: 0.0625rem solid rgba(2, 9, 5, 0.1490196078);
  box-shadow: 0rem 0.25rem 2rem 0rem rgba(0, 0, 0, 0.0588235294);
  background-color: #e6ebea;
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .how-to-receive .how-to-receive-content .hero-card {
    gap: 1rem;
    padding: 1rem;
  }
}
.how-to-receive .how-to-receive-content .hero-card .title {
  color: #06332b;
}
.how-to-receive .how-to-receive-content .hero-card .text {
  color: #6f6f6f;
}
.how-to-receive .how-to-receive-content .hero-card .tabs-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  background-color: #fff;
  border-radius: 1rem;
  padding: 1rem 1.25rem;
}
@media only screen and (max-width: 768px) {
  .how-to-receive .how-to-receive-content .hero-card .tabs-nav {
    width: 100%;
    padding: 0.75rem;
  }
}
.how-to-receive .how-to-receive-content .hero-card .tab-nav-btn {
  width: 100%;
  font-weight: 700;
  font-size: 1.125rem;
  color: #06332b;
  padding: 0.75rem 2.5rem;
  border-radius: 0.75rem;
  transition: 0.3s;
}
@media only screen and (max-width: 768px) {
  .how-to-receive .how-to-receive-content .hero-card .tab-nav-btn {
    font-size: initial;
    padding: 0.75rem;
  }
}
.how-to-receive .how-to-receive-content .hero-card .tab-nav-btn:hover {
  background-color: #dae0df;
}
.how-to-receive .how-to-receive-content .hero-card .tab-nav-btn.active {
  background: linear-gradient(92.49deg, #06332b 0.29%, #0c6d5c 100%);
  color: #fff;
}
.how-to-receive .how-to-receive-content .tab-content {
  counter-reset: step;
}
.how-to-receive .how-to-receive-content .tab-content .tab-pane {
  display: none;
  flex-direction: column;
  gap: 2rem;
}
@media only screen and (max-width: 768px) {
  .how-to-receive .how-to-receive-content .tab-content .tab-pane {
    gap: 1rem;
  }
}
.how-to-receive .how-to-receive-content .tab-content .tab-pane.active {
  display: flex;
}
.how-to-receive .how-to-receive-content .step {
  counter-increment: step;
  padding: 1.5rem;
}
@media only screen and (max-width: 768px) {
  .how-to-receive .how-to-receive-content .step {
    padding: 1rem;
  }
}
.how-to-receive .how-to-receive-content .step .title-box {
  padding: 1.5rem 1rem;
  color: #06332b;
}
@media only screen and (max-width: 768px) {
  .how-to-receive .how-to-receive-content .step .title-box {
    padding: 0;
    border: none;
  }
}
.how-to-receive .how-to-receive-content .step .title-box .title {
  position: relative;
  padding: 0 0 0 4.5rem;
}
@media only screen and (max-width: 768px) {
  .how-to-receive .how-to-receive-content .step .title-box .title {
    padding: 3rem 0 0 0;
  }
}
.how-to-receive .how-to-receive-content .step .title-box .title::before {
  content: counter(step);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: #e6ebea;
  font-size: 1.25rem;
}
@media only screen and (max-width: 768px) {
  .how-to-receive .how-to-receive-content .step .title-box .title::before {
    top: 0;
    transform: none;
    width: 2rem;
    height: 2rem;
  }
}
.how-to-receive .how-to-receive-content .step .text {
  font-size: 1.25rem;
  color: #6f6f6f;
  margin: 2rem 0 0 0;
}
@media only screen and (max-width: 768px) {
  .how-to-receive .how-to-receive-content .step .text {
    margin: 0.5rem 0 0 0;
    font-size: initial;
  }
}
.how-to-receive .how-to-receive-content .step .text a {
  color: #06332b;
  text-decoration: underline;
}
.how-to-receive .how-to-receive-content .step .text ul {
  padding: 0 0 0 1.25rem;
}
.how-to-receive .how-to-receive-content .step .text ul li {
  list-style-type: disc;
}
.how-to-receive .how-to-receive-content .step .text ol {
  padding: 0 0 0 1.25rem;
}
.how-to-receive .how-to-receive-content .step .text ol li {
  list-style-type: decimal;
}
.how-to-receive .how-to-receive-content .step .btn {
  margin: 1.5rem 0 0 0;
}
@media only screen and (max-width: 768px) {
  .how-to-receive .how-to-receive-content .step .btn {
    width: 100%;
  }
}

.service-providers .list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media only screen and (max-width: 768px) {
  .service-providers .list {
    gap: 0.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .service-providers .accordion {
    border-radius: 0.5rem;
  }
}
.service-providers .accordion-btn {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  padding: 1.25rem 4.5rem 1.25rem 1.5rem;
}
@media only screen and (max-width: 768px) {
  .service-providers .accordion-btn {
    padding: 0.75rem 2.75rem 0.75rem 1rem;
  }
}
.service-providers .accordion-btn.opened::after {
  transform: rotate(180deg);
  background-image: url("../img/svg-icons/minus.svg");
}
.service-providers .accordion-btn::after {
  content: "";
  position: absolute;
  top: 1.625rem;
  right: 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url("../img/svg-icons/plus.svg");
  background-size: 100%;
  transition: 0.3s;
}
@media only screen and (max-width: 768px) {
  .service-providers .accordion-btn::after {
    top: 1rem;
    right: 1rem;
  }
}
.service-providers .accordion-body {
  display: none;
  padding: 0 1.5rem 1.25rem;
}
@media only screen and (max-width: 768px) {
  .service-providers .accordion-body {
    padding: 0 1rem 0.75rem;
  }
}
.service-providers .accordion-body > *:not(:last-child) {
  margin: 0 0 1rem;
}
.service-providers .accordion-body .text {
  max-width: 40rem;
  font-size: 1.125rem;
}
.service-providers .accordion-body .map-box {
  width: 100%;
  height: 43.9375rem;
  border-radius: 1.5rem;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .service-providers .accordion-body .map-box {
    height: 15.75rem;
    border-radius: 1rem;
  }
}
.service-providers .accordion-body .map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}
/*# sourceMappingURL=main.css.map */
