@charset "UTF-8";

body {
  position: relative;
}

body.popup-active:before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 33, 59, 0.5);
  z-index: 999;
}

body .blue-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #12213B -22.95%, rgba(18, 33, 59, 0.4) 100%);
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

body:has(.main-nav li.with-mega-menu:hover) .blue-overlay {
  visibility: visible;
  opacity: 1;
  z-index: 100;
}

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

.kostbaar-link {
  position: relative;
  display: block;
  color: #FFF;
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 6px;
}

.kostbaar-link:after {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #2A364D;
  -webkit-clip-path: polygon(100% 0%, 0% 0%, 5.89% 100%, 94.23% 100%);
  clip-path: polygon(100% 0%, 0% 0%, 5.89% 100%, 94.23% 100%);
  transition: all 0.3s ease-in-out;
}

.kostbaar-link:hover:after {
  background-color: #EC6523;
}

.ajax-preloader {
  display: block;
  position: absolute;
  top: 70%;
  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: #EC6523 transparent #EC6523 transparent;
  -webkit-animation: lds-dual-ring 1.2s linear infinite;
  animation: lds-dual-ring 1.2s linear infinite;
}

.form-wrapper .amelia-v2-booking {
  width: 105%;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767px) {
  .form-wrapper .amelia-v2-booking #amelia-container .am-fs__main-mobile .am-fs__main-content {
    padding: 16px 16px 16px 3px !important;
  }
}

.form-wrapper .amelia-v2-booking #amelia-container .am-select {
  --am-fs-select: 16px !important;
}

.form-wrapper .amelia-v2-booking #amelia-container .am-advsc__wrapper {
  --am-fs-advsc: 16px !important;
}

.form-wrapper .amelia-v2-booking #amelia-container .am-advsc__slots-item-mobile {
  --am-fs-asdvsc-slot: 16px !important;
}

.form-wrapper #amelia-container {
  margin-top: 20px !important;
  box-shadow: none !important;
}

.form-wrapper #amelia-container input,
.form-wrapper #amelia-container span {
  font-size: 16px !important;
}

.form-wrapper #amelia-container #am-cf-9,
.form-wrapper #amelia-container #am-cf-13 {
  opacity: 0 !important;
  visibility: hidden;
  height: 0;
  margin: 0 !important;
}

.form-wrapper #amelia-container .am-advsc__header {
  display: -ms-flexbox !important;
  display: flex !important;
  gap: 8px !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

.form-wrapper #amelia-container .am-fs-dt__calendar {
  height: 100%;
}

.form-wrapper #amelia-container .am-fs-dt__calendar .am-advsc {
  height: 220px !important;
}

p iframe {
  max-width: 100%;
}

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

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

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

body[data-aos-duration="50"] [data-aos],
[data-aos][data-aos][data-aos-duration="50"] {
  transition-duration: 50ms;
}

body[data-aos-delay="50"] [data-aos],
[data-aos][data-aos][data-aos-delay="50"] {
  transition-delay: 0;
}

body[data-aos-delay="50"] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay="50"].aos-animate {
  transition-delay: 50ms;
}

body[data-aos-duration="100"] [data-aos],
[data-aos][data-aos][data-aos-duration="100"] {
  transition-duration: 100ms;
}

body[data-aos-delay="100"] [data-aos],
[data-aos][data-aos][data-aos-delay="100"] {
  transition-delay: 0;
}

body[data-aos-delay="100"] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay="100"].aos-animate {
  transition-delay: 100ms;
}

body[data-aos-duration="150"] [data-aos],
[data-aos][data-aos][data-aos-duration="150"] {
  transition-duration: 150ms;
}

body[data-aos-delay="150"] [data-aos],
[data-aos][data-aos][data-aos-delay="150"] {
  transition-delay: 0;
}

body[data-aos-delay="150"] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay="150"].aos-animate {
  transition-delay: 150ms;
}

body[data-aos-duration="200"] [data-aos],
[data-aos][data-aos][data-aos-duration="200"] {
  transition-duration: 200ms;
}

body[data-aos-delay="200"] [data-aos],
[data-aos][data-aos][data-aos-delay="200"] {
  transition-delay: 0;
}

body[data-aos-delay="200"] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay="200"].aos-animate {
  transition-delay: 200ms;
}

body[data-aos-duration="250"] [data-aos],
[data-aos][data-aos][data-aos-duration="250"] {
  transition-duration: 250ms;
}

body[data-aos-delay="250"] [data-aos],
[data-aos][data-aos][data-aos-delay="250"] {
  transition-delay: 0;
}

body[data-aos-delay="250"] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay="250"].aos-animate {
  transition-delay: 250ms;
}

body[data-aos-duration="300"] [data-aos],
[data-aos][data-aos][data-aos-duration="300"] {
  transition-duration: 300ms;
}

body[data-aos-delay="300"] [data-aos],
[data-aos][data-aos][data-aos-delay="300"] {
  transition-delay: 0;
}

body[data-aos-delay="300"] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay="300"].aos-animate {
  transition-delay: 300ms;
}

body[data-aos-duration="350"] [data-aos],
[data-aos][data-aos][data-aos-duration="350"] {
  transition-duration: 350ms;
}

body[data-aos-delay="350"] [data-aos],
[data-aos][data-aos][data-aos-delay="350"] {
  transition-delay: 0;
}

body[data-aos-delay="350"] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay="350"].aos-animate {
  transition-delay: 350ms;
}

body[data-aos-duration="400"] [data-aos],
[data-aos][data-aos][data-aos-duration="400"] {
  transition-duration: 400ms;
}

body[data-aos-delay="400"] [data-aos],
[data-aos][data-aos][data-aos-delay="400"] {
  transition-delay: 0;
}

body[data-aos-delay="400"] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay="400"].aos-animate {
  transition-delay: 400ms;
}

body[data-aos-duration="450"] [data-aos],
[data-aos][data-aos][data-aos-duration="450"] {
  transition-duration: 450ms;
}

body[data-aos-delay="450"] [data-aos],
[data-aos][data-aos][data-aos-delay="450"] {
  transition-delay: 0;
}

body[data-aos-delay="450"] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay="450"].aos-animate {
  transition-delay: 450ms;
}

body[data-aos-duration="500"] [data-aos],
[data-aos][data-aos][data-aos-duration="500"] {
  transition-duration: 500ms;
}

body[data-aos-delay="500"] [data-aos],
[data-aos][data-aos][data-aos-delay="500"] {
  transition-delay: 0;
}

body[data-aos-delay="500"] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay="500"].aos-animate {
  transition-delay: 500ms;
}

body[data-aos-duration="550"] [data-aos],
[data-aos][data-aos][data-aos-duration="550"] {
  transition-duration: 550ms;
}

body[data-aos-delay="550"] [data-aos],
[data-aos][data-aos][data-aos-delay="550"] {
  transition-delay: 0;
}

body[data-aos-delay="550"] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay="550"].aos-animate {
  transition-delay: 550ms;
}

body[data-aos-duration="600"] [data-aos],
[data-aos][data-aos][data-aos-duration="600"] {
  transition-duration: 600ms;
}

body[data-aos-delay="600"] [data-aos],
[data-aos][data-aos][data-aos-delay="600"] {
  transition-delay: 0;
}

body[data-aos-delay="600"] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay="600"].aos-animate {
  transition-delay: 600ms;
}

body[data-aos-duration="650"] [data-aos],
[data-aos][data-aos][data-aos-duration="650"] {
  transition-duration: 650ms;
}

body[data-aos-delay="650"] [data-aos],
[data-aos][data-aos][data-aos-delay="650"] {
  transition-delay: 0;
}

body[data-aos-delay="650"] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay="650"].aos-animate {
  transition-delay: 650ms;
}

body[data-aos-duration="700"] [data-aos],
[data-aos][data-aos][data-aos-duration="700"] {
  transition-duration: 700ms;
}

body[data-aos-delay="700"] [data-aos],
[data-aos][data-aos][data-aos-delay="700"] {
  transition-delay: 0;
}

body[data-aos-delay="700"] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay="700"].aos-animate {
  transition-delay: 700ms;
}

body[data-aos-duration="750"] [data-aos],
[data-aos][data-aos][data-aos-duration="750"] {
  transition-duration: 750ms;
}

body[data-aos-delay="750"] [data-aos],
[data-aos][data-aos][data-aos-delay="750"] {
  transition-delay: 0;
}

body[data-aos-delay="750"] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay="750"].aos-animate {
  transition-delay: 750ms;
}

body[data-aos-duration="800"] [data-aos],
[data-aos][data-aos][data-aos-duration="800"] {
  transition-duration: 800ms;
}

body[data-aos-delay="800"] [data-aos],
[data-aos][data-aos][data-aos-delay="800"] {
  transition-delay: 0;
}

body[data-aos-delay="800"] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay="800"].aos-animate {
  transition-delay: 800ms;
}

body[data-aos-duration="850"] [data-aos],
[data-aos][data-aos][data-aos-duration="850"] {
  transition-duration: 850ms;
}

body[data-aos-delay="850"] [data-aos],
[data-aos][data-aos][data-aos-delay="850"] {
  transition-delay: 0;
}

body[data-aos-delay="850"] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay="850"].aos-animate {
  transition-delay: 850ms;
}

body[data-aos-duration="900"] [data-aos],
[data-aos][data-aos][data-aos-duration="900"] {
  transition-duration: 900ms;
}

body[data-aos-delay="900"] [data-aos],
[data-aos][data-aos][data-aos-delay="900"] {
  transition-delay: 0;
}

body[data-aos-delay="900"] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay="900"].aos-animate {
  transition-delay: 900ms;
}

body[data-aos-duration="950"] [data-aos],
[data-aos][data-aos][data-aos-duration="950"] {
  transition-duration: 950ms;
}

body[data-aos-delay="950"] [data-aos],
[data-aos][data-aos][data-aos-delay="950"] {
  transition-delay: 0;
}

body[data-aos-delay="950"] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay="950"].aos-animate {
  transition-delay: 950ms;
}

body[data-aos-duration="1000"] [data-aos],
[data-aos][data-aos][data-aos-duration="1000"] {
  transition-duration: 1000ms;
}

body[data-aos-delay="1000"] [data-aos],
[data-aos][data-aos][data-aos-delay="1000"] {
  transition-delay: 0;
}

body[data-aos-delay="1000"] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay="1000"].aos-animate {
  transition-delay: 1000ms;
}

body[data-aos-duration="1050"] [data-aos],
[data-aos][data-aos][data-aos-duration="1050"] {
  transition-duration: 1050ms;
}

body[data-aos-delay="1050"] [data-aos],
[data-aos][data-aos][data-aos-delay="1050"] {
  transition-delay: 0;
}

body[data-aos-delay="1050"] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay="1050"].aos-animate {
  transition-delay: 1050ms;
}

body[data-aos-duration="1100"] [data-aos],
[data-aos][data-aos][data-aos-duration="1100"] {
  transition-duration: 1100ms;
}

body[data-aos-delay="1100"] [data-aos],
[data-aos][data-aos][data-aos-delay="1100"] {
  transition-delay: 0;
}

body[data-aos-delay="1100"] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay="1100"].aos-animate {
  transition-delay: 1100ms;
}

body[data-aos-duration="1150"] [data-aos],
[data-aos][data-aos][data-aos-duration="1150"] {
  transition-duration: 1150ms;
}

body[data-aos-delay="1150"] [data-aos],
[data-aos][data-aos][data-aos-delay="1150"] {
  transition-delay: 0;
}

body[data-aos-delay="1150"] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay="1150"].aos-animate {
  transition-delay: 1150ms;
}

body[data-aos-duration="1200"] [data-aos],
[data-aos][data-aos][data-aos-duration="1200"] {
  transition-duration: 1200ms;
}

body[data-aos-delay="1200"] [data-aos],
[data-aos][data-aos][data-aos-delay="1200"] {
  transition-delay: 0;
}

body[data-aos-delay="1200"] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay="1200"].aos-animate {
  transition-delay: 1200ms;
}

body[data-aos-duration="1250"] [data-aos],
[data-aos][data-aos][data-aos-duration="1250"] {
  transition-duration: 1250ms;
}

body[data-aos-delay="1250"] [data-aos],
[data-aos][data-aos][data-aos-delay="1250"] {
  transition-delay: 0;
}

body[data-aos-delay="1250"] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay="1250"].aos-animate {
  transition-delay: 1250ms;
}

body[data-aos-duration="1300"] [data-aos],
[data-aos][data-aos][data-aos-duration="1300"] {
  transition-duration: 1300ms;
}

body[data-aos-delay="1300"] [data-aos],
[data-aos][data-aos][data-aos-delay="1300"] {
  transition-delay: 0;
}

body[data-aos-delay="1300"] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay="1300"].aos-animate {
  transition-delay: 1300ms;
}

body[data-aos-duration="1350"] [data-aos],
[data-aos][data-aos][data-aos-duration="1350"] {
  transition-duration: 1350ms;
}

body[data-aos-delay="1350"] [data-aos],
[data-aos][data-aos][data-aos-delay="1350"] {
  transition-delay: 0;
}

body[data-aos-delay="1350"] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay="1350"].aos-animate {
  transition-delay: 1350ms;
}

body[data-aos-duration="1400"] [data-aos],
[data-aos][data-aos][data-aos-duration="1400"] {
  transition-duration: 1400ms;
}

body[data-aos-delay="1400"] [data-aos],
[data-aos][data-aos][data-aos-delay="1400"] {
  transition-delay: 0;
}

body[data-aos-delay="1400"] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay="1400"].aos-animate {
  transition-delay: 1400ms;
}

body[data-aos-duration="1450"] [data-aos],
[data-aos][data-aos][data-aos-duration="1450"] {
  transition-duration: 1450ms;
}

body[data-aos-delay="1450"] [data-aos],
[data-aos][data-aos][data-aos-delay="1450"] {
  transition-delay: 0;
}

body[data-aos-delay="1450"] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay="1450"].aos-animate {
  transition-delay: 1450ms;
}

body[data-aos-duration="1500"] [data-aos],
[data-aos][data-aos][data-aos-duration="1500"] {
  transition-duration: 1500ms;
}

body[data-aos-delay="1500"] [data-aos],
[data-aos][data-aos][data-aos-delay="1500"] {
  transition-delay: 0;
}

body[data-aos-delay="1500"] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay="1500"].aos-animate {
  transition-delay: 1500ms;
}

body[data-aos-duration="1550"] [data-aos],
[data-aos][data-aos][data-aos-duration="1550"] {
  transition-duration: 1550ms;
}

body[data-aos-delay="1550"] [data-aos],
[data-aos][data-aos][data-aos-delay="1550"] {
  transition-delay: 0;
}

body[data-aos-delay="1550"] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay="1550"].aos-animate {
  transition-delay: 1550ms;
}

body[data-aos-duration="1600"] [data-aos],
[data-aos][data-aos][data-aos-duration="1600"] {
  transition-duration: 1600ms;
}

body[data-aos-delay="1600"] [data-aos],
[data-aos][data-aos][data-aos-delay="1600"] {
  transition-delay: 0;
}

body[data-aos-delay="1600"] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay="1600"].aos-animate {
  transition-delay: 1600ms;
}

body[data-aos-duration="1650"] [data-aos],
[data-aos][data-aos][data-aos-duration="1650"] {
  transition-duration: 1650ms;
}

body[data-aos-delay="1650"] [data-aos],
[data-aos][data-aos][data-aos-delay="1650"] {
  transition-delay: 0;
}

body[data-aos-delay="1650"] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay="1650"].aos-animate {
  transition-delay: 1650ms;
}

body[data-aos-duration="1700"] [data-aos],
[data-aos][data-aos][data-aos-duration="1700"] {
  transition-duration: 1700ms;
}

body[data-aos-delay="1700"] [data-aos],
[data-aos][data-aos][data-aos-delay="1700"] {
  transition-delay: 0;
}

body[data-aos-delay="1700"] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay="1700"].aos-animate {
  transition-delay: 1700ms;
}

body[data-aos-duration="1750"] [data-aos],
[data-aos][data-aos][data-aos-duration="1750"] {
  transition-duration: 1750ms;
}

body[data-aos-delay="1750"] [data-aos],
[data-aos][data-aos][data-aos-delay="1750"] {
  transition-delay: 0;
}

body[data-aos-delay="1750"] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay="1750"].aos-animate {
  transition-delay: 1750ms;
}

body[data-aos-duration="1800"] [data-aos],
[data-aos][data-aos][data-aos-duration="1800"] {
  transition-duration: 1800ms;
}

body[data-aos-delay="1800"] [data-aos],
[data-aos][data-aos][data-aos-delay="1800"] {
  transition-delay: 0;
}

body[data-aos-delay="1800"] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay="1800"].aos-animate {
  transition-delay: 1800ms;
}

body[data-aos-duration="1850"] [data-aos],
[data-aos][data-aos][data-aos-duration="1850"] {
  transition-duration: 1850ms;
}

body[data-aos-delay="1850"] [data-aos],
[data-aos][data-aos][data-aos-delay="1850"] {
  transition-delay: 0;
}

body[data-aos-delay="1850"] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay="1850"].aos-animate {
  transition-delay: 1850ms;
}

body[data-aos-duration="1900"] [data-aos],
[data-aos][data-aos][data-aos-duration="1900"] {
  transition-duration: 1900ms;
}

body[data-aos-delay="1900"] [data-aos],
[data-aos][data-aos][data-aos-delay="1900"] {
  transition-delay: 0;
}

body[data-aos-delay="1900"] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay="1900"].aos-animate {
  transition-delay: 1900ms;
}

body[data-aos-duration="1950"] [data-aos],
[data-aos][data-aos][data-aos-duration="1950"] {
  transition-duration: 1950ms;
}

body[data-aos-delay="1950"] [data-aos],
[data-aos][data-aos][data-aos-delay="1950"] {
  transition-delay: 0;
}

body[data-aos-delay="1950"] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay="1950"].aos-animate {
  transition-delay: 1950ms;
}

body[data-aos-duration="2000"] [data-aos],
[data-aos][data-aos][data-aos-duration="2000"] {
  transition-duration: 2000ms;
}

body[data-aos-delay="2000"] [data-aos],
[data-aos][data-aos][data-aos-delay="2000"] {
  transition-delay: 0;
}

body[data-aos-delay="2000"] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay="2000"].aos-animate {
  transition-delay: 2000ms;
}

body[data-aos-duration="2050"] [data-aos],
[data-aos][data-aos][data-aos-duration="2050"] {
  transition-duration: 2050ms;
}

body[data-aos-delay="2050"] [data-aos],
[data-aos][data-aos][data-aos-delay="2050"] {
  transition-delay: 0;
}

body[data-aos-delay="2050"] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay="2050"].aos-animate {
  transition-delay: 2050ms;
}

body[data-aos-duration="2100"] [data-aos],
[data-aos][data-aos][data-aos-duration="2100"] {
  transition-duration: 2100ms;
}

body[data-aos-delay="2100"] [data-aos],
[data-aos][data-aos][data-aos-delay="2100"] {
  transition-delay: 0;
}

body[data-aos-delay="2100"] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay="2100"].aos-animate {
  transition-delay: 2100ms;
}

body[data-aos-duration="2150"] [data-aos],
[data-aos][data-aos][data-aos-duration="2150"] {
  transition-duration: 2150ms;
}

body[data-aos-delay="2150"] [data-aos],
[data-aos][data-aos][data-aos-delay="2150"] {
  transition-delay: 0;
}

body[data-aos-delay="2150"] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay="2150"].aos-animate {
  transition-delay: 2150ms;
}

body[data-aos-duration="2200"] [data-aos],
[data-aos][data-aos][data-aos-duration="2200"] {
  transition-duration: 2200ms;
}

body[data-aos-delay="2200"] [data-aos],
[data-aos][data-aos][data-aos-delay="2200"] {
  transition-delay: 0;
}

body[data-aos-delay="2200"] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay="2200"].aos-animate {
  transition-delay: 2200ms;
}

body[data-aos-duration="2250"] [data-aos],
[data-aos][data-aos][data-aos-duration="2250"] {
  transition-duration: 2250ms;
}

body[data-aos-delay="2250"] [data-aos],
[data-aos][data-aos][data-aos-delay="2250"] {
  transition-delay: 0;
}

body[data-aos-delay="2250"] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay="2250"].aos-animate {
  transition-delay: 2250ms;
}

body[data-aos-duration="2300"] [data-aos],
[data-aos][data-aos][data-aos-duration="2300"] {
  transition-duration: 2300ms;
}

body[data-aos-delay="2300"] [data-aos],
[data-aos][data-aos][data-aos-delay="2300"] {
  transition-delay: 0;
}

body[data-aos-delay="2300"] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay="2300"].aos-animate {
  transition-delay: 2300ms;
}

body[data-aos-duration="2350"] [data-aos],
[data-aos][data-aos][data-aos-duration="2350"] {
  transition-duration: 2350ms;
}

body[data-aos-delay="2350"] [data-aos],
[data-aos][data-aos][data-aos-delay="2350"] {
  transition-delay: 0;
}

body[data-aos-delay="2350"] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay="2350"].aos-animate {
  transition-delay: 2350ms;
}

body[data-aos-duration="2400"] [data-aos],
[data-aos][data-aos][data-aos-duration="2400"] {
  transition-duration: 2400ms;
}

body[data-aos-delay="2400"] [data-aos],
[data-aos][data-aos][data-aos-delay="2400"] {
  transition-delay: 0;
}

body[data-aos-delay="2400"] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay="2400"].aos-animate {
  transition-delay: 2400ms;
}

body[data-aos-duration="2450"] [data-aos],
[data-aos][data-aos][data-aos-duration="2450"] {
  transition-duration: 2450ms;
}

body[data-aos-delay="2450"] [data-aos],
[data-aos][data-aos][data-aos-delay="2450"] {
  transition-delay: 0;
}

body[data-aos-delay="2450"] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay="2450"].aos-animate {
  transition-delay: 2450ms;
}

body[data-aos-duration="2500"] [data-aos],
[data-aos][data-aos][data-aos-duration="2500"] {
  transition-duration: 2500ms;
}

body[data-aos-delay="2500"] [data-aos],
[data-aos][data-aos][data-aos-delay="2500"] {
  transition-delay: 0;
}

body[data-aos-delay="2500"] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay="2500"].aos-animate {
  transition-delay: 2500ms;
}

body[data-aos-duration="2550"] [data-aos],
[data-aos][data-aos][data-aos-duration="2550"] {
  transition-duration: 2550ms;
}

body[data-aos-delay="2550"] [data-aos],
[data-aos][data-aos][data-aos-delay="2550"] {
  transition-delay: 0;
}

body[data-aos-delay="2550"] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay="2550"].aos-animate {
  transition-delay: 2550ms;
}

body[data-aos-duration="2600"] [data-aos],
[data-aos][data-aos][data-aos-duration="2600"] {
  transition-duration: 2600ms;
}

body[data-aos-delay="2600"] [data-aos],
[data-aos][data-aos][data-aos-delay="2600"] {
  transition-delay: 0;
}

body[data-aos-delay="2600"] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay="2600"].aos-animate {
  transition-delay: 2600ms;
}

body[data-aos-duration="2650"] [data-aos],
[data-aos][data-aos][data-aos-duration="2650"] {
  transition-duration: 2650ms;
}

body[data-aos-delay="2650"] [data-aos],
[data-aos][data-aos][data-aos-delay="2650"] {
  transition-delay: 0;
}

body[data-aos-delay="2650"] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay="2650"].aos-animate {
  transition-delay: 2650ms;
}

body[data-aos-duration="2700"] [data-aos],
[data-aos][data-aos][data-aos-duration="2700"] {
  transition-duration: 2700ms;
}

body[data-aos-delay="2700"] [data-aos],
[data-aos][data-aos][data-aos-delay="2700"] {
  transition-delay: 0;
}

body[data-aos-delay="2700"] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay="2700"].aos-animate {
  transition-delay: 2700ms;
}

body[data-aos-duration="2750"] [data-aos],
[data-aos][data-aos][data-aos-duration="2750"] {
  transition-duration: 2750ms;
}

body[data-aos-delay="2750"] [data-aos],
[data-aos][data-aos][data-aos-delay="2750"] {
  transition-delay: 0;
}

body[data-aos-delay="2750"] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay="2750"].aos-animate {
  transition-delay: 2750ms;
}

body[data-aos-duration="2800"] [data-aos],
[data-aos][data-aos][data-aos-duration="2800"] {
  transition-duration: 2800ms;
}

body[data-aos-delay="2800"] [data-aos],
[data-aos][data-aos][data-aos-delay="2800"] {
  transition-delay: 0;
}

body[data-aos-delay="2800"] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay="2800"].aos-animate {
  transition-delay: 2800ms;
}

body[data-aos-duration="2850"] [data-aos],
[data-aos][data-aos][data-aos-duration="2850"] {
  transition-duration: 2850ms;
}

body[data-aos-delay="2850"] [data-aos],
[data-aos][data-aos][data-aos-delay="2850"] {
  transition-delay: 0;
}

body[data-aos-delay="2850"] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay="2850"].aos-animate {
  transition-delay: 2850ms;
}

body[data-aos-duration="2900"] [data-aos],
[data-aos][data-aos][data-aos-duration="2900"] {
  transition-duration: 2900ms;
}

body[data-aos-delay="2900"] [data-aos],
[data-aos][data-aos][data-aos-delay="2900"] {
  transition-delay: 0;
}

body[data-aos-delay="2900"] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay="2900"].aos-animate {
  transition-delay: 2900ms;
}

body[data-aos-duration="2950"] [data-aos],
[data-aos][data-aos][data-aos-duration="2950"] {
  transition-duration: 2950ms;
}

body[data-aos-delay="2950"] [data-aos],
[data-aos][data-aos][data-aos-delay="2950"] {
  transition-delay: 0;
}

body[data-aos-delay="2950"] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay="2950"].aos-animate {
  transition-delay: 2950ms;
}

body[data-aos-duration="3000"] [data-aos],
[data-aos][data-aos][data-aos-duration="3000"] {
  transition-duration: 3000ms;
}

body[data-aos-delay="3000"] [data-aos],
[data-aos][data-aos][data-aos-delay="3000"] {
  transition-delay: 0;
}

body[data-aos-delay="3000"] [data-aos].aos-animate,
[data-aos][data-aos][data-aos-delay="3000"].aos-animate {
  transition-delay: 3000ms;
}

body[data-aos-easing=linear] [data-aos],
[data-aos][data-aos][data-aos-easing=linear] {
  transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75);
}

body[data-aos-easing=ease] [data-aos],
[data-aos][data-aos][data-aos-easing=ease] {
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}

body[data-aos-easing=ease-in] [data-aos],
[data-aos][data-aos][data-aos-easing=ease-in] {
  transition-timing-function: cubic-bezier(0.42, 0, 1, 1);
}

body[data-aos-easing=ease-out] [data-aos],
[data-aos][data-aos][data-aos-easing=ease-out] {
  transition-timing-function: cubic-bezier(0, 0, 0.58, 1);
}

body[data-aos-easing=ease-in-out] [data-aos],
[data-aos][data-aos][data-aos-easing=ease-in-out] {
  transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
}

body[data-aos-easing=ease-in-back] [data-aos],
[data-aos][data-aos][data-aos-easing=ease-in-back] {
  transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

body[data-aos-easing=ease-out-back] [data-aos],
[data-aos][data-aos][data-aos-easing=ease-out-back] {
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

body[data-aos-easing=ease-in-out-back] [data-aos],
[data-aos][data-aos][data-aos-easing=ease-in-out-back] {
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

body[data-aos-easing=ease-in-sine] [data-aos],
[data-aos][data-aos][data-aos-easing=ease-in-sine] {
  transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
}

body[data-aos-easing=ease-out-sine] [data-aos],
[data-aos][data-aos][data-aos-easing=ease-out-sine] {
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
}

body[data-aos-easing=ease-in-out-sine] [data-aos],
[data-aos][data-aos][data-aos-easing=ease-in-out-sine] {
  transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

body[data-aos-easing=ease-in-quad] [data-aos],
[data-aos][data-aos][data-aos-easing=ease-in-quad] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

body[data-aos-easing=ease-out-quad] [data-aos],
[data-aos][data-aos][data-aos-easing=ease-out-quad] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body[data-aos-easing=ease-in-out-quad] [data-aos],
[data-aos][data-aos][data-aos-easing=ease-in-out-quad] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

body[data-aos-easing=ease-in-cubic] [data-aos],
[data-aos][data-aos][data-aos-easing=ease-in-cubic] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

body[data-aos-easing=ease-out-cubic] [data-aos],
[data-aos][data-aos][data-aos-easing=ease-out-cubic] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body[data-aos-easing=ease-in-out-cubic] [data-aos],
[data-aos][data-aos][data-aos-easing=ease-in-out-cubic] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

body[data-aos-easing=ease-in-quart] [data-aos],
[data-aos][data-aos][data-aos-easing=ease-in-quart] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

body[data-aos-easing=ease-out-quart] [data-aos],
[data-aos][data-aos][data-aos-easing=ease-out-quart] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body[data-aos-easing=ease-in-out-quart] [data-aos],
[data-aos][data-aos][data-aos-easing=ease-in-out-quart] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

/**
 * Fade animations:
 * fade
 * fade-up, fade-down, fade-left, fade-right
 * fade-up-right, fade-up-left, fade-down-right, fade-down-left
 */

[data-aos^=fade][data-aos^=fade] {
  opacity: 0;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
}

[data-aos^=fade][data-aos^=fade].aos-animate {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

[data-aos=fade-up] {
  -webkit-transform: translate3d(0, 100px, 0);
  transform: translate3d(0, 100px, 0);
}

[data-aos=fade-down] {
  -webkit-transform: translate3d(0, -100px, 0);
  transform: translate3d(0, -100px, 0);
}

[data-aos=fade-right] {
  -webkit-transform: translate3d(-100px, 0, 0);
  transform: translate3d(-100px, 0, 0);
}

[data-aos=fade-left] {
  -webkit-transform: translate3d(100px, 0, 0);
  transform: translate3d(100px, 0, 0);
}

[data-aos=fade-up-right] {
  -webkit-transform: translate3d(-100px, 100px, 0);
  transform: translate3d(-100px, 100px, 0);
}

[data-aos=fade-up-left] {
  -webkit-transform: translate3d(100px, 100px, 0);
  transform: translate3d(100px, 100px, 0);
}

[data-aos=fade-down-right] {
  -webkit-transform: translate3d(-100px, -100px, 0);
  transform: translate3d(-100px, -100px, 0);
}

[data-aos=fade-down-left] {
  -webkit-transform: translate3d(100px, -100px, 0);
  transform: translate3d(100px, -100px, 0);
}

/**
 * Zoom animations:
 * zoom-in, zoom-in-up, zoom-in-down, zoom-in-left, zoom-in-right
 * zoom-out, zoom-out-up, zoom-out-down, zoom-out-left, zoom-out-right
 */

[data-aos^=zoom][data-aos^=zoom] {
  opacity: 0;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
}

[data-aos^=zoom][data-aos^=zoom].aos-animate {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
}

[data-aos=zoom-in] {
  -webkit-transform: scale(0.6);
  transform: scale(0.6);
}

[data-aos=zoom-in-up] {
  -webkit-transform: translate3d(0, 100px, 0) scale(0.6);
  transform: translate3d(0, 100px, 0) scale(0.6);
}

[data-aos=zoom-in-down] {
  -webkit-transform: translate3d(0, -100px, 0) scale(0.6);
  transform: translate3d(0, -100px, 0) scale(0.6);
}

[data-aos=zoom-in-right] {
  -webkit-transform: translate3d(-100px, 0, 0) scale(0.6);
  transform: translate3d(-100px, 0, 0) scale(0.6);
}

[data-aos=zoom-in-left] {
  -webkit-transform: translate3d(100px, 0, 0) scale(0.6);
  transform: translate3d(100px, 0, 0) scale(0.6);
}

[data-aos=zoom-out] {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

[data-aos=zoom-out-up] {
  -webkit-transform: translate3d(0, 100px, 0) scale(1.2);
  transform: translate3d(0, 100px, 0) scale(1.2);
}

[data-aos=zoom-out-down] {
  -webkit-transform: translate3d(0, -100px, 0) scale(1.2);
  transform: translate3d(0, -100px, 0) scale(1.2);
}

[data-aos=zoom-out-right] {
  -webkit-transform: translate3d(-100px, 0, 0) scale(1.2);
  transform: translate3d(-100px, 0, 0) scale(1.2);
}

[data-aos=zoom-out-left] {
  -webkit-transform: translate3d(100px, 0, 0) scale(1.2);
  transform: translate3d(100px, 0, 0) scale(1.2);
}

/**
 * Slide animations
 */

[data-aos^=slide][data-aos^=slide] {
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

[data-aos^=slide][data-aos^=slide].aos-animate {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

[data-aos=slide-up] {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}

[data-aos=slide-down] {
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
}

[data-aos=slide-right] {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

[data-aos=slide-left] {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

/**
 * Flip animations:
 * flip-left, flip-right, flip-up, flip-down
 */

[data-aos^=flip][data-aos^=flip] {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

[data-aos=flip-left] {
  -webkit-transform: perspective(2500px) rotateY(-100deg);
  transform: perspective(2500px) rotateY(-100deg);
}

[data-aos=flip-left].aos-animate {
  -webkit-transform: perspective(2500px) rotateY(0);
  transform: perspective(2500px) rotateY(0);
}

[data-aos=flip-right] {
  -webkit-transform: perspective(2500px) rotateY(100deg);
  transform: perspective(2500px) rotateY(100deg);
}

[data-aos=flip-right].aos-animate {
  -webkit-transform: perspective(2500px) rotateY(0);
  transform: perspective(2500px) rotateY(0);
}

[data-aos=flip-up] {
  -webkit-transform: perspective(2500px) rotateX(-100deg);
  transform: perspective(2500px) rotateX(-100deg);
}

[data-aos=flip-up].aos-animate {
  -webkit-transform: perspective(2500px) rotateX(0);
  transform: perspective(2500px) rotateX(0);
}

[data-aos=flip-down] {
  -webkit-transform: perspective(2500px) rotateX(100deg);
  transform: perspective(2500px) rotateX(100deg);
}

[data-aos=flip-down].aos-animate {
  -webkit-transform: perspective(2500px) rotateX(0);
  transform: perspective(2500px) rotateX(0);
}

: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: rgb(0, 86.1, 178.5);
  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: rgb(0, 98.4, 204) !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: rgb(84.3605150215, 91.3905579399, 97.6394849785) !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: rgb(30.1449275362, 125.8550724638, 52) !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: rgb(17.3333333333, 122.0869565217, 138.6666666667) !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: rgb(211, 158.25, 0) !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: rgb(189.2151898734, 32.7848101266, 47.7721518987) !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: rgb(218.25, 223.5, 228.75) !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: rgb(29.1379310345, 32.5, 35.8620689655) !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: rgb(0, 86.1, 178.5) !important;
}

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

a.text-secondary:hover,
a.text-secondary:focus {
  color: rgb(72.5407725322, 78.5858369099, 83.9592274678) !important;
}

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

a.text-success:hover,
a.text-success:focus {
  color: rgb(25.2173913043, 105.2826086957, 43.5) !important;
}

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

a.text-info:hover,
a.text-info:focus {
  color: rgb(14.5, 102.1304347826, 116) !important;
}

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

a.text-warning:hover,
a.text-warning:focus {
  color: rgb(185.5, 139.125, 0) !important;
}

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

a.text-danger:hover,
a.text-danger:focus {
  color: rgb(167.4810126582, 29.0189873418, 42.2848101266) !important;
}

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

a.text-light:hover,
a.text-light:focus {
  color: rgb(203.375, 210.75, 218.125) !important;
}

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

a.text-dark:hover,
a.text-dark:focus {
  color: rgb(17.7068965517, 19.75, 21.7931034483) !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: rgb(127.5, 189, 255);
  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: rgb(51.6956521739, 206.3043478261, 87);
  background-color: rgb(51.6956521739, 206.3043478261, 87);
}

.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: rgb(227.5316455696, 96.4683544304, 109.0253164557);
  background-color: rgb(227.5316455696, 96.4683544304, 109.0253164557);
}

.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: rgb(0, 104.55, 216.75);
  border-color: rgb(0, 98.4, 204);
}

.btn-primary:focus,
.btn-primary.focus {
  color: #fff;
  background-color: rgb(0, 104.55, 216.75);
  border-color: rgb(0, 98.4, 204);
  box-shadow: 0 0 0 0 rgba(38.25, 142.8, 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: rgb(0, 98.4, 204);
  border-color: rgb(0, 92.25, 191.25);
}

.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.25, 142.8, 255, 0.5);
}

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

.btn-secondary:hover {
  color: #fff;
  background-color: rgb(90.2703862661, 97.7929184549, 104.4796137339);
  border-color: rgb(84.3605150215, 91.3905579399, 97.6394849785);
}

.btn-secondary:focus,
.btn-secondary.focus {
  color: #fff;
  background-color: rgb(90.2703862661, 97.7929184549, 104.4796137339);
  border-color: rgb(84.3605150215, 91.3905579399, 97.6394849785);
  box-shadow: 0 0 0 0 rgba(130.05, 137.7, 144.5, 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: rgb(84.3605150215, 91.3905579399, 97.6394849785);
  border-color: rgb(78.4506437768, 84.9881974249, 90.7993562232);
}

.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.05, 137.7, 144.5, 0.5);
}

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

.btn-success:hover {
  color: #fff;
  background-color: rgb(32.6086956522, 136.1413043478, 56.25);
  border-color: rgb(30.1449275362, 125.8550724638, 52);
}

.btn-success:focus,
.btn-success.focus {
  color: #fff;
  background-color: rgb(32.6086956522, 136.1413043478, 56.25);
  border-color: rgb(30.1449275362, 125.8550724638, 52);
  box-shadow: 0 0 0 0 rgba(72.25, 180.2, 96.9, 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: rgb(30.1449275362, 125.8550724638, 52);
  border-color: rgb(27.6811594203, 115.5688405797, 47.75);
}

.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.25, 180.2, 96.9, 0.5);
}

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

.btn-info:hover {
  color: #fff;
  background-color: rgb(18.75, 132.0652173913, 150);
  border-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
}

.btn-info:focus,
.btn-info.focus {
  color: #fff;
  background-color: rgb(18.75, 132.0652173913, 150);
  border-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
  box-shadow: 0 0 0 0 rgba(57.8, 175.95, 194.65, 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: rgb(17.3333333333, 122.0869565217, 138.6666666667);
  border-color: rgb(15.9166666667, 112.1086956522, 127.3333333333);
}

.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(57.8, 175.95, 194.65, 0.5);
}

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

.btn-warning:hover {
  color: #212529;
  background-color: rgb(223.75, 167.8125, 0);
  border-color: rgb(211, 158.25, 0);
}

.btn-warning:focus,
.btn-warning.focus {
  color: #212529;
  background-color: rgb(223.75, 167.8125, 0);
  border-color: rgb(211, 158.25, 0);
  box-shadow: 0 0 0 0 rgba(221.7, 169.6, 12.1, 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: rgb(211, 158.25, 0);
  border-color: rgb(198.25, 148.6875, 0);
}

.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(221.7, 169.6, 12.1, 0.5);
}

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

.btn-danger:hover {
  color: #fff;
  background-color: rgb(200.082278481, 34.667721519, 50.5158227848);
  border-color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
}

.btn-danger:focus,
.btn-danger.focus {
  color: #fff;
  background-color: rgb(200.082278481, 34.667721519, 50.5158227848);
  border-color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
  box-shadow: 0 0 0 0 rgba(225.25, 83.3, 96.9, 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: rgb(189.2151898734, 32.7848101266, 47.7721518987);
  border-color: rgb(178.3481012658, 30.9018987342, 45.0284810127);
}

.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.25, 83.3, 96.9, 0.5);
}

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

.btn-light:hover {
  color: #212529;
  background-color: rgb(225.6875, 229.875, 234.0625);
  border-color: rgb(218.25, 223.5, 228.75);
}

.btn-light:focus,
.btn-light.focus {
  color: #212529;
  background-color: rgb(225.6875, 229.875, 234.0625);
  border-color: rgb(218.25, 223.5, 228.75);
  box-shadow: 0 0 0 0 rgba(215.75, 217.2, 218.65, 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: rgb(218.25, 223.5, 228.75);
  border-color: rgb(210.8125, 217.125, 223.4375);
}

.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(215.75, 217.2, 218.65, 0.5);
}

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

.btn-dark:hover {
  color: #fff;
  background-color: rgb(34.8534482759, 38.875, 42.8965517241);
  border-color: rgb(29.1379310345, 32.5, 35.8620689655);
}

.btn-dark:focus,
.btn-dark.focus {
  color: #fff;
  background-color: rgb(34.8534482759, 38.875, 42.8965517241);
  border-color: rgb(29.1379310345, 32.5, 35.8620689655);
  box-shadow: 0 0 0 0 rgba(82.45, 87.55, 92.65, 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: rgb(29.1379310345, 32.5, 35.8620689655);
  border-color: rgb(23.4224137931, 26.125, 28.8275862069);
}

.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.45, 87.55, 92.65, 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: rgb(0, 86.1, 178.5);
  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: rgb(0, 63.96, 132.6);
  background-color: rgb(183.6, 218.04, 255);
}

.list-group-item-primary.list-group-item-action:hover,
.list-group-item-primary.list-group-item-action:focus {
  color: rgb(0, 63.96, 132.6);
  background-color: rgb(158.1, 204.84, 255);
}

.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: rgb(0, 63.96, 132.6);
  border-color: rgb(0, 63.96, 132.6);
}

.list-group-item-secondary {
  color: rgb(56.16, 60.84, 65);
  background-color: rgb(213.84, 216.36, 218.6);
}

.list-group-item-secondary.list-group-item-action:hover,
.list-group-item-secondary.list-group-item-action:focus {
  color: rgb(56.16, 60.84, 65);
  background-color: rgb(200.3075090253, 203.6560288809, 206.6324909747);
}

.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: rgb(56.16, 60.84, 65);
  border-color: rgb(56.16, 60.84, 65);
}

.list-group-item-success {
  color: rgb(20.8, 86.84, 35.88);
  background-color: rgb(194.8, 230.36, 202.92);
}

.list-group-item-success.list-group-item-action:hover,
.list-group-item-success.list-group-item-action:focus {
  color: rgb(20.8, 86.84, 35.88);
  background-color: rgb(176.7059405941, 222.9540594059, 187.2665346535);
}

.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: rgb(20.8, 86.84, 35.88);
  border-color: rgb(20.8, 86.84, 35.88);
}

.list-group-item-info {
  color: rgb(11.96, 84.24, 95.68);
  background-color: rgb(190.04, 228.96, 235.12);
}

.list-group-item-info.list-group-item-action:hover,
.list-group-item-info.list-group-item-action:focus {
  color: rgb(11.96, 84.24, 95.68);
  background-color: rgb(170.5152475248, 221.1332673267, 229.1447524752);
}

.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: rgb(11.96, 84.24, 95.68);
  border-color: rgb(11.96, 84.24, 95.68);
}

