@charset "UTF-8";

body.no-scroll {
  overflow: hidden;
}

.nmp-last-el h1:last-child,
.nmp-last-el h2:last-child,
.nmp-last-el h3:last-child,
.nmp-last-el h4:last-child,
.nmp-last-el h5:last-child,
.nmp-last-el h6:last-child,
.nmp-last-el ul:last-child,
.nmp-last-el ol:last-child,
.nmp-last-el p:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

/* For WebKit browsers (Chrome, Safari, Opera) */

.search-field::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}

/* For Firefox */

.search-field[type=search]::-moz-search-cancel-button {
  display: none;
}

/* For Internet Explorer and Edge */

.search-field[type=search]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

.ajax-posts-list-wrap {
  position: relative;
}

.ajax-preloader {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  z-index: 3;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.ajax-preloader:after {
  content: "";
  display: block;
  width: 100px;
  height: 100px;
  margin: 10px;
  border-radius: 50%;
  border: 10px solid;
  border-color: #5F7577 transparent #5F7577 transparent;
  -webkit-animation: lds-dual-ring 1.2s linear infinite;
  animation: lds-dual-ring 1.2s linear infinite;
}

@-webkit-keyframes lds-dual-ring {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes lds-dual-ring {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.ajax-no-posts-info span {
  font-family: "Poppins", sans-serif;
  color: #5F7577;
  font-size: 20px;
  font-weight: 900;
  line-height: 28px;
  letter-spacing: -0.3px;
}

.open-fancy {
  position: absolute;
  top: calc(50% - 24px);
  left: calc(50% - 24px);
  width: 48px;
  height: 48px;
  background-size: 48px 48px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/play-button.svg);
  z-index: 10;
  cursor: pointer;
}

.caption-image {
  position: relative;
}

.caption-image .caption-image-wrapper {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.caption-image .caption-image-wrapper.caption-left {
  right: unset;
  left: 20px;
  max-width: 35%;
}

@media (max-width: 991px) {
  .caption-image .caption-image-wrapper.caption-left {
    max-width: 100%;
    bottom: unset;
    top: 20px;
  }
}

.caption-image .caption-image-wrapper.header-caption {
  right: unset;
  left: 20px;
}

@media (max-width: 991px) {
  .caption-image .caption-image-wrapper.header-caption {
    max-width: 100%;
    bottom: unset;
    top: 20px;
  }
}

.caption-image .caption-image-wrapper span {
  display: block;
  color: #ffffff;
  text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.8);
  font-family: "Source Sans 3", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.2;
}

.wp-caption {
  width: unset !important;
  position: relative;
}

.wp-caption .wp-caption-text {
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: #ffffff;
  text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.8);
  font-family: "Source Sans 3", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.2;
}

.wp-block-image:has(.wp-element-caption) {
  position: relative;
}

.wp-block-image:has(.wp-element-caption) .wp-element-caption {
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: #ffffff;
  text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.8);
  font-family: "Source Sans 3", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.2;
}

/* Slider */

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-slide:focus {
  outline: none;
}

: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;
  -webkit-animation: f-spinner-rotate 2s linear infinite;
  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);
  -webkit-animation: f-spinner-dash 2s ease-in-out infinite;
  animation: f-spinner-dash 2s ease-in-out infinite;
}

@-webkit-keyframes f-spinner-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes f-spinner-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

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

@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-zoomInUp {
  -webkit-animation: 0.2s ease-out 0.1s both f-zoomInUp;
  animation: 0.2s ease-out 0.1s both f-zoomInUp;
}

.f-zoomOutDown {
  -webkit-animation: 0.2s ease-out both f-zoomOutDown;
  animation: 0.2s ease-out both f-zoomOutDown;
}

@-webkit-keyframes f-zoomInUp {
  from {
    -webkit-transform: scale(0.975) translate3d(0, 16px, 0);
    transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: scale(1) translate3d(0, 0, 0);
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes f-zoomInUp {
  from {
    -webkit-transform: scale(0.975) translate3d(0, 16px, 0);
    transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: scale(1) translate3d(0, 0, 0);
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}

@-webkit-keyframes f-zoomOutDown {
  to {
    -webkit-transform: scale(0.975) translate3d(0, 16px, 0);
    transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
}

@keyframes f-zoomOutDown {
  to {
    -webkit-transform: scale(0.975) translate3d(0, 16px, 0);
    transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
}

.f-throwOutUp {
  -webkit-animation: 0.175s ease-out both f-throwOutUp;
  animation: 0.175s ease-out both f-throwOutUp;
}

.f-throwOutDown {
  -webkit-animation: 0.175s ease-out both f-throwOutDown;
  animation: 0.175s ease-out both f-throwOutDown;
}

@-webkit-keyframes f-throwOutUp {
  to {
    -webkit-transform: translate3d(0, -150px, 0);
    transform: translate3d(0, -150px, 0);
    opacity: 0;
  }
}

@keyframes f-throwOutUp {
  to {
    -webkit-transform: translate3d(0, -150px, 0);
    transform: translate3d(0, -150px, 0);
    opacity: 0;
  }
}

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

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

.f-fadeIn {
  -webkit-animation: 0.2s ease both f-fadeIn;
  animation: 0.2s ease both f-fadeIn;
  z-index: 2;
}

.f-fadeOut {
  -webkit-animation: 0.2s ease both f-fadeOut;
  animation: 0.2s ease both f-fadeOut;
  z-index: 1;
}

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

  100% {
    opacity: 1;
  }
}

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

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes f-fadeOut {
  100% {
    opacity: 0;
  }
}

@keyframes f-fadeOut {
  100% {
    opacity: 0;
  }
}

.f-fadeSlowIn {
  -webkit-animation: 0.5s ease both f-fadeSlowIn;
  animation: 0.5s ease both f-fadeSlowIn;
  z-index: 2;
}

.f-fadeSlowOut {
  -webkit-animation: 0.5s ease both f-fadeSlowOut;
  animation: 0.5s ease both f-fadeSlowOut;
  z-index: 1;
}

@-webkit-keyframes f-fadeSlowIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

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

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes f-fadeSlowOut {
  100% {
    opacity: 0;
  }
}

@keyframes f-fadeSlowOut {
  100% {
    opacity: 0;
  }
}

.f-fadeFastIn {
  -webkit-animation: 0.2s ease-out both f-fadeFastIn;
  animation: 0.2s ease-out both f-fadeFastIn;
  z-index: 2;
}

.f-fadeFastOut {
  -webkit-animation: 0.2s ease-out both f-fadeFastOut;
  animation: 0.2s ease-out both f-fadeFastOut;
  z-index: 2;
}

@-webkit-keyframes f-fadeFastIn {
  0% {
    opacity: 0.75;
  }

  100% {
    opacity: 1;
  }
}

@keyframes f-fadeFastIn {
  0% {
    opacity: 0.75;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes f-fadeFastOut {
  100% {
    opacity: 0;
  }
}

@keyframes f-fadeFastOut {
  100% {
    opacity: 0;
  }
}

.f-crossfadeIn {
  -webkit-animation: 0.2s ease-out both f-crossfadeIn;
  animation: 0.2s ease-out both f-crossfadeIn;
  z-index: 2;
}

.f-crossfadeOut {
  -webkit-animation: 0.1s linear 0.1s both f-crossfadeOut;
  animation: 0.1s linear 0.1s both f-crossfadeOut;
  z-index: 1;
}

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

  100% {
    opacity: 1;
  }
}

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

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes f-crossfadeOut {
  100% {
    opacity: 0;
  }
}

@keyframes f-crossfadeOut {
  100% {
    opacity: 0;
  }
}

.f-slideIn.from-next {
  -webkit-animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext;
  animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext;
}

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

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

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

@-webkit-keyframes f-slideInPrev {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes f-slideInPrev {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes f-slideInNext {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes f-slideInNext {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes f-slideOutNext {
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes f-slideOutNext {
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@-webkit-keyframes f-slideOutPrev {
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@keyframes f-slideOutPrev {
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

.f-classicIn.from-next {
  -webkit-animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;
  animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;
  z-index: 2;
}

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

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

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

@-webkit-keyframes f-classicInNext {
  0% {
    -webkit-transform: translateX(-75px);
    transform: translateX(-75px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes f-classicInNext {
  0% {
    -webkit-transform: translateX(-75px);
    transform: translateX(-75px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@-webkit-keyframes f-classicInPrev {
  0% {
    -webkit-transform: translateX(75px);
    transform: translateX(75px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes f-classicInPrev {
  0% {
    -webkit-transform: translateX(75px);
    transform: translateX(75px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@-webkit-keyframes f-classicOutNext {
  100% {
    -webkit-transform: translateX(-75px);
    transform: translateX(-75px);
    opacity: 0;
  }
}

@keyframes f-classicOutNext {
  100% {
    -webkit-transform: translateX(-75px);
    transform: translateX(-75px);
    opacity: 0;
  }
}

@-webkit-keyframes f-classicOutPrev {
  100% {
    -webkit-transform: translateX(75px);
    transform: translateX(75px);
    opacity: 0;
  }
}

@keyframes f-classicOutPrev {
  100% {
    -webkit-transform: translateX(75px);
    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: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: 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;
  -webkit-transform: var(--f-button-transform);
  transform: var(--f-button-transform);
  -webkit-filter: var(--f-button-svg-filter);
  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%;
  -webkit-transform: translateY(-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%;
  -webkit-transform: translateX(-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 {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

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

html.with-fancybox body {
  -ms-touch-action: none;
  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: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  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: 1050;
  outline: none;
  -webkit-transform-origin: top left;
  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__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;
  -ms-flex: 1;
  flex: 1;
  min-height: 0;
  z-index: 10;
  overflow-y: visible;
  overflow-x: clip;
}

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

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

.fancybox__slide {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 var(--fancybox-slide-gap) 0 0;
  padding: 4px;
  overflow: auto;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  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: "";
  -ms-flex: 0 0 0px;
  flex: 0 0 0;
  margin: auto;
}

.fancybox__content {
  -ms-flex-item-align: center;
  align-self: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  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: -webkit-grab;
  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: -webkit-grabbing;
  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;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

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

.is-zooming-in .fancybox__viewport:not(.is-dragging) .fancybox__slide:not(.is-selected) .fancybox__content,
.is-zooming-out .fancybox__slide:not(.is-selected) .fancybox__content {
  visibility: hidden;
}

.is-animating .fancybox__content,
.is-dragging .fancybox__content {
  -webkit-filter: blur(0px);
  filter: blur(0px);
  will-change: transform, width, height;
}

.fancybox-image {
  margin: auto;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox__caption {
  -ms-flex-item-align: center;
  align-self: center;
  max-width: 100%;
  -ms-flex-negative: 0;
  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 {
  -webkit-animation: 0.15s ease-out both f-fadeOut;
  animation: 0.15s ease-out both f-fadeOut;
}

.is-idle.is-compact .fancybox__footer {
  pointer-events: none;
  -webkit-animation: 0.15s ease-out both f-fadeOut;
  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;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox-ghost {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  -o-object-fit: contain;
  object-fit: contain;
  z-index: 40;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  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) {
  -webkit-animation: 0.25s ease 0.1s backwards f-fadeIn;
  animation: 0.25s ease 0.1s backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop {
  -webkit-animation: 0.35s ease backwards f-fadeIn;
  animation: 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) {
  -webkit-animation: 0.15s ease forwards f-fadeOut;
  animation: 0.15s ease forwards f-fadeOut;
}

.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop {
  -webkit-animation: 0.35s ease forwards f-fadeOut;
  animation: 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%;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  min-height: 1px;
  overflow: visible;
}

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

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

.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: 20px;
  --f-thumb-clip-width: 46px;
}

.f-thumbs {
  position: relative;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-perspective: 1000px;
  perspective: 1000px;
  -webkit-transform: translateZ(0);
  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;
}

.f-thumbs__track {
  display: -ms-flexbox;
  display: flex;
  will-change: transform;
}

.f-thumbs__slide {
  position: relative;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  box-sizing: content-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  width: var(--f-thumb-width);
  min-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: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

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

.is-modern .f-thumbs__slide {
  --clip-path: inset( 0 calc( (var(--f-thumb-width, 0) - var(--f-thumb-clip-width, 0)) * 0.5 * (1 - var(--progress, 0)) ) round var(--f-thumb-border-radius, 0) );
  -webkit-transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
  transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
  transition: none;
  pointer-events: none;
}

.is-modern .f-thumbs__slide:focus-within:not(.is-selected) {
  -webkit-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));
  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));
}

.is-modern .f-thumbs__slide > * {
  -webkit-clip-path: var(--clip-path);
  clip-path: var(--clip-path);
}

.is-modern.in-touch .f-thumbs__slide {
  -webkit-filter: none;
  filter: none;
}

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

.is-modern.is-resting .f-thumbs__slide > * {
  transition: all 0.33s ease;
}

.f-thumbs__slide__button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: 100%;
  margin: 0;
  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;
  -ms-touch-action: manipulation;
  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-nav-selected .f-thumbs__slide__button {
  opacity: var(--f-thumb-selected-opacity);
}

.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);
  -webkit-animation: f-fadeIn 0.2s ease-out;
  animation: f-fadeIn 0.2s ease-out;
  z-index: 10;
}

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

.f-thumbs.is-horizontal .f-thumbs__track {
  margin: 0 auto;
  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 {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: auto 0;
  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: 20px;
  --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-hidden {
  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: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-pack: justify;
  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;
  -webkit-animation: 0.15s ease-out both f-fadeOut;
  animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__toolbar__column {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-line-pack: start;
  align-content: flex-start;
}

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

.fancybox__toolbar__column.is-right {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-wrap: nowrap;
  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;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  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: -ms-flexbox;
  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: -ms-flexbox;
  display: flex;
}

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

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

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

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

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

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

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

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

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

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

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

.wp-block-embed .wp-block-embed__wrapper iframe {
  width: 100%;
}

.dutchtrig .main-header .header-top-bar .top-bar-wrapper .top-nav li a {
  color: #11A4DD;
  font-size: 16px;
  font-weight: 400;
}

.dutchtrig .main-header .header-top-bar .top-bar-wrapper .top-nav li a strong {
  color: inherit;
}

@media (max-width: 550px) {
  .dutchtrig .main-header .header-top-bar .top-bar-wrapper .top-nav li a {
    font-size: 14px;
  }
}

.dutchtrig .main-header .header-top-bar .top-bar-wrapper .header__search .search-form {
  position: relative;
}

.dutchtrig .main-header .header-top-bar .top-bar-wrapper .header__search .search-form .search-field {
  padding: 6px 10px;
  border: #DEDEDE 1px solid;
  border-radius: 10px;
  width: 375px;
  color: #5F7577;
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
}

.dutchtrig .main-header .header-top-bar .top-bar-wrapper .header__search .search-form .search-field:focus {
  outline: none;
}

.dutchtrig .main-header .header-top-bar .top-bar-wrapper .header__search .search-form .search-submit {
  position: absolute;
  width: 50px;
  height: 100%;
  border: 0;
  background: none;
  right: 0px;
  top: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
  z-index: 15;
}

.dutchtrig .main-header .header-top-bar .top-bar-wrapper .header__search .search-form .search-submit .search-icon {
  display: block;
  width: 17px;
  height: 17px;
  background-size: 17px 17px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/search-icon-blue.svg);
}

.dutchtrig .main-header .header-top-bar .top-bar-wrapper .header__search #toggle-search-form {
  background: none;
  border: none;
  cursor: pointer;
  display: block;
  width: 17px;
  height: 17px;
  background-size: 17px 17px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/search-icon-blue.svg);
}

.dutchtrig .main-header .header-top-bar .top-bar-wrapper .header__search #search-form-container {
  display: none;
}

.dutchtrig .main-header .header-top-bar .top-bar-wrapper .wpml-switcher .wpml-ls {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 135px;
}

.dutchtrig .main-header .header-top-bar .top-bar-wrapper .wpml-switcher .wpml-ls ul .wpml-ls-current-language {
  padding: 0 20px 0 6px;
}

.dutchtrig .main-header .header-top-bar .top-bar-wrapper .wpml-switcher .wpml-ls ul .wpml-ls-current-language a {
  display: block;
  text-decoration: none;
  border: none;
  background-color: transparent;
  padding: 0;
}

.dutchtrig .main-header .header-top-bar .top-bar-wrapper .wpml-switcher .wpml-ls ul .wpml-ls-current-language a span {
  color: #4F657A;
  font-family: "Source Sans 3", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.15;
}

.dutchtrig .main-header .header-top-bar .top-bar-wrapper .wpml-switcher .wpml-ls ul .wpml-ls-current-language .wpml-ls-item-toggle {
  position: relative;
}

.dutchtrig .main-header .header-top-bar .top-bar-wrapper .wpml-switcher .wpml-ls ul .wpml-ls-current-language .wpml-ls-item-toggle:after {
  display: none;
}

.dutchtrig .main-header .header-top-bar .top-bar-wrapper .wpml-switcher .wpml-ls ul .wpml-ls-current-language .wpml-ls-item-toggle:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: -20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
  height: 10px;
  background-size: 8px 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/arrow-lang-switcher.svg);
  transition: all 0.5s ease-in-out;
}

.dutchtrig .main-header .header-top-bar .top-bar-wrapper .wpml-switcher .wpml-ls ul .wpml-ls-current-language .wpml-ls-sub-menu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 11px;
  top: 45px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  border: none;
  border-radius: 3px;
  background: #F6FBF9;
  padding: 11px 13px;
}

.dutchtrig .main-header .header-top-bar .top-bar-wrapper .wpml-switcher .wpml-ls ul .wpml-ls-current-language .wpml-ls-sub-menu:after {
  content: "";
  display: block;
  position: absolute;
  top: -9px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 19px;
  height: 9px;
  background-size: 19px 9px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/language-switcher-triange.svg);
  transition: all 0.5s ease-in-out;
}

.dutchtrig .main-header .header-top-bar .top-bar-wrapper .wpml-switcher .wpml-ls ul .wpml-ls-current-language .wpml-ls-sub-menu .wpml-ls-item .wpml-ls-link span {
  transition: color 0.5s ease-in-out;
}

.dutchtrig .main-header .header-top-bar .top-bar-wrapper .wpml-switcher .wpml-ls ul .wpml-ls-current-language .wpml-ls-sub-menu .wpml-ls-item:hover .wpml-ls-link span {
  color: #3F8469;
}

.dutchtrig .main-header .header-top-bar .top-bar-wrapper .wpml-switcher .wpml-ls ul .wpml-ls-current-language:hover .wpml-ls-item-toggle {
  position: relative;
}

.dutchtrig .main-header .header-top-bar .top-bar-wrapper .wpml-switcher .wpml-ls ul .wpml-ls-current-language:hover .wpml-ls-item-toggle:after {
  display: none;
}

.dutchtrig .main-header .header-top-bar .top-bar-wrapper .wpml-switcher .wpml-ls ul .wpml-ls-current-language:hover .wpml-ls-item-toggle:before {
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

.dutchtrig .main-header .header-top-bar .top-bar-wrapper .wpml-switcher .wpml-ls ul .wpml-ls-current-language:hover .wpml-ls-sub-menu {
  visibility: visible;
  opacity: 1;
}

.dutchtrig .main-header .header-top-bar .top-bar-wrapper .link.phone a {
  color: #11A4DD;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-family: "Open Sans", sans-serif;
}

.dutchtrig .main-header .header-top-bar .top-bar-wrapper .link.phone a:before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background-size: 15px 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/phone-icon-blue.svg);
}

.dutchtrig .main-header .container.mobile .mobile-header .mobile-header-button {
  display: block;
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: calc(100% - 150px);
  cursor: pointer;
}

.dutchtrig .header-section-home .container .header-home-wrapper .header-home-title-wrapper .title {
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .dutchtrig .header-section-home .container .header-home-wrapper .header-home-title-wrapper .title {
    font-size: 30px;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .dutchtrig .header-section-home .container .header-home-wrapper .header-home-title-wrapper .subtitle {
    font-size: 20px;
  }
}

.dutchtrig .form-section .form-section-wrapper .form-section-form:before {
  left: -50%;
  width: 900px;
  height: 606px;
  background-size: 900px 606px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/form-icon-dutchtrig.svg);
}

.dutchtrig #site-popup:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 176px;
  height: 168px;
  background-size: 176px 168px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/form-icon-dutchtrig.svg);
  z-index: -1;
}

.dutchtrig #site-popup:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 176px;
  height: 168px;
  background-size: 176px 168px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/form-icon-dutchtrig.svg);
  z-index: -1;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1178px;
  --font-family-sans-serif: Montserrat, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

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

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

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

body {
  margin: 0;
  font-family: Montserrat, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #212529;
  text-align: left;
  background-color: #fff;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
}

a:not([href]):not([class]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

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

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

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

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

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

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

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

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

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

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

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

.container,
.container-fluid,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: 19px;
  padding-left: 19px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -19px;
  margin-left: -19px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

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

.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.row-cols-1 > * {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.row-cols-2 > * {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.row-cols-3 > * {
  -ms-flex: 0 0 33.3333333333%;
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.row-cols-4 > * {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.row-cols-5 > * {
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}

.row-cols-6 > * {
  -ms-flex: 0 0 16.6666666667%;
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-auto {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  -ms-flex: 0 0 8.33333333%;
  flex: 0 0 8.33333333%;
  max-width: 8.33333333%;
}

.col-2 {
  -ms-flex: 0 0 16.66666667%;
  flex: 0 0 16.66666667%;
  max-width: 16.66666667%;
}

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

.col-4 {
  -ms-flex: 0 0 33.33333333%;
  flex: 0 0 33.33333333%;
  max-width: 33.33333333%;
}

.col-5 {
  -ms-flex: 0 0 41.66666667%;
  flex: 0 0 41.66666667%;
  max-width: 41.66666667%;
}

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

.col-7 {
  -ms-flex: 0 0 58.33333333%;
  flex: 0 0 58.33333333%;
  max-width: 58.33333333%;
}

.col-8 {
  -ms-flex: 0 0 66.66666667%;
  flex: 0 0 66.66666667%;
  max-width: 66.66666667%;
}

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

.col-10 {
  -ms-flex: 0 0 83.33333333%;
  flex: 0 0 83.33333333%;
  max-width: 83.33333333%;
}

.col-11 {
  -ms-flex: 0 0 91.66666667%;
  flex: 0 0 91.66666667%;
  max-width: 91.66666667%;
}

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

.order-first {
  -ms-flex-order: -1;
  order: -1;
}

.order-last {
  -ms-flex-order: 13;
  order: 13;
}

.order-0 {
  -ms-flex-order: 0;
  order: 0;
}

.order-1 {
  -ms-flex-order: 1;
  order: 1;
}

.order-2 {
  -ms-flex-order: 2;
  order: 2;
}

.order-3 {
  -ms-flex-order: 3;
  order: 3;
}

.order-4 {
  -ms-flex-order: 4;
  order: 4;
}

.order-5 {
  -ms-flex-order: 5;
  order: 5;
}

.order-6 {
  -ms-flex-order: 6;
  order: 6;
}

.order-7 {
  -ms-flex-order: 7;
  order: 7;
}

.order-8 {
  -ms-flex-order: 8;
  order: 8;
}

.order-9 {
  -ms-flex-order: 9;
  order: 9;
}

.order-10 {
  -ms-flex-order: 10;
  order: 10;
}

.order-11 {
  -ms-flex-order: 11;
  order: 11;
}

.order-12 {
  -ms-flex-order: 12;
  order: 12;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

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

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

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

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

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

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

.nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}

.nav-link:hover,
.nav-link:focus {
  text-decoration: none;
}

.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}

.nav-tabs .nav-link {
  margin-bottom: -1px;
  background-color: transparent;
  border: 1px solid transparent;
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
  isolation: isolate;
  border-color: #e9ecef #e9ecef #dee2e6;
}

.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
}

.nav-pills .nav-link {
  background: none;
  border: 0;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #007bff;
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: center;
}

.tab-content > .tab-pane {
  display: none;
}

.tab-content > .active {
  display: block;
}

.navbar {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}

.navbar .container,
.navbar .container-fluid,
.navbar .container-sm,
.navbar .container-md,
.navbar .container-lg,
.navbar .container-xl {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.navbar-brand {
  display: inline-block;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}

.navbar-brand:hover,
.navbar-brand:focus {
  text-decoration: none;
}

.navbar-nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}

.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}

.navbar-text {
  display: inline-block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-collapse {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-align: center;
  align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
}

.navbar-toggler:hover,
.navbar-toggler:focus {
  text-decoration: none;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: 50%/100% 100% no-repeat;
}

.navbar-nav-scroll {
  max-height: 75vh;
  overflow-y: auto;
}

@media (max-width: 575.98px) {
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid,
  .navbar-expand-sm > .container-sm,
  .navbar-expand-sm > .container-md,
  .navbar-expand-sm > .container-lg,
  .navbar-expand-sm > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (max-width: 767.98px) {
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid,
  .navbar-expand-md > .container-sm,
  .navbar-expand-md > .container-md,
  .navbar-expand-md > .container-lg,
  .navbar-expand-md > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (max-width: 991.98px) {
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid,
  .navbar-expand-lg > .container-sm,
  .navbar-expand-lg > .container-md,
  .navbar-expand-lg > .container-lg,
  .navbar-expand-lg > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (max-width: 1177.98px) {
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid,
  .navbar-expand-xl > .container-sm,
  .navbar-expand-xl > .container-md,
  .navbar-expand-xl > .container-lg,
  .navbar-expand-xl > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

.navbar-expand {
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.navbar-expand > .container,
.navbar-expand > .container-fluid,
.navbar-expand > .container-sm,
.navbar-expand > .container-md,
.navbar-expand > .container-lg,
.navbar-expand > .container-xl {
  padding-right: 0;
  padding-left: 0;
}

.navbar-expand .navbar-nav {
  -ms-flex-direction: row;
  flex-direction: row;
}

.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}

.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.navbar-expand > .container,
.navbar-expand > .container-fluid,
.navbar-expand > .container-sm,
.navbar-expand > .container-md,
.navbar-expand > .container-lg,
.navbar-expand > .container-xl {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}

.navbar-expand .navbar-collapse {
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}

.navbar-expand .navbar-toggler {
  display: none;
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-brand:hover,
.navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}

.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}

.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-text a {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-text a:hover,
.navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-dark .navbar-brand {
  color: #fff;
}

.navbar-dark .navbar-brand:hover,
.navbar-dark .navbar-brand:focus {
  color: #fff;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}

.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}

.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}

.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}

.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-text a {
  color: #fff;
}

.navbar-dark .navbar-text a:hover,
.navbar-dark .navbar-text a:focus {
  color: #fff;
}

.fade {
  transition: opacity 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}

.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}

.collapsing.width {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  .collapsing.width {
    transition: none;
  }
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.bg-primary {
  background-color: #007bff !important;
}

a.bg-primary:hover,
a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #0062cc !important;
}

.bg-secondary {
  background-color: #6c757d !important;
}

a.bg-secondary:hover,
a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #545b62 !important;
}

.bg-success {
  background-color: #28a745 !important;
}

a.bg-success:hover,
a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #1e7e34 !important;
}

.bg-info {
  background-color: #17a2b8 !important;
}

a.bg-info:hover,
a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: #117a8b !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

a.bg-warning:hover,
a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: #d39e00 !important;
}

.bg-danger {
  background-color: #dc3545 !important;
}

a.bg-danger:hover,
a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #bd2130 !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

a.bg-light:hover,
a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #dae0e5 !important;
}

.bg-dark {
  background-color: #343a40 !important;
}

a.bg-dark:hover,
a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #1d2124 !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-right {
  border-right: 1px solid #dee2e6 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-left {
  border-left: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #007bff !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.border-success {
  border-color: #28a745 !important;
}

.border-info {
  border-color: #17a2b8 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #dc3545 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #343a40 !important;
}

.border-white {
  border-color: #fff !important;
}

.rounded-sm {
  border-radius: 0.2rem !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-right {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-left {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-lg {
  border-radius: 0.3rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

@media print {
  .d-print-none {
    display: none !important;
  }

  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-print-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.embed-responsive::before {
  display: block;
  content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.85714286%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

.flex-row {
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  -ms-flex: 1 1 auto !important;
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  -ms-flex-positive: 0 !important;
  flex-grow: 0 !important;
}

.flex-grow-1 {
  -ms-flex-positive: 1 !important;
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  -ms-flex-negative: 1 !important;
  flex-shrink: 1 !important;
}

.justify-content-start {
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

.align-items-start {
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}

.align-items-baseline {
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}

.align-items-stretch {
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
  align-self: auto !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important;
}

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

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

.float-none {
  float: none !important;
}

.user-select-all {
  -webkit-user-select: all !important;
  -moz-user-select: all !important;
  -ms-user-select: all !important;
  user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
  -moz-user-select: auto !important;
  -ms-user-select: auto !important;
  user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: -webkit-sticky !important;
  position: sticky !important;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
  .sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

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

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

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.vw-100 {
  width: 100vw !important;
}

.vh-100 {
  height: 100vh !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

.text-justify {
  text-align: justify !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-lighter {
  font-weight: lighter !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-weight-bolder {
  font-weight: bolder !important;
}

.font-italic {
  font-style: italic !important;
}

.text-white {
  color: #fff !important;
}

.text-primary {
  color: #007bff !important;
}

a.text-primary:hover,
a.text-primary:focus {
  color: #0056b3 !important;
}

.text-secondary {
  color: #6c757d !important;
}

a.text-secondary:hover,
a.text-secondary:focus {
  color: #494f54 !important;
}

.text-success {
  color: #28a745 !important;
}

a.text-success:hover,
a.text-success:focus {
  color: #19692c !important;
}

.text-info {
  color: #17a2b8 !important;
}

a.text-info:hover,
a.text-info:focus {
  color: #0f6674 !important;
}

.text-warning {
  color: #ffc107 !important;
}

a.text-warning:hover,
a.text-warning:focus {
  color: #ba8b00 !important;
}

.text-danger {
  color: #dc3545 !important;
}

a.text-danger:hover,
a.text-danger:focus {
  color: #a71d2a !important;
}

.text-light {
  color: #f8f9fa !important;
}

a.text-light:hover,
a.text-light:focus {
  color: #cbd3da !important;
}

.text-dark {
  color: #343a40 !important;
}

a.text-dark:hover,
a.text-dark:focus {
  color: #121416 !important;
}

.text-body {
  color: #212529 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

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

.text-decoration-none {
  text-decoration: none !important;
}

.text-break {
  word-break: break-word !important;
  word-wrap: break-word !important;
}

.text-reset {
  color: inherit !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin-bottom: 0.5rem;
  font-weight: 700;
  line-height: 1.2;
}

h1,
.h1 {
  font-size: 2rem;
}

h2,
.h2 {
  font-size: 1.8rem;
}

h3,
.h3 {
  font-size: 1.6rem;
}

h4,
.h4 {
  font-size: 1.4rem;
}

h5,
.h5 {
  font-size: 1.2rem;
}

h6,
.h6 {
  font-size: 1rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

small,
.small {
  font-size: 0.875em;
  font-weight: 400;
}

mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}

.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.blockquote-footer {
  display: block;
  font-size: 0.875em;
  color: #6c757d;
}

.blockquote-footer::before {
  content: "— ";
}

.form-control {
  display: block;
  width: 100%;
  height: calc(1.6em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}

.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0;
}

.form-control::-webkit-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:disabled,
.form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

input[type=date].form-control,
input[type=time].form-control,
input[type=datetime-local].form-control,
input[type=month].form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select.form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}

select.form-control:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.6;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
  line-height: 1.5;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
  line-height: 1.5;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}

.form-control-plaintext.form-control-sm,
.form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.form-control-lg {
  height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

select.form-control[size],
select.form-control[multiple] {
  height: auto;
}

textarea.form-control {
  height: auto;
}

.form-group {
  margin-bottom: 1rem;
}

.form-text {
  display: block;
  margin-top: 0.25rem;
}

.form-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}

.form-row > .col,
.form-row > [class*=col-] {
  padding-right: 5px;
  padding-left: 5px;
}

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}

.form-check-input[disabled] ~ .form-check-label,
.form-check-input:disabled ~ .form-check-label {
  color: #6c757d;
}

.form-check-label {
  margin-bottom: 0;
}

.form-check-inline {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}

.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #28a745;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #fff;
  background-color: rgba(40, 167, 69, 0.9);
}

.form-row > .col > .valid-tooltip,
.form-row > [class*=col-] > .valid-tooltip {
  left: 5px;
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid,
.form-control.is-valid {
  border-color: #28a745;
  padding-right: calc(1.6em + 0.75rem) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.4em + 0.1875rem) center;
  background-size: calc(0.8em + 0.375rem) calc(0.8em + 0.375rem);
}

.was-validated .form-control:valid:focus,
.form-control.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated select.form-control:valid,
select.form-control.is-valid {
  padding-right: 3rem !important;
  background-position: right 1.5rem center;
}

.was-validated textarea.form-control:valid,
textarea.form-control.is-valid {
  padding-right: calc(1.6em + 0.75rem);
  background-position: top calc(0.4em + 0.1875rem) right calc(0.4em + 0.1875rem);
}

.was-validated .custom-select:valid,
.custom-select.is-valid {
  border-color: #28a745;
  padding-right: calc(0.75em + 2.3125rem) !important;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat, #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") center right 1.75rem/calc(0.8em + 0.375rem) calc(0.8em + 0.375rem) no-repeat;
}

.was-validated .custom-select:valid:focus,
.custom-select.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated .form-check-input:valid ~ .form-check-label,
.form-check-input.is-valid ~ .form-check-label {
  color: #28a745;
}

.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip,
.form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-control-input:valid ~ .custom-control-label,
.custom-control-input.is-valid ~ .custom-control-label {
  color: #28a745;
}

.was-validated .custom-control-input:valid ~ .custom-control-label::before,
.custom-control-input.is-valid ~ .custom-control-label::before {
  border-color: #28a745;
}

.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before,
.custom-control-input.is-valid:checked ~ .custom-control-label::before {
  border-color: #34ce57;
  background-color: #34ce57;
}

.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before,
.custom-control-input.is-valid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before,
.custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #28a745;
}

.was-validated .custom-file-input:valid ~ .custom-file-label,
.custom-file-input.is-valid ~ .custom-file-label {
  border-color: #28a745;
}

.was-validated .custom-file-input:valid:focus ~ .custom-file-label,
.custom-file-input.is-valid:focus ~ .custom-file-label {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #dc3545;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.9);
}

.form-row > .col > .invalid-tooltip,
.form-row > [class*=col-] > .invalid-tooltip {
  left: 5px;
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid,
.form-control.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.6em + 0.75rem) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.4em + 0.1875rem) center;
  background-size: calc(0.8em + 0.375rem) calc(0.8em + 0.375rem);
}

.was-validated .form-control:invalid:focus,
.form-control.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated select.form-control:invalid,
select.form-control.is-invalid {
  padding-right: 3rem !important;
  background-position: right 1.5rem center;
}

.was-validated textarea.form-control:invalid,
textarea.form-control.is-invalid {
  padding-right: calc(1.6em + 0.75rem);
  background-position: top calc(0.4em + 0.1875rem) right calc(0.4em + 0.1875rem);
}

.was-validated .custom-select:invalid,
.custom-select.is-invalid {
  border-color: #dc3545;
  padding-right: calc(0.75em + 2.3125rem) !important;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat, #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") center right 1.75rem/calc(0.8em + 0.375rem) calc(0.8em + 0.375rem) no-repeat;
}

.was-validated .custom-select:invalid:focus,
.custom-select.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated .form-check-input:invalid ~ .form-check-label,
.form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545;
}

.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip,
.form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label,
.custom-control-input.is-invalid ~ .custom-control-label {
  color: #dc3545;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label::before,
.custom-control-input.is-invalid ~ .custom-control-label::before {
  border-color: #dc3545;
}

.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before,
.custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  border-color: #e4606d;
  background-color: #e4606d;
}

.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before,
.custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before,
.custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #dc3545;
}

.was-validated .custom-file-input:invalid ~ .custom-file-label,
.custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #dc3545;
}

.was-validated .custom-file-input:invalid:focus ~ .custom-file-label,
.custom-file-input.is-invalid:focus ~ .custom-file-label {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-inline {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-flex-align: center;
  align-items: center;
}

.form-inline .form-check {
  width: 100%;
}

.btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.6;
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}

.btn:hover {
  color: #212529;
  text-decoration: none;
}

.btn:focus,
.btn.focus {
  outline: 0;
  box-shadow: 0;
}

.btn.disabled,
.btn:disabled {
  opacity: 0.65;
}

.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none;
}

.btn-primary {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-primary:hover {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
}

.btn-primary:focus,
.btn-primary.focus {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
  box-shadow: 0 0 0 0 rgba(38, 143, 255, 0.5);
}

.btn-primary.disabled,
.btn-primary:disabled {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #0062cc;
  border-color: #005cbf;
}

.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(38, 143, 255, 0.5);
}

.btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-secondary:hover {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
}

.btn-secondary:focus,
.btn-secondary.focus {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
  box-shadow: 0 0 0 0 rgba(130, 138, 145, 0.5);
}

.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-secondary:not(:disabled):not(.disabled):active,
.btn-secondary:not(:disabled):not(.disabled).active,
.show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #545b62;
  border-color: #4e555b;
}

.btn-secondary:not(:disabled):not(.disabled):active:focus,
.btn-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(130, 138, 145, 0.5);
}

.btn-success {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-success:hover {
  color: #fff;
  background-color: #218838;
  border-color: #1e7e34;
}

.btn-success:focus,
.btn-success.focus {
  color: #fff;
  background-color: #218838;
  border-color: #1e7e34;
  box-shadow: 0 0 0 0 rgba(72, 180, 97, 0.5);
}

.btn-success.disabled,
.btn-success:disabled {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-success:not(:disabled):not(.disabled):active,
.btn-success:not(:disabled):not(.disabled).active,
.show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #1e7e34;
  border-color: #1c7430;
}

.btn-success:not(:disabled):not(.disabled):active:focus,
.btn-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(72, 180, 97, 0.5);
}

.btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-info:hover {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
}

.btn-info:focus,
.btn-info.focus {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
  box-shadow: 0 0 0 0 rgba(58, 176, 195, 0.5);
}

.btn-info.disabled,
.btn-info:disabled {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-info:not(:disabled):not(.disabled):active,
.btn-info:not(:disabled):not(.disabled).active,
.show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #117a8b;
  border-color: #10707f;
}

.btn-info:not(:disabled):not(.disabled):active:focus,
.btn-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(58, 176, 195, 0.5);
}

.btn-warning {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-warning:hover {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
}

.btn-warning:focus,
.btn-warning.focus {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
  box-shadow: 0 0 0 0 rgba(222, 170, 12, 0.5);
}

.btn-warning.disabled,
.btn-warning:disabled {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-warning:not(:disabled):not(.disabled):active,
.btn-warning:not(:disabled):not(.disabled).active,
.show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: #d39e00;
  border-color: #c69500;
}

.btn-warning:not(:disabled):not(.disabled):active:focus,
.btn-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(222, 170, 12, 0.5);
}

.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-danger:hover {
  color: #fff;
  background-color: #c82333;
  border-color: #bd2130;
}

.btn-danger:focus,
.btn-danger.focus {
  color: #fff;
  background-color: #c82333;
  border-color: #bd2130;
  box-shadow: 0 0 0 0 rgba(225, 83, 97, 0.5);
}

.btn-danger.disabled,
.btn-danger:disabled {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-danger:not(:disabled):not(.disabled):active,
.btn-danger:not(:disabled):not(.disabled).active,
.show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #bd2130;
  border-color: #b21f2d;
}

.btn-danger:not(:disabled):not(.disabled):active:focus,
.btn-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(225, 83, 97, 0.5);
}

.btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-light:hover {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
}

.btn-light:focus,
.btn-light.focus {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
  box-shadow: 0 0 0 0 rgba(216, 217, 219, 0.5);
}

.btn-light.disabled,
.btn-light:disabled {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-light:not(:disabled):not(.disabled):active,
.btn-light:not(:disabled):not(.disabled).active,
.show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: #dae0e5;
  border-color: #d3d9df;
}

.btn-light:not(:disabled):not(.disabled):active:focus,
.btn-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(216, 217, 219, 0.5);
}

.btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-dark:hover {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
}

.btn-dark:focus,
.btn-dark.focus {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
  box-shadow: 0 0 0 0 rgba(82, 88, 93, 0.5);
}

.btn-dark.disabled,
.btn-dark:disabled {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-dark:not(:disabled):not(.disabled):active,
.btn-dark:not(:disabled):not(.disabled).active,
.show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1d2124;
  border-color: #171a1d;
}

.btn-dark:not(:disabled):not(.disabled):active:focus,
.btn-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(82, 88, 93, 0.5);
}

.btn-outline-primary {
  color: #007bff;
  border-color: #007bff;
}

.btn-outline-primary:hover {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-outline-primary:focus,
.btn-outline-primary.focus {
  box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.5);
}

.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
  color: #007bff;
  background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled):active,
.btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.5);
}

.btn-outline-secondary {
  color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:focus,
.btn-outline-secondary.focus {
  box-shadow: 0 0 0 0 rgba(108, 117, 125, 0.5);
}

.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
  color: #6c757d;
  background-color: transparent;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active,
.btn-outline-secondary:not(:disabled):not(.disabled).active,
.show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(108, 117, 125, 0.5);
}

.btn-outline-success {
  color: #28a745;
  border-color: #28a745;
}

.btn-outline-success:hover {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-outline-success:focus,
.btn-outline-success.focus {
  box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.5);
}

.btn-outline-success.disabled,
.btn-outline-success:disabled {
  color: #28a745;
  background-color: transparent;
}

.btn-outline-success:not(:disabled):not(.disabled):active,
.btn-outline-success:not(:disabled):not(.disabled).active,
.show > .btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-outline-success:not(:disabled):not(.disabled):active:focus,
.btn-outline-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.5);
}

.btn-outline-info {
  color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:hover {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:focus,
.btn-outline-info.focus {
  box-shadow: 0 0 0 0 rgba(23, 162, 184, 0.5);
}

.btn-outline-info.disabled,
.btn-outline-info:disabled {
  color: #17a2b8;
  background-color: transparent;
}

.btn-outline-info:not(:disabled):not(.disabled):active,
.btn-outline-info:not(:disabled):not(.disabled).active,
.show > .btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:not(:disabled):not(.disabled):active:focus,
.btn-outline-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(23, 162, 184, 0.5);
}

.btn-outline-warning {
  color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:hover {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:focus,
.btn-outline-warning.focus {
  box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.5);
}

.btn-outline-warning.disabled,
.btn-outline-warning:disabled {
  color: #ffc107;
  background-color: transparent;
}

.btn-outline-warning:not(:disabled):not(.disabled):active,
.btn-outline-warning:not(:disabled):not(.disabled).active,
.show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:not(:disabled):not(.disabled):active:focus,
.btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.5);
}

.btn-outline-danger {
  color: #dc3545;
  border-color: #dc3545;
}

.btn-outline-danger:hover {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-outline-danger:focus,
.btn-outline-danger.focus {
  box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.5);
}

.btn-outline-danger.disabled,
.btn-outline-danger:disabled {
  color: #dc3545;
  background-color: transparent;
}

.btn-outline-danger:not(:disabled):not(.disabled):active,
.btn-outline-danger:not(:disabled):not(.disabled).active,
.show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-outline-danger:not(:disabled):not(.disabled):active:focus,
.btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.5);
}

.btn-outline-light {
  color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:hover {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:focus,
.btn-outline-light.focus {
  box-shadow: 0 0 0 0 rgba(248, 249, 250, 0.5);
}

.btn-outline-light.disabled,
.btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: transparent;
}

.btn-outline-light:not(:disabled):not(.disabled):active,
.btn-outline-light:not(:disabled):not(.disabled).active,
.show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:not(:disabled):not(.disabled):active:focus,
.btn-outline-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(248, 249, 250, 0.5);
}

.btn-outline-dark {
  color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:hover {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:focus,
.btn-outline-dark.focus {
  box-shadow: 0 0 0 0 rgba(52, 58, 64, 0.5);
}

.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
  color: #343a40;
  background-color: transparent;
}

.btn-outline-dark:not(:disabled):not(.disabled):active,
.btn-outline-dark:not(:disabled):not(.disabled).active,
.show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:not(:disabled):not(.disabled):active:focus,
.btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(52, 58, 64, 0.5);
}

.btn-link {
  font-weight: 400;
  color: #007bff;
  text-decoration: none;
}

.btn-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

.btn-link:focus,
.btn-link.focus {
  text-decoration: underline;
}

.btn-link:disabled,
.btn-link.disabled {
  color: #6c757d;
  pointer-events: none;
}

.btn-lg {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0;
}

.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-block + .btn-block {
  margin-top: 0.5rem;
}

input[type=submit].btn-block,
input[type=reset].btn-block,
input[type=button].btn-block {
  width: 100%;
}

.breadcrumb {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #e9ecef;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  color: #6c757d;
  content: "/";
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #6c757d;
}

.media {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
}

.media-body {
  -ms-flex: 1;
  flex: 1;
}

.list-group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
}

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}

.list-group-item-action:hover,
.list-group-item-action:focus {
  z-index: 1;
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}

.list-group-item-action:active {
  color: #212529;
  background-color: #e9ecef;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}

.list-group-item.disabled,
.list-group-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
}

.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.list-group-item + .list-group-item {
  border-top-width: 0;
}

.list-group-item + .list-group-item.active {
  margin-top: -1px;
  border-top-width: 1px;
}

.list-group-horizontal {
  -ms-flex-direction: row;
  flex-direction: row;
}

.list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}

.list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: 1px;
  border-left-width: 0;
}

.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: -1px;
  border-left-width: 1px;
}

.list-group-flush > .list-group-item {
  border-width: 0 0 1px;
}

.list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}

.list-group-item-primary {
  color: #004085;
  background-color: #b8daff;
}

.list-group-item-primary.list-group-item-action:hover,
.list-group-item-primary.list-group-item-action:focus {
  color: #004085;
  background-color: #9fcdff;
}

.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #004085;
  border-color: #004085;
}

.list-group-item-secondary {
  color: #383d41;
  background-color: #d6d8db;
}

.list-group-item-secondary.list-group-item-action:hover,
.list-group-item-secondary.list-group-item-action:focus {
  color: #383d41;
  background-color: #c8cbcf;
}

.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #383d41;
  border-color: #383d41;
}

