body.no-scroll,
body.active-mobile-nav {
  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;
}

.has-section-bottom-margin {
  margin-bottom: calc( 50px - 0px);
}

.no-bottom-margin {
  margin-bottom: 0 !important;
}

.no-top-padding {
  padding-top: 0 !important;
}

.no-bottom-padding {
  padding-bottom: 0 !important;
}

.no-padding-l-r {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.top-section-element {
  position: absolute;
  top: -40px;
  left: 30px;
  width: 370px;
  max-width: 60%;
  height: 40px;
  overflow: hidden;
}

.top-section-element:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 370px;
  height: 370px;
  background-size: 370px 370px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/el-image-highlight.svg);
}

.has-row-gap {
  row-gap: 30px;
}

: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: .2s ease-out .1s both f-zoomInUp;
  animation: .2s ease-out .1s both f-zoomInUp;
}

.f-zoomOutDown {
  -webkit-animation: .2s ease-out both f-zoomOutDown;
  animation: .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: .175s ease-out both f-throwOutUp;
  animation: .175s ease-out both f-throwOutUp;
}

.f-throwOutDown {
  -webkit-animation: .175s ease-out both f-throwOutDown;
  animation: .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: .2s ease both f-fadeIn;
  animation: .2s ease both f-fadeIn;
  z-index: 2;
}

.f-fadeOut {
  -webkit-animation: .2s ease both f-fadeOut;
  animation: .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: .5s ease both f-fadeSlowIn;
  animation: .5s ease both f-fadeSlowIn;
  z-index: 2;
}

.f-fadeSlowOut {
  -webkit-animation: .5s ease both f-fadeSlowOut;
  animation: .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: .2s ease-out both f-fadeFastIn;
  animation: .2s ease-out both f-fadeFastIn;
  z-index: 2;
}

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

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

  100% {
    opacity: 1;
  }
}

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

  100% {
    opacity: 1;
  }
}

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

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

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

.f-crossfadeOut {
  -webkit-animation: .1s linear .1s both f-crossfadeOut;
  animation: .1s linear .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 .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: .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 .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: .15s ease-out both f-fadeOut;
  animation: .15s ease-out both f-fadeOut;
}

.is-idle.is-compact .fancybox__footer {
  pointer-events: none;
  -webkit-animation: .15s ease-out both f-fadeOut;
  animation: .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):not(.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: .25s ease .1s backwards f-fadeIn;
  animation: .25s ease .1s backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop {
  -webkit-animation: .35s ease backwards f-fadeIn;
  animation: .35s ease backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden=true] > *:not(.fancybox__backdrop):not(.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: .15s ease forwards f-fadeOut;
  animation: .15s ease forwards f-fadeOut;
}

.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop {
  -webkit-animation: .35s ease forwards f-fadeOut;
  animation: .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 .33s ease;
}

.is-modern.is-resting .f-thumbs__slide > * {
  transition: all .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 .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 .2s ease-out;
  animation: f-fadeIn .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: .15s ease-out both f-fadeOut;
  animation: .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: .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;
}

:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #f01c1c;
  --orange: #FFA400;
  --yellow: #ffc107;
  --green: #20d452;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #20d452;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #f01c1c;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --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: .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: -.25em;
}

sup {
  top: -.5em;
}

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

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

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

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

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

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

figure {
  margin: 0 0 1rem;
}

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

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

table {
  border-collapse: collapse;
}

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

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

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

button {
  border-radius: 0;
}

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

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

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[role="button"] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

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

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

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

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

textarea {
  overflow: auto;
  resize: vertical;
}

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

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: .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-sm,
.container-md,
.container-lg,
.container-xl {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

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

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

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

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

.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.33333%;
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.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.66667%;
  flex: 0 0 16.66667%;
  max-width: 16.66667%;
}

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

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

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

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

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

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

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

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

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

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

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

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

.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.33333%;
}

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

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

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

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

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

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

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

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

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

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

.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: 1199.98px) {
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid,
  .navbar-expand-xl > .container-sm,
  .navbar-expand-xl > .container-md,
  .navbar-expand-xl > .container-lg,
  .navbar-expand-xl > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fade {
  transition: opacity 0.15s linear;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.bg-success {
  background-color: #20d452 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.border-success {
  border-color: #20d452 !important;
}

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

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

.border-danger {
  border-color: #f01c1c !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.85714%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.text-success {
  color: #20d452 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.blockquote-footer::before {
  content: "\2014\00A0";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

textarea.form-control {
  height: auto;
}

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

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

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

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

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

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

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

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

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

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

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

.valid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: .1rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #fff;
  background-color: rgba(32, 212, 82, 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: #20d452;
  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='%2320d452' 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: #20d452;
  box-shadow: 0 0 0 0.2rem rgba(32, 212, 82, 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: #20d452;
  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='%2320d452' 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: #20d452;
  box-shadow: 0 0 0 0.2rem rgba(32, 212, 82, 0.25);
}

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

.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: #20d452;
}

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

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

.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(32, 212, 82, 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: #20d452;
}

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

.was-validated .custom-file-input:valid:focus ~ .custom-file-label,
.custom-file-input.is-valid:focus ~ .custom-file-label {
  border-color: #20d452;
  box-shadow: 0 0 0 0.2rem rgba(32, 212, 82, 0.25);
}

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

.invalid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: .1rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #fff;
  background-color: rgba(240, 28, 28, 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: #f01c1c;
  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='%23f01c1c' 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='%23f01c1c' 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: #f01c1c;
  box-shadow: 0 0 0 0.2rem rgba(240, 28, 28, 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: #f01c1c;
  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='%23f01c1c' 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='%23f01c1c' 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: #f01c1c;
  box-shadow: 0 0 0 0.2rem rgba(240, 28, 28, 0.25);
}

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

.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: #f01c1c;
}

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

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

.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(240, 28, 28, 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: #f01c1c;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.btn-success {
  color: #fff;
  background-color: #20d452;
  border-color: #20d452;
}

.btn-success:hover {
  color: #fff;
  background-color: #1bb345;
  border-color: #19a841;
}

.btn-success:focus,
.btn-success.focus {
  color: #fff;
  background-color: #1bb345;
  border-color: #19a841;
  box-shadow: 0 0 0 0 rgba(65, 218, 108, 0.5);
}

.btn-success.disabled,
.btn-success:disabled {
  color: #fff;
  background-color: #20d452;
  border-color: #20d452;
}

.btn-success:not(:disabled):not(.disabled):active,
.btn-success:not(:disabled):not(.disabled).active,
.show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #19a841;
  border-color: #189d3d;
}

.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(65, 218, 108, 0.5);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.btn-danger:hover {
  color: #fff;
  background-color: #d80e0e;
  border-color: #cc0d0d;
}

.btn-danger:focus,
.btn-danger.focus {
  color: #fff;
  background-color: #d80e0e;
  border-color: #cc0d0d;
  box-shadow: 0 0 0 0 rgba(242, 62, 62, 0.5);
}

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

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

.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(242, 62, 62, 0.5);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.btn-outline-secondary:focus,
.btn-outline-secondary.focus {
  box-shadow: 0 0 0 0 rgba(108, 117, 125, 0.5);
}

.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
  color: #6c757d;
  background-color: transparent;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active,
.btn-outline-secondary:not(:disabled):not(.disabled).active,
.show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(108, 117, 125, 0.5);
}

.btn-outline-success {
  color: #20d452;
  border-color: #20d452;
}

.btn-outline-success:hover {
  color: #fff;
  background-color: #20d452;
  border-color: #20d452;
}

.btn-outline-success:focus,
.btn-outline-success.focus {
  box-shadow: 0 0 0 0 rgba(32, 212, 82, 0.5);
}

.btn-outline-success.disabled,
.btn-outline-success:disabled {
  color: #20d452;
  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: #20d452;
  border-color: #20d452;
}

.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(32, 212, 82, 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: #f01c1c;
  border-color: #f01c1c;
}

.btn-outline-danger:hover {
  color: #fff;
  background-color: #f01c1c;
  border-color: #f01c1c;
}

.btn-outline-danger:focus,
.btn-outline-danger.focus {
  box-shadow: 0 0 0 0 rgba(240, 28, 28, 0.5);
}

.btn-outline-danger.disabled,
.btn-outline-danger:disabled {
  color: #f01c1c;
  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: #f01c1c;
  border-color: #f01c1c;
}

.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(240, 28, 28, 0.5);
}

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

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

.btn-outline-light:focus,
.btn-outline-light.focus {
  box-shadow: 0 0 0 0 rgba(248, 249, 250, 0.5);
}

.btn-outline-light.disabled,
.btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: transparent;
}

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

.btn-outline-light:not(:disabled):not(.disabled):active:focus,
.btn-outline-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(248, 249, 250, 0.5);
}

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

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

.btn-outline-dark:focus,
.btn-outline-dark.focus {
  box-shadow: 0 0 0 0 rgba(52, 58, 64, 0.5);
}

.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
  color: #343a40;
  background-color: transparent;
}

.btn-outline-dark:not(:disabled):not(.disabled):active,
.btn-outline-dark:not(:disabled):not(.disabled).active,
.show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:not(:disabled):not(.disabled):active:focus,
.btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(52, 58, 64, 0.5);
}

.btn-link {
  font-weight: 400;
  color: #007bff;
  text-decoration: none;
}

.btn-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

.btn-link:focus,
.btn-link.focus {
  text-decoration: underline;
}

.btn-link:disabled,
.btn-link.disabled {
  color: #6c757d;
  pointer-events: none;
}

.btn-lg {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0;
}

.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-block + .btn-block {
  margin-top: 0.5rem;
}

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}

.breadcrumb {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #e9ecef;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  color: #6c757d;
  content: "/";
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #6c757d;
}

.media {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
}

.media-body {
  -ms-flex: 1;
  flex: 1;
}

.list-group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
}

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}

.list-group-item-action:hover,
.list-group-item-action:focus {
  z-index: 1;
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}

.list-group-item-action:active {
  color: #212529;
  background-color: #e9ecef;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}

.list-group-item.disabled,
.list-group-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
}

.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.list-group-item + .list-group-item {
  border-top-width: 0;
}

.list-group-item + .list-group-item.active {
  margin-top: -1px;
  border-top-width: 1px;
}

.list-group-horizontal {
  -ms-flex-direction: row;
  flex-direction: row;
}

.list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}

.list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: 1px;
  border-left-width: 0;
}

.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: -1px;
  border-left-width: 1px;
}

.list-group-flush > .list-group-item {
  border-width: 0 0 1px;
}

.list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}

.list-group-item-primary {
  color: #004085;
  background-color: #b8daff;
}

.list-group-item-primary.list-group-item-action:hover,
.list-group-item-primary.list-group-item-action:focus {
  color: #004085;
  background-color: #9fcdff;
}

.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #004085;
  border-color: #004085;
}

.list-group-item-secondary {
  color: #383d41;
  background-color: #d6d8db;
}

.list-group-item-secondary.list-group-item-action:hover,
.list-group-item-secondary.list-group-item-action:focus {
  color: #383d41;
  background-color: #c8cbcf;
}

.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #383d41;
  border-color: #383d41;
}

.list-group-item-success {
  color: #116e2b;
  background-color: #c1f3cf;
}

.list-group-item-success.list-group-item-action:hover,
.list-group-item-success.list-group-item-action:focus {
  color: #116e2b;
  background-color: #acefbe;
}

.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #116e2b;
  border-color: #116e2b;
}

.list-group-item-info {
  color: #0c5460;
  background-color: #bee5eb;
}

.list-group-item-info.list-group-item-action:hover,
.list-group-item-info.list-group-item-action:focus {
  color: #0c5460;
  background-color: #abdde5;
}

.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #0c5460;
  border-color: #0c5460;
}

.list-group-item-warning {
  color: #856404;
  background-color: #ffeeba;
}

.list-group-item-warning.list-group-item-action:hover,
.list-group-item-warning.list-group-item-action:focus {
  color: #856404;
  background-color: #ffe8a1;
}

.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #856404;
  border-color: #856404;
}

.list-group-item-danger {
  color: #7d0f0f;
  background-color: #fbbfbf;
}

.list-group-item-danger.list-group-item-action:hover,
.list-group-item-danger.list-group-item-action:focus {
  color: #7d0f0f;
  background-color: #faa7a7;
}

.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #7d0f0f;
  border-color: #7d0f0f;
}

.list-group-item-light {
  color: #818182;
  background-color: #fdfdfe;
}

.list-group-item-light.list-group-item-action:hover,
.list-group-item-light.list-group-item-action:focus {
  color: #818182;
  background-color: #ececf6;
}

.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #818182;
  border-color: #818182;
}

.list-group-item-dark {
  color: #1b1e21;
  background-color: #c6c8ca;
}

.list-group-item-dark.list-group-item-action:hover,
.list-group-item-dark.list-group-item-action:focus {
  color: #1b1e21;
  background-color: #b9bbbe;
}

.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #1b1e21;
  border-color: #1b1e21;
}

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .5;
}

.close:hover {
  color: #000;
  text-decoration: none;
}

.close:not(:disabled):not(.disabled):hover,
.close:not(:disabled):not(.disabled):focus {
  opacity: .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: #3d5566;
  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: 1199.98px) and (max-width: 782px) {
  body.admin-bar #site-header nav.navbar.fixed-top {
    top: 46px !important;
  }
}

#site-footer {
  background: #f4f5f7;
}

#site-footer #wc-footer-main {
  padding: 65px 15px 80px;
}

#site-footer .wc-footer-image {
  margin-bottom: 20px;
}

#site-footer .footer-menu {
  margin-bottom: 20px;
}

#site-footer .footer-menu-title {
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
}

#site-footer .footer-menu a {
  display: block;
  color: #212529;
  line-height: 1.7;
}

#site-footer .footer-menu a:hover {
  text-decoration: none;
  color: #e1e4e7;
}

#site-footer .location {
  margin-bottom: 10px;
}

#site-footer .location .footer-location-title {
  font-weight: 600;
  margin-bottom: 15px;
  display: block;
}

#site-footer .location .location-line-1,
#site-footer .location .location-line-2,
#site-footer .location a {
  display: block;
}

#site-footer .location a {
  color: #212529;
}

#site-footer .location a:hover {
  text-decoration: none;
  color: #e1e4e7;
}

#site-footer .opening-hours {
  margin-bottom: 20px;
}

#site-footer .opening-hours-title {
  font-weight: 600;
  margin-bottom: 10px;
}

#site-footer .opening-hours span {
  display: block;
}

#site-footer .wc-footer-social {
  margin-bottom: 20px;
}

#site-footer .wc-footer-social span {
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

#site-footer .wc-footer-social a {
  margin: 0 15px 0 0;
  font-size: 1.4rem;
  color: #212529;
}

#site-footer .wc-footer-social a:hover {
  text-decoration: none;
  color: #e1e4e7;
}

#wc-bottom-bar {
  padding: 20px 0;
  background: #fff;
}

@media (max-width: 575.98px) {
  #wc-bottom-bar .wc-footer-copyright {
    display: block;
    margin-bottom: 1rem;
    text-align: center;
  }
}

#wc-bottom-bar .bottom-bar-menu {
  width: 100%;
  text-align: center;
}

#wc-bottom-bar .bottom-bar-menu a {
  color: #212529;
  margin: 10px;
  font-size: 1rem;
}

#wc-bottom-bar .bottom-bar-menu a:hover {
  color: #e1e4e7;
  text-decoration: none;
}

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