.list-group-item-warning {
  color: rgb(132.6, 100.36, 3.64);
  background-color: rgb(255, 237.64, 185.56);
}

.list-group-item-warning.list-group-item-action:hover,
.list-group-item-warning.list-group-item-action:focus {
  color: rgb(132.6, 100.36, 3.64);
  background-color: rgb(255, 231.265, 160.06);
}

.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: rgb(132.6, 100.36, 3.64);
  border-color: rgb(132.6, 100.36, 3.64);
}

.list-group-item-danger {
  color: rgb(114.4, 27.56, 35.88);
  background-color: rgb(245.2, 198.44, 202.92);
}

.list-group-item-danger.list-group-item-action:hover,
.list-group-item-danger.list-group-item-action:focus {
  color: rgb(114.4, 27.56, 35.88);
  background-color: rgb(241.4341772152, 176.7058227848, 182.9073417722);
}

.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: rgb(114.4, 27.56, 35.88);
  border-color: rgb(114.4, 27.56, 35.88);
}

.list-group-item-light {
  color: rgb(128.96, 129.48, 130);
  background-color: rgb(253.04, 253.32, 253.6);
}

.list-group-item-light.list-group-item-action:hover,
.list-group-item-light.list-group-item-action:focus {
  color: rgb(128.96, 129.48, 130);
  background-color: rgb(238.165, 240.57, 242.975);
}

.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: rgb(128.96, 129.48, 130);
  border-color: rgb(128.96, 129.48, 130);
}

.list-group-item-dark {
  color: rgb(27.04, 30.16, 33.28);
  background-color: rgb(198.16, 199.84, 201.52);
}

.list-group-item-dark.list-group-item-action:hover,
.list-group-item-dark.list-group-item-action:focus {
  color: rgb(27.04, 30.16, 33.28);
  background-color: rgb(185.0216751269, 187.09, 189.1583248731);
}

.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: rgb(27.04, 30.16, 33.28);
  border-color: rgb(27.04, 30.16, 33.28);
}

.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: rgb(225.3581081081, 228.25, 231.1418918919);
}

#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: rgb(225.3581081081, 228.25, 231.1418918919);
}

#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: rgb(225.3581081081, 228.25, 231.1418918919);
}

#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: rgb(225.3581081081, 228.25, 231.1418918919);
  text-decoration: none;
}

html {
  overflow-x: initial;
  width: auto;
}

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

body {
  --window-width: 100vw;
  overflow: unset;
  background-color: #12213B;
  /* WebKit-based browsers (Chrome, Safari, Edge) */
  /* Firefox */
  /* Edge & IE (limited support) */
}

body ::-webkit-scrollbar {
  width: 5px;
}

body ::-webkit-scrollbar-track {
  border-radius: 0;
  background: transparent;
}

body ::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
}

body * {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

body body {
  -ms-overflow-style: none;
  /* Hide default scrollbar */
}

body body::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar in Edge/IE */
}

body.slider-locked {
  overflow: hidden;
}

@font-face {
  font-family: "Hind-hosted";
  src: url("../../assets/fonts/Hind-Light.woff2") format("woff2"), url("../../assets/fonts/Hind-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Hind-hosted";
  src: url("../../assets/fonts/Hind-Regular.woff2") format("woff2"), url("../../assets/fonts/Hind-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Hind-hosted";
  src: url("../../assets/fonts/Hind-Medium.woff2") format("woff2"), url("../../assets/fonts/Hind-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Hind-hosted";
  src: url("../../assets/fonts/Hind-SemiBold.woff2") format("woff2"), url("../../assets/fonts/Hind-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Hind-hosted";
  src: url("../../assets/fonts/Hind-Bold.woff2") format("woff2"), url("../../assets/fonts/Hind-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body * {
  font-family: "Hind-hosted", sans-serif;
  font-weight: 300;
  font-size: 18px;
}

body h1,
body h2,
body h3,
body h4,
body h5 {
  font-family: "ivypresto-display", sans-serif;
}

body h1 span,
body h2 span,
body h3 span,
body h4 span,
body h5 span {
  font-family: "ivypresto-display", 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: #12213B;
  margin: 0;
}

body h1 {
  font-size: 65px;
  font-weight: 400;
  line-height: 1.2;
}

@media (max-width: 450px) {
  body h1 {
    font-size: 45px;
  }
}

body h2 {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  -webkit-transform: scaleY(1.04);
  transform: scaleY(1.04);
}

@media (max-width: 450px) {
  body h2 {
    font-size: 34px;
  }
}

body h3 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  -webkit-transform: scaleY(1.05);
  transform: scaleY(1.05);
}

@media (max-width: 450px) {
  body h3 {
    font-size: 20px;
  }
}

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: "ivypresto-display", 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 {
  margin: 0;
  font-family: "Hind-hosted", sans-serif;
  font-weight: 400;
  font-size: 19px;
  line-height: 156%;
}

@media (max-width: 650px) {
  body input,
  body textarea,
  body p,
  body li,
  body a {
    font-size: 16px;
  }
}

body input,
body textarea,
body p,
body li {
  color: #2A364D;
}

body a {
  color: #EC6523;
}

body a:hover {
  color: #EC6523;
  text-decoration: underline;
}

body p strong,
body li strong,
body a strong {
  font-weight: 700;
  font-size: inherit;
}

body p em,
body li em,
body a em {
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
}

body p a {
  font-size: inherit;
  line-height: inherit;
  color: #EC6523;
  font-weight: 400;
  transition: all 0.2s ease;
}

body p a:hover {
  color: #EC6523;
  text-decoration: underline;
}

body .main ul:not(.header-home-background-images) {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 20px;
}

body .main ul:not(.header-home-background-images) li:not(.image-wrapper) {
  position: relative;
  color: #2A364D;
  font-size: 18px;
  font-weight: 400;
  line-height: 148%;
  margin-bottom: 8px;
  padding-left: 25px;
}

@media (max-width: 650px) {
  body .main ul:not(.header-home-background-images) li:not(.image-wrapper) {
    font-size: 16px;
  }
}

body .main ul:not(.header-home-background-images) li:not(.image-wrapper):before {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "";
  height: 6px;
  width: 6px;
  border-radius: 50px;
  background: #EC6523;
}

body .main ol {
  padding-left: 0;
  margin-bottom: 20px;
  margin-left: 15px;
}

body .main ol li {
  position: relative;
  color: #2A364D;
  font-size: 18px;
  font-weight: 400;
  line-height: 148%;
  margin-bottom: 8px;
  padding-left: 10px;
}

@media (max-width: 650px) {
  body .main ol li {
    font-size: 16px;
  }
}

body .main ol li::marker {
  color: #EC6523;
}

body .list-ticks ul li:before {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "";
  background: transparent;
  width: 14px;
  height: 16px;
  background-size: 14px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-checks.svg);
}

.slick-arrow.slick-prev,
.slick-arrow.slick-next {
  width: 40px;
  height: 40px;
  background-color: #EC6523;
  transition: all 0.3s ease-in-out;
  border: 1px solid #EC6523;
  display: grid;
  place-content: center;
}

.slick-arrow.slick-prev:hover,
.slick-arrow.slick-next:hover {
  background-color: #C95218;
  border: 1px solid #C95218;
}

.slick-arrow.slick-prev:before,
.slick-arrow.slick-next:before {
  content: "";
  display: block;
  width: 8px;
  height: 13px;
  background-size: 8px 13px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/chevron-left-white.svg);
  transition: all 0.3s ease-in-out;
}

.slick-arrow.slick-prev.slick-disabled,
.slick-arrow.slick-next.slick-disabled {
  background-color: transparent;
  border: 1px solid #E0E4ED;
}

.slick-arrow.slick-prev.slick-disabled:before,
.slick-arrow.slick-next.slick-disabled:before {
  width: 8px;
  height: 13px;
  background-size: 8px 13px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/chevron-left-orange.svg);
}

.slick-arrow.slick-prev.slick-disabled:hover,
.slick-arrow.slick-next.slick-disabled:hover {
  background-color: #C95218;
  border: 1px solid #C95218;
}

.slick-arrow.slick-prev.slick-disabled:hover:before,
.slick-arrow.slick-next.slick-disabled:hover:before {
  width: 8px;
  height: 13px;
  background-size: 8px 13px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/chevron-left-white.svg);
}

.slick-arrow.slick-next:before {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.svg-bw-logo {
  background: url("sprites.svg") no-repeat;
  background-position: 0 0;
}

.svg-bw-logo-dims {
  width: 67.9px;
  height: 28.3px;
}

.svg-chevron-left-orange {
  background: url("sprites.svg") no-repeat;
  background-position: 2.0878108689% 1.1750405186%;
}

.svg-chevron-left-orange-dims {
  width: 8px;
  height: 13px;
}

.svg-chevron-left-white {
  background: url("sprites.svg") no-repeat;
  background-position: 2.333435677% 1.7017828201%;
}

.svg-chevron-left-white-dims {
  width: 8px;
  height: 13px;
}

.svg-google-logo {
  background: url("sprites.svg") no-repeat;
  background-position: 3.4077079108% 3.2718619869%;
}

.svg-google-logo-dims {
  width: 800px;
  height: 800px;
}

.svg-icon-arrow-left {
  background: url("sprites.svg") no-repeat;
  background-position: 27.2839506173% 34.6294046173%;
}

.svg-icon-arrow-left-dims {
  width: 25px;
  height: 12px;
}

.svg-icon-bar-orange-big {
  background: url("sprites.svg") no-repeat;
  background-position: 29.5802147738% 35.1581508516%;
}

.svg-icon-bar-orange-big-dims {
  width: 192px;
  height: 15px;
}

.svg-icon-bar-orange-med {
  background: url("sprites.svg") no-repeat;
  background-position: 35.2207293666% 35.7809330629%;
}

.svg-icon-bar-orange-med-dims {
  width: 139px;
  height: 16px;
}

.svg-icon-calendar-orange {
  background: url("sprites.svg") no-repeat;
  background-position: 38.14211012% 36.430020284%;
}

.svg-icon-calendar-orange-dims {
  width: 14px;
  height: 16px;
}

.svg-icon-check-green {
  background: url("sprites.svg") no-repeat;
  background-position: 38.5253456221% 36.9591589163%;
}

.svg-icon-check-green-dims {
  width: 10px;
  height: 8px;
}

.svg-icon-checks {
  background: url("sprites.svg") no-repeat;
  background-position: 38.8803445094% 37.4188311688%;
}

.svg-icon-checks-dims {
  width: 14px;
  height: 17px;
}

.svg-icon-chevron-down-orange {
  background: url("sprites.svg") no-repeat;
  background-position: 39.2988929889% 37.9700768298%;
}

.svg-icon-chevron-down-orange-dims {
  width: 13px;
  height: 8px;
}

.svg-icon-chevron-right-blue {
  background: url("sprites.svg") no-repeat;
  background-position: 39.637703408% 38.3711507293%;
}

.svg-icon-chevron-right-blue-dims {
  width: 8px;
  height: 13px;
}

.svg-icon-chevron-right-white {
  background: url("sprites.svg") no-repeat;
  background-position: 39.8833282161% 38.8978930308%;
}

.svg-icon-chevron-right-white-dims {
  width: 8px;
  height: 13px;
}

.svg-icon-close-bar {
  background: url("sprites.svg") no-repeat;
  background-position: 40.3021893309% 39.5689304595%;
}

.svg-icon-close-bar-dims {
  width: 22px;
  height: 22px;
}

.svg-icon-close-black {
  background: url("sprites.svg") no-repeat;
  background-position: 40.980573543% 40.4636030907%;
}

.svg-icon-close-black-dims {
  width: 22px;
  height: 22px;
}

.svg-icon-close-black-small {
  background: url("sprites.svg") no-repeat;
  background-position: 41.5948275862% 41.2911084044%;
}

.svg-icon-close-black-small-dims {
  width: 17px;
  height: 18px;
}

.svg-icon-close-red {
  background: url("sprites.svg") no-repeat;
  background-position: 42.0793601969% 41.9537900284%;
}

.svg-icon-close-red-dims {
  width: 14px;
  height: 14px;
}

.svg-icon-close-white {
  background: url("sprites.svg") no-repeat;
  background-position: 42.6148627814% 42.6596177308%;
}

.svg-icon-close-white-dims {
  width: 22px;
  height: 22px;
}

.svg-icon-contact-calendar-orange {
  background: url("sprites.svg") no-repeat;
  background-position: 43.2132963989% 43.5012185215%;
}

.svg-icon-contact-calendar-orange-dims {
  width: 16px;
  height: 19px;
}

.svg-icon-contact-mail-orange {
  background: url("sprites.svg") no-repeat;
  background-position: 43.7057556171% 44.2190669371%;
}

.svg-icon-contact-mail-orange-dims {
  width: 16px;
  height: 16px;
}

.svg-icon-contact-mail-white {
  background: url("sprites.svg") no-repeat;
  background-position: 44.1982148353% 44.8681541582%;
}

.svg-icon-contact-mail-white-dims {
  width: 16px;
  height: 16px;
}

.svg-icon-contact-phone-orange {
  background: url("sprites.svg") no-repeat;
  background-position: 44.6906740536% 45.5172413793%;
}

.svg-icon-contact-phone-orange-dims {
  width: 16px;
  height: 16px;
}

.svg-icon-contact-phone-white {
  background: url("sprites.svg") no-repeat;
  background-position: 45.1831332718% 46.1663286004%;
}

.svg-icon-contact-phone-white-dims {
  width: 16px;
  height: 16px;
}

.svg-icon-date {
  background: url("sprites.svg") no-repeat;
  background-position: 45.6474930791% 46.8154158215%;
}

.svg-icon-date-dims {
  width: 14px;
  height: 16px;
}

.svg-icon-facebook-orange {
  background: url("sprites.svg") no-repeat;
  background-position: 46.0923076923% 47.6966979209%;
}

.svg-icon-facebook-orange-dims {
  width: 15px;
  height: 28px;
}

.svg-icon-facebook-white {
  background: url("sprites.svg") no-repeat;
  background-position: 46.5538461538% 48.8381573583%;
}

.svg-icon-facebook-white-dims {
  width: 15px;
  height: 28px;
}

.svg-icon-geolocation {
  background: url("sprites.svg") no-repeat;
  background-position: 47.0153846154% 49.7161394972%;
}

.svg-icon-geolocation-dims {
  width: 15px;
  height: 15px;
}

.svg-icon-hamburger-menu {
  background: url("sprites.svg") no-repeat;
  background-position: 47.7118119975% 50.4061738424%;
}

.svg-icon-hamburger-menu-dims {
  width: 31px;
  height: 19px;
}

.svg-icon-hamburger-menu-close {
  background: url("sprites.svg") no-repeat;
  background-position: 48.5353068147% 51.2403416023%;
}

.svg-icon-hamburger-menu-close-dims {
  width: 22px;
  height: 22px;
}

.svg-icon-instagram-orange {
  background: url("sprites.svg") no-repeat;
  background-position: 49.6114392291% 52.6921496095%;
}

.svg-icon-instagram-orange-dims {
  width: 48px;
  height: 48px;
}

.svg-icon-instagram-white {
  background: url("sprites.svg") no-repeat;
  background-position: 51.1035125894% 54.6650226058%;
}

.svg-icon-instagram-white-dims {
  width: 48px;
  height: 48px;
}

.svg-icon-kostbaar {
  background: url("sprites.svg") no-repeat;
  background-position: 52.3514851485% 56.0618388934%;
}

.svg-icon-kostbaar-dims {
  width: 33px;
  height: 23px;
}

.svg-icon-linkedin-orange {
  background: url("sprites.svg") no-repeat;
  background-position: 53.6213863848% 57.5832305795%;
}

.svg-icon-linkedin-orange-dims {
  width: 48px;
  height: 48px;
}

.svg-icon-linkedin-white {
  background: url("sprites.svg") no-repeat;
  background-position: 55.1134597451% 59.5561035758%;
}

.svg-icon-linkedin-white-dims {
  width: 48px;
  height: 48px;
}

.svg-icon-pin-orange {
  background: url("sprites.svg") no-repeat;
  background-position: 55.9790962189% 60.7302231237%;
}

.svg-icon-pin-orange-dims {
  width: 12px;
  height: 16px;
}

.svg-icon-route-orange {
  background: url("sprites.svg") no-repeat;
  background-position: 56.4173591874% 61.3047001621%;
}

.svg-icon-route-orange-dims {
  width: 16px;
  height: 13px;
}

.svg-icon-search {
  background: url("sprites.svg") no-repeat;
  background-position: 56.8923076923% 61.906693712%;
}

.svg-icon-search-dims {
  width: 15px;
  height: 16px;
}

.svg-icon-search-black {
  background: url("sprites.svg") no-repeat;
  background-position: 57.3538461538% 62.5304136253%;
}

.svg-icon-search-black-dims {
  width: 15px;
  height: 15px;
}

.svg-icon-search-blue {
  background: url("sprites.svg") no-repeat;
  background-position: 57.8153846154% 63.1643002028%;
}

.svg-icon-search-blue-dims {
  width: 15px;
  height: 16px;
}

.svg-icon-search-submit {
  background: url("sprites.svg") no-repeat;
  background-position: 58.8016144055% 64.5465736561%;
}

.svg-icon-search-submit-dims {
  width: 44px;
  height: 44px;
}

.svg-icon-slider-arrow-disabled {
  background: url("sprites.svg") no-repeat;
  background-position: 60.0930232558% 66.2433428923%;
}

.svg-icon-slider-arrow-disabled-dims {
  width: 40px;
  height: 40px;
}

.svg-icon-slider-arrow-orange {
  background: url("sprites.svg") no-repeat;
  background-position: 61.3333333333% 67.8820155674%;
}

.svg-icon-slider-arrow-orange-dims {
  width: 40px;
  height: 40px;
}

.svg-icon-star {
  background: url("sprites.svg") no-repeat;
  background-position: 62.1114188981% 68.8438133874%;
}

.svg-icon-star-dims {
  width: 16px;
  height: 16px;
}

.svg-icon-tiktok-orange {
  background: url("sprites.svg") no-repeat;
  background-position: 63.5227982511% 70.8436724566%;
}

.svg-icon-tiktok-orange-dims {
  width: 63px;
  height: 63px;
}

.svg-icon-tiktok-white {
  background: url("sprites.svg") no-repeat;
  background-position: 65.4903185509% 73.4491315136%;
}

.svg-icon-tiktok-white-dims {
  width: 63px;
  height: 63px;
}

.svg-icon-upload {
  background: url("sprites.svg") no-repeat;
  background-position: 66.8110114445% 75.0918742344%;
}

.svg-icon-upload-dims {
  width: 32px;
  height: 32px;
}

.svg-icon-whatsapp-btn {
  background: url("sprites.svg") no-repeat;
  background-position: 68.1168427595% 76.8693508628%;
}

.svg-icon-whatsapp-btn-dims {
  width: 47px;
  height: 47px;
}

.svg-icon-whatsapp-btn-black {
  background: url("sprites.svg") no-repeat;
  background-position: 69.577377253% 78.8003286771%;
}

.svg-icon-whatsapp-btn-black-dims {
  width: 47px;
  height: 47px;
}

.svg-icon-whatsapp-btn-orange {
  background: url("sprites.svg") no-repeat;
  background-position: 71.0379117464% 80.7313064914%;
}

.svg-icon-whatsapp-btn-orange-dims {
  width: 47px;
  height: 47px;
}

.svg-icon-x-orange {
  background: url("sprites.svg") no-repeat;
  background-position: 72.5209822816% 82.6962597616%;
}

.svg-icon-x-orange-dims {
  width: 48px;
  height: 48px;
}

.svg-icon-x-white {
  background: url("sprites.svg") no-repeat;
  background-position: 74.0130556419% 84.6691327579%;
}

.svg-icon-x-white-dims {
  width: 48px;
  height: 48px;
}

.svg-link-bar-blue {
  background: url("sprites.svg") no-repeat;
  background-position: 75.7641921397% 85.0342880194%;
}

.svg-link-bar-blue-dims {
  width: 59px;
  height: 2px;
}

.svg-link-bar-orange {
  background: url("sprites.svg") no-repeat;
  background-position: 77.4595267746% 85.114965712%;
}

.svg-link-bar-orange-dims {
  width: 53px;
  height: 2px;
}

.svg-map-pin-bw {
  background: url("sprites.svg") no-repeat;
  background-position: 78.8640595903% 87.2006606111%;
}

.svg-map-pin-bw-dims {
  width: 43px;
  height: 59px;
}

.svg-map-pin-kb {
  background: url("sprites.svg") no-repeat;
  background-position: 80.1986343886% 89.6366639141%;
}

.svg-map-pin-kb-dims {
  width: 43px;
  height: 59px;
}

.svg-play-btn-orange {
  background: url("sprites.svg") no-repeat;
  background-position: 81.4573643411% 91.3560016387%;
}

.svg-play-btn-orange-dims {
  width: 40px;
  height: 40px;
}

.svg-play-button {
  background: url("sprites.svg") no-repeat;
  background-position: 82.6976744186% 92.9946743138%;
}

.svg-play-button-dims {
  width: 40px;
  height: 40px;
}

.svg-product-list-hover {
  background: url("sprites.svg") no-repeat;
  background-position: 84.805764411% 95.652173913%;
}

.svg-product-list-hover-dims {
  width: 73px;
  height: 66px;
}

.svg-section-bar-orange {
  background: url("sprites.svg") no-repeat;
  background-position: 90.4653433127% 96.3503649635%;
}

.svg-section-bar-orange-dims {
  width: 192px;
  height: 15px;
}

.svg-section-bar-orange-bottom {
  background: url("sprites.svg") no-repeat;
  background-position: 96.7133094696% 96.9586374696%;
}

.svg-section-bar-orange-bottom-dims {
  width: 192px;
  height: 15px;
}

.svg-section-bar-orange-mobile {
  background: url("sprites.svg") no-repeat;
  background-position: 99.4968553459% 97.4089068826%;
}

.svg-section-bar-orange-mobile-dims {
  width: 85px;
  height: 11px;
}

.svg-title-bar-blue {
  background: url("sprites.svg") no-repeat;
  background-position: 99.6320147194% 97.9732468585%;
}

.svg-title-bar-blue-dims {
  width: 4px;
  height: 14px;
}

.svg-title-bar-orange {
  background: url("sprites.svg") no-repeat;
  background-position: 99.7546764796% 98.5407377381%;
}

.svg-title-bar-orange-dims {
  width: 4px;
  height: 14px;
}

.svg-title-bar-orange-big {
  background: url("sprites.svg") no-repeat;
  background-position: 100% 100%;
}

.svg-title-bar-orange-big-dims {
  width: 8px;
  height: 36px;
}

.button-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 7px;
}

.button-wrapper .btn {
  border: 1px solid #EC6523;
  padding: 14px 24px 10px;
  transition: all 0.3s ease-in-out;
  font-size: 18px;
}

@media (max-width: 767px) {
  .button-wrapper .btn {
    font-size: 16px;
  }
}

.button-wrapper .btn span {
  color: #FFF;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  display: block;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 767px) {
  .button-wrapper .btn span {
    font-size: 16px;
  }
}

.button-wrapper .btn.default {
  background-color: #EC6523;
}

.button-wrapper .btn.default:hover {
  background-color: #C95218;
}

.button-wrapper .btn.ghost {
  background-color: transparent;
}

.button-wrapper .btn.ghost:hover {
  background-color: #EC6523;
}

.sections-holder section:not(.dark-section) .button-wrapper .btn.ghost span {
  color: #12213B;
}

.sections-holder section:not(.dark-section) .button-wrapper .btn.ghost:hover span {
  color: #fff;
}

.google-bar-review {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.google-bar-review p {
  color: #fff;
  line-height: 1;
  font-size: 16px;
  font-weight: 300;
  margin-top: 5px;
}

.google-bar-review p a {
  color: #fff;
  text-decoration: underline;
  font-weight: 300;
}

.review-stars {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  margin: 0 16px;
}

.review-stars .review-star {
  position: relative;
  overflow: hidden;
  -webkit-clip-path: polygon(46.17% 3.268%, 46.17% 3.268%, 46.812% 2.091%, 47.657% 1.176%, 48.654% 0.523%, 49.751% 0.131%, 50.899% 0%, 52.047% 0.131%, 53.144% 0.523%, 54.14% 1.176%, 54.985% 2.091%, 55.628% 3.268%, 65.954% 28.982%, 65.954% 28.982%, 66.203% 29.515%, 66.503% 30.01%, 66.851% 30.464%, 67.242% 30.874%, 67.673% 31.236%, 68.139% 31.548%, 68.636% 31.807%, 69.161% 32.01%, 69.708% 32.152%, 70.274% 32.232%, 97.078% 34.458%, 97.078% 34.458%, 98.357% 34.728%, 99.458% 35.277%, 100.366% 36.056%, 101.065% 37.016%, 101.539% 38.106%, 101.774% 39.278%, 101.753% 40.48%, 101.461% 41.663%, 100.882% 42.778%, 100% 43.774%, 79.579% 61.892%, 79.579% 61.892%, 79.167% 62.302%, 78.805% 62.75%, 78.495% 63.233%, 78.24% 63.745%, 78.04% 64.282%, 77.897% 64.837%, 77.813% 65.407%, 77.789% 65.986%, 77.827% 66.57%, 77.929% 67.152%, 84.168% 94.242%, 84.168% 94.242%, 84.315% 95.585%, 84.151% 96.839%, 83.716% 97.974%, 83.051% 98.96%, 82.196% 99.764%, 81.194% 100.357%, 80.083% 100.708%, 78.906% 100.786%, 77.704% 100.56%, 76.516% 100%, 53.569% 85.483%, 53.569% 85.483%, 53.065% 85.203%, 52.541% 84.985%, 52.002% 84.829%, 51.453% 84.736%, 50.899% 84.705%, 50.345% 84.736%, 49.795% 84.829%, 49.256% 84.985%, 48.733% 85.203%, 48.229% 85.483%, 25.281% 100%, 25.281% 100%, 24.094% 100.56%, 22.891% 100.786%, 21.714% 100.708%, 20.604% 100.357%, 19.601% 99.764%, 18.747% 98.96%, 18.081% 97.974%, 17.646% 96.839%, 17.482% 95.585%, 17.629% 94.242%, 23.869% 67.152%, 23.869% 67.152%, 23.97% 66.57%, 24.008% 65.986%, 23.984% 65.407%, 23.9% 64.837%, 23.758% 64.282%, 23.558% 63.745%, 23.302% 63.233%, 22.993% 62.75%, 22.631% 62.302%, 22.219% 61.892%, 1.797% 43.774%, 1.797% 43.774%, 0.915% 42.778%, 0.336% 41.663%, 0.044% 40.48%, 0.023% 39.278%, 0.258% 38.106%, 0.733% 37.016%, 1.432% 36.056%, 2.34% 35.277%, 3.441% 34.728%, 4.72% 34.458%, 31.523% 32.232%, 31.523% 32.232%, 32.09% 32.152%, 32.637% 32.01%, 33.161% 31.807%, 33.659% 31.548%, 34.125% 31.236%, 34.555% 30.874%, 34.947% 30.464%, 35.295% 30.01%, 35.595% 29.515%, 35.843% 28.982%, 46.17% 3.268%);
  clip-path: polygon(46.17% 3.268%, 46.17% 3.268%, 46.812% 2.091%, 47.657% 1.176%, 48.654% 0.523%, 49.751% 0.131%, 50.899% 0%, 52.047% 0.131%, 53.144% 0.523%, 54.14% 1.176%, 54.985% 2.091%, 55.628% 3.268%, 65.954% 28.982%, 65.954% 28.982%, 66.203% 29.515%, 66.503% 30.01%, 66.851% 30.464%, 67.242% 30.874%, 67.673% 31.236%, 68.139% 31.548%, 68.636% 31.807%, 69.161% 32.01%, 69.708% 32.152%, 70.274% 32.232%, 97.078% 34.458%, 97.078% 34.458%, 98.357% 34.728%, 99.458% 35.277%, 100.366% 36.056%, 101.065% 37.016%, 101.539% 38.106%, 101.774% 39.278%, 101.753% 40.48%, 101.461% 41.663%, 100.882% 42.778%, 100% 43.774%, 79.579% 61.892%, 79.579% 61.892%, 79.167% 62.302%, 78.805% 62.75%, 78.495% 63.233%, 78.24% 63.745%, 78.04% 64.282%, 77.897% 64.837%, 77.813% 65.407%, 77.789% 65.986%, 77.827% 66.57%, 77.929% 67.152%, 84.168% 94.242%, 84.168% 94.242%, 84.315% 95.585%, 84.151% 96.839%, 83.716% 97.974%, 83.051% 98.96%, 82.196% 99.764%, 81.194% 100.357%, 80.083% 100.708%, 78.906% 100.786%, 77.704% 100.56%, 76.516% 100%, 53.569% 85.483%, 53.569% 85.483%, 53.065% 85.203%, 52.541% 84.985%, 52.002% 84.829%, 51.453% 84.736%, 50.899% 84.705%, 50.345% 84.736%, 49.795% 84.829%, 49.256% 84.985%, 48.733% 85.203%, 48.229% 85.483%, 25.281% 100%, 25.281% 100%, 24.094% 100.56%, 22.891% 100.786%, 21.714% 100.708%, 20.604% 100.357%, 19.601% 99.764%, 18.747% 98.96%, 18.081% 97.974%, 17.646% 96.839%, 17.482% 95.585%, 17.629% 94.242%, 23.869% 67.152%, 23.869% 67.152%, 23.97% 66.57%, 24.008% 65.986%, 23.984% 65.407%, 23.9% 64.837%, 23.758% 64.282%, 23.558% 63.745%, 23.302% 63.233%, 22.993% 62.75%, 22.631% 62.302%, 22.219% 61.892%, 1.797% 43.774%, 1.797% 43.774%, 0.915% 42.778%, 0.336% 41.663%, 0.044% 40.48%, 0.023% 39.278%, 0.258% 38.106%, 0.733% 37.016%, 1.432% 36.056%, 2.34% 35.277%, 3.441% 34.728%, 4.72% 34.458%, 31.523% 32.232%, 31.523% 32.232%, 32.09% 32.152%, 32.637% 32.01%, 33.161% 31.807%, 33.659% 31.548%, 34.125% 31.236%, 34.555% 30.874%, 34.947% 30.464%, 35.295% 30.01%, 35.595% 29.515%, 35.843% 28.982%, 46.17% 3.268%);
  width: 16px;
  height: 16px;
}

.review-stars .review-star .review-star-background {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #EC6523;
  height: 100%;
}

.header__search .toggle-search-form {
  background: none;
  border: none;
  cursor: pointer;
  display: block;
  width: 15px;
  height: 16px;
  background-size: 15px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-search.svg);
}

.header__search .search-form {
  position: relative;
}

.header__search .search-form .search-field {
  padding: 6px 10px;
  width: 100%;
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  border: none;
}