.list-group-item-success {
  color: #155724;
  background-color: #c3e6cb;
}

.list-group-item-success.list-group-item-action:hover,
.list-group-item-success.list-group-item-action:focus {
  color: #155724;
  background-color: #b1dfbb;
}

.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #155724;
  border-color: #155724;
}

.list-group-item-info {
  color: #0c5460;
  background-color: #bee5eb;
}

.list-group-item-info.list-group-item-action:hover,
.list-group-item-info.list-group-item-action:focus {
  color: #0c5460;
  background-color: #abdde5;
}

.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #0c5460;
  border-color: #0c5460;
}

.list-group-item-warning {
  color: #856404;
  background-color: #ffeeba;
}

.list-group-item-warning.list-group-item-action:hover,
.list-group-item-warning.list-group-item-action:focus {
  color: #856404;
  background-color: #ffe8a1;
}

.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #856404;
  border-color: #856404;
}

.list-group-item-danger {
  color: #721c24;
  background-color: #f5c6cb;
}

.list-group-item-danger.list-group-item-action:hover,
.list-group-item-danger.list-group-item-action:focus {
  color: #721c24;
  background-color: #f1b0b7;
}

.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #721c24;
  border-color: #721c24;
}

.list-group-item-light {
  color: #818182;
  background-color: #fdfdfe;
}

.list-group-item-light.list-group-item-action:hover,
.list-group-item-light.list-group-item-action:focus {
  color: #818182;
  background-color: #ececf6;
}

.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #818182;
  border-color: #818182;
}

.list-group-item-dark {
  color: #1b1e21;
  background-color: #c6c8ca;
}

.list-group-item-dark.list-group-item-action:hover,
.list-group-item-dark.list-group-item-action:focus {
  color: #1b1e21;
  background-color: #b9bbbe;
}

.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #1b1e21;
  border-color: #1b1e21;
}

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
}

.close:hover {
  color: #000;
  text-decoration: none;
}

.close:not(:disabled):not(.disabled):hover,
.close:not(:disabled):not(.disabled):focus {
  opacity: 0.75;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
}

a.close.disabled {
  pointer-events: none;
}

@media print {
  *,
  *::before,
  *::after {
    text-shadow: none !important;
    box-shadow: none !important;
  }

  a:not(.btn) {
    text-decoration: underline;
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #adb5bd;
    page-break-inside: avoid;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }

@page {
    size: a3;
}

  body {
    min-width: 992px !important;
  }

  .container {
    min-width: 992px !important;
  }

  .navbar {
    display: none;
  }

  .badge {
    border: 1px solid #000;
  }

  .table {
    border-collapse: collapse !important;
  }

  .table td,
  .table th {
    background-color: #fff !important;
  }

  .table-bordered th,
  .table-bordered td {
    border: 1px solid #dee2e6 !important;
  }

  .table-dark {
    color: inherit;
  }

  .table-dark th,
  .table-dark td,
  .table-dark thead th,
  .table-dark tbody + tbody {
    border-color: #dee2e6;
  }

  .table .thead-dark th {
    color: inherit;
    border-color: #dee2e6;
  }
}

@media (max-width: 767.98px) {
  .admin-bar #wpadminbar {
    position: fixed;
  }
}

html {
  color: #636b6f;
  font-size: 14px;
  height: 100%;
  overflow-x: hidden;
}

body {
  min-height: 100%;
  position: relative;
}

/**
Disable W3C & Bootstrap standard styles for the abbr tag
 */

abbr[title].required {
  border-bottom: none;
  text-decoration: none;
}

.monofont {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}

#site-header.has-fixed-top-navbar {
  padding-top: 85px;
}

@media screen and (max-width: 1177.98px) and (max-width: 782px) {
  body.admin-bar #site-header nav.navbar.fixed-top {
    top: 46px !important;
  }
}

#site-footer {
  background: #f4f5f7;
}

#site-footer #wc-footer-main {
  padding: 65px 15px 80px;
}

#site-footer .wc-footer-image {
  margin-bottom: 20px;
}

#site-footer .footer-menu {
  margin-bottom: 20px;
}

#site-footer .footer-menu-title {
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
}

#site-footer .footer-menu a {
  display: block;
  color: #212529;
  line-height: 1.7;
}

#site-footer .footer-menu a:hover {
  text-decoration: none;
  color: #e1e4e7;
}

#site-footer .location {
  margin-bottom: 10px;
}

#site-footer .location .footer-location-title {
  font-weight: 600;
  margin-bottom: 15px;
  display: block;
}

#site-footer .location .location-line-1,
#site-footer .location .location-line-2,
#site-footer .location a {
  display: block;
}

#site-footer .location a {
  color: #212529;
}

#site-footer .location a:hover {
  text-decoration: none;
  color: #e1e4e7;
}

#site-footer .opening-hours {
  margin-bottom: 20px;
}

#site-footer .opening-hours-title {
  font-weight: 600;
  margin-bottom: 10px;
}

#site-footer .opening-hours span {
  display: block;
}

#site-footer .wc-footer-social {
  margin-bottom: 20px;
}

#site-footer .wc-footer-social span {
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

#site-footer .wc-footer-social a {
  margin: 0 15px 0 0;
  font-size: 1.4rem;
  color: #212529;
}

#site-footer .wc-footer-social a:hover {
  text-decoration: none;
  color: #e1e4e7;
}

#wc-bottom-bar {
  padding: 20px 0;
  background: #fff;
}

@media (max-width: 575.98px) {
  #wc-bottom-bar .wc-footer-copyright {
    display: block;
    margin-bottom: 1rem;
    text-align: center;
  }
}

#wc-bottom-bar .bottom-bar-menu {
  width: 100%;
  text-align: center;
}

#wc-bottom-bar .bottom-bar-menu a {
  color: #212529;
  margin: 10px;
  font-size: 1rem;
}

#wc-bottom-bar .bottom-bar-menu a:hover {
  color: #e1e4e7;
  text-decoration: none;
}

html {
  overflow-x: initial;
  width: auto;
}

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

body {
  background-color: #F6FBF9;
}

body * {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 300;
  font-size: 18px;
}

body h1,
body h2,
body h3,
body h4,
body h5 {
  font-family: "Poppins", sans-serif;
}

body h1 span,
body h2 span,
body h3 span,
body h4 span,
body h5 span {
  font-family: "Poppins", sans-serif;
}

body h1 strong,
body h2 strong,
body h3 strong,
body h4 strong,
body h5 strong {
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
}

body h1,
body h2,
body h3,
body h4,
body h5 {
  color: #5F7577;
}

body h1 {
  font-size: 60px;
  font-weight: 700;
  line-height: 0.97;
}

@media (max-width: 450px) {
  body h1 {
    font-size: 45px;
  }
}

body h2 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.13;
}

@media (max-width: 450px) {
  body h2 {
    font-size: 34px;
  }
}

body h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 0.875;
}

@media (max-width: 450px) {
  body h3 {
    font-size: 25px;
  }
}

body h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.17;
}

@media (max-width: 450px) {
  body h4 {
    font-size: 18px;
  }
}

body h5 {
  font-family: "Maven Pro", sans-serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
}

@media (max-width: 450px) {
  body h5 {
    font-size: 18px;
  }
}

body input,
body textarea,
body p,
body li,
body a,
body span {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: #000;
  line-height: 1.55;
}

body a {
  color: #50A684;
}

body a:hover {
  color: #50A684;
  text-decoration: underline;
}

body p strong {
  font-weight: 700;
  font-size: inherit;
  color: #1E5926;
}

body p a {
  font-size: inherit;
  line-height: inherit;
  color: #50A684;
  font-weight: bold;
  transition: all 0.2s ease;
}

body p a:hover {
  color: #50A684;
  text-decoration: underline;
}

body i,
body em {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  color: inherit;
}

body ul {
  padding-left: 20px;
}

body ul li::marker {
  color: #3F8469;
}

body ul li strong {
  color: #3F8469;
}

body ul li a {
  font-weight: bold;
  font-size: inherit;
  line-height: inherit;
  color: #50A684;
}

body ul li a:hover {
  color: #50A684;
  text-decoration: underline;
}

@media (max-width: 767px) {
  body h1,
  body h2,
  body h3,
  body h4,
  body h5,
  body p,
  body a,
  body span {
    word-break: break-word;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
  }
}

body .list-ticks ul {
  padding-left: 28px;
}

body .list-ticks ul li {
  position: relative;
  list-style: none;
}

body .list-ticks ul li strong {
  color: #3F8469;
}

body .list-ticks ul li:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -28px;
  width: 14px;
  height: 20px;
  background-size: 14px 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/checkmark-tick.svg);
}

body strong {
  font-weight: 700;
}

.svg-arrow-bottom-grey {
  background: url("sprites.svg") no-repeat;
  background-position: 0 0;
}

.svg-arrow-bottom-grey-dims {
  width: 13px;
  height: 15px;
}

.svg-arrow-lang-switcher {
  background: url("sprites.svg") no-repeat;
  background-position: 0.3744239631% 0.5677517033%;
}

.svg-arrow-lang-switcher-dims {
  width: 8px;
  height: 10px;
}

.svg-arrow-left-white {
  background: url("sprites.svg") no-repeat;
  background-position: 0.6065857886% 0.9473285335%;
}

.svg-arrow-left-white-dims {
  width: 18px;
  height: 13px;
}

.svg-arrow-right-blue {
  background: url("sprites.svg") no-repeat;
  background-position: 1.1255411255% 1.439939371%;
}

.svg-arrow-right-blue-dims {
  width: 15px;
  height: 13px;
}

.svg-arrow-right-dark-blue {
  background: url("sprites.svg") no-repeat;
  background-position: 1.5584415584% 1.9325502084%;
}

.svg-arrow-right-dark-blue-dims {
  width: 15px;
  height: 13px;
}

.svg-arrow-right-green {
  background: url("sprites.svg") no-repeat;
  background-position: 1.9913419913% 2.4251610459%;
}

.svg-arrow-right-green-dims {
  width: 15px;
  height: 13px;
}

.svg-arrow-right-grey {
  background: url("sprites.svg") no-repeat;
  background-position: 2.4249422633% 2.9188779378%;
}

.svg-arrow-right-grey-dims {
  width: 16px;
  height: 14px;
}

.svg-arrow-top-grey {
  background: url("sprites.svg") no-repeat;
  background-position: 2.8843380444% 3.4508911642%;
}

.svg-arrow-top-grey-dims {
  width: 13px;
  height: 15px;
}

.svg-checkmark-blue {
  background: url("sprites.svg") no-repeat;
  background-position: 3.2602423543% 4.0212443096%;
}

.svg-checkmark-blue-dims {
  width: 14px;
  height: 16px;
}

.svg-checkmark-green {
  background: url("sprites.svg") no-repeat;
  background-position: 3.6641661858% 4.6282245827%;
}

.svg-checkmark-green-dims {
  width: 14px;
  height: 16px;
}

.svg-checkmark-tick {
  background: url("sprites.svg") no-repeat;
  background-position: 4.0680900173% 5.2233156699%;
}

.svg-checkmark-tick-dims {
  width: 14px;
  height: 10px;
}

.svg-checkmark-tick-green {
  background: url("sprites.svg") no-repeat;
  background-position: 4.4720138488% 5.6018168055%;
}

.svg-checkmark-tick-green-dims {
  width: 14px;
  height: 10px;
}

.svg-chevron-down-white {
  background: url("sprites.svg") no-repeat;
  background-position: 4.8731257209% 5.9757942511%;
}

.svg-chevron-down-white-dims {
  width: 12px;
  height: 8px;
}

.svg-facebook-black {
  background: url("sprites.svg") no-repeat;
  background-position: 5.2236652237% 6.3262195122%;
}

.svg-facebook-black-dims {
  width: 15px;
  height: 28px;
}

.svg-facebook-white {
  background: url("sprites.svg") no-repeat;
  background-position: 5.6565656566% 7.3932926829%;
}

.svg-facebook-white-dims {
  width: 15px;
  height: 28px;
}

.svg-form-icon-dutchtrig {
  background: url("sprites.svg") no-repeat;
  background-position: 8.1782945736% 10.8504398827%;
}

.svg-form-icon-dutchtrig-dims {
  width: 900px;
  height: 606px;
}

.svg-form-icon-union {
  background: url("sprites.svg") no-repeat;
  background-position: 48.5789243551% 41.7338709677%;
}

.svg-form-icon-union-dims {
  width: 1193px;
  height: 668px;
}

.svg-icon-arrow-left {
  background: url("sprites.svg") no-repeat;
  background-position: 66.6859623734% 56.6666666667%;
}

.svg-icon-arrow-left-dims {
  width: 25px;
  height: 12px;
}

.svg-icon-calendar {
  background: url("sprites.svg") no-repeat;
  background-position: 67.215007215% 57.229601518%;
}

.svg-icon-calendar-dims {
  width: 15px;
  height: 17px;
}

.svg-icon-check-blue {
  background: url("sprites.svg") no-repeat;
  background-position: 67.5504322767% 57.6777609682%;
}

.svg-icon-check-blue-dims {
  width: 10px;
  height: 8px;
}

.svg-icon-check-green {
  background: url("sprites.svg") no-repeat;
  background-position: 67.8386167147% 57.980332829%;
}

.svg-icon-check-green-dims {
  width: 10px;
  height: 8px;
}

.svg-icon-close-grey {
  background: url("sprites.svg") no-repeat;
  background-position: 68.20542412% 58.4154662623%;
}

.svg-icon-close-grey-dims {
  width: 14px;
  height: 14px;
}

.svg-icon-close-red {
  background: url("sprites.svg") no-repeat;
  background-position: 68.6093479515% 58.9461713419%;
}

.svg-icon-close-red-dims {
  width: 14px;
  height: 14px;
}

.svg-icon-email-blue {
  background: url("sprites.svg") no-repeat;
  background-position: 69.0531177829% 59.5220030349%;
}

.svg-icon-email-blue-dims {
  width: 16px;
  height: 16px;
}

.svg-icon-email-dark-blue {
  background: url("sprites.svg") no-repeat;
  background-position: 69.5150115473% 60.128983308%;
}

.svg-icon-email-dark-blue-dims {
  width: 16px;
  height: 16px;
}

.svg-icon-email-white {
  background: url("sprites.svg") no-repeat;
  background-position: 69.9769053118% 60.7359635812%;
}

.svg-icon-email-white-dims {
  width: 16px;
  height: 16px;
}

.svg-icon-linkedin-blue {
  background: url("sprites.svg") no-repeat;
  background-position: 70.3981534911% 61.3429438543%;
}

.svg-icon-linkedin-blue-dims {
  width: 14px;
  height: 16px;
}

.svg-icon-linkedin-dark-blue {
  background: url("sprites.svg") no-repeat;
  background-position: 70.8020773226% 61.9499241275%;
}

.svg-icon-linkedin-dark-blue-dims {
  width: 14px;
  height: 16px;
}

.svg-icon-linkedin-green {
  background: url("sprites.svg") no-repeat;
  background-position: 71.2060011541% 62.5569044006%;
}

.svg-icon-linkedin-green-dims {
  width: 14px;
  height: 16px;
}

.svg-icon-mail-blue {
  background: url("sprites.svg") no-repeat;
  background-position: 71.6512702079% 63.1638846737%;
}

.svg-icon-mail-blue-dims {
  width: 16px;
  height: 16px;
}

.svg-icon-mail-dark-blue {
  background: url("sprites.svg") no-repeat;
  background-position: 72.1131639723% 63.7708649469%;
}

.svg-icon-mail-dark-blue-dims {
  width: 16px;
  height: 16px;
}

.svg-icon-mail-green {
  background: url("sprites.svg") no-repeat;
  background-position: 72.5750577367% 64.37784522%;
}

.svg-icon-mail-green-dims {
  width: 16px;
  height: 16px;
}

.svg-icon-map-pin-blue {
  background: url("sprites.svg") no-repeat;
  background-position: 72.952710496% 64.9848254932%;
}

.svg-icon-map-pin-blue-dims {
  width: 12px;
  height: 16px;
}

.svg-icon-map-pin-dark-blue {
  background: url("sprites.svg") no-repeat;
  background-position: 73.2987312572% 65.5918057663%;
}

.svg-icon-map-pin-dark-blue-dims {
  width: 12px;
  height: 16px;
}

.svg-icon-phone-blue {
  background: url("sprites.svg") no-repeat;
  background-position: 73.7297921478% 66.1987860395%;
}

.svg-icon-phone-blue-dims {
  width: 16px;
  height: 16px;
}

.svg-icon-phone-dark-blue {
  background: url("sprites.svg") no-repeat;
  background-position: 74.1916859122% 66.8057663126%;
}

.svg-icon-phone-dark-blue-dims {
  width: 16px;
  height: 16px;
}

.svg-icon-phone-green {
  background: url("sprites.svg") no-repeat;
  background-position: 74.6535796767% 67.4127465857%;
}

.svg-icon-phone-green-dims {
  width: 16px;
  height: 16px;
}

.svg-icon-phone-white {
  background: url("sprites.svg") no-repeat;
  background-position: 75.1154734411% 68.0197268589%;
}

.svg-icon-phone-white-dims {
  width: 16px;
  height: 16px;
}

.svg-icon-post-blue {
  background: url("sprites.svg") no-repeat;
  background-position: 75.5773672055% 68.626707132%;
}

.svg-icon-post-blue-dims {
  width: 16px;
  height: 16px;
}

.svg-instagram-black {
  background: url("sprites.svg") no-repeat;
  background-position: 76.2373371925% 69.550304878%;
}

.svg-instagram-black-dims {
  width: 25px;
  height: 28px;
}

.svg-instagram-white {
  background: url("sprites.svg") no-repeat;
  background-position: 76.9609261939% 70.6173780488%;
}