html body {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

html body .main-footer {
  margin-top: auto;
}

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

.sections-holder section.white {
  background-color: #fff;
}

.sections-holder section.white .content-has-section-color {
  background-color: #fff;
}

.sections-holder section.dark-blue {
  padding-top: calc(50px - 0px);
  padding-bottom: calc(50px - 0px);
  background-color: #0C2A40;
}

.sections-holder section.dark-blue h1,
.sections-holder section.dark-blue h2,
.sections-holder section.dark-blue h3,
.sections-holder section.dark-blue h4,
.sections-holder section.dark-blue h5,
.sections-holder section.dark-blue h6,
.sections-holder section.dark-blue p,
.sections-holder section.dark-blue li,
.sections-holder section.dark-blue a,
.sections-holder section.dark-blue strong,
.sections-holder section.dark-blue i,
.sections-holder section.dark-blue .text {
  color: #fff;
}

.sections-holder section.dark-blue .slides-counter {
  color: #fff;
}

.sections-holder section.dark-blue .not-white-text {
  color: #d0d6da;
}

.sections-holder section.dark-blue .not-white-text p {
  color: inherit;
}

.sections-holder section.dark-blue.payoff-section .main-text-row {
  color: #fff;
}

.sections-holder section.dark-blue.payoff-section b,
.sections-holder section.dark-blue.payoff-section strong {
  color: #FFA400;
}

.sections-holder section.dark-blue.news-section {
  padding-bottom: calc(50px - 30px);
}

.sections-holder section.dark-blue.vacancies-section {
  padding-bottom: calc(50px - 15px);
}

.sections-holder section.dark-blue.full-slider-section {
  padding-bottom: calc(50px - 40px);
  margin-bottom: calc( 50px - 0px);
}

.sections-holder section.dark-blue.full-slider-section .slider-controls-line .progress-holder {
  background-color: #fff;
}

.sections-holder section.dark-blue.cta-section {
  padding-top: calc(50px - 30px);
  padding-bottom: calc(50px - 30px);
}

.sections-holder section.dark-blue.steps-section {
  margin-bottom: calc( 50px - 0px);
}

.sections-holder section.dark-blue .multiline-subtitle {
  color: #fff;
}

.sections-holder section.dark-blue .timeline-block .dot {
  background-color: #0C2A40;
}

.sections-holder section.dark-blue .content-has-section-color {
  background-color: #0C2A40;
}

.sections-holder section.grey {
  padding-top: calc(50px - 0px);
  padding-bottom: calc(50px - 0px);
  background-color: #F3F5F6;
}

.sections-holder section.grey .usp-item-stack {
  background-color: #fff;
}

.sections-holder section.grey.cta-section .content-has-section-color {
  background-color: #fff;
}

.sections-holder section.grey .content-has-section-color {
  background-color: #F3F5F6;
}

@font-face {
  font-family: 'futura-pt';
  src: url("../../fonts/FuturaPTBook-Reg.eot");
  src: url("../../fonts/FuturaPTBook-Reg.eot?#iefix") format("embedded-opentype"), url("../../fonts/FuturaPTBook-Reg.woff2") format("woff2"), url("../../fonts/FuturaPTBook-Reg.woff") format("woff"), url("../../fonts/FuturaPTBook-Reg.ttf") format("truetype"), url("../../fonts/FuturaPTBook-Reg.svg#FuturaPTBook-Reg") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'futura-pt';
  src: url("../../fonts/FuturaPTBold-Reg.eot");
  src: url("../../fonts/FuturaPTBold-Reg.eot?#iefix") format("embedded-opentype"), url("../../fonts/FuturaPTBold-Reg.woff2") format("woff2"), url("../../fonts/FuturaPTBold-Reg.woff") format("woff"), url("../../fonts/FuturaPTBold-Reg.ttf") format("truetype"), url("../../fonts/FuturaPTBold-Reg.svg#FuturaPTBold-Reg") format("svg");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  font-family: "Lato", sans-serif;
  font-weight: 400;
}

::-moz-selection {
  background: #FFA400;
  color: black-or-white(#FFA400, 65);
}

::selection {
  background: #FFA400;
  color: black-or-white(#FFA400, 65);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #123147;
  font-family: 'futura-pt', sans-serif;
  font-weight: 400;
  line-height: 0.8;
  margin: 0 0 15px;
  padding: 0;
  text-transform: uppercase;
}

h1 b,
h1 strong,
h2 b,
h2 strong,
h3 b,
h3 strong,
h4 b,
h4 strong,
h5 b,
h5 strong,
h6 b,
h6 strong {
  font-size: inherit;
  font-family: inherit;
  font-weight: 700;
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
  font-size: inherit;
  font-family: inherit;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
  font: inherit;
  text-decoration: none;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 48px;
}

@media (max-width: 1200px) {
  h2 {
    font-size: 38px;
  }
}

@media (max-width: 991px) {
  h2 {
    font-size: 32px;
  }
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

.sub-title {
  display: block;
  position: relative;
  font-size: 14px;
  font-weight: 450;
  line-height: 1;
  padding-left: 7px;
  text-transform: uppercase;
}

.sub-title:before {
  content: '';
  position: absolute;
  top: 1px;
  left: 0;
  width: 2px;
  height: 11px;
  background-color: #FFA400;
  border-radius: 10px;
}

a {
  color: #FFA400;
  transition: all .3s ease-in-out;
}

a:hover {
  color: #007bff;
}

p {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 30px;
}

.single-article-content .content-inner-wrapper ul,
.content-wrapper ul,
.description ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.3;
  margin-bottom: 30px;
}

.single-article-content .content-inner-wrapper ul li,
.content-wrapper ul li,
.description ul li {
  position: relative;
  padding-left: 23px;
}

.single-article-content .content-inner-wrapper ul li + li,
.content-wrapper ul li + li,
.description ul li + li {
  margin-top: 12px;
}

.single-article-content .content-inner-wrapper ul li:before,
.content-wrapper ul li:before,
.description ul li:before {
  content: '';
  position: absolute;
  top: 8px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 1px;
  background-color: #FFA400;
}

.description ul {
  font-size: 18px;
}

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

.svg-bg-cta-dims {
  width: 1600px;
  height: 466px;
}

.svg-bg-cta-white {
  background: url("sprites.svg") no-repeat;
  background-position: 21.572064176890926% 12.063163344550867%;
}

.svg-bg-cta-white-dims {
  width: 1600px;
  height: 466px;
}

.svg-bg-form-section {
  background: url("sprites.svg") no-repeat;
  background-position: 43.1266846361186% 28.38002436053593%;
}

.svg-bg-form-section-dims {
  width: 1597px;
  height: 1045px;
}

.svg-close {
  background: url("sprites.svg") no-repeat;
  background-position: 53.31777259086362% 45.891364902506965%;
}

.svg-close-dims {
  width: 20px;
  height: 21px;
}

.svg-delete {
  background: url("sprites.svg") no-repeat;
  background-position: 53.51627596933674% 46.34655532359081%;
}

.svg-delete-dims {
  width: 16px;
  height: 18px;
}

.svg-download {
  background: url("sprites.svg") no-repeat;
  background-position: 53.711935985774616% 46.78579716871664%;
}

.svg-download-dims {
  width: 19px;
  height: 20px;
}

.svg-download-white {
  background: url("sprites.svg") no-repeat;
  background-position: 53.90512165314965% 47.22802134075621%;
}

.svg-download-white-dims {
  width: 16px;
  height: 18px;
}

.svg-el-image-highlight {
  background: url("sprites.svg") no-repeat;
  background-position: 56.29698161211981% 51.88178833038646%;
}

.svg-el-image-highlight-dims {
  width: 370px;
  height: 370px;
}

.svg-file {
  background: url("sprites.svg") no-repeat;
  background-position: 58.1870695401022% 56.25435135762358%;
}

.svg-file-dims {
  width: 15px;
  height: 20px;
}

.svg-folder-open {
  background: url("sprites.svg") no-repeat;
  background-position: 58.39261894175189% 56.69218278821619%;
}

.svg-folder-open-dims {
  width: 21px;
  height: 18px;
}

.svg-icon-arrow-down {
  background: url("sprites.svg") no-repeat;
  background-position: 58.580473175608134% 57.109719322662954%;
}

.svg-icon-arrow-down-dims {
  width: 14px;
  height: 18px;
}

.svg-icon-arrow-right-white {
  background: url("sprites.svg") no-repeat;
  background-position: 58.76208467607512% 57.4739281575898%;
}

.svg-icon-arrow-right-white-dims {
  width: 18px;
  height: 14px;
}

.svg-icon-branch {
  background: url("sprites.svg") no-repeat;
  background-position: 58.91758644429146% 57.81177561427909%;
}

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

.svg-icon-btn-arrow {
  background: url("sprites.svg") no-repeat;
  background-position: 59.05870332940941% 58.12444979845248%;
}

.svg-icon-btn-arrow-dims {
  width: 12.4px;
  height: 12.4px;
}

.svg-icon-btn-arrow-orange {
  background: url("sprites.svg") no-repeat;
  background-position: 59.203073984407965% 58.42561275077607%;
}

.svg-icon-btn-arrow-orange-dims {
  width: 12.4px;
  height: 12.4px;
}

.svg-icon-btn-white,
.mobile-filters-controls .state .btn span:after {
  background: url("sprites.svg") no-repeat;
  background-position: 59.31845931845932% 58.734939759036145%;
}

.svg-icon-btn-white-dims,
.mobile-filters-controls .state .btn span:after {
  width: 8px;
  height: 13px;
}

.svg-icon-calendar {
  background: url("sprites.svg") no-repeat;
  background-position: 59.46005999333408% 59.11832946635731%;
}

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

.svg-icon-check {
  background: url("sprites.svg") no-repeat;
  background-position: 59.598090374153436% 59.40754454987272%;
}

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

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

.svg-icon-check-green-dims {
  width: 16px;
  height: 12px;
}

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

.svg-icon-chevron-down-dims {
  width: 10px;
  height: 6px;
}

.svg-icon-chevron-down-white {
  background: url("sprites.svg") no-repeat;
  background-position: 59.99777950482958% 59.98149433263937%;
}

.svg-icon-chevron-down-white-dims {
  width: 10px;
  height: 6px;
}

.svg-icon-chevron-filter-down {
  background: url("sprites.svg") no-repeat;
  background-position: 60.12215435868962% 60.13419713095789%;
}

.svg-icon-chevron-filter-down-dims {
  width: 12px;
  height: 7px;
}

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

.svg-icon-chevron-right-dims {
  width: 6px;
  height: 10px;
}

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

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

.svg-icon-cross-white {
  background: url("sprites.svg") no-repeat;
  background-position: 60.468732644674% 60.917941585535466%;
}

.svg-icon-cross-white-dims {
  width: 14px;
  height: 15px;
}

.svg-icon-cross-yellow {
  background: url("sprites.svg") no-repeat;
  background-position: 60.62423636565589% 61.26564673157163%;
}

.svg-icon-cross-yellow-dims {
  width: 14px;
  height: 15px;
}

.svg-icon-department,
.vacancy-info-list .list-item.department:before {
  background: url("sprites.svg") no-repeat;
  background-position: 60.78649189069096% 61.61335187760779%;
}

.svg-icon-department-dims,
.vacancy-info-list .list-item.department:before {
  width: 15px;
  height: 15px;
}

.svg-icon-email-field {
  background: url("sprites.svg") no-repeat;
  background-position: 60.95312152854921% 61.96105702364395%;
}

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

.svg-icon-facebook,
.socials-wrapper .social.icon-facebook:before {
  background: url("sprites.svg") no-repeat;
  background-position: 61.07904085257549% 62.30876216968011%;
}

.svg-icon-facebook-dims,
.socials-wrapper .social.icon-facebook:before {
  width: 9px;
  height: 15px;
}

.svg-icon-instagram,
.socials-wrapper .social.icon-instagram:before {
  background: url("sprites.svg") no-repeat;
  background-position: 61.226530385512724% 62.67099466728495%;
}

.svg-icon-instagram-dims,
.socials-wrapper .social.icon-instagram:before {
  width: 16px;
  height: 16px;
}

.svg-icon-linkedin,
.socials-wrapper .social.icon-linkedin:before {
  background: url("sprites.svg") no-repeat;
  background-position: 61.39746722950456% 63.02735280482151%;
}

.svg-icon-linkedin-dims,
.socials-wrapper .social.icon-linkedin:before {
  width: 15px;
  height: 15px;
}

.svg-icon-location,
.vacancy-info-list .list-item.location:before,
.vacancy-info-list .list-item.locations:before {
  background: url("sprites.svg") no-repeat;
  background-position: 61.55042203465127% 63.37505795085767%;
}

.svg-icon-location-dims,
.vacancy-info-list .list-item.location:before,
.vacancy-info-list .list-item.locations:before {
  width: 13px;
  height: 15px;
}

.svg-icon-mail {
  background: url("sprites.svg") no-repeat;
  background-position: 61.72222222222222% 63.752319109461965%;
}

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

.svg-icon-pagination-next {
  background: url("sprites.svg") no-repeat;
  background-position: 61.91111111111111% 64.10196987253767%;
}

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

.svg-icon-pagination-prev {
  background: url("sprites.svg") no-repeat;
  background-position: 62.1% 64.42641946697567%;
}

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

.svg-icon-phone {
  background: url("sprites.svg") no-repeat;
  background-position: 62.28888888888889% 64.79591836734694%;
}

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

.svg-icon-play {
  background: url("sprites.svg") no-repeat;
  background-position: 62.43615367532756% 65.11466296038915%;
}

.svg-icon-play-dims {
  width: 11px;
  height: 12px;
}

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

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

.svg-icon-time,
.vacancy-info-list .list-item.hours:before {
  background: url("sprites.svg") no-repeat;
  background-position: 62.797156187513885% 65.87853500231803%;
}

.svg-icon-time-dims,
.vacancy-info-list .list-item.hours:before {
  width: 15px;
  height: 15px;
}

.svg-icon-youtube,
.socials-wrapper .social.icon-youtube:before {
  background: url("sprites.svg") no-repeat;
  background-position: 62.99877737023452% 66.19555143651529%;
}

.svg-icon-youtube-dims,
.socials-wrapper .social.icon-youtube:before {
  width: 20px;
  height: 13px;
}

.svg-login-background {
  background: url("sprites.svg") no-repeat;
  background-position: 76.68868814884725% 74.87607618053744%;
}

.svg-login-background-dims {
  width: 1600px;
  height: 496px;
}

.svg-logo {
  background: url("sprites.svg") no-repeat;
  background-position: 81.9613135402609% 79.05119774542038%;
}

.svg-logo-dims {
  width: 125px;
  height: 71px;
}

.svg-page-404 {
  background: url("sprites.svg") no-repeat;
  background-position: 98.14643188137164% 91.50692225772097%;
}

.svg-page-404-dims {
  width: 1464px;
  height: 573px;
}

.svg-plus-orange {
  background: url("sprites.svg") no-repeat;
  background-position: 98.63333333333334% 93.01786128508466%;
}

.svg-plus-orange-dims {
  width: 17px;
  height: 18px;
}

.svg-sub-menu-el {
  background: url("sprites.svg") no-repeat;
  background-position: 99.51885420163366% 98.99238142049644%;
}

.svg-sub-menu-el-dims {
  width: 80px;
  height: 260px;
}

.svg-upload {
  background: url("sprites.svg") no-repeat;
  background-position: 99.68895800933126% 99.5126479461592%;
}

.svg-upload-dims {
  width: 15px;
  height: 20px;
}

.svg-upload-file {
  background: url("sprites.svg") no-repeat;
  background-position: 100% 100%;
}

.svg-upload-file-dims {
  width: 28px;
  height: 21px;
}

.btn {
  display: inline-block;
  position: relative;
  background-color: #FFA400;
  border: 2px solid #FFA400;
  border-radius: 5px;
  color: #fff;
  font-family: 'futura-pt', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  outline: none;
  padding: 12px 25px;
  text-transform: uppercase;
  transition: all .3s ease-in-out;
}

.btn span {
  color: inherit;
  font: inherit;
}

.btn.arrow,
body .gform_wrapper.gravity-theme .gform_footer button,
body .gform_wrapper.gravity-theme .gform_footer input,
body .gform_wrapper.gravity-theme .gform_page_footer button,
body .gform_wrapper.gravity-theme .gform_page_footer input {
  padding: 12px 48px 12px 25px;
}

.btn.arrow:before,
body .gform_wrapper.gravity-theme .gform_footer button:before,
body .gform_wrapper.gravity-theme .gform_footer input:before,
body .gform_wrapper.gravity-theme .gform_page_footer button:before,
body .gform_wrapper.gravity-theme .gform_page_footer input:before {
  content: '';
  position: absolute;
  right: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all .3s ease-in-out;
  width: 12px;
  height: 12px;
  -webkit-mask-size: 12px 12px;
  mask-size: 12px 12px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-image: url(../../resources/images/svg/icon-btn-arrow.svg);
  mask-image: url(../../resources/images/svg/icon-btn-arrow.svg);
  background-color: #fff;
}

.btn.arrow:hover,
body .gform_wrapper.gravity-theme .gform_footer button:hover,
body .gform_wrapper.gravity-theme .gform_footer input:hover,
body .gform_wrapper.gravity-theme .gform_page_footer button:hover,
body .gform_wrapper.gravity-theme .gform_page_footer input:hover {
  color: #fff;
}

.btn.arrow:hover:before,
body .gform_wrapper.gravity-theme .gform_footer button:hover:before,
body .gform_wrapper.gravity-theme .gform_footer input:hover:before,
body .gform_wrapper.gravity-theme .gform_page_footer button:hover:before,
body .gform_wrapper.gravity-theme .gform_page_footer input:hover:before {
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

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

.btn.btn-ghost:hover {
  border-color: #FFA400;
  background-color: #FFA400;
}

.btn:hover {
  color: #fff;
  background-color: #E19100;
  border-color: #E19100;
}

.square-btn {
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 45px;
  height: 45px;
  border: 2px solid #FFA400;
  border-radius: 5px;
}

.square-btn:after {
  content: '';
  margin: auto;
}

.square-btn.solid {
  background-color: #FFA400;
}

.square-btn.phone:after {
  width: 17px;
  height: 17px;
  background-size: 17px 17px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-phone.svg);
}

.square-btn.mail:after {
  width: 17px;
  height: 17px;
  background-size: 17px 17px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-mail.svg);
}

.square-btn.cross-white:after {
  width: 14px;
  height: 15px;
  background-size: 14px 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-cross-white.svg);
}

.square-btn.arrow-down:after {
  width: 14px;
  height: 18px;
  background-size: 14px 18px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-arrow-down.svg);
}

.square-btn.play {
  cursor: pointer;
}

.square-btn.play:after {
  width: 11px;
  height: 12px;
  background-size: 11px 12px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-play.svg);
}