.header__search .search-form .search-field:focus {
  outline: none;
}

.header__search .search-form .search-submit {
  position: absolute;
  width: 30px;
  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;
}

.header__search .search-form .search-submit .search-icon {
  display: block;
  width: 15px;
  height: 16px;
  background-size: 15px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-search-blue.svg);
}

.header__search .search-form-container {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
}

@media (max-width: 1178px) {
  .header__search .search-form-container {
    width: 100%;
  }
}

.main-nav .mega-menu-wrap {
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  height: auto;
  visibility: hidden;
  opacity: 0;
  z-index: -50000;
  transition: 0.2s ease-in-out all;
  display: block !important;
}

.main-nav .mega-menu-wrap:after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: -200%;
  width: 500%;
  height: 100%;
  z-index: -5;
  background-color: #12213B;
}

.main-nav .mega-menu-wrap .mega-menu-container {
  padding: 50px 0;
}

.main-nav .mega-menu-wrap .mega-menu-container .mega-menu-columns-wrapper {
  display: grid;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  row-gap: 35px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.main-nav .mega-menu-wrap .mega-menu-container .mega-menu-columns-wrapper .mega-menu-column {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}

.main-nav .mega-menu-wrap .mega-menu-container .mega-menu-columns-wrapper .mega-menu-column.line-before {
  position: relative;
}

.main-nav .mega-menu-wrap .mega-menu-container .mega-menu-columns-wrapper .mega-menu-column.line-before:before {
  content: "";
  display: block;
  position: absolute;
  top: -20px;
  left: -25px;
  height: 70%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.08);
}

@media (max-width: 1175px) {
  .main-nav .mega-menu-wrap .mega-menu-container .mega-menu-columns-wrapper .mega-menu-column.line-before:before {
    content: none;
  }
}

.main-nav .mega-menu-wrap .mega-menu-container .mega-menu-columns-wrapper .mega-menu-column .mega-menu-column-content .mega-menu-column-content-title {
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 25px;
}

.main-nav .mega-menu-wrap .mega-menu-container .mega-menu-columns-wrapper .mega-menu-column .mega-menu-column-content .mega-menu-column-content-title:before {
  content: "";
  display: block;
  width: 4px;
  height: 14px;
  background-size: 4px 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/title-bar-orange.svg);
  transition: all 0.3s ease-in-out;
  margin-bottom: 4px;
}

.main-nav .mega-menu-wrap .mega-menu-container .mega-menu-columns-wrapper .mega-menu-column .mega-menu-column-content .mega-menu-column-content-title .column-content-title {
  color: #FFF;
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
}

.main-nav .mega-menu-wrap .mega-menu-container .mega-menu-columns-wrapper .mega-menu-column .mega-menu-column-content .mega-menu-column-content-title:hover:before {
  width: 4px;
  height: 14px;
  background-size: 4px 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/title-bar-blue.svg);
}

.main-nav .mega-menu-wrap .mega-menu-container .mega-menu-columns-wrapper .mega-menu-column .mega-menu-column-content .mega-menu-content-links-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}

.main-nav .mega-menu-wrap .mega-menu-container .mega-menu-columns-wrapper .mega-menu-column .mega-menu-column-content .mega-menu-content-links-wrapper .kostbaar-link {
  font-size: 16px;
}

.main-nav .mega-menu-wrap .mega-menu-container .mega-menu-highlight-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
}

.main-nav .mega-menu-wrap .mega-menu-container .mega-menu-highlight-wrapper:before {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: #2A364D;
}

.main-nav .mega-menu-wrap .mega-menu-container .mega-menu-highlight-wrapper .mega-menu-highlight-columns {
  display: grid;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  row-gap: 35px;
  grid-template-columns: repeat(3, 1fr);
}

.main-nav .mega-menu-wrap .mega-menu-container .mega-menu-highlight-wrapper .mega-menu-highlight-columns .mega-menu-highlight-column {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
}

.main-nav .mega-menu-wrap .mega-menu-container .mega-menu-highlight-wrapper .mega-menu-highlight-columns .mega-menu-highlight-column .mega-menu-links-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}

.main-nav .mega-menu-wrap .mega-menu-container .mega-menu-highlight-wrapper .mega-menu-highlight-item-wrapper {
  position: relative;
  min-height: 250px;
  display: none;
}

.main-nav .mega-menu-wrap .mega-menu-container .mega-menu-highlight-wrapper .mega-menu-highlight-item-wrapper .mega-menu-highlight-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s ease-in-out all;
  opacity: 0;
  visibility: hidden;
}

.main-nav .mega-menu-wrap .mega-menu-container .mega-menu-highlight-wrapper .mega-menu-highlight-item-wrapper .mega-menu-highlight-item.active {
  opacity: 1;
  visibility: visible;
}

.main-nav .mega-menu-wrap .mega-menu-container .mega-menu-highlight-wrapper .mega-menu-highlight-item-wrapper .mega-menu-highlight-item .mega-menu-image-column {
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  height: 100%;
}

.main-nav .mega-menu-wrap .mega-menu-container .mega-menu-highlight-wrapper .mega-menu-highlight-item-wrapper .mega-menu-highlight-item .mega-menu-image-column .mega-menu-image-column-image {
  width: calc(50% - 15px);
}

.main-nav .mega-menu-wrap .mega-menu-container .mega-menu-highlight-wrapper .mega-menu-highlight-item-wrapper .mega-menu-highlight-item .mega-menu-image-column .mega-menu-image-column-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.main-nav .mega-menu-wrap .mega-menu-container .mega-menu-highlight-wrapper .mega-menu-highlight-item-wrapper .mega-menu-highlight-item .mega-menu-image-column-content {
  width: calc(50% - 15px);
}

.main-nav .mega-menu-wrap .mega-menu-container .mega-menu-highlight-wrapper .mega-menu-highlight-item-wrapper .mega-menu-highlight-item .mega-menu-image-column-content h3 {
  color: #FFF;
  font-size: 32px;
  font-weight: 400;
  line-height: 100%;
  margin-bottom: 25px;
}

.main-nav .mega-menu-wrap .mega-menu-container .mega-menu-highlight-wrapper .mega-menu-highlight-item-wrapper .mega-menu-highlight-item .mega-menu-image-column-content .mega-menu-image-column-content-text p {
  color: #FFF;
  font-size: 19px;
  font-weight: 400;
  line-height: 156%;
}

.mobile-nav .mega-menu-wrap .mega-menu-container {
  padding: 25px 0 0 0;
}

.mobile-nav .mega-menu-wrap .mega-menu-container .mega-menu-columns-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav .mega-menu-wrap .mega-menu-container .mega-menu-columns-wrapper .mega-menu-column {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 200px;
}

.mobile-nav .mega-menu-wrap .mega-menu-container .mega-menu-columns-wrapper .mega-menu-column .mega-menu-column-content {
  padding-bottom: 20px;
}

.mobile-nav .mega-menu-wrap .mega-menu-container .mega-menu-columns-wrapper .mega-menu-column .mega-menu-column-content .mega-menu-column-content-title {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
  cursor: pointer;
}

.mobile-nav .mega-menu-wrap .mega-menu-container .mega-menu-columns-wrapper .mega-menu-column .mega-menu-column-content .mega-menu-column-content-title:before {
  content: "";
  display: block;
  width: 4px;
  height: 14px;
  background-size: 4px 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/title-bar-orange.svg);
  transition: all 0.3s ease-in-out;
  margin-bottom: 4px;
}

.mobile-nav .mega-menu-wrap .mega-menu-container .mega-menu-columns-wrapper .mega-menu-column .mega-menu-column-content .mega-menu-column-content-title .column-content-title {
  position: relative;
  color: #FFF;
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
}

.mobile-nav .mega-menu-wrap .mega-menu-container .mega-menu-columns-wrapper .mega-menu-column .mega-menu-column-content .mega-menu-column-content-title:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  transition: all 0.3s ease-in-out;
  width: 13px;
  height: 8px;
  background-size: 13px 8px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-chevron-down-orange.svg);
}

.mobile-nav .mega-menu-wrap .mega-menu-container .mega-menu-columns-wrapper .mega-menu-column .mega-menu-column-content .mega-menu-column-content-title:hover:before {
  width: 4px;
  height: 14px;
  background-size: 4px 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/title-bar-blue.svg);
}

.mobile-nav .mega-menu-wrap .mega-menu-container .mega-menu-columns-wrapper .mega-menu-column .mega-menu-column-content .mega-menu-column-content-title.active:after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  top: calc(50% - 5px);
}

.mobile-nav .mega-menu-wrap .mega-menu-container .mega-menu-columns-wrapper .mega-menu-column .mega-menu-column-content .mega-menu-content-links-wrapper {
  display: none;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.mobile-nav .mega-menu-wrap .mega-menu-container .mega-menu-highlight-wrapper .mega-menu-highlight-columns {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

.mobile-nav .mega-menu-wrap .mega-menu-container .mega-menu-highlight-wrapper .mega-menu-highlight-columns .mega-menu-highlight-column {
  width: 100%;
}

.mobile-nav .mega-menu-wrap .mega-menu-container .mega-menu-highlight-wrapper .mega-menu-highlight-columns .mega-menu-highlight-column .mega-menu-links-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav .mega-menu-wrap .mega-menu-container .mega-menu-highlight-wrapper .mega-menu-image-column {
  display: none;
}

.mobile-nav .mega-menu-wrap .mega-menu-container .mega-menu-highlight-wrapper .mega-menu-image-column-content {
  display: none;
}

.mobile-nav .mega-menu-wrap .mega-menu-container .kostbaar-link {
  min-width: 200px;
  font-size: 18px !important;
  font-family: Hind, "sans-serif" !important;
}

.mobile-nav .mega-menu-wrap .mega-menu-container .kostbaar-link:after {
  -webkit-clip-path: none;
  clip-path: none;
}

.cta-section {
  background-color: #FFF5EE;
  overflow-y: visible;
  position: relative;
  z-index: 10;
}

@media (max-width: 991px) {
  .cta-section .col-12 {
    padding-right: 0;
  }
}

.cta-section .cta-section-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
  position: relative;
  z-index: 5;
}

@media (max-width: 991px) {
  .cta-section .cta-section-wrapper {
    grid-template-columns: 1fr;
  }
}

.cta-section .cta-section-wrapper .cta-section-content {
  padding: 55px 0;
}

@media (max-width: 991px) {
  .cta-section .cta-section-wrapper .cta-section-content {
    padding-bottom: 0;
    padding-right: 19px;
  }
}

.cta-section .cta-section-wrapper .cta-section-content .cta-title {
  font-weight: 600;
  margin-bottom: 25px;
}

.cta-section .cta-section-wrapper .cta-section-content .button-wrapper {
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .cta-section .cta-section-wrapper .cta-section-content .button-wrapper .btn {
    padding: 14px 10px 10px;
  }
}

.cta-section .cta-section-wrapper .cta-section-content .button-wrapper .whatsapp-btn {
  position: relative;
  height: 44px;
  width: 44px;
  background-color: #EC6523;
  border: 1px solid #EC6523;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 767px) {
  .cta-section .cta-section-wrapper .cta-section-content .button-wrapper .whatsapp-btn {
    height: 42px;
    width: 42px;
  }
}

.cta-section .cta-section-wrapper .cta-section-content .button-wrapper .whatsapp-btn:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-whatsapp-btn.svg);
  transition: all 0.3s ease-in-out;
}

.cta-section .cta-section-wrapper .cta-section-content .button-wrapper .whatsapp-btn:hover {
  background-color: #C95218;
}

.cta-section .cta-section-wrapper .cta-contact-wrapper {
  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: 50px;
  margin-top: 30px;
}

.cta-section .cta-section-wrapper .cta-contact-wrapper.mobile {
  display: none;
  margin-top: 12px;
}

@media (max-width: 1177px) {
  .cta-section .cta-section-wrapper .cta-contact-wrapper {
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .cta-section .cta-section-wrapper .cta-contact-wrapper {
    display: none;
  }

  .cta-section .cta-section-wrapper .cta-contact-wrapper.mobile {
    display: -ms-flexbox;
    display: flex;
    gap: 0;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-left: -18px;
  }
}

.cta-section .cta-section-wrapper .cta-contact-wrapper .cta-contact {
  position: relative;
  border-top: 1px solid rgba(18, 33, 59, 0.1);
  border-bottom: 1px solid rgba(18, 33, 59, 0.1);
  padding: 13px 0;
}

.cta-section .cta-section-wrapper .cta-contact-wrapper .cta-contact a {
  padding-left: 25px;
  color: #12213B;
  opacity: 0.75;
}

.cta-section .cta-section-wrapper .cta-contact-wrapper .cta-contact:before {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 10px);
  left: 0;
}

.cta-section .cta-section-wrapper .cta-contact-wrapper .cta-contact.cta-phone:before {
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-contact-phone-orange.svg);
}

.cta-section .cta-section-wrapper .cta-contact-wrapper .cta-contact.cta-email:before {
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-contact-mail-orange.svg);
}

.cta-section .cta-section-wrapper .cta-contact-wrapper.mobile .cta-contact {
  border: none;
  padding: 0;
}

.cta-section .cta-section-wrapper .cta-contact-wrapper.mobile .cta-contact a {
  padding-left: 35px;
  color: #12213B;
  opacity: 0.75;
}

.cta-section .cta-section-wrapper .cta-contact-wrapper.mobile .cta-contact:before {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 10px);
  left: 0;
}

.cta-section .cta-section-wrapper .cta-contact-wrapper.mobile .cta-contact.cta-phone:before {
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-contact-phone-orange.svg);
}

.cta-section .cta-section-wrapper .cta-contact-wrapper.mobile .cta-contact.cta-email:before {
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-contact-mail-orange.svg);
}

.cta-section .cta-section-wrapper .cta-section-team {
  margin-top: -60px;
  display: grid;
  grid-template-columns: 40% 60%;
  -ms-flex-align: end;
  align-items: flex-end;
}

@media (max-width: 991px) {
  .cta-section .cta-section-wrapper .cta-section-team {
    margin-top: 0px;
  }
}

@media (max-width: 767px) {
  .cta-section .cta-section-wrapper .cta-section-team {
    display: grid;
    grid-template-columns: 53% 47%;
    margin-top: -70px;
  }
}

.cta-section .cta-section-wrapper .cta-section-team .cta-section-team-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
}

@media (max-width: 991px) {
  .cta-section .cta-section-wrapper .cta-section-team .cta-section-team-content {
    margin-top: 70px;
  }
}

@media (max-width: 767px) {
  .cta-section .cta-section-wrapper .cta-section-team .cta-section-team-content.no-contact {
    padding-bottom: 20px;
  }
}

.cta-section .cta-section-wrapper .cta-section-team .cta-section-team-content:before {
  content: "";
  display: block;
  width: 8px;
  height: 36px;
  background-size: 8px 36px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/title-bar-orange-big.svg);
  margin-top: 4px;
}

@media (max-width: 767px) {
  .cta-section .cta-section-wrapper .cta-section-team .cta-section-team-content:before {
    margin-top: 0;
    width: 8px;
    height: 31px;
    background-size: 8px 31px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../../resources/images/svg/title-bar-orange-big.svg);
  }
}

@media (max-width: 767px) {
  .cta-section .cta-section-wrapper .cta-section-team .cta-section-team-content .cta-section-team-content-wrapper {
    margin-bottom: 15px;
  }
}

@media (max-width: 767px) {
  .cta-section .cta-section-wrapper .cta-section-team .cta-section-team-content .cta-section-team-content-wrapper .team-name {
    font-size: 18px;
  }
}

.cta-section .cta-section-wrapper .cta-section-team .cta-section-team-content .cta-section-team-content-wrapper .team-func {
  opacity: 0.8;
  padding-bottom: 50px;
}

@media (max-width: 991px) {
  .cta-section .cta-section-wrapper .cta-section-team .cta-section-team-content .cta-section-team-content-wrapper .team-func {
    padding-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .cta-section .cta-section-wrapper .cta-section-team .cta-section-team-content .cta-section-team-content-wrapper .team-func {
    padding: 0;
    font-size: 16px;
  }
}

.cta-section .cta-section-wrapper .cta-section-team .cta-section-team-image {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
  align-items: flex-end;
  height: 100%;
  width: 100%;
}

@media (max-width: 991px) {
  .cta-section .cta-section-wrapper .cta-section-team .cta-section-team-image {
    max-height: 360px;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .cta-section .cta-section-wrapper .cta-section-team .cta-section-team-image {
    height: 250px;
    padding-left: 10px;
  }
}

.cta-section .cta-section-wrapper .cta-section-team .cta-section-team-image img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
  margin-left: auto;
  max-width: 100%;
  max-height: 410px;
}

.cta-section .cta-section-wrapper .cta-section-team .cta-section-team-image.mobile-img img.mobile {
  display: none;
}

@media (max-width: 950px) {
  .cta-section .cta-section-wrapper .cta-section-team .cta-section-team-image.mobile-img img.desktop {
    display: none;
  }

  .cta-section .cta-section-wrapper .cta-section-team .cta-section-team-image.mobile-img img.mobile {
    display: block;
  }
}

.cta-section .cta-section-list {
  padding: 18px 0;
  background-color: #fff;
  position: relative;
  z-index: 10;
}

@media (max-width: 767px) {
  .cta-section .cta-section-list {
    display: none;
  }
}

.cta-section .cta-section-list .cta-list-wrapper {
  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;
  row-gap: 15px;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}

.cta-section .cta-section-list .cta-list-wrapper .cta-list-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}

.cta-section .cta-section-list .cta-list-wrapper .cta-list-item:before {
  content: "";
  display: block;
  width: 14px;
  height: 16px;
  background-size: 14px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-checks.svg);
  margin-bottom: 4px;
}

@media (max-width: 767px) {
  .breadcrumbs-line {
    display: none;
  }
}

.breadcrumbs-line .breadcrumbs {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  z-index: 65;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
}

.breadcrumbs-line .breadcrumbs .separator {
  width: 4px;
  height: 4px;
  background-color: #EC6523;
  margin-bottom: 4px;
}

.breadcrumbs-line .breadcrumbs span,
.breadcrumbs-line .breadcrumbs a {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
  transition: all 0.3s ease-in-out;
}

.breadcrumbs-line .breadcrumbs span:hover,
.breadcrumbs-line .breadcrumbs a:hover {
  color: #EC6523;
  text-decoration: none;
}

.breadcrumbs-line .breadcrumbs .current-item {
  color: #FFF;
  font-weight: 500;
}

.breadcrumbs-line .breadcrumbs .current-item:hover {
  color: #fff;
}

.section-image-block {
  padding: 40px 0;
  position: relative;
}

.section-image-block:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 16px;
  width: calc(100% - 32px);
  background-color: #E7E9EB;
  height: 1px;
}

.section-image-block .lightbox-holder .section-subtitle {
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-top: 20px;
  font-size: 18px;
  font-weight: 300;
  line-height: 100%;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .section-image-block .lightbox-holder .section-subtitle {
    font-size: 16px;
  }
}

.section-image-block .lightbox-holder .section-subtitle:before {
  content: "";
  display: block;
  width: 4px;
  height: 14px;
  background-size: 4px 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/title-bar-orange.svg);
  transition: all 0.3s ease-in-out;
  margin-bottom: 4px;
}

.section-image-block .lightbox-holder .lightbox-image-wrapper {
  position: relative;
  max-height: 430px;
}

.section-image-block .lightbox-holder .lightbox-image-wrapper img {
  max-height: 430px;
  height: 100%;
  width: 100%;
}

.section-image-block .lightbox-holder .lightbox-image-wrapper .lightbox-button {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.section-image-block .lightbox-holder .lightbox-image-wrapper .lightbox-button:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background-size: 40px 40px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/play-button.svg);
}

.top-filters .filter-wrapper {
  display: grid;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  grid-template-columns: 1.5fr 1fr;
}

@media (max-width: 991px) {
  .top-filters .filter-wrapper {
    grid-template-columns: 1fr;
  }
}

.top-filters .filter-wrapper .search-line {
  position: relative;
  height: 44px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.top-filters .filter-wrapper .search-line .search-icon {
  position: absolute;
  left: 24px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  width: 15px;
  height: 15px;
  background-size: 15px 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-search-black.svg);
}

.top-filters .filter-wrapper .search-line .search-submit {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 44px;
  height: 44px;
  background-size: 44px 44px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-search-submit.svg);
}

.top-filters .filter-wrapper .search-line input {
  width: 100%;
  border: 1px solid rgba(18, 33, 59, 0.08);
  padding: 0 44px 0 54px;
  height: 44px;
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: 156%;
}

.top-filters .filter-wrapper .filter-select-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.top-filters .filter-wrapper .filter-select-wrapper .input-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

@media (max-width: 991px) {
  .top-filters .filter-wrapper .filter-select-wrapper .input-wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.top-filters .filter-wrapper .filter-select-wrapper .input-wrapper .select-filters {
  padding: 0 18px;
  height: 44px;
  border: 1px solid #EC6523;
  display: grid;
  place-content: center center;
  position: relative;
  min-width: 130px;
}

.top-filters .filter-wrapper .filter-select-wrapper .input-wrapper .select-filters .filter-name {
  cursor: pointer;
}

.top-filters .filter-wrapper .filter-select-wrapper .input-wrapper .select-filters .filter-name .name-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.top-filters .filter-wrapper .filter-select-wrapper .input-wrapper .select-filters .filter-name .name-wrapper:after {
  content: "";
  display: block;
  width: 13px;
  height: 8px;
  background-size: 13px 8px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-chevron-down-orange.svg);
}

.top-filters .filter-wrapper .filter-select-wrapper .input-wrapper .select-filters .filter-name .name-wrapper .filter-name-title {
  display: block;
  line-height: 1;
  font-size: 18px;
  font-weight: 600;
}

.top-filters .filter-wrapper .filter-select-wrapper .input-wrapper .select-filters .filter-name .filter-list {
  width: 100%;
  position: absolute;
  top: 45px;
  left: 0;
  background-color: #FFF5EE;
  z-index: 15;
}

.top-filters .filter-wrapper .filter-select-wrapper .input-wrapper .select-filters .filter-name .filter-list .filter-wrap .checkbox-wrapper {
  padding: 10px;
  margin: 0;
  display: grid;
  place-content: center;
  background-color: #FFF5EE;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.top-filters .filter-wrapper .filter-select-wrapper .input-wrapper .select-filters .filter-name .filter-list .filter-wrap .checkbox-wrapper input {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

.top-filters .filter-wrapper .filter-select-wrapper .input-wrapper .select-filters .filter-name .filter-list .filter-wrap .checkbox-wrapper .text {
  transition: all 0.3s ease-in-out;
  display: block;
  line-height: 1;
  font-size: 18px;
  text-align: center;
}

.top-filters .filter-wrapper .filter-select-wrapper .input-wrapper .select-filters .filter-name .filter-list .filter-wrap .checkbox-wrapper:has(.filter-checkbox:checked) {
  background-color: #EC6523;
}

.top-filters .filter-wrapper .filter-select-wrapper .input-wrapper .select-filters .filter-name .filter-list .filter-wrap .checkbox-wrapper:has(.filter-checkbox:checked) .text {
  color: #fff;
}

.pagination-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
}

.pagination-wrapper .page-numbers {
  display: block;
  font-size: 0;
  width: 9px;
  height: 9px;
  border: 1px solid #E0E4ED;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
}

.pagination-wrapper .page-numbers.current {
  border: 1px solid #EC6523;
  background-color: #EC6523;
}

.pagination-wrapper .page-numbers.next,
.pagination-wrapper .page-numbers.prev {
  width: 40px;
  height: 40px;
  background-size: 40px 40px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-search-submit.svg);
}

.pagination-wrapper .page-numbers.next {
  margin-left: 20px;
}

.pagination-wrapper .page-numbers.prev {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  margin-right: 20px;
}

.posts-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 45px;
}

@media (max-width: 991px) {
  .posts-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .posts-list {
    grid-template-columns: 1fr;
  }
}

.posts-list .nieuws-loop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  height: 100%;
}

.posts-list .nieuws-loop .post-link-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.posts-list .nieuws-loop .nieuws-image {
  position: relative;
  height: 265px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 767px) {
  .posts-list .nieuws-loop .nieuws-image {
    height: 250px;
  }
}

.posts-list .nieuws-loop .nieuws-image .niews-categories {
  position: absolute;
  top: 16px;
  right: 16px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.posts-list .nieuws-loop .nieuws-image .niews-categories .nieuws-tax {
  padding: 10px 16px;
  background-color: #12213B;
}

@media (max-width: 767px) {
  .posts-list .nieuws-loop .nieuws-image .niews-categories .nieuws-tax {
    padding: 6px 8px;
    font-size: 15px;
  }
}

.posts-list .nieuws-loop .nieuws-image .niews-categories .nieuws-tax span {
  display: block;
  color: #FFF;
  font-family: "Hind-hosted", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  padding-top: 2px;
}

@media (max-width: 767px) {
  .posts-list .nieuws-loop .nieuws-image .niews-categories .nieuws-tax span {
    font-size: 15px;
  }
}

.posts-list .nieuws-loop .nieuws-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 15px 25px;
  border: 1px solid rgba(18, 33, 59, 0.08);
  border-top: none;
  background: #FFF;
}

.posts-list .nieuws-loop .nieuws-content .nieuws-meta {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 12px;
}

@media (max-width: 991px) {
  .posts-list .nieuws-loop .nieuws-content .nieuws-meta {
    padding: 0;
  }
}

.posts-list .nieuws-loop .nieuws-content .nieuws-meta .separator {
  width: 4px;
  height: 4px;
  background-color: #EC6523;
  margin-bottom: 4px;
}

.posts-list .nieuws-loop .nieuws-content .nieuws-meta .nieuws-reading span,
.posts-list .nieuws-loop .nieuws-content .nieuws-meta .nieuws-date span {
  color: #2A364D;
  font-size: 16px;
  font-weight: 300;
  line-height: 130%;
}

.posts-list .nieuws-loop .nieuws-content .post-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 108%;
}

.posts-list .nieuws-loop .nieuws-content .nieuws-excerpt {
  margin-top: 10px;
}

.posts-list .nieuws-loop .nieuws-content .post-link-wrap {
  margin-top: auto;
  padding-top: 20px;
}

.products-wrapper,
.product-list {
  display: grid;
  row-gap: 30px;
  -ms-flex-pack: center;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, 330px);
  margin-left: -15px;
  margin-right: -15px;
}

@media (max-width: 767px) {
  .products-wrapper,
  .product-list {
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.product-loop {
  position: relative;
  box-shadow: 4px 4px 10px 5px rgba(0, 0, 0, 0.03);
  margin: 0 15px;
  overflow: visible;
  transition: all 0.3s ease-in-out;
  will-change: transform, box-shadow;
}

@media (max-width: 500px) {
  .product-loop {
    width: 100%;
    margin: 0;
  }
}

.product-loop .post-link-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.product-loop .product-image {
  height: 250px;
  overflow: hidden;
  aspect-ratio: unset;
}

.product-loop .product-image .image {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.3s ease-in-out;
}

.product-loop .product-content {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
  padding: 5px 25px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  min-height: 63px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-loop .product-content:before {
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  right: -2px;
  width: 73px;
  height: calc(100% + 4px);
  -webkit-clip-path: polygon(11.644% 0%, 100% 0%, 100% 100%, 0% 100%, 11.644% 0%);
  clip-path: polygon(11.644% 0%, 100% 0%, 100% 100%, 0% 100%, 11.644% 0%);
  background-color: #EC6523;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.product-loop .product-content:after {
  position: relative;
  z-index: 5;
  content: "";
  display: block;
  width: 8px;
  height: 13px;
  background-size: 8px 13px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-chevron-right-blue.svg);
}

.product-loop .product-content h3 {
  font-weight: 600;
  line-height: 108%;
  max-width: calc(100% - 50px);
}

.product-loop:hover {
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}

.product-loop:hover .product-content {
  border-left: none;
}

.product-loop:hover .product-content:before {
  visibility: visible;
  opacity: 1;
}

:root {
  --color: #12213B;
}

.dark-section {
  --color: #fff;
}

@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 .gf_progressbar_wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  margin-bottom: 30px;
}

body .gform_wrapper.gform-theme .gf_progressbar_wrapper .gf_progressbar {
  background: rgba(235, 103, 31, 0.2);
  border-radius: 0;
}

body .gform_wrapper.gform-theme .gf_progressbar_wrapper .gf_progressbar_title {
  text-align: center;
  margin-top: 15px;
}

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 {
  border-radius: 0;
  border: none;
  background-color: transparent;
  border-bottom: 1px solid rgba(18, 33, 59, 0.5);
  color: var(--color);
  font-size: 16px;
  font-weight: 400;
  outline: none;
  padding: 12px;
  box-shadow: none;
  width: 100%;
}

body .gform_wrapper.gform-theme input[type=color]::-webkit-input-placeholder,
body .gform_wrapper.gform-theme input[type=date]::-webkit-input-placeholder,
body .gform_wrapper.gform-theme input[type=datetime-local]::-webkit-input-placeholder,
body .gform_wrapper.gform-theme input[type=datetime]::-webkit-input-placeholder,
body .gform_wrapper.gform-theme input[type=email]::-webkit-input-placeholder,
body .gform_wrapper.gform-theme input[type=month]::-webkit-input-placeholder,
body .gform_wrapper.gform-theme input[type=number]::-webkit-input-placeholder,
body .gform_wrapper.gform-theme input[type=password]::-webkit-input-placeholder,
body .gform_wrapper.gform-theme input[type=search]::-webkit-input-placeholder,
body .gform_wrapper.gform-theme input[type=tel]::-webkit-input-placeholder,
body .gform_wrapper.gform-theme input[type=text]::-webkit-input-placeholder,
body .gform_wrapper.gform-theme input[type=time]::-webkit-input-placeholder,
body .gform_wrapper.gform-theme input[type=url]::-webkit-input-placeholder,
body .gform_wrapper.gform-theme input[type=week]::-webkit-input-placeholder,
body .gform_wrapper.gform-theme select::-webkit-input-placeholder,
body .gform_wrapper.gform-theme textarea::-webkit-input-placeholder {
  opacity: 0.2;
}

body .gform_wrapper.gform-theme input[type=color]::-moz-placeholder,
body .gform_wrapper.gform-theme input[type=date]::-moz-placeholder,
body .gform_wrapper.gform-theme input[type=datetime-local]::-moz-placeholder,
body .gform_wrapper.gform-theme input[type=datetime]::-moz-placeholder,
body .gform_wrapper.gform-theme input[type=email]::-moz-placeholder,
body .gform_wrapper.gform-theme input[type=month]::-moz-placeholder,
body .gform_wrapper.gform-theme input[type=number]::-moz-placeholder,
body .gform_wrapper.gform-theme input[type=password]::-moz-placeholder,
body .gform_wrapper.gform-theme input[type=search]::-moz-placeholder,
body .gform_wrapper.gform-theme input[type=tel]::-moz-placeholder,
body .gform_wrapper.gform-theme input[type=text]::-moz-placeholder,
body .gform_wrapper.gform-theme input[type=time]::-moz-placeholder,
body .gform_wrapper.gform-theme input[type=url]::-moz-placeholder,
body .gform_wrapper.gform-theme input[type=week]::-moz-placeholder,
body .gform_wrapper.gform-theme select::-moz-placeholder,
body .gform_wrapper.gform-theme textarea::-moz-placeholder {
  opacity: 0.2;
}

body .gform_wrapper.gform-theme input[type=color]:-ms-input-placeholder,
body .gform_wrapper.gform-theme input[type=date]:-ms-input-placeholder,
body .gform_wrapper.gform-theme input[type=datetime-local]:-ms-input-placeholder,
body .gform_wrapper.gform-theme input[type=datetime]:-ms-input-placeholder,
body .gform_wrapper.gform-theme input[type=email]:-ms-input-placeholder,
body .gform_wrapper.gform-theme input[type=month]:-ms-input-placeholder,
body .gform_wrapper.gform-theme input[type=number]:-ms-input-placeholder,
body .gform_wrapper.gform-theme input[type=password]:-ms-input-placeholder,
body .gform_wrapper.gform-theme input[type=search]:-ms-input-placeholder,
body .gform_wrapper.gform-theme input[type=tel]:-ms-input-placeholder,
body .gform_wrapper.gform-theme input[type=text]:-ms-input-placeholder,
body .gform_wrapper.gform-theme input[type=time]:-ms-input-placeholder,
body .gform_wrapper.gform-theme input[type=url]:-ms-input-placeholder,
body .gform_wrapper.gform-theme input[type=week]:-ms-input-placeholder,
body .gform_wrapper.gform-theme select:-ms-input-placeholder,
body .gform_wrapper.gform-theme textarea:-ms-input-placeholder {
  opacity: 0.2;
}

body .gform_wrapper.gform-theme input[type=color]::-ms-input-placeholder,
body .gform_wrapper.gform-theme input[type=date]::-ms-input-placeholder,
body .gform_wrapper.gform-theme input[type=datetime-local]::-ms-input-placeholder,
body .gform_wrapper.gform-theme input[type=datetime]::-ms-input-placeholder,
body .gform_wrapper.gform-theme input[type=email]::-ms-input-placeholder,
body .gform_wrapper.gform-theme input[type=month]::-ms-input-placeholder,
body .gform_wrapper.gform-theme input[type=number]::-ms-input-placeholder,
body .gform_wrapper.gform-theme input[type=password]::-ms-input-placeholder,
body .gform_wrapper.gform-theme input[type=search]::-ms-input-placeholder,
body .gform_wrapper.gform-theme input[type=tel]::-ms-input-placeholder,
body .gform_wrapper.gform-theme input[type=text]::-ms-input-placeholder,
body .gform_wrapper.gform-theme input[type=time]::-ms-input-placeholder,
body .gform_wrapper.gform-theme input[type=url]::-ms-input-placeholder,
body .gform_wrapper.gform-theme input[type=week]::-ms-input-placeholder,
body .gform_wrapper.gform-theme select::-ms-input-placeholder,
body .gform_wrapper.gform-theme textarea::-ms-input-placeholder {
  opacity: 0.2;
}

body .gform_wrapper.gform-theme input[type=color]::placeholder,
body .gform_wrapper.gform-theme input[type=date]::placeholder,
body .gform_wrapper.gform-theme input[type=datetime-local]::placeholder,
body .gform_wrapper.gform-theme input[type=datetime]::placeholder,
body .gform_wrapper.gform-theme input[type=email]::placeholder,
body .gform_wrapper.gform-theme input[type=month]::placeholder,
body .gform_wrapper.gform-theme input[type=number]::placeholder,
body .gform_wrapper.gform-theme input[type=password]::placeholder,
body .gform_wrapper.gform-theme input[type=search]::placeholder,
body .gform_wrapper.gform-theme input[type=tel]::placeholder,
body .gform_wrapper.gform-theme input[type=text]::placeholder,
body .gform_wrapper.gform-theme input[type=time]::placeholder,
body .gform_wrapper.gform-theme input[type=url]::placeholder,
body .gform_wrapper.gform-theme input[type=week]::placeholder,
body .gform_wrapper.gform-theme select::placeholder,
body .gform_wrapper.gform-theme textarea::placeholder {
  opacity: 0.2;
}

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--type-html {
  color: var(--color);
  font-size: 16px;
  font-weight: 400;
}

body .gform_wrapper.gform-theme .gfield--type-html div {
  color: var(--color);
  font-size: 16px;
  font-weight: 400;
  line-height: 156%;
}

body .gform_wrapper.gform-theme .gfield--type-html div strong {
  font-size: 16px;
  font-weight: 700;
}

body .gform_wrapper.gform-theme .gfield--type-html div a {
  font-size: 16px;
  color: #EC6523;
  text-decoration: underline;
}

body .gform_wrapper.gform-theme .ginput_container_date {
  position: relative;
}

body .gform_wrapper.gform-theme .ginput_container_date:after {
  content: "";
  display: block;
  width: 14px;
  height: 16px;
  background-size: 14px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-date.svg);
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

body .gform_wrapper.gform-theme .ginput_container_date input {
  padding-right: 50px;
}

body .gform_wrapper.gform-theme .gfield p {
  display: none;
}

body .gform_wrapper.gform-theme .user-location-gf {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

body .gform_wrapper.gform-theme .user-location-gf .user-location-gf-btn {
  background-color: #EC6523;
  padding: 12px 18px 10px;
  display: grid;
  place-content: center;
  color: #FFF;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
}

body .gform_wrapper.gform-theme .user-location-gf .user-location-gf-btn:hover {
  background-color: #C95218;
}

body .gform_wrapper.gform-theme .gfield_required_asterisk {
  color: var(--color);
  font-size: 16px;
}

body .gform_wrapper.gform-theme .gfield_label,
body .gform_wrapper.gform-theme .gform-field-label--type-sub {
  color: var(--color);
  font-family: Hind, "sans-serif";
  font-size: 16px;
  font-weight: 400;
  line-height: 156%;
}

body .gform_wrapper.gform-theme .gfield--type-fileupload {
  position: relative;
}

body .gform_wrapper.gform-theme .gfield--type-fileupload .gfield_fileupload_progress {
  transition: all 0.3s ease-in-out;
}

body .gform_wrapper.gform-theme .gfield--type-fileupload .gfield_fileupload_progress_complete {
  opacity: 0;
  visibility: hidden;
  height: 0;
}

body .gform_wrapper.gform-theme .gfield--type-fileupload span.gform_drop_instructions,
body .gform_wrapper.gform-theme .gfield--type-fileupload span.gform_fileupload_rules {
  display: none;
}

body .gform_wrapper.gform-theme .gfield--type-fileupload .gform_drop_area {
  border: 1px dashed var(--color);
  padding: 12px;
  background-color: transparent;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}

body .gform_wrapper.gform-theme .gfield--type-fileupload .gform_drop_area:before {
  margin: 0;
  display: block;
  width: 32px;
  height: 32px;
  background-size: 32px 32px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-upload.svg);
  font-size: 0;
}

body .gform_wrapper.gform-theme .gfield--type-fileupload .gform_drop_area input,
body .gform_wrapper.gform-theme .gfield--type-fileupload .gform_drop_area button {
  color: rgba(18, 33, 59, 0.2) !important;
  background-color: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  font-size: 19px !important;
  font-weight: 400 !important;
  line-height: 156%;
}

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: transparent;
  border-radius: 0px;
  cursor: pointer;
  padding: 12px 0 0 56px;
  height: 60px;
  border: 1px dashed var(--color);
  color: var(--color);
  font-size: 16px;
  font-weight: 400;
  outline: none;
}