.svg-instagram-white-dims {
  width: 25px;
  height: 28px;
}

.svg-language-switcher-triange {
  background: url("sprites.svg") no-repeat;
  background-position: 77.5498410864% 71.1691259932%;
}

.svg-language-switcher-triange-dims {
  width: 19px;
  height: 9px;
}

.svg-linkedin-black {
  background: url("sprites.svg") no-repeat;
  background-position: 78.2118055556% 71.9725818736%;
}

.svg-linkedin-black-dims {
  width: 24px;
  height: 26px;
}

.svg-linkedin-white {
  background: url("sprites.svg") no-repeat;
  background-position: 78.90625% 72.9626808835%;
}

.svg-linkedin-white-dims {
  width: 24px;
  height: 26px;
}

.svg-map-pin {
  background: url("sprites.svg") no-repeat;
  background-position: 79.4168591224% 73.7841945289%;
}

.svg-map-pin-dims {
  width: 16px;
  height: 20px;
}

.svg-menu-triangle-white {
  background: url("sprites.svg") no-repeat;
  background-position: 79.8556998557% 74.4027303754%;
}

.svg-menu-triangle-white-dims {
  width: 15px;
  height: 15px;
}

.svg-phone-icon-blue {
  background: url("sprites.svg") no-repeat;
  background-position: 80.2886002886% 74.9715585893%;
}

.svg-phone-icon-blue-dims {
  width: 15px;
  height: 15px;
}

.svg-phone-icon-green {
  background: url("sprites.svg") no-repeat;
  background-position: 80.7215007215% 75.5403868032%;
}

.svg-phone-icon-green-dims {
  width: 15px;
  height: 15px;
}

.svg-play-button {
  background: url("sprites.svg") no-repeat;
  background-position: 81.9347319347% 77.0737327189%;
}

.svg-play-button-dims {
  width: 48px;
  height: 48px;
}

.svg-play-button-dark-blue {
  background: url("sprites.svg") no-repeat;
  background-position: 83.3333333333% 78.9170506912%;
}

.svg-play-button-dark-blue-dims {
  width: 48px;
  height: 48px;
}

.svg-popup-bottom {
  background: url("sprites.svg") no-repeat;
  background-position: 87.3011107775% 84.2210652783%;
}

.svg-popup-bottom-dims {
  width: 149px;
  height: 155px;
}

.svg-popup-close {
  background: url("sprites.svg") no-repeat;
  background-position: 88.1487889273% 85.660091047%;
}

.svg-popup-close-dims {
  width: 12px;
  height: 16px;
}

.svg-popup-top {
  background: url("sprites.svg") no-repeat;
  background-position: 92.887409201% 91.5458937198%;
}

.svg-popup-top-dims {
  width: 176px;
  height: 168px;
}

.svg-search-icon {
  background: url("sprites.svg") no-repeat;
  background-position: 93.7861271676% 92.8164196123%;
}

.svg-search-icon-dims {
  width: 20px;
  height: 21px;
}

.svg-search-icon-blue {
  background: url("sprites.svg") no-repeat;
  background-position: 94.2824140918% 93.4724857685%;
}

.svg-search-icon-blue-dims {
  width: 17px;
  height: 17px;
}

.svg-search-icon-green {
  background: url("sprites.svg") no-repeat;
  background-position: 94.7733179324% 94.1176470588%;
}

.svg-search-icon-green-dims {
  width: 17px;
  height: 17px;
}

.svg-select-arrow-down {
  background: url("sprites.svg") no-repeat;
  background-position: 95.1543120854% 94.6909366705%;
}

.svg-select-arrow-down-dims {
  width: 13px;
  height: 15px;
}

.svg-slider-arrow-left {
  background: url("sprites.svg") no-repeat;
  background-position: 95.6672443674% 95.1875710496%;
}

.svg-slider-arrow-left-dims {
  width: 18px;
  height: 13px;
}

.svg-slider-arrow-right {
  background: url("sprites.svg") no-repeat;
  background-position: 96.1871750433% 95.7164518575%;
}

.svg-slider-arrow-right-dims {
  width: 18px;
  height: 14px;
}

.svg-tiktok-black {
  background: url("sprites.svg") no-repeat;
  background-position: 96.9339008078% 96.8344774981%;
}

.svg-tiktok-black-dims {
  width: 26.1px;
  height: 30px;
}

.svg-tiktok-white {
  background: url("sprites.svg") no-repeat;
  background-position: 97.7156258143% 97.9786422578%;
}

.svg-tiktok-white-dims {
  width: 26.1px;
  height: 30px;
}

.svg-upload-icon {
  background: url("sprites.svg") no-repeat;
  background-position: 98.266897747% 98.4842743463%;
}

.svg-upload-icon-dims {
  width: 18px;
  height: 13px;
}

.svg-youtube-black {
  background: url("sprites.svg") no-repeat;
  background-position: 99.1304347826% 99.2401215805%;
}

.svg-youtube-black-dims {
  width: 30px;
  height: 20px;
}

.svg-youtube-white {
  background: url("sprites.svg") no-repeat;
  background-position: 100% 100%;
}

.svg-youtube-white-dims {
  width: 30px;
  height: 20px;
}

.button-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.button-wrapper .btn {
  padding: 7px 20px;
  border-radius: 2px;
  transition: all 0.5s ease-in-out;
}

.button-wrapper .btn span {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.9;
  font-family: "Open Sans", sans-serif;
  transition: all 0.5s ease-in-out;
}

.button-wrapper .btn.default {
  background-color: #11A4DD;
  border: 2px solid #11A4DD;
}

.button-wrapper .btn.default:hover {
  background-color: #0A99D1;
  border: 2px solid #0A99D1;
}

.button-wrapper .btn.default:hover span {
  color: #fff;
}

.button-wrapper .btn.ghost {
  border: 2px solid #11A4DD;
  background-color: transparent;
}

.button-wrapper .btn.ghost span {
  color: #11A4DD;
}

.button-wrapper .btn.ghost:hover {
  background-color: #11A4DD;
}

.button-wrapper .btn.ghost:hover span {
  color: #fff;
}

a.btn.short-code {
  padding: 7px 20px;
  border-radius: 2px;
  transition: all 0.5s ease-in-out;
  background-color: #11A4DD;
  border: 2px solid #11A4DD;
}

a.btn.short-code span {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.9;
  font-family: "Open Sans", sans-serif;
  transition: all 0.5s ease-in-out;
}

a.btn.short-code:hover {
  background-color: #0A99D1;
  border: 2px solid #0A99D1;
}

a.btn.short-code:hover span {
  color: #fff;
}

.wp-block-button a.wp-block-button__link {
  padding: 7px 20px;
  border-radius: 2px;
  transition: all 0.5s ease-in-out;
  background-color: #11A4DD;
  border: 2px solid #11A4DD;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.9;
  font-family: "Open Sans", sans-serif;
  text-decoration: none;
}

.wp-block-button a.wp-block-button__link:hover {
  background-color: #0A99D1;
  border: 2px solid #0A99D1;
}

.right-part-holder .mega-menu-wrap {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  border-radius: 3px 3px 0px 0px;
  background: #fff;
  box-shadow: 0px 4px 8px 0px rgba(79, 101, 122, 0.1);
  top: 100px;
  width: 1130px;
  left: 0;
  transition: all 0.5s ease-in-out;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (max-width: 1475px) {
  .right-part-holder .mega-menu-wrap {
    left: -24%;
  }
}

.right-part-holder .mega-menu-wrap.opened {
  opacity: 1;
  visibility: visible;
}

.right-part-holder .mega-menu-wrap .mega-menu-container.highlighted {
  display: -ms-flexbox;
  display: flex;
}

.right-part-holder .mega-menu-wrap .mega-menu-container .mega-menu-links {
  padding: 35px 35px 50px 40px;
}

.right-part-holder .mega-menu-wrap .mega-menu-container .mega-menu-links.highlighted {
  width: 50%;
}

.right-part-holder .mega-menu-wrap .mega-menu-container .mega-menu-links .mega-menu-title {
  color: #000;
  font-family: "Source Sans 3", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.94;
  margin: 0 0 30px 0;
}

.right-part-holder .mega-menu-wrap .mega-menu-container .mega-menu-links .mega-menu-title-link {
  transition: all 0.5s ease-in-out;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
}

.right-part-holder .mega-menu-wrap .mega-menu-container .mega-menu-links .mega-menu-title-link h3 {
  margin: 0;
  transition: all 0.5s ease-in-out;
}

.right-part-holder .mega-menu-wrap .mega-menu-container .mega-menu-links .mega-menu-title-link:before {
  content: "";
  display: block;
  width: 15px;
  height: 13px;
  background-size: 15px 13px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/arrow-right-blue.svg);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
  margin-left: -10px;
}

.right-part-holder .mega-menu-wrap .mega-menu-container .mega-menu-links .mega-menu-title-link:hover {
  text-decoration: none;
}

.right-part-holder .mega-menu-wrap .mega-menu-container .mega-menu-links .mega-menu-title-link:hover h3 {
  margin-left: 10px;
}

.right-part-holder .mega-menu-wrap .mega-menu-container .mega-menu-links .mega-menu-title-link:hover:before {
  opacity: 1;
  visibility: visible;
  margin-left: 0px;
}

.right-part-holder .mega-menu-wrap .mega-menu-container .mega-menu-links .child-wrapper {
  display: grid;
  grid-row-gap: 10px;
  grid-column-gap: 30px;
}

.right-part-holder .mega-menu-wrap .mega-menu-container .mega-menu-links .child-wrapper.columns-1 {
  grid-template-columns: repeat(1, 1fr);
}

.right-part-holder .mega-menu-wrap .mega-menu-container .mega-menu-links .child-wrapper.columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.right-part-holder .mega-menu-wrap .mega-menu-container .mega-menu-links .child-wrapper.columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.right-part-holder .mega-menu-wrap .mega-menu-container .mega-menu-links .child-wrapper.columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.right-part-holder .mega-menu-wrap .mega-menu-container .mega-menu-links .child-wrapper .child-menu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  transition: all 0.5s ease-in-out;
}

.right-part-holder .mega-menu-wrap .mega-menu-container .mega-menu-links .child-wrapper .child-menu a,
.right-part-holder .mega-menu-wrap .mega-menu-container .mega-menu-links .child-wrapper .child-menu p {
  transition: all 0.5s ease-in-out;
}

.right-part-holder .mega-menu-wrap .mega-menu-container .mega-menu-links .child-wrapper .child-menu:before {
  content: "";
  display: block;
  width: 15px;
  height: 13px;
  background-size: 15px 13px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/arrow-right-blue.svg);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
  margin-left: -10px;
}

.right-part-holder .mega-menu-wrap .mega-menu-container .mega-menu-links .child-wrapper .child-menu:hover a,
.right-part-holder .mega-menu-wrap .mega-menu-container .mega-menu-links .child-wrapper .child-menu:hover p {
  margin-left: 5px;
}

.right-part-holder .mega-menu-wrap .mega-menu-container .mega-menu-links .child-wrapper .child-menu:hover:before {
  opacity: 1;
  visibility: visible;
  margin-left: 0px;
}

.right-part-holder .mega-menu-wrap .mega-menu-container .mega-menu-highlighted {
  padding: 35px 35px 50px 35px;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  background-color: #50A684;
}

.right-part-holder .mega-menu-wrap .mega-menu-container .mega-menu-highlighted.highlighted {
  width: 50%;
}

.right-part-holder .mega-menu-wrap .mega-menu-container .mega-menu-highlighted .mega-menu-highlighted-content {
  width: calc(100% - 245px);
}

.right-part-holder .mega-menu-wrap .mega-menu-container .mega-menu-highlighted .mega-menu-highlighted-content h3 {
  color: #fff;
  font-family: "Source Sans 3", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.94;
  margin: 0 0 30px 0;
}

.right-part-holder .mega-menu-wrap .mega-menu-container .mega-menu-highlighted .mega-menu-highlighted-content .description {
  margin-bottom: 20px;
}

.right-part-holder .mega-menu-wrap .mega-menu-container .mega-menu-highlighted .mega-menu-highlighted-content .description p {
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.44;
}

.right-part-holder .mega-menu-wrap .mega-menu-container .mega-menu-highlighted .mega-menu-highlighted-image {
  width: 215px;
}

.right-part-holder .mega-menu-wrap .mega-menu-container .mega-menu-highlighted .mega-menu-highlighted-image img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.right-part-holder .mega-menu-wrap .mega-menu-bar {
  background-color: #3F8469;
  padding: 10px 20px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 12px;
}

.right-part-holder .mega-menu-wrap .mega-menu-bar .mega-menu-content {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}

.right-part-holder .mega-menu-wrap .mega-menu-bar a.bar-link {
  color: #fff;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  text-decoration: underline;
}

.main-header .container.mobile .mega-menu-wrap {
  display: none;
}

.main-header .container.mobile .mega-menu-wrap .mega-menu-container.highlighted {
  display: grid;
  grid-template-columns: 1fr;
}

.main-header .container.mobile .mega-menu-wrap .mega-menu-container .mega-menu-links .mega-menu-title {
  display: none;
}

.main-header .container.mobile .mega-menu-wrap .mega-menu-container .mega-menu-links .child-wrapper {
  margin-top: 20px;
  display: grid;
  grid-row-gap: 10px;
  grid-column-gap: 30px;
  grid-template-columns: repeat(2, 1fr);
}

.main-header .container.mobile .mega-menu-wrap .mega-menu-container .mega-menu-links .child-wrapper .child-menu p {
  color: #fff;
  font-size: 14px;
  transition: all 0.5s ease-in-out;
}

.main-header .container.mobile .mega-menu-wrap .mega-menu-container .mega-menu-highlighted {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  background-color: #50A684;
}

.main-header .container.mobile .mega-menu-wrap .mega-menu-container .mega-menu-highlighted .mega-menu-highlighted-content h3 {
  color: #fff;
  font-family: "Source Sans 3", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.94;
  margin: 0 0 15px 0;
}

.main-header .container.mobile .mega-menu-wrap .mega-menu-container .mega-menu-highlighted .mega-menu-highlighted-content .description {
  margin-bottom: 10px;
}

.main-header .container.mobile .mega-menu-wrap .mega-menu-container .mega-menu-highlighted .mega-menu-highlighted-content .description p {
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.44;
}

.main-header .container.mobile .mega-menu-wrap .mega-menu-container .mega-menu-highlighted .mega-menu-highlighted-content .button-wrapper {
  display: -ms-flexbox;
  display: flex;
}

.main-header .container.mobile .mega-menu-wrap .mega-menu-container .mega-menu-highlighted .mega-menu-highlighted-content .button-wrapper .btn {
  width: auto;
}

.main-header .container.mobile .mega-menu-wrap .mega-menu-container .mega-menu-highlighted .mega-menu-highlighted-image {
  max-width: 215px;
  margin: 0 auto;
}

.main-header .container.mobile .mega-menu-wrap .mega-menu-container .mega-menu-highlighted .mega-menu-highlighted-image img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.main-header .container.mobile .mega-menu-wrap .mega-menu-bar {
  margin-top: 10px;
  display: none;
  grid-template-columns: 1fr;
  gap: 12px;
}

.main-header .container.mobile .mega-menu-wrap .mega-menu-bar .mega-menu-content {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}

.main-header .container.mobile .mega-menu-wrap .mega-menu-bar a.bar-link {
  color: #fff;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  text-decoration: underline;
}

.locations-post {
  padding: 25px 40px 25px 30px;
  border-radius: 4px;
  border: 1px solid #DEDEDE;
  background-color: transparent;
  transition: all 0.5s ease-in-out;
  -ms-flex-order: 1;
  order: 1;
}

.locations-post.active {
  -ms-flex-order: 0;
  order: 0;
  background-color: #fff;
}

@media (max-width: 991px) {
  .locations-post {
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 15px;
  }
}

.locations-post .location-taxonomies {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 5px;
}

.locations-post .location-taxonomies span {
  color: #50A684;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}

.locations-post .location-title {
  margin-bottom: 5px;
}

.locations-post .location-title h4 {
  color: #5F7577;
}

.locations-post .location-contact-info {
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  max-width: 400px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-align: center;
  align-items: center;
}

.locations-post .location-contact-info .location-contact {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}

.locations-post .location-contact-info .location-contact span,
.locations-post .location-contact-info .location-contact a {
  color: #5F7577;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}

.locations-post .location-contact-info .location-contact.contact-address {
  width: 100%;
}

.locations-post .location-contact-info .location-contact.contact-address:before {
  content: "";
  display: block;
  width: 12px;
  height: 16px;
  background-size: 12px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-map-pin-blue.svg);
}

.locations-post .location-contact-info .location-contact.contact-phone {
  width: 35%;
}

@media (max-width: 991px) {
  .locations-post .location-contact-info .location-contact.contact-phone {
    width: 100%;
  }
}

.locations-post .location-contact-info .location-contact.contact-phone:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-phone-blue.svg);
}

@media (max-width: 991px) {
  .locations-post .location-contact-info .location-contact.contact-email {
    width: 100%;
  }
}

.locations-post .location-contact-info .location-contact.contact-email:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-email-blue.svg);
}

.locations-post .location-link {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  visibility: hidden;
  opacity: 0;
  height: 0;
  transition: all ease-in-out 0.5s;
}

.locations-post .location-link a {
  color: #5F7577;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.12;
}

.locations-post .location-link:after {
  content: "";
  display: block;
  width: 13px;
  height: 17px;
  background-size: 13px 17px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/arrow-right-blue.svg);
}

.locations-post:hover {
  background-color: #fff;
}

.locations-post:hover .location-link {
  visibility: visible;
  opacity: 1;
  height: 18px;
  margin-top: 20px;
}

.team-loop.team-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.team-loop.team-item .team-image {
  width: 260px;
  height: 260px;
  border-radius: 3px;
}

.team-loop.team-item .team-image img {
  border-radius: 3px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.team-loop.team-item .team-image.no-img {
  background-color: #50A684;
}

.team-loop.team-item .team-member-taxonomies {
  line-height: 1.2;
  font-size: 16px;
}

.team-loop.team-item .team-member-taxonomies .taxonomy {
  color: #50A684;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}

.team-loop.team-item .team-member-taxonomies .separator {
  color: #50A684;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
}

.team-loop.team-item .team-member-title {
  margin-top: 25px;
}

.team-loop.team-item .team-member-title h4 {
  color: #5F7577;
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 0;
}

.team-loop.team-item .team-member-contact-info {
  margin-top: 15px;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.team-loop.team-item .team-member-contact-info .team-contact {
  position: relative;
}

.team-loop.team-item .team-member-contact-info .team-contact .contact-link {
  display: block;
}

.team-loop.team-item .team-member-contact-info .team-contact.contact-email .contact-link {
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-mail-blue.svg);
}

.team-loop.team-item .team-member-contact-info .team-contact.contact-phone .contact-link {
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-phone-blue.svg);
}

.team-loop.team-item .team-member-contact-info .team-contact.contact-linkedin .contact-link {
  width: 14px;
  height: 16px;
  background-size: 14px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-linkedin-blue.svg);
}

.team-loop.team-item .team-member-contact-info .team-contact:hover .contact-tooltip {
  visibility: visible;
  opacity: 1;
}

.slider .team-loop.team-item .team-image {
  width: 100%;
}

.slider .team-loop.team-item .team-image.no-img {
  background-color: #50A684;
}

.contact-tooltip {
  position: absolute;
  margin-top: 15px;
  border-radius: 3px 3px 0 0;
  background: #FFF;
  box-shadow: 0 4px 6px 0 rgba(88, 101, 126, 0.1);
  color: #11A4DD;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  padding: 10px 15px;
  height: 44px;
  visibility: hidden;
  opacity: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  text-decoration: underline;
}

@media (max-width: 767px) {
  .contact-tooltip {
    display: none;
  }
}

.contact-tooltip:hover {
  color: #11A4DD;
}

.contact-tooltip::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-width: 10px;
  border-style: solid;
  border-color: transparent transparent #FFF transparent;
  z-index: -1;
  -webkit-filter: drop-shadow(0 -10px 8px rgba(0, 0, 0, 0.15));
  filter: drop-shadow(0 -10px 8px rgba(0, 0, 0, 0.15));
}

.brochure-section {
  margin-top: 52px;
  position: relative;
  border-radius: 3px;
  background: #50A684;
  padding: 38px 35px;
}

@media (max-width: 767px) {
  .brochure-section {
    padding: 20px;
  }
}

.brochure-section p {
  margin: 0 !important;
}

.brochure-section .brochure-content {
  width: 65%;
}

@media (max-width: 767px) {
  .brochure-section .brochure-content {
    width: 100%;
  }
}

.brochure-section .brochure-content h4 {
  color: #FFF;
  margin-bottom: 24px;
  line-height: 1.3;
}

.brochure-section .brochure-content .brochure-desc p {
  margin-bottom: 24px !important;
  color: #FFF !important;
}

.brochure-section .brochure-content .brochure-desc a {
  color: #fff;
}

.brochure-section .brochure-image {
  position: absolute;
  top: -40px;
  right: -70px;
  width: 300px;
  height: 180px;
}

@media (max-width: 767px) {
  .brochure-section .brochure-image {
    display: none;
  }
}

.brochure-section .brochure-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.brochure-section.content-none .brochure-content {
  width: 100%;
}

.projects-loop {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: 3px;
  background: #50A684;
}

.projects-loop.image {
  grid-template-columns: 1fr 43%;
}

@media (max-width: 767px) {
  .projects-loop.image {
    grid-template-columns: 1fr;
  }
}

.projects-loop .project-content {
  padding: 40px 37px 35px 30px;
}

.projects-loop .project-content .post-title {
  color: #fff;
  line-height: 1.31;
  margin-bottom: 30px;
}

.projects-loop .project-content .project-location span {
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.55;
  margin-right: 5px;
}

.projects-loop .project-content .project-description {
  margin-top: 20px;
}

.projects-loop .project-content .project-description p {
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.55;
  margin-right: 5px;
}

.projects-loop .project-content .button-wrapper {
  margin-top: 40px;
}

.projects-loop .project-image {
  height: 100%;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (max-width: 767px) {
  .projects-loop .project-image {
    height: 250px;
  }
}

.pagination-wrapper {
  display: -ms-flexbox;
  display: flex;
  gap: 55px;
  -ms-flex-align: center;
  align-items: center;
}

.pagination-wrapper .page-numbers {
  color: #868686;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.44;
}

.pagination-wrapper .page-numbers.current {
  color: #50A684;
}

.pagination-wrapper .page-numbers.next {
  width: 14px;
  height: 16px;
  background-size: 14px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/arrow-right-grey.svg);
}

.pagination-wrapper .page-numbers.prev {
  width: 14px;
  height: 16px;
  background-size: 14px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/arrow-right-grey.svg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.products-loop {
  position: relative;
  overflow: hidden;
}

.products-loop .post-link-main {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.products-loop .product-image {
  background-repeat: no-repeat;
  background-size: cover;
  height: 280px;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
}

.products-loop .product-loop-wrap {
  position: relative;
  z-index: 5;
  padding: 30px 20px;
  background-color: #50A684;
  display: grid;
  grid-template-columns: 1fr 45px;
  gap: 10px;
  height: calc(100% - 280px);
}

.products-loop .product-loop-wrap .products-content .post-title {
  color: #fff;
  margin-bottom: 25px;
}

.products-loop .product-loop-wrap .products-content .products-excerpt p {
  color: #fff;
}

.products-loop .product-loop-wrap .products-link {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.products-loop .product-loop-wrap .products-link .post-link {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 45px;
  width: 45px;
  background-color: #11A4DD;
}

.products-loop .product-loop-wrap .products-link .post-link:after {
  content: "";
  display: block;
  width: 18px;
  height: 14px;
  background-size: 18px 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/slider-arrow-right.svg);
}

.products-loop:hover .product-image {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

@media (max-width: 991px) {
  body .gform_wrapper.gform-theme .gfield:not(.gfield--width-full) {
    grid-column: 1/-1;
  }
}

body .gform_wrapper.gform-theme .gform_heading {
  display: none;
}

body .gform_wrapper.gform-theme .spf-phone {
  display: none;
}

body .gform_wrapper.gform-theme .gform_fields {
  grid-column-gap: 38px;
  grid-row-gap: 26px;
}

@media (max-width: 767px) {
  body .gform_wrapper.gform-theme .gform_fields {
    grid-column-gap: 0;
  }
}

body .gform_wrapper.gform-theme input[type=color],
body .gform_wrapper.gform-theme input[type=date],
body .gform_wrapper.gform-theme input[type=datetime-local],
body .gform_wrapper.gform-theme input[type=datetime],
body .gform_wrapper.gform-theme input[type=email],
body .gform_wrapper.gform-theme input[type=month],
body .gform_wrapper.gform-theme input[type=number],
body .gform_wrapper.gform-theme input[type=password],
body .gform_wrapper.gform-theme input[type=search],
body .gform_wrapper.gform-theme input[type=tel],
body .gform_wrapper.gform-theme input[type=text],
body .gform_wrapper.gform-theme input[type=time],
body .gform_wrapper.gform-theme input[type=url],
body .gform_wrapper.gform-theme input[type=week],
body .gform_wrapper.gform-theme select,
body .gform_wrapper.gform-theme textarea {
  background-color: #fff;
  border-radius: 3px;
  border: 1px solid #DEDEDE;
  color: #5F7577;
  font-size: 18px;
  font-weight: 300;
  outline: none;
  padding: 13px 22px;
}

body .gform_wrapper.gform-theme input[type=color]:focus,
body .gform_wrapper.gform-theme input[type=date]:focus,
body .gform_wrapper.gform-theme input[type=datetime-local]:focus,
body .gform_wrapper.gform-theme input[type=datetime]:focus,
body .gform_wrapper.gform-theme input[type=email]:focus,
body .gform_wrapper.gform-theme input[type=month]:focus,
body .gform_wrapper.gform-theme input[type=number]:focus,
body .gform_wrapper.gform-theme input[type=password]:focus,
body .gform_wrapper.gform-theme input[type=search]:focus,
body .gform_wrapper.gform-theme input[type=tel]:focus,
body .gform_wrapper.gform-theme input[type=text]:focus,
body .gform_wrapper.gform-theme input[type=time]:focus,
body .gform_wrapper.gform-theme input[type=url]:focus,
body .gform_wrapper.gform-theme input[type=week]:focus,
body .gform_wrapper.gform-theme select:focus,
body .gform_wrapper.gform-theme textarea:focus {
  outline: none;
  box-shadow: none;
}

body .gform_wrapper.gform-theme .gfield p {
  display: none;
}

body .gform_wrapper.gform-theme .gfield_required_asterisk {
  color: #FF0000;
  font-size: 14px;
}

body .gform_wrapper.gform-theme .gfield_label,
body .gform_wrapper.gform-theme .gform-field-label--type-sub {
  color: #5F7577;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
}

body .gform_wrapper.gform-theme .gfield--type-select select {
  cursor: pointer;
  background-image: url(../../resources/images/svg/select-arrow-down.svg);
  background-position: calc(100% - 24px) 50%;
  background-repeat: no-repeat;
  background-size: 13px 15px;
  padding: 0 64px 0 13px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

body .gform_wrapper.gform-theme .ginput_container_date input {
  width: 100%;
  background-image: url(../../resources/images/svg/icon-calendar.svg);
  background-position: calc(100% - 24px) 50%;
  background-repeat: no-repeat;
  background-size: 15px 17px;
  padding-right: 54px;
}

body .gform_wrapper.gform-theme .gfield--type-fileupload {
  position: relative;
}

body .gform_wrapper.gform-theme .gfield--type-fileupload span {
  display: none;
}

body .gform_wrapper.gform-theme .gfield--type-fileupload input::file-selector-button {
  display: none;
}

body .gform_wrapper.gform-theme .gfield--type-fileupload input {
  position: relative;
  background-color: #fff;
  border-radius: 3px;
  cursor: pointer;
  padding-left: 13px;
  border: 1px solid #DEDEDE;
  color: #5F7577;
  font-size: 18px;
  font-weight: 300;
  outline: none;
}

body .gform_wrapper.gform-theme .gfield--type-fileupload input:before {
  position: absolute;
  top: calc(50% - 7px);
  right: 20px;
  content: "";
  width: 18px;
  height: 13px;
  background-image: url(../../resources/images/svg/upload-icon.svg);
  background-repeat: no-repeat;
  background-size: 18px 13px;
}

body .gform_wrapper.gform-theme .ginput_complex label,
body .gform_wrapper.gform-theme .ginput_complex legend {
  font-size: 14px;
  line-height: 1;
}

body .gform_wrapper.gform-theme .ginput_complex .ginput_container_date {
  -ms-flex-preferred-size: fit-content;
  flex-basis: fit-content;
}

body .gform_wrapper.gform-theme .ginput_complex .ginput_container_date select {
  background-position: calc(100% - 18px) 50%;
}

body .gform_wrapper.gform-theme .ginput_container_textarea {
  position: relative;
}

body .gform_wrapper.gform-theme .ginput_container_textarea textarea {
  display: block;
  padding-bottom: 45px;
}

body .gform_wrapper.gform-theme .ginput_container_textarea .ginput_counter {
  position: absolute;
  bottom: 19px;
  right: 19px;
  color: #5F7577;
  font-size: 12px;
  font-weight: 500;
  text-align: right;
}

body .gform_wrapper.gform-theme .gfield_checkbox,
body .gform_wrapper.gform-theme .gfield_radio {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  grid-row-gap: 20px;
}

body .gform_wrapper.gform-theme .gfield_checkbox .gchoice,
body .gform_wrapper.gform-theme .gfield_radio .gchoice {
  overflow: visible;
}

body .gform_wrapper.gform-theme .gfield_checkbox .gchoice input[type=checkbox],
body .gform_wrapper.gform-theme .gfield_checkbox .gchoice input[type=radio],
body .gform_wrapper.gform-theme .gfield_radio .gchoice input[type=checkbox],
body .gform_wrapper.gform-theme .gfield_radio .gchoice input[type=radio] {
  display: none;
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

body .gform_wrapper.gform-theme .gfield_checkbox .gchoice label,
body .gform_wrapper.gform-theme .gfield_radio .gchoice label {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  height: 30px;
  color: #4F657A;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  margin: 0;
  padding-left: 30px;
  cursor: pointer;
}

body .gform_wrapper.gform-theme .gfield_checkbox .gchoice label:before,
body .gform_wrapper.gform-theme .gfield_radio .gchoice label:before {
  content: "";
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 7px;
  left: 0;
  width: 16px;
  height: 16px;
  background-color: transparent;
  border-radius: 2px;
  border: 1px solid #DEDEDE;
}

body .gform_wrapper.gform-theme .gfield_checkbox .gchoice:has(input[type=radio]) label:before,
body .gform_wrapper.gform-theme .gfield_radio .gchoice:has(input[type=radio]) label:before {
  border-radius: 50%;
}

body .gform_wrapper.gform-theme .gfield_checkbox .gchoice:has(input[type=radio]:checked) label:after,
body .gform_wrapper.gform-theme .gfield_radio .gchoice:has(input[type=radio]:checked) label:after {
  content: "";
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 11px;
  left: 4px;
  width: 8px;
  height: 8px;
  background-color: #11A4DD;
  border-radius: 50%;
}

body .gform_wrapper.gform-theme .gfield_checkbox .gchoice:has(input[type=checkbox]:checked) label:after,
body .gform_wrapper.gform-theme .gfield_radio .gchoice:has(input[type=checkbox]:checked) label:after {
  content: "";
  display: block;
  position: absolute;
  top: 11px;
  left: 3px;
  width: 10px;
  height: 8px;
  background-size: 10px 8px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-check-blue.svg);
}

body .gform_wrapper.gform-theme .ginput_container_consent input[type=checkbox] {
  display: none;
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

body .gform_wrapper.gform-theme .ginput_container_consent label {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  height: 30px;
  color: #4F657A;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  margin: 0;
  padding-left: 30px;
  cursor: pointer;
}

body .gform_wrapper.gform-theme .ginput_container_consent label:before {
  content: "";
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 7px;
  left: 0;
  width: 16px;
  height: 16px;
  background-color: transparent;
  border-radius: 2px;
  border: 1px solid #DEDEDE;
}

body .gform_wrapper.gform-theme .ginput_container_consent:has(input[type=checkbox]:checked) label:after {
  content: "";
  display: block;
  position: absolute;
  top: 11px;
  left: 3px;
  width: 10px;
  height: 8px;
  background-size: 10px 8px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-check-blue.svg);
}

body .gform_wrapper.gform-theme .gform_footer,
body .gform_wrapper.gform-theme .gform_page_footer {
  margin-top: 0;
  padding-top: 30px;
  padding-bottom: 0;
  -ms-flex-pack: center;
  justify-content: center;
}

body .gform_wrapper.gform-theme .gform_footer br,
body .gform_wrapper.gform-theme .gform_page_footer br {
  display: none;
}

body .gform_wrapper.gform-theme .gform_footer button,
body .gform_wrapper.gform-theme .gform_footer input[type=submit],
body .gform_wrapper.gform-theme .gform_page_footer button,
body .gform_wrapper.gform-theme .gform_page_footer input[type=submit] {
  padding: 15px 25px !important;
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  border-radius: 3px !important;
  background-color: #11A4DD !important;
  border: 2px solid #11A4DD !important;
  transition: all 0.5s ease-in-out !important;
}

@media (max-width: 767px) {
  body .gform_wrapper.gform-theme .gform_footer button,
  body .gform_wrapper.gform-theme .gform_footer input[type=submit],
  body .gform_wrapper.gform-theme .gform_page_footer button,
  body .gform_wrapper.gform-theme .gform_page_footer input[type=submit] {
    font-size: 16px !important;
  }
}

body .gform_wrapper.gform-theme .gform_footer button:hover,
body .gform_wrapper.gform-theme .gform_footer input[type=submit]:hover,
body .gform_wrapper.gform-theme .gform_page_footer button:hover,
body .gform_wrapper.gform-theme .gform_page_footer input[type=submit]:hover {
  background-color: #0A99D1 !important;
  border: 2px solid #0A99D1 !important;
}

body .gform_wrapper.gform-theme .gfield_error.gfield_contains_required .gfield_label {
  color: #FF0000;
}

body .gform_wrapper.gform-theme .gfield_error.gfield_contains_required input {
  background-image: url(../../resources/images/svg/icon-close-red.svg);
  background-position: calc(100% - 24px) 50%;
  background-repeat: no-repeat;
  background-size: 14px 14px;
  border-color: #FF0000;
  background-color: #fff;
  padding-right: 64px;
}

body .gform_wrapper.gform-theme .gfield_error.gfield_contains_required textarea {
  border-color: #DB0000;
}

body .gform_wrapper.gform-theme .gfield_error.gfield_contains_required select {
  border-color: #DB0000;
}

body .gform_wrapper.gform-theme.gform_validation_error .gfield:not(.gfield_error) input:not([value=""]):not([type=file]) {
  border-radius: 10px;
  border: 1px solid #94D315;
  background-color: #fff;
  background-image: url(../../resources/images/svg/icon-check-green.svg);
  background-position: calc(100% - 24px) 50%;
  background-repeat: no-repeat;
  background-size: 14px 10px;
}

body .gform_wrapper.gform-theme.gform_validation_error .gfield:not(.gfield_error) textarea:not(:empty) {
  border-color: #94D315;
}

body .gform_wrapper.gform-theme.gform_validation_error .gfield:not(.gfield_error) select:not(.no-value) {
  border-color: #94D315;
}

body .gform_wrapper.gravity-theme .gform_validation_errors {
  display: none;
  background-color: #FDDDDD;
  border: 1px solid #FF0000;
  border-radius: 10px;
  box-shadow: none;
  padding: 23px 27px;
  margin: 0 0 25px;
}

body .gform_wrapper.gravity-theme .gform_validation_errors h2 {
  color: #FF0000;
  font-size: 14px;
  font-weight: 500;
}

body .gform_wrapper.gravity-theme .gform_validation_errors .gform-icon--close {
  display: none !important;
}

body .gform_wrapper.gravity-theme .gform_validation_errors ol li {
  color: #ff1717;
}

body .gform_wrapper.gravity-theme .gform_validation_errors ol li a {
  color: inherit;
}

body .gform_wrapper.gravity-theme .gfield_validation_message,
body .gform_wrapper.gravity-theme .validation_message {
  background-color: transparent;
  border: none;
  color: #DB0000;
  font-size: 14px !important;
  font-weight: 500;
  padding: 0 !important;
}

.blog-loop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}

.blog-loop .post-link-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}

.blog-loop .blog-image {
  width: 100%;
  background-size: cover;
  height: 210px;
  border-radius: 3px 3px 0px 0px;
}

.blog-loop .blog-content {
  border-radius: 0px 0px 3px 3px;
  border: 1px solid #DEDEDE;
  background: #fff;
  padding: 35px 20px 30px;
  height: calc(100% - 210px);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.blog-loop .blog-content .post-title {
  word-break: break-word;
  height: 90px;
}

.blog-loop .blog-content .blog-meta {
  margin-top: 20px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.blog-loop .blog-content .blog-meta .blog-author {
  color: #3F8469;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.55;
}

.blog-loop .blog-content .blog-meta .blog-date {
  color: #5F7577;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  text-transform: lowercase;
}

.blog-loop .blog-content .blog-excerpt {
  margin-top: 20px;
}

.blog-loop .blog-content .post-link-wrap {
  margin-top: auto;
  padding-top: 20px;
}

.blog-loop .blog-content .post-link-wrap .post-link {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  color: #11A4DD;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.94;
}

.blog-loop .blog-content .post-link-wrap .post-link:after {
  content: "";
  display: block;
  width: 12px;
  height: 17px;
  background-size: 12px 17px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/arrow-right-blue.svg);
}

.blog-loop.no-img .blog-image {
  background-color: #3F8469;
}

.slider-section {
  width: 100%;
  margin-bottom: 30px;
}

.slider-section .slider-holder {
  margin: 0 -10px;
}

.slider-section .slider-holder .block-slider .slick-arrow {
  position: absolute;
  top: calc(50% - 38.5px);
  border: none;
  background-color: #11A4DD;
  transition: all 0.5s ease-in-out;
  width: 45px;
  height: 45px;
  border-radius: 3px;
  z-index: 10;
}

.slider-section .slider-holder .block-slider .slick-arrow:before {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 7px);
  left: calc(50% - 9px);
}

.slider-section .slider-holder .block-slider .slick-arrow.slick-prev {
  left: 10px;
}

.slider-section .slider-holder .block-slider .slick-arrow.slick-prev:before {
  width: 18px;
  height: 14px;
  background-size: 18px 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/slider-arrow-left.svg);
}

.slider-section .slider-holder .block-slider .slick-arrow.slick-next {
  right: 10px;
}

.slider-section .slider-holder .block-slider .slick-arrow.slick-next:before {
  width: 18px;
  height: 14px;
  background-size: 18px 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/slider-arrow-right.svg);
}