.btn-link {
  display: inline-block;
  position: relative;
  color: #0C2A40;
  font-family: 'futura-pt', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  padding-right: 22px;
  text-decoration: none;
  text-transform: uppercase;
}

.btn-link span {
  color: inherit;
  font: inherit;
}

.btn-link.white {
  color: #fff;
}

.btn-link.white:hover,
.btn-link.white:focus {
  color: #fff;
}

.btn-link:before {
  content: '';
  position: absolute;
  right: 0;
  top: 1px;
  transition: all .3s ease-in-out;
  width: 12px;
  height: 12px;
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-btn-arrow-orange.svg);
}

.btn-link.icon.calendar:before {
  top: 0;
  width: 13px;
  height: 15px;
  background-size: 13px 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-calendar.svg);
}

.btn-link:hover,
.btn-link:focus {
  color: #0C2A40;
  text-decoration: none;
}

.btn-link:hover:not(.icon):before,
.btn-link:focus:not(.icon):before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.pagination-wrapper ul.page-numbers {
  padding-top: 20px;
  margin-bottom: 30px;
}

.pagination-wrapper .page-numbers {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.pagination-wrapper .page-numbers li .page-numbers {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 45px;
  background-color: transparent;
  border-radius: 5px;
  color: #3d5566;
  font-family: 'futura-pt', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin: 0 15px;
}

.pagination-wrapper .page-numbers li .page-numbers .arrow-list-icon {
  position: relative;
  width: 25px;
  height: 36px;
}

.pagination-wrapper .page-numbers li .page-numbers .arrow-list-icon:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  margin: 0 auto;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all .3s ease-in-out;
}

.pagination-wrapper .page-numbers li .page-numbers.next {
  background-color: transparent;
}

.pagination-wrapper .page-numbers li .page-numbers.next .arrow-list-icon:after {
  width: 17px;
  height: 14px;
  background-size: 17px 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-pagination-next.svg);
}

.pagination-wrapper .page-numbers li .page-numbers.prev {
  background-color: transparent;
}

.pagination-wrapper .page-numbers li .page-numbers.prev .arrow-list-icon:after {
  width: 17px;
  height: 14px;
  background-size: 17px 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-pagination-prev.svg);
}

.pagination-wrapper .page-numbers li .current {
  position: relative;
  width: 45px;
  background-color: #FFA400;
  color: #fff;
}

.pagination-wrapper .page-numbers li a {
  text-decoration: none;
}

.preloader-ajax {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  height: 100%;
  background-color: rgba(88, 96, 131, 0.05);
  text-align: center;
}

.preloader-ajax .preloader-zenith {
  position: absolute;
  top: 45%;
  left: 0;
  right: 0;
  width: 49px;
  height: 49px;
  margin: 0 auto;
  border-radius: 50%;
  border-top-color: transparent;
  border-left-color: transparent;
  border-right-color: transparent;
  box-shadow: 3px 3px 1px #FFA400;
  -webkit-animation: cssload-spin 690ms infinite linear;
  animation: cssload-spin 690ms infinite linear;
}

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

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

.header-small-slider-wrapper {
  position: relative;
  margin-bottom: calc( 50px - 30px);
}

.header-small-slider-wrapper:before {
  width: auto;
  height: auto;
  background-size: auto auto;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/el-image-highlight.svg);
  content: '';
  position: absolute;
  top: 40px;
  bottom: -15px;
  left: -15px;
  right: 35px;
  max-width: 70%;
  background-size: cover;
}

.header-small-slider-wrapper .slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  transition: all .3s ease-in-out;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.header-small-slider-wrapper .slick-arrow.slick-disabled {
  opacity: 0;
  visibility: hidden;
}

.header-small-slider-wrapper .slick-arrow.slick-prev {
  left: 0;
}

.header-small-slider-wrapper .slick-arrow.slick-next {
  right: 0;
}

.header-small-slider {
  position: relative;
  z-index: 2;
}

.header-small-slider .slick-list {
  overflow: hidden;
}

@media (max-width: 1199px) {
  .header-small-slider .slick-list {
    padding-right: 10%;
  }
}

.header-small-slider .slick-track {
  display: -ms-flexbox;
  display: flex;
}

.header-small-slider .slick-track .slick-slide {
  height: inherit;
  margin-right: 30px;
}

.header-small-slider .slick-track .slick-slide:first-child .image-wrapper {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.header-small-slider .image-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 300px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.product-table-wrapper {
  overflow-x: auto;
}

.product-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #BDC6CC;
  border-radius: 5px;
  margin-bottom: 30px;
}

.product-table tr {
  padding-left: 10px;
  padding-right: 10px;
}

.product-table thead tr:first-child td:first-child {
  border-top-left-radius: 5px;
}

.product-table thead tr:first-child td:last-child {
  border-top-right-radius: 5px;
}

.product-table thead td {
  font-family: 'futura-pt', sans-serif;
  font-weight: 700;
  padding: 15px 15px;
}

.product-table thead .heading-1 {
  background-color: #123147;
}

.product-table thead .heading-1 td {
  color: #fff;
  font-size: 18px;
}

.product-table thead .heading-2 {
  background-color: #BDC6CC;
}

.product-table thead .heading-2 td {
  font-size: 16px;
}

.product-table thead .heading-3 {
  background-color: #dee3e5;
}

.product-table thead .heading-3 td {
  font-size: 15px;
  padding: 10px 15px;
}

.product-table tbody tr:nth-child(odd) {
  background-color: #fff;
}

.product-table tbody tr:nth-child(even) {
  background-color: #eff1f2;
}

.product-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 5px;
}

.product-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 5px;
}

.product-table tbody td {
  font-size: 14px;
  padding: 10px 15px;
}

.product-table a {
  color: #3d5566;
}

.product-table a:hover {
  color: #FFA400;
}

.wp-block-embed__wrapper {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
}

.wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.language-switcher-holder {
  display: inline-block;
  margin-left: 15px;
}

.language-switcher-holder .wpml-ls-legacy-dropdown {
  width: auto;
  text-transform: uppercase;
}

.language-switcher-holder .wpml-ls-legacy-dropdown .wpml-ls-current-language:hover > a {
  color: #fff;
  background-color: transparent;
}

.language-switcher-holder .wpml-ls-legacy-dropdown span {
  vertical-align: initial;
}

.language-switcher-holder .wpml-ls-legacy-dropdown:hover a.wpml-ls-item-toggle {
  border-radius: 5px 5px 0 0;
}

.language-switcher-holder .wpml-ls-legacy-dropdown a.wpml-ls-item-toggle {
  max-height: 45px;
  background-color: transparent;
  border: 2px solid #FFA400;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding-top: 13px;
  padding-bottom: 16px;
  padding-left: 14px;
}

.language-switcher-holder .wpml-ls-legacy-dropdown a.wpml-ls-item-toggle span {
  font: inherit;
}

.language-switcher-holder .wpml-ls-legacy-dropdown a.wpml-ls-item-toggle:after {
  top: 18px;
  border: none !important;
  width: 10px;
  height: 6px;
  background-size: 10px 6px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-chevron-down-white.svg);
}

.language-switcher-holder .wpml-ls-legacy-dropdown a.wpml-ls-item-toggle:hover {
  background-color: transparent;
  border-radius: 5px 5px 0 0;
  color: #fff;
}

.language-switcher-holder .wpml-ls-sub-menu {
  border: none !important;
}

.wpml-ls-legacy-list-horizontal {
  padding: 0;
}

.wpml-ls-legacy-list-horizontal ul li {
  color: #d0d6da;
}

.wpml-ls-legacy-list-horizontal ul li a {
  display: inline-block;
  color: inherit;
  font-size: 15px;
  padding: 0;
}

.wpml-ls-legacy-list-horizontal ul li a:hover {
  color: inherit;
}

.wpml-ls-legacy-list-horizontal ul li + li:before {
  content: '/';
  display: inline-block;
  color: inherit;
  margin: 0 2px 0 4px;
  vertical-align: middle;
}

.header-container-custom {
  max-width: 1495px;
}

.lottie-main-logo {
  width: 131px;
  max-width: 131px;
}

.main-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  padding: 15px 0;
}

.main-header.fixed {
  position: fixed;
  top: 0;
  transition: all .4s ease-in-out;
  will-change: transform;
}

.main-header.fixed.headroom--pinned {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.main-header.fixed.headroom--unpinned {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

.main-header.fixed.headroom--not-top,
.main-header.fixed.has-sub-nav-active {
  background-color: #123147;
}

.main-header.fixed .logo,
.main-header.fixed .controls-wrapper {
  position: relative;
  z-index: 2;
}

.main-header.active,
.main-header.active-mobile-nav {
  background-color: #123147;
}

.main-header .main-header-inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.main-header .main-header-inner .right-part-holder {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 1199px) {
  .main-header .main-nav-container {
    display: none;
  }
}

.main-header .controls-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  margin-left: auto;
}

.main-header .controls-wrapper .header-phone {
  margin-left: 12px;
}

.main-header .controls-wrapper .header-btn {
  margin-left: 12px;
}

@media (max-width: 767px) {
  .main-header .controls-wrapper .header-btn {
    display: none;
  }
}

.ham-icon-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 50px;
  height: 17px;
}

.ham-icon {
  position: relative;
  width: 20px;
  height: 16px;
  -webkit-transform: rotate(0);
  transform: rotate(0);
  cursor: pointer;
  text-align: center;
}

.ham-icon span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #FFA400;
  opacity: 1;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.ham-icon span:nth-child(1) {
  top: 0;
}

.ham-icon span:nth-child(2),
.ham-icon span:nth-child(3) {
  top: 7px;
}

.ham-icon span:nth-child(4) {
  top: 14px;
}

.ham-icon.open:after {
  content: '';
  display: inline-block;
}

.ham-icon.open span {
  left: 0;
}

.ham-icon.open span:nth-child(1) {
  top: 7px;
  left: 50%;
  width: 0;
}