body .gform_wrapper.gform-theme .gfield--type-fileupload input:before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  left: 12px;
  content: "";
  width: 32px;
  height: 32px;
  background-size: 32px 32px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-upload.svg);
}

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 {
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

body .gform_wrapper.gform-theme .gfield_checkbox .gchoice,
body .gform_wrapper.gform-theme .gfield_radio .gchoice {
  -ms-flex-align: center;
  align-items: center;
}

body .gform_wrapper.gform-theme .gfield_checkbox .gchoice label,
body .gform_wrapper.gform-theme .gfield_radio .gchoice label {
  color: var(--color);
  font-family: Hind, "sans-serif";
  font-size: 16px;
  font-weight: 400;
  line-height: 156%;
}

body .gform_wrapper.gform-theme .gfield_checkbox .gchoice input[type=checkbox],
body .gform_wrapper.gform-theme .gfield_radio .gchoice input[type=checkbox] {
  border-radius: 0;
}

body .gform_wrapper.gform-theme .gfield_checkbox .gchoice input[type=checkbox]:before,
body .gform_wrapper.gform-theme .gfield_radio .gchoice input[type=checkbox]:before {
  color: #EC6523;
}

body .gform_wrapper.gform-theme .gfield_checkbox .gchoice input[type=radio]:before,
body .gform_wrapper.gform-theme .gfield_radio .gchoice input[type=radio]:before {
  background-color: #EC6523;
}

body .gform_wrapper.gform-theme .gfield_checkbox .gchoice input,
body .gform_wrapper.gform-theme .gfield_radio .gchoice input {
  border: 1px solid var(--color);
  background-color: transparent;
}

body .gform_wrapper.gform-theme .gfield_checkbox .gchoice input:focus,
body .gform_wrapper.gform-theme .gfield_radio .gchoice input:focus {
  outline: none;
  box-shadow: none;
}

body .gform_wrapper.gform-theme .radio-as-checkbox .gfield_radio .gchoice input[type=radio]:before {
  background-color: transparent;
  font-family: var(--gf-icon-font-family) !important;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  line-height: 1;
  speak: never;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #EC6523;
  content: var(--gf-icon-ctrl-checkbox);
  font-size: var(--gf-ctrl-checkbox-check-size);
  border-radius: 0;
  block-size: unset;
  inline-size: unset;
}

body .gform_wrapper.gform-theme .radio-as-checkbox .gfield_radio .gchoice input {
  border-radius: 0;
}

body .gform_wrapper.gform-theme .radio-as-checkbox .gfield_radio .gchoice input:focus {
  outline: none;
  box-shadow: none;
}

body .gform_wrapper.gform-theme .ginput_container_select select {
  padding: 0 12px;
}

body .gform_wrapper.gform-theme .ginput_container_consent label {
  color: var(--color);
  font-family: Hind, "sans-serif";
  font-size: 16px;
  font-weight: 400;
  line-height: 156%;
}

body .gform_wrapper.gform-theme .ginput_container_consent input[type=checkbox] {
  border-radius: 0;
}

body .gform_wrapper.gform-theme .ginput_container_consent input[type=checkbox]:before {
  color: #EC6523;
}

body .gform_wrapper.gform-theme .ginput_container_consent input {
  border: 1px solid var(--color);
  background-color: transparent;
}

body .gform_wrapper.gform-theme .ginput_container_consent input:focus {
  outline: none;
  box-shadow: none;
}

body .gform_wrapper.gform-theme .user-location-gf-show {
  display: none;
}

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: start;
  justify-content: flex-start;
}

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_footer input[type=button],
body .gform_wrapper.gform-theme .gform_page_footer button,
body .gform_wrapper.gform-theme .gform_page_footer input[type=submit],
body .gform_wrapper.gform-theme .gform_page_footer input[type=button] {
  padding: 11px 18px 9px !important;
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  border-radius: 0px !important;
  background-color: #EC6523 !important;
  border: 1px solid #EC6523 !important;
  transition: all 0.3s ease-in-out !important;
  height: 44px !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_footer input[type=button],
  body .gform_wrapper.gform-theme .gform_page_footer button,
  body .gform_wrapper.gform-theme .gform_page_footer input[type=submit],
  body .gform_wrapper.gform-theme .gform_page_footer input[type=button] {
    font-size: 16px !important;
    height: 42px !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_footer input[type=button]:hover,
body .gform_wrapper.gform-theme .gform_page_footer button:hover,
body .gform_wrapper.gform-theme .gform_page_footer input[type=submit]:hover,
body .gform_wrapper.gform-theme .gform_page_footer input[type=button]:hover {
  background-color: #C95218 !important;
}

body .gform_wrapper.gform-theme .gform_footer button.gform_previous_button,
body .gform_wrapper.gform-theme .gform_footer input[type=submit].gform_previous_button,
body .gform_wrapper.gform-theme .gform_footer input[type=button].gform_previous_button,
body .gform_wrapper.gform-theme .gform_page_footer button.gform_previous_button,
body .gform_wrapper.gform-theme .gform_page_footer input[type=submit].gform_previous_button,
body .gform_wrapper.gform-theme .gform_page_footer input[type=button].gform_previous_button {
  background-color: transparent !important;
  color: #12213B !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: transparent;
  padding-right: 20px;
}

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: 0;
  border-bottom: 1px solid #94D315;
  background-color: transparent;
  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;
}

.form-component-wrapper {
  display: none;
  position: relative;
  padding-top: 60px;
}

.form-component-wrapper .form-component .section-content-wrapper {
  display: block !important;
}

.form-component-wrapper .form-component .section-content-wrapper .section-title {
  font-size: 40px;
}

.form-component-wrapper .gf_progressbar_wrapper {
  position: absolute;
  top: 0;
  width: 100%;
}

#contact-labels-wrapper {
  position: fixed;
  top: 50%;
  right: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 8px;
  z-index: 90;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}

#contact-labels-wrapper.hide-labels {
  -webkit-transform: translateY(-50%) translateX(200%);
  transform: translateY(-50%) translateX(200%);
}

@media (max-width: 767px) {
  #contact-labels-wrapper.hide-labels {
    -webkit-transform: translateX(-50%) translateY(200%);
    transform: translateX(-50%) translateY(200%);
  }
}

@media (max-width: 767px) {
  #contact-labels-wrapper {
    top: unset;
    bottom: 20px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    left: 50%;
    right: unset;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  #contact-labels-wrapper.hide-labels-mobile {
    -webkit-transform: translateX(-50%) translateY(200%);
    transform: translateX(-50%) translateY(200%);
  }
}

#contact-labels-wrapper .inner-labels {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 8px;
}

@media (max-width: 767px) {
  #contact-labels-wrapper .inner-labels {
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

#contact-labels-wrapper .inner-labels.home {
  opacity: 0;
}

#contact-labels-wrapper .inner-labels.home.active {
  opacity: 1;
}

@media (max-width: 991px) {
  #contact-labels-wrapper .inner-labels.home {
    opacity: 1;
  }
}

#contact-labels-wrapper .contact-label {
  position: relative;
  width: 48px;
  height: 48px;
  background-color: #EC6523;
  transition: background-color 0.3s ease-in-out;
}

#contact-labels-wrapper .contact-label:hover {
  background-color: #C95218;
}

#contact-labels-wrapper .contact-label a {
  display: block;
}

#contact-labels-wrapper .contact-label.main-icon {
  width: 57px;
  height: 53px;
  -webkit-clip-path: polygon(100% 0%, 100% 100%, 16.26% 100%, 16.289% 99.969%, 0% 82.323%, 0% 0%, 100% 0%);
  clip-path: polygon(100% 0%, 100% 100%, 16.26% 100%, 16.289% 99.969%, 0% 82.323%, 0% 0%, 100% 0%);
  background-color: #12213B;
  transition: all 0.6s ease-in-out;
}

#contact-labels-wrapper .contact-label.main-icon.active {
  width: 104px;
  height: 96px;
}

#contact-labels-wrapper .contact-label.main-icon.active::before {
  -webkit-transform: translateY(-50%) translateX(-50%) scale(1.9);
  transform: translateY(-50%) translateX(-50%) scale(1.9);
}

@media (max-width: 991px) {
  #contact-labels-wrapper .contact-label.main-icon.active {
    width: 57px;
    height: 53px;
  }

  #contact-labels-wrapper .contact-label.main-icon.active::before {
    -webkit-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
  }
}

#contact-labels-wrapper .contact-label.main-icon:before {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  transition: all 0.6s ease-in-out;
  background-image: url("../../resources/images/svg/bare-logo.png");
  background-repeat: no-repeat;
  background-position: center;
  width: 40px;
  height: 40px;
  background-size: contain;
}

#contact-labels-wrapper .contact-label.phone a {
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-contact-phone-white.svg);
  width: 100%;
  height: 100%;
}

#contact-labels-wrapper .contact-label.email a {
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-contact-mail-white.svg);
  width: 100%;
  height: 100%;
}

#contact-labels-wrapper .contact-label.whatsapp a {
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-whatsapp-btn.svg);
  width: 100%;
  height: 100%;
}

#contact-label-home-wrapper {
  position: fixed;
  top: 50%;
  right: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 8px;
  z-index: 90;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

#contact-label-home-wrapper .main-icon {
  width: 104px;
  height: 96px;
  -webkit-clip-path: polygon(100% 0%, 100% 100%, 16.26% 100%, 16.289% 99.969%, 0% 82.323%, 0% 0%, 100% 0%);
  clip-path: polygon(100% 0%, 100% 100%, 16.26% 100%, 16.289% 99.969%, 0% 82.323%, 0% 0%, 100% 0%);
  background-color: #12213B;
}

#contact-label-home-wrapper .main-icon:before {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  width: 59px;
  height: 40px;
  background-size: 59px 40px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-kostbaar.svg);
}

.marker {
  position: relative;
  z-index: -1;
}

.gm-style-iw-t .gm-style-iw-tc:after {
  background-color: #12213B !important;
}

.gm-style-iw {
  position: relative;
  border-radius: 0 !important;
  padding: 0 !important;
  background-color: #12213B !important;
  overflow: visible !important;
}

.gm-style-iw:before {
  content: "";
  display: block;
  position: absolute;
  top: -16px;
  right: 0;
  width: 139px;
  height: 16px;
  background-size: 139px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-bar-orange-med.svg);
}

.gm-style-iw .gm-style-iw-chr {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-left: auto;
}

.gm-style-iw .gm-style-iw-chr button {
  opacity: 1 !important;
}

.gm-style-iw .gm-style-iw-chr button span {
  height: 22px !important;
  display: block;
  -webkit-mask-image: none !important;
  mask-image: none !important;
  background-color: transparent !important;
  width: 22px;
  height: 22px;
  background-size: 22px 22px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-close-bar.svg);
  width: 22px !important;
  height: 22px !important;
  opacity: 1 !important;
}

.gm-style-iw .gm-style-iw-d {
  margin-top: -30px;
  overflow: auto !important;
  max-height: unset !important;
}

@media (max-width: 991px) {
  .gm-style-iw .gm-style-iw-d {
    height: 350px;
  }
}

.gm-style-iw .gm-style-iw-d .marker-wrapper {
  padding: 35px 45px 20px;
  background-color: #12213B !important;
  min-width: 300px;
}

@media (max-width: 991px) {
  .gm-style-iw .gm-style-iw-d .marker-wrapper {
    padding: 15px;
    min-width: unset;
  }
}

.gm-style-iw .gm-style-iw-d .marker-wrapper .location-title {
  color: #FFF;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 156%;
}

@media (max-width: 991px) {
  .gm-style-iw .gm-style-iw-d .marker-wrapper .location-title {
    font-size: 18px;
  }
}

.gm-style-iw .gm-style-iw-d .marker-wrapper .location-address {
  color: #FFF;
  font-size: 19px;
  font-weight: 400;
  line-height: 156%;
  text-align: center;
}

@media (max-width: 991px) {
  .gm-style-iw .gm-style-iw-d .marker-wrapper .location-address {
    font-size: 16px;
  }
}

.gm-style-iw .gm-style-iw-d .marker-wrapper .location-address p {
  color: #FFF;
}

.gm-style-iw .gm-style-iw-d .marker-wrapper .button-wrapper {
  width: 100%;
  margin-top: 30px;
}

@media (max-width: 991px) {
  .gm-style-iw .gm-style-iw-d .marker-wrapper .button-wrapper {
    margin-top: 5px;
  }
}

.gm-style-iw .gm-style-iw-d .marker-wrapper .button-wrapper .btn {
  width: 100%;
}

@media (max-width: 991px) {
  .gm-style-iw .gm-style-iw-d .marker-wrapper .button-wrapper .btn {
    padding: 9px 10px 6px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}

.gm-style-iw .gm-style-iw-d .marker-wrapper .post-button {
  display: block;
  margin-top: 20px;
  color: #FFF;
  text-align: center;
  font-weight: 400;
  line-height: 156%;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
}

@media (max-width: 991px) {
  .gm-style-iw .gm-style-iw-d .marker-wrapper .post-button {
    margin-top: 5px;
  }
}

.gm-style-iw .gm-style-iw-d .marker-wrapper .marker-meta {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 15px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .gm-style-iw .gm-style-iw-d .marker-wrapper .marker-meta {
    margin-top: 5px;
  }
}

@media (max-width: 767px) {
  .gm-style-iw .gm-style-iw-d .marker-wrapper .marker-meta {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.gm-style-iw .gm-style-iw-d .marker-wrapper .marker-meta .meta-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 15px;
}

.gm-style-iw .gm-style-iw-d .marker-wrapper .marker-meta .meta-content:before {
  content: "";
  display: block;
}

.gm-style-iw .gm-style-iw-d .marker-wrapper .marker-meta .meta-content .link {
  color: #FFF;
}

.gm-style-iw .gm-style-iw-d .marker-wrapper .marker-meta .meta-content.phone:before {
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-contact-phone-orange.svg);
}

.gm-style-iw .gm-style-iw-d .marker-wrapper .marker-meta .meta-content.route:before {
  width: 12px;
  height: 16px;
  background-size: 12px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-pin-orange.svg);
}

.gm-style-iw .gm-style-iw-d .marker-wrapper .marker-message {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 991px) {
  .gm-style-iw .gm-style-iw-d .marker-wrapper .marker-message {
    display: none;
  }
}

.gm-style-iw .gm-style-iw-d .marker-wrapper .marker-message p {
  text-align: center;
  color: #fff;
}

.header-home-background-images {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 1;
  top: -5%;
  left: -5%;
  height: 100%;
  -webkit-transform: rotate(15deg);
  transform: rotate(15deg);
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 767px) {
  .header-home-background-images {
    left: -15%;
  }
}

.header-home-background-images .image-wrapper {
  width: 350px;
}

.header-home-background-images .image-wrapper:nth-of-type(2n) {
  width: 450px;
}

@media (max-width: 767px) {
  .header-home-background-images .image-wrapper {
    width: 200px;
  }

  .header-home-background-images .image-wrapper:nth-of-type(2n) {
    width: 280px;
  }
}

.header-home-background-images .image-wrapper .images {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 15px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.header-home-background-images .image-wrapper:nth-of-type(2) {
  margin-top: -5%;
}

.header-home-background-images .image-wrapper:nth-of-type(3) {
  margin-top: -10%;
}

.header-home-background-images .image-wrapper:nth-of-type(4) {
  margin-top: -15%;
}

.header-home-background-images .image-wrapper:nth-of-type(5) {
  margin-top: -20%;
}

.header-home-background-images .image-wrapper:nth-of-type(6) {
  margin-top: -25%;
}

.header-home-background-images .image-wrapper:nth-of-type(7) {
  margin-top: -30%;
}

.header-home-background-images .image-wrapper:nth-of-type(8) {
  margin-top: -35%;
}

.header-home-background-images .image-wrapper img {
  width: 100%;
  max-height: 350px;
  -o-object-fit: cover;
  object-fit: cover;
}

.header-home-background-images .image-wrapper img.small-height {
  max-height: 300px;
}

.header-home-background-images .image-wrapper img.small-width {
  width: calc(50% - 8px);
  max-height: 250px;
}

.single-product-popup {
  position: fixed;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%) translateX(100%);
  transform: translateY(-50%) translateX(100%);
  padding: 50px 45px;
  background-color: #2A364D;
  z-index: 100;
  width: 100%;
  max-width: 520px;
  -webkit-clip-path: polygon(0 50px, 50px 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 50px, 50px 0, 100% 0, 100% 100%, 0 100%);
  box-sizing: border-box;
  transition: background-color 0.3s ease-in-out, -webkit-transform 0.4s ease-in-out, -webkit-clip-path 0.3s ease-in-out;
  transition: transform 0.4s ease-in-out, background-color 0.3s ease-in-out, clip-path 0.3s ease-in-out;
  transition: transform 0.4s ease-in-out, background-color 0.3s ease-in-out, clip-path 0.3s ease-in-out, -webkit-transform 0.4s ease-in-out, -webkit-clip-path 0.3s ease-in-out;
  will-change: transform, clip-path;
}

@media (max-width: 767px) {
  .single-product-popup {
    padding: 50px 45px;
    max-width: 95%;
    top: unset;
    bottom: 20px;
    right: 2.5%;
    -webkit-transform: translateY(calc(100% + 50px)) translateX(0);
    transform: translateY(calc(100% + 50px)) translateX(0);
  }
}

.single-product-popup.big-transition {
  transition: background-color 0.3s ease-in-out, -webkit-transform 1s ease-in-out, -webkit-clip-path 0.3s ease-in-out;
  transition: transform 1s ease-in-out, background-color 0.3s ease-in-out, clip-path 0.3s ease-in-out;
  transition: transform 1s ease-in-out, background-color 0.3s ease-in-out, clip-path 0.3s ease-in-out, -webkit-transform 1s ease-in-out, -webkit-clip-path 0.3s ease-in-out;
}

.single-product-popup.show-popup {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 767px) {
  .single-product-popup.show-popup {
    -webkit-transform: none;
    transform: none;
  }
}

.single-product-popup .close-button {
  position: absolute;
  top: 25px;
  right: 15px;
  z-index: 5;
  width: 22px;
  height: 22px;
  background-size: 22px 22px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-close-white.svg);
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}

.single-product-popup.location-preload {
  z-index: -5;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  right: 0;
  background-color: #FFF5EE;
  height: 100vh;
  width: 100%;
  max-width: 620px;
  -webkit-transform: translateY(-50%) translateX(100%);
  transform: translateY(-50%) translateX(100%);
}

@media (max-width: 767px) {
  .single-product-popup.location-preload {
    -webkit-transform: translateY(calc(100% + 50px)) translateX(0);
    transform: translateY(calc(100% + 50px)) translateX(0);
  }
}

.single-product-popup.form-active {
  position: fixed;
  top: 0;
  right: 0;
  -webkit-transform: none;
  transform: none;
  background-color: #FFF5EE;
  z-index: 1000;
  height: 100%;
  width: 100%;
  max-width: 620px;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  overflow-y: auto;
  overflow-x: hidden;
  padding: 55px 55px 40px;
}

@media (max-width: 767px) {
  .single-product-popup.form-active {
    padding: 55px 15px 40px;
  }
}

.single-product-popup.form-active .close-button {
  right: unset;
  left: 15px;
  width: 22px;
  height: 22px;
  background-size: 22px 22px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-close-black.svg);
}

.single-product-popup.form-active .popup-content {
  display: none;
}

.single-product-popup.form-active .form-component-wrapper {
  padding: 40px 0;
  height: 100%;
}

@media (max-width: 767px) {
  .single-product-popup.form-active .form-component-wrapper.amelia-form {
    padding-top: 0;
  }
}

@media (max-width: 767px) and (max-width: 767px) {
  .single-product-popup.form-active .form-component-wrapper.amelia-form .form-wrapper .amelia-v2-booking .fc-daygrid-day-number {
    font-size: 20px !important;
  }
}

.single-product-popup.form-active .form-component-wrapper .section-content-wrapper .section-subtitle {
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 300;
  line-height: 100%;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .single-product-popup.form-active .form-component-wrapper .section-content-wrapper .section-subtitle {
    font-size: 16px;
  }
}

.single-product-popup.form-active .form-component-wrapper .section-content-wrapper .section-subtitle:before {
  content: "";
  display: block;
  width: 4px;
  height: 14px;
  background-size: 4px 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/title-bar-orange.svg);
  transition: all 0.3s ease-in-out;
  margin-bottom: 4px;
}

.single-product-popup.form-active .form-component-wrapper .section-content-wrapper .section-subtitle.mobile {
  display: none;
}

.single-product-popup.form-active .form-component-wrapper .section-content-wrapper .section-title {
  font-weight: 600;
}

@media (max-width: 767px) {
  .single-product-popup.form-active .form-component-wrapper .section-content-wrapper .section-title {
    font-size: 30px;
  }
}

.single-product-popup.form-active .form-component-wrapper .form-wrapper {
  padding-bottom: 20px;
  margin-top: 20px;
}

.single-product-popup.conformation-loaded {
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  height: auto;
  max-width: 650px;
  width: 650px;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  padding: 40px 55px;
}

.single-product-popup.conformation-loaded .form-component-wrapper {
  padding: 0 !important;
}

.single-product-popup.conformation-loaded .form-component {
  display: none !important;
}

.single-product-popup .popup-content .popup-title span {
  color: #FFF;
  font-family: "ivypresto-display", sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 108%;
}

@media (max-width: 767px) {
  .single-product-popup .popup-content .popup-title span {
    font-size: 30px;
  }
}

.single-product-popup .popup-content .popup-desc {
  margin-top: 24px;
}

@media (max-width: 767px) {
  .single-product-popup .popup-content .popup-desc {
    margin-top: 15px;
  }
}

.single-product-popup .popup-content .popup-desc p {
  color: #FFF;
  font-size: 19px;
  font-weight: 400;
  line-height: 156%;
  opacity: 0.75;
}

@media (max-width: 767px) {
  .single-product-popup .popup-content .popup-desc p {
    font-size: 16px;
  }
}

.single-product-popup .popup-content .button-wrapper {
  margin-top: 20px;
  gap: 15px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .single-product-popup .popup-content .button-wrapper {
    margin-top: 10px;
  }
}

.single-product-popup .popup-content .button-wrapper .btn:nth-of-type(2) {
  background-color: transparent;
}

.single-product-popup .popup-content .button-wrapper .btn:nth-of-type(2):hover {
  background-color: #C95218;
}

.single-product-popup.form-active:has(.calendar-list-form) {
  height: 100vh;
  overflow-y: hidden;
}

body.admin-bar .single-product-popup.form-active {
  top: 32px;
}

body.popup-active {
  overflow: hidden;
}

.form-component-wrapper.amelia-form.is-prerendered {
  position: absolute;
  visibility: hidden;
  pointer-events: none;
  left: -9999px;
  top: 0;
  width: 100%;
  height: auto;
}

.stacking-cards-holder {
  --section-offset: 130px;
  position: relative;
}

.stacking-cards-holder .stack-card {
  --basic-card-offset: 15px;
  position: -webkit-sticky;
  position: sticky;
  top: var(--section-offset);
  z-index: calc(10 + var(--card-index));
  margin-top: calc(var(--card-index) * var(--basic-card-offset));
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  will-change: transform, opacity;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.stacking-cards-holder .stack-card:first-of-type {
  opacity: 1;
  visibility: visible;
}

.stacking-cards-holder .stack-card.visible {
  opacity: 1;
  visibility: visible;
}

.stacking-cards-holder .stack-card img {
  display: block;
  width: 100%;
}

.notification-bar-wrapper {
  display: none;
  -ms-flex-order: 1;
  order: 1;
  padding: 8px 0;
  background: #FFF5EE;
}

.notification-bar-wrapper .content-wrapper {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0 25px;
}

@media (max-width: 991px) {
  .notification-bar-wrapper .content-wrapper {
    padding: 0 25px 0 0;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.notification-bar-wrapper .content-wrapper .text p {
  font-size: 16px;
  line-height: 20px;
}

.notification-bar-wrapper .content-wrapper .close-btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  cursor: pointer;
  display: block;
  width: 17px;
  height: 18px;
  background-size: 17px 18px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-close-black-small.svg);
}

.single-product-popup.form-active:has(.calendar-list-form) {
  height: 100vh;
  overflow-y: hidden;
}

.single-product-popup .form-component-wrapper.calendar-list-form {
  padding-top: 0;
  padding-bottom: 0;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}

.single-product-popup .form-component-wrapper.calendar-list-form::after {
  content: "";
  background: linear-gradient(180deg, rgba(255, 245, 238, 0) 0%, #FFF5EE 60.07%, #FFF5EE 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10%;
}

.single-product-popup .calendar-popup {
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.single-product-popup .calendar-popup .section-content-wrapper {
  padding-bottom: 32px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.single-product-popup .calendar-popup .calendar-item {
  border-bottom: 1px solid rgba(18, 33, 59, 0.2);
  margin-bottom: 24px;
  padding-bottom: 24px;
}

.single-product-popup .calendar-popup .calendar-item:first-child {
  border-top: 1px solid rgba(18, 33, 59, 0.2);
  padding-top: 24px;
}

.single-product-popup .calendar-popup .item-details .item {
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: 156%;
}

.single-product-popup .calendar-popup .item-details .item-title {
  font-weight: 600;
  line-height: 156%;
}

.single-product-popup .calendar-popup .item-details .item-button .btn span {
  color: #12213B;
}

.single-product-popup .calendar-popup .item-details .item-button .btn:hover span {
  color: #fff;
}

.single-product-popup .custom-calendar-list-container {
  -ms-flex-positive: 1;
  flex-grow: 1;
  height: 0;
  overflow-y: auto;
  padding-right: 15px;
  margin-bottom: 30px;
  scrollbar-width: thin;
  scrollbar-color: rgba(18, 33, 59, 0.5) transparent;
}

.single-product-popup .custom-calendar-list-container::-webkit-scrollbar {
  width: 8px;
}

.single-product-popup .custom-calendar-list-container::-webkit-scrollbar-thumb {
  border-radius: 16px;
  background-color: rgba(18, 33, 59, 0.5);
}

.single-product-popup .custom-calendar-list-container::-webkit-scrollbar-track {
  border-radius: 16px;
  background-color: transparent;
}

.main-header {
  position: fixed;
  z-index: 999;
  width: 100%;
  left: 0;
  top: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  transition: all 0.3s ease-in-out;
  background-color: #12213B;
}

.main-header .top-bar {
  transition: background-color 0.3s ease-in-out;
}

.main-header .top-bar .header-top-bar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 9px 0 9px;
}

.main-header .top-bar .header-top-bar .header-top-bar-menu {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
}

.main-header .top-bar .header-top-bar .header-top-bar-menu .top-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  margin-top: 5px;
}

.main-header .top-bar .header-top-bar .header-top-bar-menu .top-nav li a {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  line-height: 1;
}

.main-header .top-bar .header-top-bar .google-bar-review .mobile {
  display: none;
}

@media (max-width: 1178px) {
  .main-header .top-bar {
    display: none;
  }
}

.main-header .top-bar.top-bar-mobile {
  position: relative;
  z-index: 10;
}

@media (max-width: 1178px) {
  .main-header .top-bar.top-bar-mobile {
    display: block;
  }

  .main-header .top-bar.top-bar-mobile .header-top-bar-menu {
    display: none;
  }

  .main-header .top-bar.top-bar-mobile .google-bar-review .mobile {
    display: block;
  }
}

@media (max-width: 1178px) and (max-width: 767px) {
  .main-header .top-bar.top-bar-mobile .google-bar-review .mobile {
    font-size: 14px;
  }
}

@media (max-width: 1178px) and (max-width: 767px) {
  .main-header .top-bar.top-bar-mobile .google-bar-review .review-stars {
    margin: 0 6px;
  }
}

@media (max-width: 1178px) {
  .main-header .top-bar.top-bar-mobile .google-bar-review .desktop {
    display: none;
  }
}

.main-header .main-header-wrapper {
  transition: all 0.3s ease-in-out;
}

@media (max-width: 1190px) {
  .main-header .main-header-wrapper {
    transition: all 0.3s ease-in-out;
  }
}

.main-header .main-header-wrapper:has(.main-nav li.with-mega-menu:hover) {
  background-color: #12213B;
}

.main-header .main-header-wrapper:has(.main-nav li.with-mega-menu:hover) ~ .top-bar {
  background-color: #12213B;
}

@media (max-width: 1178px) {
  .main-header .main-header-wrapper .desktop {
    display: none;
  }
}

.main-header .main-header-wrapper .desktop .main-header-inner {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.main-header .main-header-wrapper .desktop .main-header-inner .main-header-left {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 45px;
}

.main-header .main-header-wrapper .desktop .main-header-inner .main-header-left .main-nav-container .main-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 35px;
  margin-top: 5px;
}

.main-header .main-header-wrapper .desktop .main-header-inner .main-header-left .main-nav-container .main-nav li a {
  color: #FFF !important;
}

.main-header .main-header-wrapper .desktop .main-header-inner .main-header-left .main-nav-container .main-nav li a.menu-item-link {
  padding: 40px 0;
}

.main-header .main-header-wrapper .desktop .main-header-inner .main-header-left .main-nav-container .main-nav li.with-mega-menu > a {
  display: inline-block;
  position: relative;
  padding-right: 21px;
}

.main-header .main-header-wrapper .desktop .main-header-inner .main-header-left .main-nav-container .main-nav li.with-mega-menu > a::before {
  content: "";
  position: absolute;
  bottom: 35%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  max-width: 0;
  height: 2px;
  background-color: #EC6523;
  transition: all 0.3s ease-in-out;
}

.main-header .main-header-wrapper .desktop .main-header-inner .main-header-left .main-nav-container .main-nav li.with-mega-menu > a:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  transition: all 0.3s ease-in-out;
  width: 13px;
  height: 8px;
  background-size: 13px 8px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-chevron-down-orange.svg);
}

.main-header .main-header-wrapper .desktop .main-header-inner .main-header-left .main-nav-container .main-nav li.with-mega-menu:hover > a::before {
  max-width: 100%;
}

.main-header .main-header-wrapper .desktop .main-header-inner .main-header-left .main-nav-container .main-nav li.with-mega-menu:hover > a:after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  top: calc(50% - 5px);
}

.main-header .main-header-wrapper .desktop .main-header-inner .main-header-left .main-nav-container .main-nav li.with-mega-menu:hover .mega-menu-wrap {
  opacity: 1;
  visibility: visible;
  z-index: 100;
}

.main-header .main-header-wrapper .desktop .main-header-inner .main-header-left .main-nav-container .main-nav li.with-mega-menu:hover .mega-menu-wrap .mega-menu-highlight-item-wrapper {
  display: block;
}

.main-header .main-header-wrapper .desktop .main-header-inner .main-header-left .main-nav-container .main-nav li a {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  line-height: 1;
}

.main-header .main-header-wrapper .desktop .main-header-inner .main-header-left .main-nav-container .main-nav li a:hover {
  text-decoration: none;
}

.main-header .main-header-wrapper .mobile .main-header-inner {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 40px 0;
}

.main-header .main-header-wrapper .mobile .main-header-inner.top-bar-mobile {
  padding: 15px 0 28px;
}

.main-header .main-header-wrapper .mobile .main-header-inner .main-header-left {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 45px;
  position: relative;
  z-index: 11;
}

.main-header .main-header-wrapper .mobile .main-header-inner .main-header-right {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 25px;
  width: 50%;
  position: relative;
  z-index: 11;
}

.main-header .main-header-wrapper .mobile .main-header-inner .main-header-right .header__search .toggle-search-form {
  width: 19px;
  height: 19px;
  background-size: 19px 19px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-search.svg);
}

.main-header .main-header-wrapper .mobile .main-header-inner .main-header-right .header__search .search-form-container {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.main-header .main-header-wrapper .mobile .main-header-inner .main-header-right .ham-icon-wrapper .ham-icon {
  display: block;
  width: 31px;
  height: 31px;
  background-size: 31px 31px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-hamburger-menu.svg);
}

.main-header .main-header-wrapper .mobile .main-header-inner .main-header-right .ham-icon-wrapper .ham-icon.open {
  width: 31px;
  height: 31px;
  background-size: 31px 31px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-hamburger-menu-close.svg);
}

.main-header .main-header-wrapper .mobile .main-header-inner .mobile-nav-container {
  position: fixed;
  left: 0;
  width: 100%;
  top: 111px;
  display: none;
  z-index: 10;
  height: calc(100% - 111px);
  overflow: hidden;
}

.main-header .main-header-wrapper .mobile .main-header-inner .mobile-nav-container .bg-wrapper {
  visibility: hidden;
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: top;
  z-index: -6;
  background-repeat: no-repeat;
  overflow: hidden;
}

.main-header .main-header-wrapper .mobile .main-header-inner .mobile-nav-container .container {
  height: 100%;
}

.main-header .main-header-wrapper .mobile .main-header-inner .mobile-nav-container .container .row {
  height: 100%;
}

.main-header .main-header-wrapper .mobile .main-header-inner .mobile-nav-container .container .row .col-sm-12 {
  height: 100%;
}

.main-header .main-header-wrapper .mobile .main-header-inner .mobile-nav-container a.contact-mobile-label {
  position: absolute;
  left: 0;
  top: 50%;
  width: 45px;
  height: 45px;
  background-color: #EC6523;
  display: grid;
  place-content: center;
  z-index: 50;
  visibility: hidden;
  opacity: 0;
}

.main-header .main-header-wrapper .mobile .main-header-inner .mobile-nav-container a.contact-mobile-label:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-whatsapp-btn.svg);
}

.main-header .main-header-wrapper .mobile .main-header-inner .mobile-nav-container:before {
  display: block;
  content: "";
  position: fixed;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  z-index: -5;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  background: linear-gradient(180deg, #12213B 0%, #12213B 23.18%, rgba(18, 33, 59, 0.95) 46.25%, rgba(18, 33, 59, 0.95) 69.35%, #12213B 92.72%);
}

.main-header .main-header-wrapper .mobile .main-header-inner .mobile-nav-container .mobile-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  padding-top: 35px;
  padding-bottom: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
}

.main-header .main-header-wrapper .mobile .main-header-inner .mobile-nav-container .mobile-nav-holder {
  height: 75%;
  overflow: scroll;
}

.main-header .main-header-wrapper .mobile .main-header-inner .mobile-nav-container .mobile-nav-holder .mobile-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
}

.main-header .main-header-wrapper .mobile .main-header-inner .mobile-nav-container .mobile-nav-holder .mobile-nav li .mob-item-wrap {
  position: relative;
  text-align: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}

.main-header .main-header-wrapper .mobile .main-header-inner .mobile-nav-container .mobile-nav-holder .mobile-nav li .mob-item-wrap .mob-item-chevron {
  display: none;
}

.main-header .main-header-wrapper .mobile .main-header-inner .mobile-nav-container .mobile-nav-holder .mobile-nav li .mob-item-wrap a {
  color: #FFF;
  font-family: "ivypresto-display", sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 100%;
  text-decoration: none;
}

.main-header .main-header-wrapper .mobile .main-header-inner .mobile-nav-container .mobile-nav-holder .mobile-nav li .mob-item-wrap a.loaded-mega-menu {
  padding-left: 30px;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}

.main-header .main-header-wrapper .mobile .main-header-inner .mobile-nav-container .mobile-nav-holder .mobile-nav li .mob-item-wrap a.loaded-mega-menu .mega-menu-chevron {
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: 30px;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.main-header .main-header-wrapper .mobile .main-header-inner .mobile-nav-container .mobile-nav-holder .mobile-nav li .mob-item-wrap a.loaded-mega-menu .mega-menu-chevron:after {
  content: "";
  display: block;
  transition: 0.3s ease-in-out all;
  width: 26px;
  height: 16px;
  background-size: 26px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-chevron-down-orange.svg);
}