.slider-section .slider-holder .block-slider p.slick-slide {
  display: none;
}

.slider-section .slider-holder .block-slider .slick-slide {
  margin: 0 10px;
  height: 350px;
}

.slider-section .slider-holder .block-slider .slick-slide p {
  display: none;
}

.slider-section .slider-holder .block-slider .slick-slide .slide {
  height: 100%;
}

.slider-section .slider-holder .block-slider .slick-slide .slide .image-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
}

.slider-section .slider-holder .block-slider .slick-slide .slide .image-wrapper img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.slider-section .slider-holder .block-slider .slick-slide .slide .image-wrapper.caption-image a {
  position: relative;
}

#site-popup {
  position: fixed;
  bottom: 100px;
  right: 32px;
  padding: 45px 30px 35px;
  border-radius: 3px;
  background: #3F8469;
  z-index: 100;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 370px;
  opacity: 1;
  visibility: visible;
  transition: all ease-in-out 0.5s;
  width: 100%;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 768px) {
  #site-popup {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 16px;
  }
}

#site-popup.hidden {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

#site-popup .popup-logo {
  margin-bottom: 45px;
}

#site-popup .popup-logo img {
  width: 180px;
}

#site-popup .popup-title h4 {
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

#site-popup .popup-desc {
  margin-top: 15px;
}

#site-popup .popup-desc p {
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
}

#site-popup .popup-desc p a {
  color: #fff;
}

#site-popup .popup-desc p a:hover {
  text-decoration: underline;
}

#site-popup .popup-desc ul li::marker {
  color: #fff;
}

#site-popup .popup-desc ul li,
#site-popup .popup-desc ul a,
#site-popup .popup-desc ul span {
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
}

#site-popup .button-wrapper {
  margin-top: 20px;
}

#site-popup .popup-close {
  position: absolute;
  cursor: pointer;
  top: 15px;
  right: 25px;
  width: 12px;
  height: 16px;
  background-size: 12px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/popup-close.svg);
}

#site-popup:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 176px;
  height: 168px;
  background-size: 176px 168px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/popup-top.svg);
  z-index: -1;
  border-radius: 3px;
}

#site-popup:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 149px;
  height: 155px;
  background-size: 149px 155px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/popup-bottom.svg);
  z-index: -1;
  border-radius: 3px;
}

#spotler-brochure-form-wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(80, 166, 132, 0.2);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  place-content: center;
  z-index: 999;
}

#spotler-brochure-form-wrapper.show {
  display: grid;
}

#spotler-brochure-form-wrapper .form-wrapper {
  position: relative;
  padding: 35px 65px;
  background: #F6FBF9;
  overflow: scroll;
}

#spotler-brochure-form-wrapper .form-wrapper .close-button {
  position: absolute;
  top: 20px;
  right: 30px;
  width: 14px;
  height: 14px;
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-close-grey.svg);
  z-index: 10;
  cursor: pointer;
}

#spotler-brochure-form-wrapper .form-wrapper #form13255 table,
#spotler-brochure-form-wrapper .form-wrapper #form13455 table,
#spotler-brochure-form-wrapper .form-wrapper #form13456 table,
#spotler-brochure-form-wrapper .form-wrapper #form13205 table {
  width: 100%;
}

#spotler-brochure-form-wrapper .form-wrapper #form13255 table td,
#spotler-brochure-form-wrapper .form-wrapper #form13455 table td,
#spotler-brochure-form-wrapper .form-wrapper #form13456 table td,
#spotler-brochure-form-wrapper .form-wrapper #form13205 table td {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 991px) {
  #spotler-brochure-form-wrapper .form-wrapper #form13255 table td,
  #spotler-brochure-form-wrapper .form-wrapper #form13455 table td,
  #spotler-brochure-form-wrapper .form-wrapper #form13456 table td,
  #spotler-brochure-form-wrapper .form-wrapper #form13205 table td {
    grid-template-columns: 1fr;
  }
}

#spotler-brochure-form-wrapper .form-wrapper #form13255 table td table:last-of-type,
#spotler-brochure-form-wrapper .form-wrapper #form13455 table td table:last-of-type,
#spotler-brochure-form-wrapper .form-wrapper #form13456 table td table:last-of-type,
#spotler-brochure-form-wrapper .form-wrapper #form13205 table td table:last-of-type {
  grid-column: span 2;
}

@media (max-width: 991px) {
  #spotler-brochure-form-wrapper .form-wrapper #form13255 table td table:last-of-type,
  #spotler-brochure-form-wrapper .form-wrapper #form13455 table td table:last-of-type,
  #spotler-brochure-form-wrapper .form-wrapper #form13456 table td table:last-of-type,
  #spotler-brochure-form-wrapper .form-wrapper #form13205 table td table:last-of-type {
    grid-column: 1;
  }
}

#spotler-brochure-form-wrapper .form-wrapper #form13255 table td table .mpLabelRow,
#spotler-brochure-form-wrapper .form-wrapper #form13455 table td table .mpLabelRow,
#spotler-brochure-form-wrapper .form-wrapper #form13456 table td table .mpLabelRow,
#spotler-brochure-form-wrapper .form-wrapper #form13205 table td table .mpLabelRow {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}

#spotler-brochure-form-wrapper .form-wrapper #form13255 table td table .mpLabelRow td,
#spotler-brochure-form-wrapper .form-wrapper #form13455 table td table .mpLabelRow td,
#spotler-brochure-form-wrapper .form-wrapper #form13456 table td table .mpLabelRow td,
#spotler-brochure-form-wrapper .form-wrapper #form13205 table td table .mpLabelRow td {
  grid-template-columns: 1fr;
}

#spotler-brochure-form-wrapper .form-wrapper #form13255 table td table .mpLabelRow .mpFormLabel,
#spotler-brochure-form-wrapper .form-wrapper #form13455 table td table .mpLabelRow .mpFormLabel,
#spotler-brochure-form-wrapper .form-wrapper #form13456 table td table .mpLabelRow .mpFormLabel,
#spotler-brochure-form-wrapper .form-wrapper #form13205 table td table .mpLabelRow .mpFormLabel {
  display: -ms-flexbox;
  display: flex;
}

#spotler-brochure-form-wrapper .form-wrapper #form13255 table td table .mpLabelRow .mandatorySign,
#spotler-brochure-form-wrapper .form-wrapper #form13455 table td table .mpLabelRow .mandatorySign,
#spotler-brochure-form-wrapper .form-wrapper #form13456 table td table .mpLabelRow .mandatorySign,
#spotler-brochure-form-wrapper .form-wrapper #form13205 table td table .mpLabelRow .mandatorySign {
  color: red;
  font-weight: bold;
}

#spotler-brochure-form-wrapper .form-wrapper #form13255 table td table .mpLabelRow label,
#spotler-brochure-form-wrapper .form-wrapper #form13455 table td table .mpLabelRow label,
#spotler-brochure-form-wrapper .form-wrapper #form13456 table td table .mpLabelRow label,
#spotler-brochure-form-wrapper .form-wrapper #form13205 table td table .mpLabelRow label {
  color: #5F7577;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
}

#spotler-brochure-form-wrapper .form-wrapper #form13255 table td table .mpLabelRow .sublabel,
#spotler-brochure-form-wrapper .form-wrapper #form13455 table td table .mpLabelRow .sublabel,
#spotler-brochure-form-wrapper .form-wrapper #form13456 table td table .mpLabelRow .sublabel,
#spotler-brochure-form-wrapper .form-wrapper #form13205 table td table .mpLabelRow .sublabel {
  display: none;
}

#spotler-brochure-form-wrapper .form-wrapper #form13255 table td table .mpLabelRow input,
#spotler-brochure-form-wrapper .form-wrapper #form13255 table td table .mpLabelRow textarea,
#spotler-brochure-form-wrapper .form-wrapper #form13455 table td table .mpLabelRow input,
#spotler-brochure-form-wrapper .form-wrapper #form13455 table td table .mpLabelRow textarea,
#spotler-brochure-form-wrapper .form-wrapper #form13456 table td table .mpLabelRow input,
#spotler-brochure-form-wrapper .form-wrapper #form13456 table td table .mpLabelRow textarea,
#spotler-brochure-form-wrapper .form-wrapper #form13205 table td table .mpLabelRow input,
#spotler-brochure-form-wrapper .form-wrapper #form13205 table td table .mpLabelRow textarea {
  background-color: #fff;
  border-radius: 3px;
  border: 1px solid #DEDEDE;
  color: #5F7577;
  font-size: 18px;
  font-weight: 300;
  outline: none;
  padding: 13px 22px;
  width: 100%;
}

#spotler-brochure-form-wrapper .form-wrapper #form13255 table td table .mpLabelRow input:focus,
#spotler-brochure-form-wrapper .form-wrapper #form13255 table td table .mpLabelRow textarea:focus,
#spotler-brochure-form-wrapper .form-wrapper #form13455 table td table .mpLabelRow input:focus,
#spotler-brochure-form-wrapper .form-wrapper #form13455 table td table .mpLabelRow textarea:focus,
#spotler-brochure-form-wrapper .form-wrapper #form13456 table td table .mpLabelRow input:focus,
#spotler-brochure-form-wrapper .form-wrapper #form13456 table td table .mpLabelRow textarea:focus,
#spotler-brochure-form-wrapper .form-wrapper #form13205 table td table .mpLabelRow input:focus,
#spotler-brochure-form-wrapper .form-wrapper #form13205 table td table .mpLabelRow textarea:focus {
  outline: none;
  box-shadow: none;
}

#spotler-brochure-form-wrapper .form-wrapper #form13255 table td table .mpLabelRow .submitCell,
#spotler-brochure-form-wrapper .form-wrapper #form13455 table td table .mpLabelRow .submitCell,
#spotler-brochure-form-wrapper .form-wrapper #form13456 table td table .mpLabelRow .submitCell,
#spotler-brochure-form-wrapper .form-wrapper #form13205 table td table .mpLabelRow .submitCell {
  margin-top: 20px;
  display: -ms-flexbox;
  display: flex;
  place-content: center;
}

#spotler-brochure-form-wrapper .form-wrapper #form13255 table td table .mpLabelRow .submitCell input,
#spotler-brochure-form-wrapper .form-wrapper #form13455 table td table .mpLabelRow .submitCell input,
#spotler-brochure-form-wrapper .form-wrapper #form13456 table td table .mpLabelRow .submitCell input,
#spotler-brochure-form-wrapper .form-wrapper #form13205 table td table .mpLabelRow .submitCell input {
  padding: 15px 25px !important;
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  border-radius: 3px !important;
  background-color: #11A4DD !important;
  border: 2px solid #11A4DD !important;
  transition: all 0.5s ease-in-out !important;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media (max-width: 767px) {
  #spotler-brochure-form-wrapper .form-wrapper #form13255 table td table .mpLabelRow .submitCell input,
  #spotler-brochure-form-wrapper .form-wrapper #form13455 table td table .mpLabelRow .submitCell input,
  #spotler-brochure-form-wrapper .form-wrapper #form13456 table td table .mpLabelRow .submitCell input,
  #spotler-brochure-form-wrapper .form-wrapper #form13205 table td table .mpLabelRow .submitCell input {
    font-size: 16px !important;
  }
}

#spotler-brochure-form-wrapper .form-wrapper #form13255 table td table .mpLabelRow .submitCell input:hover,
#spotler-brochure-form-wrapper .form-wrapper #form13455 table td table .mpLabelRow .submitCell input:hover,
#spotler-brochure-form-wrapper .form-wrapper #form13456 table td table .mpLabelRow .submitCell input:hover,
#spotler-brochure-form-wrapper .form-wrapper #form13205 table td table .mpLabelRow .submitCell input:hover {
  background-color: transparent !important;
  color: #11A4DD !important;
}

#spotler-brochure-form-wrapper .form-wrapper #form13255 table td table .mpErrorRow td,
#spotler-brochure-form-wrapper .form-wrapper #form13455 table td table .mpErrorRow td,
#spotler-brochure-form-wrapper .form-wrapper #form13456 table td table .mpErrorRow td,
#spotler-brochure-form-wrapper .form-wrapper #form13205 table td table .mpErrorRow td {
  grid-template-columns: 1fr;
}

#spotler-brochure-form-wrapper .form-wrapper #form13255 table #CNT21724,
#spotler-brochure-form-wrapper .form-wrapper #form13255 table #CNT21725,
#spotler-brochure-form-wrapper .form-wrapper #form13255 table #CNT21726,
#spotler-brochure-form-wrapper .form-wrapper #form13255 table #CNT21676,
#spotler-brochure-form-wrapper .form-wrapper #form13455 table #CNT21724,
#spotler-brochure-form-wrapper .form-wrapper #form13455 table #CNT21725,
#spotler-brochure-form-wrapper .form-wrapper #form13455 table #CNT21726,
#spotler-brochure-form-wrapper .form-wrapper #form13455 table #CNT21676,
#spotler-brochure-form-wrapper .form-wrapper #form13456 table #CNT21724,
#spotler-brochure-form-wrapper .form-wrapper #form13456 table #CNT21725,
#spotler-brochure-form-wrapper .form-wrapper #form13456 table #CNT21726,
#spotler-brochure-form-wrapper .form-wrapper #form13456 table #CNT21676,
#spotler-brochure-form-wrapper .form-wrapper #form13205 table #CNT21724,
#spotler-brochure-form-wrapper .form-wrapper #form13205 table #CNT21725,
#spotler-brochure-form-wrapper .form-wrapper #form13205 table #CNT21726,
#spotler-brochure-form-wrapper .form-wrapper #form13205 table #CNT21676 {
  display: none;
}

#spotler-brochure-form-wrapper .form-wrapper #form13405 input,
#spotler-brochure-form-wrapper .form-wrapper #form13405 textarea,
#spotler-brochure-form-wrapper .form-wrapper #form13406 input,
#spotler-brochure-form-wrapper .form-wrapper #form13406 textarea,
#spotler-brochure-form-wrapper .form-wrapper #form13455 input,
#spotler-brochure-form-wrapper .form-wrapper #form13455 textarea,
#spotler-brochure-form-wrapper .form-wrapper #form13505 input,
#spotler-brochure-form-wrapper .form-wrapper #form13505 textarea,
#spotler-brochure-form-wrapper .form-wrapper #form13555 input,
#spotler-brochure-form-wrapper .form-wrapper #form13555 textarea {
  background-color: #fff;
  border-radius: 3px;
  border: 1px solid #DEDEDE;
  color: #5F7577;
  font-size: 18px;
  font-weight: 300;
  outline: none;
  padding: 13px 22px;
  width: 100%;
}

#spotler-brochure-form-wrapper .form-wrapper #form13405 input:focus,
#spotler-brochure-form-wrapper .form-wrapper #form13405 textarea:focus,
#spotler-brochure-form-wrapper .form-wrapper #form13406 input:focus,
#spotler-brochure-form-wrapper .form-wrapper #form13406 textarea:focus,
#spotler-brochure-form-wrapper .form-wrapper #form13455 input:focus,
#spotler-brochure-form-wrapper .form-wrapper #form13455 textarea:focus,
#spotler-brochure-form-wrapper .form-wrapper #form13505 input:focus,
#spotler-brochure-form-wrapper .form-wrapper #form13505 textarea:focus,
#spotler-brochure-form-wrapper .form-wrapper #form13555 input:focus,
#spotler-brochure-form-wrapper .form-wrapper #form13555 textarea:focus {
  outline: none;
  box-shadow: none;
}

#spotler-brochure-form-wrapper .form-wrapper #form13405 label,
#spotler-brochure-form-wrapper .form-wrapper #form13406 label,
#spotler-brochure-form-wrapper .form-wrapper #form13455 label,
#spotler-brochure-form-wrapper .form-wrapper #form13505 label,
#spotler-brochure-form-wrapper .form-wrapper #form13555 label {
  color: #5F7577 !important;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
}

#spotler-brochure-form-wrapper .form-wrapper #form13405 ul,
#spotler-brochure-form-wrapper .form-wrapper #form13406 ul,
#spotler-brochure-form-wrapper .form-wrapper #form13455 ul,
#spotler-brochure-form-wrapper .form-wrapper #form13505 ul,
#spotler-brochure-form-wrapper .form-wrapper #form13555 ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-gap: 10px;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 991px) {
  #spotler-brochure-form-wrapper .form-wrapper #form13405 ul,
  #spotler-brochure-form-wrapper .form-wrapper #form13406 ul,
  #spotler-brochure-form-wrapper .form-wrapper #form13455 ul,
  #spotler-brochure-form-wrapper .form-wrapper #form13505 ul,
  #spotler-brochure-form-wrapper .form-wrapper #form13555 ul {
    grid-template-columns: 1fr;
  }
}

#spotler-brochure-form-wrapper .form-wrapper #form13405 ul #CNT21929,
#spotler-brochure-form-wrapper .form-wrapper #form13405 ul #CNT21937,
#spotler-brochure-form-wrapper .form-wrapper #form13406 ul #CNT21929,
#spotler-brochure-form-wrapper .form-wrapper #form13406 ul #CNT21937,
#spotler-brochure-form-wrapper .form-wrapper #form13455 ul #CNT21929,
#spotler-brochure-form-wrapper .form-wrapper #form13455 ul #CNT21937,
#spotler-brochure-form-wrapper .form-wrapper #form13505 ul #CNT21929,
#spotler-brochure-form-wrapper .form-wrapper #form13505 ul #CNT21937,
#spotler-brochure-form-wrapper .form-wrapper #form13555 ul #CNT21929,
#spotler-brochure-form-wrapper .form-wrapper #form13555 ul #CNT21937 {
  display: none;
}

#spotler-brochure-form-wrapper .form-wrapper #form13405 ul li .mpFormLabel,
#spotler-brochure-form-wrapper .form-wrapper #form13406 ul li .mpFormLabel,
#spotler-brochure-form-wrapper .form-wrapper #form13455 ul li .mpFormLabel,
#spotler-brochure-form-wrapper .form-wrapper #form13505 ul li .mpFormLabel,
#spotler-brochure-form-wrapper .form-wrapper #form13555 ul li .mpFormLabel {
  display: -ms-flexbox;
  display: flex;
}

#spotler-brochure-form-wrapper .form-wrapper #form13405 ul li .mpFormLabel label,
#spotler-brochure-form-wrapper .form-wrapper #form13406 ul li .mpFormLabel label,
#spotler-brochure-form-wrapper .form-wrapper #form13455 ul li .mpFormLabel label,
#spotler-brochure-form-wrapper .form-wrapper #form13505 ul li .mpFormLabel label,
#spotler-brochure-form-wrapper .form-wrapper #form13555 ul li .mpFormLabel label {
  color: #5F7577 !important;
}

#spotler-brochure-form-wrapper .form-wrapper #form13405 ul li .mandatorySign,
#spotler-brochure-form-wrapper .form-wrapper #form13406 ul li .mandatorySign,
#spotler-brochure-form-wrapper .form-wrapper #form13455 ul li .mandatorySign,
#spotler-brochure-form-wrapper .form-wrapper #form13505 ul li .mandatorySign,
#spotler-brochure-form-wrapper .form-wrapper #form13555 ul li .mandatorySign {
  color: red;
  font-weight: bold;
}

#spotler-brochure-form-wrapper .form-wrapper #form13405 ul li .sublabel,
#spotler-brochure-form-wrapper .form-wrapper #form13406 ul li .sublabel,
#spotler-brochure-form-wrapper .form-wrapper #form13455 ul li .sublabel,
#spotler-brochure-form-wrapper .form-wrapper #form13505 ul li .sublabel,
#spotler-brochure-form-wrapper .form-wrapper #form13555 ul li .sublabel {
  display: none;
}

#spotler-brochure-form-wrapper .form-wrapper #form13405 ul li .submitCell,
#spotler-brochure-form-wrapper .form-wrapper #form13406 ul li .submitCell,
#spotler-brochure-form-wrapper .form-wrapper #form13455 ul li .submitCell,
#spotler-brochure-form-wrapper .form-wrapper #form13505 ul li .submitCell,
#spotler-brochure-form-wrapper .form-wrapper #form13555 ul li .submitCell {
  margin-top: 20px;
}

#spotler-brochure-form-wrapper .form-wrapper #form13405 ul li .submitCell input,
#spotler-brochure-form-wrapper .form-wrapper #form13406 ul li .submitCell input,
#spotler-brochure-form-wrapper .form-wrapper #form13455 ul li .submitCell input,
#spotler-brochure-form-wrapper .form-wrapper #form13505 ul li .submitCell input,
#spotler-brochure-form-wrapper .form-wrapper #form13555 ul li .submitCell input {
  padding: 15px 25px !important;
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  border-radius: 3px !important;
  background-color: #11A4DD !important;
  border: 2px solid #11A4DD !important;
  transition: all 0.5s ease-in-out !important;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media (max-width: 767px) {
  #spotler-brochure-form-wrapper .form-wrapper #form13405 ul li .submitCell input,
  #spotler-brochure-form-wrapper .form-wrapper #form13406 ul li .submitCell input,
  #spotler-brochure-form-wrapper .form-wrapper #form13455 ul li .submitCell input,
  #spotler-brochure-form-wrapper .form-wrapper #form13505 ul li .submitCell input,
  #spotler-brochure-form-wrapper .form-wrapper #form13555 ul li .submitCell input {
    font-size: 16px !important;
  }
}

#spotler-brochure-form-wrapper .form-wrapper #form13405 ul li .submitCell input:hover,
#spotler-brochure-form-wrapper .form-wrapper #form13406 ul li .submitCell input:hover,
#spotler-brochure-form-wrapper .form-wrapper #form13455 ul li .submitCell input:hover,
#spotler-brochure-form-wrapper .form-wrapper #form13505 ul li .submitCell input:hover,
#spotler-brochure-form-wrapper .form-wrapper #form13555 ul li .submitCell input:hover {
  background-color: transparent !important;
  color: #fff !important;
}

#spotler-brochure-form-wrapper .form-wrapper #form13405 ul li:last-of-type,
#spotler-brochure-form-wrapper .form-wrapper #form13406 ul li:last-of-type,
#spotler-brochure-form-wrapper .form-wrapper #form13455 ul li:last-of-type,
#spotler-brochure-form-wrapper .form-wrapper #form13505 ul li:last-of-type,
#spotler-brochure-form-wrapper .form-wrapper #form13555 ul li:last-of-type {
  grid-column: span 2;
}

@media (max-width: 991px) {
  #spotler-brochure-form-wrapper .form-wrapper #form13405 ul li:last-of-type,
  #spotler-brochure-form-wrapper .form-wrapper #form13406 ul li:last-of-type,
  #spotler-brochure-form-wrapper .form-wrapper #form13455 ul li:last-of-type,
  #spotler-brochure-form-wrapper .form-wrapper #form13505 ul li:last-of-type,
  #spotler-brochure-form-wrapper .form-wrapper #form13555 ul li:last-of-type {
    grid-column: 1;
  }
}

#spotler-brochure-form-wrapper .form-wrapper #form13405 .mpErrorSummary,
#spotler-brochure-form-wrapper .form-wrapper #form13406 .mpErrorSummary,
#spotler-brochure-form-wrapper .form-wrapper #form13455 .mpErrorSummary,
#spotler-brochure-form-wrapper .form-wrapper #form13505 .mpErrorSummary,
#spotler-brochure-form-wrapper .form-wrapper #form13555 .mpErrorSummary {
  margin-bottom: 20px;
}

#spotler-brochure-form-wrapper .form-wrapper #form13405 .mpErrorSummary ul li,
#spotler-brochure-form-wrapper .form-wrapper #form13406 .mpErrorSummary ul li,
#spotler-brochure-form-wrapper .form-wrapper #form13455 .mpErrorSummary ul li,
#spotler-brochure-form-wrapper .form-wrapper #form13505 .mpErrorSummary ul li,
#spotler-brochure-form-wrapper .form-wrapper #form13555 .mpErrorSummary ul li {
  color: #fff;
  font-size: 14px;
}

#spotler-brochure-form-wrapper .form-wrapper #form13455 #CNT21977,
#spotler-brochure-form-wrapper .form-wrapper #form13455 #CNT21978,
#spotler-brochure-form-wrapper .form-wrapper #form13455 #CNT21979 {
  display: none;
}

#spotler-brochure-form-wrapper .form-wrapper #form13505 #CNT22025,
#spotler-brochure-form-wrapper .form-wrapper #form13555 #CNT22025 {
  display: none;
}

#spotler-brochure-form-wrapper .form-wrapper #form13456 #CNT21986,
#spotler-brochure-form-wrapper .form-wrapper #form13456 #CNT21987,
#spotler-brochure-form-wrapper .form-wrapper #form13456 #CNT21988 {
  display: none;
}

.main-header {
  position: relative;
}

.main-header .header-top-bar {
  background-color: #F6FBF9;
  padding: 5px 0;
}

.main-header .header-top-bar .top-bar-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 28px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .main-header .header-top-bar .top-bar-wrapper {
    gap: 10px;
  }
}

.main-header .header-top-bar .top-bar-wrapper .top-nav {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 28px;
}

.main-header .header-top-bar .top-bar-wrapper .top-nav li a {
  color: #5F7577;
  font-size: 16px;
  font-weight: 400;
}

@media (max-width: 550px) {
  .main-header .header-top-bar .top-bar-wrapper .top-nav li a {
    font-size: 14px;
  }
}

.main-header .header-top-bar .top-bar-wrapper .header__search .search-form {
  position: relative;
}