.ham-icon.open span:nth-child(2) {
  top: 7px;
  width: 100%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.ham-icon.open span:nth-child(3) {
  top: 7px;
  width: 100%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.ham-icon.open span:nth-child(4) {
  top: 7px;
  left: 50%;
  width: 0;
}

body .gform_wrapper.gravity-theme {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

body .gform_wrapper.gravity-theme .gform_title {
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  body .gform_wrapper.gravity-theme .gfield:not(.gfield--width-full) {
    grid-column: 1/-1;
  }
}

body .gform_wrapper.gravity-theme .gform_fields {
  grid-column-gap: 30px;
  grid-row-gap: 26px;
}

@media (max-width: 640px) {
  body .gform_wrapper.gravity-theme .gform_fields {
    grid-column-gap: 0;
  }
}

body .gform_wrapper.gravity-theme input[type=color],
body .gform_wrapper.gravity-theme input[type=date],
body .gform_wrapper.gravity-theme input[type=datetime-local],
body .gform_wrapper.gravity-theme input[type=datetime],
body .gform_wrapper.gravity-theme input[type=email],
body .gform_wrapper.gravity-theme input[type=month],
body .gform_wrapper.gravity-theme input[type=number],
body .gform_wrapper.gravity-theme input[type=password],
body .gform_wrapper.gravity-theme input[type=search],
body .gform_wrapper.gravity-theme input[type=tel],
body .gform_wrapper.gravity-theme input[type=text],
body .gform_wrapper.gravity-theme input[type=time],
body .gform_wrapper.gravity-theme input[type=url],
body .gform_wrapper.gravity-theme input[type=week],
body .gform_wrapper.gravity-theme select,
body .gform_wrapper.gravity-theme textarea {
  background-color: #fff;
  border: 1px solid #F3F5F6;
  border-radius: 6px;
  color: #3d5566;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  outline: none;
  padding: 8px 22px;
  transition: border-color .2s ease-in-out;
}

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

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

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

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

body .gform_wrapper.gravity-theme input[type=color]:focus,
body .gform_wrapper.gravity-theme input[type=date]:focus,
body .gform_wrapper.gravity-theme input[type=datetime-local]:focus,
body .gform_wrapper.gravity-theme input[type=datetime]:focus,
body .gform_wrapper.gravity-theme input[type=email]:focus,
body .gform_wrapper.gravity-theme input[type=month]:focus,
body .gform_wrapper.gravity-theme input[type=number]:focus,
body .gform_wrapper.gravity-theme input[type=password]:focus,
body .gform_wrapper.gravity-theme input[type=search]:focus,
body .gform_wrapper.gravity-theme input[type=tel]:focus,
body .gform_wrapper.gravity-theme input[type=text]:focus,
body .gform_wrapper.gravity-theme input[type=time]:focus,
body .gform_wrapper.gravity-theme input[type=url]:focus,
body .gform_wrapper.gravity-theme input[type=week]:focus,
body .gform_wrapper.gravity-theme select:focus,
body .gform_wrapper.gravity-theme textarea:focus {
  border-color: #BCBCC2;
}

body .gform_wrapper.gravity-theme .gfield_required_asterisk {
  color: #f01c1c;
  font-size: 14px;
}

body .gform_wrapper.gravity-theme .ginput_container_fileupload {
  color: #123147;
}

body .gform_wrapper.gravity-theme .gfield_label {
  color: #3d5566;
  font-family: 'futura-pt', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 9px;
  text-transform: uppercase;
}

body .gform_wrapper.gravity-theme .gfield select {
  background-image: url(../../resources/images/svg/icon-chevron-down.svg);
  background-position: calc( 100% - 24px) 50%;
  background-repeat: no-repeat;
  background-size: 14px 10px;
  padding-right: 64px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

body .gform_wrapper.gravity-theme .ginput_container_date input {
  width: 100%;
  background-image: url(../../resources/images/svg/icon-calendar.svg);
  background-position: calc( 100% - 24px) 50%;
  background-repeat: no-repeat;
  background-size: 15px 16px;
  padding-right: 54px;
}

body .gform_wrapper.gravity-theme .ginput_complex label,
body .gform_wrapper.gravity-theme .ginput_complex legend {
  font-size: 14px;
  line-height: 1;
}

body .gform_wrapper.gravity-theme .ginput_complex .ginput_container_date {
  -ms-flex-preferred-size: fit-content;
  flex-basis: fit-content;
}

body .gform_wrapper.gravity-theme .ginput_complex .ginput_container_date select {
  background-position: calc( 100% - 18px) 50%;
}

body .gform_wrapper.gravity-theme .ginput_container_textarea {
  position: relative;
}

body .gform_wrapper.gravity-theme .ginput_container_textarea textarea {
  display: block;
  padding-bottom: 45px;
}

body .gform_wrapper.gravity-theme .ginput_container_textarea .ginput_counter {
  position: absolute;
  bottom: 15px;
  right: 15px;
  color: #3d5566;
  font-size: 12px;
  font-weight: 500;
  text-align: right;
}

body .gform_wrapper.gravity-theme .gfield_checkbox,
body .gform_wrapper.gravity-theme .gfield_radio {
  margin: 0;
}

body .gform_wrapper.gravity-theme .gfield_checkbox .gchoice,
body .gform_wrapper.gravity-theme .gfield_radio .gchoice {
  overflow: visible;
}

body .gform_wrapper.gravity-theme .gfield_checkbox .gchoice input[type='checkbox'],
body .gform_wrapper.gravity-theme .gfield_checkbox .gchoice input[type='radio'],
body .gform_wrapper.gravity-theme .gfield_radio .gchoice input[type='checkbox'],
body .gform_wrapper.gravity-theme .gfield_radio .gchoice input[type='radio'] {
  display: none;
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

body .gform_wrapper.gravity-theme .gfield_checkbox .gchoice label,
body .gform_wrapper.gravity-theme .gfield_radio .gchoice label {
  position: relative;
  color: #123147;
  font-size: 14px;
  font-weight: 500;
  margin-top: 0;
  margin-left: 0;
  padding-left: 30px;
}

body .gform_wrapper.gravity-theme .gfield_checkbox .gchoice label .checkbox,
body .gform_wrapper.gravity-theme .gfield_checkbox .gchoice label .radio,
body .gform_wrapper.gravity-theme .gfield_radio .gchoice label .checkbox,
body .gform_wrapper.gravity-theme .gfield_radio .gchoice label .radio {
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 3px;
  left: 0;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border-radius: 0;
  border: 1px solid #e8e8ef;
}

body .gform_wrapper.gravity-theme .gfield_checkbox .gchoice input[type='checkbox']:checked + label .checkbox:after {
  content: '';
  margin: auto;
  width: 10px;
  height: 8px;
  background-size: 10px 8px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-check.svg);
}

body .gform_wrapper.gravity-theme .gfield_radio .gchoice input[type='radio']:checked + label .radio:after {
  content: '';
  width: 8px;
  height: 8px;
  background-color: #FFA400;
  border-radius: 50%;
  margin: auto;
}

body .gform_wrapper.gravity-theme .gfield_radio .gchoice label .radio {
  border-radius: 50%;
}

body .gform_wrapper.gravity-theme .ginput_container_consent input[type='checkbox'] {
  display: none;
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

body .gform_wrapper.gravity-theme .ginput_container_consent input[type='checkbox'] + label {
  position: relative;
  padding-left: 30px;
  font-size: 14px;
  font-weight: 500;
}

body .gform_wrapper.gravity-theme .ginput_container_consent input[type='checkbox'] + label .checkbox {
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border-radius: 0;
  border: 1px solid #e8e8ef;
}

body .gform_wrapper.gravity-theme .ginput_container_consent input[type='checkbox']:checked + label .checkbox:before {
  content: '';
  margin: auto;
  width: 10px;
  height: 8px;
  background-size: 10px 8px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-check.svg);
}

body .gform_wrapper.gravity-theme .gform_drop_area {
  border: 1px solid #f1f1f1;
  background-color: #fff;
}

body .gform_wrapper.gravity-theme .gform_button_select_files {
  display: inline-block;
  position: relative;
  background-color: #FFA400;
  border: 2px solid #FFA400;
  border-radius: 5px;
  color: #fff;
  font-family: 'futura-pt', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  outline: none;
  padding: 12px 25px;
  text-transform: uppercase;
  transition: all .3s ease-in-out;
  padding: 12px 48px 12px 25px;
  background-color: transparent;
}

body .gform_wrapper.gravity-theme .gform_button_select_files span {
  color: inherit;
  font: inherit;
}

body .gform_wrapper.gravity-theme .gform_button_select_files.arrow {
  padding: 12px 48px 12px 25px;
}

body .gform_wrapper.gravity-theme .gform_button_select_files.arrow:before {
  content: '';
  position: absolute;
  right: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all .3s ease-in-out;
  width: 12px;
  height: 12px;
  -webkit-mask-size: 12px 12px;
  mask-size: 12px 12px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-image: url(../../resources/images/svg/icon-btn-arrow.svg);
  mask-image: url(../../resources/images/svg/icon-btn-arrow.svg);
  background-color: #fff;
}

body .gform_wrapper.gravity-theme .gform_button_select_files.arrow:hover {
  color: #fff;
}

body .gform_wrapper.gravity-theme .gform_button_select_files.arrow:hover:before {
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

body .gform_wrapper.gravity-theme .gform_button_select_files:before {
  content: '';
  position: absolute;
  right: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all .3s ease-in-out;
  width: 12px;
  height: 12px;
  -webkit-mask-size: 12px 12px;
  mask-size: 12px 12px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-image: url(../../resources/images/svg/icon-btn-arrow.svg);
  mask-image: url(../../resources/images/svg/icon-btn-arrow.svg);
  background-color: #fff;
}

body .gform_wrapper.gravity-theme .gform_button_select_files:hover {
  color: #fff;
}

body .gform_wrapper.gravity-theme .gform_button_select_files:hover:before {
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

body .gform_wrapper.gravity-theme .gform_button_select_files.btn-ghost {
  background-color: transparent;
}

body .gform_wrapper.gravity-theme .gform_button_select_files.btn-ghost:hover {
  border-color: #FFA400;
  background-color: #FFA400;
}

body .gform_wrapper.gravity-theme .gform_button_select_files:hover {
  border-color: #FFA400;
  background-color: #FFA400;
}

body .gform_wrapper.gravity-theme .gform_button_select_files:hover {
  color: #fff;
  background-color: #E19100;
  border-color: #E19100;
}

body .gform_wrapper.gravity-theme .gform_button_select_files {
  color: #FFA400;
}

body .gform_wrapper.gravity-theme .gform_button_select_files:hover,
body .gform_wrapper.gravity-theme .gform_button_select_files:focus {
  color: #fff;
}

body .gform_wrapper.gravity-theme .gform_button_select_files:hover:before,
body .gform_wrapper.gravity-theme .gform_button_select_files:focus:before {
  background-color: #fff;
}

body .gform_wrapper.gravity-theme .gform_button_select_files:before {
  background-color: #FFA400;
}

body .gform_wrapper.gravity-theme .gform_footer,
body .gform_wrapper.gravity-theme .gform_page_footer {
  margin-top: 0;
  padding-top: 25px;
  padding-bottom: 0;
}

body .gform_wrapper.gravity-theme .gform_footer button,
body .gform_wrapper.gravity-theme .gform_footer input,
body .gform_wrapper.gravity-theme .gform_page_footer button,
body .gform_wrapper.gravity-theme .gform_page_footer input {
  margin-bottom: 0;
}

body .gform_wrapper.gravity-theme .gfield_error.gfield_contains_required .gfield_label {
  color: #f01c1c;
}

body .gform_wrapper.gravity-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: #f01c1c;
  padding-right: 64px;
}

body .gform_wrapper.gravity-theme .gfield_error.gfield_contains_required textarea {
  border-color: #f01c1c;
}

body .gform_wrapper.gravity-theme .gfield_error.gfield_contains_required select {
  border-color: #f01c1c;
}

body .gform_wrapper.gravity-theme.gform_validation_error .gfield:not(.gfield_error) input:not([value=""]):not([type="file"]) {
  border-color: #20d452;
  background-image: url(../../resources/images/svg/icon-check-green.svg);
  background-position: calc( 100% - 24px) 50%;
  background-repeat: no-repeat;
  background-size: 16px 12px;
}

body .gform_wrapper.gravity-theme.gform_validation_error .gfield:not(.gfield_error) textarea:not(:empty) {
  border-color: #20d452;
}

body .gform_wrapper.gravity-theme.gform_validation_error .gfield:not(.gfield_error) select:not(.no-value) {
  border-color: #20d452;
}

@media only screen and (max-width: 641px) {
  body .gform_wrapper.gravity-theme input:not([type=radio]):not([type=checkbox]):not([type=image]):not([type="file"]) {
    line-height: 1;
  }
}

body .gform_wrapper.gravity-theme .gf_simple_horizontal {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}

@media (max-width: 767px) {
  body .gform_wrapper.gravity-theme .gf_simple_horizontal {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

body .gform_wrapper.gravity-theme .gf_simple_horizontal .gform_body,
body .gform_wrapper.gravity-theme .gf_simple_horizontal .gform_footer.top_label {
  vertical-align: top;
}

body .gform_wrapper.gravity-theme .gf_simple_horizontal .gform_body {
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

@media (max-width: 767px) {
  body .gform_wrapper.gravity-theme .gf_simple_horizontal .gform_body {
    margin-bottom: 15px;
  }
}

body .gform_wrapper.gravity-theme .gf_simple_horizontal .gform_body .top_label {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #d0d6da;
}

body .gform_wrapper.gravity-theme .gf_simple_horizontal .gform_body .top_label .gfield {
  padding-right: 25px;
}

body .gform_wrapper.gravity-theme .gf_simple_horizontal .gform_body .top_label .gfield .large,
body .gform_wrapper.gravity-theme .gf_simple_horizontal .gform_body .top_label .gfield .medium,
body .gform_wrapper.gravity-theme .gf_simple_horizontal .gform_body .top_label .gfield .small {
  min-height: 45px !important;
}

body .gform_wrapper.gravity-theme .gf_simple_horizontal .gform_body .top_label .gfield input[type='email'] {
  background-image: url(../../resources/images/svg/icon-email-field.svg);
  background-position: 20px 50%;
  background-repeat: no-repeat;
  background-size: 15px 15px;
  padding-left: 50px;
}

@media (max-width: 767px) {
  body .gform_wrapper.gravity-theme .gf_simple_horizontal .gform_body .top_label .gfield {
    padding-right: 0;
  }
}

body .gform_wrapper.gravity-theme .gf_simple_horizontal .gform_footer.top_label {
  max-width: 100%;
}

@media (max-width: 767px) {
  body .gform_wrapper.gravity-theme .gf_simple_horizontal .gform_footer.top_label .btn {
    width: 100%;
  }
}

body .gform_wrapper.gravity-theme .gf_simple_horizontal .gfield_description:not(.validation_message) {
  position: static;
  top: auto;
  left: auto;
  width: auto;
  height: auto;
  font-size: 80%;
  opacity: 0.9;
  overflow: initial;
  margin-top: 2px;
  padding-top: 0;
}

body .gform_wrapper.gravity-theme .product-form .gf_page_steps {
  display: none;
}

body .gform_wrapper.gravity-theme .product-form .gform_previous_button,
body .gform_wrapper.gravity-theme .product-form .gform_next_button {
  position: absolute;
  visibility: hidden;
  opacity: 0;
}

body .gform_wrapper.gravity-theme .gfield-label-left {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

body .gform_wrapper.gravity-theme .gfield-label-left label {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 17px;
  margin-bottom: 0;
}

body .gform_wrapper.gravity-theme .gfield-label-left label + div {
  -ms-flex-positive: 1;
  flex-grow: 1;
}

body .gform_wrapper.gravity-theme .has-top-offset {
  margin-top: 10px;
}

body .gform_wrapper.gravity-theme .has-title-offset h1,
body .gform_wrapper.gravity-theme .has-title-offset h2,
body .gform_wrapper.gravity-theme .has-title-offset h3,
body .gform_wrapper.gravity-theme .has-title-offset h4,
body .gform_wrapper.gravity-theme .has-title-offset h5,
body .gform_wrapper.gravity-theme .has-title-offset h6 {
  margin-bottom: -15px;
}

body .gform_wrapper.gravity-theme .align-image-center {
  text-align: center;
}

.gform_confirmation_message {
  color: #d0d6da;
}

.request-form {
  width: 100%;
}

.request-form .gform_wrapper.gravity-theme .gform_heading {
  display: none;
}

.request-form .gform_wrapper.gravity-theme .gform_footer {
  -ms-flex-pack: center;
  justify-content: center;
}

.request-form .gform_wrapper.gravity-theme .gfield_label {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
}

.request-form .gform_wrapper.gravity-theme input[type="text"],
.request-form .gform_wrapper.gravity-theme input[type="email"],
.request-form .gform_wrapper.gravity-theme input[type="tel"] {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #BCBCBC;
  padding: 0;
}

.request-form .gform_wrapper.gravity-theme input[type="text"]::-webkit-input-placeholder,
.request-form .gform_wrapper.gravity-theme input[type="email"]::-webkit-input-placeholder,
.request-form .gform_wrapper.gravity-theme input[type="tel"]::-webkit-input-placeholder {
  color: #BCBCBC;
  font-size: 16px;
  font-weight: 300;
}

.request-form .gform_wrapper.gravity-theme input[type="text"]::-moz-placeholder,
.request-form .gform_wrapper.gravity-theme input[type="email"]::-moz-placeholder,
.request-form .gform_wrapper.gravity-theme input[type="tel"]::-moz-placeholder {
  color: #BCBCBC;
  font-size: 16px;
  font-weight: 300;
}

.request-form .gform_wrapper.gravity-theme input[type="text"]:-ms-input-placeholder,
.request-form .gform_wrapper.gravity-theme input[type="email"]:-ms-input-placeholder,
.request-form .gform_wrapper.gravity-theme input[type="tel"]:-ms-input-placeholder {
  color: #BCBCBC;
  font-size: 16px;
  font-weight: 300;
}

.request-form .gform_wrapper.gravity-theme input[type="text"]::-ms-input-placeholder,
.request-form .gform_wrapper.gravity-theme input[type="email"]::-ms-input-placeholder,
.request-form .gform_wrapper.gravity-theme input[type="tel"]::-ms-input-placeholder {
  color: #BCBCBC;
  font-size: 16px;
  font-weight: 300;
}

.request-form .gform_wrapper.gravity-theme input[type="text"]::placeholder,
.request-form .gform_wrapper.gravity-theme input[type="email"]::placeholder,
.request-form .gform_wrapper.gravity-theme input[type="tel"]::placeholder {
  color: #BCBCBC;
  font-size: 16px;
  font-weight: 300;
}

.request-form .gform_wrapper.gravity-theme .gform_footer {
  padding-top: 56px;
}

.request-form .gform_wrapper.gravity-theme .gform_validation_errors {
  display: none;
}

body .gform_wrapper.gravity-theme .gform_validation_errors {
  background-color: #fddddd;
  border: 1px solid #f01c1c;
  border-radius: 5px;
  box-shadow: none;
  padding: 23px 27px;
  margin: 0 0 25px;
}

body .gform_wrapper.gravity-theme .gform_validation_errors h2 {
  color: #ff1717;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: initial;
}

body .gform_wrapper.gravity-theme .gform_validation_errors .gform-icon--close {
  display: none !important;
}

body .gform_wrapper.gravity-theme .gform_validation_errors ol li {
  color: #ff1717;
}

body .gform_wrapper.gravity-theme .gform_validation_errors ol li a {
  color: inherit;
}

body .gform_wrapper.gravity-theme .gfield_validation_message,
body .gform_wrapper.gravity-theme .validation_message {
  background-color: transparent;
  border: none;
  color: #f01c1c;
  font-size: 14px !important;
  font-weight: 500;
  padding: 0 !important;
}

.main-footer {
  background: linear-gradient(180deg, #F3F5F6 0%, #DADADA 100%);
}

.main-footer .footer-top-part {
  padding-top: 100px;
}

.main-footer .footer-content-columns {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
}

.main-footer .footer-content-columns .footer-content-column {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.main-footer .footer-content-column {
  margin-bottom: 30px;
}

.main-footer .footer-content-column .footer-colum-title {
  font-weight: 700;
}

.main-footer .footer-content-column .content-wrapper {
  font-size: 18px;
  line-height: 1.7;
}

.main-footer .footer-content-column .content-wrapper p {
  font: inherit;
}

.main-footer .footer-content-column .content-wrapper a {
  color: inherit;
}

.main-footer .footer-bottom-part .footer-inner {
  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;
  border-top: 1px solid #CACBCB;
  padding-top: 20px;
}

@media (max-width: 991px) {
  .main-footer .footer-bottom-part .footer-inner {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.main-footer .footer-bottom-part .footer-inner .custom-col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  padding-bottom: 20px;
}

.main-footer .footer-bottom-part .footer-inner .custom-col.copyright-col {
  -ms-flex-positive: 1;
  flex-grow: 1;
}

@media (max-width: 991px) {
  .main-footer .footer-bottom-part .footer-inner .custom-col.copyright-col {
    -ms-flex-order: 3;
    order: 3;
  }
}

.main-footer .footer-bottom-part .footer-inner .custom-col.menu-col {
  -ms-flex-positive: 2;
  flex-grow: 2;
  padding-left: 15px;
  padding-right: 15px;
}

@media (max-width: 991px) {
  .main-footer .footer-bottom-part .footer-inner .custom-col.menu-col {
    -ms-flex-order: 1;
    order: 1;
  }
}

.main-footer .footer-bottom-part .footer-inner .custom-col.lang-col {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

@media (max-width: 991px) {
  .main-footer .footer-bottom-part .footer-inner .custom-col.lang-col {
    -ms-flex-order: 2;
    order: 2;
  }
}

.main-footer .copyright {
  color: #464A4D;
  font-size: 15px;
}

.footer-pay-off {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #fff;
  font-family: 'futura-pt', sans-serif;
  font-size: 40px;
  line-height: 1;
  margin-bottom: 23px;
  text-align: center;
  text-transform: uppercase;
}

.footer-pay-off span {
  font-family: inherit;
}

.footer-pay-off b,
.footer-pay-off strong {
  color: #FFA400;
}

.socials-wrapper {
  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;
  -webkit-column-gap: 5px;
  -moz-column-gap: 5px;
  column-gap: 5px;
}

.socials-wrapper .social {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 45px;
  height: 45px;
  background-color: #F1F2F2;
  border: 2px solid #F8F8F9;
  border-radius: 5px;
  text-decoration: none;
  transition: all .3s ease-in-out;
}

.socials-wrapper .social:before {
  content: '';
  margin: auto;
  transition: all .3s ease-in-out;
}

.main-nav {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 25px;
  -moz-column-gap: 25px;
  column-gap: 25px;
}

.main-nav .sub-menu {
  display: none !important;
}

.main-nav .menu-item {
  padding: 65px 0;
  line-height: 1;
}

.main-nav .menu-item a {
  color: #fff;
  font-family: 'futura-pt', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all .3s ease-in-out;
}

.main-nav .menu-item a:hover {
  color: #FFA400;
  text-decoration: none;
}

.main-nav .menu-item.menu-item-has-children-custom a {
  position: relative;
  padding-right: 20px;
}

.main-nav .menu-item.menu-item-has-children-custom a:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transition: all .3s ease-in-out;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 10px;
  height: 6px;
  background-size: 10px 6px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-chevron-down.svg);
}

.main-nav .menu-item.menu-item-has-children-custom:hover > a,
.main-nav .menu-item.menu-item-has-children-custom.active > a {
  color: #FFA400;
}

.main-nav .menu-item.menu-item-has-children-custom:hover > a:after,
.main-nav .menu-item.menu-item-has-children-custom.active > a:after {
  -webkit-transform: translateY(-50%) rotate(-180deg);
  transform: translateY(-50%) rotate(-180deg);
}

.sub-menu-container {
  --container-offset: 65px;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1;
  width: 100%;
  background-color: #123147;
  background-image: url(../../resources/images/svg/sub-menu-el.svg);
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: 80px 260px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(calc( var( --container-offset ) * -1));
  transform: translateY(calc( var( --container-offset ) * -1));
  transition: -webkit-transform .3s ease-in-out;
  transition: transform .3s ease-in-out;
  transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
}

.sub-menu-container.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(calc( var( --container-offset ) * -1));
  transform: translateY(calc( var( --container-offset ) * -1));
  transition: visibility .3s ease-in-out .1s, opacity .3s ease-in-out .1s, -webkit-transform .3s ease-in-out;
  transition: visibility .3s ease-in-out .1s, opacity .3s ease-in-out .1s, transform .3s ease-in-out;
  transition: visibility .3s ease-in-out .1s, opacity .3s ease-in-out .1s, transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
}

.sub-menu-container .sub-menu-holder {
  border-radius: 5px;
  box-shadow: 0 4px 4px 0px rgba(49, 71, 84, 0.05);
  padding: calc( 10px + var( --container-offset )) 0 20px;
}

.sub-menu-container .sub-menu-holder > .sub-menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 16px;
  margin: 0 -15px;
}

.sub-menu-container .sub-menu-holder > .sub-menu a:not(.btn) {
  display: block;
  color: #fff;
  text-decoration: none;
}

.sub-menu-container .sub-menu-holder > .sub-menu a:not(.btn):hover {
  color: #FFA400;
  text-decoration: none;
}

.sub-menu-container .sub-menu-holder > .sub-menu a:not(.btn) .description {
  display: none;
}

.sub-menu-container .sub-menu-holder > .sub-menu .description {
  display: inline-block;
  color: #c4cbd1;
  line-height: 1.68;
}

.sub-menu-container .sub-menu-holder > .sub-menu .button-wrapper {
  margin-top: auto;
  padding-top: 20px;
}

.sub-menu-container .sub-menu-holder > .sub-menu > .menu-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 25%;
  padding: 0 15px;
  margin-bottom: 30px;
}

.sub-menu-container .sub-menu-holder > .sub-menu > .menu-item > a {
  display: block;
  border-bottom: 1px solid #FFA400;
  font-family: 'futura-pt', sans-serif;
  font-size: 18px;
  line-height: 1;
  margin-bottom: 30px;
  padding-bottom: 15px;
  text-transform: uppercase;
}

.sub-menu-container .sub-menu-holder > .sub-menu .sub-menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.sub-menu-container .sub-menu-holder > .sub-menu .sub-menu .menu-item {
  line-height: 1;
}

.sub-menu-container .sub-menu-holder > .sub-menu .sub-menu .menu-item + .menu-item {
  margin-top: 20px;
}

.sub-menu-container .sub-menu-holder > .sub-menu .sub-menu .menu-item > a {
  display: inline-block;
  font-family: 'futura-pt', sans-serif;
}

.sub-menu-container .sub-menu-holder > .sub-menu .sub-menu .menu-item > a + .description {
  padding-top: 5px;
}

.mobile-nav-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 998;
  width: 100%;
  height: 100%;
  background-color: #123147;
  border-bottom: 5px solid #FFA400;
  overflow: auto;
  padding: 0 0 30px;
}

.mobile-nav-container .mobile-nav-holder {
  transition: all .3s ease-in-out;
}

.mobile-nav {
  list-style-type: none;
  margin: 0 0 0;
  padding: 14px 0 30px;
}

.mobile-nav > .menu-item > a {
  font-family: 'futura-pt', sans-serif;
  text-transform: uppercase;
}

.mobile-nav .menu-item {
  position: relative;
  border-bottom: 1px solid #7484a0;
  line-height: 1.3;
}

.mobile-nav .menu-item:last-child {
  border-bottom: none;
}

.mobile-nav .menu-item .arrow {
  display: none;
  position: absolute;
  width: 20px;
  height: 20px;
  top: 25px;
  right: 0;
  z-index: 1;
  transition: all .4s ease-in-out;
}

.mobile-nav .menu-item .arrow:after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 10px;
  height: 6px;
  background-size: 10px 6px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-chevron-down.svg);
}

.mobile-nav .menu-item .description {
  display: none;
  color: #fff;
  font-size: 15px;
}

.mobile-nav .menu-item .button-wrapper {
  display: none;
}

.mobile-nav .menu-item a {
  display: inline-block;
  position: relative;
  color: #fff;
  font-size: 17px;
  z-index: 2;
  padding: 12px 0;
  text-decoration: none;
}

.mobile-nav .menu-item.menu-item-has-children > .arrow {
  display: block;
}

.mobile-nav .menu-item.menu-item-has-children > .arrow.active {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.mobile-nav .menu-item.menu-item-has-children.active > a {
  color: #FFA400;
}

.mobile-nav > .menu-item > a {
  padding: 23px 0;
}

.mobile-nav .sub-menu {
  display: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.mobile-nav .sub-menu .menu-item {
  border-bottom: 1px solid #7484a0;
}

.mobile-nav .sub-menu .menu-item:first-child {
  border-top: 1px solid #7484a0;
}

.mobile-nav .sub-menu .menu-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.mobile-nav .sub-menu .menu-item a {
  font-size: 14px;
  font-weight: 300;
}

.mobile-nav .sub-menu .menu-item .arrow {
  top: 12px;
}

.footer-nav {
  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;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.footer-nav .menu-item {
  padding: 0 10px;
}

.footer-nav .menu-item a {
  color: #464A4D;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
}

.footer-nav .menu-item a:hover,
.footer-nav .menu-item a:focus {
  text-decoration: underline;
}

.search-form-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  justify-content: flex-end;
  position: relative;
  margin-left: 15px;
}

.search-form-header .search-input {
  position: absolute;
  right: 45px;
  width: 250px;
  max-width: calc( 100vw - 181px);
  height: 100%;
  border: none;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  outline: none;
  opacity: 0;
  padding: 10px 5px;
  visibility: hidden;
  transition: all .3s ease-in-out;
}

.search-form-header .search-btn {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 2;
  width: 45px;
  height: 45px;
  background-color: transparent;
  border: 2px solid #FFA400;
  border-radius: 5px;
  margin: 0;
  padding: 0;
}

.search-form-header .search-btn:after {
  content: '';
  margin: auto;
  width: 19px;
  height: 19px;
  background-size: 19px 19px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-search.svg);
}

.search-form-header.active .search-input {
  opacity: 1;
  padding-right: 40px;
  visibility: visible;
}

.search-form-header.active .search-btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.breadcrumbs-holder {
  background-color: #fff;
}

.breadcrumbs {
  border-bottom: 1px solid #F3F5F6;
  padding: 13px 0;
}

.breadcrumbs a,
.breadcrumbs span {
  color: #8898A3;
  font-family: 'futura-pt', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

.breadcrumbs a {
  text-decoration: none;
}

.breadcrumbs a span {
  font-weight: inherit;
}

.breadcrumbs .separator {
  display: inline-block;
  width: 2px;
  height: 11px;
  background-color: #FFA400;
  margin: 0 10px;
}

.breadcrumbs span[property="itemListElement"]:last-child span[property="name"] {
  color: #3d5566;
}

.global-popup {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: rgba(18, 49, 71, 0.55);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 767px) {
  .global-popup {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.global-popup.active {
  opacity: 1;
  visibility: visible;
}

.global-popup.active .popup-body {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.global-popup .popup-body {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  overflow: auto;
  padding: 30px;
  -webkit-transform: translateY(-300%);
  transform: translateY(-300%);
}

.global-popup .popup-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}

.global-popup .popup-content .content-col,
.global-popup .popup-content .image-col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.global-popup .popup-content .popup-header {
  position: absolute;
  left: 0;
  width: 100%;
}

.global-popup .popup-content .popup-header .close-popup {
  position: absolute;
  top: 15px;
  right: 30px;
  z-index: 2;
}

.global-popup .popup-content .popup-header .close-popup.no-image:after,
.global-popup .popup-content .popup-header .close-popup.yellow:after {
  width: 14px;
  height: 15px;
  background-size: 14px 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-cross-yellow.svg);
}

@media (max-width: 991px) {
  .global-popup .popup-content .popup-header .close-popup:after {
    width: 14px;
    height: 15px;
    background-size: 14px 15px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../../resources/images/svg/icon-cross-yellow.svg);
  }
}

.global-popup .popup-content .content-col .inner-wrapper {
  height: 100%;
  background-color: #fff;
  border-radius: 5px 5px 0 0;
  padding: 50px 15px 30px;
}

.global-popup .popup-content .content-col .inner-wrapper.no-image {
  border-radius: 5px;
}

.global-popup .popup-content .image-col .image-wrapper {
  height: 100%;
  min-height: 432px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0 0 5px 5px;
}

.global-popup.table-popup {
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.global-popup.table-popup .popup-content {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 5px;
  -webkit-filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.25));
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.25));
  margin: 0;
  padding: 50px;
}

.global-popup.table-popup .popup-content .popup-header {
  -ms-flex-positive: 1;
  flex-grow: 1;
  position: relative;
}

.global-popup.table-popup .popup-content .popup-header .close-popup {
  top: 0;
  right: 0;
}

.global-popup.table-popup .popup-content .popup-header .title {
  font-weight: 700;
}

.global-popup.table-popup .popup-content .row-popup-content {
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.global-popup.table-popup .popup-content .image-wrapper {
  margin-bottom: 28px;
  text-align: center;
}

.request-popup {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: rgba(18, 49, 71, 0.55);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 991px) {
  .request-popup {
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .request-popup {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.request-popup.active {
  opacity: 1;
  visibility: visible;
}

.request-popup.product-popup .popup-title b,
.request-popup.product-popup .popup-title strong {
  color: #123147;
}

.request-popup_inner {
  width: 100%;
  height: 100%;
  padding: 30px;
  overflow: auto;
}

@media (max-width: 991px) {
  .request-popup_inner {
    padding-left: 0;
    padding-right: 0;
  }
}

.request-popup_body {
  position: relative;
  max-width: 570px;
  width: 100%;
  background: #fff;
  margin: 0 auto;
  padding: 20px 30px 43px;
}

@media (max-width: 991px) {
  .request-popup_body {
    margin: 50px auto;
    padding: 50px 30px 43px;
  }
}

@media (max-width: 991px) {
  .request-popup_body h2 {
    font-size: 28px;
  }
}

.request-popup_body b {
  color: #FFA400;
}

.request-popup_body .popup-title {
  margin-bottom: 27px;
  line-height: 1.5;
}

.request-popup .request-close {
  position: absolute;
  top: 20px;
  right: 30px;
  z-index: 2;
  cursor: pointer;
}

.request-popup .request-close:after {
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-cross-yellow.svg);
  content: "";
  display: block;
}

.request-popup .request-form {
  width: 100%;
}

.request-popup .request-form .gform_footer {
  -ms-flex-pack: center;
  justify-content: center;
}

.request-popup .request-form .gfield_label {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
}

.request-popup .request-form .top-description p {
  font-size: 15px;
}

.request-popup .request-form .slider-controls-line {
  margin-top: 50px;
  margin-bottom: 0;
}

.request-popup .request-form .slider-controls-line .slides-counter {
  margin-right: 19px;
}

.request-popup .request-form .slider-controls-line .slider-nav-holder {
  margin-left: 23px;
}

.mega-menu-holder {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-width: 100%;
  -webkit-transform: translateY(-65px);
  transform: translateY(-65px);
}

@media (max-width: 1199px) {
  .mega-menu-holder {
    display: none;
  }
}

.mega-menu-holder .subnav-navigation-col {
  padding-right: 0;
}

.mega-menu-holder .subnav-items-col {
  padding-left: 0;
}

.mega-menu-holder .sub-nav {
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #123147;
  padding: 0;
  margin: 0 auto;
  opacity: 0;
  padding: 65px 0 56px;
  visibility: hidden;
  transition: all .1s ease-in-out;
  /*        opacity: 1;
        visibility: visible;*/
}

.mega-menu-holder .sub-nav.active {
  opacity: 1;
  visibility: visible;
  transition: all .3s ease-in-out;
}

.mega-menu-holder .main-subnav-navigation {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 27px;
  padding-right: 40px;
}

.mega-menu-holder .main-subnav-navigation .main-sub-item-link {
  position: relative;
  color: #fff;
  font-family: "futura-pt", sans-serif;
  font-size: 16px;
  font-weight: 450;
  line-height: 1.75;
  padding-right: 10px;
  text-transform: uppercase;
}

.mega-menu-holder .main-subnav-navigation .main-sub-item-link:after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 8px;
  right: 0;
  transition: all .3s ease-in-out;
  width: 6px;
  height: 10px;
  background-size: 6px 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-chevron-right.svg);
}

.mega-menu-holder .main-subnav-navigation .main-sub-item-link:hover,
.mega-menu-holder .main-subnav-navigation .main-sub-item-link.hovered {
  color: #FFA400;
  text-decoration: none;
}

.mega-menu-holder .main-subnav-navigation .main-sub-item-link:hover:after,
.mega-menu-holder .main-subnav-navigation .main-sub-item-link.hovered:after {
  text-decoration: none;
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.mega-menu-holder .main-subnav-items {
  position: relative;
  height: 100%;
}

.mega-menu-holder .main-subnav-items a.sub-item-title:hover {
  color: #FFA400;
}

.mega-menu-holder .main-subnav-items .main-sub-item {
  display: none;
  min-height: 100%;
  border-left: 1px solid #FFA400;
  padding-left: 40px;
  text-decoration: none;
}

.mega-menu-holder .main-subnav-items .main-sub-item .sub-item-title {
  display: block;
  color: #fff;
  font-family: "futura-pt", sans-serif;
  font-size: 16px;
  font-weight: 450;
  line-height: 1.75;
  margin-bottom: 28px;
  text-transform: uppercase;
  text-decoration: none;
}

.mega-menu-holder .columns-holder {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 28px;
  margin-left: calc( 30px / 2 * -1);
  margin-right: calc( 30px / 2 * -1);
}

.mega-menu-holder .columns-holder .column {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 28px;
  width: 100%;
  padding: 0 calc( 30px / 2);
}

.mega-menu-holder .columns-holder a {
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  text-decoration: none;
}

.mega-menu-holder .columns-holder a:hover {
  color: #FFA400;
}

.header-section-container {
  min-height: 145px;
  background: linear-gradient(103deg, #0C2A40 0%, #6495BD 100%);
  margin-bottom: 50px;
}

.header-section {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  min-height: 500px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  padding-top: 75px;
}

.header-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #123147 0%, rgba(18, 49, 71, 0.5) 100%);
  opacity: 0.75;
  z-index: 2;
}

.header-section .bottom-element-header {
  position: absolute;
  bottom: 0;
  right: 30px;
  width: 370px;
  max-width: 60%;
  height: 40px;
  overflow: hidden;
}

.header-section .bottom-element-header:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 370px;
  height: 370px;
  background-size: 370px 370px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/el-image-highlight.svg);
}

.header-section .section-video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.header-section .section-video video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.header-section .section-inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding: 30px 0;
}

.header-section .thumbnail-wrapper {
  position: relative;
  z-index: 1;
  height: 420px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px 10px 0 0;
}

.header-section .thumbnail-wrapper .bottom-element-header {
  bottom: 100%;
  right: 0;
  height: 35px;
}

.header-section .content-col {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.header-section .content-col.sibling-has-slider {
  margin-bottom: calc( 50px - 30px);
}

.header-section .title,
.header-section .sub-title {
  color: #fff;
}

.header-section .title {
  font-size: 28px;
}

.header-section .description {
  margin-bottom: 30px;
}

.header-section .description h1,
.header-section .description h2,
.header-section .description h3,
.header-section .description h4,
.header-section .description h5,
.header-section .description h6,
.header-section .description p,
.header-section .description li,
.header-section .description a,
.header-section .description strong,
.header-section .description i,
.header-section .description .text {
  color: #fff;
}

.header-section .description .slides-counter {
  color: #fff;
}

.header-section .description .not-white-text {
  color: #d0d6da;
}

.header-section .description .not-white-text p {
  color: inherit;
}

.header-section .description p {
  font-size: 18px;
}

.header-section .btns-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
  padding-top: 10px;
}

.header-section .btns-wrapper .btn {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.newsletter-part {
  padding: 45px 0 0;
}

.newsletter-part .custom-col {
  margin-bottom: 30px;
}

.newsletter-part hr {
  border: none;
  border-bottom: 2px solid #D9DBDC;
  margin: 15px 0 0;
}

.newsletter-part .title {
  margin-bottom: 0;
}

.newsletter-part .content-wrapper {
  color: #123147;
  font-size: 18px;
}

.header-section-home {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 1;
  min-height: 100vh;
  overflow: hidden;
}

.header-section-home .section-image,
.header-section-home .section-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.header-section-home .section-image:before,
.header-section-home .section-video:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(18, 49, 71, 0.8) 0%, rgba(18, 49, 71, 0.4) 100%);
}

.header-section-home .section-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.header-section-home .section-video video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.header-section-home .section-inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  z-index: 5;
  width: 100%;
}

.header-section-home .section-inner .part {
  min-height: 150px;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.header-section-home .section-inner .part.has-title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-positive: 2;
  flex-grow: 2;
}

.header-section-home .section-inner .part.bottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
  align-items: flex-end;
}