.main-header .main-header-wrapper .mobile .main-header-inner .mobile-nav-container .mobile-nav-holder .mobile-nav li .mob-item-wrap .mega-menu-wrap {
  display: none;
  width: 100%;
}

.main-header .main-header-wrapper .mobile .main-header-inner .mobile-nav-container .mobile-nav-holder .mobile-nav li.opened-menu .mob-item-wrap a.loaded-mega-menu .mega-menu-chevron:after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.main-header .main-header-wrapper .mobile .main-header-inner .mobile-nav-container .mobile-nav-holder .mobile-nav li.opened-menu .mob-item-wrap .mega-menu-wrap {
  display: none;
  width: 100%;
}

.main-header .main-header-wrapper .mobile .main-header-inner .mobile-nav-container .bottom-wrapper {
  padding-top: 15px;
  height: 25%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-direction: column;
  flex-direction: column;
}

.main-header .main-header-wrapper .mobile .main-header-inner .mobile-nav-container.open-menu .bg-wrapper {
  visibility: visible;
  opacity: 1;
}

.main-header .main-header-wrapper .mobile .main-header-inner .mobile-nav-container.open-menu a.contact-mobile-label {
  opacity: 1;
  visibility: visible;
}

.main-header .main-header-wrapper .mobile .main-header-inner .mobile-nav-container.open-menu .mobile-wrapper {
  visibility: visible;
  opacity: 1;
}

.main-header .main-header-wrapper .mobile .main-header-inner .mobile-nav-container.open-menu:before {
  visibility: visible;
  opacity: 1;
}

.main-header .main-header-wrapper .mobile .main-header-inner .mobile-nav-container .top-nav-container .top-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  gap: 25px;
}

.main-header .main-header-wrapper .mobile .main-header-inner .mobile-nav-container .top-nav-container .top-nav .menu-item a {
  color: #FFF;
  font-size: 18px;
}

.main-header .main-header-wrapper .mobile .main-header-inner .mobile-nav-container .mobile-contact-wrapper {
  padding: 20px 0 10px;
  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;
  gap: 10px;
  row-gap: 15px;
}

.main-header .main-header-wrapper .mobile .main-header-inner .mobile-nav-container .mobile-contact-wrapper .contact-label {
  border-top: 1px solid rgba(217, 217, 217, 0.1);
  border-bottom: 1px solid rgba(217, 217, 217, 0.1);
  padding: 20px;
}

.main-header .main-header-wrapper .mobile .main-header-inner .mobile-nav-container .mobile-contact-wrapper .contact-label.phone a {
  display: block;
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-contact-phone-orange.svg);
}

.main-header .main-header-wrapper .mobile .main-header-inner .mobile-nav-container .mobile-contact-wrapper .contact-label.email a {
  display: block;
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-contact-mail-orange.svg);
}

.main-header .main-header-wrapper .mobile .main-header-inner .mobile-nav-container .mobile-contact-wrapper .contact-label.page a {
  display: block;
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-contact-calendar-orange.svg);
}

.main-header.headroom--unpinned {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

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

.main-header.headroom--top {
  background-color: transparent;
}

.main-header.headroom--top.active-mobile-nav {
  background-color: #12213B;
}

body:not(.home) .main-header .top-bar {
  background-color: #12213B;
}

body.admin-bar .main-header {
  top: 32px;
}

@media (max-width: 767px) {
  body.admin-bar .main-header {
    top: 46px;
  }
}

.main-footer {
  padding-top: 75px;
  background-color: #12213B;
}

.main-footer .footer-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(530px, 1fr));
  gap: 50px;
  padding-bottom: 60px;
}

@media (max-width: 767px) {
  .main-footer .footer-main {
    grid-template-columns: 1fr;
  }
}

.main-footer .footer-main .footer-main-left {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .main-footer .footer-main .footer-main-left .footer-logo-wrapper {
    margin-bottom: 20px;
  }
}

.main-footer .footer-main .footer-main-left .footer-logo-wrapper .footer-subtitle {
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 15px;
}

.main-footer .footer-main .footer-main-left .footer-logo-wrapper .footer-subtitle:before {
  content: "";
  display: block;
  width: 4px;
  height: 14px;
  background-size: 4px 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/title-bar-orange.svg);
  transition: all 0.3s ease-in-out;
  margin-bottom: 4px;
}

.main-footer .footer-main .footer-main-left .footer-logo-wrapper .footer-subtitle p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 300;
  line-height: 100%;
}

.main-footer .footer-main .footer-main-left .google-bar-review {
  padding-bottom: 20px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.main-footer .footer-main .footer-main-left .google-bar-review p {
  font-size: 18px;
}

.main-footer .footer-main .footer-main-right .footer-columns-wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 30px;
}

.main-footer .footer-main .footer-main-right .footer-columns-wrap .footer-column {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 30%;
}

@media (max-width: 550px) {
  .main-footer .footer-main .footer-main-right .footer-columns-wrap .footer-column {
    width: 100%;
  }
}

.main-footer .footer-main .footer-main-right .footer-columns-wrap .footer-column .column-title {
  color: #FFF;
  font-size: 20px;
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 25px;
}

.main-footer .footer-main .footer-main-right .footer-columns-wrap .footer-column .column-content-wrapper p a {
  color: #FFF;
  font-size: 18px;
  font-weight: 300;
  line-height: 156%;
}

.main-footer .footer-main .footer-main-right .footer-columns-wrap .footer-column .footer-social-wrap {
  display: -ms-flexbox;
  display: flex;
  margin-top: auto;
}

.main-footer .footer-main .footer-main-right .footer-columns-wrap .footer-column .footer-social-wrap .footer-social {
  border-top: 1px solid rgba(224, 228, 237, 0.08);
  border-bottom: 1px solid rgba(224, 228, 237, 0.08);
  border-left: 1px solid rgba(224, 228, 237, 0.08);
}

.main-footer .footer-main .footer-main-right .footer-columns-wrap .footer-column .footer-social-wrap .footer-social:last-of-type {
  border-right: 1px solid rgba(224, 228, 237, 0.08);
}

.main-footer .footer-main .footer-main-right .footer-columns-wrap .footer-column .footer-social-wrap .footer-social a {
  display: block;
  position: relative;
  width: 45px;
  height: 45px;
}

.main-footer .footer-main .footer-main-right .footer-columns-wrap .footer-column .footer-social-wrap .footer-social a:before,
.main-footer .footer-main .footer-main-right .footer-columns-wrap .footer-column .footer-social-wrap .footer-social a:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
}

.main-footer .footer-main .footer-main-right .footer-columns-wrap .footer-column .footer-social-wrap .footer-social a:before {
  opacity: 1;
  visibility: visible;
}

.main-footer .footer-main .footer-main-right .footer-columns-wrap .footer-column .footer-social-wrap .footer-social a:after {
  opacity: 0;
  visibility: hidden;
}

.main-footer .footer-main .footer-main-right .footer-columns-wrap .footer-column .footer-social-wrap .footer-social a:hover:after {
  opacity: 1;
  visibility: visible;
}

.main-footer .footer-main .footer-main-right .footer-columns-wrap .footer-column .footer-social-wrap .footer-social a:hover:before {
  opacity: 0;
  visibility: hidden;
}

.main-footer .footer-main .footer-main-right .footer-columns-wrap .footer-column .footer-social-wrap .footer-social.linkedin a:before {
  width: 15px;
  height: 15px;
  background-size: 15px 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-linkedin-white.svg);
}

.main-footer .footer-main .footer-main-right .footer-columns-wrap .footer-column .footer-social-wrap .footer-social.linkedin a:after {
  width: 15px;
  height: 15px;
  background-size: 15px 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-linkedin-orange.svg);
}

.main-footer .footer-main .footer-main-right .footer-columns-wrap .footer-column .footer-social-wrap .footer-social.instagram a:before {
  width: 15px;
  height: 15px;
  background-size: 15px 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-instagram-white.svg);
}

.main-footer .footer-main .footer-main-right .footer-columns-wrap .footer-column .footer-social-wrap .footer-social.instagram a:after {
  width: 15px;
  height: 15px;
  background-size: 15px 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-instagram-orange.svg);
}

.main-footer .footer-main .footer-main-right .footer-columns-wrap .footer-column .footer-social-wrap .footer-social.x-twitter a:before {
  width: 15px;
  height: 15px;
  background-size: 15px 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-x-white.svg);
}

.main-footer .footer-main .footer-main-right .footer-columns-wrap .footer-column .footer-social-wrap .footer-social.x-twitter a:after {
  width: 15px;
  height: 15px;
  background-size: 15px 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-x-orange.svg);
}

.main-footer .footer-main .footer-main-right .footer-columns-wrap .footer-column .footer-social-wrap .footer-social.facebook a:before {
  width: 15px;
  height: 15px;
  background-size: 15px 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-facebook-white.svg);
}

.main-footer .footer-main .footer-main-right .footer-columns-wrap .footer-column .footer-social-wrap .footer-social.facebook a:after {
  width: 15px;
  height: 15px;
  background-size: 15px 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-facebook-orange.svg);
}

.main-footer .footer-main .footer-main-right .footer-columns-wrap .footer-column .footer-social-wrap .footer-social.tiktok a:before {
  width: 15px;
  height: 15px;
  background-size: 15px 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-tiktok-white.svg);
}

.main-footer .footer-main .footer-main-right .footer-columns-wrap .footer-column .footer-social-wrap .footer-social.tiktok a:after {
  width: 15px;
  height: 15px;
  background-size: 15px 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-tiktok-orange.svg);
}

.main-footer .footer-newsletter {
  border-top: 1px solid rgba(224, 228, 237, 0.08);
  padding: 40px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

@media (max-width: 991px) {
  .main-footer .footer-newsletter {
    grid-template-columns: 1fr;
  }
}

.main-footer .footer-newsletter .newsletter-title {
  color: #FFF;
  font-size: 24px;
  font-weight: 600;
  line-height: 108%;
}

.main-footer .footer-newsletter .newsletter-text {
  margin-top: 20px;
  color: #FFF;
  font-size: 18px;
  font-weight: 300;
  line-height: 100%;
}

.main-footer .footer-newsletter .footer-newsletter-form .gform_wrapper.gform-theme form {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 15px;
}

.main-footer .footer-newsletter .footer-newsletter-form .gform_wrapper.gform-theme form label {
  display: none !important;
}

.main-footer .footer-newsletter .footer-newsletter-form .gform_wrapper.gform-theme form .ginput_container {
  position: relative;
}

.main-footer .footer-newsletter .footer-newsletter-form .gform_wrapper.gform-theme form .ginput_container:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 24px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 16px;
  height: 12px;
  background-size: 16px 12px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-contact-mail-orange.svg);
}

.main-footer .footer-newsletter .footer-newsletter-form .gform_wrapper.gform-theme form .ginput_container input {
  background-color: #fff;
  padding-left: 54px;
  height: 40px;
  font-size: 16px;
}

@media (max-width: 767px) {
  .main-footer .footer-newsletter .footer-newsletter-form .gform_wrapper.gform-theme form .ginput_container input {
    height: 38px;
  }
}

.main-footer .footer-newsletter .footer-newsletter-form .gform_wrapper.gform-theme form .ginput_container input::-webkit-input-placeholder {
  opacity: 1;
}

.main-footer .footer-newsletter .footer-newsletter-form .gform_wrapper.gform-theme form .ginput_container input::-moz-placeholder {
  opacity: 1;
}

.main-footer .footer-newsletter .footer-newsletter-form .gform_wrapper.gform-theme form .ginput_container input:-ms-input-placeholder {
  opacity: 1;
}

.main-footer .footer-newsletter .footer-newsletter-form .gform_wrapper.gform-theme form .ginput_container input::-ms-input-placeholder {
  opacity: 1;
}

.main-footer .footer-newsletter .footer-newsletter-form .gform_wrapper.gform-theme form .ginput_container input::placeholder {
  opacity: 1;
}

.main-footer .footer-newsletter .footer-newsletter-form .gform_wrapper.gform-theme form .gform_footer,
.main-footer .footer-newsletter .footer-newsletter-form .gform_wrapper.gform-theme form .gform_page_footer {
  padding-top: 0 !important;
}

.main-footer .footer-newsletter .footer-newsletter-form .gform_wrapper.gform-theme form .gform_footer button,
.main-footer .footer-newsletter .footer-newsletter-form .gform_wrapper.gform-theme form .gform_footer input[type=submit],
.main-footer .footer-newsletter .footer-newsletter-form .gform_wrapper.gform-theme form .gform_page_footer button,
.main-footer .footer-newsletter .footer-newsletter-form .gform_wrapper.gform-theme form .gform_page_footer input[type=submit] {
  height: 40px !important;
}

@media (max-width: 767px) {
  .main-footer .footer-newsletter .footer-newsletter-form .gform_wrapper.gform-theme form .gform_footer button,
  .main-footer .footer-newsletter .footer-newsletter-form .gform_wrapper.gform-theme form .gform_footer input[type=submit],
  .main-footer .footer-newsletter .footer-newsletter-form .gform_wrapper.gform-theme form .gform_page_footer button,
  .main-footer .footer-newsletter .footer-newsletter-form .gform_wrapper.gform-theme form .gform_page_footer input[type=submit] {
    height: 38px !important;
  }
}

.main-footer .footer-newsletter .footer-newsletter-form .gform_wrapper.gform-theme form .gform_footer button:hover,
.main-footer .footer-newsletter .footer-newsletter-form .gform_wrapper.gform-theme form .gform_footer input[type=submit]:hover,
.main-footer .footer-newsletter .footer-newsletter-form .gform_wrapper.gform-theme form .gform_page_footer button:hover,
.main-footer .footer-newsletter .footer-newsletter-form .gform_wrapper.gform-theme form .gform_page_footer input[type=submit]:hover {
  color: #fff !important;
}

.main-footer .footer-bottom {
  border-top: 1px solid rgba(224, 228, 237, 0.08);
  padding: 20px 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .main-footer .footer-bottom {
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }
}

.main-footer .footer-bottom .footer-copyright p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 300;
  line-height: 0.85;
}

.main-footer .footer-bottom .footer-bottom-logo {
  width: 48px;
  height: 32px;
}

.main-footer .footer-bottom .footer-bottom-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.main-footer .footer-bottom .footer-bottom-menu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
}

.main-footer .footer-bottom .footer-bottom-menu .bottom-menu-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 300;
  line-height: 0.85;
}

@media (max-width: 767px) {
  section h1.section-title {
    font-size: 50px !important;
  }
}

@media (max-width: 767px) {
  section h2.section-title {
    font-size: 30px !important;
  }
}

@media (max-width: 767px) {
  section span.section-subtitle {
    font-size: 15px !important;
  }
}

section .section-content-wrapper {
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  section .section-content-wrapper {
    margin-bottom: 30px;
  }
}

section .section-content-wrapper .section-subtitle {
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 300;
  line-height: 100%;
  text-transform: uppercase;
  padding-top: 8px;
}

section .section-content-wrapper .section-subtitle:before {
  content: "";
  display: block;
  width: 4px;
  height: 14px;
  background-size: 4px 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/title-bar-orange.svg);
  transition: all 0.3s ease-in-out;
  margin-bottom: 4px;
}

section .section-content-wrapper .section-subtitle.mobile {
  display: none;
}

@media (max-width: 767px) {
  section .section-content-wrapper:has(.section-subtitle.mobile) .section-subtitle {
    display: none;
  }

  section .section-content-wrapper:has(.section-subtitle.mobile) .section-subtitle.mobile {
    display: -ms-flexbox;
    display: flex;
  }
}

section .section-content-wrapper .section-title {
  font-weight: 600;
}

section .section-content-wrapper h1.section-title {
  font-weight: 400;
}

section .section-content-wrapper .section-description {
  margin-top: 25px;
}

@media (max-width: 767px) {
  section .section-content-wrapper .section-description.mobile-disable {
    display: none;
  }
}

section .section-content-wrapper .section-description p {
  font-size: 19px;
  font-weight: 400;
  line-height: 156%;
  margin-bottom: 10px;
}

@media (max-width: 450px) {
  section .section-content-wrapper .section-description p {
    font-size: 16px;
  }
}

section .section-content-wrapper .section-description ul li,
section .section-content-wrapper .section-description ol li {
  font-size: 19px !important;
}

@media (max-width: 450px) {
  section .section-content-wrapper .section-description ul li,
  section .section-content-wrapper .section-description ol li {
    font-size: 16px !important;
  }
}

section .section-content-wrapper .button-wrapper {
  margin-top: 30px;
}

.sections-holder section {
  overflow: hidden;
}

.sections-holder section .container {
  padding-top: 130px;
  padding-bottom: 130px;
}

@media (max-width: 991px) {
  .sections-holder section .container {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (max-width: 767px) {
  .sections-holder section .container {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.sections-holder section h2 {
  font-weight: 600;
}

.sections-holder section.bg-white {
  background-color: #fff;
}

.sections-holder section.bg-light-orange {
  background-color: #FFF5EE;
}

.sections-holder section.bg-light-blue {
  background-color: #F3F5F9;
}

.sections-holder section.bg-dark-blue {
  background-color: #12213B;
}

.sections-holder section.no-top-padding .container {
  padding-top: 0 !important;
}

.sections-holder section.no-bottom-padding .container {
  padding-bottom: 0 !important;
}

.sections-holder section.add-bottom-element .container,
.sections-holder section.add-top-element .container {
  position: relative;
}

.sections-holder section.add-top-element .container:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 192px;
  height: 15px;
  background-size: 192px 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/section-bar-orange.svg);
}

@media (max-width: 550px) {
  .sections-holder section.add-top-element .container:after {
    width: 83px;
    height: 9px;
    background-size: 83px 9px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../../resources/images/svg/section-bar-orange-mobile.svg);
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
    top: -1px;
  }
}

.sections-holder section.add-bottom-element .container:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 192px;
  height: 15px;
  background-size: 192px 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/section-bar-orange-bottom.svg);
}

@media (max-width: 550px) {
  .sections-holder section.add-bottom-element .container:before {
    width: 83px;
    height: 9px;
    background-size: 83px 9px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../../resources/images/svg/section-bar-orange-mobile.svg);
    bottom: -1px;
  }
}

.sections-holder section.dark-section .section-content-wrapper .section-subtitle {
  color: #fff;
}

.sections-holder section.dark-section .section-content-wrapper .section-title {
  color: #fff;
}

.sections-holder section.dark-section .section-content-wrapper .section-description {
  margin-top: 25px;
}

.sections-holder section.dark-section .section-content-wrapper .section-description p {
  color: #fff;
}

.sections-holder section.dark-section .section-content-wrapper .section-description ul li,
.sections-holder section.dark-section .section-content-wrapper .section-description ol li {
  color: #fff;
}

.sections-holder section.dark-section .section-content-wrapper .list-wrapper .list-item span {
  color: #fff;
}

.sections-holder section.center-content .section-content-wrapper .section-subtitle {
  -ms-flex-pack: center;
  justify-content: center;
}

.sections-holder section.center-content .section-content-wrapper .section-title {
  text-align: center;
}

.sections-holder section.center-content .section-content-wrapper .section-description {
  text-align: center;
}

.sections-holder section.center-content .section-content-wrapper .section-description p {
  text-align: center;
}

.sections-holder section.center-content .section-content-wrapper .button-wrapper {
  -ms-flex-pack: center;
  justify-content: center;
}

.section-header-home {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  background-color: #12213B;
  padding-top: 150px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (max-width: 1178px) {
  .section-header-home {
    padding-top: 110px;
  }
}

@media (max-width: 767px) {
  .section-header-home {
    min-height: calc(100vh - 110px);
  }
}

.section-header-home:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #12213B 0%, rgba(18, 33, 59, 0.75) 23.18%, rgba(18, 33, 59, 0.65) 46.25%, rgba(18, 33, 59, 0.85) 69.35%, #12213B 92.72%);
  z-index: 3;
}

.section-header-home:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -25px;
  left: 0;
  width: 100%;
  height: 50px;
  background: #12213B;
  z-index: 10;
}

.section-header-home .container {
  padding-bottom: 130px;
  position: relative;
  z-index: 10;
}

@media (max-width: 991px) {
  .section-header-home .container {
    padding-bottom: 50px;
  }
}

.section-header-home .container .home-header-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 991px) {
  .section-header-home .container .home-header-wrapper {
    grid-template-columns: 1fr;
  }
}

.section-header-home .container .home-header-wrapper .section-content-wrapper {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .section-header-home .container .home-header-wrapper .section-content-wrapper {
    margin-bottom: 30px;
  }
}

.section-header-home .container .home-header-wrapper .section-content-wrapper .section-subtitle {
  margin-bottom: 25px;
  color: #fff;
}

.section-header-home .container .home-header-wrapper .section-content-wrapper .section-title {
  color: #FFF;
  font-size: 80px;
  line-height: 108%;
}

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

.section-header-home .container .home-header-wrapper .section-content-wrapper .section-description p {
  color: #FFF;
}

.section-header-home .container .home-header-wrapper .section-contact-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}

@media (max-width: 991px) {
  .section-header-home .container .home-header-wrapper .section-contact-wrapper {
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .section-header-home .container .home-header-wrapper .section-contact-wrapper {
    display: none;
  }
}

.section-header-home .container .home-header-wrapper .section-contact-wrapper .section-contact {
  position: relative;
  color: #FFF;
  font-size: 21px;
  font-weight: 400;
  line-height: 100%;
  padding: 17px 15px 17px 30px;
  border-bottom: 1px solid rgba(217, 217, 217, 0.1);
  width: 100%;
  transition: all 0.3s ease-in-out;
}

.section-header-home .container .home-header-wrapper .section-contact-wrapper .section-contact:hover {
  color: #EC6523;
  text-decoration: none;
}

.section-header-home .container .home-header-wrapper .section-contact-wrapper .section-contact:before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.section-header-home .container .home-header-wrapper .section-contact-wrapper .section-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-contact-phone-orange.svg);
}

.section-header-home .container .home-header-wrapper .section-contact-wrapper .section-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-contact-mail-orange.svg);
}

.section-header-home .container .home-header-wrapper .section-contact-wrapper .section-contact.contact-link:before {
  width: 16px;
  height: 19px;
  background-size: 16px 19px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-contact-calendar-orange.svg);
}

.section-header-home .container .home-header-wrapper .section-contact-wrapper .section-contact:first-of-type {
  border-top: 1px solid rgba(217, 217, 217, 0.1);
}

.section-header-default {
  position: relative;
  background-color: #12213B;
  min-height: 250px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 150px;
  overflow: hidden;
}

.section-header-default.disabled {
  min-height: unset;
}

@media (max-width: 1178px) {
  .section-header-default {
    padding-top: 120px;
  }
}

@media (max-width: 991px) {
  .section-header-default {
    min-height: 40vh;
  }
}

@media (max-width: 767px) {
  .section-header-default {
    min-height: 25vh;
  }
}

.section-header-default:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: calc(100% + 52px);
  width: 100%;
  background: linear-gradient(180deg, #12213B 0%, rgba(18, 33, 59, 0.85) 23.18%, rgba(18, 33, 59, 0.75) 46.25%, rgba(18, 33, 59, 0.93) 69.35%, #12213B 92.72%);
}

@media (max-width: 1175px) {
  .section-header-default:before {
    top: 0;
    height: 100%;
  }
}

.section-header-default .breadcrumbs-line {
  margin-top: 65px;
}

@media (max-width: 767px) {
  .section-header-default .breadcrumbs-line {
    margin-top: 30px;
  }
}

.section-header-default .header-default-content-wrapper {
  margin-top: 40px;
  margin-bottom: 100px;
}

@media (max-width: 991px) {
  .section-header-default .header-default-content-wrapper {
    margin-top: 40px;
    margin-bottom: 60px;
  }
}

.section-header-default .header-default-content-wrapper .section-subtitle {
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  line-height: 100%;
  text-transform: uppercase;
  margin-top: 30px;
  margin-bottom: 20px;
}

.section-header-default .header-default-content-wrapper .section-subtitle:before {
  content: "";
  display: block;
  width: 4px;
  height: 14px;
  background-size: 4px 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/title-bar-orange.svg);
  transition: all 0.3s ease-in-out;
  margin-bottom: 4px;
}

.section-header-default .header-default-content-wrapper .section-subtitle.mobile {
  display: none;
}

@media (max-width: 767px) {
  .section-header-default .header-default-content-wrapper:has(.section-subtitle.mobile) .section-subtitle {
    display: none;
  }

  .section-header-default .header-default-content-wrapper:has(.section-subtitle.mobile) .section-subtitle.mobile {
    display: -ms-flexbox;
    display: flex;
  }
}

.section-header-default .header-default-content-wrapper .section-title {
  color: #fff;
  font-size: 80px;
  line-height: 108%;
  text-align: center;
}

@media (max-width: 991px) {
  .section-header-default .header-default-content-wrapper .section-title {
    font-size: 50px;
  }
}

.section-header-default .header-default-content-wrapper .section-description {
  text-align: center;
  margin-top: 45px;
}

@media (max-width: 991px) {
  .section-header-default .header-default-content-wrapper .section-description {
    margin-top: 20px;
  }
}

.section-header-default .header-default-content-wrapper .section-description p {
  color: #FFF;
}

.section-header-default.tour-header.no-lightbox {
  padding-bottom: 100px;
}

.section-header-default.tour-header .header-default-content-wrapper {
  margin-bottom: 0;
}

.section-header-default.tour-header .header-default-content-wrapper.lightbox {
  padding-bottom: 375px;
}

@media (max-width: 767px) {
  .section-header-default.tour-header .header-default-content-wrapper.lightbox {
    padding-bottom: 150px;
  }
}

.section-header-default.tour-header .header-default-content-wrapper .section-title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 48px;
  font-weight: 600;
  line-height: 108%;
}

.section-header-default.tour-header .header-default-content-wrapper .section-title span img {
  max-height: 40px;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.tour-lightbox {
  height: 450px;
  background-color: #FFF5EE;
}

@media (max-width: 1175px) {
  .tour-lightbox {
    height: 265px;
  }
}

@media (max-width: 767px) {
  .tour-lightbox {
    height: 250px;
  }
}

.tour-lightbox .tour-lightbox-wrapper {
  position: relative;
  height: 745px;
  box-shadow: 4px 4px 10px 5px rgba(0, 0, 0, 0.04);
  margin-top: -285px;
  cursor: pointer;
}

@media (max-width: 1175px) {
  .tour-lightbox .tour-lightbox-wrapper {
    height: 450px;
  }
}

@media (max-width: 767px) {
  .tour-lightbox .tour-lightbox-wrapper {
    height: 350px;
    margin-top: -100px;
  }
}

.tour-lightbox .tour-lightbox-wrapper .open-fancy {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.tour-lightbox .tour-lightbox-wrapper:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background-size: 40px 40px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/play-btn-orange.svg);
}

.tour-lightbox .tour-lightbox-wrapper.no-play-btn:before {
  content: none;
}

.tour-lightbox .tour-lightbox-wrapper img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.section-header-default {
  position: relative;
  background-color: #12213B;
  min-height: 250px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 150px;
}

@media (max-width: 1178px) {
  .section-header-default {
    padding-top: 110px;
  }
}

@media (max-width: 991px) {
  .section-header-default {
    min-height: 40vh;
  }
}

@media (max-width: 767px) {
  .section-header-default {
    min-height: 25vh;
  }
}

.section-header-default .header-default-content-wrapper {
  margin-bottom: 75px;
}

.section-header-default .header-afspraak-wrapper {
  padding: 125px 160px;
  background-color: #FFF5EE;
  margin-bottom: 150px;
  display: grid;
  grid-template-columns: 1fr;
}

.section-header-default .header-afspraak-wrapper.image {
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

@media (max-width: 1175px) {
  .section-header-default .header-afspraak-wrapper.image {
    padding: 100px 80px;
    gap: 30px;
  }
}

@media (max-width: 991px) {
  .section-header-default .header-afspraak-wrapper.image {
    grid-template-columns: 1fr;
  }
}

.section-header-default .header-afspraak-wrapper.image .header-afspraak-image {
  margin: 0 auto;
}

@media (max-width: 991px) {
  .section-header-default .header-afspraak-wrapper.image .header-afspraak-image {
    -ms-flex-order: 10;
    order: 10;
  }
}

.section-header-default .header-afspraak-wrapper.image .header-afspraak-image img {
  -webkit-clip-path: polygon(0 50px, 50px 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 50px, 50px 0, 100% 0, 100% 100%, 0 100%);
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 991px) {
  .section-header-default .header-afspraak-wrapper.image .header-afspraak-image img {
    max-height: 450px;
  }
}

@media (max-width: 767px) {
  .section-header-default .header-afspraak-wrapper {
    padding: 40px 30px !important;
    margin-bottom: 30px;
  }
}

.section-header-default .header-afspraak-wrapper .header-afspraak-content .section-title {
  font-size: 40px;
}

.section-header-default .header-afspraak-wrapper .header-afspraak-content .single-form {
  padding-top: 30px;
}

section.logos-section {
  overflow: hidden;
}

section.logos-section .container {
  padding: 55px 0;
}

section.logos-section .container .logos-section-wrapper {
  overflow: hidden;
}

section.logos-section .container .section-content-wrapper .section-title {
  font-size: 32px;
}

section.logos-section .container .logos-section-slider {
  margin: 0 70px;
  overflow: hidden;
}

@media (max-width: 991px) {
  section.logos-section .container .logos-section-slider {
    margin: 0;
  }
}

section.logos-section .container .logos-section-slider .slick-list {
  margin: 0 70px;
  overflow: hidden;
}

@media (max-width: 991px) {
  section.logos-section .container .logos-section-slider .slick-list {
    margin: 0;
  }
}

section.logos-section .container .logos-section-slider .slick-list .slick-slide {
  display: inline-block;
  padding: 0 50px;
}

section.logos-section .container .logos-section-slider .slick-list .slick-slide .logo-wrapper {
  position: relative;
  width: 100px;
  height: 65px;
}

@media (max-width: 767px) {
  section.logos-section .container .logos-section-slider .slick-list .slick-slide .logo-wrapper {
    width: 80px;
    height: 45px;
  }
}

section.logos-section .container .logos-section-slider .slick-list .slick-slide .logo-wrapper .logo-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}

section.logos-section .container .logos-section-slider .slick-list .slick-slide .logo-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.text-image-section.tai-slider-section {
  overflow: visible !important;
  --section-offset: 130px;
}

.text-image-section .container .text-image-section-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

@media (max-width: 991px) {
  .text-image-section .container .text-image-section-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.text-image-section .container .text-image-section-wrapper .section-content-wrapper {
  margin-bottom: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
}

.text-image-section .container .text-image-section-wrapper .section-content-wrapper.tai-slider-section {
  display: block;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: -webkit-sticky;
  position: sticky;
  top: var(--section-offset);
}

@media (max-width: 991px) {
  .text-image-section .container .text-image-section-wrapper .section-content-wrapper.tai-slider-section {
    position: relative;
    top: unset;
  }
}

.text-image-section .container .text-image-section-wrapper .section-content-wrapper .section-title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
}

.text-image-section .container .text-image-section-wrapper .section-content-wrapper .section-title span img {
  max-height: 40px;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.text-image-section .container .text-image-section-wrapper .text-image-section-media-wrapper {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.text-image-section .container .text-image-section-wrapper .text-image-section-media-wrapper .text-image-icons-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
  align-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
}

.text-image-section .container .text-image-section-wrapper .text-image-section-media-wrapper .text-image-icons-wrapper img {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-height: 30px;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-clip-path: none;
  clip-path: none;
}

.text-image-section .container .text-image-section-wrapper .text-image-section-media-wrapper.position-right {
  -ms-flex-order: 5;
  order: 5;
}

.text-image-section .container .text-image-section-wrapper .text-image-section-media-wrapper.position-right:before {
  top: -28px;
  left: -28px;
}

.text-image-section .container .text-image-section-wrapper .text-image-section-media-wrapper.position-left {
  -ms-flex-order: -1;
  order: -1;
}

.text-image-section .container .text-image-section-wrapper .text-image-section-media-wrapper.position-left:before {
  top: -28px;
  right: -28px;
}

@media (max-width: 991px) {
  .text-image-section .container .text-image-section-wrapper .text-image-section-media-wrapper {
    -ms-flex-order: 5;
    order: 5;
  }
}

.text-image-section .container .text-image-section-wrapper .text-image-section-media-wrapper img,
.text-image-section .container .text-image-section-wrapper .text-image-section-media-wrapper video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-clip-path: polygon(0 0, 40px 0, 0 40px, 0 100%, 100% 100%, 100% 0);
  clip-path: polygon(0 0, 40px 0, 0 40px, 0 100%, 100% 100%, 100% 0);
}

.text-image-section .container .text-image-section-wrapper .text-image-section-media-wrapper.dropshadow {
  box-shadow: 4px 4px 10px 5px rgba(0, 0, 0, 0.03);
}

.text-image-section .container .text-image-section-wrapper .text-image-section-media-wrapper .text-image-section-text {
  position: absolute;
  bottom: -20px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-line-pack: center;
  align-content: center;
}

.text-image-section .container .text-image-section-wrapper .text-image-section-media-wrapper .text-image-section-text.position-left {
  left: 80px;
}

.text-image-section .container .text-image-section-wrapper .text-image-section-media-wrapper .text-image-section-text.position-right {
  right: 80px;
}