.main-header .header-top-bar .top-bar-wrapper .header__search .search-form .search-field {
  padding: 6px 10px;
  border: #DEDEDE 1px solid;
  border-radius: 10px;
  width: 375px;
  color: #5F7577;
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
}

.main-header .header-top-bar .top-bar-wrapper .header__search .search-form .search-field:focus {
  outline: none;
}

.main-header .header-top-bar .top-bar-wrapper .header__search .search-form .search-submit {
  position: absolute;
  width: 50px;
  height: 100%;
  border: 0;
  background: none;
  right: 0px;
  top: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
  z-index: 15;
}

.main-header .header-top-bar .top-bar-wrapper .header__search .search-form .search-submit .search-icon {
  display: block;
  width: 17px;
  height: 17px;
  background-size: 17px 17px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/search-icon-blue.svg);
}

.main-header .header-top-bar .top-bar-wrapper .header__search #toggle-search-form {
  background: none;
  border: none;
  cursor: pointer;
  display: block;
  width: 17px;
  height: 17px;
  background-size: 17px 17px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/search-icon-blue.svg);
}

.main-header .header-top-bar .top-bar-wrapper .header__search #search-form-container {
  display: none;
}

.main-header .header-top-bar .top-bar-wrapper .wpml-switcher .wpml-ls {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 135px;
}

.main-header .header-top-bar .top-bar-wrapper .wpml-switcher .wpml-ls ul .wpml-ls-current-language {
  padding: 0 20px 0 6px;
}

.main-header .header-top-bar .top-bar-wrapper .wpml-switcher .wpml-ls ul .wpml-ls-current-language a {
  display: block;
  text-decoration: none;
  border: none;
  background-color: transparent;
  padding: 0;
}

.main-header .header-top-bar .top-bar-wrapper .wpml-switcher .wpml-ls ul .wpml-ls-current-language a span {
  color: #4F657A;
  font-family: "Source Sans 3", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.15;
}

.main-header .header-top-bar .top-bar-wrapper .wpml-switcher .wpml-ls ul .wpml-ls-current-language .wpml-ls-item-toggle {
  position: relative;
}

.main-header .header-top-bar .top-bar-wrapper .wpml-switcher .wpml-ls ul .wpml-ls-current-language .wpml-ls-item-toggle:after {
  display: none;
}

.main-header .header-top-bar .top-bar-wrapper .wpml-switcher .wpml-ls ul .wpml-ls-current-language .wpml-ls-item-toggle:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: -20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
  height: 10px;
  background-size: 8px 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/arrow-lang-switcher.svg);
  transition: all 0.5s ease-in-out;
}

.main-header .header-top-bar .top-bar-wrapper .wpml-switcher .wpml-ls ul .wpml-ls-current-language .wpml-ls-sub-menu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 11px;
  top: 45px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  border: none;
  border-radius: 3px;
  background: #F6FBF9;
  padding: 11px 13px;
}

.main-header .header-top-bar .top-bar-wrapper .wpml-switcher .wpml-ls ul .wpml-ls-current-language .wpml-ls-sub-menu:after {
  content: "";
  display: block;
  position: absolute;
  top: -9px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 19px;
  height: 9px;
  background-size: 19px 9px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/language-switcher-triange.svg);
  transition: all 0.5s ease-in-out;
}

.main-header .header-top-bar .top-bar-wrapper .wpml-switcher .wpml-ls ul .wpml-ls-current-language .wpml-ls-sub-menu .wpml-ls-item .wpml-ls-link span {
  transition: color 0.5s ease-in-out;
}

.main-header .header-top-bar .top-bar-wrapper .wpml-switcher .wpml-ls ul .wpml-ls-current-language .wpml-ls-sub-menu .wpml-ls-item:hover .wpml-ls-link span {
  color: #3F8469;
}

.main-header .header-top-bar .top-bar-wrapper .wpml-switcher .wpml-ls ul .wpml-ls-current-language:hover .wpml-ls-item-toggle {
  position: relative;
}

.main-header .header-top-bar .top-bar-wrapper .wpml-switcher .wpml-ls ul .wpml-ls-current-language:hover .wpml-ls-item-toggle:after {
  display: none;
}

.main-header .header-top-bar .top-bar-wrapper .wpml-switcher .wpml-ls ul .wpml-ls-current-language:hover .wpml-ls-item-toggle:before {
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

.main-header .header-top-bar .top-bar-wrapper .wpml-switcher .wpml-ls ul .wpml-ls-current-language:hover .wpml-ls-sub-menu {
  visibility: visible;
  opacity: 1;
}

.main-header .header-top-bar .top-bar-wrapper .link.phone a {
  color: #11A4DD;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-family: "Open Sans", sans-serif;
}

.main-header .header-top-bar .top-bar-wrapper .link.phone a:before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background-size: 15px 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/phone-icon-blue.svg);
}

.main-header .main-header-wrapper {
  width: 100%;
  position: absolute;
  top: 70px;
  z-index: 55;
  background: transparent;
}

.main-header .main-header-wrapper .main-header__inner {
  position: relative;
  display: grid;
  grid-template-columns: 150px auto 220px;
  gap: 60px;
  margin: 0 auto;
  place-content: center center;
  padding: 0 15px;
}

@media (max-width: 1300px) {
  .main-header .main-header-wrapper .main-header__inner {
    gap: unset;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media (max-width: 1199px) {
  .main-header .main-header-wrapper .main-header__inner {
    display: none;
  }
}

.main-header .main-header-wrapper .main-header__inner .logo {
  width: 150px;
}

.main-header .main-header-wrapper .main-header__inner .logo img {
  -o-object-fit: contain;
  object-fit: contain;
}

.main-header .main-header-wrapper .main-header__inner .right-part-holder {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.main-header .main-header-wrapper .main-header__inner .right-part-holder .main-nav {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 40px;
}

.main-header .main-header-wrapper .main-header__inner .right-part-holder .main-nav .menu-item.with-mega-menu {
  position: relative;
}

.main-header .main-header-wrapper .main-header__inner .right-part-holder .main-nav .menu-item.with-mega-menu:after {
  position: absolute;
  top: 78px;
  left: calc(50% - 15px);
  content: "";
  display: block;
  width: 30px;
  height: 15px;
  background-size: 30px 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/menu-triangle-white.svg);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
}

.main-header .main-header-wrapper .main-header__inner .right-part-holder .main-nav .menu-item.with-mega-menu.active:after {
  opacity: 1;
  visibility: visible;
}

.main-header .main-header-wrapper .main-header__inner .right-part-holder .main-nav .menu-item a {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.11;
  font-family: "Open Sans", sans-serif;
}

@media (max-width: 1199px) {
  .main-header .main-header-wrapper {
    position: relative;
    top: 0;
    background-color: #50A684;
  }
}

.main-header .container.mobile .mobile-header {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.main-header .container.mobile .mobile-header .mobile-header-button {
  display: none;
}

.main-header .container.mobile .mobile-header .logo-wrapper {
  width: 150px;
}

.main-header .container.mobile .mobile-header .logo-wrapper img {
  -o-object-fit: contain;
  object-fit: contain;
}

.main-header .container.mobile .mobile-header .mobile-wrapper {
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-align: center;
  align-items: center;
}

.main-header .container.mobile .mobile-header .mobile-wrapper .ham-icon-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  margin-left: 15px;
}

@media (max-width: 767px) {
  .main-header .container.mobile .mobile-header .mobile-wrapper .ham-icon-wrapper {
    margin-left: auto;
  }
}

.main-header .container.mobile .mobile-header .mobile-wrapper .ham-icon-wrapper .ham-icon {
  position: relative;
  width: 20px;
  height: 16px;
  -webkit-transform: rotate(0);
  transform: rotate(0);
  cursor: pointer;
  text-align: center;
}

.main-header .container.mobile .mobile-header .mobile-wrapper .ham-icon-wrapper .ham-icon span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #fff;
  opacity: 1;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.main-header .container.mobile .mobile-header .mobile-wrapper .ham-icon-wrapper .ham-icon span:nth-child(1) {
  top: 0;
}

.main-header .container.mobile .mobile-header .mobile-wrapper .ham-icon-wrapper .ham-icon span:nth-child(2),
.main-header .container.mobile .mobile-header .mobile-wrapper .ham-icon-wrapper .ham-icon span:nth-child(3) {
  top: 7px;
}

.main-header .container.mobile .mobile-header .mobile-wrapper .ham-icon-wrapper .ham-icon span:nth-child(4) {
  top: 14px;
}

.main-header .container.mobile .mobile-header .mobile-wrapper .ham-icon-wrapper .ham-icon.open:after {
  content: "";
  display: inline-block;
}

.main-header .container.mobile .mobile-header .mobile-wrapper .ham-icon-wrapper .ham-icon.open span {
  left: 0;
}

.main-header .container.mobile .mobile-header .mobile-wrapper .ham-icon-wrapper .ham-icon.open span:nth-child(1) {
  top: 7px;
  left: 50%;
  width: 0;
}

.main-header .container.mobile .mobile-header .mobile-wrapper .ham-icon-wrapper .ham-icon.open span:nth-child(2) {
  top: 7px;
  width: 100%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.main-header .container.mobile .mobile-header .mobile-wrapper .ham-icon-wrapper .ham-icon.open span:nth-child(3) {
  top: 7px;
  width: 100%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.main-header .container.mobile .mobile-header .mobile-wrapper .ham-icon-wrapper .ham-icon.open span:nth-child(4) {
  top: 7px;
  left: 50%;
  width: 0;
}

.mobile-nav-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 998;
  width: 100%;
  height: 100%;
  background-color: #50A684;
  overflow: scroll;
  padding-bottom: 200px;
}

.mobile-nav-container .mobile-nav-holder {
  transition: all 0.3s ease-in-out;
}

.mobile-nav-container .button-wrapper {
  text-align: center;
}

.mobile-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  padding: 0 0 30px;
}

.mobile-nav .menu-item {
  position: relative;
  border-top: 1px solid #e4e4e8;
  padding: 15px 0;
}

.mobile-nav .menu-item:last-child {
  border-bottom: 1px solid #e4e4e8;
}

.mobile-nav .menu-item:first-child {
  border-top: none;
}

.mobile-nav .menu-item a,
.mobile-nav .menu-item span {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  width: 100%;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  transition: all 0.3s ease-in-out;
}

.mobile-nav .menu-item.with-mega-menu .mob-item-wrap {
  position: relative;
}

.mobile-nav .menu-item.with-mega-menu .mob-item-wrap .submenu-arrow-wrapper {
  position: absolute;
  top: -15px;
  right: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 50px;
  height: 45px;
  cursor: pointer;
}

.mobile-nav .menu-item.with-mega-menu .mob-item-wrap .submenu-arrow-wrapper:after {
  content: "";
  display: block;
  transition: all 0.3s ease-in-out;
  width: 12px;
  height: 7px;
  background-size: 12px 7px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/chevron-down-white.svg);
}

.mobile-nav .menu-item.with-mega-menu.opened .submenu-arrow-wrapper:after {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.mobile-nav .menu-item span {
  padding: 0;
}

.mobile-nav .menu-item.menu-item-has-children > .arrow {
  display: block;
}

.mobile-nav .menu-item.menu-item-has-children > .arrow.active {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.mobile-nav .sub-menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  padding: 0 0 0 38px;
}

.mobile-nav .sub-menu .menu-item:first-child {
  border-top: none;
}

.mobile-nav .sub-menu .menu-item a {
  position: relative;
}

.mobile-nav .sub-menu .menu-item a:after {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  right: 7px;
  width: 10px;
  height: 6px;
  background-size: 10px 6px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/chevron-down.svg);
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.mobile-nav .sub-menu .menu-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.header-location {
  position: relative;
  padding-top: 260px;
  padding-bottom: 60px;
}

@media (max-width: 1200px) {
  .header-location {
    padding-top: 150px;
  }
}

@media (max-width: 991px) {
  .header-location {
    padding-top: 75px;
  }
}

.header-location .media-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 10;
}

.header-location.image {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.header-location.no-img {
  background-color: #3F8469;
}

.header-location .content-wrapper {
  position: relative;
  z-index: 10;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
  align-items: flex-end;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
}

.header-location .content-wrapper .title-wrapper .tax-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}

.header-location .content-wrapper .title-wrapper .tax-wrapper span {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
}

.header-location .content-wrapper .title-wrapper .title {
  margin-top: 20px;
}

.header-location .content-wrapper .title-wrapper .title h1 {
  color: #fff;
}

.header-location .content-wrapper .title-wrapper .subtitle span,
.header-location .content-wrapper .title-wrapper .subtitle p {
  color: #fff;
  font-size: 36px;
  font-style: italic;
  font-weight: 300;
  line-height: 1;
}

@media (max-width: 450px) {
  .header-location .content-wrapper .title-wrapper .subtitle span,
  .header-location .content-wrapper .title-wrapper .subtitle p {
    font-size: 28px;
  }
}

.header-location .content-wrapper .title-wrapper .subtitle p {
  margin-top: 30px;
  font-style: normal;
}

.header-location .content-wrapper .title-wrapper .description span,
.header-location .content-wrapper .title-wrapper .description p {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.55;
}

.header-location .content-wrapper .title-wrapper .description p {
  margin-top: 30px;
  font-style: normal;
}

.header-location .content-wrapper .title-wrapper .description p a {
  color: #fff;
}

.header-location .content-wrapper .link-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.header-location .content-wrapper .link-wrapper:before {
  content: "";
  display: block;
  width: 18px;
  height: 13px;
  background-size: 18px 13px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/arrow-left-white.svg);
}

.header-location .content-wrapper .link-wrapper .back-link {
  color: #fff;
  font-weight: 400;
  line-height: 1.94;
  font-family: "Open Sans", sans-serif;
}

.header-location.archive-products {
  padding-top: 180px;
  padding-bottom: 140px;
}

@media (max-width: 1200px) {
  .header-location.archive-products {
    padding-top: 100px;
  }
}

@media (max-width: 991px) {
  .header-location.archive-products {
    padding-top: 100px;
  }
}

.header-location.archive-products .content-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.header-location.archive-products .content-wrapper .title-wrapper .title {
  margin-top: 20px;
}

.header-location.archive-products .content-wrapper .title-wrapper .title h1 {
  text-align: center;
  margin-bottom: 35px;
}

.header-location.archive-products .content-wrapper .title-wrapper .description {
  text-align: center;
}

.header-location.archive-products .content-wrapper .title-wrapper .description p {
  color: #fff;
}

.header-location.archive-products .content-wrapper .title-wrapper .description p a {
  color: white;
}

.header-location.archive-products .content-wrapper .title-wrapper .description p strong {
  color: inherit;
}

.header-section-home {
  position: relative;
  height: 85vh;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 991px) {
  .header-section-home {
    height: 60vh;
  }
}

.header-section-home .media-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 10;
}

.header-section-home .media-wrapper-video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 5;
  overflow: hidden;
}

.header-section-home .media-wrapper-video video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.header-section-home .container {
  position: relative;
  z-index: 15;
  height: 100%;
}

.header-section-home .container .row {
  height: 100%;
}

.header-section-home .container .header-home-wrapper {
  height: 100%;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.header-section-home .container .header-home-wrapper .header-home-title-wrapper {
  margin-bottom: 45px;
}

.header-section-home .container .header-home-wrapper .header-home-title-wrapper .title {
  color: #fff;
  text-align: center;
  line-height: 1;
  margin-bottom: 20px;
}

.header-section-home .container .header-home-wrapper .header-home-title-wrapper .subtitle {
  color: #fff;
  font-size: 42px;
  font-weight: 300;
  line-height: 1.28;
  text-align: center;
}

@media (max-width: 450px) {
  .header-section-home .container .header-home-wrapper .header-home-title-wrapper .subtitle {
    font-size: 30px;
  }
}

.header-section-home .container .header-home-wrapper.search-bar {
  position: relative;
  bottom: -42px;
}

.header-section-home .container .header-home-wrapper.search-bar .header-home-title-wrapper {
  margin-bottom: 77px;
}

@media (max-width: 991px) {
  .header-section-home .container .header-home-wrapper.search-bar .header-home-title-wrapper {
    margin-bottom: 30px;
  }
}

.header-section-home .container .header-home-wrapper.search-bar .header-home-search-wrapper {
  max-width: 815px;
  border-radius: 3px;
  background: #DEDEDE;
  width: 100%;
  padding: 22px 32px;
}

@media (max-width: 991px) {
  .header-section-home .container .header-home-wrapper.search-bar .header-home-search-wrapper {
    padding: 10px 15px;
  }
}

.header-section-home .container .header-home-wrapper.search-bar .header-home-search-wrapper .search-form {
  display: grid;
  grid-template-columns: 1fr 120px;
  grid-gap: 34px;
}

@media (max-width: 991px) {
  .header-section-home .container .header-home-wrapper.search-bar .header-home-search-wrapper .search-form {
    grid-template-columns: 1fr;
    grid-gap: 0;
  }
}

.header-section-home .container .header-home-wrapper.search-bar .header-home-search-wrapper .search-form input {
  border: none;
  outline: none;
  padding: 11px 15px 12px 50px;
  color: #5F7577;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.22;
  width: 20px;
  height: 21px;
  background-size: 20px 21px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/search-icon.svg);
  width: 100%;
  height: 50px;
  background-position: 2% 50%;
}

@media (max-width: 991px) {
  .header-section-home .container .header-home-wrapper.search-bar .header-home-search-wrapper .search-form input {
    padding: 11px 83px 12px 30px;
  }
}

@media (max-width: 450px) {
  .header-section-home .container .header-home-wrapper.search-bar .header-home-search-wrapper .search-form input {
    font-size: 16px;
  }
}

.header-section-home .container .header-home-wrapper.search-bar .header-home-search-wrapper .search-form button {
  border-radius: 3px;
  border: 2px solid #11A4DD;
  background: #11A4DD;
  color: #fff;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 991px) {
  .header-section-home .container .header-home-wrapper.search-bar .header-home-search-wrapper .search-form button {
    position: absolute;
    right: 10px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: 50px;
    padding: 0 10px;
    margin: 0 auto;
  }
}

.header-section-home .container .header-home-wrapper.search-bar .header-home-search-wrapper .search-form button:hover {
  background-color: #0A99D1 !important;
  border: 2px solid #0A99D1 !important;
}

.header-themas {
  background-color: #3F8469;
  padding-top: 260px;
}

.header-themas .content-wrapper {
  padding-bottom: 75px;
}

@media (max-width: 991px) {
  .header-themas .content-wrapper {
    padding-bottom: 40px;
  }
}

.header-themas .content-wrapper .content-title .title {
  color: #fff;
  margin-bottom: 0;
}

.header-themas .content-wrapper .content-title .subtitle {
  color: #fff;
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
}

.header-themas .content-wrapper .button-wrapper {
  margin-top: 25px;
}

@media (max-width: 991px) {
  .header-themas .content-wrapper .content-desc {
    margin-top: 20px;
  }
}

.header-themas .content-wrapper .content-desc p {
  color: #fff;
  font-weight: 300;
  margin-bottom: 30px;
}

.header-themas .content-wrapper .content-desc p a {
  color: white;
}

.header-themas .content-wrapper .content-desc p strong {
  color: inherit;
}

.header-themas .content-wrapper .content-desc p:last-of-type {
  margin-bottom: 0;
}

.header-themas .content-wrapper .content-desc strong {
  font-weight: 400;
}

.header-themas .content-media .media-wrapper {
  position: relative;
  width: 100%;
  height: 470px;
  border-radius: 4px;
  margin-bottom: -90px;
}

@media (max-width: 991px) {
  .header-themas .content-media .media-wrapper {
    margin-bottom: -50px;
  }
}

@media (max-width: 991px) {
  .header-themas .content-media .media-wrapper {
    height: 250px;
  }
}

.header-themas .content-media .media-wrapper:before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 5;
}

.header-themas .content-media .media-wrapper img,
.header-themas .content-media .media-wrapper video {
  border-radius: 4px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.header-default {
  background-color: #3F8469;
  padding-top: 160px;
}

@media (max-width: 991px) {
  .header-default {
    padding-top: 60px;
  }
}

.header-default .container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 75px;
  padding-bottom: 120px;
}

@media (max-width: 991px) {
  .header-default .container {
    padding-bottom: 60px;
  }
}

.header-default .container.position-bottom {
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.header-default .content-media .media-wrapper {
  position: relative;
  width: 100%;
  height: 470px;
  border-radius: 4px 4px 0px 0px;
}

@media (max-width: 991px) {
  .header-default .content-media .media-wrapper {
    height: 250px;
  }
}

.header-default .content-media .media-wrapper:before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 4px 4px 0px 0px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 5;
}

.header-default .content-media .media-wrapper img,
.header-default .content-media .media-wrapper video {
  border-radius: 4px 4px 0px 0px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.header-default .content-wrapper .content-title .title {
  color: #fff;
  margin-bottom: 0;
}

.header-default .content-wrapper .content-title .subtitle {
  display: block;
  margin-top: 20px;
  color: #fff;
  font-size: 32px;
  font-style: italic;
  font-weight: 300;
  line-height: 1;
}

.header-default .content-wrapper .button-wrapper {
  margin-top: 25px;
}

.header-default .content-wrapper .button-wrapper .btn.default:hover span {
  color: #fff;
}

@media (max-width: 991px) {
  .header-default .content-wrapper .content-desc {
    margin-top: 20px;
  }
}

.header-default .content-wrapper .content-desc p {
  color: #fff;
  font-weight: 300;
  margin-bottom: 30px;
}

.header-default .content-wrapper .content-desc p strong {
  color: inherit;
}

.header-default .content-wrapper .content-desc p:last-of-type {
  margin-bottom: 0;
}

.header-default .content-wrapper .content-desc p a {
  color: white;
}

.header-default .content-wrapper .content-desc ul li {
  color: #fff;
  font-weight: 300;
}

.header-default .content-wrapper .content-desc ul li::marker {
  color: #fff;
}

.header-default .content-wrapper .content-desc strong {
  font-weight: 400;
}

.header-blog {
  background-color: #3F8469;
}

.header-blog .header-blog-wrapper {
  padding: 225px 0 50px;
}

.header-blog .header-blog-wrapper .header-blog-taxonomies {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
}

.header-blog .header-blog-wrapper .header-blog-taxonomies .header-blog-tax {
  border-radius: 3px;
  background: #50A684;
  padding: 1px 15px;
}

.header-blog .header-blog-wrapper .header-blog-taxonomies .header-blog-tax span {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.75;
}

.header-blog .header-blog-wrapper .header-blog-title h1 {
  text-align: center;
  color: #fff;
}

.header-blog .header-blog-wrapper .header-blog-date {
  margin-top: 20px;
  text-align: center;
}

.header-blog .header-blog-wrapper .header-blog-date span {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}

.main-footer {
  overflow: hidden;
  display: grid;
  background-color: #3F8469;
  padding: 70px 0 40px;
}

.main-footer .footer-main {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.main-footer .footer-main .footer-column {
  margin-right: 10px;
  width: 210px;
  padding-top: 50px;
}

.main-footer .footer-main .footer-column.contact-column {
  margin-right: 20px;
  padding-top: 0;
}

.main-footer .footer-main .footer-column.contact-column .footer-logo {
  width: 205px;
  height: 67px;
  margin-bottom: 70px;
}

.main-footer .footer-main .footer-column.contact-column .footer-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.main-footer .footer-main .footer-column.contact-column .footer-contact-links {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.main-footer .footer-main .footer-column.contact-column .footer-contact-links .footer-contact-link .contact-link {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.66;
  font-family: "Open Sans", sans-serif;
}

.main-footer .footer-main .footer-column .column-title {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.16;
  margin-bottom: 25px;
}

.main-footer .footer-main .footer-column .column-title-link {
  color: #fff;
}

.main-footer .footer-main .footer-column .column-title-link:hover {
  text-decoration: underline;
  color: #fff;
}

.main-footer .footer-main .footer-column .column-links {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.main-footer .footer-main .footer-column .column-links .contact-link {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
}

.main-footer .footer-main .footer-column:last-of-type {
  margin-right: 0;
}

.main-footer .footer-bottom {
  padding-top: 45px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
}

.main-footer .footer-bottom .footer-bottom-left {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 45px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.main-footer .footer-bottom .footer-bottom-left .copyright {
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.87;
}

.main-footer .footer-bottom .footer-bottom-left .copyright span {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
  font-weight: inherit;
  font-style: italic;
}

.main-footer .footer-bottom .footer-bottom-left .footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 45px;
}

.main-footer .footer-bottom .footer-bottom-left .footer-nav li a {
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.87;
}

.main-footer .footer-bottom .footer-socials {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
}

.main-footer .footer-bottom .footer-socials .social {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  text-decoration: none;
  height: 35px;
  width: 35px;
  border-radius: 5px;
  background: transparent;
  transition: all 0.3s ease-in-out;
}

.main-footer .footer-bottom .footer-socials .social:before,
.main-footer .footer-bottom .footer-socials .social:after {
  content: "";
  display: inline-block;
  transition: all 0.3s ease-in-out;
}

.main-footer .footer-bottom .footer-socials .social.icon-facebook:before {
  width: 15px;
  height: 28px;
  background-size: 15px 28px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/facebook-white.svg);
}

.main-footer .footer-bottom .footer-socials .social.icon-linkedin:before {
  width: 24px;
  height: 26px;
  background-size: 24px 26px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/linkedin-white.svg);
}

.main-footer .footer-bottom .footer-socials .social.icon-youtube:before {
  width: 30px;
  height: 20px;
  background-size: 30px 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/youtube-white.svg);
}

.main-footer .footer-bottom .footer-socials .social.icon-instagram:before {
  width: 25px;
  height: 28px;
  background-size: 25px 28px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/instagram-white.svg);
}

.main-footer .footer-bottom .footer-socials .social.icon-tiktok:before {
  width: 24px;
  height: 28px;
  background-size: 24px 28px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/tiktok-white.svg);
}

.main-footer .footer-bottom .footer-socials .social:hover.icon-facebook:before {
  width: 15px;
  height: 28px;
  background-size: 15px 28px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/facebook-black.svg);
}

.main-footer .footer-bottom .footer-socials .social:hover.icon-linkedin:before {
  width: 24px;
  height: 26px;
  background-size: 24px 26px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/linkedin-black.svg);
}

.main-footer .footer-bottom .footer-socials .social:hover.icon-youtube:before {
  width: 30px;
  height: 20px;
  background-size: 30px 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/youtube-black.svg);
}

.main-footer .footer-bottom .footer-socials .social:hover.icon-instagram:before {
  width: 25px;
  height: 28px;
  background-size: 25px 28px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/instagram-black.svg);
}

.main-footer .footer-bottom .footer-socials .social:hover.icon-tiktok:before {
  width: 24px;
  height: 28px;
  background-size: 24px 28px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/tiktok-black.svg);
}

.team-section {
  overflow: hidden;
}

.team-section .team-section-teams {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, 260px);
  gap: 30px;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

@media (max-width: 767px) {
  .team-section .team-section-teams {
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.team-section .team-section-teams.slider {
  display: block;
}

.team-section .team-title-wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.team-section .team-title-wrap .section-title {
  margin: 0;
}

.team-section .team-title-wrap .section-title .title {
  margin: 0;
}

.team-section .team-slider {
  position: relative;
}

.team-section .team-slider .slick-list {
  overflow: visible;
}

.team-section .team-slider .slick-list .slick-slide {
  opacity: 0;
}

.team-section .team-slider .slick-list .slick-slide.slick-active {
  opacity: 1;
}

.team-section .team-slider .slick-arrow {
  position: absolute;
  width: 18px;
  height: 14px;
  background-size: 18px 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/slider-arrow-right.svg);
  background-position: center;
  top: 137px;
  z-index: 10;
  width: 45px;
  height: 45px;
  border: none;
  outline: none;
  background-color: #11A4DD;
}

.team-section .team-slider .slick-arrow.slick-prev {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.team-section .team-slider .slick-arrow.slick-next {
  right: 0;
}

.team-section .team-slider .slick-list {
  margin: 0 -15px;
}

.team-section .team-slider .slick-slide {
  margin: 0 15px;
}

.cta-section .cta-section-wrapper {
  display: grid;
  grid-template-columns: calc(100% - 635px) 605px;
  gap: 30px;
}

@media (max-width: 991px) {
  .cta-section .cta-section-wrapper {
    grid-template-columns: 1fr;
  }
}

.cta-section .cta-section-wrapper .cta-section-title .section-buttons {
  margin-top: 25px;
}

.cta-section .cta-section-wrapper .cta-section-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 767px) {
  .cta-section .cta-section-wrapper .cta-section-images {
    grid-template-columns: 1fr;
  }
}

.cta-section .cta-section-wrapper .cta-section-images .cta-section-images-small {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 14px;
}

.cta-section .cta-section-wrapper .cta-section-images .cta-section-images-small .cta-section-block {
  border-radius: 3px;
  background: #50A684;
  padding: 51px 35px 81px;
}

.cta-section .cta-section-wrapper .cta-section-images .cta-section-images-small .cta-section-block h4 {
  color: #fff;
  font-size: 44px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0;
}

.cta-section .cta-section-wrapper .cta-section-images .cta-section-images-small .cta-section-image {
  width: 295px;
  height: 192px;
}

@media (max-width: 991px) {
  .cta-section .cta-section-wrapper .cta-section-images .cta-section-images-small .cta-section-image {
    width: auto;
    max-width: 295px;
    margin: auto;
  }
}

.cta-section .cta-section-wrapper .cta-section-images .cta-section-images-small .cta-section-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 3px;
}

.cta-section .cta-section-wrapper .cta-section-images .cta-section-images-big {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.cta-section .cta-section-wrapper .cta-section-images .cta-section-images-big .cta-section-image {
  width: 295px;
  height: 100%;
}

@media (max-width: 991px) {
  .cta-section .cta-section-wrapper .cta-section-images .cta-section-images-big .cta-section-image {
    width: auto;
    max-width: 295px;
    margin: auto;
  }
}

@media (max-width: 767px) {
  .cta-section .cta-section-wrapper .cta-section-images .cta-section-images-big .cta-section-image {
    max-height: 350px;
  }
}

.cta-section .cta-section-wrapper .cta-section-images .cta-section-images-big .cta-section-image img {
  border-radius: 3px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.cta-section .cta-section-wrapper .cta-section-single-image {
  position: relative;
}

.cta-section .cta-section-wrapper .cta-section-single-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 3px;
}

.cta-section .cta-section-wrapper .cta-section-single-youtube {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.cta-section .cta-section-wrapper .cta-section-single-youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.sections-holder .title-text-section {
  padding-bottom: 75px;
}

@media (max-width: 991px) {
  .sections-holder .title-text-section {
    padding-bottom: 40px;
  }
}

.sections-holder .title-text-section .title-text-section-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 170px;
}

@media (max-width: 991px) {
  .sections-holder .title-text-section .title-text-section-wrapper {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}

.tabs-section {
  position: relative;
  overflow: hidden;
}

.tabs-section:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 4px;
  background: #50A684;
  z-index: 5;
}

@media (max-width: 991px) {
  .tabs-section:before {
    content: "";
  }
}

.tabs-section .container .tabs-section-wrapper {
  position: relative;
  padding: 75px 0;
  border-radius: 4px;
  z-index: 10;
}

.tabs-section .container .tabs-section-wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  left: -10%;
  height: 100%;
  width: 120%;
  border-radius: 4px;
  background: #50A684;
  z-index: 5;
}

@media (max-width: 1350px) {
  .tabs-section .container .tabs-section-wrapper:before {
    width: 110%;
    left: -5%;
  }
}

@media (max-width: 991px) {
  .tabs-section .container .tabs-section-wrapper:before {
    content: none;
  }
}

.tabs-section .container .tabs-section-wrapper .tabs-section-title {
  text-align: center;
}

.tabs-section .container .tabs-section-wrapper .tabs-section-title .title,
.tabs-section .container .tabs-section-wrapper .tabs-section-title .subtitle {
  color: #fff;
  margin-bottom: 25px;
}

.tabs-section .container .tabs-section-wrapper .tabs-section-tabs-names {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 15px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 45px;
}