.header-section-home .header-logo {
  display: inline-block;
  margin-bottom: 42px;
  width: 200px;
  height: 113px;
  background-size: 200px 113px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/logo.svg);
}

@media (max-width: 991px) {
  .header-section-home .header-logo {
    display: none;
  }
}

.header-section-home .in-header-logo-lottie {
  display: inline-block;
  max-width: 398px;
  max-height: 231px;
  margin-bottom: 42px;
}

.header-section-home .section-title {
  display: inline-block;
  color: #fff;
  font-size: 40px;
  margin-bottom: 0;
}

.header-section-home .section-title .sub-title-for-mobile {
  display: block;
  text-align: right;
}

@media (max-width: 991px) {
  .header-section-home .section-title .sub-title-for-mobile ~ .multiline-subtitle {
    display: none;
  }
}

.header-section-home .section-title .multiline-subtitle {
  margin-left: 20px;
}

.header-section-home .section-title + .buttons-wrapper {
  padding-top: 50px;
}

.header-section-home .multiline-subtitle {
  display: inline-block;
  color: #fff;
  font-size: 10px;
  line-height: 1.25;
  text-align: right;
  text-transform: uppercase;
}

.header-section-home .multiline-subtitle .text-row {
  display: block;
}

.header-section-home .description-wrapper {
  color: #fff;
  margin-top: 15px;
}