.text-image-section .container .text-image-section-wrapper .text-image-section-media-wrapper .text-image-section-text.position-center {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.text-image-section .container .text-image-section-wrapper .text-image-section-media-wrapper .text-image-section-text span {
  color: #12213B;
  font-family: "ivypresto-display", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 100%;
}

@media (max-width: 767px) {
  .text-image-section .container .text-image-section-wrapper .text-image-section-media-wrapper .text-image-section-text span {
    font-size: 20px;
  }
}

.text-image-section .container .text-image-section-wrapper .text-image-section-media-wrapper .text-image-section-text .bottom-text {
  font-size: 64px;
}

@media (max-width: 767px) {
  .text-image-section .container .text-image-section-wrapper .text-image-section-media-wrapper .text-image-section-text .bottom-text {
    font-size: 48px;
  }
}

.text-image-section .container .text-image-section-wrapper .text-image-section-media-wrapper.tai-slider {
  position: relative;
  overflow: visible;
  display: block;
}

.text-image-section .container .text-image-section-wrapper .text-image-section-media-wrapper.tai-slider:before {
  content: none;
}

.text-image-section .container .text-image-section-wrapper .text-image-section-media-wrapper.tai-slider .images-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.text-image-section .container .text-image-section-wrapper .text-image-section-media-wrapper.tai-slider .images-wrapper.stacking-cards-holder .stack-card {
  height: 350px;
}

.text-image-section.bg-white .text-image-section-media-wrapper:before {
  background-color: #fff;
}

.text-image-section.bg-light-orange .text-image-section-media-wrapper:before {
  background-color: #FFF5EE;
}

.text-image-section.bg-light-blue .text-image-section-media-wrapper:before {
  background-color: #FFF5EE;
}

.text-image-section.bg-dark-blue .text-image-section-media-wrapper:before {
  background-color: #12213B;
}

.text-image-section.dark-section .container .text-image-section-wrapper .text-image-section-media-wrapper .text-image-section-text span {
  color: #fff;
}

.products-section .container {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

@media (max-width: 767px) {
  .products-section .container {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
}

.products-section .container .product-list {
  margin-top: 50px;
}

.products-section .container .button-wrapper {
  margin-top: auto;
  padding-top: 20px;
}

.products-section .section-content-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  margin-bottom: 0;
}

.products-section.dark-section .products-wrapper .product-loop .product-content,
.products-section.dark-section .product-list .product-loop .product-content,
.products-section.dark-section .products-section-slider .product-loop .product-content {
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.products-section.dark-section .products-wrapper .product-loop .product-content:after,
.products-section.dark-section .product-list .product-loop .product-content:after,
.products-section.dark-section .products-section-slider .product-loop .product-content:after {
  width: 8px;
  height: 13px;
  background-size: 8px 13px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-chevron-right-white.svg);
}

.products-section.dark-section .products-wrapper .product-loop .product-content h3,
.products-section.dark-section .product-list .product-loop .product-content h3,
.products-section.dark-section .products-section-slider .product-loop .product-content h3 {
  color: #fff;
}

.products-section.products-slider-wrap .products-section-wrapper {
  display: grid;
  grid-template-columns: 30% 70%;
  overflow: visible;
  row-gap: 40px;
}

@media (max-width: 991px) {
  .products-section.products-slider-wrap .products-section-wrapper {
    grid-template-columns: 100%;
  }
}

.products-section.products-slider-wrap .products-section-wrapper .section-content-wrapper {
  position: relative;
  z-index: 10;
  padding-right: 30px;
  margin-right: 10px;
}

@media (max-width: 991px) {
  .products-section.products-slider-wrap .products-section-wrapper .section-content-wrapper {
    padding-right: 0px;
    margin-right: 0px;
  }
}

.products-section.products-slider-wrap .products-section-wrapper .section-content-wrapper .background-item {
  position: absolute;
  height: 100%;
  width: 500%;
  top: 0;
  right: 0;
  z-index: -1;
}

@media (max-width: 991px) {
  .products-section.products-slider-wrap .products-section-wrapper .section-content-wrapper .background-item {
    display: none;
  }
}

.products-section.products-slider-wrap .products-section-wrapper .slider-wrapper {
  min-height: 400px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .products-section.products-slider-wrap .products-section-wrapper .slider-wrapper {
    min-height: auto;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 50px;
  }
}

.products-section.products-slider-wrap .products-section-wrapper .slider-wrapper .products-section-slider {
  margin: 0 15px;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  transition: all 0.3s ease-in-out;
}

.products-section.products-slider-wrap .products-section-wrapper .slider-wrapper .products-section-slider.slick-initialized {
  opacity: 1;
  visibility: visible;
  max-height: unset;
}

.products-section.products-slider-wrap .products-section-wrapper .slider-wrapper .products-section-slider .slick-list {
  margin: 0 -30px;
  overflow: visible;
}

@media (max-width: 767px) {
  .products-section.products-slider-wrap .products-section-wrapper .slider-wrapper .products-section-slider .slick-list {
    margin: 0px -15px;
  }
}

.products-section.products-slider-wrap .products-section-wrapper .slider-wrapper .products-section-slider .slick-list .slick-track {
  display: -ms-flexbox;
  display: flex;
}

.products-section.products-slider-wrap .products-section-wrapper .slider-wrapper .products-section-slider .slick-list .slick-slide {
  margin: 0 15px;
  width: 300px;
  padding: 0;
}

@media (max-width: 767px) {
  .products-section.products-slider-wrap .products-section-wrapper .slider-wrapper .products-section-slider .slick-list .slick-slide {
    max-width: 250px;
    width: 250px;
  }
}

.products-section.products-slider-wrap .products-section-wrapper .slider-wrapper .products-section-slider .slick-list .slick-slide .product-image {
  height: auto;
  overflow: hidden;
  aspect-ratio: 4/3;
  max-width: 100%;
}

@media (max-width: 767px) {
  .products-section.products-slider-wrap .products-section-wrapper .slider-wrapper .products-section-slider .slick-list .slick-slide .product-image {
    aspect-ratio: unset;
    height: 185px;
  }
}

.products-section.products-slider-wrap .products-section-wrapper .slider-wrapper .products-section-slider .slick-list .slick-slide .product-image .image {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.3s ease-in-out;
}

.products-section.products-slider-wrap .slider-line {
  margin-top: 40px;
  margin-bottom: 1px;
}

@media (max-width: 767px) {
  .products-section.products-slider-wrap .slider-line {
    margin-top: 0;
  }
}

.products-section.products-slider-wrap .slider-line .slider-nav-holder {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
  align-content: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.products-section.bg-white.products-slider-wrap .products-section-wrapper .section-content-wrapper {
  background-color: #fff;
}

.products-section.bg-white.products-slider-wrap .products-section-wrapper .section-content-wrapper .background-item {
  background-color: #fff;
}

.products-section.bg-light-orange.products-slider-wrap .products-section-wrapper .section-content-wrapper {
  background-color: #FFF5EE;
}

.products-section.bg-light-orange.products-slider-wrap .products-section-wrapper .section-content-wrapper .background-item {
  background-color: #FFF5EE;
}

.products-section.bg-light-blue.products-slider-wrap .products-section-wrapper .section-content-wrapper {
  background-color: #F3F5F9;
}

.products-section.bg-light-blue.products-slider-wrap .products-section-wrapper .section-content-wrapper .background-item {
  background-color: #F3F5F9;
}

.products-section.bg-dark-blue.products-slider-wrap .products-section-wrapper .section-content-wrapper {
  background-color: #12213B;
}

.products-section.bg-dark-blue.products-slider-wrap .products-section-wrapper .section-content-wrapper .background-item {
  background-color: #12213B;
}

section.steps-section {
  overflow: hidden;
}

section.steps-section .container .steps-section-slider {
  overflow: hidden;
  position: relative;
}

section.steps-section .container .steps-section-slider .slick-arrow {
  border: none;
  background-color: transparent;
  position: absolute;
  top: calc(50% - 80px);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 10;
}

@media (max-width: 1165px) {
  section.steps-section .container .steps-section-slider .slick-arrow {
    top: calc(50% - 150px);
  }
}

@media (max-width: 767px) {
  section.steps-section .container .steps-section-slider .slick-arrow {
    bottom: unset;
    top: 0;
    -webkit-transform: unset;
    transform: unset;
  }
}

section.steps-section .container .steps-section-slider .slick-arrow.slick-prev,
section.steps-section .container .steps-section-slider .slick-arrow.slick-next {
  left: 0;
  width: 40px;
  height: 40px;
  background-color: #EC6523;
  transition: all 0.3s ease-in-out;
  border: 1px solid #EC6523;
}

section.steps-section .container .steps-section-slider .slick-arrow.slick-prev:hover,
section.steps-section .container .steps-section-slider .slick-arrow.slick-next:hover {
  background-color: #C95218;
  border: 1px solid #C95218;
}

section.steps-section .container .steps-section-slider .slick-arrow.slick-prev.slick-disabled,
section.steps-section .container .steps-section-slider .slick-arrow.slick-next.slick-disabled {
  background-color: transparent;
  border: 1px solid #12213B;
}

section.steps-section .container .steps-section-slider .slick-arrow.slick-prev.slick-disabled:hover,
section.steps-section .container .steps-section-slider .slick-arrow.slick-next.slick-disabled:hover {
  background-color: #C95218;
  border: 1px solid #C95218;
}

section.steps-section .container .steps-section-slider .slick-arrow.slick-next {
  right: 0;
  left: unset;
}

@media (max-width: 767px) {
  section.steps-section .container .steps-section-slider .slick-arrow.slick-next {
    left: unset;
    right: 25px;
  }
}

@media (max-width: 767px) {
  section.steps-section .container .steps-section-slider .slick-arrow.slick-prev {
    left: 25px;
    right: unset;
  }
}

section.steps-section .container .steps-section-slider .slick-list {
  overflow: hidden;
}

@media (max-width: 767px) {
  section.steps-section .container .steps-section-slider .slick-list {
    margin: 0 -15px;
  }
}

section.steps-section .container .steps-section-slider .slick-list .step-slide {
  background: #FFF5EE;
  padding: 20px 50px;
  position: relative;
}

section.steps-section .container .steps-section-slider .slick-list .step-slide:after {
  content: "";
  display: none;
  top: 0;
  left: 15px;
  width: calc(100% - 50px);
  position: absolute;
  height: 100%;
}

@media (max-width: 767px) {
  section.steps-section .container .steps-section-slider .slick-list .step-slide {
    padding: 70px 25px 25px;
  }

  section.steps-section .container .steps-section-slider .slick-list .step-slide:after {
    display: block;
  }
}

section.steps-section .container .steps-section-slider .slick-list .step-slide .slide-wrapper {
  box-shadow: 4px 4px 10px 5px rgba(0, 0, 0, 0.03);
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 10px;
}

@media (max-width: 991px) {
  section.steps-section .container .steps-section-slider .slick-list .step-slide .slide-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  section.steps-section .container .steps-section-slider .slick-list .step-slide .slide-wrapper {
    margin: 0 auto;
    width: calc(100% - 30px);
    box-shadow: 0px 6px 20px 0px rgba(0, 39, 82, 0.08);
  }
}

section.steps-section .container .steps-section-slider .slick-list .step-slide .step-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

section.steps-section .container .steps-section-slider .slick-list .step-slide .step-content-wrapper {
  padding: 60px 35px 60px 75px;
}

@media (max-width: 991px) {
  section.steps-section .container .steps-section-slider .slick-list .step-slide .step-content-wrapper {
    padding: 20px;
  }
}

section.steps-section .container .steps-section-slider .slick-list .step-slide .step-content-wrapper .step-title {
  font-size: 48px;
  font-weight: 600;
  line-height: 108%;
}

@media (max-width: 767px) {
  section.steps-section .container .steps-section-slider .slick-list .step-slide .step-content-wrapper .step-title {
    font-size: 28px;
  }
}

section.steps-section .container .steps-section-slider .slick-list .step-slide .step-content-wrapper .step-description {
  margin-top: 35px;
}

section.steps-section .container .steps-section-slider .slick-list .step-slide .step-content-wrapper .button-wrapper {
  position: relative;
  z-index: 50;
  margin-top: 50px;
}

section.steps-section .container .custom-pagination {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 100px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 60px auto 10px;
}

section.steps-section .container .custom-pagination:before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: #12213B;
}

section.steps-section .container .custom-pagination .custom-dot {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

section.steps-section .container .custom-pagination .custom-dot:first-of-type:before {
  content: "";
  position: absolute;
  height: 40px;
  width: 50%;
  top: 0;
  left: 0;
}

section.steps-section .container .custom-pagination .custom-dot:last-of-type:before {
  content: "";
  position: absolute;
  height: 40px;
  width: 50%;
  top: 0;
  right: 0;
}

section.steps-section .container .custom-pagination .custom-dot .dot-number-wrapper {
  position: relative;
  z-index: 10;
  width: 40px;
  height: 40px;
  border: 1px solid #12213B;
  background: #FFF5EE;
  display: grid;
  place-content: center;
  transition: all 0.3s ease-in-out;
}

section.steps-section .container .custom-pagination .custom-dot .dot-number-wrapper .dot-number {
  display: block;
  color: #12213B;
  font-family: "ivypresto-display", sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 100%;
  transition: color 0.3s ease-in-out;
}

section.steps-section .container .custom-pagination .custom-dot .dot-title {
  margin-top: 15px;
  display: block;
  color: #12213B;
  font-family: "ivypresto-display", sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 100%;
  text-align: center;
}

section.steps-section .container .custom-pagination .custom-dot.active .dot-number-wrapper {
  border: 1px solid #EC6523;
  background: #EC6523;
}

section.steps-section .container .custom-pagination .custom-dot.active .dot-number-wrapper .dot-number {
  color: #fff;
}

@media (max-width: 991px) {
  section.steps-section .container .custom-pagination {
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
    margin: 0 0 0 20px;
  }

  section.steps-section .container .custom-pagination:before {
    display: none;
  }

  section.steps-section .container .custom-pagination .custom-dot {
    gap: 10px;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  section.steps-section .container .custom-pagination .custom-dot:first-of-type:before {
    display: none;
  }

  section.steps-section .container .custom-pagination .custom-dot:last-of-type:before {
    display: none;
  }

  section.steps-section .container .custom-pagination .custom-dot .dot-number-wrapper {
    width: 30px;
    height: 30px;
  }

  section.steps-section .container .custom-pagination .custom-dot .dot-number-wrapper .dot-number {
    font-size: 18px;
  }

  section.steps-section .container .custom-pagination .custom-dot .dot-title {
    margin-top: 0px;
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  section.steps-section .container .custom-pagination {
    margin: 0;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    bottom: unset;
    top: 0;
    left: 65px;
    width: calc(100% - 130px);
    min-height: 40px;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  section.steps-section .container .custom-pagination .custom-dot {
    opacity: 1;
    visibility: visible;
    transition: all 0.5s ease-in-out;
    max-width: 35px;
    position: relative;
  }

  section.steps-section .container .custom-pagination .custom-dot:after {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: -30px;
    height: 1px;
    width: 30px;
    background-color: #12213B;
  }

  section.steps-section .container .custom-pagination .custom-dot:last-of-type:after {
    content: none;
  }

  section.steps-section .container .custom-pagination .custom-dot .dot-title {
    display: none;
  }
}

@media (max-width: 450px) {
  section.steps-section .container .custom-pagination {
    gap: 10px;
  }
}

section.steps-section.bg-white .custom-pagination .custom-dot:first-of-type:before {
  background-color: #fff;
}

section.steps-section.bg-white .custom-pagination .custom-dot:last-of-type:before {
  background-color: #fff;
}

section.steps-section.bg-light-orange .custom-pagination .custom-dot:first-of-type:before {
  background-color: #FFF5EE;
}

section.steps-section.bg-light-orange .custom-pagination .custom-dot:last-of-type:before {
  background-color: #FFF5EE;
}

section.steps-section.bg-light-blue .custom-pagination .custom-dot:first-of-type:before {
  background-color: #F3F5F9;
}

section.steps-section.bg-light-blue .custom-pagination .custom-dot:last-of-type:before {
  background-color: #F3F5F9;
}

section.steps-section.bg-dark-blue .steps-section-slider .slick-arrow.slick-prev.slick-disabled,
section.steps-section.bg-dark-blue .steps-section-slider .slick-arrow.slick-next.slick-disabled {
  border: 1px solid #EC6523;
}

section.steps-section.bg-dark-blue .steps-section-slider .slick-arrow.slick-next {
  right: 0;
  left: unset;
}

section.steps-section.bg-dark-blue .steps-section-slider .slick-list {
  overflow: hidden;
}

section.steps-section.bg-dark-blue .steps-section-slider .slick-list .step-slide {
  background: #FFF5EE;
  padding: 0 50px;
}

section.steps-section.bg-dark-blue .steps-section-slider .slick-list .step-slide .slide-wrapper {
  box-shadow: 4px 4px 10px 5px rgba(0, 0, 0, 0.03);
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 10px;
}

@media (max-width: 991px) {
  section.steps-section.bg-dark-blue .steps-section-slider .slick-list .step-slide .slide-wrapper {
    grid-template-columns: 1fr;
  }
}

section.steps-section.bg-dark-blue .steps-section-slider .slick-list .step-slide .step-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

section.steps-section.bg-dark-blue .steps-section-slider .slick-list .step-slide .step-content-wrapper {
  padding: 60px 35px 60px 75px;
}

@media (max-width: 991px) {
  section.steps-section.bg-dark-blue .steps-section-slider .slick-list .step-slide .step-content-wrapper {
    padding: 20px;
  }
}

section.steps-section.bg-dark-blue .steps-section-slider .slick-list .step-slide .step-content-wrapper .step-title {
  font-size: 48px;
  font-weight: 600;
  line-height: 108%;
}

section.steps-section.bg-dark-blue .steps-section-slider .slick-list .step-slide .step-content-wrapper .step-description {
  margin-top: 35px;
}

section.steps-section.bg-dark-blue .steps-section-slider .slick-list .step-slide .step-content-wrapper .button-wrapper {
  margin-top: 50px;
}

section.steps-section.bg-dark-blue .custom-pagination .custom-dot:first-of-type:before {
  background-color: #12213B;
}

section.steps-section.bg-dark-blue .custom-pagination .custom-dot:last-of-type:before {
  background-color: #12213B;
}

section.content-section {
  overflow: hidden;
  margin: -1px 0;
}

section.content-section .container .content-section-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 120px;
}

section.content-section .container .content-section-wrapper .content-section-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

@media (max-width: 991px) {
  section.content-section .container .content-section-wrapper .content-section-block {
    grid-template-columns: 1fr;
  }
}

section.content-section .container .content-section-wrapper .content-section-block .content-block-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 18px;
}

section.content-section .container .content-section-wrapper .content-section-block .content-block-content .section-content-wrapper {
  margin-bottom: 0;
}

section.content-section .container .content-section-wrapper .content-section-block .content-block-image {
  position: relative;
  min-height: 422px;
  width: calc(100% - 80px);
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

@media (max-width: 1178px) {
  section.content-section .container .content-section-wrapper .content-section-block .content-block-image {
    width: calc(100% - 20px);
  }
}

@media (max-width: 991px) {
  section.content-section .container .content-section-wrapper .content-section-block .content-block-image {
    min-height: 320px;
    width: 100%;
  }
}

section.content-section .container .content-section-wrapper .content-section-block .content-block-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

section.content-section .container .content-section-wrapper .content-section-block.image-position-right .content-block-image {
  margin-left: auto;
}

section.content-section .container .content-section-wrapper .content-section-block.add-dropshadow .content-block-image img {
  box-shadow: 4px 4px 10px 5px rgba(0, 0, 0, 0.03);
}

section.content-section .container .content-section-wrapper .content-section-block.image-position-left .content-block-image {
  -ms-flex-order: -1;
  order: -1;
  margin-right: auto;
}

@media (max-width: 991px) {
  section.content-section .container .content-section-wrapper .content-section-block.image-position-left .content-block-image {
    -ms-flex-order: 5;
    order: 5;
  }
}

section.quote-section {
  overflow: hidden;
}

section.quote-section .container .quote-section-wrapper {
  padding: 40px 20px 60px;
  background-color: #2A364D;
  -webkit-clip-path: polygon(0 70px, 70px 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 70px, 70px 0, 100% 0, 100% 100%, 0 100%);
}

section.quote-section .container .quote-section-wrapper .section-content-wrapper {
  margin-bottom: 0;
}

section.quote-section .container .quote-section-wrapper .section-content-wrapper .section-subtitle {
  color: #fff;
}

section.quote-section .container .quote-section-wrapper .section-content-wrapper .section-title {
  color: #fff;
  text-align: center;
  font-weight: 300;
  line-height: 108%;
}

section.faq-section {
  overflow: hidden;
}

section.faq-section .container .faq-section-wrapper {
  max-width: 750px;
  margin: 0 auto;
}

section.faq-section .container .faq-section-wrapper .faq-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

section.faq-section .container .faq-section-wrapper .faq-wrapper .faq-item {
  padding: 25px 35px 25px 20px;
  border-bottom: 1px solid #ECEDEF;
}

@media (max-width: 991px) {
  section.faq-section .container .faq-section-wrapper .faq-wrapper .faq-item {
    padding: 25px 0;
  }
}

section.faq-section .container .faq-section-wrapper .faq-wrapper .faq-item .faq-title-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
}

section.faq-section .container .faq-section-wrapper .faq-wrapper .faq-item .faq-title-wrapper:after {
  content: "";
  display: block;
  transition: all 0.3s ease-in-out;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  width: 13px;
  height: 7px;
  background-size: 13px 7px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-chevron-down-orange.svg);
}

section.faq-section .container .faq-section-wrapper .faq-wrapper .faq-item .faq-title-wrapper .faq-title {
  font-weight: 600;
}

section.faq-section .container .faq-section-wrapper .faq-wrapper .faq-item .faq-title-wrapper.active:after {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

section.faq-section .container .faq-section-wrapper .faq-wrapper .faq-item .faq-description {
  margin-top: 25px;
  max-width: 700px;
}

section.google-review-section {
  overflow: hidden;
}

section.google-review-section .container .google-bar-review {
  background-color: #FFF5EE;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 20px auto 0;
  padding: 15px 30px;
}

@media (max-width: 767px) {
  section.google-review-section .container .google-bar-review .review-stars {
    margin: 5px 0;
  }
}

section.google-review-section .container .google-bar-review p {
  font-size: 19px;
  color: #12213B;
}

@media (max-width: 767px) {
  section.google-review-section .container .google-bar-review p {
    margin-top: 0;
  }
}

@media (max-width: 650px) {
  section.google-review-section .container .google-bar-review p {
    font-size: 16px;
  }
}

section.google-review-section .container .google-bar-review p a {
  color: #12213B;
  text-decoration: underline;
}

section.google-review-section .container .google-bar-review p a:hover {
  color: #EC6523;
}

@media (max-width: 767px) {
  section.google-review-section .container .google-bar-review {
    -ms-flex-direction: column;
    flex-direction: column;
  }

  section.google-review-section .container .google-bar-review p {
    text-align: center;
  }
}

@media (max-width: 767px) {
  section.google-review-section .container .google-review-section-wrapper .section-content-wrapper {
    margin-bottom: 50px;
  }
}

section.google-review-section .container .google-review-section-wrapper .slick-list {
  overflow: visible;
  margin: 0 -15px;
}

section.google-review-section .container .google-review-section-wrapper .slick-list .review-wrapper {
  border: 1px solid #E0E4ED;
  background: #FFF;
  padding: 30px;
  margin: 0 15px;
}

section.google-review-section .container .google-review-section-wrapper .slick-list .review-wrapper .review-stars {
  margin: 0 0 25px;
}

section.google-review-section .container .google-review-section-wrapper .slick-list .review-wrapper .review-stars .review-star {
  width: 20px;
  height: 19px;
}

section.google-review-section .container .google-review-section-wrapper .slick-list .review-wrapper .review-text {
  margin-bottom: 10px;
}

section.google-review-section .container .google-review-section-wrapper .slick-list .review-wrapper .review-text p {
  color: #12213B;
}

section.google-review-section .container .google-review-section-wrapper .slick-list .review-wrapper .review-meta {
  border-top: 1px solid rgba(18, 33, 59, 0.08);
  padding-top: 20px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
}

section.google-review-section .container .google-review-section-wrapper .slick-list .review-wrapper .review-meta .meta-left {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

section.google-review-section .container .google-review-section-wrapper .slick-list .review-wrapper .review-meta .meta-left .meta-image {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

section.google-review-section .container .google-review-section-wrapper .slick-list .review-wrapper .review-meta .meta-left .meta-image.no-img {
  width: 40px;
  height: 40px;
  background-size: 40px 40px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/google-logo.svg);
}

section.google-review-section .container .google-review-section-wrapper .slick-list .review-wrapper .review-meta .meta-left .meta-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}

section.google-review-section .container .google-review-section-wrapper .slick-list .review-wrapper .review-meta .meta-left .meta-text .author {
  display: block;
  color: #12213B;
  font-family: "ivypresto-display", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}

section.google-review-section .container .google-review-section-wrapper .slick-list .review-wrapper .review-meta .meta-left .meta-text .date {
  margin-top: 5px;
  color: rgba(18, 33, 59, 0.8);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-transform: capitalize;
}

section.google-review-section .container .google-review-section-wrapper .slider-nav-holder {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 60px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 40px;
  margin: 30px auto 0;
  overflow: hidden;
}

section.google-review-section .container .google-review-section-wrapper .slider-nav-holder .slick-arrow {
  position: absolute;
  top: 0;
}

section.google-review-section .container .google-review-section-wrapper .slider-nav-holder .slick-arrow.slick-prev {
  left: 0;
}

section.google-review-section .container .google-review-section-wrapper .slider-nav-holder .slick-arrow.slick-next {
  right: 0;
}

section.google-review-section .container .google-review-section-wrapper .slider-nav-holder .slick-dots-wrapper {
  max-width: 250px;
  overflow: hidden;
}

@media (max-width: 767px) {
  section.google-review-section .container .google-review-section-wrapper .slider-nav-holder .slick-dots-wrapper {
    max-width: 150px;
  }
}

section.google-review-section .container .google-review-section-wrapper .slider-nav-holder .slick-dots-wrapper .slick-dots {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 10px;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

section.google-review-section .container .google-review-section-wrapper .slider-nav-holder .slick-dots-wrapper .slick-dots li {
  width: 9px;
  height: 9px;
  border: 1px solid #E0E4ED;
  background-color: transparent;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 4.5px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

section.google-review-section .container .google-review-section-wrapper .slider-nav-holder .slick-dots-wrapper .slick-dots li:before {
  content: none;
}

section.google-review-section .container .google-review-section-wrapper .slider-nav-holder .slick-dots-wrapper .slick-dots li button {
  display: none;
}

section.google-review-section .container .google-review-section-wrapper .slider-nav-holder .slick-dots-wrapper .slick-dots li.slick-active {
  border: 1px solid #EC6523;
  background-color: #EC6523;
}

section.usp-section {
  overflow: hidden;
}

section.usp-section .container .usp-section-wrapper {
  margin: 0 auto;
}

section.usp-section .container .usp-section-wrapper .usp-block-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

@media (max-width: 450px) {
  section.usp-section .container .usp-section-wrapper .usp-block-wrapper {
    grid-template-columns: 1fr;
  }
}

section.usp-section .container .usp-section-wrapper .usp-block-wrapper .usp-block {
  border: 1px solid rgba(18, 33, 59, 0.08);
  background-color: #fff;
  padding: 0 20px 20px 20px;
  text-align: center;
}

section.usp-section .container .usp-section-wrapper .usp-block-wrapper .usp-block .usp-icon {
  width: 120px;
  height: 80px;
  background-color: #12213B;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 87.574% 100%, 11.834% 100%, 0% 0%);
  clip-path: polygon(0% 0%, 100% 0%, 87.574% 100%, 11.834% 100%, 0% 0%);
  display: grid;
  place-content: center;
  margin: 0 auto;
}

section.usp-section .container .usp-section-wrapper .usp-block-wrapper .usp-block .usp-icon img {
  height: 60px;
  width: 50px;
  -o-object-fit: contain;
  object-fit: contain;
}

section.usp-section .container .usp-section-wrapper .usp-block-wrapper .usp-block .usp-title {
  margin-top: 30px;
}

section.usp-section .container .usp-section-wrapper .usp-block-wrapper .usp-block .usp-title h3 {
  font-weight: 600;
  line-height: 108%;
}

section.usp-section .container .usp-section-wrapper .usp-block-wrapper .usp-block .usp-description {
  margin-top: 20px;
}

section.usp-section .container .usp-section-wrapper .button-wrapper {
  margin-top: 45px;
  -ms-flex-pack: center;
  justify-content: center;
}

section.usp-section.dark-section .container .usp-block-wrapper .usp-block {
  border: 1px solid #fff;
}

section.tabs-section {
  overflow: hidden;
}

section.tabs-section .container .tabs-section-wrapper .section-content-wrapper .section-description {
  max-width: 850px;
  margin: 25px auto 0;
}

section.tabs-section .container .tabs-section-wrapper .tabs-label-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 15px;
  padding-bottom: 50px;
}

section.tabs-section .container .tabs-section-wrapper .tabs-label-wrapper .tab-label {
  padding: 10px 22px 8px;
  border: 1px solid #EC6523;
  transition: background-color 0.2s ease-in-out;
  cursor: pointer;
}

section.tabs-section .container .tabs-section-wrapper .tabs-label-wrapper .tab-label span {
  display: block;
  color: #FFF;
  font-size: 16px;
  font-weight: 600;
  line-height: 108%;
}

section.tabs-section .container .tabs-section-wrapper .tabs-label-wrapper .tab-label:hover {
  background-color: #C95218;
}

section.tabs-section .container .tabs-section-wrapper .tabs-label-wrapper .tab-label.active {
  background-color: #EC6523;
}

section.tabs-section .container .tabs-section-wrapper .tabs-label-wrapper .tab-label.active:hover {
  background-color: #C95218;
}

section.tabs-section .container .tabs-section-wrapper .tabs-wrapper {
  width: 100%;
}

section.tabs-section .container .tabs-section-wrapper .tabs-wrapper.scroll-view {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 150px;
}

section.tabs-section .container .tabs-section-wrapper .tabs-wrapper .slick-list .slick-track {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

section.tabs-section .container .tabs-section-wrapper .tabs-wrapper .slick-list .slick-track .slick-slide {
  height: 100%;
  margin-bottom: 50px;
}

section.tabs-section .container .tabs-section-wrapper .tabs-wrapper .tab-wrapper {
  width: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 991px) {
  section.tabs-section .container .tabs-section-wrapper .tabs-wrapper .tab-wrapper {
    grid-template-columns: 1fr;
  }
}

section.tabs-section .container .tabs-section-wrapper .tabs-wrapper .tab-wrapper.active {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

section.tabs-section .container .tabs-section-wrapper .tabs-wrapper .tab-wrapper .tab-content {
  background-color: #fff;
  -webkit-clip-path: polygon(0 50px, 50px 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 50px, 50px 0, 100% 0, 100% 100%, 0 100%);
  padding: 60px;
  text-align: left;
  margin: 0;
}

@media (max-width: 767px) {
  section.tabs-section .container .tabs-section-wrapper .tabs-wrapper .tab-wrapper .tab-content {
    -webkit-clip-path: polygon(0 25px, 25px 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 25px, 25px 0, 100% 0, 100% 100%, 0 100%);
    padding: 35px 20px 20px;
  }
}

section.tabs-section .container .tabs-section-wrapper .tabs-wrapper .tab-wrapper .tab-content .section-subtitle {
  -ms-flex-pack: start;
  justify-content: flex-start;
  color: #12213B;
}

section.tabs-section .container .tabs-section-wrapper .tabs-wrapper .tab-wrapper .tab-content .section-title {
  font-size: 48px;
  text-align: left;
  color: #12213B;
}

@media (max-width: 767px) {
  section.tabs-section .container .tabs-section-wrapper .tabs-wrapper .tab-wrapper .tab-content .section-title {
    font-size: 28px;
  }
}

section.tabs-section .container .tabs-section-wrapper .tabs-wrapper .tab-wrapper .tab-content .section-description p {
  color: #2A364D;
  text-align: left;
  opacity: 1;
}

section.tabs-section .container .tabs-section-wrapper .tabs-wrapper .tab-wrapper .tab-content .button-wrapper {
  -ms-flex-pack: start;
  justify-content: flex-start;
}

section.tabs-section .container .tabs-section-wrapper .tabs-wrapper .tab-wrapper .tab-media {
  margin-top: 35px;
  margin-bottom: -35px;
}

@media (max-width: 991px) {
  section.tabs-section .container .tabs-section-wrapper .tabs-wrapper .tab-wrapper .tab-media {
    margin-top: 0;
    margin-bottom: 0;
  }
}

@media (max-width: 991px) {
  section.tabs-section .container .tabs-section-wrapper .tabs-wrapper .tab-wrapper .tab-media.image {
    max-height: 350px;
  }
}

section.tabs-section .container .tabs-section-wrapper .tabs-wrapper .tab-wrapper .tab-media.image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

section.tabs-section .container .tabs-section-wrapper .tabs-wrapper .tab-wrapper .tab-media.video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

section.tabs-section .container .tabs-section-wrapper .tabs-wrapper .tab-wrapper .tab-media.embed {
  position: relative;
  width: 100%;
  height: 100%;
  padding-bottom: 56.25%;
}

section.tabs-section .container .tabs-section-wrapper .tabs-wrapper .tab-wrapper .tab-media.embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  /* Removes the border around the iframe */
}

section.news-section {
  overflow: hidden;
}

section.news-section .container {
  padding-top: 55px;
  padding-bottom: 55px;
}

section.news-section .container .section-content-wrapper {
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

section.news-section .container .news-section-wrapper .posts-list.news-slider {
  display: block;
}

section.news-section .container .news-section-wrapper .posts-list.news-slider .slick-list {
  overflow: visible;
  margin: 0 -15px;
}

section.news-section .container .news-section-wrapper .posts-list.news-slider .slick-list .slick-track {
  display: -ms-flexbox;
  display: flex;
}

section.news-section .container .news-section-wrapper .posts-list.news-slider .slick-list .slick-slide {
  height: inherit !important;
  margin: 0 15px;
}

section.news-section .container .news-section-wrapper .slider-nav-holder {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 0;
  width: 100%;
  height: 40px;
  margin: 30px 0 0;
}

section.news-section .container .news-section-wrapper .slider-nav-holder .slick-arrow {
  position: absolute;
  top: 0;
}

section.news-section .container .news-section-wrapper .slider-nav-holder .slick-arrow.slick-prev {
  right: 50px;
}

section.news-section .container .news-section-wrapper .slider-nav-holder .slick-arrow.slick-next {
  right: 0;
}

section.news-section .container .news-section-wrapper .slider-nav-holder .slick-dots {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
}

section.news-section .container .news-section-wrapper .slider-nav-holder .slick-dots li {
  width: 9px;
  height: 9px;
  border: 1px solid #E0E4ED;
  background-color: transparent;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

section.news-section .container .news-section-wrapper .slider-nav-holder .slick-dots li:before {
  content: none;
}

section.news-section .container .news-section-wrapper .slider-nav-holder .slick-dots li button {
  display: none;
}

section.news-section .container .news-section-wrapper .slider-nav-holder .slick-dots li.slick-active {
  border: 1px solid #EC6523;
  background-color: #EC6523;
}

section.history-section {
  overflow: hidden;
}

section.history-section .container .history-section-wrapper .section-content-wrapper {
  max-width: 750px;
  margin: 0 auto 50px;
}

section.history-section .container .history-section-wrapper .history-slider .slick-list {
  overflow: hidden;
  margin: 0 -30px;
}

@media (max-width: 767px) {
  section.history-section .container .history-section-wrapper .history-slider .slick-list {
    margin: 0 -10px;
  }
}

section.history-section .container .history-section-wrapper .history-slider .slick-list .slick-track {
  display: -ms-flexbox;
  display: flex;
  padding-top: 24px;
}

section.history-section .container .history-section-wrapper .history-slider .slick-list .slick-slide {
  position: relative;
  cursor: pointer;
  margin: 0 15px;
  max-width: 415px;
  opacity: 0.15;
  transition: all 0.3s ease-in-out;
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  height: -webkit-fit-content !important;
  height: -moz-fit-content !important;
  height: fit-content !important;
}

section.history-section .container .history-section-wrapper .history-slider .slick-list .slick-slide:not(.slick-current) {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}

@media (max-width: 767px) {
  section.history-section .container .history-section-wrapper .history-slider .slick-list .slick-slide {
    max-width: 300px;
    width: 300px;
    margin: 0;
  }
}

section.history-section .container .history-section-wrapper .history-slider .slick-list .slick-slide .image-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  transition: all 0.3s ease-in-out;
}

section.history-section .container .history-section-wrapper .history-slider .slick-list .slick-slide .image-wrapper .open-fancy {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

@media (max-width: 767px) {
  section.history-section .container .history-section-wrapper .history-slider .slick-list .slick-slide .image-wrapper {
    height: 250px;
    margin-top: 0;
  }
}

section.history-section .container .history-section-wrapper .history-slider .slick-list .slick-slide .image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}

section.history-section .container .history-section-wrapper .history-slider .slick-list .slick-slide .image-wrapper .year-wrapper {
  position: absolute;
  right: 20px;
  bottom: -20px;
}

section.history-section .container .history-section-wrapper .history-slider .slick-list .slick-slide .image-wrapper .year-wrapper span {
  font-family: "ivypresto-display", sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 100%;
}

section.history-section .container .history-section-wrapper .history-slider .slick-list .slick-slide .content-wrapper {
  padding: 20px;
  transition: all 0.3s ease-in-out;
}

section.history-section .container .history-section-wrapper .history-slider .slick-list .slick-slide .content-wrapper h3 {
  font-weight: 600;
}

section.history-section .container .history-section-wrapper .history-slider .slick-list .slick-slide .content-wrapper .content-description {
  margin-top: 15px;
}

section.history-section .container .history-section-wrapper .history-slider .slick-list .slick-slide.logo {
  width: 415px;
  min-height: 350px;
}

@media (max-width: 767px) {
  section.history-section .container .history-section-wrapper .history-slider .slick-list .slick-slide.logo {
    width: 300px;
  }
}

section.history-section .container .history-section-wrapper .history-slider .slick-list .slick-slide.logo .image-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 250px;
}

section.history-section .container .history-section-wrapper .history-slider .slick-list .slick-slide.slick-current {
  opacity: 1;
  -webkit-transform: translateY(-24px);
  transform: translateY(-24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 767px) {
  section.history-section .container .history-section-wrapper .history-slider .slick-list .slick-slide.slick-current {
    max-width: 300px;
    width: 300px;
  }
}

section.history-section .container .history-section-wrapper .history-slider .slick-list .slick-slide.slick-current .image-wrapper {
  width: 100%;
}

section.history-section .container .history-section-wrapper .history-slider .slick-list .slick-slide.slick-current .image-wrapper .open-fancy {
  display: block;
}

section.history-section .container .history-section-wrapper .history-slider .slick-list .slick-slide.slick-current .content-wrapper {
  transition: all 0.3s ease-in-out;
}

section.history-section .container .history-section-wrapper .history-slider .slick-list .slick-slide.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 15px;
}

@media (max-width: 767px) {
  section.history-section .container .history-section-wrapper .history-slider .slick-list .slick-slide.two-cols {
    grid-template-columns: 1fr;
  }
}

section.history-section .container .history-section-wrapper .history-slider .slick-list .slick-slide.two-cols .image-wrapper {
  position: relative;
  width: 100%;
  height: 350px;
  transition: all 0.3s ease-in-out;
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  section.history-section .container .history-section-wrapper .history-slider .slick-list .slick-slide.two-cols .image-wrapper {
    height: 250px;
    margin-top: 0;
  }
}

section.history-section .container .history-section-wrapper .history-slider .slick-list .slick-slide.two-cols .content-wrapper {
  padding: 0;
  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;
  transition: all 0.3s ease-in-out;
  margin-bottom: 15px;
}

section.history-section .container .history-section-wrapper .history-slider .slick-list .slick-slide.two-cols .content-wrapper .year-wrapper span {
  font-family: "ivypresto-display", sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 100%;
}

section.history-section .container .history-section-wrapper .history-slider .slick-list .slick-slide.two-cols .content-wrapper h3 {
  font-weight: 600;
}

section.history-section .container .history-section-wrapper .history-slider .slick-list .slick-slide.two-cols .content-wrapper .content-description {
  margin-top: 15px;
}

section.history-section .container .history-section-wrapper .history-slider .slick-list .slick-slide.two-cols .content-wrapper .content-description p {
  text-align: center;
}

@media (max-width: 550px) {
  section.history-section .container .history-section-wrapper .history-slider .slick-list .slick-slide .image-wrapper {
    height: 250px;
  }
}

section.history-section .container .history-section-wrapper .slider-nav-holder {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 50px;
  margin-top: 30px;
  padding: 0 55px;
  overflow: hidden;
  min-height: 50px;
}

@media (max-width: 991px) {
  section.history-section .container .history-section-wrapper .slider-nav-holder {
    padding: 0;
    height: 50px;
  }
}

section.history-section .container .history-section-wrapper .slider-nav-holder:before,
section.history-section .container .history-section-wrapper .slider-nav-holder:after {
  content: "";
  display: block;
  width: 45px;
  height: 100%;
  position: absolute;
  top: 0;
  background-color: #12213B;
  z-index: 9;
}

section.history-section .container .history-section-wrapper .slider-nav-holder:before {
  left: 0;
}

@media (max-width: 991px) {
  section.history-section .container .history-section-wrapper .slider-nav-holder:before {
    content: none;
  }
}

section.history-section .container .history-section-wrapper .slider-nav-holder:after {
  right: 0;
}

section.history-section .container .history-section-wrapper .slider-nav-holder .slick-arrow {
  position: absolute;
  top: 0;
  z-index: 10;
}

@media (max-width: 991px) {
  section.history-section .container .history-section-wrapper .slider-nav-holder .slick-arrow {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

section.history-section .container .history-section-wrapper .slider-nav-holder .slick-arrow.slick-prev {
  left: 0;
}

@media (max-width: 991px) {
  section.history-section .container .history-section-wrapper .slider-nav-holder .slick-arrow.slick-prev {
    left: 0;
  }
}

section.history-section .container .history-section-wrapper .slider-nav-holder .slick-arrow.slick-next {
  right: 0;
}

section.history-section .container .history-section-wrapper .slider-nav-holder .pagination {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 80px;
  -moz-column-gap: 80px;
  column-gap: 80px;
  row-gap: 15px;
  width: 100%;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 991px) {
  section.history-section .container .history-section-wrapper .slider-nav-holder .pagination {
    width: 85px;
    gap: 0;
    margin: 0 -15px;
  }

  section.history-section .container .history-section-wrapper .slider-nav-holder .pagination:before,
  section.history-section .container .history-section-wrapper .slider-nav-holder .pagination:after {
    display: block;
    position: absolute;
    top: 0;
    width: 40px;
    height: 50px;
    background-color: #12213B;
  }

  section.history-section .container .history-section-wrapper .slider-nav-holder .pagination:after {
    left: -75px;
  }

  section.history-section .container .history-section-wrapper .slider-nav-holder .pagination:before {
    right: -40px;
  }
}

section.history-section .container .history-section-wrapper .slider-nav-holder .pagination .custom-dot {
  position: relative;
  z-index: 5;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 16px;
  cursor: pointer;
  min-width: 55px;
}

@media (max-width: 991px) {
  section.history-section .container .history-section-wrapper .slider-nav-holder .pagination .custom-dot {
    margin: 0 15px;
    height: 50px;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

section.history-section .container .history-section-wrapper .slider-nav-holder .pagination .custom-dot:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 20px;
  width: calc(100% + 80px);
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
}

@media (max-width: 991px) {
  section.history-section .container .history-section-wrapper .slider-nav-holder .pagination .custom-dot:after {
    width: calc(100% + 30px);
    top: 10px;
    left: 30px;
  }
}

section.history-section .container .history-section-wrapper .slider-nav-holder .pagination .custom-dot:first-of-type:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 6px;
  z-index: -1;
}

@media (max-width: 991px) {
  section.history-section .container .history-section-wrapper .slider-nav-holder .pagination .custom-dot:first-of-type:before {
    top: 10px;
  }
}

section.history-section .container .history-section-wrapper .slider-nav-holder .pagination .custom-dot:last-of-type:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 6px;
  z-index: -1;
}

@media (max-width: 991px) {
  section.history-section .container .history-section-wrapper .slider-nav-holder .pagination .custom-dot:last-of-type:before {
    top: 10px;
  }
}

section.history-section .container .history-section-wrapper .slider-nav-holder .pagination .custom-dot:last-of-type:after {
  content: none;
}

section.history-section .container .history-section-wrapper .slider-nav-holder .pagination .custom-dot .dot-number-wrapper {
  width: 3px;
  height: 3px;
  background-color: #EC6523;
  transition: all 0.2s ease-in-out;
}

section.history-section .container .history-section-wrapper .slider-nav-holder .pagination .custom-dot .dot-title {
  margin-top: 5px;
  display: block;
  font-family: "ivypresto-display", sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 100%;
  opacity: 0.32;
  transition: all 0.2s ease-in-out;
}

section.history-section .container .history-section-wrapper .slider-nav-holder .pagination .custom-dot.active .dot-number-wrapper {
  -webkit-transform: scale(2);
  transform: scale(2);
}

section.history-section .container .history-section-wrapper .slider-nav-holder .pagination .custom-dot.active .dot-title {
  opacity: 1;
}

section.history-section.dark-section .container .history-section-wrapper .history-slider .slick-list .slick-slide .image-wrapper .year-wrapper span {
  color: #fff;
}

section.history-section.dark-section .container .history-section-wrapper .history-slider .slick-list .slick-slide .content-wrapper .year-wrapper span {
  color: #fff;
}

section.history-section.dark-section .container .history-section-wrapper .history-slider .slick-list .slick-slide .content-wrapper h3 {
  color: #fff;
}

section.history-section.dark-section .container .history-section-wrapper .history-slider .slick-list .slick-slide .content-wrapper p {
  color: #fff;
}

section.history-section.dark-section .container .history-section-wrapper .slider-nav-holder .pagination .custom-dot .dot-title {
  color: #fff;
}

section.history-section.bg-white .pagination .custom-dot:first-of-type:before {
  background-color: #fff;
}

section.history-section.bg-white .pagination .custom-dot:last-of-type:before {
  background-color: #fff;
}

section.history-section.bg-light-orange .pagination .custom-dot:first-of-type:before {
  background-color: #FFF5EE;
}

section.history-section.bg-light-orange .pagination .custom-dot:last-of-type:before {
  background-color: #FFF5EE;
}

section.history-section.bg-light-blue .pagination .custom-dot:first-of-type:before {
  background-color: #F3F5F9;
}

section.history-section.bg-light-blue .pagination .custom-dot:last-of-type:before {
  background-color: #F3F5F9;
}

section.history-section.bg-dark-blue .slider-nav-holder .pagination .custom-dot:first-of-type:before {
  background-color: #12213B;
}

section.history-section.bg-dark-blue .slider-nav-holder .pagination .custom-dot:last-of-type:before {
  background-color: #12213B;
}

section.history-part-section {
  overflow: visible;
}

section.history-part-section .container {
  position: relative;
}

section.history-part-section .container .section-content-wrapper h2 {
  max-width: 630px;
  margin-left: auto;
  margin-right: auto;
}

section.history-part-section .container .section-content-wrapper .section-description {
  position: relative;
  max-width: 865px;
  margin-left: auto;
  margin-right: auto;
}

section.history-part-section .container .history-part-section-wrapper {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 1175px) {
  section.history-part-section .container .history-part-section-wrapper {
    gap: 80px;
  }
}

@media (max-width: 991px) {
  section.history-part-section .container .history-part-section-wrapper {
    gap: 30px;
  }
}

@media (max-width: 767px) {
  section.history-part-section .container .history-part-section-wrapper {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

section.history-part-section .container .history-part-section-wrapper .tabs-years-wrapper {
  position: -webkit-sticky;
  position: sticky;
  top: 50px;
  left: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
  z-index: 5;
  width: 185px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 767px) {
  section.history-part-section .container .history-part-section-wrapper .tabs-years-wrapper {
    margin-top: 0;
    width: 100%;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    top: 0;
    display: none;
  }
}

section.history-part-section .container .history-part-section-wrapper .tabs-years-wrapper:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 1px;
  width: 1px;
  height: 100%;
  background: #12213B;
  z-index: 0;
}

@media (max-width: 767px) {
  section.history-part-section .container .history-part-section-wrapper .tabs-years-wrapper:before {
    content: none;
  }
}

section.history-part-section .container .history-part-section-wrapper .tabs-years-wrapper .tab-year {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  cursor: pointer;
}

@media (max-width: 767px) {
  section.history-part-section .container .history-part-section-wrapper .tabs-years-wrapper .tab-year {
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }
}

section.history-part-section .container .history-part-section-wrapper .tabs-years-wrapper .tab-year:first-of-type:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 10px;
  z-index: 3;
}

@media (max-width: 767px) {
  section.history-part-section .container .history-part-section-wrapper .tabs-years-wrapper .tab-year:first-of-type:after {
    content: none;
  }
}

section.history-part-section .container .history-part-section-wrapper .tabs-years-wrapper .tab-year:last-of-type:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 5px;
  height: 10px;
  z-index: 3;
}

@media (max-width: 767px) {
  section.history-part-section .container .history-part-section-wrapper .tabs-years-wrapper .tab-year:last-of-type:after {
    content: none;
  }
}

section.history-part-section .container .history-part-section-wrapper .tabs-years-wrapper .tab-year:before {
  position: relative;
  z-index: 5;
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  background-color: #EC6523;
  transition: all 0.2s ease-in-out;
}

section.history-part-section .container .history-part-section-wrapper .tabs-years-wrapper .tab-year span {
  display: block;
  color: #12213B;
  font-family: "ivypresto-display", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 100%;
  transition: all 0.3s ease-in-out;
}

section.history-part-section .container .history-part-section-wrapper .tabs-years-wrapper .tab-year.active:before {
  width: 7px;
  height: 7px;
  margin-left: -2px;
}

section.history-part-section .container .history-part-section-wrapper .tabs-years-wrapper .tab-year.active span {
  margin-left: -2px;
  font-weight: 600;
}

section.history-part-section .container .history-part-section-wrapper .tabs-wrapper {
  width: 970px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 120px;
}

@media (max-width: 1175px) {
  section.history-part-section .container .history-part-section-wrapper .tabs-wrapper {
    width: calc(100% - 280px);
  }
}

@media (max-width: 991px) {
  section.history-part-section .container .history-part-section-wrapper .tabs-wrapper {
    width: calc(100% - 130px);
  }
}

@media (max-width: 767px) {
  section.history-part-section .container .history-part-section-wrapper .tabs-wrapper {
    width: 100%;
  }
}

section.history-part-section .container .history-part-section-wrapper .tabs-wrapper .tab-wrapper {
  width: 100%;
  max-width: 865px;
  position: relative;
  -webkit-transform: scale(0.8) translateY(0%);
  transform: scale(0.8) translateY(0%);
  -webkit-transform-origin: top center;
  transform-origin: top center;
  margin-left: auto;
  transition: all 0.65s ease-in-out;
  opacity: 0.15;
}

section.history-part-section .container .history-part-section-wrapper .tabs-wrapper .tab-wrapper.is-in-view {
  opacity: 1;
  -webkit-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
}

section.history-part-section .container .history-part-section-wrapper .tabs-wrapper .tab-wrapper .tab-image {
  position: relative;
  width: 100%;
  max-height: 520px;
  max-width: 865px;
  aspect-ratio: 5/3;
  margin-bottom: 60px;
}

@media (max-width: 991px) {
  section.history-part-section .container .history-part-section-wrapper .tabs-wrapper .tab-wrapper .tab-image {
    max-width: 100%;
    margin-bottom: 10px;
  }
}

section.history-part-section .container .history-part-section-wrapper .tabs-wrapper .tab-wrapper .tab-image img {
  width: 100%;
  aspect-ratio: 5/3;
  -o-object-fit: cover;
  object-fit: cover;
}

section.history-part-section .container .history-part-section-wrapper .tabs-wrapper .tab-wrapper .tab-image .year-wrapper {
  position: absolute;
  right: 60px;
  bottom: -25px;
}

@media (max-width: 991px) {
  section.history-part-section .container .history-part-section-wrapper .tabs-wrapper .tab-wrapper .tab-image .year-wrapper {
    right: 10px;
    bottom: -25px;
  }
}

section.history-part-section .container .history-part-section-wrapper .tabs-wrapper .tab-wrapper .tab-image .year-wrapper span {
  font-family: "ivypresto-display", sans-serif;
  font-size: 68px;
  font-weight: 600;
  line-height: 100%;
}

@media (max-width: 991px) {
  section.history-part-section .container .history-part-section-wrapper .tabs-wrapper .tab-wrapper .tab-image .year-wrapper span {
    font-size: 48px;
  }
}

section.history-part-section .container .history-part-section-wrapper .tabs-wrapper .tab-wrapper .tab-image .tab-image-caption {
  margin-top: 10px;
  width: 80%;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
}

@media (max-width: 991px) {
  section.history-part-section .container .history-part-section-wrapper .tabs-wrapper .tab-wrapper .tab-image .tab-image-caption {
    width: 75%;
  }
}

@media (max-width: 450px) {
  section.history-part-section .container .history-part-section-wrapper .tabs-wrapper .tab-wrapper .tab-image .tab-image-caption {
    width: 65%;
  }
}

section.history-part-section .container .history-part-section-wrapper .tabs-wrapper .tab-wrapper .tab-image .tab-image-caption:before {
  content: "";
  display: block;
  width: 4px;
  height: 14px;
  background-size: 4px 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/title-bar-orange.svg);
  transition: all 0.3s ease-in-out;
  margin-bottom: 4px;
}

section.history-part-section .container .history-part-section-wrapper .tabs-wrapper .tab-wrapper .tab-image .tab-image-caption span {
  display: block;
  font-size: 16px;
  font-weight: 300;
  line-height: 100%;
  text-transform: uppercase;
  opacity: 0.75;
}

section.history-part-section .container .history-part-section-wrapper .tabs-wrapper .tab-wrapper .image-wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

section.history-part-section .container .history-part-section-wrapper .tabs-wrapper .tab-wrapper .tab-content-wrapper .year-wrapper {
  display: none;
}

section.history-part-section .container .history-part-section-wrapper .tabs-wrapper .tab-wrapper .tab-content-wrapper .tab-title h3 {
  font-size: 40px;
  font-weight: 600;
  line-height: 100%;
}

@media (max-width: 767px) {
  section.history-part-section .container .history-part-section-wrapper .tabs-wrapper .tab-wrapper .tab-content-wrapper .tab-title h3 {
    font-size: 35px;
  }
}

section.history-part-section .container .history-part-section-wrapper .tabs-wrapper .tab-wrapper .tab-content-wrapper .tab-description {
  margin-top: 30px;
}

section.history-part-section .container .history-part-section-wrapper .tabs-wrapper .tab-wrapper .tab-content-wrapper .tab-description p {
  margin-bottom: 20px;
}

section.history-part-section .container .history-part-section-wrapper .tabs-wrapper .tab-wrapper .tab-content-wrapper .tab-description p:last-of-type {
  margin-bottom: 0;
}

section.history-part-section .container .history-part-section-wrapper .tabs-wrapper .tab-wrapper .tab-content-wrapper .read-more {
  display: block;
  margin-top: 5px;
}

section.history-part-section .container .history-part-section-wrapper .tabs-wrapper .tab-wrapper.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

@media (max-width: 991px) {
  section.history-part-section .container .history-part-section-wrapper .tabs-wrapper .tab-wrapper.two-cols {
    grid-template-columns: 1fr;
  }
}

section.history-part-section .container .history-part-section-wrapper .tabs-wrapper .tab-wrapper.two-cols .tab-image {
  min-height: 550px;
  aspect-ratio: unset;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  section.history-part-section .container .history-part-section-wrapper .tabs-wrapper .tab-wrapper.two-cols .tab-image {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 0;
    min-height: unset;
    height: 100%;
    width: 100%;
    max-width: 100%;
  }
}

section.history-part-section .container .history-part-section-wrapper .tabs-wrapper .tab-wrapper.two-cols .tab-image img {
  aspect-ratio: unset;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}

@media (max-width: 767px) {
  section.history-part-section .container .history-part-section-wrapper .tabs-wrapper .tab-wrapper.two-cols .tab-image img {
    -o-object-fit: contain;
    object-fit: contain;
    height: auto;
    width: 100%;
    margin: 0 auto;
    max-height: 300px;
  }
}

section.history-part-section .container .history-part-section-wrapper .tabs-wrapper .tab-wrapper.two-cols .tab-image .year-wrapper {
  display: none;
}

@media (max-width: 767px) {
  section.history-part-section .container .history-part-section-wrapper .tabs-wrapper .tab-wrapper.two-cols .tab-image .year-wrapper {
    display: block;
  }
}

@media (max-width: 991px) {
  section.history-part-section .container .history-part-section-wrapper .tabs-wrapper .tab-wrapper.two-cols .tab-image-caption {
    width: 75%;
  }
}

@media (max-width: 450px) {
  section.history-part-section .container .history-part-section-wrapper .tabs-wrapper .tab-wrapper.two-cols .tab-image-caption {
    width: 65%;
  }
}

section.history-part-section .container .history-part-section-wrapper .tabs-wrapper .tab-wrapper.two-cols .tab-content-wrapper {
  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;
}

section.history-part-section .container .history-part-section-wrapper .tabs-wrapper .tab-wrapper.two-cols .tab-content-wrapper .tab-title {
  text-align: left;
}

section.history-part-section .container .history-part-section-wrapper .tabs-wrapper .tab-wrapper.two-cols .tab-content-wrapper .year-wrapper {
  display: block;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  section.history-part-section .container .history-part-section-wrapper .tabs-wrapper .tab-wrapper.two-cols .tab-content-wrapper .year-wrapper {
    display: none;
  }
}

section.history-part-section .container .history-part-section-wrapper .tabs-wrapper .tab-wrapper.two-cols .tab-content-wrapper .year-wrapper span {
  font-family: "ivypresto-display", sans-serif;
  font-size: 68px;
  font-weight: 600;
  line-height: 100%;
}

@media (max-width: 767px) {
  section.history-part-section .container .history-part-section-wrapper .tabs-wrapper .tab-wrapper.two-cols .tab-content-wrapper .year-wrapper span {
    font-size: 36px;
  }
}

section.history-part-section .container .history-part-section-wrapper .tabs-wrapper .tab-wrapper.two-cols .tab-content-wrapper .tab-description {
  margin-top: 25px;
}

section.history-part-section .container .history-part-section-wrapper .tabs-wrapper .tab-wrapper.two-cols .tab-content-wrapper .tab-description p {
  text-align: left;
}

section.history-part-section.bg-white .section-content-wrapper {
  background-color: #fff;
}

section.history-part-section.bg-white .history-part-section-wrapper .tabs-years-wrapper .tab-year:first-of-type:after {
  background-color: #fff;
}

section.history-part-section.bg-white .history-part-section-wrapper .tabs-years-wrapper .tab-year:last-of-type:after {
  background-color: #fff;
}

section.history-part-section.bg-white .history-part-section-wrapper .tabs-wrapper .tab-wrapper .tab-top-cover,
section.history-part-section.bg-white .history-part-section-wrapper .tabs-wrapper .tab-wrapper .tab-bottom-cover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0.15%, #fff 21.92%);
}

section.history-part-section.bg-light-orange .section-content-wrapper {
  background-color: #FFF5EE;
}

section.history-part-section.bg-light-orange .history-part-section-wrapper .tabs-years-wrapper .tab-year:first-of-type:after {
  background-color: #FFF5EE;
}

section.history-part-section.bg-light-orange .history-part-section-wrapper .tabs-years-wrapper .tab-year:last-of-type:after {
  background-color: #FFF5EE;
}

section.history-part-section.bg-light-orange .history-part-section-wrapper .tabs-wrapper .tab-wrapper .tab-top-cover,
section.history-part-section.bg-light-orange .history-part-section-wrapper .tabs-wrapper .tab-wrapper .tab-bottom-cover {
  background: linear-gradient(180deg, rgba(255, 245, 238, 0.85) 0.15%, #FFF5EE 21.92%);
}

section.history-part-section.bg-light-blue .section-content-wrapper {
  background-color: #F3F5F9;
}

section.history-part-section.bg-light-blue .history-part-section-wrapper .tabs-years-wrapper .tab-year:first-of-type:after {
  background-color: #F3F5F9;
}

section.history-part-section.bg-light-blue .history-part-section-wrapper .tabs-years-wrapper .tab-year:last-of-type:after {
  background-color: #F3F5F9;
}

section.history-part-section.bg-light-blue .history-part-section-wrapper .tabs-wrapper .tab-wrapper .tab-top-cover,
section.history-part-section.bg-light-blue .history-part-section-wrapper .tabs-wrapper .tab-wrapper .tab-bottom-cover {
  background: linear-gradient(180deg, rgba(243, 245, 249, 0.85) 0.15%, #F3F5F9 21.92%);
}

section.history-part-section.bg-dark-blue .section-content-wrapper {
  background-color: #12213B;
}

section.history-part-section.bg-dark-blue .history-part-section-wrapper .tabs-years-wrapper:before {
  background: #fff;
  opacity: 0.5;
}

@media (max-width: 767px) {
  section.history-part-section.bg-dark-blue .history-part-section-wrapper .tabs-years-wrapper:before {
    content: none;
  }
}

section.history-part-section.bg-dark-blue .history-part-section-wrapper .tabs-years-wrapper .tab-year:first-of-type:after {
  background-color: #12213B;
}

section.history-part-section.bg-dark-blue .history-part-section-wrapper .tabs-years-wrapper .tab-year:last-of-type:after {
  background-color: #12213B;
}

section.history-part-section.bg-dark-blue .history-part-section-wrapper .tabs-years-wrapper .tab-year span {
  color: #fff;
}

section.history-part-section.bg-dark-blue .history-part-section-wrapper .tabs-wrapper .tab-wrapper .tab-image .year-wrapper span {
  color: #fff;
}

section.history-part-section.bg-dark-blue .history-part-section-wrapper .tabs-wrapper .tab-wrapper .tab-image-caption span {
  color: #fff;
}

section.history-part-section.bg-dark-blue .history-part-section-wrapper .tabs-wrapper .tab-wrapper .year-wrapper span {
  color: #fff;
}

section.history-part-section.bg-dark-blue .history-part-section-wrapper .tabs-wrapper .tab-wrapper .tab-title h3 {
  color: #fff;
}

section.history-part-section.bg-dark-blue .history-part-section-wrapper .tabs-wrapper .tab-wrapper .tab-description p {
  color: #fff;
}

section.history-part-section.bg-dark-blue .history-part-section-wrapper .tabs-wrapper .tab-wrapper .tab-top-cover,
section.history-part-section.bg-dark-blue .history-part-section-wrapper .tabs-wrapper .tab-wrapper .tab-bottom-cover {
  background: linear-gradient(180deg, rgba(18, 33, 59, 0.85) 0.15%, #12213B 21.92%);
}

section.form-section {
  overflow: hidden;
}

section.form-section .container .form-section-wrapper {
  display: grid;
  grid-template-columns: 1fr;
}

section.form-section .container .form-section-wrapper.two-cols {
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

@media (max-width: 991px) {
  section.form-section .container .form-section-wrapper.two-cols {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

section.form-section .container .form-section-wrapper .section-content-wrapper {
  margin-bottom: 0;
  max-width: 525px;
}

@media (max-width: 991px) {
  section.form-section .container .form-section-wrapper .section-content-wrapper {
    max-width: unset;
  }
}

@media (max-width: 767px) {
  section.form-section .container .form-section-wrapper .section-content-wrapper.mobile-disable {
    display: none;
  }
}

section.form-section .container .form-section-wrapper .section-content-wrapper .section-title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
}

section.form-section .container .form-section-wrapper .section-content-wrapper .section-title h2 {
  font-size: 40px;
}

@media (max-width: 450px) {
  section.form-section .container .form-section-wrapper .section-content-wrapper .section-title h2 {
    font-size: 30px;
  }
}

section.form-section .container .form-section-wrapper .section-content-wrapper .section-title span img {
  max-height: 40px;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

section.form-section .container .form-section-wrapper .section-content-wrapper .list-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  margin-top: 35px;
}

@media (max-width: 991px) {
  section.form-section .container .form-section-wrapper .section-content-wrapper .list-wrapper {
    margin-top: 15px;
  }
}

section.form-section .container .form-section-wrapper .section-content-wrapper .list-wrapper .list-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}

section.form-section .container .form-section-wrapper .section-content-wrapper .list-wrapper .list-item span {
  font-size: 19px;
  font-weight: 400;
  color: #2A364D;
}

@media (max-width: 767px) {
  section.form-section .container .form-section-wrapper .section-content-wrapper .list-wrapper .list-item span {
    font-size: 16px;
  }
}

section.form-section .container .form-section-wrapper .section-content-wrapper .list-wrapper .list-item:before {
  content: "";
  display: block;
  width: 14px;
  height: 17px;
  background-size: 14px 17px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-checks.svg);
}

section.form-section .container .form-section-wrapper .form-section-form .form-content {
  margin-bottom: 45px;
}

section.form-section .container .form-section-wrapper .form-section-form .form-content.agenda {
  padding-left: 16px;
}

@media (max-width: 767px) {
  section.form-section .container .form-section-wrapper .form-section-form .form-content.agenda {
    padding-left: 0;
  }
}

section.form-section .container .form-section-wrapper .form-agenda-wrapper {
  display: grid;
  grid-template-columns: auto 1fr;
}

section.form-section .container .form-section-wrapper .form-agenda-wrapper .agenda-wrapper {
  gap: 30px;
  padding: 25px 15px;
  border-bottom: 2px solid rgba(18, 33, 59, 0.2);
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: subgrid;
  -ms-flex-align: start;
  align-items: start;
}

@media (max-width: 767px) {
  section.form-section .container .form-section-wrapper .form-agenda-wrapper .agenda-wrapper {
    -ms-flex-direction: column;
    flex-direction: column;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 767px) {
  section.form-section .container .form-section-wrapper .form-agenda-wrapper .agenda-wrapper .agenda-dates {
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
  }
}

section.form-section .container .form-section-wrapper .form-agenda-wrapper .agenda-wrapper .agenda-location .location-title {
  color: #12213B;
  font-family: "ivypresto-display", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 156%;
}

@media (max-width: 650px) {
  section.form-section .container .form-section-wrapper .form-agenda-wrapper .agenda-wrapper .agenda-location .location-title {
    font-size: 20px;
  }
}

section.form-section .container .form-section-wrapper .form-agenda-wrapper .agenda-wrapper .agenda-location .location-address {
  color: #12213B;
  font-family: Hind, sans-serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 156%;
}

@media (max-width: 650px) {
  section.form-section .container .form-section-wrapper .form-agenda-wrapper .agenda-wrapper .agenda-location .location-address {
    font-size: 16px;
  }
}

section.form-section .container .form-section-wrapper .form-agenda-wrapper .agenda-wrapper:first-of-type {
  border-top: 2px solid rgba(18, 33, 59, 0.2);
}

section.form-section .container .form-section-wrapper .form-agenda-wrapper .agenda-wrapper .button-wrapper {
  margin-top: 8px;
}

section.form-section .container .form-section-wrapper .form-agenda-wrapper .agenda-message {
  padding: 10px 18px;
  grid-column: 1/-1;
}

section.form-section.dark-section .container .form-section-wrapper .form-agenda-wrapper .agenda-wrapper .agenda-dates span {
  color: #fff;
}

section.form-section.dark-section .container .form-section-wrapper .form-agenda-wrapper .agenda-wrapper .agenda-location .location-title {
  color: #fff;
}

section.form-section.dark-section .container .form-section-wrapper .form-agenda-wrapper .agenda-wrapper .agenda-location .location-address {
  color: #fff;
}

section.form-section.dark-section .container .form-section-wrapper .form-agenda-wrapper .agenda-wrapper:first-of-type {
  border-top: 2px solid #fff;
}

section.form-section.dark-section .container .form-section-wrapper .form-agenda-wrapper .agenda-message p {
  color: #fff;
}

section.default-text-section {
  overflow: hidden;
}

section.default-text-section .container .section-content-wrapper {
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  section.default-text-section .container .content-row .content-column.col-order-1 {
    -ms-flex-order: 1;
    order: 1;
  }

  section.default-text-section .container .content-row .content-column.col-order-2 {
    -ms-flex-order: 2;
    order: 2;
  }

  section.default-text-section .container .content-row .content-column.col-order-3 {
    -ms-flex-order: 3;
    order: 3;
  }

  section.default-text-section .container .content-row .content-column.col-order-4 {
    -ms-flex-order: 4;
    order: 4;
  }

  section.default-text-section .container .content-row .content-column.col-order-5 {
    -ms-flex-order: 5;
    order: 5;
  }
}

section.default-text-section .container .content-row .column-content-wrapper .section-subtitle {
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 300;
  line-height: 100%;
  text-transform: uppercase;
}

section.default-text-section .container .content-row .column-content-wrapper .section-subtitle:before {
  content: "";
  display: block;
  width: 4px;
  height: 14px;
  background-size: 4px 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/title-bar-orange.svg);
  transition: all 0.3s ease-in-out;
  margin-bottom: 4px;
}

section.default-text-section .container .content-row .column-content-wrapper .section-title {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 700;
}

section.default-text-section .container .content-row .section-description {
  margin-bottom: 35px;
}

section.default-text-section.dark-section .content-row .section-description p,
section.default-text-section.dark-section .content-row .section-description li {
  color: #fff;
}

section.default-text-section.dark-section .content-row .section-description > *:not(:last-child) {
  margin-bottom: 20px;
}

.thank-you-section .container {
  padding-top: 50px !important;
  padding-bottom: 0px !important;
}

.thank-you-section .thank-you-wrapper {
  display: grid;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 5px;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 767px) {
  .thank-you-section .thank-you-wrapper {
    grid-template-columns: 1fr;
  }
}

.thank-you-section .thank-you-wrapper br {
  display: none !important;
}

.thank-you-section .thank-you-wrapper .section-content-wrapper {
  margin-bottom: 0;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
}

.thank-you-section .thank-you-wrapper .section-content-wrapper .section-title {
  font-size: 40px;
  font-weight: 600;
  line-height: 108%;
}

.thank-you-section .thank-you-wrapper .section-content-wrapper .section-description {
  margin-top: 25px;
}

.thank-you-section .thank-you-wrapper .section-content-wrapper .section-description strong {
  color: #EC6523;
}

.thank-you-section .thank-you-wrapper .section-content-wrapper .button-wrapper {
  margin-bottom: 20px;
}

.thank-you-section .thank-you-wrapper .section-content-wrapper .button-wrapper .btn {
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -ms-flex-align: center;
  align-items: center;
}

.thank-you-section .thank-you-wrapper .section-content-wrapper .button-wrapper .btn .countdown {
  width: 18px;
}

.thank-you-section .thank-you-wrapper .thank-you-image {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
  align-items: flex-end;
  -ms-flex-pack: center;
  justify-content: center;
}

.thank-you-section .thank-you-wrapper .thank-you-image .img-wrapper {
  height: 295px;
  width: 205px;
}

.thank-you-section .thank-you-wrapper .thank-you-image .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-position: top;
  object-position: top;
  -o-object-fit: contain;
  object-fit: contain;
}

.thank-you-section .thank-you-wrapper .thank-you-image .thank-you-person {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 10px;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-bottom: 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.thank-you-section .thank-you-wrapper .thank-you-image .thank-you-person:before {
  content: "";
  display: block;
  width: 7px;
  height: 28px;
  background-size: 7px 28px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/title-bar-orange-big.svg);
}

.thank-you-section .thank-you-wrapper .thank-you-image .thank-you-person h4 {
  font-size: 17px;
}

.thank-you-section .thank-you-wrapper .thank-you-image .thank-you-person p.team-func {
  opacity: 0.8;
  font-size: 16px;
}

.single-nieuws .single-nieuws-wrapper {
  position: relative;
  padding-bottom: 220px;
  background-color: #12213B;
  padding-top: 150px;
}

@media (max-width: 991px) {
  .single-nieuws .single-nieuws-wrapper {
    padding-bottom: 110px;
  }
}

@media (max-width: 1180px) {
  .single-nieuws .single-nieuws-wrapper {
    padding-top: 120px;
  }
}

.single-nieuws .single-nieuws-wrapper .breadcrumbs-line {
  padding-top: 70px;
}

@media (max-width: 1178px) {
  .single-nieuws .single-nieuws-wrapper .breadcrumbs-line {
    padding-top: 30px;
  }
}

.single-nieuws .single-nieuws-wrapper .section-header-single {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 770px;
  background-color: #12213B;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 991px) {
  .single-nieuws .single-nieuws-wrapper .section-header-single {
    max-height: 70vh;
  }
}

.single-nieuws .single-nieuws-wrapper .section-header-single:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: calc(100% + 52px);
  width: 100%;
  background: linear-gradient(180deg, #12213B 0%, rgba(18, 33, 59, 0.85) 23.18%, rgba(18, 33, 59, 0.75) 46.25%, rgba(18, 33, 59, 0.93) 69.35%, #12213B 92.72%);
}

@media (max-width: 1175px) {
  .single-nieuws .single-nieuws-wrapper .section-header-single:before {
    top: 0;
    height: 100%;
  }
}

.single-nieuws .single-nieuws-wrapper .main-nieuws {
  position: relative;
  margin-top: 65px;
}

@media (max-width: 991px) {
  .single-nieuws .single-nieuws-wrapper .main-nieuws {
    margin-top: 35px;
  }
}

.single-nieuws .single-nieuws-wrapper .main-nieuws .nieuws-meta {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 8px;
  padding: 0 112px;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .single-nieuws .single-nieuws-wrapper .main-nieuws .nieuws-meta {
    padding: 0;
  }
}

.single-nieuws .single-nieuws-wrapper .main-nieuws .nieuws-meta .separator {
  width: 4px;
  height: 4px;
  background-color: #EC6523;
  margin-bottom: 4px;
}

.single-nieuws .single-nieuws-wrapper .main-nieuws .nieuws-meta .nieuws-reading span,
.single-nieuws .single-nieuws-wrapper .main-nieuws .nieuws-meta .nieuws-date span {
  color: #FFF;
  font-size: 16px;
  font-weight: 300;
  line-height: 130%;
}

.single-nieuws .single-nieuws-wrapper .main-nieuws .nieuws-content {
  -webkit-clip-path: polygon(0 55px, 55px 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 55px, 55px 0, 100% 0, 100% 100%, 0 100%);
  background: #FFF;
  padding: 0 0 85px;
  margin: 0 115px 0;
}

@media (max-width: 991px) {
  .single-nieuws .single-nieuws-wrapper .main-nieuws .nieuws-content {
    margin: 0;
    padding: 0 0 40px;
  }
}

.single-nieuws .single-nieuws-wrapper .main-nieuws .nieuws-content .nieuws-content-wrapper {
  padding: 100px 112px 0;
}

@media (max-width: 1178px) {
  .single-nieuws .single-nieuws-wrapper .main-nieuws .nieuws-content .nieuws-content-wrapper {
    padding: 80px 80px 0;
  }
}

@media (max-width: 767px) {
  .single-nieuws .single-nieuws-wrapper .main-nieuws .nieuws-content .nieuws-content-wrapper {
    padding: 40px 30px 0;
  }
}

@media (max-width: 450px) {
  .single-nieuws .single-nieuws-wrapper .main-nieuws .nieuws-content .nieuws-content-wrapper {
    padding: 30px 15px 0;
  }
}

.single-nieuws .single-nieuws-wrapper .main-nieuws .nieuws-content .nieuws-content-wrapper .nieuws-content-title-wrapper {
  text-align: center;
  margin-bottom: 32px;
}

.single-nieuws .single-nieuws-wrapper .main-nieuws .nieuws-content .nieuws-content-wrapper .nieuws-content-title-wrapper .section-subtitle {
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 20px;
  font-size: 18px;
  font-weight: 300;
  line-height: 100%;
  text-transform: uppercase;
}

.single-nieuws .single-nieuws-wrapper .main-nieuws .nieuws-content .nieuws-content-wrapper .nieuws-content-title-wrapper .section-subtitle:before {
  content: "";
  display: block;
  width: 4px;
  height: 14px;
  background-size: 4px 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/title-bar-orange.svg);
  transition: all 0.3s ease-in-out;
  margin-bottom: 4px;
}

.single-nieuws .single-nieuws-wrapper .main-nieuws .nieuws-content .nieuws-content-wrapper .nieuws-content-title-wrapper .section-title {
  font-size: 48px !important;
  font-weight: 600;
}

@media (max-width: 767px) {
  .single-nieuws .single-nieuws-wrapper .main-nieuws .nieuws-content .nieuws-content-wrapper .nieuws-content-title-wrapper .section-title {
    font-size: 36px !important;
  }
}

.single-nieuws .single-nieuws-wrapper .main-nieuws .nieuws-content .nieuws-content-wrapper .wp-block-column.is-layout-flow:has(figure) {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.single-nieuws .single-nieuws-wrapper .main-nieuws .nieuws-content .nieuws-content-wrapper .wp-block-column p,
.single-nieuws .single-nieuws-wrapper .main-nieuws .nieuws-content .nieuws-content-wrapper .wp-block-column ul,
.single-nieuws .single-nieuws-wrapper .main-nieuws .nieuws-content .nieuws-content-wrapper .wp-block-column ol {
  margin-bottom: 20px;
}

.single-nieuws .single-nieuws-wrapper .main-nieuws .nieuws-content .nieuws-content-wrapper li strong {
  font-weight: 600;
}

.single-nieuws .single-nieuws-wrapper .main-nieuws .nieuws-content .nieuws-content-wrapper p {
  margin-bottom: 24px;
}

@media (max-width: 767px) {
  .single-nieuws .single-nieuws-wrapper .main-nieuws .nieuws-content .nieuws-content-wrapper p {
    margin-bottom: 20px;
  }
}

.single-nieuws .single-nieuws-wrapper .main-nieuws .nieuws-content .nieuws-content-wrapper p:last-of-type {
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .single-nieuws .single-nieuws-wrapper .main-nieuws .nieuws-content .nieuws-content-wrapper p:last-of-type {
    margin-bottom: 30px;
  }
}

.single-nieuws .single-nieuws-wrapper .main-nieuws .nieuws-content .nieuws-content-wrapper p strong {
  font-weight: 600;
}

.single-nieuws .single-nieuws-wrapper .main-nieuws .nieuws-content .nieuws-content-wrapper p a {
  font-weight: 400;
}

.single-nieuws .single-nieuws-wrapper .main-nieuws .nieuws-content .nieuws-content-wrapper h2,
.single-nieuws .single-nieuws-wrapper .main-nieuws .nieuws-content .nieuws-content-wrapper h3 {
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .single-nieuws .single-nieuws-wrapper .main-nieuws .nieuws-content .nieuws-content-wrapper h2,
  .single-nieuws .single-nieuws-wrapper .main-nieuws .nieuws-content .nieuws-content-wrapper h3 {
    margin-bottom: 8px;
  }
}

.single-nieuws .single-nieuws-wrapper .main-nieuws .nieuws-content .nieuws-content-wrapper h2 {
  font-size: 32px;
  font-weight: 600;
}

@media (max-width: 450px) {
  .single-nieuws .single-nieuws-wrapper .main-nieuws .nieuws-content .nieuws-content-wrapper h2 {
    font-size: 26px;
  }
}

.single-nieuws .single-nieuws-wrapper .main-nieuws .nieuws-content .nieuws-content-wrapper h3 {
  font-size: 28px;
  font-weight: 600;
}

@media (max-width: 450px) {
  .single-nieuws .single-nieuws-wrapper .main-nieuws .nieuws-content .nieuws-content-wrapper h3 {
    font-size: 24px;
  }
}

.single-nieuws .single-nieuws-wrapper .main-nieuws .nieuws-content .nieuws-content-wrapper .nieuws-bottom {
  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: 20px;
}

.single-nieuws .single-nieuws-wrapper .main-nieuws .nieuws-content .nieuws-content-wrapper .nieuws-bottom .share-icons-box {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

.single-nieuws .single-nieuws-wrapper .main-nieuws .nieuws-content .nieuws-content-wrapper .nieuws-bottom .share-icons-box .share-icons .addtoany_list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.single-nieuws .single-nieuws-wrapper .main-nieuws .nieuws-content .nieuws-content-wrapper .nieuws-bottom .share-icons-box .share-icons .addtoany_list > a {
  display: block;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid #E0E4ED;
}

.single-nieuws .single-nieuws-wrapper .main-nieuws .nieuws-content .nieuws-content-wrapper .nieuws-bottom .share-icons-box .share-icons .addtoany_list > a img {
  width: 22px;
  height: 22px;
}

.single-nieuws .single-nieuws-wrapper .main-nieuws .nieuws-content .nieuws-content-wrapper .nieuws-bottom .share-icons-box .share-icons .addtoany_list > a .a2a_svg {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  width: 40px !important;
  height: 40px !important;
  transition: all 0.3s ease-in-out;
}

.single-nieuws .single-nieuws-wrapper .main-nieuws .nieuws-content .nieuws-content-wrapper .nieuws-bottom .share-icons-box .share-icons .addtoany_list > a .a2a_svg svg {
  width: 25px;
  height: 25px;
  margin-bottom: 3px;
}

.single-nieuws .single-nieuws-wrapper .main-nieuws .nieuws-content .nieuws-content-wrapper .nieuws-bottom .share-icons-box .share-icons .addtoany_list > a .a2a_svg svg path {
  transition: all 0.3s ease-in-out;
}

.single-nieuws .single-nieuws-wrapper .main-nieuws .nieuws-content .nieuws-content-wrapper .nieuws-bottom .share-icons-box .share-icons .addtoany_list > a:hover .a2a_svg,
.single-nieuws .single-nieuws-wrapper .main-nieuws .nieuws-content .nieuws-content-wrapper .nieuws-bottom .share-icons-box .share-icons .addtoany_list > a:focus .a2a_svg {
  opacity: 1;
}

.single-nieuws .single-nieuws-wrapper .main-nieuws .nieuws-content .nieuws-content-wrapper .nieuws-bottom .share-icons-box .share-icons .addtoany_list > a:hover .a2a_svg svg path,
.single-nieuws .single-nieuws-wrapper .main-nieuws .nieuws-content .nieuws-content-wrapper .nieuws-bottom .share-icons-box .share-icons .addtoany_list > a:focus .a2a_svg svg path {
  fill: #EC6523;
}

.single-nieuws .single-nieuws-wrapper .main-nieuws .nieuws-content .nieuws-content-wrapper .nieuws-bottom .share-icons-box .share-icons .addtoany_list > a:last-child {
  margin-right: 0;
}

.single-nieuws .single-nieuws-wrapper .main-nieuws .nieuws-content.header-img .image-wrapper {
  height: 385px;
  width: 100%;
}

.single-nieuws .single-nieuws-wrapper .main-nieuws .nieuws-content.header-img .image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
}

.single-nieuws .single-nieuws-wrapper .main-nieuws .nieuws-content.header-img .nieuws-content-wrapper {
  padding: 30px 112px 0;
}

@media (max-width: 1178px) {
  .single-nieuws .single-nieuws-wrapper .main-nieuws .nieuws-content.header-img .nieuws-content-wrapper {
    padding: 30px 80px 0;
  }
}

@media (max-width: 767px) {
  .single-nieuws .single-nieuws-wrapper .main-nieuws .nieuws-content.header-img .nieuws-content-wrapper {
    padding: 25px 30px 0;
  }
}

@media (max-width: 450px) {
  .single-nieuws .single-nieuws-wrapper .main-nieuws .nieuws-content.header-img .nieuws-content-wrapper {
    padding: 25px 15px 0;
  }
}

.single-nieuws .related-nieuws-section {
  padding: 0;
  background-color: #fff;
}

.single-nieuws .related-nieuws-section .related-nieuws-wrapper {
  position: relative;
  padding: 145px 0;
}

@media (max-width: 991px) {
  .single-nieuws .related-nieuws-section .related-nieuws-wrapper {
    padding: 80px 0;
  }
}

@media (max-width: 767px) {
  .single-nieuws .related-nieuws-section .related-nieuws-wrapper {
    padding: 50px 0;
  }
}

.single-nieuws .related-nieuws-section .related-nieuws-wrapper:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 192px;
  height: 15px;
  background-size: 192px 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/section-bar-orange.svg);
}

.archive-nieuws {
  background-color: #fff;
}

.archive-nieuws .header-archive-nieuws {
  background-color: #12213B;
  min-height: 50vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding-top: 150px;
}

@media (max-width: 1180px) {
  .archive-nieuws .header-archive-nieuws {
    padding-top: 120px;
  }
}

@media (max-width: 767px) {
  .archive-nieuws .header-archive-nieuws {
    min-height: 40vh;
  }
}

.archive-nieuws .header-archive-nieuws:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, #12213B 0%, rgba(18, 33, 59, 0.85) 23.18%, rgba(18, 33, 59, 0.75) 46.25%, rgba(18, 33, 59, 0.93) 69.35%, #12213B 92.72%);
}

@media (max-width: 1175px) {
  .archive-nieuws .header-archive-nieuws:before {
    top: 0;
    height: 100%;
  }
}

.archive-nieuws .header-archive-nieuws .breadcrumbs-line {
  padding-top: 70px;
}

@media (max-width: 1178px) {
  .archive-nieuws .header-archive-nieuws .breadcrumbs-line {
    padding-top: 30px;
  }
}

.archive-nieuws .header-archive-nieuws .archive-nieuws-title-wrapper {
  text-align: center;
  padding-bottom: 120px;
}

@media (max-width: 991px) {
  .archive-nieuws .header-archive-nieuws .archive-nieuws-title-wrapper {
    padding-bottom: 50px;
  }
}

.archive-nieuws .header-archive-nieuws .archive-nieuws-title-wrapper .section-subtitle {
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  line-height: 100%;
  text-transform: uppercase;
  margin-top: 30px;
  margin-bottom: 20px;
}

.archive-nieuws .header-archive-nieuws .archive-nieuws-title-wrapper .section-subtitle:before {
  content: "";
  display: block;
  width: 4px;
  height: 14px;
  background-size: 4px 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/title-bar-orange.svg);
  transition: all 0.3s ease-in-out;
  margin-bottom: 4px;
}

.archive-nieuws .header-archive-nieuws .archive-nieuws-title-wrapper .section-subtitle.mobile {
  display: none;
}

@media (max-width: 767px) {
  .archive-nieuws .header-archive-nieuws .archive-nieuws-title-wrapper:has(.section-subtitle.mobile) .section-subtitle {
    display: none;
  }

  .archive-nieuws .header-archive-nieuws .archive-nieuws-title-wrapper:has(.section-subtitle.mobile) .section-subtitle.mobile {
    display: -ms-flexbox;
    display: flex;
  }
}

.archive-nieuws .header-archive-nieuws .archive-nieuws-title-wrapper .section-title {
  color: #fff;
  font-size: 80px;
  line-height: 108%;
}

@media (max-width: 991px) {
  .archive-nieuws .header-archive-nieuws .archive-nieuws-title-wrapper .section-title {
    font-size: 50px;
  }
}

@media (max-width: 767px) {
  .archive-nieuws .header-archive-nieuws .archive-nieuws-title-wrapper .section-title {
    font-size: 36px !important;
  }
}

.archive-nieuws .nieuws-archive-wrapper {
  padding: 35px 0 115px;
}

@media (max-width: 767px) {
  .archive-nieuws .nieuws-archive-wrapper {
    padding: 35px 0 65px;
  }
}

.archive-nieuws .nieuws-archive-wrapper .nieuws-posts {
  padding: 40px 0 0;
}

.archive-nieuws .nieuws-archive-wrapper .nieuws-posts .pagination-wrapper {
  margin-top: 120px;
}

@media (max-width: 991px) {
  .archive-nieuws .nieuws-archive-wrapper .nieuws-posts .pagination-wrapper {
    margin-top: 55px;
  }
}

.single-product {
  overflow: hidden;
}

.single-product .header-single-products {
  position: relative;
  background-color: #12213B;
  min-height: 85vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  padding-top: 150px;
}

@media (max-width: 1180px) {
  .single-product .header-single-products {
    padding-top: 120px;
  }
}

@media (max-width: 991px) {
  .single-product .header-single-products {
    min-height: 50vh;
  }
}

.single-product .header-single-products:before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 0;
  height: calc(100% + 52px);
  width: 100%;
  background: linear-gradient(180deg, #12213B 0%, rgba(18, 33, 59, 0.75) 23.18%, rgba(18, 33, 59, 0.65) 46.25%, rgba(18, 33, 59, 0.85) 69.35%, #12213B 92.72%);
  z-index: 5;
}

@media (max-width: 1175px) {
  .single-product .header-single-products:before {
    top: 0;
    height: 100%;
  }
}

.single-product .header-single-products:after {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(291deg, rgba(18, 33, 59, 0) 40.23%, rgba(18, 33, 59, 0.7) 59.35%, rgba(18, 33, 59, 0.7) 90.19%);
  z-index: 2;
}

@media (max-width: 1175px) {
  .single-product .header-single-products:after {
    top: 0;
  }
}

.single-product .header-single-products.animated-columns:after {
  content: none;
}

.single-product .header-single-products .container {
  position: relative;
  z-index: 5;
}

.single-product .header-single-products.form-active:after {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 33, 59, 0.5);
  z-index: 999;
}

.single-product .header-single-products .breadcrumbs-line {
  margin-top: 65px;
}

@media (max-width: 767px) {
  .single-product .header-single-products .breadcrumbs-line {
    margin-top: 30px;
  }
}

.single-product .header-single-products .single-product-content-wrapper {
  margin-top: 120px;
  margin-bottom: 150px;
  max-width: 600px;
}

@media (max-width: 1175px) {
  .single-product .header-single-products .single-product-content-wrapper {
    max-width: 420px;
  }
}

@media (max-width: 991px) {
  .single-product .header-single-products .single-product-content-wrapper {
    margin-top: 40px;
    margin-bottom: 80px;
  }
}

@media (max-width: 991px) {
  .single-product .header-single-products .single-product-content-wrapper {
    max-width: unset;
  }
}

.single-product .header-single-products .single-product-content-wrapper .section-subtitle {
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: start;
  justify-content: flex-start;
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  line-height: 100%;
  text-transform: uppercase;
  margin-top: 30px;
  margin-bottom: 5px;
}

.single-product .header-single-products .single-product-content-wrapper .section-subtitle:before {
  content: "";
  display: block;
  width: 4px;
  height: 14px;
  background-size: 4px 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/title-bar-orange.svg);
  transition: all 0.3s ease-in-out;
  margin-bottom: 4px;
}