.tabs-section .container .tabs-section-wrapper .tabs-section-tabs-names .tab-name {
  border-radius: 3px;
  border: 1.2px solid #fff;
  padding: 0 15px;
  cursor: pointer;
}

.tabs-section .container .tabs-section-wrapper .tabs-section-tabs-names .tab-name span {
  color: var(--Wit, #FFF);
  text-align: center;
  font-family: "Source Sans 3", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 2.5;
}

.tabs-section .container .tabs-section-wrapper .tabs-section-tabs-names .tab-name.active {
  background-color: #11A4DD;
  border: 1.2px solid #11A4DD;
}

.tabs-section .container .tabs-section-wrapper .tabs-section-tabs-content .tab-content {
  border-radius: 3px;
  background: #fff;
  display: grid;
  grid-template-columns: 1fr;
}

.tabs-section .container .tabs-section-wrapper .tabs-section-tabs-content .tab-content .tab-content-wrapper {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 70px 50px;
}

@media (max-width: 767px) {
  .tabs-section .container .tabs-section-wrapper .tabs-section-tabs-content .tab-content .tab-content-wrapper {
    padding: 30px 20px;
  }
}

.tabs-section .container .tabs-section-wrapper .tabs-section-tabs-content .tab-content .tab-content-wrapper .tab-title {
  color: #5F7577;
  margin-bottom: 30px;
  line-height: 1.2;
}

.tabs-section .container .tabs-section-wrapper .tabs-section-tabs-content .tab-content .tab-content-wrapper .button-wrapper {
  padding-top: 35px;
}

.tabs-section .container .tabs-section-wrapper .tabs-section-tabs-content .tab-content .tab-content-image {
  height: 100%;
}

.tabs-section .container .tabs-section-wrapper .tabs-section-tabs-content .tab-content .tab-content-image img {
  width: 100%;
  height: 100%;
}

.tabs-section .container .tabs-section-wrapper .tabs-section-tabs-content .tab-content .tab-content-image .caption-image-wrapper {
  left: 20px;
}

.tabs-section .container .tabs-section-wrapper .tabs-section-tabs-content .tab-content.img {
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 991px) {
  .tabs-section .container .tabs-section-wrapper .tabs-section-tabs-content .tab-content.img {
    grid-template-columns: 1fr;
  }
}

.tabs-section .container .tabs-section-wrapper > * {
  position: relative;
  z-index: 20;
}

.logos-section {
  overflow: hidden;
}

.logos-section .section-title {
  text-align: center;
}

.logos-section .logos-slider {
  margin-top: 50px;
}

.logos-section .logos-slider .slick-list {
  margin: 0 -50px;
}

.logos-section .logos-slider .slick-list .slick-slide {
  margin: 0 50px;
}

.logos-section .logos-slider .slick-list .slick-slide .logo-wrapper {
  height: 100px;
  max-width: 155px;
}

.logos-section .logos-slider .slick-list .slick-slide .logo-wrapper img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.logos-section .logos-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 50px;
  -moz-column-gap: 50px;
  column-gap: 50px;
  margin-top: 50px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 10px;
}

.logos-section .logos-wrapper .logo-wrapper {
  height: 100px;
  max-width: 155px;
}

.logos-section .logos-wrapper .logo-wrapper img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.product-section {
  overflow: hidden;
  position: relative;
}

.product-section .section-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 200px;
  margin-bottom: 50px;
}

@media (max-width: 991px) {
  .product-section .section-content-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }
}

.product-section .slider-holder .product-slider .slick-list {
  margin: 0 -10px;
  overflow: visible;
}

.product-section .slider-holder .product-slider .slick-list .slick-slide {
  margin: 0 10px;
  width: 370px;
}

.product-section .slider-holder .product-slider .slick-list .slick-slide .slide {
  position: relative;
}

.product-section .slider-holder .product-slider .slick-list .slick-slide .slide .slide-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.product-section .slider-holder .product-slider .slick-list .slick-slide .slide .image-wrapper {
  position: relative;
  height: 470px;
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: 25px;
  border-radius: 3px;
  display: grid;
  place-content: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.product-section .slider-holder .product-slider .slick-list .slick-slide .slide .image-wrapper .slide-button {
  position: relative;
  z-index: 5;
  visibility: hidden;
  opacity: 0;
  padding: 7px 13px;
  border-radius: 2px;
  border: 2px solid #11A4DD;
  background: #11A4DD;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.3s ease-in-out;
}

.product-section .slider-holder .product-slider .slick-list .slick-slide .slide .image-wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}

.product-section .slider-holder .product-slider .slick-list .slick-slide .slide h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 8px;
  transition: all 0.5s ease-in-out;
  color: #5F7577;
}

.product-section .slider-holder .product-slider .slick-list .slick-slide .slide.link:hover .image-wrapper {
  border-radius: 3px;
}

.product-section .slider-holder .product-slider .slick-list .slick-slide .slide.link:hover .image-wrapper:before {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.15) 100%);
}

.product-section .slider-holder .product-slider .slick-list .slick-slide .slide.link:hover .image-wrapper .slide-button {
  visibility: visible;
  opacity: 1;
}

.product-section .slider-holder .product-slider .slick-list .slick-slide .slide .slide-desc {
  font-weight: 300;
}

.product-section .slider-controls-line {
  margin: 25px -10px 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.product-section .slider-controls-line .progress-holder {
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-right: 39px;
  position: relative;
  height: 3px;
  border-radius: 5px;
  background: rgba(18, 49, 71, 0.1);
}

.product-section .slider-controls-line .progress-holder .line {
  position: absolute;
  left: 0;
  top: 0;
  width: 30%;
  background-color: #11A4DD;
  height: 4px;
  transition: all 0.3s ease-in-out;
}

.product-section .slider-controls-line .slider-nav-holder {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}

.product-section .slider-controls-line .slider-nav-holder .slick-arrow {
  position: relative;
  border: none;
  background-color: #11A4DD;
  transition: all 0.5s ease-in-out;
  width: 45px;
  height: 45px;
}

.product-section .slider-controls-line .slider-nav-holder .slick-arrow:before {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 7px);
  left: calc(50% - 9px);
}

.product-section .slider-controls-line .slider-nav-holder .slick-arrow.slick-prev:before {
  width: 18px;
  height: 14px;
  background-size: 18px 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/slider-arrow-left.svg);
}

.product-section .slider-controls-line .slider-nav-holder .slick-arrow.slick-next:before {
  width: 18px;
  height: 14px;
  background-size: 18px 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/slider-arrow-right.svg);
}

.project-section {
  overflow: hidden;
  position: relative;
}

@media (max-width: 991px) {
  .project-section .container {
    padding-bottom: 60px;
  }
}

.project-section .section-title {
  text-align: center;
  margin-bottom: 45px !important;
}

.project-section .slider-holder {
  position: relative;
}

.project-section .slider-holder .slider-nav-holder .slick-arrow {
  position: absolute;
  top: calc(50% - 22.5px);
  border: none;
  background-color: #11A4DD;
  transition: all 0.5s ease-in-out;
  width: 45px;
  height: 45px;
  border-radius: 3px;
  z-index: 10;
}

.project-section .slider-holder .slider-nav-holder .slick-arrow:before {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 7px);
  left: calc(50% - 9px);
}

@media (max-width: 991px) {
  .project-section .slider-holder .slider-nav-holder .slick-arrow {
    top: unset;
    bottom: -55px;
  }
}

.project-section .slider-holder .slider-nav-holder .slick-arrow.slick-prev {
  left: 10px;
}

@media (max-width: 991px) {
  .project-section .slider-holder .slider-nav-holder .slick-arrow.slick-prev {
    left: unset;
    right: 50%;
  }
}

.project-section .slider-holder .slider-nav-holder .slick-arrow.slick-prev:before {
  width: 18px;
  height: 14px;
  background-size: 18px 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/slider-arrow-left.svg);
}

.project-section .slider-holder .slider-nav-holder .slick-arrow.slick-next {
  right: 10px;
}

@media (max-width: 991px) {
  .project-section .slider-holder .slider-nav-holder .slick-arrow.slick-next {
    left: unset;
    right: calc(50% - 50px);
  }
}

.project-section .slider-holder .slider-nav-holder .slick-arrow.slick-next:before {
  width: 18px;
  height: 14px;
  background-size: 18px 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/slider-arrow-right.svg);
}

.project-section .slider-holder .project-slider .slick-list {
  overflow: visible;
  margin: 0 -15px;
}

.project-section .slider-holder .project-slider .slick-list .slick-track {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.project-section .slider-holder .project-slider .slick-list .slick-slide {
  margin: 0 15px;
  width: 970px;
}

@media (max-width: 991px) {
  .project-section .slider-holder .project-slider .slick-list .slick-slide {
    width: 100%;
  }
}

.project-section .slider-holder .project-slider .slick-list .slick-slide .slide {
  position: relative;
  width: 100%;
  height: 575px;
}

@media (max-width: 991px) {
  .project-section .slider-holder .project-slider .slick-list .slick-slide .slide {
    height: auto;
  }
}

.project-section .slider-holder .project-slider .slick-list .slick-slide .slide .image-wrapper {
  width: 100%;
  height: 100%;
}

.project-section .slider-holder .project-slider .slick-list .slick-slide .slide .image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 991px) {
  .project-section .slider-holder .project-slider .slick-list .slick-slide .slide .image-wrapper img {
    height: 250px;
  }
}

.project-section .slider-holder .project-slider .slick-list .slick-slide .slide .image-wrapper .slide-text-wrapper {
  position: absolute;
  padding: 30px;
  border-radius: 3px 3px 0px 0px;
  background: #50A684;
  bottom: 0;
  right: 35px;
  height: auto;
  width: 55%;
}

@media (max-width: 991px) {
  .project-section .slider-holder .project-slider .slick-list .slick-slide .slide .image-wrapper .slide-text-wrapper {
    position: relative;
    left: 0;
    width: 100%;
    padding: 15px;
  }
}

.project-section .slider-holder .project-slider .slick-list .slick-slide .slide .image-wrapper .slide-text-wrapper h3 {
  color: #FFF;
  margin-bottom: 24px;
}

.project-section .slider-holder .project-slider .slick-list .slick-slide .slide .image-wrapper .slide-text-wrapper .slide-desc p {
  color: #fff;
  margin-bottom: 24px;
}

.project-section .slider-holder .project-slider .slick-list .slick-slide .slide .image-wrapper .slide-text-wrapper .slide-desc p strong {
  color: inherit;
}

.counter-section .counter-section-wrapper {
  width: 80%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 40px;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 991px) {
  .counter-section .counter-section-wrapper {
    width: 100%;
    grid-template-columns: 1fr;
  }
}

.counter-section .counter-section-wrapper .section-title {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .counter-section .counter-section-wrapper .section-title {
    text-align: center;
  }
}

.counter-section .counter-section-wrapper .section-title h2 {
  margin: 0;
}

.counter-section .counter-section-wrapper .counter-section-counters {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .counter-section .counter-section-wrapper .counter-section-counters {
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }
}

.counter-section .counter-section-wrapper .counter-section-counters .counter-section-counter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
}

.counter-section .counter-section-wrapper .counter-section-counters .counter-section-counter .counter-icon {
  width: 40px;
  height: 40px;
  border-radius: 3.333px;
  background: rgba(30, 89, 38, 0.15);
  display: grid;
  place-content: center;
}

.counter-section .counter-section-wrapper .counter-section-counters .counter-section-counter .counter-icon img {
  width: 25px;
  height: 20px;
  -o-object-fit: contain;
  object-fit: contain;
}

.counter-section .counter-section-wrapper .counter-section-counters .counter-section-counter .counter-number {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 14px;
  margin-top: 24px;
}

.counter-section .counter-section-wrapper .counter-section-counters .counter-section-counter .counter-number span {
  color: #1E5926;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 80px;
  font-style: normal;
  font-weight: 700;
  line-height: 0.73;
}

.counter-section .counter-section-wrapper .counter-section-counters .counter-section-counter .counter-text p {
  color: #5F7577;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.16;
  margin: 0;
}

.template-section .template-section-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 170px;
}

@media (max-width: 991px) {
  .template-section .template-section-wrapper {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}

.template-section .template-section-media {
  margin-top: 90px;
}

.template-section .template-section-media .media-wrapper.images {
  display: grid;
  grid-template-columns: 1fr;
}

.template-section .template-section-media .media-wrapper.images.count-2 {
  grid-template-columns: 40% 57%;
  grid-gap: 30px;
}

@media (max-width: 767px) {
  .template-section .template-section-media .media-wrapper.images.count-2 {
    grid-template-columns: 1fr;
  }
}

.template-section .template-section-media .media-wrapper.images .image-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 3px;
  max-height: 470px;
}

@media (max-width: 991px) {
  .template-section .template-section-media .media-wrapper.images .image-wrapper {
    height: 350px;
  }
}

.template-section .template-section-media .media-wrapper.images .image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 3px;
}

.template-section .template-section-media .media-wrapper.video {
  width: 100%;
  height: 100%;
  max-height: 470px;
  border-radius: 3px;
}

@media (max-width: 991px) {
  .template-section .template-section-media .media-wrapper.video {
    height: 350px;
  }
}

.template-section .template-section-media .media-wrapper.video img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 3px;
}

.template-section .template-section-media .media-wrapper.video iframe {
  height: 470px;
}

@media (max-width: 991px) {
  .template-section .template-section-media .media-wrapper.video iframe {
    height: 350px;
  }
}

.location-section {
  padding: 125px 0 0;
}

.location-section .introduction-content-part {
  display: grid;
  grid-template-columns: 30% 55%;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .location-section .introduction-content-part {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.location-section .introduction-content-part .introduction-title-wrapper .title {
  color: #5F7577;
  margin-bottom: 30px;
}

.location-section .introduction-content-part .introduction-title-wrapper .title strong {
  color: #1E5926;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
}

.location-section .introduction-content-part .introduction-content-wrapper p {
  margin-bottom: 30px;
}

.location-section .introduction-content-part .introduction-content-wrapper p strong {
  font-weight: 400;
}

.location-section .introduction-content-part .introduction-content-wrapper p:last-of-type {
  margin-bottom: 0;
}

.location-section .introduction-content-part .introduction-content-wrapper .product-team-member-member,
.location-section .introduction-content-part .introduction-content-wrapper .introduction-team-member {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 100px 1fr;
  grid-gap: 40px;
}

.location-section .introduction-content-part .introduction-content-wrapper .product-team-member-member .team-member-image,
.location-section .introduction-content-part .introduction-content-wrapper .introduction-team-member .team-member-image {
  width: 100px;
  height: 100px;
  border-radius: 4px;
}

.location-section .introduction-content-part .introduction-content-wrapper .product-team-member-member .team-member-image img,
.location-section .introduction-content-part .introduction-content-wrapper .introduction-team-member .team-member-image img {
  border-radius: 4px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.location-section .introduction-content-part .introduction-content-wrapper .product-team-member-member .team-member-image.no-img,
.location-section .introduction-content-part .introduction-content-wrapper .introduction-team-member .team-member-image.no-img {
  background-color: #50A684;
}

.location-section .introduction-content-part .introduction-content-wrapper .product-team-member-member .team-member-content .team-member-taxonomies,
.location-section .introduction-content-part .introduction-content-wrapper .introduction-team-member .team-member-content .team-member-taxonomies {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.location-section .introduction-content-part .introduction-content-wrapper .product-team-member-member .team-member-content .team-member-taxonomies .taxonomy,
.location-section .introduction-content-part .introduction-content-wrapper .introduction-team-member .team-member-content .team-member-taxonomies .taxonomy {
  color: #50A684;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}

.location-section .introduction-content-part .introduction-content-wrapper .product-team-member-member .team-member-content .team-member-taxonomies .separator,
.location-section .introduction-content-part .introduction-content-wrapper .introduction-team-member .team-member-content .team-member-taxonomies .separator {
  color: #50A684;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
  margin: 0 5px;
}

.location-section .introduction-content-part .introduction-content-wrapper .product-team-member-member .team-member-content .team-member-title h4,
.location-section .introduction-content-part .introduction-content-wrapper .introduction-team-member .team-member-content .team-member-title h4 {
  color: #5F7577;
  margin-bottom: 0;
}

.location-section .introduction-content-part .introduction-content-wrapper .product-team-member-member .team-member-content .team-member-contact-info,
.location-section .introduction-content-part .introduction-content-wrapper .introduction-team-member .team-member-content .team-member-contact-info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
  margin-top: 5px;
}

.location-section .introduction-content-part .introduction-content-wrapper .product-team-member-member .team-member-content .team-member-contact-info .team-contact,
.location-section .introduction-content-part .introduction-content-wrapper .introduction-team-member .team-member-content .team-member-contact-info .team-contact {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.location-section .introduction-content-part .introduction-content-wrapper .product-team-member-member .team-member-content .team-member-contact-info .team-contact span,
.location-section .introduction-content-part .introduction-content-wrapper .product-team-member-member .team-member-content .team-member-contact-info .team-contact a,
.location-section .introduction-content-part .introduction-content-wrapper .introduction-team-member .team-member-content .team-member-contact-info .team-contact span,
.location-section .introduction-content-part .introduction-content-wrapper .introduction-team-member .team-member-content .team-member-contact-info .team-contact a {
  color: #5F7577;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}

.location-section .introduction-content-part .introduction-content-wrapper .product-team-member-member .team-member-content .team-member-contact-info .team-contact.contact-phone:before,
.location-section .introduction-content-part .introduction-content-wrapper .introduction-team-member .team-member-content .team-member-contact-info .team-contact.contact-phone:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-phone-blue.svg);
}

.location-section .introduction-content-part .introduction-content-wrapper .product-team-member-member .team-member-content .team-member-contact-info .team-contact.contact-email:before,
.location-section .introduction-content-part .introduction-content-wrapper .introduction-team-member .team-member-content .team-member-contact-info .team-contact.contact-email:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-email-blue.svg);
}

.location-section .introduction-content-part .introduction-content-wrapper .product-team-member-member .team-member-content .team-member-taxonomies .taxonomy {
  color: #fff;
}

.location-section .introduction-content-part .introduction-content-wrapper .product-team-member-member .team-member-content .team-member-taxonomies .separator {
  color: #fff;
}

.location-section .introduction-content-part .introduction-content-wrapper .product-team-member-member .team-member-content .team-member-title h4 {
  color: #fff;
}

.location-section .introduction-content-part .introduction-content-wrapper .product-team-member-member .team-member-content .team-member-contact-info .team-contact span,
.location-section .introduction-content-part .introduction-content-wrapper .product-team-member-member .team-member-content .team-member-contact-info .team-contact a {
  color: #fff;
}

.location-section .introduction-content-part .introduction-content-wrapper .product-team-member-member .team-member-content .team-member-contact-info .team-contact.contact-phone:before {
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-phone-white.svg);
}

.location-section .introduction-content-part .introduction-content-wrapper .product-team-member-member .team-member-content .team-member-contact-info .team-contact.contact-email:before {
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-email-white.svg);
}

.location-section .introduction-map-part {
  margin-top: 75px;
  display: grid;
  grid-template-columns: 1fr;
}

.location-section .introduction-map-part.image {
  grid-template-columns: 60% 40%;
  grid-gap: 30px;
}

@media (max-width: 991px) {
  .location-section .introduction-map-part.image {
    grid-template-columns: 1fr;
  }
}

.location-section .introduction-map-part .map-wrapper {
  position: relative;
  border-radius: 4px;
}

.location-section .introduction-map-part .map-wrapper .acf-map {
  height: 440px;
  width: 100%;
  border-radius: 4px;
}

@media (max-width: 767px) {
  .location-section .introduction-map-part .map-wrapper .acf-map {
    height: 350px;
  }
}

.location-section .introduction-map-part .map-wrapper .acf-map img {
  max-width: inherit !important;
}

.location-section .introduction-map-part .map-wrapper .location-text-wrapper {
  position: absolute;
  top: -40px;
  left: 30px;
  z-index: 5;
  padding: 25px 50px 25px 25px;
  background-color: #50A684;
  border-radius: 3px;
  max-width: 240px;
}

.location-section .introduction-map-part .map-wrapper .location-text-wrapper span {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.17;
}

.location-section .introduction-map-part .map-wrapper .location-map-content {
  position: absolute;
  bottom: 14px;
  left: 30px;
  z-index: 5;
  padding: 25px 40px 25px 30px;
  border-radius: 4px;
  border: 1px solid #DEDEDE;
  background: #fff;
}

@media (max-width: 991px) {
  .location-section .introduction-map-part .map-wrapper .location-map-content {
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 15px;
  }
}

.location-section .introduction-map-part .map-wrapper .location-map-content .location-taxonomies {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 5px;
}

.location-section .introduction-map-part .map-wrapper .location-map-content .location-taxonomies span {
  color: #50A684;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}

.location-section .introduction-map-part .map-wrapper .location-map-content .location-title {
  margin-bottom: 5px;
}

.location-section .introduction-map-part .map-wrapper .location-map-content .location-title h4 {
  color: #5F7577;
}

.location-section .introduction-map-part .map-wrapper .location-map-content .location-contact-info {
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  max-width: 400px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-align: center;
  align-items: center;
}

.location-section .introduction-map-part .map-wrapper .location-map-content .location-contact-info .location-contact {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}

.location-section .introduction-map-part .map-wrapper .location-map-content .location-contact-info .location-contact span,
.location-section .introduction-map-part .map-wrapper .location-map-content .location-contact-info .location-contact a {
  color: #5F7577;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}

.location-section .introduction-map-part .map-wrapper .location-map-content .location-contact-info .location-contact.contact-address {
  width: 100%;
}

.location-section .introduction-map-part .map-wrapper .location-map-content .location-contact-info .location-contact.contact-address:before {
  content: "";
  display: block;
  width: 12px;
  height: 16px;
  background-size: 12px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-map-pin-blue.svg);
}

.location-section .introduction-map-part .map-wrapper .location-map-content .location-contact-info .location-contact.contact-phone {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media (max-width: 991px) {
  .location-section .introduction-map-part .map-wrapper .location-map-content .location-contact-info .location-contact.contact-phone {
    width: 100%;
  }
}

.location-section .introduction-map-part .map-wrapper .location-map-content .location-contact-info .location-contact.contact-phone:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-phone-blue.svg);
}

@media (max-width: 991px) {
  .location-section .introduction-map-part .map-wrapper .location-map-content .location-contact-info .location-contact.contact-email {
    width: 100%;
  }
}

.location-section .introduction-map-part .map-wrapper .location-map-content .location-contact-info .location-contact.contact-email:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-email-blue.svg);
}

.location-section .introduction-map-part .map-wrapper .location-map-content .location-contact-info .location-contact.contact-post {
  width: 100%;
}

.location-section .introduction-map-part .map-wrapper .location-map-content .location-contact-info .location-contact.contact-post:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-post-blue.svg);
}

.location-section .introduction-map-part .map-wrapper .location-map-content .location-contact-info .location-contact.contact-btw {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media (max-width: 991px) {
  .location-section .introduction-map-part .map-wrapper .location-map-content .location-contact-info .location-contact.contact-btw {
    width: 100%;
  }
}

.location-section .introduction-map-part .map-wrapper .location-map-content .location-contact-info .location-contact.contact-btw:before {
  content: "BTW";
  color: #11A4DD;
  font-family: "Source Sans 3", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.75;
}

.location-section .introduction-map-part .map-wrapper .location-map-content .location-contact-info .location-contact.contact-kvk {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media (max-width: 991px) {
  .location-section .introduction-map-part .map-wrapper .location-map-content .location-contact-info .location-contact.contact-kvk {
    width: 100%;
  }
}

.location-section .introduction-map-part .map-wrapper .location-map-content .location-contact-info .location-contact.contact-kvk:before {
  content: "KVK";
  color: #11A4DD;
  font-family: "Source Sans 3", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.75;
}

.location-section .introduction-map-part .image-wrapper {
  border-radius: 4px;
}

.location-section .introduction-map-part .image-wrapper img {
  border-radius: 4px;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.default-text-section .section-content-wrapper {
  margin-bottom: 20px;
}

.default-text-section .section-content-wrapper .content-wrapper p {
  margin-bottom: 30px;
}

.default-text-section .content-row .content-wrapper p {
  margin-bottom: 5px;
}

.default-text-section .content-row .content-wrapper p:last-of-type {
  margin-bottom: 24px;
}

.themas-section .themas-section-wrapper .themas-section-title {
  text-align: center;
  margin-bottom: 30px;
}

.themas-section .themas-section-wrapper .themas-posts-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 991px) {
  .themas-section .themas-section-wrapper .themas-posts-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .themas-section .themas-section-wrapper .themas-posts-wrapper {
    grid-template-columns: 1fr;
  }
}

.themas-section .themas-section-wrapper .themas-posts-wrapper .themas-post {
  position: relative;
  border-radius: 8px;
  background: #50A684;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
  min-height: 370px;
  overflow: hidden;
  padding: 30px 10px;
}

@media (max-width: 991px) {
  .themas-section .themas-section-wrapper .themas-posts-wrapper .themas-post {
    grid-column: span 1 !important;
  }
}

.themas-section .themas-section-wrapper .themas-posts-wrapper .themas-post .post-link-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 15;
}

.themas-section .themas-section-wrapper .themas-posts-wrapper .themas-post .themas-post-heading {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 8px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.themas-section .themas-section-wrapper .themas-posts-wrapper .themas-post .themas-post-title-wrapper {
  position: relative;
  z-index: 10;
  text-align: center;
}

.themas-section .themas-section-wrapper .themas-posts-wrapper .themas-post .themas-post-title-wrapper .post-title {
  color: #fff;
  text-align: center;
}

.themas-section .themas-section-wrapper .themas-posts-wrapper .themas-post .themas-post-title-wrapper .post-subtitle {
  color: #fff;
  text-align: center;
  line-height: 1.55;
}

.themas-section .themas-section-wrapper .themas-posts-wrapper .themas-post .themas-post-title-wrapper .button-wrapper {
  margin-top: 20px;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  max-height: 0;
  transition: all 0.5s ease-in-out;
}

.themas-section .themas-section-wrapper .themas-posts-wrapper .themas-post:hover .themas-post-heading {
  visibility: visible;
  opacity: 1;
}

.themas-section .themas-section-wrapper .themas-posts-wrapper .themas-post:hover .button-wrapper {
  visibility: visible;
  opacity: 1;
  max-height: 60px;
}

.themas-section .themas-section-wrapper .button-wrapper {
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 50px;
}

@media (max-width: 991px) {
  .themas-section .themas-section-wrapper .button-wrapper {
    margin-top: 30px;
  }
}

.cta-brochure-section .cta-section-wrapper {
  width: 85%;
  background: #50A684;
  margin: 0 auto;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

@media (max-width: 991px) {
  .cta-brochure-section .cta-section-wrapper {
    grid-template-columns: 1fr;
    width: 100%;
  }
}

.cta-brochure-section .cta-section-wrapper.content-none {
  grid-template-columns: 1fr;
}

.cta-brochure-section .cta-section-wrapper .cta-section-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.cta-brochure-section .cta-section-wrapper .cta-section-youtube {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.cta-brochure-section .cta-section-wrapper .cta-section-youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.cta-brochure-section .cta-section-wrapper .cta-section-title .section-title .title {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
}

.cta-brochure-section .cta-section-wrapper .cta-section-title .section-description p {
  color: #fff;
}

.cta-brochure-section .cta-section-wrapper .cta-section-title .section-description p a {
  color: white;
}

.cta-brochure-section .cta-section-wrapper .cta-section-title .section-description p strong {
  color: inherit;
}

.cta-brochure-section .cta-section-wrapper .cta-section-title .button-wrapper {
  margin-top: 25px;
}

.form-section .form-section-wrapper {
  display: grid;
  grid-template-columns: calc(40% - 15px) calc(60% - 15px);
  gap: 30px;
}

@media (max-width: 991px) {
  .form-section .form-section-wrapper {
    grid-template-columns: 1fr;
  }
}

.form-section .form-section-wrapper .form-section-form {
  position: relative;
  border-radius: 3px;
  background: #50A684;
  padding: 40px 35px 30px;
  overflow: hidden;
}

@media (max-width: 991px) {
  .form-section .form-section-wrapper .form-section-form {
    padding: 20px 15px;
  }
}

.form-section .form-section-wrapper .form-section-form:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 5;
  top: 44px;
  left: -130%;
  width: 1193px;
  height: 668px;
  background-size: 1193px 668px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/form-icon-union.svg);
}

.form-section .form-section-wrapper .form-section-form .form-title {
  position: relative;
  z-index: 10;
}

.form-section .form-section-wrapper .form-section-form .form-title .title {
  color: white;
  margin-bottom: 30px;
}

.form-section .form-section-wrapper .form-section-form .form-wrapper {
  position: relative;
  z-index: 10;
}

.form-section .form-section-wrapper .form-section-form .form-wrapper .gform_wrapper.gform-theme .gfield_label,
.form-section .form-section-wrapper .form-section-form .form-wrapper .gform_wrapper.gform-theme .gform-field-label--type-sub {
  color: #fff;
}

.form-section .form-section-wrapper .form-section-form .form-wrapper .gform_wrapper.gform-theme .gfield--type-html {
  color: #fff;
}

.form-section .form-section-wrapper .form-section-form .form-wrapper .gform_wrapper.gform-theme .gfield--type-html p {
  display: block;
  color: #fff;
}

.form-section .form-section-wrapper .form-section-form .form-wrapper .gform_wrapper.gform-theme .gfield_checkbox .gchoice label,
.form-section .form-section-wrapper .form-section-form .form-wrapper .gform_wrapper.gform-theme .gfield_radio .gchoice label {
  color: #fff;
}

.form-section .form-section-wrapper .form-section-form .form-wrapper .gform_wrapper.gform-theme .gfield_checkbox .gchoice label:before,
.form-section .form-section-wrapper .form-section-form .form-wrapper .gform_wrapper.gform-theme .gfield_radio .gchoice label:before {
  background-color: #fff;
  border: 1px solid #fff;
}

.form-section .form-section-wrapper .form-section-form .form-wrapper .gform_wrapper.gform-theme .ginput_container_consent label {
  color: #fff;
}

.form-section .form-section-wrapper .form-section-form .form-wrapper .content-wrapper p {
  color: #fff;
}

.form-section .form-section-wrapper .form-section-form .form-wrapper .content-wrapper p strong {
  color: inherit;
}

.form-section .form-section-wrapper .form-section-form .form-wrapper .content-wrapper p a {
  color: white;
}

.form-section .form-section-wrapper .form-section-form .form-wrapper #form13205 table,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13456 table,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13455 table,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13255 table {
  width: 100%;
}

.form-section .form-section-wrapper .form-section-form .form-wrapper #form13205 table td,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13456 table td,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13455 table td,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13255 table td {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 991px) {
  .form-section .form-section-wrapper .form-section-form .form-wrapper #form13205 table td,
  .form-section .form-section-wrapper .form-section-form .form-wrapper #form13456 table td,
  .form-section .form-section-wrapper .form-section-form .form-wrapper #form13455 table td,
  .form-section .form-section-wrapper .form-section-form .form-wrapper #form13255 table td {
    grid-template-columns: 1fr;
  }
}

.form-section .form-section-wrapper .form-section-form .form-wrapper #form13205 table td #CNT21676,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13456 table td #CNT21676,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13455 table td #CNT21676,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13255 table td #CNT21676 {
  display: none;
}

.form-section .form-section-wrapper .form-section-form .form-wrapper #form13205 table td table:last-of-type,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13456 table td table:last-of-type,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13455 table td table:last-of-type,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13255 table td table:last-of-type {
  grid-column: span 2;
}

@media (max-width: 991px) {
  .form-section .form-section-wrapper .form-section-form .form-wrapper #form13205 table td table:last-of-type,
  .form-section .form-section-wrapper .form-section-form .form-wrapper #form13456 table td table:last-of-type,
  .form-section .form-section-wrapper .form-section-form .form-wrapper #form13455 table td table:last-of-type,
  .form-section .form-section-wrapper .form-section-form .form-wrapper #form13255 table td table:last-of-type {
    grid-column: 1;
  }
}