.header-section-home .description-wrapper p {
  color: inherit;
}

.header-section-home .buttons-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 25px;
}

.header-section-home .buttons-wrapper .btn {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.header-section-home .bottom-elements-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-pack: center;
  justify-content: center;
}

.header-section-home .bottom-elements-row .scroll-part {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 50px;
}

.header-section-home .bottom-elements-row .scroll-part .text {
  color: #fff;
  font-family: 'futura-pt', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.cta-section {
  margin-bottom: calc( 50px - 0px);
  padding-top: calc(50px - 30px);
  padding-bottom: calc(50px - 30px);
  background-image: url(../../resources/images/svg/bg-cta.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.cta-section.white,
.cta-section.grey {
  background-image: url(../../resources/images/svg/bg-cta-white.svg);
}

.cta-section.grey .content-has-section-color {
  border-radius: 50px;
}

.cta-section .text-center .sub-title {
  display: inline-block;
}

.cta-section .content-has-section-color {
  border-radius: 50%;
  padding: 50px;
}

.cta-section .content-wrapper {
  margin-bottom: 25px;
}

.cta-section .btn-wrapper {
  text-align: center;
}

.highlight-section {
  margin-bottom: calc( 50px - 48px);
  padding-bottom: 48px;
  overflow: hidden;
}

.highlight-section .content-row {
  margin-bottom: 45px;
}

.highlight-section .content-row .content-col {
  margin-bottom: 30px;
}

.highlight-section .content-row .content-wrapper.is-bigger-text p,
.highlight-section .content-row .content-wrapper.is-bigger-text li {
  font-size: 24px;
}

.highlight-section .title {
  margin-bottom: 0;
}

.highlight-section .text-center .sub-title {
  display: inline-block;
}

.highlight-section .media-container {
  position: relative;
}

.highlight-section .media-container:before {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #FFA400;
  -webkit-transform: rotate(-4deg);
  transform: rotate(-4deg);
  content: '';
  top: 50%;
}

.highlight-section .media-container.no-bg-line:before {
  display: none;
}

.highlight-section .media-holder {
  position: relative;
  z-index: 2;
}

@media (max-width: 991px) {
  .highlight-section .media-holder {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 30px;
  }
}

.highlight-section .media-holder .item-wrapper {
  position: relative;
  will-change: transform;
  transition: all .2s linear;
}

.highlight-section .media-holder .item-wrapper .item {
  position: relative;
  z-index: 2;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.highlight-section .media-holder .item-wrapper:nth-child(1) {
  width: 100%;
}

.highlight-section .media-holder .item-wrapper:nth-child(1):before {
  content: '';
  position: absolute;
  bottom: -48px;
  right: -75px;
  width: 370px;
  height: 370px;
  background-size: 370px 370px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/el-image-highlight.svg);
}

.highlight-section .media-holder .item-wrapper:nth-child(1).no-image-el:before {
  display: none;
}

.highlight-section .media-holder .item-wrapper:nth-child(1) .item,
.highlight-section .media-holder .item-wrapper:nth-child(2) .item {
  height: 270px;
}

.highlight-section .media-holder .item-wrapper:nth-child(3) .item {
  height: 270px;
}

.highlight-section .media-holder .item-wrapper:nth-child(2) {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

@media (min-width: 540px) {
  .highlight-section .media-holder .item-wrapper:nth-child(2) {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
  }
}

.highlight-section .media-holder .item-wrapper:nth-child(3) {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

@media (min-width: 540px) {
  .highlight-section .media-holder .item-wrapper:nth-child(3) {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
  }
}

.usps-section {
  margin-bottom: calc( 50px - 0px);
  position: relative;
  --section-offset: 125px;
}

.usps-section .section-inner {
  position: relative;
  z-index: 2;
}

.usps-section .custom-row {
  padding-bottom: calc(50px - 0px);
  row-gap: 30px;
}

.usps-section .section-title {
  margin-bottom: 24px;
}

.usps-section .content-wrapper {
  margin-bottom: 24px;
}

.usps-section .usp-row {
  padding-bottom: 40px;
}

.usps-section .usp-row .usp-col {
  margin-bottom: 35px;
}

.usps-section .image-holder {
  position: relative;
}

.usps-section .image-holder:before {
  content: '';
  position: absolute;
  bottom: -15px;
  right: -15px;
  z-index: 1;
  width: 370px;
  height: 370px;
  background-size: 370px 370px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/el-image-highlight.svg);
}

.usps-section .image-holder.no-bg-el:before {
  display: none;
}

.usps-section .image-holder .image-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  height: 470px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 5px;
}

.usps-section hr {
  border: none;
  border: 1px solid #f3f4f5;
  margin: 0;
}

.usps-section .content-col-inner {
  position: -webkit-sticky;
  position: sticky;
  top: var(--section-offset);
}

.usp-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  align-items: flex-start;
}

.usp-item.center {
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.usp-item .usp-icon-wrapper {
  display: -ms-flexbox;
  display: flex;
  width: 45px;
  height: 45px;
  background-color: #123147;
  border-radius: 5px;
  margin-bottom: 15px;
}

.usp-item .usp-icon-wrapper img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: auto;
}

.usp-item .usp-title {
  font-size: 16px;
  font-weight: 700;
}

.usp-item .usp-content {
  font-size: 18px;
  line-height: 1.7;
}

.usp-item-stack {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  align-items: flex-start;
  background-color: #1E3B50;
  border-radius: 5px;
  padding: 32px 40px;
  margin-bottom: 30px;
}

.usp-item-stack .usp-title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  font-size: 18px;
  font-weight: 700;
}

.usp-item-stack .usp-icon-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 57px;
  height: 57px;
  background-color: #123147;
  border-radius: 5px;
  margin-left: 15px;
}

.usp-item-stack .usp-icon-wrapper img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: auto;
}

.usp-item-stack .usp-content {
  font-size: 18px;
  line-height: 1.7;
}

.stacking-cards-holder {
  --basic-card-offset: 64px;
  position: -webkit-sticky;
  position: sticky;
  top: calc( var( --section-offset ));
}

.stacking-cards-holder .stack-card {
  position: -webkit-sticky;
  position: sticky;
  top: calc( var(--card-index) * var( --basic-card-offset ));
  transition: all 250ms ease;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  will-change: transform;
}

.text-image-video-section {
  position: relative;
  margin-bottom: calc( 50px - 30px);
}

.text-image-video-section .content-col,
.text-image-video-section .media-col {
  margin-bottom: 30px;
}

.text-image-video-section .content-col {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.text-image-video-section .content-wrapper {
  margin-bottom: 20px;
}

.text-image-video-section .image-wrapper {
  position: relative;
  text-align: center;
}

.text-image-video-section .image-wrapper.has-bg-element:before {
  content: '';
  position: absolute;
  top: 20%;
  bottom: -15px;
  width: 370px;
  height: 370px;
  background-size: 370px 370px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/el-image-highlight.svg);
  height: auto;
  width: auto;
}

.text-image-video-section .image-wrapper.has-bg-element.image-left:before {
  left: 30%;
  right: -15px;
}

.text-image-video-section .image-wrapper.has-bg-element.image-right:before {
  right: 30%;
  left: -15px;
}

.text-image-video-section .image-wrapper img {
  position: relative;
  z-index: 2;
  border-radius: 5px;
}

.text-image-video-section .image-wrapper .open-fancy {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 3;
  margin: 0 auto;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.payoff-section {
  position: relative;
  margin-bottom: calc( 50px - 0px);
}

.payoff-section .bottom-section-element {
  position: absolute;
  bottom: -40px;
  left: 30px;
  width: 370px;
  max-width: 60%;
  height: 40px;
  overflow: hidden;
}

.payoff-section .bottom-section-element:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 370px;
  height: 370px;
  background-size: 370px 370px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/el-image-highlight.svg);
}

.payoff-section .text-rows-holder {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
}

.payoff-section .sub-title-for-mobile {
  display: block;
  text-align: right;
}

.payoff-section .main-text-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: 'futura-pt', sans-serif;
  font-size: 40px;
  margin-bottom: 0;
  text-transform: uppercase;
  text-align: center;
}

.payoff-section .main-text-row .text {
  font: inherit;
}

.payoff-section .main-text-row .text b,
.payoff-section .main-text-row .text strong {
  font-family: inherit;
}

.payoff-section .main-text-row .multiline-subtitle {
  margin-left: 20px;
}

@media (max-width: 767px) {
  .payoff-section .main-text-row .multiline-subtitle {
    display: none;
  }
}

.payoff-section .main-text-row + .buttons-wrapper {
  padding-top: 50px;
}

.payoff-section .multiline-subtitle {
  display: inline-block;
  color: #3d5566;
  font-size: 10px;
  line-height: 1.25;
  text-align: right;
  text-transform: uppercase;
}

.payoff-section .multiline-subtitle .text-row {
  display: block;
}

.payoff-section .image-wrapper {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 0 25px;
  margin-left: -55px;
  margin-right: -55px;
  margin-top: -15px;
  opacity: 0;
  transition: all .4s ease-in-out;
}

@media (max-width: 1199px) {
  .payoff-section .image-wrapper {
    margin-left: -45px;
    margin-right: -45px;
    max-width: 100px;
  }
}

.payoff-section .image-wrapper.active {
  margin-left: 0;
  margin-right: 0;
  opacity: 1;
}

.payoff-section .image-wrapper img {
  border-radius: 5px;
}

.steps-section {
  margin-bottom: calc( 50px - 35px);
}

.steps-section .title-row {
  margin-bottom: 60px;
}

.steps-section .text-center .sub-title {
  display: inline-block;
}

.steps-grid {
  position: relative;
  margin: 0 auto;
}

.steps-grid .grid-sizer,
.steps-grid .grid-item {
  width: 50%;
  padding: 0 15px;
}

@media (max-width: 1199px) {
  .steps-grid .grid-sizer,
  .steps-grid .grid-item {
    width: 100%;
  }
}

.steps-grid .grid-item .step-block {
  opacity: 0;
  transition: all .4s ease-in-out;
}

.steps-grid .grid-item.animated .step-block {
  opacity: 1;
}

.step-block .image-wrapper {
  position: relative;
  height: 250px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 5px;
}

.step-block .image-wrapper .number {
  position: absolute;
  bottom: -25px;
  left: 25px;
  color: #FFA400;
  font-family: 'futura-pt', sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
}

.step-block .info-wrapper {
  padding: 35px 25px;
}

.step-block .info-wrapper .title {
  font-weight: 700;
}

.default-text-section {
  margin-bottom: calc( 50px - 30px);
}

.default-text-section .text-center .sub-title {
  display: inline-block;
}

.default-text-section .content-column {
  margin-bottom: 30px;
}

.default-text-section .titles-wrapper {
  margin-bottom: 50px;
}

.default-text-section .section-title {
  margin-bottom: 0;
}

.default-text-section .content-column {
  margin-bottom: 30px;
}