.single-product .header-single-products .single-product-content-wrapper .section-subtitle.mobile {
  display: none;
}

@media (max-width: 767px) {
  .single-product .header-single-products .single-product-content-wrapper:has(.section-subtitle.mobile) .section-subtitle {
    display: none;
  }

  .single-product .header-single-products .single-product-content-wrapper:has(.section-subtitle.mobile) .section-subtitle.mobile {
    display: -ms-flexbox;
    display: flex;
  }
}

.single-product .header-single-products .single-product-content-wrapper .section-title {
  color: #fff;
  font-size: 80px;
  line-height: 108%;
}

@media (max-width: 991px) {
  .single-product .header-single-products .single-product-content-wrapper .section-title {
    font-size: 48px;
  }
}

.single-product .header-single-products .single-product-content-wrapper .section-description {
  margin-top: 25px;
}

@media (max-width: 991px) {
  .single-product .header-single-products .single-product-content-wrapper .section-description {
    margin-top: 15px;
  }
}

.single-product .header-single-products .single-product-content-wrapper .section-description p {
  color: #FFF;
  opacity: 0.75;
}

.single-product .header-single-products.subcategories .single-product-content-wrapper {
  margin-bottom: 350px;
}

@media (max-width: 991px) {
  .single-product .header-single-products.subcategories .single-product-content-wrapper {
    margin-bottom: 80px;
  }
}