.form-section .form-section-wrapper .form-section-form .form-wrapper #form13205 table td table .mpLabelRow,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13456 table td table .mpLabelRow,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13455 table td table .mpLabelRow,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13255 table td table .mpLabelRow {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}

.form-section .form-section-wrapper .form-section-form .form-wrapper #form13205 table td table .mpLabelRow td,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13456 table td table .mpLabelRow td,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13455 table td table .mpLabelRow td,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13255 table td table .mpLabelRow td {
  grid-template-columns: 1fr;
}

.form-section .form-section-wrapper .form-section-form .form-wrapper #form13205 table td table .mpLabelRow .mpFormLabel,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13456 table td table .mpLabelRow .mpFormLabel,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13455 table td table .mpLabelRow .mpFormLabel,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13255 table td table .mpLabelRow .mpFormLabel {
  display: -ms-flexbox;
  display: flex;
}

.form-section .form-section-wrapper .form-section-form .form-wrapper #form13205 table td table .mpLabelRow .mpFormLabel label,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13456 table td table .mpLabelRow .mpFormLabel label,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13455 table td table .mpLabelRow .mpFormLabel label,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13255 table td table .mpLabelRow .mpFormLabel label {
  color: #fff !important;
}

.form-section .form-section-wrapper .form-section-form .form-wrapper #form13205 table td table .mpLabelRow .mandatorySign,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13456 table td table .mpLabelRow .mandatorySign,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13455 table td table .mpLabelRow .mandatorySign,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13255 table td table .mpLabelRow .mandatorySign {
  color: red;
  font-weight: bold;
}

.form-section .form-section-wrapper .form-section-form .form-wrapper #form13205 table td table .mpLabelRow label,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13456 table td table .mpLabelRow label,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13455 table td table .mpLabelRow label,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13255 table td table .mpLabelRow label {
  color: #fff !important;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
}

.form-section .form-section-wrapper .form-section-form .form-wrapper #form13205 table td table .mpLabelRow .sublabel,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13456 table td table .mpLabelRow .sublabel,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13455 table td table .mpLabelRow .sublabel,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13255 table td table .mpLabelRow .sublabel {
  display: none;
}

.form-section .form-section-wrapper .form-section-form .form-wrapper #form13205 table td table .mpLabelRow input,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13205 table td table .mpLabelRow textarea,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13456 table td table .mpLabelRow input,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13456 table td table .mpLabelRow textarea,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13455 table td table .mpLabelRow input,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13455 table td table .mpLabelRow textarea,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13255 table td table .mpLabelRow input,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13255 table td table .mpLabelRow textarea {
  background-color: #fff;
  border-radius: 3px;
  border: 1px solid #DEDEDE;
  color: #5F7577;
  font-size: 18px;
  font-weight: 300;
  outline: none;
  padding: 13px 22px;
  width: 100%;
}

.form-section .form-section-wrapper .form-section-form .form-wrapper #form13205 table td table .mpLabelRow input:focus,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13205 table td table .mpLabelRow textarea:focus,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13456 table td table .mpLabelRow input:focus,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13456 table td table .mpLabelRow textarea:focus,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13455 table td table .mpLabelRow input:focus,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13455 table td table .mpLabelRow textarea:focus,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13255 table td table .mpLabelRow input:focus,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13255 table td table .mpLabelRow textarea:focus {
  outline: none;
  box-shadow: none;
}

.form-section .form-section-wrapper .form-section-form .form-wrapper #form13205 table td table .mpLabelRow .submitCell,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13456 table td table .mpLabelRow .submitCell,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13455 table td table .mpLabelRow .submitCell,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13255 table td table .mpLabelRow .submitCell {
  margin-top: 20px;
}

.form-section .form-section-wrapper .form-section-form .form-wrapper #form13205 table td table .mpLabelRow .submitCell input,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13456 table td table .mpLabelRow .submitCell input,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13455 table td table .mpLabelRow .submitCell input,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13255 table td table .mpLabelRow .submitCell input {
  padding: 15px 25px !important;
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  border-radius: 3px !important;
  background-color: #11A4DD !important;
  border: 2px solid #11A4DD !important;
  transition: all 0.5s ease-in-out !important;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media (max-width: 767px) {
  .form-section .form-section-wrapper .form-section-form .form-wrapper #form13205 table td table .mpLabelRow .submitCell input,
  .form-section .form-section-wrapper .form-section-form .form-wrapper #form13456 table td table .mpLabelRow .submitCell input,
  .form-section .form-section-wrapper .form-section-form .form-wrapper #form13455 table td table .mpLabelRow .submitCell input,
  .form-section .form-section-wrapper .form-section-form .form-wrapper #form13255 table td table .mpLabelRow .submitCell input {
    font-size: 16px !important;
  }
}

.form-section .form-section-wrapper .form-section-form .form-wrapper #form13205 table td table .mpLabelRow .submitCell input:hover,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13456 table td table .mpLabelRow .submitCell input:hover,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13455 table td table .mpLabelRow .submitCell input:hover,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13255 table td table .mpLabelRow .submitCell input:hover {
  background-color: transparent !important;
  color: #fff !important;
}

.form-section .form-section-wrapper .form-section-form .form-wrapper #form13205 table td table .mpErrorRow td,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13456 table td table .mpErrorRow td,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13455 table td table .mpErrorRow td,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13255 table td table .mpErrorRow td {
  grid-template-columns: 1fr;
}

.form-section .form-section-wrapper .form-section-form .form-wrapper #form13205 #CNT21724,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13205 #CNT21725,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13205 #CNT21726,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13456 #CNT21724,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13456 #CNT21725,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13456 #CNT21726,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13455 #CNT21724,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13455 #CNT21725,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13455 #CNT21726,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13255 #CNT21724,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13255 #CNT21725,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13255 #CNT21726 {
  display: none;
}

.form-section .form-section-wrapper .form-section-form .form-wrapper #form13405 input,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13405 textarea,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13406 input,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13406 textarea,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form1345 input,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form1345 textarea,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13505 input,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13505 textarea,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13555 input,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13555 textarea {
  background-color: #fff;
  border-radius: 3px;
  border: 1px solid #DEDEDE;
  color: #5F7577;
  font-size: 18px;
  font-weight: 300;
  outline: none;
  padding: 13px 22px;
  width: 100%;
}

.form-section .form-section-wrapper .form-section-form .form-wrapper #form13405 input:focus,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13405 textarea:focus,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13406 input:focus,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13406 textarea:focus,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form1345 input:focus,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form1345 textarea:focus,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13505 input:focus,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13505 textarea:focus,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13555 input:focus,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13555 textarea:focus {
  outline: none;
  box-shadow: none;
}

.form-section .form-section-wrapper .form-section-form .form-wrapper #form13405 label,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13406 label,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form1345 label,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13505 label,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13555 label {
  color: #fff !important;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
}

.form-section .form-section-wrapper .form-section-form .form-wrapper #form13405 ul,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13406 ul,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form1345 ul,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13505 ul,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13555 ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-gap: 10px;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 991px) {
  .form-section .form-section-wrapper .form-section-form .form-wrapper #form13405 ul,
  .form-section .form-section-wrapper .form-section-form .form-wrapper #form13406 ul,
  .form-section .form-section-wrapper .form-section-form .form-wrapper #form1345 ul,
  .form-section .form-section-wrapper .form-section-form .form-wrapper #form13505 ul,
  .form-section .form-section-wrapper .form-section-form .form-wrapper #form13555 ul {
    grid-template-columns: 1fr;
  }
}

.form-section .form-section-wrapper .form-section-form .form-wrapper #form13405 ul #CNT21929,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13405 ul #CNT21937,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13406 ul #CNT21929,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13406 ul #CNT21937,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form1345 ul #CNT21929,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form1345 ul #CNT21937,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13505 ul #CNT21929,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13505 ul #CNT21937,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13555 ul #CNT21929,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13555 ul #CNT21937 {
  display: none;
}

.form-section .form-section-wrapper .form-section-form .form-wrapper #form13405 ul li .mpFormLabel,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13406 ul li .mpFormLabel,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form1345 ul li .mpFormLabel,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13505 ul li .mpFormLabel,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13555 ul li .mpFormLabel {
  display: -ms-flexbox;
  display: flex;
}

.form-section .form-section-wrapper .form-section-form .form-wrapper #form13405 ul li .mpFormLabel label,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13406 ul li .mpFormLabel label,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form1345 ul li .mpFormLabel label,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13505 ul li .mpFormLabel label,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13555 ul li .mpFormLabel label {
  color: #fff !important;
}

.form-section .form-section-wrapper .form-section-form .form-wrapper #form13405 ul li .mandatorySign,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13406 ul li .mandatorySign,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form1345 ul li .mandatorySign,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13505 ul li .mandatorySign,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13555 ul li .mandatorySign {
  color: red;
  font-weight: bold;
}

.form-section .form-section-wrapper .form-section-form .form-wrapper #form13405 ul li .sublabel,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13406 ul li .sublabel,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form1345 ul li .sublabel,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13505 ul li .sublabel,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13555 ul li .sublabel {
  display: none;
}

.form-section .form-section-wrapper .form-section-form .form-wrapper #form13405 ul li .submitCell,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13406 ul li .submitCell,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form1345 ul li .submitCell,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13505 ul li .submitCell,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13555 ul li .submitCell {
  margin-top: 20px;
}

.form-section .form-section-wrapper .form-section-form .form-wrapper #form13405 ul li .submitCell input,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13406 ul li .submitCell input,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form1345 ul li .submitCell input,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13505 ul li .submitCell input,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13555 ul li .submitCell input {
  padding: 15px 25px !important;
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  border-radius: 3px !important;
  background-color: #11A4DD !important;
  border: 2px solid #11A4DD !important;
  transition: all 0.5s ease-in-out !important;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media (max-width: 767px) {
  .form-section .form-section-wrapper .form-section-form .form-wrapper #form13405 ul li .submitCell input,
  .form-section .form-section-wrapper .form-section-form .form-wrapper #form13406 ul li .submitCell input,
  .form-section .form-section-wrapper .form-section-form .form-wrapper #form1345 ul li .submitCell input,
  .form-section .form-section-wrapper .form-section-form .form-wrapper #form13505 ul li .submitCell input,
  .form-section .form-section-wrapper .form-section-form .form-wrapper #form13555 ul li .submitCell input {
    font-size: 16px !important;
  }
}

.form-section .form-section-wrapper .form-section-form .form-wrapper #form13405 ul li .submitCell input:hover,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13406 ul li .submitCell input:hover,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form1345 ul li .submitCell input:hover,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13505 ul li .submitCell input:hover,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13555 ul li .submitCell input:hover {
  background-color: transparent !important;
  color: #fff !important;
}

.form-section .form-section-wrapper .form-section-form .form-wrapper #form13405 ul li:last-of-type,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13406 ul li:last-of-type,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form1345 ul li:last-of-type,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13505 ul li:last-of-type,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13555 ul li:last-of-type {
  grid-column: span 2;
}

@media (max-width: 991px) {
  .form-section .form-section-wrapper .form-section-form .form-wrapper #form13405 ul li:last-of-type,
  .form-section .form-section-wrapper .form-section-form .form-wrapper #form13406 ul li:last-of-type,
  .form-section .form-section-wrapper .form-section-form .form-wrapper #form1345 ul li:last-of-type,
  .form-section .form-section-wrapper .form-section-form .form-wrapper #form13505 ul li:last-of-type,
  .form-section .form-section-wrapper .form-section-form .form-wrapper #form13555 ul li:last-of-type {
    grid-column: 1;
  }
}

.form-section .form-section-wrapper .form-section-form .form-wrapper #form13405 .mpErrorSummary,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13406 .mpErrorSummary,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form1345 .mpErrorSummary,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13505 .mpErrorSummary,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13555 .mpErrorSummary {
  margin-bottom: 20px;
}

.form-section .form-section-wrapper .form-section-form .form-wrapper #form13405 .mpErrorSummary ul li,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13406 .mpErrorSummary ul li,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form1345 .mpErrorSummary ul li,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13505 .mpErrorSummary ul li,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13555 .mpErrorSummary ul li {
  color: #fff;
  font-size: 14px;
}

.form-section .form-section-wrapper .form-section-form .form-wrapper #form13455 #CNT21977,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13455 #CNT21978,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13455 #CNT21979 {
  display: none;
}

.form-section .form-section-wrapper .form-section-form .form-wrapper #form13456 #CNT21986,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13456 #CNT21987,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13456 #CNT21988 {
  display: none;
}

.form-section .form-section-wrapper .form-section-form .form-wrapper #form13505 #CNT22025,
.form-section .form-section-wrapper .form-section-form .form-wrapper #form13555 #CNT22025 {
  display: none;
}

.form-section .form-section-wrapper .form-section-form .form-wrapper .button-wrapper {
  margin-top: 20px;
}

.blog-section .section-content-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 40px;
}

@media (max-width: 991px) {
  .blog-section .section-content-wrapper {
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.blog-section .section-content-wrapper .section-title {
  max-width: 325px;
}

@media (max-width: 991px) {
  .blog-section .section-content-wrapper .section-title {
    max-width: unset;
  }
}

.blog-section .section-post-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 991px) {
  .blog-section .section-post-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .blog-section .section-post-wrapper {
    grid-template-columns: 1fr;
  }
}

.blog-section.grey .section-post-wrapper .blog-loop .blog-content {
  background-color: #F6FBF9;
}

.sections-holder section {
  padding-top: 125px;
  padding-bottom: 125px;
}

@media (max-width: 991px) {
  .sections-holder section {
    padding-top: 65px;
    padding-bottom: 65px;
  }
}

.sections-holder section .section-title {
  margin-bottom: 20px;
}

.sections-holder section .section-title h2.title {
  color: #5F7577;
}

.sections-holder section .section-title h2.title strong {
  color: #1E5926;
}

.sections-holder section .section-description p,
.sections-holder section .description p {
  margin-bottom: 20px;
}

.sections-holder section .section-description p:last-of-type,
.sections-holder section .description p:last-of-type {
  margin-bottom: 0;
}

.sections-holder section.no-top-padding {
  padding-top: 0 !important;
}

@media (max-width: 991px) {
  .sections-holder section.no-top-padding {
    padding-top: 35px !important;
  }
}

.sections-holder section.no-bottom-padding {
  padding-bottom: 0 !important;
}

@media (max-width: 991px) {
  .sections-holder section.no-bottom-padding {
    padding-bottom: 35px !important;
  }
}

.locations-archive-wrapper {
  padding-top: 125px;
  padding-bottom: 25px;
}

.locations-archive-wrapper .archive-title {
  margin-bottom: 30px;
}

.locations-archive-wrapper .archive-title h2 {
  color: #5F7577;
  font-size: 32px;
  font-weight: 700;
  line-height: 0.88;
}

.locations-archive-wrapper .archive-filters .filter-checkbox-bar {
  background-color: #50A684;
  padding: 30px;
  border-radius: 3px;
  margin-bottom: 30px;
}

.locations-archive-wrapper .archive-filters .filter-checkbox-bar .filter-name {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .locations-archive-wrapper .archive-filters .filter-checkbox-bar .filter-name {
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
}

.locations-archive-wrapper .archive-filters .filter-checkbox-bar .filter-name .filter-name-title {
  width: 18%;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .locations-archive-wrapper .archive-filters .filter-checkbox-bar .filter-name .filter-name-title {
    width: 100%;
  }
}

.locations-archive-wrapper .archive-filters .filter-checkbox-bar .filter-name .filter-checkbox-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 80%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  row-gap: 15px;
  -webkit-column-gap: 25px;
  -moz-column-gap: 25px;
  column-gap: 25px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .locations-archive-wrapper .archive-filters .filter-checkbox-bar .filter-name .filter-checkbox-list {
    width: 100%;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.locations-archive-wrapper .archive-filters .filter-checkbox-bar .filter-name .filter-checkbox-list .filter-checkbox-wrap label {
  position: relative;
  margin-bottom: 0;
  display: grid;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  grid-template-columns: 20px 1fr;
}

.locations-archive-wrapper .archive-filters .filter-checkbox-bar .filter-name .filter-checkbox-list .filter-checkbox-wrap label span {
  color: #fff;
  font-weight: 400;
}

.locations-archive-wrapper .archive-filters .filter-checkbox-bar .filter-name .filter-checkbox-list .filter-checkbox-wrap label .filter-checkbox {
  display: none;
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

.locations-archive-wrapper .archive-filters .filter-checkbox-bar .filter-name .filter-checkbox-list .filter-checkbox-wrap label .filter-checkbox:checked + .checkbox {
  width: 14px;
  height: 16px;
  background-size: 14px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/checkmark-blue.svg);
  width: 20px;
  height: 20px;
}

.locations-archive-wrapper .archive-filters .filter-checkbox-bar .filter-name .filter-checkbox-list .filter-checkbox-wrap label .checkbox {
  display: -ms-flexbox;
  display: flex;
  width: 20px;
  height: 20px;
  border-radius: 3.2px;
  border: 0px solid #1E5926;
  background: #fff;
  transition: all 0.3s ease-in-out;
}

.locations-archive-wrapper .archive-posts-wrapper {
  display: grid;
  grid-template-columns: 470px 1fr;
  -ms-flex-pack: justify;
  justify-content: space-between;
  grid-gap: 30px;
}

@media (max-width: 991px) {
  .locations-archive-wrapper .archive-posts-wrapper {
    grid-template-columns: 1fr;
  }
}

.locations-archive-wrapper .archive-posts-wrapper .col-posts {
  height: 670px;
  overflow: scroll;
}

@media (max-width: 991px) {
  .locations-archive-wrapper .archive-posts-wrapper .col-posts {
    height: 350px;
  }
}

.locations-archive-wrapper .archive-posts-wrapper .col-posts .posts-wrapper .posts-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}

.locations-archive-wrapper .archive-posts-wrapper .col-map .map-wrapper {
  border-radius: 4px;
}

.locations-archive-wrapper .archive-posts-wrapper .col-map .map-wrapper .acf-map {
  height: 670px;
  width: 100%;
  border-radius: 4px;
}

@media (max-width: 991px) {
  .locations-archive-wrapper .archive-posts-wrapper .col-map .map-wrapper .acf-map {
    height: 350px;
  }
}

.locations-archive-wrapper .archive-posts-wrapper .col-map .map-wrapper .acf-map img {
  max-width: inherit !important;
}

.locations-archive-wrapper .archive-posts-wrapper .col-map .map-wrapper .location-text-wrapper {
  position: absolute;
  top: -40px;
  left: 30px;
  z-index: 5;
  padding: 25px 50px 25px 25px;
  background-color: #50A684;
  border-radius: 3px;
  max-width: 240px;
}

.locations-archive-wrapper .archive-posts-wrapper .col-map .map-wrapper .location-text-wrapper span {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.17;
}

.locations-archive-wrapper .archive-posts-wrapper .col-map .map-wrapper .location-map-content {
  position: absolute;
  bottom: 14px;
  left: 30px;
  z-index: 5;
  padding: 25px 40px 25px 30px;
  border-radius: 4px;
  border: 1px solid #DEDEDE;
  background: #fff;
}

@media (max-width: 991px) {
  .locations-archive-wrapper .archive-posts-wrapper .col-map .map-wrapper .location-map-content {
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 15px;
  }
}

.locations-archive-wrapper .archive-posts-wrapper .col-map .map-wrapper .location-map-content .location-taxonomies {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 5px;
}

.locations-archive-wrapper .archive-posts-wrapper .col-map .map-wrapper .location-map-content .location-taxonomies span {
  color: #50A684;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}

.locations-archive-wrapper .archive-posts-wrapper .col-map .map-wrapper .location-map-content .location-title {
  margin-bottom: 5px;
}

.locations-archive-wrapper .archive-posts-wrapper .col-map .map-wrapper .location-map-content .location-title h4 {
  color: #5F7577;
}

.locations-archive-wrapper .archive-posts-wrapper .col-map .map-wrapper .location-map-content .location-contact-info {
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  max-width: 400px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-align: center;
  align-items: center;
}

.locations-archive-wrapper .archive-posts-wrapper .col-map .map-wrapper .location-map-content .location-contact-info .location-contact {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}

.locations-archive-wrapper .archive-posts-wrapper .col-map .map-wrapper .location-map-content .location-contact-info .location-contact span,
.locations-archive-wrapper .archive-posts-wrapper .col-map .map-wrapper .location-map-content .location-contact-info .location-contact a {
  color: #5F7577;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}

.locations-archive-wrapper .archive-posts-wrapper .col-map .map-wrapper .location-map-content .location-contact-info .location-contact.contact-address {
  width: 100%;
}

.locations-archive-wrapper .archive-posts-wrapper .col-map .map-wrapper .location-map-content .location-contact-info .location-contact.contact-address:before {
  content: "";
  display: block;
  width: 12px;
  height: 16px;
  background-size: 12px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-map-pin-blue.svg);
}

.locations-archive-wrapper .archive-posts-wrapper .col-map .map-wrapper .location-map-content .location-contact-info .location-contact.contact-phone {
  width: 35%;
}

@media (max-width: 991px) {
  .locations-archive-wrapper .archive-posts-wrapper .col-map .map-wrapper .location-map-content .location-contact-info .location-contact.contact-phone {
    width: 100%;
  }
}

.locations-archive-wrapper .archive-posts-wrapper .col-map .map-wrapper .location-map-content .location-contact-info .location-contact.contact-phone:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-phone-blue.svg);
}

@media (max-width: 991px) {
  .locations-archive-wrapper .archive-posts-wrapper .col-map .map-wrapper .location-map-content .location-contact-info .location-contact.contact-email {
    width: 100%;
  }
}

.locations-archive-wrapper .archive-posts-wrapper .col-map .map-wrapper .location-map-content .location-contact-info .location-contact.contact-email:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-email-blue.svg);
}

.single-projects {
  background-color: #F6FBF9;
}

.single-projects .projects-header {
  position: relative;
  height: 475px;
  background-color: #3F8469;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.single-projects .projects-header .media-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 5;
}

.single-projects .project-content {
  position: relative;
  z-index: 10;
}

.single-projects .project-main-content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 25%;
  grid-gap: 25px;
  border-radius: 3px;
  margin-top: -170px;
  margin-bottom: 50px;
}

@media (max-width: 991px) {
  .single-projects .project-main-content {
    grid-template-columns: 1fr;
  }
}

.single-projects .project-main-content .caption-image-wrapper.header-caption {
  left: 0;
  right: unset;
  bottom: unset;
  top: -30px;
}

.single-projects .project-main-content .project-content {
  overflow: hidden;
  border: 1px solid #DEDEDE;
  border-radius: 3px;
  padding: 55px 70px;
  background: #fff;
}

@media (max-width: 767px) {
  .single-projects .project-main-content .project-content {
    padding: 20px 30px;
  }
}

.single-projects .project-main-content .project-content .project-title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

.single-projects .project-main-content .project-content .project-title h1 {
  color: #5F7577;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.37;
}

.single-projects .project-main-content .project-content .project-title .project-location {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 5px;
  -ms-flex-align: center;
  align-items: center;
}

.single-projects .project-main-content .project-content .project-title .project-location span {
  color: #50A684;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
}

.single-projects .project-main-content .project-content .project-title .project-location .separator {
  height: 18px;
  width: 1px;
  background-color: #50A684;
}

.single-projects .project-main-content .project-content p {
  color: #000;
  margin-bottom: 30px;
}

.single-projects .project-main-content .project-content strong {
  color: #5F7577;
}

.single-projects .project-main-content .project-content h2 {
  font-size: 30px;
}

.single-projects .project-main-content .project-content .post-share {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 30px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 50px;
}

.single-projects .project-main-content .project-content .post-share .share-icons-box {
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.single-projects .project-main-content .project-content .post-share .share-icons-box .share-text {
  color: #5F7577;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.55;
  margin-right: 5px;
}

.single-projects .project-main-content .project-content .post-share .share-icons-box .share-icons .addtoany_list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.single-projects .project-main-content .project-content .post-share .share-icons-box .share-icons .addtoany_list > a {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 3px !important;
  padding: 0;
}

.single-projects .project-main-content .project-content .post-share .share-icons-box .share-icons .addtoany_list > a img {
  width: 22px;
  height: 22px;
}

.single-projects .project-main-content .project-content .post-share .share-icons-box .share-icons .addtoany_list > a .a2a_svg {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  width: 30px !important;
  height: 30px !important;
  border-radius: 3px !important;
  transition: all 0.3s ease-in-out;
}

.single-projects .project-main-content .project-content .post-share .share-icons-box .share-icons .addtoany_list > a .a2a_svg svg {
  width: 22px;
  height: 22px;
}

.single-projects .project-main-content .project-content .post-share .share-icons-box .share-icons .addtoany_list > a .a2a_svg svg path {
  transition: all 0.3s ease-in-out;
}

.single-projects .project-main-content .project-content .post-share .share-icons-box .share-icons .addtoany_list > a:hover .a2a_svg,
.single-projects .project-main-content .project-content .post-share .share-icons-box .share-icons .addtoany_list > a:focus .a2a_svg {
  opacity: 1;
}

.single-projects .project-main-content .project-content .post-share .share-icons-box .share-icons .addtoany_list > a:hover .a2a_svg svg path,
.single-projects .project-main-content .project-content .post-share .share-icons-box .share-icons .addtoany_list > a:focus .a2a_svg svg path {
  fill: #11A4DD;
}

.single-projects .project-main-content .project-content .post-share .share-icons-box .share-icons .addtoany_list > a:last-child {
  margin-right: 0;
}

.single-projects .project-main-content .project-content .post-share .back .link-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.single-projects .project-main-content .project-content .post-share .back .link-wrapper:before {
  content: "";
  display: block;
  width: 17px;
  height: 13px;
  background-size: 17px 13px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/arrow-right-blue.svg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.single-projects .project-main-content .project-content .post-share .back .link-wrapper .back-link {
  color: #11A4DD;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
}

.single-projects .project-main-content .project-sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 50px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.single-projects .project-main-content .project-sidebar .sidebar-slogan {
  padding: 20px 20px 24px;
  border-radius: 3px;
  background: #50A684;
}

.single-projects .project-main-content .project-sidebar .sidebar-slogan p {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.17;
}

.single-projects .project-main-content .project-sidebar .sidebar-slogan p strong {
  color: inherit;
}

.single-projects .project-main-content .project-sidebar .sidebar-team {
  padding: 25px;
  border-radius: 3px;
  border: 1px solid #DEDEDE;
  background: #fff;
}

.single-projects .project-main-content .project-sidebar .sidebar-team .team-image {
  width: 124px;
  height: 124px;
  border-radius: 3px;
  margin-bottom: 25px;
}

.single-projects .project-main-content .project-sidebar .sidebar-team .team-name {
  margin-bottom: 25px;
}

.single-projects .project-main-content .project-sidebar .sidebar-team .team-name span {
  color: #50A684;
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
}

.single-projects .project-main-content .project-sidebar .sidebar-team .team-name h5 {
  color: #5F7577;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0;
}

.single-projects .project-main-content .project-sidebar .sidebar-team .team-contact-wrapper {
  padding-top: 25px;
  border-top: 1px solid #DEDEDE;
}

.single-projects .project-main-content .project-sidebar .sidebar-team .team-contact-wrapper .team-member-contact-info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
}

.single-projects .project-main-content .project-sidebar .sidebar-team .team-contact-wrapper .team-member-contact-info .team-contact {
  display: grid;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  grid-template-columns: 16px 1fr;
}

.single-projects .project-main-content .project-sidebar .sidebar-team .team-contact-wrapper .team-member-contact-info .team-contact a {
  display: block;
  color: #5F7577;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}

.single-projects .project-main-content .project-sidebar .sidebar-team .team-contact-wrapper .team-member-contact-info .team-contact:before {
  content: "";
  display: block;
}

.single-projects .project-main-content .project-sidebar .sidebar-team .team-contact-wrapper .team-member-contact-info .team-contact.contact-email:before {
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-mail-blue.svg);
}

.single-projects .project-main-content .project-sidebar .sidebar-team .team-contact-wrapper .team-member-contact-info .team-contact.contact-phone:before {
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-phone-blue.svg);
}

.single-projects .project-main-content .project-sidebar .sidebar-team .team-contact-wrapper .team-member-contact-info .team-contact.contact-linkedin:before {
  width: 14px;
  height: 16px;
  background-size: 14px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-linkedin-blue.svg);
}

.single-projects .project-main-content .project-sidebar .sidebar-informations {
  border-radius: 3px;
  border: 1px solid #DEDEDE;
  background: #fff;
  padding: 23px 25px;
}

.single-projects .project-main-content .project-sidebar .sidebar-informations .info-title {
  color: #5F7577;
  font-size: 20px;
  line-height: 1;
  margin-bottom: 24px;
}

.single-projects .project-main-content .project-sidebar .sidebar-informations .sidebar-informations-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.single-projects .project-main-content .project-sidebar .sidebar-informations .sidebar-informations-wrapper .sidebar-information {
  display: grid;
  grid-template-columns: 1fr;
}

.single-projects .project-main-content .project-sidebar .sidebar-informations .sidebar-informations-wrapper .sidebar-information.icon {
  grid-template-columns: 20px 1fr;
  gap: 13px;
  -ms-flex-align: center;
  align-items: center;
}

.single-projects .project-main-content .project-sidebar .sidebar-informations .sidebar-informations-wrapper .sidebar-information .information-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.single-projects .project-main-content .project-sidebar .sidebar-informations .sidebar-informations-wrapper .sidebar-information .information-text span {
  color: #5F7577;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  display: block;
}

.archive-projects_pt .archive-posts-wrapper {
  margin-top: 75px;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 30px;
}

@media (max-width: 991px) {
  .archive-projects_pt .archive-posts-wrapper {
    grid-template-columns: 1fr;
  }
}

.archive-projects_pt .archive-posts-wrapper .col-filters .filter-checkbox-wrapper {
  border: 1px solid #DEDEDE;
  background: #FFF;
  padding: 25px;
}

.archive-projects_pt .archive-posts-wrapper .col-filters .filter-checkbox-wrapper .filter-line {
  border-bottom: 1px solid #DEDEDE;
}

.archive-projects_pt .archive-posts-wrapper .col-filters .filter-checkbox-wrapper .filter-line .filter-name {
  display: grid;
  grid-template-columns: 1fr 13px;
  gap: 10px;
  -ms-flex-align: start;
  align-items: flex-start;
  cursor: pointer;
  margin-bottom: 25px;
  margin-top: 25px;
}

.archive-projects_pt .archive-posts-wrapper .col-filters .filter-checkbox-wrapper .filter-line .filter-name span {
  color: #5F7577;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.22;
}