.default-text-section .align-left {
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.default-text-section .align-right {
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.default-text-section .align-center {
  -ms-flex-pack: center;
  justify-content: center;
}

.timeline-section {
  margin-bottom: calc( 50px - 0px);
  position: relative;
}

.timeline-section .section-inner {
  overflow: hidden;
}

.timeline-section .text-center .sub-title {
  display: inline-block;
}

.timeline-section .titles-wrapper {
  margin-bottom: 75px;
}

.timeline-section .rows-holder {
  position: relative;
  padding-top: 50px;
}

.timeline-section .rows-holder .main-line {
  position: absolute;
  top: 0;
  left: 50%;
  bottom: -30px;
  width: 1px;
  background-color: #365063;
}

@media (max-width: 1199px) {
  .timeline-section .rows-holder .main-line {
    left: 15px;
    bottom: 0;
  }
}

.timeline-section .rows-holder .main-line:before {
  content: '';
  position: absolute;
  top: 0;
  left: -5px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #FFA400;
}

.timeline-section .timeline-grid {
  position: relative;
  margin: 0 auto;
}

.timeline-section .timeline-grid .grid-sizer,
.timeline-section .timeline-grid .grid-item {
  width: 50%;
  padding: 0 15px;
}

@media (max-width: 1199px) {
  .timeline-section .timeline-grid .grid-sizer,
  .timeline-section .timeline-grid .grid-item {
    width: 100%;
  }
}

.timeline-section .timeline-grid .grid-item {
  position: relative;
}

.timeline-section .timeline-grid .grid-item:nth-child(odd) .timeline-block {
  padding-left: 15px;
}

.timeline-section .timeline-grid .grid-item:nth-child(odd) .timeline-block .dot {
  left: -8px;
}

.timeline-section .timeline-grid .grid-item:nth-child(odd) .timeline-block .dot:after {
  left: 100%;
}

.timeline-section .timeline-grid .grid-item:nth-child(even) .timeline-block {
  padding-left: 15px;
}

.timeline-section .timeline-grid .grid-item:nth-child(even) .timeline-block .dot {
  left: -8px;
}

.timeline-section .timeline-grid .grid-item:nth-child(even) .timeline-block .dot:after {
  left: 100%;
}

.timeline-block {
  position: relative;
}

.timeline-block.has-bg-el .inner-wrapper {
  position: relative;
  padding-top: 30px;
}

.timeline-block.has-bg-el .inner-wrapper:before {
  width: 370px;
  height: 370px;
  background-size: 370px 370px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/el-image-highlight.svg);
  content: '';
  position: absolute;
  top: 0;
  left: 50px;
  right: 50px;
  width: auto;
  height: 30px;
  background-position: top;
}

.timeline-block.has-bg-el .dot {
  top: 155px;
}

.timeline-block .image-wrapper {
  position: relative;
  z-index: 2;
  height: 270px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 5px;
}

.timeline-block .image-wrapper .year {
  position: absolute;
  bottom: -25px;
  left: 25px;
  color: #FFA400;
  font-family: 'futura-pt', sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
}

.timeline-block .info-wrapper {
  padding: 35px 25px;
}

.timeline-block .title {
  font-weight: 700;
  margin-bottom: 10px;
}

.timeline-block .dot {
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 125px;
  z-index: 1;
  width: 17px;
  height: 17px;
  background-color: #fff;
  border-radius: 50%;
}

.timeline-block .dot:before {
  content: '';
  width: 7px;
  height: 7px;
  background-color: #FFA400;
  border-radius: 50%;
  margin: auto;
}

.timeline-block .dot:after {
  content: '';
  position: absolute;
  top: 8px;
  width: 89px;
  height: 1px;
  background-color: #365063;
}

.news-section {
  position: relative;
  margin-bottom: calc( 50px - 30px);
}

.news-section.has-bg-line:before {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #FFA400;
  -webkit-transform: rotate(-4deg);
  transform: rotate(-4deg);
  content: '';
  top: 35%;
}

.news-section .section-title {
  margin-bottom: 30px;
}

.news-section .btn-col {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
  align-items: flex-end;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-bottom: 30px;
}

.news-section .news-col {
  margin-bottom: 30px;
}

.vacancies-section {
  margin-bottom: calc( 50px - 15px);
}

.vacancies-section .text-center .sub-title {
  display: inline-block;
}

.vacancies-section .titles-wrapper {
  margin-bottom: 50px;
}

.vacancies-section .vacancy-item {
  margin-bottom: 15px;
}

.vacancies-section .bottom-text-col {
  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;
  padding-top: 15px;
  margin-bottom: 15px;
}

.vacancies-section .bottom-text-col .text {
  color: #3d5566;
  font-size: 18px;
  margin-right: 15px;
}

.full-slider-section {
  margin-bottom: calc( 50px - 40px);
  position: relative;
}

.full-slider-section .side-text {
  position: absolute;
  top: -100px;
  left: -24px;
  z-index: 2;
  color: #f3f4f5;
  font-family: 'futura-pt', sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.full-slider-section .section-inner {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.full-slider-section .content-row {
  margin-bottom: 45px;
}

.full-slider-section .content-row .content-col {
  margin-bottom: 30px;
}

.full-slider {
  margin-bottom: 40px;
}

@media (max-width: 991px) {
  .full-slider .slick-list {
    padding-right: 10%;
  }
}

.full-slider .slick-list .slick-track {
  display: -ms-flexbox;
  display: flex;
}

.full-slider .slick-list .slick-track .slick-slide {
  height: inherit;
  margin-right: 30px;
}

.full-slider .slick-list .slick-track .slick-slide:first-child .image-wrapper {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.slide-image-block {
  position: relative;
  height: 100%;
}

.slide-image-block .open-popup-in-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slide-image-block .image-wrapper {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 470px;
  margin-bottom: 25px;
}

.slide-image-block .slide-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 0;
}

.slide-image-block .description {
  color: #3d5566;
  font-size: 18px;
}

.slide-image-block .slide-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slide-image-block:hover .slide-title {
  color: #FFA400;
}

.header-small-slider-wrapper .slick-arrow,
.slider-controls-line .nav-button,
.slider-controls-line .slick-arrow {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border-radius: 5px;
  background-color: #FFA400;
  border: none;
  padding: 0;
}

.header-small-slider-wrapper .slick-arrow:before,
.slider-controls-line .nav-button:before,
.slider-controls-line .slick-arrow:before {
  content: '';
}

.header-small-slider-wrapper .prev.slick-arrow:before,
.slider-controls-line .prev.nav-button:before,
.slider-controls-line .prev.slick-arrow:before,
.header-small-slider-wrapper .slick-prev.slick-arrow:before,
.slider-controls-line .slick-prev.nav-button:before,
.slider-controls-line .slick-prev.slick-arrow:before {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
  width: 18px;
  height: 14px;
  background-size: 18px 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-arrow-right-white.svg);
}

.header-small-slider-wrapper .next.slick-arrow:before,
.slider-controls-line .next.nav-button:before,
.slider-controls-line .next.slick-arrow:before,
.header-small-slider-wrapper .slick-next.slick-arrow:before,
.slider-controls-line .slick-next.nav-button:before,
.slider-controls-line .slick-next.slick-arrow:before {
  width: 18px;
  height: 14px;
  background-size: 18px 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-arrow-right-white.svg);
}

.header-small-slider-wrapper .slick-arrow:hover,
.slider-controls-line .nav-button:hover,
.slider-controls-line .slick-arrow:hover {
  background-color: #cc8300;
}

.slider-controls-line {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: 50px;
  margin-bottom: 40px;
}

.slider-controls-line .slides-counter {
  color: #3d5566;
  font-family: 'futura-pt', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-right: 30px;
}

@media (max-width: 767px) {
  .slider-controls-line .slides-counter {
    display: none;
  }
}

.slider-controls-line .slides-counter span {
  font-size: 12px;
  font-weight: 700;
}

.slider-controls-line .progress-holder {
  -ms-flex-positive: 1;
  flex-grow: 1;
  position: relative;
  height: 4px;
  background-color: rgba(18, 49, 71, 0.1);
}

.slider-controls-line .progress-holder .line {
  position: absolute;
  left: 0;
  top: 0;
  width: 30%;
  background-color: #FFA400;
  height: 4px;
  transition: all .3s ease-in-out;
}

.slider-controls-line .slider-nav-holder {
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  margin-left: 50px;
}

.products-section {
  position: relative;
  margin-bottom: calc( 50px - 30px);
}

.products-section.has-bg-line:before {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #FFA400;
  -webkit-transform: rotate(-4deg);
  transform: rotate(-4deg);
  content: '';
  top: 35%;
}

.products-section .section-title {
  margin-bottom: 30px;
}

.products-section .btn-col {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
  align-items: flex-end;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-bottom: 30px;
}

.products-section .products-col {
  margin-bottom: 30px;
}

.tabs-section {
  position: relative;
  margin-bottom: calc( 50px - 30px);
}

.tabs-section .in-side {
  margin-bottom: 30px;
}

.tabs-select {
  display: block;
  width: 250px;
  height: 42px;
  background-color: #fff;
  color: #3d5566;
  font-weight: 600;
  border-radius: 0;
  text-align: center;
  margin: 0 auto 50px;
}

.tabs-container {
  position: relative;
  z-index: 2;
}

.tabs-container .tabs-switcher {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (max-width: 991px) {
  .tabs-container .tabs-switcher {
    display: none;
  }
}

.tabs-container .tabs-switcher .tab-label {
  position: relative;
  color: #8898a3;
  font-family: 'futura-pt', sans-serif;
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 25px;
  line-height: 1;
  padding: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.tabs-container .tabs-switcher .tab-label:hover,
.tabs-container .tabs-switcher .tab-label:focus {
  text-decoration: none;
}

.tabs-container .tabs-switcher .tab-label.active {
  color: #FFA400;
}

.tabs-container .tabs-content .tab {
  display: none;
}

.tabs-container .tabs-content .content-wrapper {
  margin-bottom: 30px;
}

.tabs-container .tabs-content .content-wrapper h2 {
  font-size: 36px;
}

.tabs-container .tabs-content .content-wrapper h3 {
  font-size: 32px;
  text-transform: initial;
}

.tabs-container .tables-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}

.industry-section {
  position: relative;
  margin-bottom: calc( 50px - 0px);
}

.industry-section .top-section-element {
  position: absolute;
}

@media (max-width: 1199px) {
  .industry-section .top-section-element {
    left: 15px;
  }
}

.industry-section .section-inner {
  padding-top: 60px;
}

.industry-section.dark-blue .section-inner {
  padding-top: 0;
}

.industry-section.dark-blue .top-section-element {
  display: none;
}

.industry-section .industry-row {
  margin-top: 54px;
  row-gap: 48px;
}

.industry-section .industry-row .industry-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  max-width: 258px;
}

.industry-section .industry-row .industry-item .industry-item_top {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 15px;
  -moz-column-gap: 15px;
  column-gap: 15px;
}

.industry-section .industry-row .industry-item .open-popup-in-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.industry-section .industry-row .industry-icon-wrapper {
  display: -ms-flexbox;
  display: flex;
  width: 45px;
  min-width: 45px;
  height: 45px;
  background-color: #123147;
  border-radius: 5px;
  margin-bottom: 15px;
}

.industry-section .industry-row .industry-icon-wrapper img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: auto;
}

.industry-section .industry-row .industry-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
}

.form-section {
  margin-bottom: calc( 50px - 0px);
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url(../../resources/images/svg/bg-form-section.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.form-section .section-inner {
  width: 100%;
  max-width: 1278px;
  background-color: #fff;
  border-radius: 20px;
  margin: 0 auto;
  padding-top: 50px;
  padding-bottom: 50px;
}

.form-section .section-title {
  margin-bottom: 45px;
}

.form-section .contact-col {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}

.contact-block-item .block-title {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 5px;
}

.error404 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.error404 .main-header-part-holder {
  margin-bottom: 0;
}

.error404 .main {
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
}

.error404 .page-inner-404 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  height: 100%;
  background-color: #0C2A40;
  background-image: url(../../resources/images/svg/page-404.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1464px 573px;
  padding: 30px;
}

@media (max-width: 1200px) {
  .error404 .page-inner-404 {
    background-size: contain;
  }
}

.error404 .page-inner-404 .description {
  padding-bottom: 30px;
}

.error404 .page-inner-404 .description p,
.error404 .page-inner-404 .description li,
.error404 .page-inner-404 .description a {
  color: #fff;
}

.error404 .page-inner-404 .bottom-element-404 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 370px;
  max-width: 80%;
  height: 40px;
  margin: 0 auto;
  overflow: hidden;
}

.error404 .page-inner-404 .bottom-element-404:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 370px;
  height: 370px;
  background-size: 370px 370px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/el-image-highlight.svg);
}

.error404 .title-404 {
  color: #fff;
  font-size: 75px;
}

@media (max-width: 1199px) {
  .error404 .title-404 {
    font-size: 32px;
  }
}

.post-type-archive-news_pt .archive-titles-col,
.post-type-archive-exhibitions_pt .archive-titles-col {
  margin-bottom: 35px;
}

.post-type-archive-news_pt .news-col,
.post-type-archive-exhibitions_pt .news-col {
  margin-bottom: 30px;
}

.news-archive-section {
  position: relative;
  margin-bottom: calc( 50px - 30px);
}

.news-archive-section:before {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #FFA400;
  -webkit-transform: rotate(-4deg);
  transform: rotate(-4deg);
  content: '';
  top: 35%;
}

.loop-news-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}

.loop-news-item .image-wrapper {
  height: 250px;
  background-color: #0C2A40;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px 10px 0 0;
}

.loop-news-item .info-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-align: start;
  align-items: flex-start;
  border: 2px solid rgba(18, 49, 71, 0.05);
  background: #fff;
  padding: 25px;
}

.loop-news-item .info-wrapper .title {
  color: #123147;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.loop-news-item .info-wrapper .title a {
  color: inherit;
  font: inherit;
  text-decoration: none;
}

.loop-news-item .info-wrapper .title a:hover,
.loop-news-item .info-wrapper .title a:focus {
  text-decoration: none;
}

.loop-news-item .info-wrapper .date {
  color: #FFA400;
  font-size: 14px;
  margin-bottom: 30px;
}

.loop-news-item .info-wrapper .excerpt-wrapper {
  color: #3d5566;
  font-size: 18px;
  margin-bottom: 14px;
}

.loop-news-item .info-wrapper .excerpt-wrapper p {
  color: inherit;
  font: inherit;
}

.loop-news-item .info-wrapper .meta-info_btn {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.loop-news-item .info-wrapper .meta-info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 25px;
}

.loop-news-item .info-wrapper .meta-info .info-line {
  position: relative;
  font-size: 16px;
  line-height: 1.3;
  padding-left: 25px;
}

.loop-news-item .info-wrapper .meta-info .info-line:before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

.loop-news-item .info-wrapper .meta-info .info-line.start-date:before {
  width: 15px;
  height: 18px;
  background-size: 15px 18px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-calendar.svg);
}

.loop-news-item .info-wrapper .meta-info .info-line.location:before {
  width: 13px;
  height: 15px;
  background-size: 13px 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-location.svg);
  top: 2px;
}

.loop-news-item .info-wrapper .meta-info .info-line.branch:before {
  width: 11px;
  height: 15px;
  background-size: 11px 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-branch.svg);
  top: 3px;
}

.loop-news-item .info-wrapper .read-more-wrapper {
  margin-top: auto;
}

.loop-news-item .info-wrapper .btn-link {
  color: #3d5566;
}

.single-article-content {
  position: relative;
  background-color: #F3F5F6;
  margin-bottom: 50px;
  padding-top: 50px;
  padding-bottom: 50px;
}

.single-article-content .content-inner-wrapper {
  background-color: #fff;
  border-radius: 5px;
  padding: 30px;
}

.single-article-content .content-inner-wrapper h1,
.single-article-content .content-inner-wrapper h2,
.single-article-content .content-inner-wrapper h3,
.single-article-content .content-inner-wrapper h4,
.single-article-content .content-inner-wrapper h5,
.single-article-content .content-inner-wrapper h6 {
  line-height: 1.1;
}

.single-article-content .content-inner-wrapper h2 {
  font-size: 36px;
}

.single-article-content .content-inner-wrapper h3 {
  text-transform: initial;
}

.single-article-content .bottom-element {
  position: absolute;
  top: 100%;
  left: 30px;
  width: 370px;
  max-width: 60%;
  height: 40px;
  overflow: hidden;
}

.single-article-content .bottom-element:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 370px;
  height: 370px;
  background-size: 370px 370px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/el-image-highlight.svg);
}

.single-page-content-footer {
  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;
  padding: 35px 0 5px;
  border-top: 1px solid #F3F5F6;
}

.single-page-content-footer .share-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
}

.single-page-content-footer .share-wrapper .share-text {
  color: #3d5566;
  font-size: 18px;
  margin-right: 10px;
}

.single-page-content-footer .share-wrapper .addtoany_list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.single-page-content-footer .share-wrapper .addtoany_list a {
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  margin: 0 10px;
}

.single-page-content-footer .apply-wrapper {
  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;
  padding-bottom: 25px;
}

.single-page-content-footer .apply-wrapper .text {
  color: #3d5566;
  font-size: 18px;
  margin-right: 15px;
}

.single-page-content-footer .bottom-line-wrapper {
  width: 100%;
  border-top: 1px solid #F3F5F6;
  padding-top: 24px;
}

.single-page-content-footer .bottom-line-wrapper .sub-title {
  display: inline-block;
  text-transform: initial;
}

.vacancies-archive-section {
  margin-bottom: calc( 50px - 0px);
  padding-bottom: calc(50px - 15px);
  position: relative;
  background-color: #F3F5F6;
  margin-bottom: 50px;
  padding-top: 50px;
}

.vacancies-archive-section .bottom-element {
  position: absolute;
  top: 100%;
  left: 30px;
  width: 370px;
  max-width: 60%;
  height: 40px;
  overflow: hidden;
}

.vacancies-archive-section .bottom-element:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 370px;
  height: 370px;
  background-size: 370px 370px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/el-image-highlight.svg);
}

.vacancies-archive-section .text-center .sub-title {
  display: inline-block;
}

.vacancies-archive-section .bottom-text-col {
  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;
  padding-top: 15px;
  margin-bottom: 15px;
}

.vacancies-archive-section .bottom-text-col .text {
  color: #3d5566;
  font-size: 18px;
  margin-right: 15px;
}

.post-type-archive-vacancies_pt .archive-titles-col {
  margin-bottom: 35px;
}

.vacancy-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  background-color: #fff;
  border: 2px solid rgba(18, 49, 71, 0.05);
  border-radius: 5px;
  padding: 30px 35px;
  transition: all .3s ease-in-out;
  text-align: center;
}

.vacancy-item:hover {
  box-shadow: 0 2px 6px rgba(13, 95, 125, 0.1);
}

.vacancy-item:hover .btn {
  background-color: #E19100;
  border-color: #E19100;
  color: #fff;
}

.vacancy-item:hover .btn:before {
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.vacancy-item .info-col {
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  padding-right: 15px;
}

.vacancy-item .title {
  color: #123147 !important;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
}

.vacancy-item .btn {
  position: relative;
  z-index: 2;
}

.vacancy-item .block-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.vacancy-info-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.vacancy-info-list .list-item {
  position: relative;
  color: #3d5566;
  font-size: 16px;
  font-weight: 400;
  margin-right: 30px;
  padding-left: 25px;
  margin-bottom: 8px;
  text-align: left;
}

.vacancy-info-list .list-item:last-child {
  margin-right: 0;
}

.vacancy-info-list .list-item:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.vacancy-info-list .list-item.date:before {
  width: 13px;
  height: 15px;
  background-size: 13px 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-calendar.svg);
}

.vacancy-info-list .list-item.branch:before {
  width: 11px;
  height: 15px;
  background-size: 11px 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-branch.svg);
}

.single-vacancies_pt .content-inner-wrapper {
  margin-bottom: 30px;
}

.single-vacancies_pt .single-page-content-footer {
  padding-top: 25px;
  padding-bottom: 0;
}

.single-vacancies_pt .sticky-column {
  position: relative;
  height: 100%;
  margin-bottom: 30px;
}

.default-header-information-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  background-color: #123147;
  border-radius: 10px 10px 0 0;
  padding: 25px;
}

.default-header-information-row .bottom-element-header {
  bottom: 100%;
  left: 0;
  right: auto;
  height: 35px;
}

.default-header-information-row .vacancy-info-list .list-item {
  color: #d0d6da;
}

.default-header-information-row .apply-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.default-header-information-row .apply-wrapper .text {
  color: #d0d6da;
  font-size: 16px;
  margin-right: 20px;
}

@media (max-width: 1199px) {
  .default-header-information-row .apply-wrapper .text {
    display: none;
  }
}

.vacancy-sidebar {
  max-width: 370px;
  background-color: #0C2A40;
  border-radius: 5px;
  padding: 30px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.vacancy-sidebar:before {
  width: 370px;
  height: 370px;
  background-size: 370px 370px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/el-image-highlight.svg);
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
}

.vacancy-sidebar .inner-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.vacancy-sidebar .image-wrapper {
  margin-bottom: 19px;
}

.vacancy-sidebar .image-wrapper img {
  border-radius: 50%;
}

.vacancy-sidebar .names-wrapper {
  margin-bottom: 28px;
  text-align: center;
}

.vacancy-sidebar .name {
  display: block;
  color: #fff;
  font-family: 'futura-pt', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0;
  text-transform: uppercase;
}

.vacancy-sidebar .function {
  color: #d0d6da;
  font-size: 16px;
}

.vacancy-sidebar .description {
  color: #d0d6da;
  font-size: 16px;
  margin-top: 20px;
}

.vacancy-sidebar .contacts-wrapper {
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

.single-exhibitions_pt .content-inner-wrapper {
  margin-bottom: 30px;
}

.single-exhibitions_pt .single-page-content-footer {
  padding-top: 25px;
  padding-bottom: 0;
}

.single-exhibitions_pt .single-page-content-footer .apply-wrapper {
  padding-bottom: 0;
}

.single-exhibitions_pt .sticky-column {
  position: relative;
  height: 100%;
  margin-bottom: 30px;
}

.exhibition-sidebar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 35px;
}

.exhibition-sidebar.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.exhibition-sidebar .sidebar-block {
  position: relative;
  background-color: #123147;
  border-radius: 5px;
  padding: 65px 40px 45px;
  overflow: hidden;
}