.single-product .single-products-subcategories {
  position: relative;
  padding: 135px 0;
  background-color: #fff;
}

.single-product .single-products-subcategories .container {
  position: relative;
  z-index: 5;
}

.single-product .single-products-subcategories:before {
  content: "";
  display: block;
  width: 100%;
  height: 300px;
  background: linear-gradient(180deg, rgba(18, 33, 59, 0) 0.83%, rgba(18, 33, 59, 0.84) 19.04%, #12213B 100%);
  position: absolute;
  top: -300px;
  left: 0;
  z-index: 4;
}

@media (max-width: 991px) {
  .single-product .single-products-subcategories:before {
    content: none;
  }
}

@media (max-width: 991px) {
  .single-product .single-products-subcategories {
    padding: 80px 0;
  }
}

.single-product .single-products-subcategories .subcategories-wrapper {
  margin-top: -400px;
}

@media (max-width: 991px) {
  .single-product .single-products-subcategories .subcategories-wrapper {
    margin-top: 0;
  }
}

.single-product .single-products-subcategories .single-product-content-wrapper {
  text-align: center;
}

.single-product .single-products-subcategories .single-product-content-wrapper .section-subtitle {
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
}

@media (max-width: 991px) {
  .single-product .single-products-subcategories .single-product-content-wrapper .section-subtitle {
    color: #12213B;
  }
}

.single-product .single-products-subcategories .single-product-content-wrapper .section-title {
  color: #fff;
}

@media (max-width: 991px) {
  .single-product .single-products-subcategories .single-product-content-wrapper .section-title {
    color: #12213B;
  }
}

.admin-bar .single-product .header-single-products .single-product-popup.form-active {
  top: 32px;
}

.single-locations {
  background-color: #fff;
}

.single-locations .section-header-locations {
  background-color: #12213B;
  padding-top: 155px;
}

@media (max-width: 1180px) {
  .single-locations .section-header-locations {
    padding-top: 111px;
  }
}

@media (max-width: 1180px) {
  .single-locations .section-header-locations.top-bar {
    padding-top: 120px;
  }
}

.single-locations .single-locations-wrapper {
  padding: 85px 0;
  display: grid;
  grid-template-columns: 530px calc(100% - 560px);
  gap: 30px;
}

@media (max-width: 1173px) {
  .single-locations .single-locations-wrapper {
    grid-template-columns: 1fr;
  }
}

.single-locations .single-locations-wrapper .location-content .location-title-wrapper {
  max-width: 530px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(18, 33, 59, 0.2);
}

.single-locations .single-locations-wrapper .location-content .location-title-wrapper .location-subtitle {
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 300;
  line-height: 100%;
  text-transform: uppercase;
}

.single-locations .single-locations-wrapper .location-content .location-title-wrapper .location-subtitle:before {
  content: "";
  display: block;
  width: 4px;
  height: 14px;
  background-size: 4px 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/title-bar-orange.svg);
  transition: all 0.3s ease-in-out;
  margin-bottom: 4px;
}

.single-locations .single-locations-wrapper .location-content .location-title-wrapper .location-title {
  font-size: 48px;
  font-weight: 600;
  line-height: 108%;
}

.single-locations .single-locations-wrapper .location-content .location-content-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.single-locations .single-locations-wrapper .location-content .location-content-wrapper .location-wrapper {
  padding: 20px 0;
}

.single-locations .single-locations-wrapper .location-content .location-content-wrapper .location-wrapper .location-label {
  margin-bottom: 20px;
}

.single-locations .single-locations-wrapper .location-content .location-content-wrapper .location-wrapper .location-label h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 156%;
}

.single-locations .single-locations-wrapper .location-content .location-content-wrapper .location-wrapper .location-content {
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

.single-locations .single-locations-wrapper .location-content .location-content-wrapper .location-wrapper .location-content:before {
  content: "";
  display: block;
  margin-top: 4px;
}

.single-locations .single-locations-wrapper .location-content .location-content-wrapper .location-wrapper .location-content p a {
  color: inherit;
  text-decoration: underline;
}

.single-locations .single-locations-wrapper .location-content .location-content-wrapper .location-wrapper .location-content a {
  color: #12213B;
}

.single-locations .single-locations-wrapper .location-content .location-content-wrapper .location-wrapper .location-content.address {
  position: relative;
  display: block;
  padding-left: 25px;
}

.single-locations .single-locations-wrapper .location-content .location-content-wrapper .location-wrapper .location-content.address:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 16px;
  background-size: 12px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-pin-orange.svg);
}

.single-locations .single-locations-wrapper .location-content .location-content-wrapper .location-wrapper .location-content.address .route-link-wrapper {
  position: relative;
}

.single-locations .single-locations-wrapper .location-content .location-content-wrapper .location-wrapper .location-content.address .route-link-wrapper a {
  font-weight: 400;
  font-size: 19px;
  color: #2A364D;
  line-height: 156%;
}

@media (max-width: 767px) {
  .single-locations .single-locations-wrapper .location-content .location-content-wrapper .location-wrapper .location-content.address .route-link-wrapper a {
    font-size: 16px;
  }
}

.single-locations .single-locations-wrapper .location-content .location-content-wrapper .location-wrapper .location-content.address .route-link-wrapper a span {
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
  line-height: inherit;
}

.single-locations .single-locations-wrapper .location-content .location-content-wrapper .location-wrapper .location-content.address .route-link-wrapper:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: -25px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 16px;
  height: 13px;
  background-size: 16px 13px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-route-orange.svg);
}

.single-locations .single-locations-wrapper .location-content .location-content-wrapper .location-wrapper .location-content.phone:before {
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-contact-phone-orange.svg);
}

.single-locations .single-locations-wrapper .location-content .location-content-wrapper .location-wrapper .location-content.mail:before {
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-contact-mail-orange.svg);
}

.single-locations .single-locations-wrapper .location-content .location-content-wrapper .location-wrapper .location-content.visit span {
  font-weight: 400;
  font-size: 19px;
  color: #2A364D;
  line-height: 156%;
}

@media (max-width: 767px) {
  .single-locations .single-locations-wrapper .location-content .location-content-wrapper .location-wrapper .location-content.visit span {
    font-size: 16px;
  }
}

.single-locations .single-locations-wrapper .location-content .location-content-wrapper .location-wrapper .location-content.visit:before {
  width: 14px;
  height: 16px;
  background-size: 14px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-calendar-orange.svg);
}

.single-locations .single-locations-wrapper .location-content .button-wrapper {
  margin-top: 25px;
}

.single-locations .single-locations-wrapper .location-content .button-wrapper .disabled-btn {
  cursor: not-allowed;
  opacity: 0.8;
}

.single-locations .single-locations-wrapper .location-content .button-wrapper .btn.default:hover span {
  color: #12213B;
}

.single-locations .single-locations-wrapper .location-content .button-wrapper .btn.ghost span {
  color: #12213B;
}

.single-locations .single-locations-wrapper .location-content .button-wrapper .btn.ghost:hover span {
  color: #fff;
}

.single-locations .single-locations-wrapper .acf-map {
  min-height: 450px;
  box-shadow: 4px 4px 10px 5px rgba(0, 0, 0, 0.03);
}

.archive-nieuws {
  background-color: #fff;
}

.archive-nieuws .header-archive-nieuws {
  background-color: #12213B;
  min-height: 50vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding-top: 150px;
}

@media (max-width: 1180px) {
  .archive-nieuws .header-archive-nieuws {
    padding-top: 120px;
  }
}

@media (max-width: 767px) {
  .archive-nieuws .header-archive-nieuws {
    min-height: 40vh;
  }
}

.archive-nieuws .header-archive-nieuws:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, #12213B 0%, rgba(18, 33, 59, 0.85) 23.18%, rgba(18, 33, 59, 0.75) 46.25%, rgba(18, 33, 59, 0.93) 69.35%, #12213B 92.72%);
}

@media (max-width: 1175px) {
  .archive-nieuws .header-archive-nieuws:before {
    top: 0;
    height: 100%;
  }
}

.archive-nieuws .header-archive-nieuws .breadcrumbs-line {
  padding-top: 70px;
}

@media (max-width: 1178px) {
  .archive-nieuws .header-archive-nieuws .breadcrumbs-line {
    padding-top: 30px;
  }
}

.archive-nieuws .header-archive-nieuws .archive-nieuws-title-wrapper {
  text-align: center;
  padding-bottom: 120px;
}

@media (max-width: 991px) {
  .archive-nieuws .header-archive-nieuws .archive-nieuws-title-wrapper {
    padding-bottom: 50px;
  }
}

.archive-nieuws .header-archive-nieuws .archive-nieuws-title-wrapper .section-subtitle {
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  line-height: 100%;
  text-transform: uppercase;
  margin-top: 30px;
  margin-bottom: 20px;
}

.archive-nieuws .header-archive-nieuws .archive-nieuws-title-wrapper .section-subtitle:before {
  content: "";
  display: block;
  width: 4px;
  height: 14px;
  background-size: 4px 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/title-bar-orange.svg);
  transition: all 0.3s ease-in-out;
  margin-bottom: 4px;
}

.archive-nieuws .header-archive-nieuws .archive-nieuws-title-wrapper .section-subtitle.mobile {
  display: none;
}

@media (max-width: 767px) {
  .archive-nieuws .header-archive-nieuws .archive-nieuws-title-wrapper:has(.section-subtitle.mobile) .section-subtitle {
    display: none;
  }

  .archive-nieuws .header-archive-nieuws .archive-nieuws-title-wrapper:has(.section-subtitle.mobile) .section-subtitle.mobile {
    display: -ms-flexbox;
    display: flex;
  }
}

.archive-nieuws .header-archive-nieuws .archive-nieuws-title-wrapper .section-title {
  color: #fff;
  font-size: 80px;
  line-height: 108%;
}

@media (max-width: 991px) {
  .archive-nieuws .header-archive-nieuws .archive-nieuws-title-wrapper .section-title {
    font-size: 50px;
  }
}

@media (max-width: 767px) {
  .archive-nieuws .header-archive-nieuws .archive-nieuws-title-wrapper .section-title {
    font-size: 36px !important;
  }
}

.archive-nieuws .nieuws-archive-wrapper {
  padding: 35px 0 115px;
}

@media (max-width: 767px) {
  .archive-nieuws .nieuws-archive-wrapper {
    padding: 35px 0 65px;
  }
}

.archive-nieuws .nieuws-archive-wrapper .nieuws-posts {
  padding: 40px 0 0;
}

.archive-nieuws .nieuws-archive-wrapper .nieuws-posts .pagination-wrapper {
  margin-top: 120px;
}

@media (max-width: 991px) {
  .archive-nieuws .nieuws-archive-wrapper .nieuws-posts .pagination-wrapper {
    margin-top: 55px;
  }
}

.archive-products {
  background-color: #12213B;
  padding: 0;
}

@media (max-width: 767px) {
  .archive-products {
    padding: 0;
  }
}

.archive-products .product-list {
  margin-top: -60px;
  padding-bottom: 150px;
}

@media (max-width: 991px) {
  .archive-products .product-list {
    margin-top: 0px;
    padding-bottom: 60px;
  }
}

.archive-products .product-list .product-loop .product-content .post-title {
  color: #fff;
}

.archive-products .product-list .product-loop .product-content:after {
  width: 8px;
  height: 13px;
  background-size: 8px 13px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-chevron-right-white.svg);
}

.error404 .main-header .top-bar {
  background-color: #12213B;
}

.page-404-wrapper {
  position: relative;
  background-color: #12213B;
  min-height: 95vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.page-404-wrapper:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(18, 33, 59, 0.9);
}

.page-404-wrapper:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 192px;
  height: 15px;
  background-size: 192px 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-bar-orange-big.svg);
}

.page-404-wrapper .section-content-wrapper {
  position: relative;
  z-index: 10;
  margin-bottom: 0;
}

.page-404-wrapper .section-content-wrapper .section-title {
  text-align: center;
  color: #FFF;
  font-size: 80px;
  font-weight: 400;
  line-height: 108%;
}

@media (max-width: 767px) {
  .page-404-wrapper .section-content-wrapper .section-title {
    font-size: 65px;
  }
}

.page-404-wrapper .section-content-wrapper .section-description {
  max-width: 620px;
  margin: 40px auto 0;
}

.page-404-wrapper .section-content-wrapper .section-description p {
  text-align: center;
  color: #FFF;
  font-size: 21px;
  font-weight: 300;
  opacity: 0.75;
}

.page-404-wrapper .section-content-wrapper .button-wrapper {
  -ms-flex-pack: center;
  justify-content: center;
}

.page-404-wrapper .logo {
  position: absolute;
  bottom: 80px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.search-page .section-header-default .header-default-content-wrapper {
  max-width: 750px;
  margin: 0 auto 150px;
}

@media (max-width: 650px) {
  .search-page .section-header-default .header-default-content-wrapper {
    margin: 0 auto 60px;
  }
}

.search-page .section-header-default .header-default-content-wrapper .search-page-search {
  margin-top: 40px;
}

.search-page .section-header-default .header-default-content-wrapper .search-page-search .search-form {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 110px;
  grid-gap: 10px;
}

@media (max-width: 650px) {
  .search-page .section-header-default .header-default-content-wrapper .search-page-search .search-form {
    grid-template-columns: 1fr;
  }
}

.search-page .section-header-default .header-default-content-wrapper .search-page-search .search-form:before {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
  left: 24px;
  width: 15px;
  height: 16px;
  background-size: 15px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-search-blue.svg);
}

.search-page .section-header-default .header-default-content-wrapper .search-page-search .search-form input {
  padding: 7px 10px 7px 55px;
  width: 100%;
  font-size: 19px;
  font-weight: 300;
  line-height: 1;
  border: none;
}

.search-page .section-header-default .header-default-content-wrapper .search-page-search .search-form input:focus {
  outline: none;
}

.search-page .section-header-default .header-default-content-wrapper .search-page-search .search-form button {
  min-height: 44px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  min-width: 110px;
  background-color: #EC6523;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: none;
  height: 100%;
  padding: 0;
  outline: none;
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 108%;
  transition: 0.3s background-color ease-in-out;
}

.search-page .section-header-default .header-default-content-wrapper .search-page-search .search-form button:hover {
  background-color: #C95218;
}

.search-page .search-section {
  padding-top: 100px;
  padding-bottom: 90px;
}

@media (max-width: 991px) {
  .search-page .search-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .search-page .search-section {
    padding-top: 35px;
    padding-bottom: 35px;
  }
}

.search-page .search-section .found,
.search-page .search-section .not-found {
  max-width: 750px;
}

.search-page .search-section .found h2,
.search-page .search-section .not-found h2 {
  font-weight: 600;
  line-height: 108%;
  color: #fff;
}

.search-page .search-section .posts-wrapper {
  margin-top: 80px;
}

@media (max-width: 991px) {
  .search-page .search-section .posts-wrapper {
    margin-top: 50px;
  }
}

.search-page .search-section .posts-wrapper .posts-list {
  grid-template-columns: 1fr;
}

.search-page .search-section .posts-wrapper .posts-list .search-item {
  border-bottom: 1px solid #ECEDEF;
  padding-bottom: 30px;
}

.search-page .search-section .posts-wrapper .posts-list .search-item .search-item-content .search-title {
  font-size: 40px;
  font-weight: 600;
  line-height: 108%;
  color: #fff;
}

@media (max-width: 450px) {
  .search-page .search-section .posts-wrapper .posts-list .search-item .search-item-content .search-title {
    font-size: 28px;
  }
}

.search-page .search-section .posts-wrapper .posts-list .search-item .search-item-content .excerpt-wrap {
  margin-top: 15px;
}

.search-page .search-section .posts-wrapper .posts-list .search-item .search-item-content .excerpt-wrap p {
  color: #fff;
}

.search-page .search-section .posts-wrapper .posts-list .search-item .search-item-content .link-wrap {
  margin-top: 25px;
}

.search-page .search-section .posts-wrapper .posts-list .search-item .search-item-content .link-wrap a {
  text-decoration: underline;
}

.search-page .search-section .posts-wrapper .pagination-wrapper {
  margin-top: 50px;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.archive-locations {
  padding-top: 190px;
  background-color: #12213B;
  position: relative;
}

@media (max-width: 991px) {
  .archive-locations {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 150px;
  }
}

.archive-locations .ajax-map-wrapper {
  min-height: 100vh;
}

@media (max-width: 991px) {
  .archive-locations .ajax-map-wrapper {
    min-height: 350px;
    -ms-flex-order: 1;
    order: 1;
  }
}

.archive-locations .ajax-map-wrapper .acf-map {
  height: 100vh;
}

@media (max-width: 991px) {
  .archive-locations .ajax-map-wrapper .acf-map {
    height: 460px;
  }
}

.archive-locations .location-container {
  margin-top: 0;
  margin-bottom: 0;
  -ms-flex-order: 2;
  order: 2;
  padding-top: 20px;
  padding-bottom: 20px;
}

.archive-locations .location-container .location-archive-wrapper {
  padding: 55px 60px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 90vh;
  background-color: #12213B;
  overflow: hidden;
}

@media (max-width: 991px) {
  .archive-locations .location-container .location-archive-wrapper {
    margin: 0;
    padding: 0 0 30px 0;
    height: 540px;
    width: 100%;
    max-height: 540px;
  }
}

.archive-locations .location-container .location-archive-wrapper .location-archive-title .section-subtitle {
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: start;
  justify-content: flex-start;
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.archive-locations .location-container .location-archive-wrapper .location-archive-title .section-subtitle:before {
  content: "";
  display: block;
  width: 4px;
  height: 14px;
  background-size: 4px 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/title-bar-orange.svg);
  transition: all 0.3s ease-in-out;
  margin-bottom: 4px;
}

.archive-locations .location-container .location-archive-wrapper .location-archive-title .section-title {
  color: #fff;
  font-size: 48px;
  line-height: 108%;
  text-align: left;
  font-weight: 600;
}

@media (max-width: 991px) {
  .archive-locations .location-container .location-archive-wrapper .location-archive-title .section-title {
    font-size: 40px;
  }
}

.archive-locations .location-container .location-archive-wrapper .location-line {
  width: 530px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 35px;
  margin-bottom: 15px;
}

@media (max-width: 991px) {
  .archive-locations .location-container .location-archive-wrapper .location-line {
    width: 100%;
  }
}

.archive-locations .location-container .location-archive-wrapper .location-line input {
  padding: 7px 10px 7px 20px;
  width: 100%;
  font-size: 19px;
  font-weight: 300;
  line-height: 1;
  border: none;
  background-color: transparent;
  color: #fff;
}

.archive-locations .location-container .location-archive-wrapper .location-line input:focus {
  outline: none;
}

.archive-locations .location-container .location-archive-wrapper .location-line .get-user-location-btn {
  cursor: pointer;
  width: 15px;
  height: 15px;
  background-size: 15px 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-geolocation.svg);
  padding: 0 25px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.archive-locations .location-container .location-archive-wrapper .location-line select {
  margin-left: 10px;
  color: #FFF;
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.1;
  border: none;
  background-color: transparent;
}

.archive-locations .location-container .location-archive-wrapper .location-line select:focus {
  outline: none;
}

.archive-locations .location-container .location-archive-wrapper .location-line button {
  padding: 11px;
  margin-left: 20px;
  border-radius: 0;
  border: none;
  outline: none;
  background-color: transparent;
  width: 21px;
  height: 21px;
  background-size: 21px 21px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-search.svg);
}

.archive-locations .location-container .location-archive-wrapper .location-posts {
  overflow: scroll;
  max-height: 450px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.archive-locations .location-container .location-archive-wrapper .location-posts .ajax-no-posts-info h2 {
  color: #fff;
}

.archive-locations .location-container .location-archive-wrapper .locations-list {
  grid-template-columns: 1fr;
  gap: 15px;
  padding-bottom: 100px;
}

@media (max-width: 991px) {
  .archive-locations .location-container .location-archive-wrapper .locations-list {
    padding-bottom: 0;
  }
}

.archive-locations .location-container .location-archive-wrapper .locations-list .location-post h3 {
  color: #FFF;
  font-weight: 600;
  line-height: 156%;
  cursor: pointer;
}

.archive-locations .location-container .location-archive-wrapper .locations-list .location-post .post-content {
  margin-top: 5px;
}

.archive-locations .location-container .location-archive-wrapper .locations-list .location-post .post-content p {
  color: #FFF;
}

.archive-locations .location-container .location-archive-wrapper .locations-list .location-post .post-meta-wrapper .location-meta {
  margin-top: 5px;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

.archive-locations .location-container .location-archive-wrapper .locations-list .location-post .post-meta-wrapper .location-meta:before {
  content: "";
  display: block;
  margin-top: 4px;
}

.archive-locations .location-container .location-archive-wrapper .locations-list .location-post .post-meta-wrapper .location-meta p a {
  color: #fff;
}

.archive-locations .location-container .location-archive-wrapper .locations-list .location-post .post-meta-wrapper .location-meta a {
  color: #fff;
}

.archive-locations .location-container .location-archive-wrapper .locations-list .location-post .post-meta-wrapper .location-meta.phone:before {
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-contact-phone-orange.svg);
}

.archive-locations .location-container .location-archive-wrapper .locations-list .location-post .post-meta-wrapper .location-meta.visit:before {
  width: 14px;
  height: 16px;
  background-size: 14px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-calendar-orange.svg);
}

.archive-locations .location-container .location-archive-wrapper .locations-list .location-post .post-meta-wrapper .location-meta.visit p a {
  text-decoration: underline;
}

.archive-locations .location-container .location-archive-wrapper .locations-list .location-post .post-meta-wrapper .location-meta.visit a {
  text-decoration: underline;
}

.archive-locations .sections-holder {
  -ms-flex-order: 3;
  order: 3;
}

.archive-locations .cta-section-list {
  padding: 18px 0;
  background-color: #fff;
  -ms-flex-order: -1;
  order: -1;
}

.archive-locations .cta-section-list .cta-list-wrapper {
  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;
  row-gap: 15px;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}

.archive-locations .cta-section-list .cta-list-wrapper .cta-list-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}

.archive-locations .cta-section-list .cta-list-wrapper .cta-list-item:before {
  content: "";
  display: block;
  width: 14px;
  height: 16px;
  background-size: 14px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-checks.svg);
  margin-bottom: 4px;
}