.archive-projects_pt .archive-posts-wrapper .col-filters .filter-checkbox-wrapper .filter-line .filter-name:after {
  content: "";
  display: block;
  width: 13px;
  height: 15px;
  background-size: 13px 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/arrow-top-grey.svg);
  transition: all 0.5s ease-in-out;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.archive-projects_pt .archive-posts-wrapper .col-filters .filter-checkbox-wrapper .filter-line .filter-name.open:after {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.archive-projects_pt .archive-posts-wrapper .col-filters .filter-checkbox-wrapper .filter-line .filter-checkboxes-holder {
  display: block;
}

@media (max-width: 991px) {
  .archive-projects_pt .archive-posts-wrapper .col-filters .filter-checkbox-wrapper .filter-line .filter-checkboxes-holder {
    display: none;
  }
}

.archive-projects_pt .archive-posts-wrapper .col-filters .filter-checkbox-wrapper .filter-line .filter-checkboxes {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: start;
  align-items: flex-start;
  padding-bottom: 25px;
}

.archive-projects_pt .archive-posts-wrapper .col-filters .filter-checkbox-wrapper .filter-line .filter-checkboxes .checkbox-wrapper {
  display: grid;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  grid-template-columns: 20px 1fr;
}

.archive-projects_pt .archive-posts-wrapper .col-filters .filter-checkbox-wrapper .filter-line .filter-checkboxes .checkbox-wrapper input {
  display: none;
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

.archive-projects_pt .archive-posts-wrapper .col-filters .filter-checkbox-wrapper .filter-line .filter-checkboxes .checkbox-wrapper input:checked + .checkbox {
  background-color: #1E5926;
}

.archive-projects_pt .archive-posts-wrapper .col-filters .filter-checkbox-wrapper .filter-line .filter-checkboxes .checkbox-wrapper .checkbox {
  display: -ms-flexbox;
  display: flex;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 0.5px solid #1E5926;
  background: #FFF;
  transition: all 0.3s ease-in-out;
}

.archive-projects_pt .archive-posts-wrapper .col-filters .filter-checkbox-wrapper .filter-line .filter-checkboxes .checkbox-wrapper .text {
  color: #2C2A29;
  font-size: 18px;
  font-weight: 400;
  line-height: 29px;
}

.archive-projects_pt .archive-posts-wrapper .col-filters .filter-checkbox-wrapper .filter-line:first-of-type .filter-name {
  margin-top: 0;
}

.archive-projects_pt .archive-posts-wrapper .col-posts {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
}

.archive-projects_pt .archive-posts-wrapper .col-posts .posts-wrapper .projects-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 45px;
}

.single-themas .sections-holder {
  padding-top: 90px;
}

.archive-themas_pt .archive-wrapper {
  padding: 125px 0 0;
}

.archive-themas_pt .archive-wrapper .archive-post-wrapper {
  margin-bottom: 30px;
}

.archive-themas_pt .archive-wrapper .archive-post-wrapper .posts-title {
  color: #5F7577;
  padding-bottom: 50px;
}

.archive-themas_pt .archive-wrapper .archive-post-wrapper .themas-posts-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 991px) {
  .archive-themas_pt .archive-wrapper .archive-post-wrapper .themas-posts-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .archive-themas_pt .archive-wrapper .archive-post-wrapper .themas-posts-wrapper {
    grid-template-columns: 1fr;
  }
}

.archive-themas_pt .archive-wrapper .archive-post-wrapper .themas-posts-wrapper .themas-post {
  position: relative;
  border-radius: 8px;
  background: #50A684;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
  min-height: 370px;
  overflow: hidden;
  padding: 30px 10px;
}

@media (max-width: 991px) {
  .archive-themas_pt .archive-wrapper .archive-post-wrapper .themas-posts-wrapper .themas-post {
    grid-column: span 1 !important;
  }
}

.archive-themas_pt .archive-wrapper .archive-post-wrapper .themas-posts-wrapper .themas-post .post-link-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 15;
}

.archive-themas_pt .archive-wrapper .archive-post-wrapper .themas-posts-wrapper .themas-post .themas-post-heading {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 8px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.archive-themas_pt .archive-wrapper .archive-post-wrapper .themas-posts-wrapper .themas-post .themas-post-title-wrapper {
  position: relative;
  z-index: 10;
  text-align: center;
}

.archive-themas_pt .archive-wrapper .archive-post-wrapper .themas-posts-wrapper .themas-post .themas-post-title-wrapper .post-title {
  color: #fff;
  text-align: center;
}

.archive-themas_pt .archive-wrapper .archive-post-wrapper .themas-posts-wrapper .themas-post .themas-post-title-wrapper .post-subtitle {
  color: #fff;
  text-align: center;
  line-height: 1.55;
}

.archive-themas_pt .archive-wrapper .archive-post-wrapper .themas-posts-wrapper .themas-post .themas-post-title-wrapper .button-wrapper {
  margin-top: 20px;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  max-height: 0;
  transition: all 0.5s ease-in-out;
}

.archive-themas_pt .archive-wrapper .archive-post-wrapper .themas-posts-wrapper .themas-post:hover .themas-post-heading {
  visibility: visible;
  opacity: 1;
}

.archive-themas_pt .archive-wrapper .archive-post-wrapper .themas-posts-wrapper .themas-post:hover .button-wrapper {
  visibility: visible;
  opacity: 1;
  max-height: 60px;
}

.single-products_pt {
  background: #F6FBF9;
  overflow: hidden;
}

.single-products_pt .products-header {
  height: 475px;
  background: #3F8469;
}

.single-products_pt .products-content {
  position: relative;
  background: #F6FBF9;
  overflow: visible;
}

.single-products_pt .products-content .link-wrapper {
  position: absolute;
  right: 20px;
  top: -220px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.single-products_pt .products-content .link-wrapper:before {
  content: "";
  display: block;
  width: 18px;
  height: 13px;
  background-size: 18px 13px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/arrow-left-white.svg);
}

.single-products_pt .products-content .link-wrapper .back-link {
  color: #fff;
  font-weight: 400;
  line-height: 1.94;
  font-family: "Open Sans", sans-serif;
}

.single-products_pt .products-content .products-content-wrapper {
  display: -ms-flexbox;
  display: flex;
  border-radius: 3px;
  background-color: #fff;
  padding: 55px 45px;
  margin-top: -170px;
}

@media (max-width: 991px) {
  .single-products_pt .products-content .products-content-wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media (max-width: 750px) {
  .single-products_pt .products-content .products-content-wrapper {
    padding: 30px 15px;
  }
}

.single-products_pt .products-content .products-content-wrapper .product-content-title-wrapper {
  display: -ms-flexbox;
  display: flex;
  width: 45%;
  padding-right: 15px;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .single-products_pt .products-content .products-content-wrapper .product-content-title-wrapper {
    width: 100%;
    padding-right: 0px;
    margin-bottom: 30px;
  }
}

.single-products_pt .products-content .products-content-wrapper .product-content-title-wrapper .product-title {
  margin-bottom: 90px;
  color: #5F7577;
  font-size: 37px;
}

.single-products_pt .products-content .products-content-wrapper .product-content-title-wrapper .product-title strong {
  color: #1E5926;
}

@media (max-width: 991px) {
  .single-products_pt .products-content .products-content-wrapper .product-content-title-wrapper .product-title {
    margin-bottom: 35px;
  }
}

.single-products_pt .products-content .products-content-wrapper .product-content-title-wrapper .single-product-slider-wrap {
  position: relative;
  height: 555px;
  width: 565px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: -150px;
}

@media (max-width: 1350px) {
  .single-products_pt .products-content .products-content-wrapper .product-content-title-wrapper .single-product-slider-wrap {
    margin-left: -100px;
  }
}

@media (max-width: 1150px) {
  .single-products_pt .products-content .products-content-wrapper .product-content-title-wrapper .single-product-slider-wrap {
    margin-left: -55px;
    height: 450px;
    width: 110%;
  }
}

@media (max-width: 991px) {
  .single-products_pt .products-content .products-content-wrapper .product-content-title-wrapper .single-product-slider-wrap {
    margin-left: 0;
    height: 350px;
    width: 100%;
  }
}

.single-products_pt .products-content .products-content-wrapper .product-content-title-wrapper .single-product-slider-wrap .slick-arrow {
  position: absolute;
  z-index: 5;
  border: none;
  background-color: #11A4DD;
  transition: all 0.5s ease-in-out;
  width: 45px;
  height: 45px;
  bottom: 40px;
  border-radius: 3px;
}

.single-products_pt .products-content .products-content-wrapper .product-content-title-wrapper .single-product-slider-wrap .slick-arrow:before {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 7px);
  left: calc(50% - 9px);
}

.single-products_pt .products-content .products-content-wrapper .product-content-title-wrapper .single-product-slider-wrap .slick-arrow.slick-prev {
  right: 95px;
}

.single-products_pt .products-content .products-content-wrapper .product-content-title-wrapper .single-product-slider-wrap .slick-arrow.slick-prev:before {
  width: 18px;
  height: 14px;
  background-size: 18px 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/slider-arrow-left.svg);
}

.single-products_pt .products-content .products-content-wrapper .product-content-title-wrapper .single-product-slider-wrap .slick-arrow.slick-next {
  right: 40px;
}

.single-products_pt .products-content .products-content-wrapper .product-content-title-wrapper .single-product-slider-wrap .slick-arrow.slick-next:before {
  width: 18px;
  height: 14px;
  background-size: 18px 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/slider-arrow-right.svg);
}

.single-products_pt .products-content .products-content-wrapper .product-content-title-wrapper .single-product-slider-wrap .slick-list {
  padding: 0;
  margin: 0;
  overflow: hidden;
  height: 100%;
}

.single-products_pt .products-content .products-content-wrapper .product-content-title-wrapper .single-product-slider-wrap .slick-slider {
  height: 100%;
}

.single-products_pt .products-content .products-content-wrapper .product-content-title-wrapper .single-product-slider-wrap .slick-track {
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.single-products_pt .products-content .products-content-wrapper .product-content-title-wrapper .single-product-slider-wrap .slider-holder {
  display: block;
  width: 100%;
  height: 100%;
}

.single-products_pt .products-content .products-content-wrapper .product-content-title-wrapper .single-product-slider-wrap .slider-holder .slick-slide {
  margin: 0 10px;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  height: 100%;
  border-radius: 3px;
}

.single-products_pt .products-content .products-content-wrapper .product-content-title-wrapper .single-product-slider-wrap .slider-holder .slick-slide img {
  border-radius: 3px;
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}

.single-products_pt .products-content .products-content-wrapper .product-content-description-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 55%;
  padding-left: 15px;
}

@media (max-width: 991px) {
  .single-products_pt .products-content .products-content-wrapper .product-content-description-wrapper {
    width: 100%;
    padding-left: 0px;
  }
}

.single-products_pt .products-content .products-content-wrapper .product-content-description-wrapper .product-description h2 {
  font-size: 30px;
}

.single-products_pt .products-content .products-content-wrapper .product-content-description-wrapper .product-description p {
  margin-bottom: 30px;
}

.single-products_pt .products-content .products-content-wrapper .product-content-description-wrapper .product-description p:last-of-type {
  margin-bottom: 0;
}

.single-products_pt .products-content .products-content-wrapper .product-content-description-wrapper .product-team-member {
  border-radius: 3px;
  background: #50A684;
  padding: 40px 35px;
  width: 100%;
}

.single-products_pt .products-content .products-content-wrapper .product-content-description-wrapper .product-team-member .product-team-member-title {
  color: #fff;
  margin-bottom: 27px;
}

.single-products_pt .products-content .products-content-wrapper .product-content-description-wrapper .product-team-member .product-team-member-member,
.single-products_pt .products-content .products-content-wrapper .product-content-description-wrapper .product-team-member .introduction-team-member {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 100px 1fr;
  grid-gap: 40px;
}

.single-products_pt .products-content .products-content-wrapper .product-content-description-wrapper .product-team-member .product-team-member-member .team-member-image,
.single-products_pt .products-content .products-content-wrapper .product-content-description-wrapper .product-team-member .introduction-team-member .team-member-image {
  width: 100px;
  height: 100px;
  border-radius: 4px;
}

.single-products_pt .products-content .products-content-wrapper .product-content-description-wrapper .product-team-member .product-team-member-member .team-member-image img,
.single-products_pt .products-content .products-content-wrapper .product-content-description-wrapper .product-team-member .introduction-team-member .team-member-image img {
  border-radius: 4px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.single-products_pt .products-content .products-content-wrapper .product-content-description-wrapper .product-team-member .product-team-member-member .team-member-image.no-img,
.single-products_pt .products-content .products-content-wrapper .product-content-description-wrapper .product-team-member .introduction-team-member .team-member-image.no-img {
  background-color: #50A684;
}

.single-products_pt .products-content .products-content-wrapper .product-content-description-wrapper .product-team-member .product-team-member-member .team-member-content .team-member-taxonomies,
.single-products_pt .products-content .products-content-wrapper .product-content-description-wrapper .product-team-member .introduction-team-member .team-member-content .team-member-taxonomies {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.single-products_pt .products-content .products-content-wrapper .product-content-description-wrapper .product-team-member .product-team-member-member .team-member-content .team-member-taxonomies .taxonomy,
.single-products_pt .products-content .products-content-wrapper .product-content-description-wrapper .product-team-member .introduction-team-member .team-member-content .team-member-taxonomies .taxonomy {
  color: #50A684;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}

.single-products_pt .products-content .products-content-wrapper .product-content-description-wrapper .product-team-member .product-team-member-member .team-member-content .team-member-taxonomies .separator,
.single-products_pt .products-content .products-content-wrapper .product-content-description-wrapper .product-team-member .introduction-team-member .team-member-content .team-member-taxonomies .separator {
  color: #50A684;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
  margin: 0 5px;
}

.single-products_pt .products-content .products-content-wrapper .product-content-description-wrapper .product-team-member .product-team-member-member .team-member-content .team-member-title h4,
.single-products_pt .products-content .products-content-wrapper .product-content-description-wrapper .product-team-member .introduction-team-member .team-member-content .team-member-title h4 {
  color: #5F7577;
  margin-bottom: 0;
}

.single-products_pt .products-content .products-content-wrapper .product-content-description-wrapper .product-team-member .product-team-member-member .team-member-content .team-member-contact-info,
.single-products_pt .products-content .products-content-wrapper .product-content-description-wrapper .product-team-member .introduction-team-member .team-member-content .team-member-contact-info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
  margin-top: 5px;
}

.single-products_pt .products-content .products-content-wrapper .product-content-description-wrapper .product-team-member .product-team-member-member .team-member-content .team-member-contact-info .team-contact,
.single-products_pt .products-content .products-content-wrapper .product-content-description-wrapper .product-team-member .introduction-team-member .team-member-content .team-member-contact-info .team-contact {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.single-products_pt .products-content .products-content-wrapper .product-content-description-wrapper .product-team-member .product-team-member-member .team-member-content .team-member-contact-info .team-contact span,
.single-products_pt .products-content .products-content-wrapper .product-content-description-wrapper .product-team-member .product-team-member-member .team-member-content .team-member-contact-info .team-contact a,
.single-products_pt .products-content .products-content-wrapper .product-content-description-wrapper .product-team-member .introduction-team-member .team-member-content .team-member-contact-info .team-contact span,
.single-products_pt .products-content .products-content-wrapper .product-content-description-wrapper .product-team-member .introduction-team-member .team-member-content .team-member-contact-info .team-contact a {
  color: #5F7577;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}

.single-products_pt .products-content .products-content-wrapper .product-content-description-wrapper .product-team-member .product-team-member-member .team-member-content .team-member-contact-info .team-contact.contact-phone:before,
.single-products_pt .products-content .products-content-wrapper .product-content-description-wrapper .product-team-member .introduction-team-member .team-member-content .team-member-contact-info .team-contact.contact-phone:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-phone-blue.svg);
}

.single-products_pt .products-content .products-content-wrapper .product-content-description-wrapper .product-team-member .product-team-member-member .team-member-content .team-member-contact-info .team-contact.contact-email:before,
.single-products_pt .products-content .products-content-wrapper .product-content-description-wrapper .product-team-member .introduction-team-member .team-member-content .team-member-contact-info .team-contact.contact-email:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-email-blue.svg);
}

.single-products_pt .products-content .products-content-wrapper .product-content-description-wrapper .product-team-member .product-team-member-member .team-member-content .team-member-taxonomies .taxonomy {
  color: #fff;
}

.single-products_pt .products-content .products-content-wrapper .product-content-description-wrapper .product-team-member .product-team-member-member .team-member-content .team-member-taxonomies .separator {
  color: #fff;
}

.single-products_pt .products-content .products-content-wrapper .product-content-description-wrapper .product-team-member .product-team-member-member .team-member-content .team-member-title h4 {
  color: #fff;
}

.single-products_pt .products-content .products-content-wrapper .product-content-description-wrapper .product-team-member .product-team-member-member .team-member-content .team-member-contact-info .team-contact span,
.single-products_pt .products-content .products-content-wrapper .product-content-description-wrapper .product-team-member .product-team-member-member .team-member-content .team-member-contact-info .team-contact a {
  color: #fff;
}

.single-products_pt .products-content .products-content-wrapper .product-content-description-wrapper .product-team-member .product-team-member-member .team-member-content .team-member-contact-info .team-contact.contact-phone:before {
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-phone-white.svg);
}

.single-products_pt .products-content .products-content-wrapper .product-content-description-wrapper .product-team-member .product-team-member-member .team-member-content .team-member-contact-info .team-contact.contact-email:before {
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-email-white.svg);
}

@media (max-width: 750px) {
  .single-products_pt .products-content .products-content-wrapper .product-content-description-wrapper .product-team-member .product-team-member-member {
    grid-template-columns: 1fr;
  }

  .single-products_pt .products-content .products-content-wrapper .product-content-description-wrapper .product-team-member .product-team-member-member .team-member-image.no-img {
    display: none;
  }

  .single-products_pt .products-content .products-content-wrapper .product-content-description-wrapper .product-team-member .product-team-member-member .team-member-image {
    margin: 0 auto;
  }
}

.single-products_pt .products-content .products-content-wrapper .product-content-description-wrapper .product-team-member .product-team-member-member .team-member-image.no-img {
  background-color: #3F8469;
}

.archive-products_pt {
  background-color: #fff;
}

.archive-products_pt .archive-posts-wrapper {
  margin-top: -80px;
}

.archive-products_pt .archive-posts-wrapper .posts-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

@media (max-width: 767px) {
  .archive-products_pt .archive-posts-wrapper .posts-list {
    grid-template-columns: 1fr;
  }
}

.main.single-blogs .blog-container {
  background-color: #3F8469;
  position: relative;
  overflow: hidden;
}

.main.single-blogs .blog-container:before {
  content: "";
  height: 90px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #F6FBF9;
}

.main.single-blogs .blog-container .main-blog {
  padding: 50px 70px 0;
  border-radius: 3px;
  background-color: #F6FBF9;
  border: 1px solid #DEDEDE;
}

@media (max-width: 991px) {
  .main.single-blogs .blog-container .main-blog {
    padding: 25px 30px 0;
  }
}

.main.single-blogs .blog-container .main-blog .blog-content {
  border-bottom: 1px solid #DEDEDE;
  padding-bottom: 40px;
}

.main.single-blogs .blog-container .main-blog .blog-content p {
  margin-bottom: 30px;
}

.main.single-blogs .blog-container .main-blog .blog-content p:last-of-type {
  margin-bottom: 0;
}

.main.single-blogs .blog-container .main-blog .blog-content p strong {
  font-weight: 600;
  color: #000;
}

.main.single-blogs .blog-container .main-blog .blog-content .wp-block-image img {
  border-radius: 3px;
}

.main.single-blogs .blog-container .main-blog .blog-content .wp-block-column {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.main.single-blogs .blog-container .main-blog .blog-content .l-section {
  margin-bottom: 30px;
}

.main.single-blogs .blog-container .main-blog .blog-content .l-section h2,
.main.single-blogs .blog-container .main-blog .blog-content .l-section h3,
.main.single-blogs .blog-container .main-blog .blog-content .l-section h4 {
  margin-bottom: 20px;
}

.main.single-blogs .blog-container .main-blog .blog-content .l-section .justify-space-between {
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.main.single-blogs .blog-container .main-blog .blog-content .l-section .align-center {
  -ms-flex-align: center;
  align-items: center;
}

.main.single-blogs .blog-container .main-blog .blog-content .l-section:has(.c-experts-section-item) {
  display: none;
}

.main.single-blogs .blog-container .main-blog .blog-content .l-section:has(.l-blogs-section) {
  display: none;
}

.main.single-blogs .blog-container .main-blog .blog-content-bottom {
  padding: 30px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 991px) {
  .main.single-blogs .blog-container .main-blog .blog-content-bottom {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.main.single-blogs .blog-container .main-blog .blog-content-bottom .blog-team-member {
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  -ms-flex-align: center;
  align-items: center;
}

.main.single-blogs .blog-container .main-blog .blog-content-bottom .blog-team-member .team-image {
  border-radius: 3.5px;
  height: 125px;
  width: 125px;
  -o-object-fit: cover;
  object-fit: cover;
}

.main.single-blogs .blog-container .main-blog .blog-content-bottom .blog-team-member .team-image.no-img {
  background-color: #3F8469;
}

.main.single-blogs .blog-container .main-blog .blog-content-bottom .blog-team-member .team-member-content .team-member-taxonomies .taxonomy {
  color: #3F8469;
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
}

.main.single-blogs .blog-container .main-blog .blog-content-bottom .blog-team-member .team-member-content .team-member-title h4 {
  line-height: 0.83;
  margin-bottom: 0;
}

.main.single-blogs .blog-container .main-blog .blog-content-bottom .blog-team-member .team-member-content .team-member-contact-info {
  margin-top: 15px;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.main.single-blogs .blog-container .main-blog .blog-content-bottom .blog-team-member .team-member-content .team-member-contact-info .team-contact a {
  display: block;
}

.main.single-blogs .blog-container .main-blog .blog-content-bottom .blog-team-member .team-member-content .team-member-contact-info .team-contact.contact-email a {
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-mail-blue.svg);
}

.main.single-blogs .blog-container .main-blog .blog-content-bottom .blog-team-member .team-member-content .team-member-contact-info .team-contact.contact-phone a {
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-phone-blue.svg);
}

.main.single-blogs .blog-container .main-blog .blog-content-bottom .blog-team-member .team-member-content .team-member-contact-info .team-contact.contact-linkedin a {
  width: 14px;
  height: 16px;
  background-size: 14px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-linkedin-blue.svg);
}

.main.single-blogs .blog-container .main-blog .blog-content-bottom .blog-share {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
  align-items: flex-end;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.main.single-blogs .blog-container .main-blog .blog-content-bottom .blog-share .share-icons-box {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
  border-bottom: 1px solid #DEDEDE;
  padding: 15px 0 25px;
  width: 100%;
}

.main.single-blogs .blog-container .main-blog .blog-content-bottom .blog-share .share-icons-box .share-text {
  color: #5F7577;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.55;
  margin-right: 5px;
}

.main.single-blogs .blog-container .main-blog .blog-content-bottom .blog-share .share-icons-box .share-icons .addtoany_list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.main.single-blogs .blog-container .main-blog .blog-content-bottom .blog-share .share-icons-box .share-icons .addtoany_list > a {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 3px !important;
  padding: 0;
}

.main.single-blogs .blog-container .main-blog .blog-content-bottom .blog-share .share-icons-box .share-icons .addtoany_list > a img {
  width: 22px;
  height: 22px;
}

.main.single-blogs .blog-container .main-blog .blog-content-bottom .blog-share .share-icons-box .share-icons .addtoany_list > a .a2a_svg {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  width: 30px !important;
  height: 30px !important;
  border-radius: 3px !important;
  transition: all 0.3s ease-in-out;
}

.main.single-blogs .blog-container .main-blog .blog-content-bottom .blog-share .share-icons-box .share-icons .addtoany_list > a .a2a_svg svg {
  width: 22px;
  height: 22px;
}

.main.single-blogs .blog-container .main-blog .blog-content-bottom .blog-share .share-icons-box .share-icons .addtoany_list > a .a2a_svg svg path {
  transition: all 0.3s ease-in-out;
}

.main.single-blogs .blog-container .main-blog .blog-content-bottom .blog-share .share-icons-box .share-icons .addtoany_list > a:hover .a2a_svg,
.main.single-blogs .blog-container .main-blog .blog-content-bottom .blog-share .share-icons-box .share-icons .addtoany_list > a:focus .a2a_svg {
  opacity: 1;
}

.main.single-blogs .blog-container .main-blog .blog-content-bottom .blog-share .share-icons-box .share-icons .addtoany_list > a:hover .a2a_svg svg path,
.main.single-blogs .blog-container .main-blog .blog-content-bottom .blog-share .share-icons-box .share-icons .addtoany_list > a:focus .a2a_svg svg path {
  fill: #11A4DD;
}

.main.single-blogs .blog-container .main-blog .blog-content-bottom .blog-share .share-icons-box .share-icons .addtoany_list > a:last-child {
  margin-right: 0;
}

.main.single-blogs .blog-container .main-blog .blog-content-bottom .blog-share .back {
  padding-top: 10px;
}

.main.single-blogs .blog-container .main-blog .blog-content-bottom .blog-share .back .link-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.main.single-blogs .blog-container .main-blog .blog-content-bottom .blog-share .back .link-wrapper:before {
  content: "";
  display: block;
  width: 17px;
  height: 13px;
  background-size: 17px 13px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/arrow-right-blue.svg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.main.single-blogs .blog-container .main-blog .blog-content-bottom .blog-share .back .link-wrapper .back-link {
  color: #11A4DD;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
}

.archive-blog_pt {
  background-color: #F6FBF9;
}

.archive-blog_pt .archive-posts-wrapper {
  padding: 115px 0 50px;
  position: relative;
}

@media (max-width: 991px) {
  .archive-blog_pt .archive-posts-wrapper {
    padding: 70px 0 50px;
  }
}

.archive-blog_pt .archive-posts-wrapper .top-filters {
  position: absolute;
  top: -25px;
  right: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 3px;
  background: #DEDEDE;
}

@media (max-width: 991px) {
  .archive-blog_pt .archive-posts-wrapper .top-filters {
    position: relative;
    top: unset;
    margin-bottom: 30px;
  }
}

.archive-blog_pt .archive-posts-wrapper .top-filters .filter-checkbox-wrapper {
  padding: 15px;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media (max-width: 991px) {
  .archive-blog_pt .archive-posts-wrapper .top-filters .filter-checkbox-wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.archive-blog_pt .archive-posts-wrapper .top-filters .filter-checkbox-wrapper .filter-line {
  position: relative;
}

.archive-blog_pt .archive-posts-wrapper .top-filters .filter-checkbox-wrapper .filter-line .filter-name {
  border-radius: 3px;
  background: #fff;
  padding: 10px 17px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}

.archive-blog_pt .archive-posts-wrapper .top-filters .filter-checkbox-wrapper .filter-line .filter-name span {
  color: #5F7577;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.22;
}

@media (max-width: 991px) {
  .archive-blog_pt .archive-posts-wrapper .top-filters .filter-checkbox-wrapper .filter-line .filter-name span {
    font-size: 18px;
  }
}

.archive-blog_pt .archive-posts-wrapper .top-filters .filter-checkbox-wrapper .filter-line .filter-name:after {
  content: "";
  display: block;
  width: 12px;
  height: 15px;
  background-size: 12px 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/arrow-bottom-grey.svg);
  transition: all 0.5s ease-in-out;
}

.archive-blog_pt .archive-posts-wrapper .top-filters .filter-checkbox-wrapper .filter-line .filter-name.open {
  border-radius: 3px 3px 0 0;
}

.archive-blog_pt .archive-posts-wrapper .top-filters .filter-checkbox-wrapper .filter-line .filter-name.open:after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.archive-blog_pt .archive-posts-wrapper .top-filters .filter-checkbox-wrapper .filter-line .filter-checkboxes-holder {
  position: absolute;
  width: 100%;
  background-color: #fff;
  border-radius: 0 0 3px 3px;
  z-index: 10;
}

.archive-blog_pt .archive-posts-wrapper .top-filters .filter-checkbox-wrapper .filter-line .filter-checkboxes-holder .filter-checkboxes .checkbox-wrapper {
  cursor: pointer;
  padding: 10px 17px;
  transition: all 0.5s ease-in-out;
}

.archive-blog_pt .archive-posts-wrapper .top-filters .filter-checkbox-wrapper .filter-line .filter-checkboxes-holder .filter-checkboxes .checkbox-wrapper .filter-checkbox {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

.archive-blog_pt .archive-posts-wrapper .top-filters .filter-checkbox-wrapper .filter-line .filter-checkboxes-holder .filter-checkboxes .checkbox-wrapper .text {
  color: #5F7577;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.22;
  transition: all ease-in-out 0.5s;
}

.archive-blog_pt .archive-posts-wrapper .top-filters .filter-checkbox-wrapper .filter-line .filter-checkboxes-holder .filter-checkboxes .checkbox-wrapper:has(.filter-checkbox:checked) {
  background-color: #50A684;
}

.archive-blog_pt .archive-posts-wrapper .top-filters .filter-checkbox-wrapper .filter-line .filter-checkboxes-holder .filter-checkboxes .checkbox-wrapper:has(.filter-checkbox:checked) .text {
  color: white;
}

.archive-blog_pt .archive-posts-wrapper .posts-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 991px) {
  .archive-blog_pt .archive-posts-wrapper .posts-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .archive-blog_pt .archive-posts-wrapper .posts-list {
    grid-template-columns: 1fr;
  }
}

.archive-blog_pt .archive-posts-wrapper .pagination-wrapper {
  margin-top: 55px;
  -ms-flex-pack: center;
  justify-content: center;
}

.page404 {
  height: 85vh;
  background-color: #50A684;
}

.page404 .page404-section {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
}

.page404 .page404-section .page404-wrapper .page-title h1 {
  color: #fff;
}

.page404 .page404-section .page404-wrapper .page-description {
  margin-top: 20px;
}

.page404 .page404-section .page404-wrapper .page-description p {
  color: #fff;
  font-size: 42px;
  font-weight: 300;
  line-height: 1.28;
}

@media (max-width: 450px) {
  .page404 .page404-section .page404-wrapper .page-description p {
    font-size: 28px;
  }
}

.page404 .page404-section .page404-wrapper .button-wrapper {
  margin-top: 20px;
}

.search-section {
  padding: 125px 0;
}

.search-section .found h2 {
  font-size: 32px;
}

.search-section .found .search-form {
  display: grid;
  grid-template-columns: 1fr 120px;
  grid-gap: 20px;
  margin-top: 20px;
}

@media (max-width: 991px) {
  .search-section .found .search-form {
    grid-template-columns: 1fr;
    grid-gap: 0;
  }
}

.search-section .found .search-form input {
  outline: none;
  padding: 11px 15px 12px 50px;
  color: #5F7577;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.22;
  width: 20px;
  height: 21px;
  background-size: 20px 21px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/search-icon.svg);
  width: 100%;
  height: 50px;
  background-position: 2% 50%;
  border-radius: 3px;
  border: 1px solid #DEDEDE;
  background-color: #FFF;
}

@media (max-width: 991px) {
  .search-section .found .search-form input {
    padding: 11px 83px 12px 30px;
  }
}

@media (max-width: 450px) {
  .search-section .found .search-form input {
    font-size: 16px;
  }
}

.search-section .found .search-form button {
  border-radius: 3px;
  border: 2px solid #11A4DD;
  background: #11A4DD;
  color: #fff;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: capitalize;
}

@media (max-width: 991px) {
  .search-section .found .search-form button {
    position: absolute;
    right: 10px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: 50px;
    padding: 0 10px;
    margin: 0 auto;
  }
}

.search-section .found .search-form button:hover {
  background-color: #0A99D1 !important;
  border: 2px solid #0A99D1 !important;
}

.search-section .posts-wrapper {
  margin-top: 50px;
}

.search-section .posts-wrapper .posts-list .search-item {
  padding: 25px 0;
  border-bottom: 1px solid #DEDEDE;
}

.search-section .posts-wrapper .posts-list .search-item .search-item-content .search-title {
  font-size: 24px;
  line-height: 1;
  margin: 0;
}

.search-section .posts-wrapper .posts-list .search-item .search-item-content .excerpt-wrap {
  margin-top: 20px;
}

.search-section .posts-wrapper .posts-list .search-item .search-item-content .excerpt-wrap p {
  color: var(--Grijs, #5F7577);
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.55;
}

.search-section .posts-wrapper .posts-list .search-item .search-item-content .link-wrap {
  margin-top: 20px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.search-section .posts-wrapper .posts-list .search-item .search-item-content .link-wrap:after {
  content: "";
  display: block;
  width: 15px;
  height: 13px;
  background-size: 15px 13px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/arrow-right-blue.svg);
}

.search-section .posts-wrapper .posts-list .search-item .search-item-content .link-wrap a {
  color: #5F7577;
}

.search-section .posts-wrapper .pagination-wrapper {
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 50px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .search-section .posts-wrapper .pagination-wrapper {
    gap: 20px;
  }
}

.archive-team_members .archive-posts-wrapper {
  padding: 125px 0;
}

.archive-team_members .archive-posts-wrapper .team-members-buttons {
  margin-bottom: 50px;
}

.archive-team_members .archive-posts-wrapper .post-list {
  margin-bottom: 45px;
}

.archive-team_members .archive-posts-wrapper .post-list:last-of-type {
  margin-bottom: 0;
}

.archive-team_members .archive-posts-wrapper .post-list .term-title {
  margin-bottom: 50px;
}

.archive-team_members .archive-posts-wrapper .post-list .team-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, 260px);
  gap: 30px;
}