.exhibition-sidebar .sidebar-block:before {
  width: 370px;
  height: 370px;
  background-size: 370px 370px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/el-image-highlight.svg);
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 35px;
}

.exhibition-sidebar .sidebar-block .inner-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  z-index: 2;
  text-align: center;
}

.exhibition-sidebar .logo-wrapper {
  -ms-flex-item-align: center;
  align-self: center;
  max-width: 150px;
}

.exhibition-sidebar .logo-wrapper + .title {
  margin-top: 24px;
}

.exhibition-sidebar .title {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.exhibition-sidebar .title + .logo-wrapper {
  margin-top: 10px;
}

.exhibition-sidebar .content-wrapper {
  color: #d0d6da;
  font-size: 16px;
  margin-bottom: 25px;
}

.exhibition-sidebar .content-wrapper p {
  color: inherit;
  font: inherit;
  line-height: 1.6;
}

.post-type-archive-products_pt {
  /*    .active-filters-container {
        display: none;
        padding-bottom: 35px;
        padding-left: 15px;
        padding-right: 15px;
        
        @media ( min-width: 992px ) {
            padding-left: 0;
            padding-right: 0;
        }
        
        .active-filters {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
        }
    }*/
}

.post-type-archive-products_pt .products-archive-container {
  background-color: #F3F5F6;
  padding-top: 50px;
  padding-bottom: 50px;
}

.post-type-archive-products_pt .products-archive-container .filters-sidebar .sidebar-title {
  font-size: 18px;
  margin-bottom: 50px;
}

@media (max-width: 991px) {
  .post-type-archive-products_pt .products-archive-container .filters-sidebar .filters-sidebar-inner {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 899;
    width: 100%;
    background-color: #fff;
    overflow: auto;
    padding-bottom: 150px;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    transition: -webkit-transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
    transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
  }

  .post-type-archive-products_pt .products-archive-container .filters-sidebar .filters-sidebar-inner.opened {
    z-index: 1000;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  .post-type-archive-products_pt .products-archive-container .filters-sidebar .filters-sidebar-inner.opened + .mobile-filters-controls {
    z-index: 1001;
  }
}

.post-type-archive-products_pt .products-archive-container .filters-sidebar .filters-wrapper {
  background-color: #fff;
  border-radius: 5px;
  padding: 25px;
}

.post-type-archive-products_pt .products-archive-container .found-products {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
  position: relative;
  color: #3d5566;
  font-size: 18px;
  line-height: 1;
  padding-left: 20px;
  margin-bottom: 47px;
}

.post-type-archive-products_pt .products-archive-container .found-products:before {
  content: '';
  position: absolute;
  top: 6px;
  left: 0;
  width: 5px;
  height: 5px;
  background-color: #FFA400;
  border-radius: 1px;
}

.post-type-archive-products_pt .products-archive-container .found-products .number {
  font: inherit;
  margin-right: 4px;
}

.post-type-archive-products_pt .products-archive-container .response-list-container {
  position: relative;
  min-height: 265px;
}

.post-type-archive-products_pt .products-archive-container .product-col {
  margin-bottom: 30px;
}

.archive-descriptions-container .archive-description {
  background: #FFF;
  border-radius: 8px;
  margin-bottom: 30px;
  padding: 30px 24px 24px;
}

.archive-descriptions-container .archive-description:not(.active) {
  display: none;
}

.archive-descriptions-container .archive-description .title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 22px;
}

.custom-filter-checkboxes {
  background-color: #fff;
  padding-bottom: 15px;
}

.custom-filter-checkboxes:last-child {
  padding-bottom: 0;
}

.custom-filter-checkboxes .filter-name {
  position: relative;
  border-bottom: 1px solid #F3F5F6;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 15px;
  padding-right: 25px;
  margin-bottom: 0;
  text-transform: uppercase;
}

.custom-filter-checkboxes .filter-name:after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 2px;
  right: 0;
  transition: all .3s ease-in-out;
  width: 12px;
  height: 7px;
  background-size: 12px 7px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-chevron-filter-down.svg);
}

.custom-filter-checkboxes .filter-name.active {
  color: #FFA400;
}

.custom-filter-checkboxes .filter-name.active:after {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.custom-filter-checkboxes .checkboxes-toggle-holder {
  display: none;
  padding-top: 15px;
}

.custom-filter-checkboxes .checkboxes-toggle-holder.opened {
  display: block;
}

.custom-filter-checkboxes .checkbox-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  cursor: pointer;
  margin-bottom: 5px;
}

.custom-filter-checkboxes .checkbox-wrapper .filter-checkbox {
  display: none;
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

.custom-filter-checkboxes .checkbox-wrapper .filter-checkbox + .checkbox {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  width: 15px;
  height: 15px;
  background-color: #F3F5F6;
  border: 1px solid #F3F5F6;
  border-radius: 2px;
  margin-right: 10px;
}

.custom-filter-checkboxes .checkbox-wrapper .filter-checkbox:checked + .checkbox {
  background-color: #FFA400;
}

.custom-filter-checkboxes .checkbox-wrapper .text {
  color: #000;
  font-size: 15px;
}

.custom-filter-checkboxes .checkbox-wrapper:hover .checkbox {
  border-color: #FFA400;
}

.custom-filter-checkboxes .more-checkboxes {
  display: none;
}

.custom-filter-checkboxes .more-checkboxes .more-checkboxes-inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.custom-filter-checkboxes .show-more,
.custom-filter-checkboxes .show-less {
  color: #000;
  font-size: 15px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
}

.custom-filter-checkboxes .show-more:not(.active),
.custom-filter-checkboxes .show-less:not(.active) {
  display: none;
}

.mobile-filters-controls {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 900;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 -4px 12px rgba(33, 33, 99, 0.07);
}

.mobile-filters-controls .state {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 20px;
}

.mobile-filters-controls .state.not-active {
  display: none;
}

.mobile-filters-controls .state .btn {
  width: 100%;
  padding-top: 14px;
  padding-bottom: 14px;
}

.mobile-filters-controls .state .btn:after {
  display: none;
}

.mobile-filters-controls .state .btn span {
  position: relative;
  padding-right: 25px;
}

.mobile-filters-controls .state .btn span:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 2;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.mobile-filters-controls .state .btn.open-filter span:after {
  -webkit-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
}

.mobile-filters-controls .state .btn.close-filter span:after {
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}

.mobile-filters-controls .clear-filters {
  color: #3d5566;
  margin-top: 15px;
}

.product-block {
  position: relative;
}

.product-block:hover .image-holder {
  border-color: #fff;
  box-shadow: 0 0 11px rgba(33, 33, 33, 0.2);
}

.product-block .block-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.product-block .image-holder {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  background-color: #fff;
  border: 2px solid #F3F5F6;
  border-radius: 5px;
  margin-bottom: 20px;
  padding-bottom: 100%;
  transition: all .3s ease-in-out;
}

.product-block .image-holder .image-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  max-height: 100%;
  margin: auto;
  padding: 30px 10px;
}

.product-block .image-holder .image-wrapper img {
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.product-block .product-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0;
  text-align: center;
}

.company_page {
  background-color: #F3F5F6;
  padding: 97px 0 123px;
}

.company_page .company_logo {
  background: #fff;
  padding: 23px 20px 17px;
  text-align: center;
  margin-bottom: 30px;
}

.company_page .company_contact-info {
  background: #fff;
  padding: 30px 40px 20px;
  margin-bottom: 30px;
}

.company_page .company_contact-info p {
  margin-bottom: 15px;
}

.company_page .company_image {
  background: #fff;
  padding: 20px;
  text-align: center;
}

.company_page .download-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 50%);
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}

@media (max-width: 1199px) {
  .company_page .download-items-grid {
    margin-top: 30px;
    grid-template-columns: repeat(1, 100%);
  }
}

.company_page .download-items-grid .download-item {
  border-radius: 5px;
  background: #123147;
  color: #fff;
  padding: 30px;
}

.company_page .download-items-grid .download-item h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.company_page .download-items-grid .download-item .download-content {
  color: #FFF;
  font-weight: 400;
  line-height: 1.5;
  opacity: 0.8;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #F3F5F6;
}

.company_page .download-items-grid .download-item .download-content .description {
  font-size: 18px;
  margin: 30px 0 28px;
}

.company_page .download-items-grid .download-item .download-content .company-title {
  font-size: 14px;
}

.company_page .download-items-grid .download-item a {
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
}

.company_page .download-items-grid .download-item a:before {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all .3s ease-in-out;
  width: 12px;
  height: 12px;
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-btn-arrow.svg);
}

.single-downloads .header-section-container {
  margin-bottom: 0;
}

.single-download-page {
  background-color: #F3F5F6;
  padding: 100px 0;
}

@media (max-width: 1199px) {
  .single-download-page {
    padding: 50px 0;
  }
}

@media (max-width: 1199px) {
  .single-download-page .downloads-col {
    border-left: none;
    margin-top: 20px;
  }
}

.single-download-page .downloads-col .downloads-col_border {
  border-left: 1px solid rgba(18, 49, 71, 0.6);
  padding-left: 20px;
}

@media (max-width: 1199px) {
  .single-download-page .downloads-col .downloads-col_border {
    border-left: none;
    padding-left: 0;
  }
}

.single-download-page .related-company .company_logo {
  border-radius: 5px;
  background: #FFF;
  width: 200px;
  padding: 35px 23px 25px;
  margin-bottom: 30px;
}

.single-download-page .related-company .company-info {
  padding: 0;
  list-style: none;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
}

.single-download-page .related-company .company-info .company-info_submenu {
  margin-top: 17px;
  padding-left: 28px;
  list-style: none;
}

.single-download-page .related-company .company-info .company-info_submenu li:not(:last-child) {
  margin-bottom: 21px;
}

.single-download-page .related-company .company-info .company-info_submenu a {
  color: rgba(18, 49, 71, 0.5);
}

.single-download-page .related-company .company-info .company-info_submenu a.active,
.single-download-page .related-company .company-info .company-info_submenu a:hover {
  color: #FFA400;
  text-decoration: none;
}

.single-download-page .control-bar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
  row-gap: 20px;
  margin-bottom: 35px;
}

.single-download-page .control-bar .control-bar_buttons {
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 12px;
  -moz-column-gap: 12px;
  column-gap: 12px;
  row-gap: 12px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.single-download-page .control-bar .control-bar_buttons .btn {
  height: 45px;
}

.single-download-page .control-bar .control-bar_buttons #download-button {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
}

.single-download-page .control-bar .search-in-downloads #file-search-form {
  width: 300px;
  position: relative;
}

.single-download-page .control-bar .search-in-downloads #file-search-form #file-search {
  border-radius: 5px;
  background: #FFF;
  border: none;
  height: 45px;
  width: 100%;
  padding: 10px;
}

.single-download-page .control-bar .search-in-downloads #file-search-form button {
  height: 45px;
  width: 45px;
  background: #FFA400;
  border: none;
  border-radius: 5px;
  position: absolute;
  right: 0;
}

.single-download-page .control-bar .delete-button {
  background-color: #FFA400;
  border-radius: 5px;
  outline: none;
  padding: 10px 14px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
}

.single-download-page .control-bar .delete-button img {
  max-height: 18px;
}

.single-download-page .control-bar .btn-border {
  background: transparent;
  color: #FFA400;
  padding: 12px 36px 12px 12px;
}

.single-download-page .control-bar .btn-border:before {
  content: '';
  position: absolute;
  right: 12px;
  top: 47%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all .3s ease-in-out;
  width: 15px;
  height: 18px;
  background-size: 15px 18px;
  background-repeat: no-repeat;
  background-position: center;
}

.single-download-page .control-bar .upload-files-btn:before {
  background-image: url(../../resources/images/svg/upload.svg);
}

.single-download-page .control-bar .add-folder-btn:before {
  background-image: url(../../resources/images/svg/plus-orange.svg);
}

.single-download-page .control-bar .downloads-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9;
  display: -ms-flexbox;
  display: flex;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
}

.single-download-page .control-bar .downloads-popup.active {
  visibility: visible;
  opacity: 1;
}

.single-download-page .control-bar .downloads-popup .downloads-popup_containter {
  margin: auto;
  width: 570px;
  background: #fff;
  padding: 20px 27px 36px;
  position: relative;
}

.single-download-page .control-bar .downloads-popup .downloads-popup_containter h2 {
  font-size: 35px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 32px;
}

.single-download-page .control-bar .downloads-popup .downloads-popup_containter h2 b {
  color: #FFA400;
}

.single-download-page .control-bar .downloads-popup .downloads-popup_containter .folder-name {
  margin-bottom: 24px;
}

.single-download-page .control-bar .downloads-popup .downloads-popup_containter .popup-label {
  color: #123147;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 9px;
}

.single-download-page .control-bar .downloads-popup .downloads-popup_containter input[type="text"] {
  border-radius: 5px;
  border: 1px solid #DFE1E2;
  background: #FFF;
  width: 100%;
  height: 40px;
  padding: 10px;
}

.single-download-page .control-bar .downloads-popup .downloads-popup_containter #file-upload-form .upload-file-label {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #123147;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 15px;
  -moz-column-gap: 15px;
  column-gap: 15px;
  padding: 15px;
  cursor: pointer;
  color: #123147;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

.single-download-page .control-bar .downloads-popup .downloads-popup_containter #file-upload-form input[type="file"] {
  display: none;
}

.single-download-page .control-bar .downloads-popup .downloads-popup_containter #file-upload-form input[type="file"]::file-selector-button {
  display: none;
}

.single-download-page .control-bar .downloads-popup .downloads-popup_containter .folder-button {
  margin-top: 44px;
  text-align: center;
}

.single-download-page .control-bar .downloads-popup .downloads-popup_containter .folder-button .upload-btn {
  background: transparent;
  border: none;
  color: #fff;
  font-family: 'futura-pt', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
}

.single-download-page .control-bar .downloads-popup .downloads-popup_containter .close-popup {
  position: absolute;
  right: 30px;
  top: 20px;
}

.single-download-page .control-bar .downloads-popup .downloads-popup_containter .selectedFiles {
  text-align: center;
  margin: 20px 0 0;
  max-height: 200px;
  overflow: scroll;
}

.single-download-page .control-bar .downloads-popup .downloads-popup_containter .selectedFiles p {
  margin-bottom: 5px;
}

.donwload-files-section table {
  border-collapse: collapse;
  width: 100%;
}

@media (max-width: 768px) {
  .donwload-files-section table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

.donwload-files-section td,
.donwload-files-section th {
  text-align: left;
  padding: 8px;
}

.donwload-files-section td.file-name,
.donwload-files-section th.file-name {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.donwload-files-section tr:nth-child(even) {
  background-color: #BDC6CC40;
}

.donwload-files-section img {
  height: 20px;
}

.donwload-files-section .file-image {
  margin-right: 23px;
}

.donwload-files-section .folder-image {
  margin-right: 19px;
}

.download-pagination {
  margin-top: 30px;
  float: right;
}

.download-pagination a,
.download-pagination span {
  color: #0C2A40;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.14;
}

.download-pagination a.current,
.download-pagination span.current {
  font-weight: 700;
}

.page-template-login b {
  color: #FFA400;
}

.login-container {
  padding: 100px 0 89px;
  background-color: #123147;
  color: #fff;
  background-image: url(../../resources/images/svg/login-background.svg);
  background-size: cover;
  background-repeat: no-repeat;
}

.login-container .login-info {
  max-width: 405px;
}

.login-container .login-info .description {
  color: #FFF;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  opacity: 0.8;
}

.login-container .sub-title,
.login-container .title {
  color: #fff;
}

@media (max-width: 1199px) {
  .login-container .form-container {
    margin-top: 30px;
  }
}

.login-container .form-container .custom-login-form {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 330px;
}

@media (max-width: 1199px) {
  .login-container .form-container .custom-login-form {
    max-width: 100%;
  }
}

.login-container .form-container .custom-login-form label {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
}

.login-container .form-container .custom-login-form input[type="text"],
.login-container .form-container .custom-login-form input[type="password"] {
  border-radius: 5px;
  background: #FFF;
  height: 45px;
  padding: 10px;
  margin-bottom: 25px;
}

.login-container .form-container .custom-login-form .login-button {
  margin-top: 15px;
  max-width: 150px;
}

.login-container .form-container .custom-login-form .rememberme {
  margin-right: 17px;
}

.login-container .login-message {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  opacity: 0.8;
  margin-top: 20px;
  position: absolute;
}

.search-results .header-section-container {
  margin-bottom: 0;
}

.search-results .breadcrumbs {
  border-bottom: none;
}

.search-results .search-results-section {
  background-color: #F3F5F6;
  padding-top: 70px;
  padding-bottom: 70px;
}

.search-form-page {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 83px;
}

.search-form-page .search-input {
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  background: #FFF;
  border: 1px solid #F3F5F6;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 28px;
  outline: none;
  padding: 7px 16px;
}

.search-form-page .btn {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.search-item {
  border-bottom: 1px solid #fff;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.search-item .title {
  font-size: 30px;
  font-weight: 700;
}

.search-item .btn-link {
  color: #ffc107;
}