@charset "UTF-8";

/* Slider */

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

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

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

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

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

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

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

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

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

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

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

.slick-slide img {
  display: block;
}

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

.slick-slide {
  display: none;
}

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

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

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

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

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

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

.no-scroll {
  overflow: hidden;
}

.grecaptcha-badge {
  display: none;
}

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

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

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */

/*
 *  Owl Carousel - Core
 */

.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */

.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */

.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/*
 * 	Owl Carousel - Auto Height Plugin
 */

.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */

.owl-carousel .owl-item {
  /**
    	This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
    	calculation of the height of the owl-item that breaks page layouts
     */
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""],
.owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: -webkit-transform 100ms ease;
  transition: transform 100ms ease;
  transition: transform 100ms ease, -webkit-transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/*!
 * animate.css -https://daneden.github.io/animate.css/
 * Version - 3.7.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2019 Daniel Eden
 */

@-webkit-keyframes bounce {
  0%, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes bounce {
  0%, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  0%, 50%, to {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  0%, 50%, to {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@keyframes rubberBand {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  0%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  0%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes wobble {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  0%, 11.1%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

@keyframes jello {
  0%, 11.1%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes bounceInDown {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes bounceInRight {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes bounceInUp {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

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

  to {
    opacity: 1;
  }
}

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

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

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

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
  }

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

@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }

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

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }

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

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }

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

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
  }

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

@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }

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

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }

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

@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }

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

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotateY(-15deg);
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotateY(-15deg);
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}

@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

@-webkit-keyframes jackInTheBox {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

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

@keyframes jackInTheBox {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

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

.jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}

@keyframes rollOut {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

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

@keyframes slideOutDown {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

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

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

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

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

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

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

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

@keyframes slideOutRight {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

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

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

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

@keyframes slideOutUp {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

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

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.animated.fast {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
}

.animated.faster {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@media (prefers-reduced-motion: reduce), (print) {
  .animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
}

.not-selectable {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.carousel {
  position: relative;
  box-sizing: border-box;
}

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

.carousel__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.carousel__track {
  display: -ms-flexbox;
  display: flex;
}

.carousel__slide {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: var(--carousel-slide-width, 60%);
  max-width: 100%;
  padding: 1rem;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.carousel.has-dots {
  margin-bottom: calc(0.5rem + 22px);
}

.carousel__dots {
  margin: 0 auto;
  padding: 0;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  list-style: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.carousel__dots .carousel__dot {
  margin: 0;
  padding: 0;
  display: block;
  position: relative;
  width: 22px;
  height: 22px;
  cursor: pointer;
}

.carousel__dots .carousel__dot:after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: currentColor;
  opacity: 0.25;
  transition: opacity 0.15s ease-in-out;
}

.carousel__dots .carousel__dot.is-selected:after {
  opacity: 1;
}

.carousel__button {
  width: var(--carousel-button-width, 48px);
  height: var(--carousel-button-height, 48px);
  padding: 0;
  border: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  pointer-events: all;
  cursor: pointer;
  color: var(--carousel-button-color, currentColor);
  background: var(--carousel-button-bg, transparent);
  border-radius: var(--carousel-button-border-radius, 50%);
  box-shadow: var(--carousel-button-shadow, none);
}

.carousel__button.is-prev,
.carousel__button.is-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.carousel__button.is-prev {
  left: 10px;
}

.carousel__button.is-next {
  right: 10px;
}

.carousel__button[disabled] {
  cursor: default;
  opacity: 0.3;
}

.carousel__button svg {
  width: var(--carousel-button-svg-width, 24px);
  height: var(--carousel-button-svg-height, 24px);
  fill: none;
  stroke: currentColor;
  stroke-width: var(--carousel-button-svg-stroke-width, 1.5);
  stroke-linejoin: bevel;
  stroke-linecap: round;
  -webkit-filter: var(--carousel-button-svg-filter, none);
  filter: var(--carousel-button-svg-filter, none);
  pointer-events: none;
}

body.compensate-for-scrollbar {
  overflow: hidden !important;
  -ms-touch-action: none;
  touch-action: none;
}

.fancybox__container {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: 0;
  padding: env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px) env(safe-area-inset-bottom, 0px) env(safe-area-inset-left, 0px);
  box-sizing: border-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  color: var(--fancybox-color, #fff);
  -webkit-tap-highlight-color: transparent;
  overflow: hidden;
  z-index: 1050;
  outline: none;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  --carousel-button-width: 48px;
  --carousel-button-height: 48px;
  --carousel-button-svg-width: 24px;
  --carousel-button-svg-height: 24px;
  --carousel-button-svg-stroke-width: 2.5;
  --carousel-button-svg-filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.4));
}

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

.fancybox__container :focus {
  outline: thin dotted;
}

body.is-using-mouse .fancybox__container :focus {
  outline: none;
}

.fancybox__backdrop {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: var(--fancybox-bg, rgba(24, 24, 27, 0.92));
}

.fancybox__carousel {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  z-index: 10;
}

.fancybox__carousel.has-dots {
  margin-bottom: calc(0.5rem + 22px);
}

.fancybox__viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
  cursor: default;
}

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

.fancybox__slide {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 64px;
  position: relative;
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  outline: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  --carousel-button-width: 36px;
  --carousel-button-height: 36px;
  --carousel-button-svg-width: 22px;
  --carousel-button-svg-height: 22px;
}

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

.fancybox__content {
  margin: 0 env(safe-area-inset-right, 0px) 0 env(safe-area-inset-left, 0px);
  padding: 36px;
  color: var(--fancybox-content-color, #374151);
  background: var(--fancybox-content-bg, #fff);
  position: relative;
  -ms-flex-item-align: center;
  align-self: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  z-index: 20;
}

.fancybox__caption {
  -ms-flex-item-align: center;
  align-self: center;
  max-width: 100%;
  margin: 0;
  padding: 1rem 0 0 0;
  line-height: 1.375;
  color: var(--fancybox-color, currentColor);
  visibility: visible;
  cursor: auto;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.is-loading .fancybox__caption {
  visibility: hidden;
}

.fancybox__container > .carousel__dots {
  top: 100%;
  color: var(--fancybox-color, #fff);
}

.fancybox__nav .carousel__button {
  z-index: 40;
}

.fancybox__nav .carousel__button.is-next {
  right: 8px;
}

.fancybox__nav .carousel__button.is-prev {
  left: 8px;
}

.carousel__button.is-close {
  position: absolute;
  top: 8px;
  right: 8px;
  top: calc(env(safe-area-inset-top, 0px) + 8px);
  right: calc(env(safe-area-inset-right, 0px) + 8px);
  z-index: 40;
}

.fancybox__content > .carousel__button.is-close {
  position: absolute;
  top: -36px;
  right: 0;
  color: var(--fancybox-color, #fff);
}

.fancybox__spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 1053;
  color: var(--fancybox-color, currentColor);
}

.fancybox__spinner svg {
  -webkit-animation: fancybox-rotate 2s linear infinite;
  animation: fancybox-rotate 2s linear infinite;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
}

.fancybox__spinner svg circle {
  fill: none;
  stroke-width: 2.5;
  stroke-miterlimit: 10;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  -webkit-animation: fancybox-dash 1.5s ease-in-out infinite;
  animation: fancybox-dash 1.5s ease-in-out infinite;
  stroke-linecap: round;
  stroke: currentColor;
}

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

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

@-webkit-keyframes fancybox-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }

  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}

@keyframes fancybox-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }

  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop,
.fancybox__container.is-animated[aria-hidden=false] .fancybox__caption,
.fancybox__container.is-animated[aria-hidden=false] .fancybox__nav,
.fancybox__container.is-animated[aria-hidden=false] .carousel__dots,
.fancybox__container.is-animated[aria-hidden=false] .carousel__button.is-close {
  transition: opacity var(--fancybox-ts, 0.25s) ease;
  opacity: var(--fancybox-opacity, 1);
}

.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop,
.fancybox__container.is-animated[aria-hidden=true] .fancybox__caption,
.fancybox__container.is-animated[aria-hidden=true] .fancybox__nav,
.fancybox__container.is-animated[aria-hidden=true] .carousel__dots,
.fancybox__container.is-animated[aria-hidden=true] .carousel__button.is-close {
  transition: opacity 0.2s ease;
  opacity: 0;
}

.fancybox-fadeIn {
  -webkit-animation: 0.2s ease both fancybox-fadeIn;
  animation: 0.2s ease both fancybox-fadeIn;
}

.fancybox-fadeOut {
  -webkit-animation: 0.2s ease both fancybox-fadeOut;
  animation: 0.2s ease both fancybox-fadeOut;
}

.fancybox-zoomInUp {
  -webkit-animation: 0.2s ease both fancybox-zoomInUp;
  animation: 0.2s ease both fancybox-zoomInUp;
}

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

.fancybox-throwOutUp {
  -webkit-animation: 0.2s ease both fancybox-throwOutUp;
  animation: 0.2s ease both fancybox-throwOutUp;
}

.fancybox-throwOutDown {
  -webkit-animation: 0.2s ease both fancybox-throwOutDown;
  animation: 0.2s ease both fancybox-throwOutDown;
}

@-webkit-keyframes fancybox-fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fancybox-fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes fancybox-fadeOut {
  to {
    opacity: 0;
  }
}

@keyframes fancybox-fadeOut {
  to {
    opacity: 0;
  }
}

@-webkit-keyframes fancybox-zoomInUp {
  from {
    -webkit-transform: scale(0.97) translate3d(0, 16px, 0);
    transform: scale(0.97) 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 fancybox-zoomInUp {
  from {
    -webkit-transform: scale(0.97) translate3d(0, 16px, 0);
    transform: scale(0.97) 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 fancybox-zoomOutDown {
  to {
    -webkit-transform: scale(0.97) translate3d(0, 16px, 0);
    transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
}

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

@-webkit-keyframes fancybox-throwOutUp {
  20% {
    opacity: 0.5;
  }

  to {
    -webkit-transform: translate3d(0, -30%, 0);
    transform: translate3d(0, -30%, 0);
    opacity: 0;
  }
}

@keyframes fancybox-throwOutUp {
  20% {
    opacity: 0.5;
  }

  to {
    -webkit-transform: translate3d(0, -30%, 0);
    transform: translate3d(0, -30%, 0);
    opacity: 0;
  }
}

@-webkit-keyframes fancybox-throwOutDown {
  20% {
    opacity: 0.5;
  }

  to {
    -webkit-transform: translate3d(0, 30%, 0);
    transform: translate3d(0, 30%, 0);
    opacity: 0;
  }
}

@keyframes fancybox-throwOutDown {
  20% {
    opacity: 0.5;
  }

  to {
    -webkit-transform: translate3d(0, 30%, 0);
    transform: translate3d(0, 30%, 0);
    opacity: 0;
  }
}

.fancybox__carousel .carousel__slide {
  scrollbar-width: thin;
  scrollbar-color: #ccc rgba(255, 255, 255, 0.1);
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.1);
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 2px;
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
}

.fancybox__carousel .is-draggable {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox__carousel .is-dragging {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox__carousel .carousel__slide:not(.has-image) .fancybox__content {
  cursor: auto;
}

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

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

.fancybox__image {
  background: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.has-image .fancybox__content {
  padding: 0;
  background: transparent;
}

.is-closing .has-image .fancybox__content {
  overflow: visible;
}

.has-image[data-image-fit=contain] {
  overflow: visible;
  -ms-touch-action: none;
  touch-action: none;
}

.has-image[data-image-fit=contain] .fancybox__content {
  min-height: 1px;
}

.has-image[data-image-fit=contain] .fancybox__image {
  max-width: 100%;
  min-height: 1px;
  -o-object-fit: contain;
  object-fit: contain;
  background: transparent;
}

.has-image[data-image-fit=contain-w] {
  overflow-x: hidden;
  overflow-y: auto;
}

.has-image[data-image-fit=contain-w] .fancybox__content {
  min-height: auto;
}

.has-image[data-image-fit=contain-w] .fancybox__image {
  max-width: 100%;
  height: auto;
}

.has-image[data-image-fit=cover] {
  overflow: visible;
  -ms-touch-action: none;
  touch-action: none;
}

.has-image[data-image-fit=cover] .fancybox__content {
  min-height: 1px;
  width: 100%;
  height: 100%;
}

.has-image[data-image-fit=cover] .fancybox__image {
  width: 100%;
  height: 100%;
  min-height: 1px;
  -o-object-fit: cover;
  object-fit: cover;
}

.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content,
.fancybox__carousel .fancybox__slide.has-map .fancybox__content,
.fancybox__carousel .fancybox__slide.has-pdf .fancybox__content,
.fancybox__carousel .fancybox__slide.has-video .fancybox__content,
.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  -ms-flex-negative: 1;
  flex-shrink: 1;
  min-height: 1px;
  overflow: visible;
}

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

.fancybox__carousel .fancybox__slide.has-video .fancybox__content,
.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  width: 960px;
  height: 540px;
  max-width: 100%;
  max-height: 100%;
}

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

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

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

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

.fancybox__thumbs {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  position: relative;
  padding: 0px 3px;
}

.fancybox__container.is-animated[aria-hidden=true] .fancybox__thumbs {
  transition: unset;
  opacity: 0;
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__thumbs {
  transition: opacity var(--fancybox-ts, 0.25s) ease-in;
  opacity: var(--fancybox-opacity, 1);
}

.fancybox__thumbs .carousel__slide {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: var(--fancybox-thumbs-width, 96px);
  margin: 0;
  padding: 8px 3px;
  box-sizing: content-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: visible;
  cursor: pointer;
}

.fancybox__thumbs .carousel__slide.is-nav-selected::after {
  content: "";
  position: absolute;
  top: 0;
  left: 3px;
  right: 3px;
  bottom: 3px;
  border-bottom: 3px solid currentColor;
}

.fancybox__thumbs .carousel__slide > * {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox__thumb {
  position: relative;
  width: 100%;
  padding-top: calc(100% / (var(--fancybox-thumbs-ratio, 1.5)));
  background-size: cover;
  background-position: center center;
  background-color: rgba(255, 255, 255, 0.1);
  background-repeat: no-repeat;
}

:root,
[data-bs-theme=light] {
  --bs-blue: #0087ff;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #ff5c00;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-black: #000;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #0087ff;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-primary-rgb: 0, 135, 255;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-primary-text-emphasis: #003666;
  --bs-secondary-text-emphasis: rgb(43.2, 46.8, 50);
  --bs-success-text-emphasis: rgb(10, 54, 33.6);
  --bs-info-text-emphasis: rgb(5.2, 80.8, 96);
  --bs-warning-text-emphasis: rgb(102, 77.2, 2.8);
  --bs-danger-text-emphasis: rgb(88, 21.2, 27.6);
  --bs-light-text-emphasis: #495057;
  --bs-dark-text-emphasis: #495057;
  --bs-primary-bg-subtle: #cce7ff;
  --bs-secondary-bg-subtle: rgb(225.6, 227.4, 229);
  --bs-success-bg-subtle: rgb(209, 231, 220.8);
  --bs-info-bg-subtle: rgb(206.6, 244.4, 252);
  --bs-warning-bg-subtle: rgb(255, 242.6, 205.4);
  --bs-danger-bg-subtle: rgb(248, 214.6, 217.8);
  --bs-light-bg-subtle: rgb(251.5, 252, 252.5);
  --bs-dark-bg-subtle: #ced4da;
  --bs-primary-border-subtle: #99cfff;
  --bs-secondary-border-subtle: rgb(196.2, 199.8, 203);
  --bs-success-border-subtle: rgb(163, 207, 186.6);
  --bs-info-border-subtle: rgb(158.2, 233.8, 249);
  --bs-warning-border-subtle: rgb(255, 230.2, 155.8);
  --bs-danger-border-subtle: rgb(241, 174.2, 180.6);
  --bs-light-border-subtle: #e9ecef;
  --bs-dark-border-subtle: #adb5bd;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-font-sans-serif: Montserrat, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.6;
  --bs-body-color: #212529;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg: #fff;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-emphasis-color: #000;
  --bs-emphasis-color-rgb: 0, 0, 0;
  --bs-secondary-color: rgba(33, 37, 41, 0.75);
  --bs-secondary-color-rgb: 33, 37, 41;
  --bs-secondary-bg: #e9ecef;
  --bs-secondary-bg-rgb: 233, 236, 239;
  --bs-tertiary-color: rgba(33, 37, 41, 0.5);
  --bs-tertiary-color-rgb: 33, 37, 41;
  --bs-tertiary-bg: #f8f9fa;
  --bs-tertiary-bg-rgb: 248, 249, 250;
  --bs-heading-color: inherit;
  --bs-link-color: #0087ff;
  --bs-link-color-rgb: 0, 135, 255;
  --bs-link-decoration: underline;
  --bs-link-hover-color: #006ccc;
  --bs-link-hover-color-rgb: 0, 108, 204;
  --bs-code-color: #d63384;
  --bs-highlight-color: #212529;
  --bs-highlight-bg: rgb(255, 242.6, 205.4);
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: #dee2e6;
  --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  --bs-border-radius: 0.375rem;
  --bs-border-radius-sm: 0.25rem;
  --bs-border-radius-lg: 0.5rem;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-xxl: 2rem;
  --bs-border-radius-2xl: var(--bs-border-radius-xxl);
  --bs-border-radius-pill: 50rem;
  --bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  --bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  --bs-focus-ring-width: 0.25rem;
  --bs-focus-ring-opacity: 0.25;
  --bs-focus-ring-color: rgba(0, 135, 255, 0.25);
  --bs-form-valid-color: #198754;
  --bs-form-valid-border-color: #198754;
  --bs-form-invalid-color: #dc3545;
  --bs-form-invalid-border-color: #dc3545;
}

[data-bs-theme=dark] {
  color-scheme: dark;
  --bs-body-color: #dee2e6;
  --bs-body-color-rgb: 222, 226, 230;
  --bs-body-bg: #212529;
  --bs-body-bg-rgb: 33, 37, 41;
  --bs-emphasis-color: #fff;
  --bs-emphasis-color-rgb: 255, 255, 255;
  --bs-secondary-color: rgba(222, 226, 230, 0.75);
  --bs-secondary-color-rgb: 222, 226, 230;
  --bs-secondary-bg: #343a40;
  --bs-secondary-bg-rgb: 52, 58, 64;
  --bs-tertiary-color: rgba(222, 226, 230, 0.5);
  --bs-tertiary-color-rgb: 222, 226, 230;
  --bs-tertiary-bg: rgb(42.5, 47.5, 52.5);
  --bs-tertiary-bg-rgb: 43, 48, 53;
  --bs-primary-text-emphasis: #66b7ff;
  --bs-secondary-text-emphasis: rgb(166.8, 172.2, 177);
  --bs-success-text-emphasis: rgb(117, 183, 152.4);
  --bs-info-text-emphasis: rgb(109.8, 223.2, 246);
  --bs-warning-text-emphasis: rgb(255, 217.8, 106.2);
  --bs-danger-text-emphasis: rgb(234, 133.8, 143.4);
  --bs-light-text-emphasis: #f8f9fa;
  --bs-dark-text-emphasis: #dee2e6;
  --bs-primary-bg-subtle: #001b33;
  --bs-secondary-bg-subtle: rgb(21.6, 23.4, 25);
  --bs-success-bg-subtle: rgb(5, 27, 16.8);
  --bs-info-bg-subtle: rgb(2.6, 40.4, 48);
  --bs-warning-bg-subtle: rgb(51, 38.6, 1.4);
  --bs-danger-bg-subtle: rgb(44, 10.6, 13.8);
  --bs-light-bg-subtle: #343a40;
  --bs-dark-bg-subtle: #1a1d20;
  --bs-primary-border-subtle: #005199;
  --bs-secondary-border-subtle: rgb(64.8, 70.2, 75);
  --bs-success-border-subtle: rgb(15, 81, 50.4);
  --bs-info-border-subtle: rgb(7.8, 121.2, 144);
  --bs-warning-border-subtle: rgb(153, 115.8, 4.2);
  --bs-danger-border-subtle: rgb(132, 31.8, 41.4);
  --bs-light-border-subtle: #495057;
  --bs-dark-border-subtle: #343a40;
  --bs-heading-color: inherit;
  --bs-link-color: #66b7ff;
  --bs-link-hover-color: rgb(132.6, 197.4, 255);
  --bs-link-color-rgb: 102, 183, 255;
  --bs-link-hover-color-rgb: 133, 197, 255;
  --bs-code-color: rgb(230.4, 132.6, 181.2);
  --bs-highlight-color: #dee2e6;
  --bs-highlight-bg: rgb(102, 77.2, 2.8);
  --bs-border-color: #495057;
  --bs-border-color-translucent: rgba(255, 255, 255, 0.15);
  --bs-form-valid-color: rgb(117, 183, 152.4);
  --bs-form-valid-border-color: rgb(117, 183, 152.4);
  --bs-form-invalid-color: rgb(234, 133.8, 143.4);
  --bs-form-invalid-border-color: rgb(234, 133.8, 143.4);
}

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

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: var(--bs-border-width) solid;
  opacity: 0.25;
}

h6,
.h6,
h5,
.h5,
h4,
.h4,
h3,
.h3,
h2,
.h2,
h1,
.h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--bs-heading-color);
}

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

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

abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

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

ol,
ul {
  padding-left: 2rem;
}

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

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

dt {
  font-weight: 700;
}

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

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

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

mark,
.mark {
  padding: 0.1875em;
  color: var(--bs-highlight-color);
  background-color: var(--bs-highlight-bg);
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
  text-decoration: underline;
}

a:hover {
  --bs-link-color-rgb: var(--bs-link-hover-color-rgb);
}

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

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

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}

pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: var(--bs-code-color);
  word-wrap: break-word;
}

a > code {
  color: inherit;
}

kbd {
  padding: 0.1875rem 0.375rem;
  font-size: 0.875em;
  color: var(--bs-body-bg);
  background-color: var(--bs-body-color);
}

kbd kbd {
  padding: 0;
  font-size: 1em;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: var(--bs-secondary-color);
  text-align: left;
}

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

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

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,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

select:disabled {
  opacity: 1;
}

[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
  display: none !important;
}

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

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

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

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  line-height: inherit;
  font-size: 1.5rem;
}

legend + * {
  clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

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

[type=search]::-webkit-search-cancel-button {
  cursor: pointer;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

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

output {
  display: inline-block;
}

iframe {
  border: 0;
}

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

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

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

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

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

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

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

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

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

.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: 0.875em;
  text-transform: uppercase;
}

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

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

.blockquote-footer {
  margin-top: -1rem;
  margin-bottom: 1rem;
  font-size: 0.875em;
  color: #6c757d;
}

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

.container,
.container-fluid,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  --bs-gutter-x: 38px;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

:root {
  --bs-breakpoint-xs: 0;
  --bs-breakpoint-sm: 576px;
  --bs-breakpoint-md: 768px;
  --bs-breakpoint-lg: 992px;
  --bs-breakpoint-xl: 1178px;
}

.row {
  --bs-gutter-x: 38px;
  --bs-gutter-y: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row > * {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
}

.row-cols-auto > * {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

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

.text-bg-primary {
  color: #000 !important;
  background-color: RGBA(var(--bs-primary-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-secondary {
  color: #fff !important;
  background-color: RGBA(var(--bs-secondary-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-success {
  color: #fff !important;
  background-color: RGBA(var(--bs-success-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-info {
  color: #000 !important;
  background-color: RGBA(var(--bs-info-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-warning {
  color: #000 !important;
  background-color: RGBA(var(--bs-warning-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-danger {
  color: #fff !important;
  background-color: RGBA(var(--bs-danger-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-light {
  color: #000 !important;
  background-color: RGBA(var(--bs-light-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-dark {
  color: #fff !important;
  background-color: RGBA(var(--bs-dark-rgb), var(--bs-bg-opacity, 1)) !important;
}

.link-primary {
  color: RGBA(var(--bs-primary-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-primary-rgb), var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-primary-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

.link-primary:hover,
.link-primary:focus {
  color: RGBA(51, 159, 255, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(51, 159, 255, var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(51, 159, 255, var(--bs-link-underline-opacity, 1)) !important;
}

.link-secondary {
  color: RGBA(var(--bs-secondary-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-secondary-rgb), var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-secondary-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

.link-secondary:hover,
.link-secondary:focus {
  color: RGBA(86, 94, 100, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(86, 94, 100, var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(86, 94, 100, var(--bs-link-underline-opacity, 1)) !important;
}

.link-success {
  color: RGBA(var(--bs-success-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-success-rgb), var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-success-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

.link-success:hover,
.link-success:focus {
  color: RGBA(20, 108, 67, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(20, 108, 67, var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(20, 108, 67, var(--bs-link-underline-opacity, 1)) !important;
}

.link-info {
  color: RGBA(var(--bs-info-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-info-rgb), var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-info-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

.link-info:hover,
.link-info:focus {
  color: RGBA(61, 213, 243, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(61, 213, 243, var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(61, 213, 243, var(--bs-link-underline-opacity, 1)) !important;
}

.link-warning {
  color: RGBA(var(--bs-warning-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-warning-rgb), var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-warning-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

.link-warning:hover,
.link-warning:focus {
  color: RGBA(255, 205, 57, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(255, 205, 57, var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(255, 205, 57, var(--bs-link-underline-opacity, 1)) !important;
}

.link-danger {
  color: RGBA(var(--bs-danger-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-danger-rgb), var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-danger-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

.link-danger:hover,
.link-danger:focus {
  color: RGBA(176, 42, 55, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(176, 42, 55, var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(176, 42, 55, var(--bs-link-underline-opacity, 1)) !important;
}

.link-light {
  color: RGBA(var(--bs-light-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-light-rgb), var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-light-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

.link-light:hover,
.link-light:focus {
  color: RGBA(249, 250, 251, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(249, 250, 251, var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(249, 250, 251, var(--bs-link-underline-opacity, 1)) !important;
}

.link-dark {
  color: RGBA(var(--bs-dark-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-dark-rgb), var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-dark-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

.link-dark:hover,
.link-dark:focus {
  color: RGBA(26, 30, 33, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(26, 30, 33, var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(26, 30, 33, var(--bs-link-underline-opacity, 1)) !important;
}

.link-body-emphasis {
  color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

.link-body-emphasis:hover,
.link-body-emphasis:focus {
  color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 0.75)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 0.75)) !important;
  text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 0.75)) !important;
}

.focus-ring:focus {
  outline: 0;
  box-shadow: var(--bs-focus-ring-x, 0) var(--bs-focus-ring-y, 0) var(--bs-focus-ring-blur, 0) var(--bs-focus-ring-width) var(--bs-focus-ring-color);
}

.icon-link {
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 0.375rem;
  -ms-flex-align: center;
  align-items: center;
  -webkit-text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 0.5));
  text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 0.5));
  text-underline-offset: 0.25em;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.icon-link > .bi {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  fill: currentcolor;
  transition: 0.2s ease-in-out transform;
}

@media (prefers-reduced-motion: reduce) {
  .icon-link > .bi {
    transition: none;
  }
}

.icon-link-hover:hover > .bi,
.icon-link-hover:focus-visible > .bi {
  -webkit-transform: var(--bs-icon-link-transform, translate3d(0.25em, 0, 0));
  transform: var(--bs-icon-link-transform, translate3d(0.25em, 0, 0));
}

.ratio {
  position: relative;
  width: 100%;
}

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

.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio-1x1 {
  --bs-aspect-ratio: 100%;
}

.ratio-4x3 {
  --bs-aspect-ratio: 75%;
}

.ratio-16x9 {
  --bs-aspect-ratio: 56.25%;
}

.ratio-21x9 {
  --bs-aspect-ratio: 42.8571428571%;
}

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

.sticky-top {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1020;
}

.sticky-bottom {
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  z-index: 1020;
}

.hstack {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-item-align: stretch;
  align-self: stretch;
}

.vstack {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-item-align: stretch;
  align-self: stretch;
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.visually-hidden:not(caption),
.visually-hidden-focusable:not(:focus):not(:focus-within):not(caption) {
  position: absolute !important;
}

.visually-hidden *,
.visually-hidden-focusable:not(:focus):not(:focus-within) * {
  overflow: hidden !important;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

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

.vr {
  display: inline-block;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  width: var(--bs-border-width);
  min-height: 1em;
  background-color: currentcolor;
  opacity: 0.25;
}

.nav {
  --bs-nav-link-padding-x: 1rem;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: var(--bs-link-color);
  --bs-nav-link-hover-color: var(--bs-link-hover-color);
  --bs-nav-link-disabled-color: var(--bs-secondary-color);
  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: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  font-size: var(--bs-nav-link-font-size);
  font-weight: var(--bs-nav-link-font-weight);
  color: var(--bs-nav-link-color);
  text-decoration: none;
  background: none;
  border: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

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

.nav-link:hover,
.nav-link:focus {
  color: var(--bs-nav-link-hover-color);
}

.nav-link:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(0, 135, 255, 0.25);
}

.nav-link.disabled,
.nav-link:disabled {
  color: var(--bs-nav-link-disabled-color);
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  --bs-nav-tabs-border-width: var(--bs-border-width);
  --bs-nav-tabs-border-color: var(--bs-border-color);
  --bs-nav-tabs-border-radius: var(--bs-border-radius);
  --bs-nav-tabs-link-hover-border-color: var(--bs-secondary-bg) var(--bs-secondary-bg) var(--bs-border-color);
  --bs-nav-tabs-link-active-color: var(--bs-emphasis-color);
  --bs-nav-tabs-link-active-bg: var(--bs-body-bg);
  --bs-nav-tabs-link-active-border-color: var(--bs-border-color) var(--bs-border-color) var(--bs-body-bg);
  border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
}

.nav-tabs .nav-link {
  margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
  border: var(--bs-nav-tabs-border-width) solid transparent;
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
  isolation: isolate;
  border-color: var(--bs-nav-tabs-link-hover-border-color);
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: var(--bs-nav-tabs-link-active-color);
  background-color: var(--bs-nav-tabs-link-active-bg);
  border-color: var(--bs-nav-tabs-link-active-border-color);
}

.nav-tabs .dropdown-menu {
  margin-top: calc(-1 * var(--bs-nav-tabs-border-width));
}

.nav-pills {
  --bs-nav-pills-border-radius: var(--bs-border-radius);
  --bs-nav-pills-link-active-color: #fff;
  --bs-nav-pills-link-active-bg: #0087ff;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: var(--bs-nav-pills-link-active-color);
  background-color: var(--bs-nav-pills-link-active-bg);
}

.nav-underline {
  --bs-nav-underline-gap: 1rem;
  --bs-nav-underline-border-width: 0.125rem;
  --bs-nav-underline-link-active-color: var(--bs-emphasis-color);
  gap: var(--bs-nav-underline-gap);
}

.nav-underline .nav-link {
  padding-right: 0;
  padding-left: 0;
  border-bottom: var(--bs-nav-underline-border-width) solid transparent;
}

.nav-underline .nav-link:hover,
.nav-underline .nav-link:focus {
  border-bottom-color: currentcolor;
}

.nav-underline .nav-link.active,
.nav-underline .show > .nav-link {
  font-weight: 700;
  color: var(--bs-nav-underline-link-active-color);
  border-bottom-color: currentcolor;
}

.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-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  text-align: center;
}

.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
  width: 100%;
}

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

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

.navbar {
  --bs-navbar-padding-x: 0;
  --bs-navbar-padding-y: 0.5rem;
  --bs-navbar-color: rgba(var(--bs-emphasis-color-rgb), 0.65);
  --bs-navbar-hover-color: rgba(var(--bs-emphasis-color-rgb), 0.8);
  --bs-navbar-disabled-color: rgba(var(--bs-emphasis-color-rgb), 0.3);
  --bs-navbar-active-color: rgba(var(--bs-emphasis-color-rgb), 1);
  --bs-navbar-brand-padding-y: 0.3rem;
  --bs-navbar-brand-margin-end: 1rem;
  --bs-navbar-brand-font-size: 1.25rem;
  --bs-navbar-brand-color: rgba(var(--bs-emphasis-color-rgb), 1);
  --bs-navbar-brand-hover-color: rgba(var(--bs-emphasis-color-rgb), 1);
  --bs-navbar-nav-link-padding-x: 0.5rem;
  --bs-navbar-toggler-padding-y: 0.25rem;
  --bs-navbar-toggler-padding-x: 0.75rem;
  --bs-navbar-toggler-font-size: 1.25rem;
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  --bs-navbar-toggler-border-color: rgba(var(--bs-emphasis-color-rgb), 0.15);
  --bs-navbar-toggler-border-radius: var(--bs-border-radius);
  --bs-navbar-toggler-focus-width: 0;
  --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
  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: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x);
}

.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: inherit;
  flex-wrap: inherit;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.navbar-brand {
  padding-top: var(--bs-navbar-brand-padding-y);
  padding-bottom: var(--bs-navbar-brand-padding-y);
  margin-right: var(--bs-navbar-brand-margin-end);
  font-size: var(--bs-navbar-brand-font-size);
  color: var(--bs-navbar-brand-color);
  text-decoration: none;
  white-space: nowrap;
}

.navbar-brand:hover,
.navbar-brand:focus {
  color: var(--bs-navbar-brand-hover-color);
}

.navbar-nav {
  --bs-nav-link-padding-x: 0;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: var(--bs-navbar-color);
  --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
  --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
  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.active,
.navbar-nav .nav-link.show {
  color: var(--bs-navbar-active-color);
}

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

.navbar-text {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: var(--bs-navbar-color);
}

.navbar-text a,
.navbar-text a:hover,
.navbar-text a:focus {
  color: var(--bs-navbar-active-color);
}

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

.navbar-toggler {
  padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
  font-size: var(--bs-navbar-toggler-font-size);
  line-height: 1;
  color: var(--bs-navbar-color);
  background-color: transparent;
  border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
  transition: var(--bs-navbar-toggler-transition);
}

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

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

.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width);
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-image: var(--bs-navbar-toggler-icon-bg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.navbar-nav-scroll {
  max-height: var(--bs-scroll-height, 75vh);
  overflow-y: auto;
}

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

.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: var(--bs-navbar-nav-link-padding-x);
  padding-left: var(--bs-navbar-nav-link-padding-x);
}

.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-expand .offcanvas {
  position: static;
  z-index: auto;
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
  background-color: transparent !important;
  border: 0 !important;
  -webkit-transform: none !important;
  transform: none !important;
  transition: none;
}

.navbar-expand .offcanvas .offcanvas-header {
  display: none;
}

.navbar-expand .offcanvas .offcanvas-body {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-positive: 0;
  flex-grow: 0;
  padding: 0;
  overflow-y: visible;
}

.navbar-dark,
.navbar[data-bs-theme=dark] {
  --bs-navbar-color: rgba(255, 255, 255, 0.55);
  --bs-navbar-hover-color: rgba(255, 255, 255, 0.75);
  --bs-navbar-disabled-color: rgba(255, 255, 255, 0.25);
  --bs-navbar-active-color: #fff;
  --bs-navbar-brand-color: #fff;
  --bs-navbar-brand-hover-color: #fff;
  --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.1);
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

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

.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 {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

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

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

@media (prefers-reduced-motion: reduce) {
  .collapsing.collapse-horizontal {
    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;
}

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

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

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

.object-fit-contain {
  -o-object-fit: contain !important;
  object-fit: contain !important;
}

.object-fit-cover {
  -o-object-fit: cover !important;
  object-fit: cover !important;
}

.object-fit-fill {
  -o-object-fit: fill !important;
  object-fit: fill !important;
}

.object-fit-scale {
  -o-object-fit: scale-down !important;
  object-fit: scale-down !important;
}

.object-fit-none {
  -o-object-fit: none !important;
  object-fit: none !important;
}

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

.opacity-25 {
  opacity: 0.25 !important;
}

.opacity-50 {
  opacity: 0.5 !important;
}

.opacity-75 {
  opacity: 0.75 !important;
}

.opacity-100 {
  opacity: 1 !important;
}

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

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

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

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

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

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

.overflow-x-visible {
  overflow-x: visible !important;
}

.overflow-x-scroll {
  overflow-x: scroll !important;
}

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

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

.overflow-y-visible {
  overflow-y: visible !important;
}

.overflow-y-scroll {
  overflow-y: scroll !important;
}

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

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

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

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

.d-inline-grid {
  display: inline-grid !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;
}

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

.shadow {
  box-shadow: var(--bs-box-shadow) !important;
}

.shadow-sm {
  box-shadow: var(--bs-box-shadow-sm) !important;
}

.shadow-lg {
  box-shadow: var(--bs-box-shadow-lg) !important;
}

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

.focus-ring-primary {
  --bs-focus-ring-color: rgba(var(--bs-primary-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-secondary {
  --bs-focus-ring-color: rgba(var(--bs-secondary-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-success {
  --bs-focus-ring-color: rgba(var(--bs-success-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-info {
  --bs-focus-ring-color: rgba(var(--bs-info-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-warning {
  --bs-focus-ring-color: rgba(var(--bs-warning-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-danger {
  --bs-focus-ring-color: rgba(var(--bs-danger-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-light {
  --bs-focus-ring-color: rgba(var(--bs-light-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-dark {
  --bs-focus-ring-color: rgba(var(--bs-dark-rgb), var(--bs-focus-ring-opacity));
}

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

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

.top-50 {
  top: 50% !important;
}

.top-100 {
  top: 100% !important;
}

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

.bottom-50 {
  bottom: 50% !important;
}

.bottom-100 {
  bottom: 100% !important;
}

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

.start-50 {
  left: 50% !important;
}

.start-100 {
  left: 100% !important;
}

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

.end-50 {
  right: 50% !important;
}

.end-100 {
  right: 100% !important;
}

.translate-middle {
  -webkit-transform: translate(-50%, -50%) !important;
  transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
  -webkit-transform: translateX(-50%) !important;
  transform: translateX(-50%) !important;
}

.translate-middle-y {
  -webkit-transform: translateY(-50%) !important;
  transform: translateY(-50%) !important;
}

.border {
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

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

.border-top {
  border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

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

.border-end {
  border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

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

.border-bottom {
  border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

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

.border-start {
  border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

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

.border-primary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
}

.border-secondary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
}

.border-success {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
}

.border-info {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
}

.border-warning {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;
}

.border-danger {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
}

.border-light {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
}

.border-dark {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
}

.border-black {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-black-rgb), var(--bs-border-opacity)) !important;
}

.border-white {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
}

.border-primary-subtle {
  border-color: var(--bs-primary-border-subtle) !important;
}

.border-secondary-subtle {
  border-color: var(--bs-secondary-border-subtle) !important;
}

.border-success-subtle {
  border-color: var(--bs-success-border-subtle) !important;
}

.border-info-subtle {
  border-color: var(--bs-info-border-subtle) !important;
}

.border-warning-subtle {
  border-color: var(--bs-warning-border-subtle) !important;
}

.border-danger-subtle {
  border-color: var(--bs-danger-border-subtle) !important;
}

.border-light-subtle {
  border-color: var(--bs-light-border-subtle) !important;
}

.border-dark-subtle {
  border-color: var(--bs-dark-border-subtle) !important;
}

.border-1 {
  border-width: 1px !important;
}

.border-2 {
  border-width: 2px !important;
}

.border-3 {
  border-width: 3px !important;
}

.border-4 {
  border-width: 4px !important;
}

.border-5 {
  border-width: 5px !important;
}

.border-opacity-10 {
  --bs-border-opacity: 0.1;
}

.border-opacity-25 {
  --bs-border-opacity: 0.25;
}

.border-opacity-50 {
  --bs-border-opacity: 0.5;
}

.border-opacity-75 {
  --bs-border-opacity: 0.75;
}

.border-opacity-100 {
  --bs-border-opacity: 1;
}

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

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

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

.min-vw-100 {
  min-width: 100vw !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;
}

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

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

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

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

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

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

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

.justify-content-evenly {
  -ms-flex-pack: space-evenly !important;
  justify-content: space-evenly !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;
}

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

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

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

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

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

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

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

.order-last {
  -ms-flex-order: 6 !important;
  order: 6 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.me-0 {
  margin-right: 0 !important;
}

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

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

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

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

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

.me-auto {
  margin-right: auto !important;
}

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

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

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

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

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

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

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

.ms-0 {
  margin-left: 0 !important;
}

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

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

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

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

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

.ms-auto {
  margin-left: auto !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pe-0 {
  padding-right: 0 !important;
}

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

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

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

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

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

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

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

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

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

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

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

.ps-0 {
  padding-left: 0 !important;
}

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

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

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

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

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

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

.gap-1 {
  gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.gap-5 {
  gap: 3rem !important;
}

.row-gap-0 {
  row-gap: 0 !important;
}

.row-gap-1 {
  row-gap: 0.25rem !important;
}

.row-gap-2 {
  row-gap: 0.5rem !important;
}

.row-gap-3 {
  row-gap: 1rem !important;
}

.row-gap-4 {
  row-gap: 1.5rem !important;
}

.row-gap-5 {
  row-gap: 3rem !important;
}

.column-gap-0 {
  -webkit-column-gap: 0 !important;
  -moz-column-gap: 0 !important;
  column-gap: 0 !important;
}

.column-gap-1 {
  -webkit-column-gap: 0.25rem !important;
  -moz-column-gap: 0.25rem !important;
  column-gap: 0.25rem !important;
}

.column-gap-2 {
  -webkit-column-gap: 0.5rem !important;
  -moz-column-gap: 0.5rem !important;
  column-gap: 0.5rem !important;
}

.column-gap-3 {
  -webkit-column-gap: 1rem !important;
  -moz-column-gap: 1rem !important;
  column-gap: 1rem !important;
}

.column-gap-4 {
  -webkit-column-gap: 1.5rem !important;
  -moz-column-gap: 1.5rem !important;
  column-gap: 1.5rem !important;
}

.column-gap-5 {
  -webkit-column-gap: 3rem !important;
  -moz-column-gap: 3rem !important;
  column-gap: 3rem !important;
}

.font-monospace {
  font-family: var(--bs-font-monospace) !important;
}

.fs-1 {
  font-size: 2rem !important;
}

.fs-2 {
  font-size: 1.8rem !important;
}

.fs-3 {
  font-size: 1.6rem !important;
}

.fs-4 {
  font-size: 1.4rem !important;
}

.fs-5 {
  font-size: 1.2rem !important;
}

.fs-6 {
  font-size: 1rem !important;
}

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

.fst-normal {
  font-style: normal !important;
}

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

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

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

.fw-medium {
  font-weight: 500 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

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

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

.lh-1 {
  line-height: 1 !important;
}

.lh-sm {
  line-height: 1.25 !important;
}

.lh-base {
  line-height: 1.6 !important;
}

.lh-lg {
  line-height: 2 !important;
}

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

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

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

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

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

.text-decoration-line-through {
  text-decoration: line-through !important;
}

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

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

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

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

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

/* rtl:begin:remove */

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

/* rtl:end:remove */

.text-primary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

.text-secondary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

.text-success {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}

.text-info {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}

.text-warning {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}

.text-danger {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}

.text-light {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}

.text-dark {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}

.text-black {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}

.text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

.text-body {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}

.text-muted {
  --bs-text-opacity: 1;
  color: var(--bs-secondary-color) !important;
}

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

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

.text-body-secondary {
  --bs-text-opacity: 1;
  color: var(--bs-secondary-color) !important;
}

.text-body-tertiary {
  --bs-text-opacity: 1;
  color: var(--bs-tertiary-color) !important;
}

.text-body-emphasis {
  --bs-text-opacity: 1;
  color: var(--bs-emphasis-color) !important;
}

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

.text-opacity-25 {
  --bs-text-opacity: 0.25;
}

.text-opacity-50 {
  --bs-text-opacity: 0.5;
}

.text-opacity-75 {
  --bs-text-opacity: 0.75;
}

.text-opacity-100 {
  --bs-text-opacity: 1;
}

.text-primary-emphasis {
  color: var(--bs-primary-text-emphasis) !important;
}

.text-secondary-emphasis {
  color: var(--bs-secondary-text-emphasis) !important;
}

.text-success-emphasis {
  color: var(--bs-success-text-emphasis) !important;
}

.text-info-emphasis {
  color: var(--bs-info-text-emphasis) !important;
}

.text-warning-emphasis {
  color: var(--bs-warning-text-emphasis) !important;
}

.text-danger-emphasis {
  color: var(--bs-danger-text-emphasis) !important;
}

.text-light-emphasis {
  color: var(--bs-light-text-emphasis) !important;
}

.text-dark-emphasis {
  color: var(--bs-dark-text-emphasis) !important;
}

.link-opacity-10 {
  --bs-link-opacity: 0.1;
}

.link-opacity-10-hover:hover {
  --bs-link-opacity: 0.1;
}

.link-opacity-25 {
  --bs-link-opacity: 0.25;
}

.link-opacity-25-hover:hover {
  --bs-link-opacity: 0.25;
}

.link-opacity-50 {
  --bs-link-opacity: 0.5;
}

.link-opacity-50-hover:hover {
  --bs-link-opacity: 0.5;
}

.link-opacity-75 {
  --bs-link-opacity: 0.75;
}

.link-opacity-75-hover:hover {
  --bs-link-opacity: 0.75;
}

.link-opacity-100 {
  --bs-link-opacity: 1;
}

.link-opacity-100-hover:hover {
  --bs-link-opacity: 1;
}

.link-offset-1 {
  text-underline-offset: 0.125em !important;
}

.link-offset-1-hover:hover {
  text-underline-offset: 0.125em !important;
}

.link-offset-2 {
  text-underline-offset: 0.25em !important;
}

.link-offset-2-hover:hover {
  text-underline-offset: 0.25em !important;
}

.link-offset-3 {
  text-underline-offset: 0.375em !important;
}

.link-offset-3-hover:hover {
  text-underline-offset: 0.375em !important;
}

.link-underline-primary {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity)) !important;
  text-decoration-color: rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-secondary {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity)) !important;
  text-decoration-color: rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-success {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity)) !important;
  text-decoration-color: rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-info {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity)) !important;
  text-decoration-color: rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-warning {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity)) !important;
  text-decoration-color: rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-danger {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity)) !important;
  text-decoration-color: rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-light {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity)) !important;
  text-decoration-color: rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-dark {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity)) !important;
  text-decoration-color: rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

.link-underline-opacity-0 {
  --bs-link-underline-opacity: 0;
}

.link-underline-opacity-0-hover:hover {
  --bs-link-underline-opacity: 0;
}

.link-underline-opacity-10 {
  --bs-link-underline-opacity: 0.1;
}

.link-underline-opacity-10-hover:hover {
  --bs-link-underline-opacity: 0.1;
}

.link-underline-opacity-25 {
  --bs-link-underline-opacity: 0.25;
}

.link-underline-opacity-25-hover:hover {
  --bs-link-underline-opacity: 0.25;
}

.link-underline-opacity-50 {
  --bs-link-underline-opacity: 0.5;
}

.link-underline-opacity-50-hover:hover {
  --bs-link-underline-opacity: 0.5;
}

.link-underline-opacity-75 {
  --bs-link-underline-opacity: 0.75;
}

.link-underline-opacity-75-hover:hover {
  --bs-link-underline-opacity: 0.75;
}

.link-underline-opacity-100 {
  --bs-link-underline-opacity: 1;
}

.link-underline-opacity-100-hover:hover {
  --bs-link-underline-opacity: 1;
}

.bg-primary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-success {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}

.bg-info {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
}

.bg-warning {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
}

.bg-danger {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}

.bg-light {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}

.bg-dark {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}

.bg-black {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}

.bg-white {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
}

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

.bg-body-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body-tertiary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-tertiary-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-opacity-10 {
  --bs-bg-opacity: 0.1;
}

.bg-opacity-25 {
  --bs-bg-opacity: 0.25;
}

.bg-opacity-50 {
  --bs-bg-opacity: 0.5;
}

.bg-opacity-75 {
  --bs-bg-opacity: 0.75;
}

.bg-opacity-100 {
  --bs-bg-opacity: 1;
}

.bg-primary-subtle {
  background-color: var(--bs-primary-bg-subtle) !important;
}

.bg-secondary-subtle {
  background-color: var(--bs-secondary-bg-subtle) !important;
}

.bg-success-subtle {
  background-color: var(--bs-success-bg-subtle) !important;
}

.bg-info-subtle {
  background-color: var(--bs-info-bg-subtle) !important;
}

.bg-warning-subtle {
  background-color: var(--bs-warning-bg-subtle) !important;
}

.bg-danger-subtle {
  background-color: var(--bs-danger-bg-subtle) !important;
}

.bg-light-subtle {
  background-color: var(--bs-light-bg-subtle) !important;
}

.bg-dark-subtle {
  background-color: var(--bs-dark-bg-subtle) !important;
}

.bg-gradient {
  background-image: var(--bs-gradient) !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;
}

.pe-none {
  pointer-events: none !important;
}

.pe-auto {
  pointer-events: auto !important;
}

.rounded {
  border-radius: var(--bs-border-radius) !important;
}

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

.rounded-1 {
  border-radius: var(--bs-border-radius-sm) !important;
}

.rounded-2 {
  border-radius: var(--bs-border-radius) !important;
}

.rounded-3 {
  border-radius: var(--bs-border-radius-lg) !important;
}

.rounded-4 {
  border-radius: var(--bs-border-radius-xl) !important;
}

.rounded-5 {
  border-radius: var(--bs-border-radius-xxl) !important;
}

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

.rounded-pill {
  border-radius: var(--bs-border-radius-pill) !important;
}

.rounded-top {
  border-top-left-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important;
}

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

.rounded-top-1 {
  border-top-left-radius: var(--bs-border-radius-sm) !important;
  border-top-right-radius: var(--bs-border-radius-sm) !important;
}

.rounded-top-2 {
  border-top-left-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important;
}

.rounded-top-3 {
  border-top-left-radius: var(--bs-border-radius-lg) !important;
  border-top-right-radius: var(--bs-border-radius-lg) !important;
}

.rounded-top-4 {
  border-top-left-radius: var(--bs-border-radius-xl) !important;
  border-top-right-radius: var(--bs-border-radius-xl) !important;
}

.rounded-top-5 {
  border-top-left-radius: var(--bs-border-radius-xxl) !important;
  border-top-right-radius: var(--bs-border-radius-xxl) !important;
}

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

.rounded-top-pill {
  border-top-left-radius: var(--bs-border-radius-pill) !important;
  border-top-right-radius: var(--bs-border-radius-pill) !important;
}

.rounded-end {
  border-top-right-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-border-radius) !important;
}

.rounded-end-0 {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.rounded-end-1 {
  border-top-right-radius: var(--bs-border-radius-sm) !important;
  border-bottom-right-radius: var(--bs-border-radius-sm) !important;
}

.rounded-end-2 {
  border-top-right-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-border-radius) !important;
}

.rounded-end-3 {
  border-top-right-radius: var(--bs-border-radius-lg) !important;
  border-bottom-right-radius: var(--bs-border-radius-lg) !important;
}

.rounded-end-4 {
  border-top-right-radius: var(--bs-border-radius-xl) !important;
  border-bottom-right-radius: var(--bs-border-radius-xl) !important;
}

.rounded-end-5 {
  border-top-right-radius: var(--bs-border-radius-xxl) !important;
  border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-end-circle {
  border-top-right-radius: 50% !important;
  border-bottom-right-radius: 50% !important;
}

.rounded-end-pill {
  border-top-right-radius: var(--bs-border-radius-pill) !important;
  border-bottom-right-radius: var(--bs-border-radius-pill) !important;
}

.rounded-bottom {
  border-bottom-right-radius: var(--bs-border-radius) !important;
  border-bottom-left-radius: var(--bs-border-radius) !important;
}

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

.rounded-bottom-1 {
  border-bottom-right-radius: var(--bs-border-radius-sm) !important;
  border-bottom-left-radius: var(--bs-border-radius-sm) !important;
}

.rounded-bottom-2 {
  border-bottom-right-radius: var(--bs-border-radius) !important;
  border-bottom-left-radius: var(--bs-border-radius) !important;
}

.rounded-bottom-3 {
  border-bottom-right-radius: var(--bs-border-radius-lg) !important;
  border-bottom-left-radius: var(--bs-border-radius-lg) !important;
}

.rounded-bottom-4 {
  border-bottom-right-radius: var(--bs-border-radius-xl) !important;
  border-bottom-left-radius: var(--bs-border-radius-xl) !important;
}

.rounded-bottom-5 {
  border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
  border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
}

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

.rounded-bottom-pill {
  border-bottom-right-radius: var(--bs-border-radius-pill) !important;
  border-bottom-left-radius: var(--bs-border-radius-pill) !important;
}

.rounded-start {
  border-bottom-left-radius: var(--bs-border-radius) !important;
  border-top-left-radius: var(--bs-border-radius) !important;
}

.rounded-start-0 {
  border-bottom-left-radius: 0 !important;
  border-top-left-radius: 0 !important;
}

.rounded-start-1 {
  border-bottom-left-radius: var(--bs-border-radius-sm) !important;
  border-top-left-radius: var(--bs-border-radius-sm) !important;
}

.rounded-start-2 {
  border-bottom-left-radius: var(--bs-border-radius) !important;
  border-top-left-radius: var(--bs-border-radius) !important;
}

.rounded-start-3 {
  border-bottom-left-radius: var(--bs-border-radius-lg) !important;
  border-top-left-radius: var(--bs-border-radius-lg) !important;
}

.rounded-start-4 {
  border-bottom-left-radius: var(--bs-border-radius-xl) !important;
  border-top-left-radius: var(--bs-border-radius-xl) !important;
}

.rounded-start-5 {
  border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
  border-top-left-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-start-circle {
  border-bottom-left-radius: 50% !important;
  border-top-left-radius: 50% !important;
}

.rounded-start-pill {
  border-bottom-left-radius: var(--bs-border-radius-pill) !important;
  border-top-left-radius: var(--bs-border-radius-pill) !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.z-n1 {
  z-index: -1 !important;
}

.z-0 {
  z-index: 0 !important;
}

.z-1 {
  z-index: 1 !important;
}

.z-2 {
  z-index: 2 !important;
}

.z-3 {
  z-index: 3 !important;
}

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

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

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

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

  .d-print-inline-grid {
    display: inline-grid !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;
  }

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

.form-label {
  margin-bottom: 0.5rem;
}

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

.col-form-label-lg {
  padding-top: calc(0.5rem + var(--bs-border-width));
  padding-bottom: calc(0.5rem + var(--bs-border-width));
  font-size: 1.25rem;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + var(--bs-border-width));
  padding-bottom: calc(0.25rem + var(--bs-border-width));
  font-size: 0.875rem;
}

.form-text {
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: var(--bs-secondary-color);
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--bs-body-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--bs-body-bg);
  background-clip: padding-box;
  border: var(--bs-border-width) solid var(--bs-border-color);
  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[type=file] {
  overflow: hidden;
}

.form-control[type=file]:not(:disabled):not([readonly]) {
  cursor: pointer;
}

.form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: rgb(127.5, 195, 255);
  outline: 0;
  box-shadow: 0;
}

.form-control::-webkit-date-and-time-value {
  min-width: 85px;
  height: 1.6em;
  margin: 0;
}

.form-control::-webkit-datetime-edit {
  display: block;
  padding: 0;
}

.form-control::-webkit-input-placeholder {
  color: var(--bs-secondary-color);
  opacity: 1;
}

.form-control::-moz-placeholder {
  color: var(--bs-secondary-color);
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: var(--bs-secondary-color);
  opacity: 1;
}

.form-control::-ms-input-placeholder {
  color: var(--bs-secondary-color);
  opacity: 1;
}

.form-control::placeholder {
  color: var(--bs-secondary-color);
  opacity: 1;
}

.form-control:disabled {
  background-color: var(--bs-secondary-bg);
  opacity: 1;
}

.form-control::file-selector-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  -webkit-margin-end: 0.75rem;
  -moz-margin-end: 0.75rem;
  margin-inline-end: 0.75rem;
  color: var(--bs-body-color);
  background-color: var(--bs-tertiary-bg);
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: var(--bs-border-width);
  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) {
  .form-control::file-selector-button {
    transition: none;
  }
}

.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: var(--bs-secondary-bg);
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  line-height: 1.6;
  color: var(--bs-body-color);
  background-color: transparent;
  border: solid transparent;
  border-width: var(--bs-border-width) 0;
}

.form-control-plaintext:focus {
  outline: 0;
}

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

.form-control-sm {
  min-height: calc(1.6em + 0.5rem + calc(var(--bs-border-width) * 2));
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}

.form-control-sm::file-selector-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  -webkit-margin-end: 0.5rem;
  -moz-margin-end: 0.5rem;
  margin-inline-end: 0.5rem;
}

.form-control-lg {
  min-height: calc(1.6em + 1rem + calc(var(--bs-border-width) * 2));
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
}

.form-control-lg::file-selector-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  -webkit-margin-end: 1rem;
  -moz-margin-end: 1rem;
  margin-inline-end: 1rem;
}

textarea.form-control {
  min-height: calc(1.6em + 0.75rem + calc(var(--bs-border-width) * 2));
}

textarea.form-control-sm {
  min-height: calc(1.6em + 0.5rem + calc(var(--bs-border-width) * 2));
}

textarea.form-control-lg {
  min-height: calc(1.6em + 1rem + calc(var(--bs-border-width) * 2));
}

.form-control-color {
  width: 3rem;
  height: calc(1.6em + 0.75rem + calc(var(--bs-border-width) * 2));
  padding: 0.375rem;
}

.form-control-color:not(:disabled):not([readonly]) {
  cursor: pointer;
}

.form-control-color::-moz-color-swatch {
  border: 0 !important;
}

.form-control-color::-webkit-color-swatch {
  border: 0 !important;
}

.form-control-color.form-control-sm {
  height: calc(1.6em + 0.5rem + calc(var(--bs-border-width) * 2));
}

.form-control-color.form-control-lg {
  height: calc(1.6em + 1rem + calc(var(--bs-border-width) * 2));
}

.form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--bs-body-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--bs-body-bg);
  background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: 0;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

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

.form-select:focus {
  border-color: rgb(127.5, 195, 255);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(0, 135, 255, 0.25);
}

.form-select[multiple],
.form-select[size]:not([size="1"]) {
  padding-right: 0.75rem;
  background-image: none;
}

.form-select:disabled {
  background-color: var(--bs-secondary-bg);
}

.form-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 var(--bs-body-color);
}

.form-select-sm {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
}

.form-select-lg {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
}

[data-bs-theme=dark] .form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23dee2e6' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.form-check {
  display: block;
  min-height: 1.6rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}

.form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
}

.form-check-reverse {
  padding-right: 1.5em;
  padding-left: 0;
  text-align: right;
}

.form-check-reverse .form-check-input {
  float: right;
  margin-right: -1.5em;
  margin-left: 0;
}

.form-check-input {
  --bs-form-check-bg: var(--bs-body-bg);
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  margin-top: 0.3em;
  vertical-align: top;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--bs-form-check-bg);
  background-image: var(--bs-form-check-bg-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: var(--bs-border-width) solid var(--bs-border-color);
  print-color-adjust: exact;
}

.form-check-input[type=radio] {
  border-radius: 50%;
}

.form-check-input:active {
  -webkit-filter: brightness(90%);
  filter: brightness(90%);
}

.form-check-input:focus {
  border-color: rgb(127.5, 195, 255);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(0, 135, 255, 0.25);
}

.form-check-input:checked {
  background-color: #0087ff;
  border-color: #0087ff;
}

.form-check-input:checked[type=checkbox] {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

.form-check-input:checked[type=radio] {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}

.form-check-input[type=checkbox]:indeterminate {
  background-color: #0087ff;
  border-color: #0087ff;
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}

.form-check-input:disabled {
  pointer-events: none;
  -webkit-filter: none;
  filter: none;
  opacity: 0.5;
}

.form-check-input[disabled] ~ .form-check-label,
.form-check-input:disabled ~ .form-check-label {
  cursor: default;
  opacity: 0.5;
}

.form-switch {
  padding-left: 2.5em;
}

.form-switch .form-check-input {
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  width: 2em;
  margin-left: -2.5em;
  background-image: var(--bs-form-switch-bg);
  background-position: left center;
  border-radius: 0;
  transition: background-position 0.15s ease-in-out;
}

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

.form-switch .form-check-input:focus {
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgb%28127.5, 195, 255%29'/%3e%3c/svg%3e");
}

.form-switch .form-check-input:checked {
  background-position: right center;
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.form-switch.form-check-reverse {
  padding-right: 2.5em;
  padding-left: 0;
}

.form-switch.form-check-reverse .form-check-input {
  margin-right: -2.5em;
  margin-left: 0;
}

.form-check-inline {
  display: inline-block;
  margin-right: 1rem;
}

.btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.btn-check[disabled] + .btn,
body .btn-check[disabled] + .wp-block-button__link,
.btn-check:disabled + .btn,
body .btn-check:disabled + .wp-block-button__link {
  pointer-events: none;
  -webkit-filter: none;
  filter: none;
  opacity: 0.65;
}

[data-bs-theme=dark] .form-switch .form-check-input:not(:checked):not(:focus) {
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 0.25%29'/%3e%3c/svg%3e");
}

.form-range {
  width: 100%;
  height: 1.5rem;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
}

.form-range:focus {
  outline: 0;
}

.form-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0;
}

.form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0;
}

.form-range::-moz-focus-outer {
  border: 0;
}

.form-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  -webkit-appearance: none;
  appearance: none;
  background-color: #0087ff;
  border: 0;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: 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) {
  .form-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}

.form-range::-webkit-slider-thumb:active {
  background-color: rgb(178.5, 219, 255);
}

.form-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: var(--bs-secondary-bg);
  border-color: transparent;
}

.form-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  -moz-appearance: none;
  appearance: none;
  background-color: #0087ff;
  border: 0;
  -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: 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) {
  .form-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}

.form-range::-moz-range-thumb:active {
  background-color: rgb(178.5, 219, 255);
}

.form-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: var(--bs-secondary-bg);
  border-color: transparent;
}

.form-range:disabled {
  pointer-events: none;
}

.form-range:disabled::-webkit-slider-thumb {
  background-color: var(--bs-secondary-color);
}

.form-range:disabled::-moz-range-thumb {
  background-color: var(--bs-secondary-color);
}

.form-floating {
  position: relative;
}

.form-floating > .form-control,
.form-floating > .form-control-plaintext,
.form-floating > .form-select {
  height: calc(3.5rem + calc(var(--bs-border-width) * 2));
  min-height: calc(3.5rem + calc(var(--bs-border-width) * 2));
  line-height: 1.25;
}

.form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  max-width: 100%;
  height: 100%;
  padding: 1rem 0.75rem;
  overflow: hidden;
  color: rgba(var(--bs-body-color-rgb), 0.65);
  text-align: start;
  text-overflow: ellipsis;
  white-space: nowrap;
  pointer-events: none;
  border: var(--bs-border-width) solid transparent;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
}

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

.form-floating > .form-control,
.form-floating > .form-control-plaintext {
  padding: 1rem 0.75rem;
}

.form-floating > .form-control::-webkit-input-placeholder,
.form-floating > .form-control-plaintext::-webkit-input-placeholder {
  color: transparent;
}

.form-floating > .form-control::-moz-placeholder,
.form-floating > .form-control-plaintext::-moz-placeholder {
  color: transparent;
}

.form-floating > .form-control:-ms-input-placeholder,
.form-floating > .form-control-plaintext:-ms-input-placeholder {
  color: transparent;
}

.form-floating > .form-control::-ms-input-placeholder,
.form-floating > .form-control-plaintext::-ms-input-placeholder {
  color: transparent;
}

.form-floating > .form-control::placeholder,
.form-floating > .form-control-plaintext::placeholder {
  color: transparent;
}

.form-floating > .form-control:not(:-moz-placeholder-shown),
.form-floating > .form-control-plaintext:not(:-moz-placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}

.form-floating > .form-control:not(:-ms-input-placeholder),
.form-floating > .form-control-plaintext:not(:-ms-input-placeholder) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}

.form-floating > .form-control:focus,
.form-floating > .form-control:not(:placeholder-shown),
.form-floating > .form-control-plaintext:focus,
.form-floating > .form-control-plaintext:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}

.form-floating > .form-control:-webkit-autofill,
.form-floating > .form-control-plaintext:-webkit-autofill {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}

.form-floating > .form-select {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
  padding-left: 0.75rem;
}

.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.form-floating > .form-control:not(:-ms-input-placeholder) ~ label {
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-control-plaintext ~ label,
.form-floating > .form-select ~ label {
  -webkit-transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.form-floating > .form-control:-webkit-autofill ~ label {
  -webkit-transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.form-floating > textarea:not(:-moz-placeholder-shown) ~ label::after {
  position: absolute;
  inset: 1rem 0.375rem;
  z-index: -1;
  height: 1.5em;
  content: "";
  background-color: var(--bs-body-bg);
}

.form-floating > textarea:not(:-ms-input-placeholder) ~ label::after {
  position: absolute;
  inset: 1rem 0.375rem;
  z-index: -1;
  height: 1.5em;
  content: "";
  background-color: var(--bs-body-bg);
}

.form-floating > textarea:focus ~ label::after,
.form-floating > textarea:not(:placeholder-shown) ~ label::after {
  position: absolute;
  inset: 1rem 0.375rem;
  z-index: -1;
  height: 1.5em;
  content: "";
  background-color: var(--bs-body-bg);
}

.form-floating > textarea:disabled ~ label::after {
  background-color: var(--bs-secondary-bg);
}

.form-floating > .form-control-plaintext ~ label {
  border-width: var(--bs-border-width) 0;
}

.form-floating > :disabled ~ label,
.form-floating > .form-control:disabled ~ label {
  color: #6c757d;
}

.input-group {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
}

.input-group > .form-control,
.input-group > .form-select,
.input-group > .form-floating {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}

.input-group > .form-control:focus,
.input-group > .form-select:focus,
.input-group > .form-floating:focus-within {
  z-index: 5;
}

.input-group .btn,
.input-group body .wp-block-button__link,
body .input-group .wp-block-button__link {
  position: relative;
  z-index: 2;
}

.input-group .btn:focus,
.input-group body .wp-block-button__link:focus,
body .input-group .wp-block-button__link:focus {
  z-index: 5;
}

.input-group-text {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--bs-body-color);
  text-align: center;
  white-space: nowrap;
  background-color: var(--bs-tertiary-bg);
  border: var(--bs-border-width) solid var(--bs-border-color);
}

.input-group-lg > .form-control,
.input-group-lg > .form-select,
.input-group-lg > .input-group-text,
.input-group-lg > .btn,
body .input-group-lg > .wp-block-button__link {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
}

.input-group-sm > .form-control,
.input-group-sm > .form-select,
.input-group-sm > .input-group-text,
.input-group-sm > .btn,
body .input-group-sm > .wp-block-button__link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}

.input-group-lg > .form-select,
.input-group-sm > .form-select {
  padding-right: 3rem;
}

.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: calc(-1 * var(--bs-border-width));
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: var(--bs-form-valid-color);
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: var(--bs-success);
}

.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: var(--bs-form-valid-border-color);
  padding-right: calc(1.6em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.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.1'/%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: var(--bs-form-valid-border-color);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
}

.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 .form-select:valid,
.form-select.is-valid {
  border-color: var(--bs-form-valid-border-color);
}

.was-validated .form-select:valid:not([multiple]):not([size]),
.was-validated .form-select:valid:not([multiple])[size="1"],
.form-select.is-valid:not([multiple]):not([size]),
.form-select.is-valid:not([multiple])[size="1"] {
  --bs-form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.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.1'/%3e%3c/svg%3e");
  padding-right: 4.125rem;
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.8em + 0.375rem) calc(0.8em + 0.375rem);
}

.was-validated .form-select:valid:focus,
.form-select.is-valid:focus {
  border-color: var(--bs-form-valid-border-color);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
}

.was-validated .form-control-color:valid,
.form-control-color.is-valid {
  width: calc(3rem + calc(1.6em + 0.75rem));
}

.was-validated .form-check-input:valid,
.form-check-input.is-valid {
  border-color: var(--bs-form-valid-border-color);
}

.was-validated .form-check-input:valid:checked,
.form-check-input.is-valid:checked {
  background-color: var(--bs-form-valid-color);
}

.was-validated .form-check-input:valid:focus,
.form-check-input.is-valid:focus {
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
}

.was-validated .form-check-input:valid ~ .form-check-label,
.form-check-input.is-valid ~ .form-check-label {
  color: var(--bs-form-valid-color);
}

.form-check-inline .form-check-input ~ .valid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group > .form-control:not(:focus):valid,
.input-group > .form-control:not(:focus).is-valid,
.was-validated .input-group > .form-select:not(:focus):valid,
.input-group > .form-select:not(:focus).is-valid,
.was-validated .input-group > .form-floating:not(:focus-within):valid,
.input-group > .form-floating:not(:focus-within).is-valid {
  z-index: 3;
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: var(--bs-form-invalid-color);
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: var(--bs-danger);
}

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

.was-validated .form-control:invalid:focus,
.form-control.is-invalid:focus {
  border-color: var(--bs-form-invalid-border-color);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
}

.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 .form-select:invalid,
.form-select.is-invalid {
  border-color: var(--bs-form-invalid-border-color);
}

.was-validated .form-select:invalid:not([multiple]):not([size]),
.was-validated .form-select:invalid:not([multiple])[size="1"],
.form-select.is-invalid:not([multiple]):not([size]),
.form-select.is-invalid:not([multiple])[size="1"] {
  --bs-form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  padding-right: 4.125rem;
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.8em + 0.375rem) calc(0.8em + 0.375rem);
}

.was-validated .form-select:invalid:focus,
.form-select.is-invalid:focus {
  border-color: var(--bs-form-invalid-border-color);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
}

.was-validated .form-control-color:invalid,
.form-control-color.is-invalid {
  width: calc(3rem + calc(1.6em + 0.75rem));
}

.was-validated .form-check-input:invalid,
.form-check-input.is-invalid {
  border-color: var(--bs-form-invalid-border-color);
}

.was-validated .form-check-input:invalid:checked,
.form-check-input.is-invalid:checked {
  background-color: var(--bs-form-invalid-color);
}

.was-validated .form-check-input:invalid:focus,
.form-check-input.is-invalid:focus {
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
}

.was-validated .form-check-input:invalid ~ .form-check-label,
.form-check-input.is-invalid ~ .form-check-label {
  color: var(--bs-form-invalid-color);
}

.form-check-inline .form-check-input ~ .invalid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group > .form-control:not(:focus):invalid,
.input-group > .form-control:not(:focus).is-invalid,
.was-validated .input-group > .form-select:not(:focus):invalid,
.input-group > .form-select:not(:focus).is-invalid,
.was-validated .input-group > .form-floating:not(:focus-within):invalid,
.input-group > .form-floating:not(:focus-within).is-invalid {
  z-index: 4;
}

.btn,
body .wp-block-button__link {
  --bs-btn-padding-x: 0.75rem;
  --bs-btn-padding-y: 0.375rem;
  --bs-btn-font-family: ;
  --bs-btn-font-size: 1rem;
  --bs-btn-font-weight: 400;
  --bs-btn-line-height: 1.6;
  --bs-btn-color: var(--bs-body-color);
  --bs-btn-bg: transparent;
  --bs-btn-border-width: var(--bs-border-width);
  --bs-btn-border-color: transparent;
  --bs-btn-border-radius: var(--bs-border-radius);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  --bs-btn-disabled-opacity: 0.65;
  --bs-btn-focus-box-shadow: 0 0 0 0 rgba(var(--bs-btn-focus-shadow-rgb), .5);
  display: inline-block;
  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
  font-family: var(--bs-btn-font-family);
  font-size: var(--bs-btn-font-size);
  font-weight: var(--bs-btn-font-weight);
  line-height: var(--bs-btn-line-height);
  color: var(--bs-btn-color);
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
  background-color: var(--bs-btn-bg);
  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,
  body .wp-block-button__link {
    transition: none;
  }
}

.btn:hover,
body .wp-block-button__link:hover {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
}

.btn-check + .btn:hover,
body .btn-check + .wp-block-button__link:hover {
  color: var(--bs-btn-color);
  background-color: var(--bs-btn-bg);
  border-color: var(--bs-btn-border-color);
}

.btn:focus-visible,
body .wp-block-button__link:focus-visible {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
  outline: 0;
  box-shadow: var(--bs-btn-focus-box-shadow);
}

.btn-check:focus-visible + .btn,
body .btn-check:focus-visible + .wp-block-button__link {
  border-color: var(--bs-btn-hover-border-color);
  outline: 0;
  box-shadow: var(--bs-btn-focus-box-shadow);
}

.btn-check:checked + .btn,
body .btn-check:checked + .wp-block-button__link,
:not(.btn-check) + .btn:active,
body :not(.btn-check) + .wp-block-button__link:active,
.btn:first-child:active,
body .wp-block-button__link:first-child:active,
.btn.active,
body .active.wp-block-button__link,
.btn.show,
body .show.wp-block-button__link {
  color: var(--bs-btn-active-color);
  background-color: var(--bs-btn-active-bg);
  border-color: var(--bs-btn-active-border-color);
}

.btn-check:checked + .btn:focus-visible,
body .btn-check:checked + .wp-block-button__link:focus-visible,
:not(.btn-check) + .btn:active:focus-visible,
body :not(.btn-check) + .wp-block-button__link:active:focus-visible,
.btn:first-child:active:focus-visible,
body .wp-block-button__link:first-child:active:focus-visible,
.btn.active:focus-visible,
body .active.wp-block-button__link:focus-visible,
.btn.show:focus-visible,
body .show.wp-block-button__link:focus-visible {
  box-shadow: var(--bs-btn-focus-box-shadow);
}

.btn-check:checked:focus-visible + .btn,
body .btn-check:checked:focus-visible + .wp-block-button__link {
  box-shadow: var(--bs-btn-focus-box-shadow);
}

.btn:disabled,
body .wp-block-button__link:disabled,
.btn.disabled,
body .disabled.wp-block-button__link,
fieldset:disabled .btn,
fieldset:disabled body .wp-block-button__link,
body fieldset:disabled .wp-block-button__link {
  color: var(--bs-btn-disabled-color);
  pointer-events: none;
  background-color: var(--bs-btn-disabled-bg);
  border-color: var(--bs-btn-disabled-border-color);
  opacity: var(--bs-btn-disabled-opacity);
}

.btn-primary {
  --bs-btn-color: #000;
  --bs-btn-bg: #0087ff;
  --bs-btn-border-color: #0087ff;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: rgb(38.25, 153, 255);
  --bs-btn-hover-border-color: rgb(25.5, 147, 255);
  --bs-btn-focus-shadow-rgb: 0, 115, 217;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #339fff;
  --bs-btn-active-border-color: rgb(25.5, 147, 255);
  --bs-btn-active-shadow: 0;
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #0087ff;
  --bs-btn-disabled-border-color: #0087ff;
}

.btn-secondary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #6c757d;
  --bs-btn-border-color: #6c757d;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgb(91.8, 99.45, 106.25);
  --bs-btn-hover-border-color: rgb(86.4, 93.6, 100);
  --bs-btn-focus-shadow-rgb: 130, 138, 145;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgb(86.4, 93.6, 100);
  --bs-btn-active-border-color: rgb(81, 87.75, 93.75);
  --bs-btn-active-shadow: 0;
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #6c757d;
  --bs-btn-disabled-border-color: #6c757d;
}

.btn-success {
  --bs-btn-color: #fff;
  --bs-btn-bg: #198754;
  --bs-btn-border-color: #198754;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgb(21.25, 114.75, 71.4);
  --bs-btn-hover-border-color: rgb(20, 108, 67.2);
  --bs-btn-focus-shadow-rgb: 60, 153, 110;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgb(20, 108, 67.2);
  --bs-btn-active-border-color: rgb(18.75, 101.25, 63);
  --bs-btn-active-shadow: 0;
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #198754;
  --bs-btn-disabled-border-color: #198754;
}

.btn-info {
  --bs-btn-color: #000;
  --bs-btn-bg: #0dcaf0;
  --bs-btn-border-color: #0dcaf0;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: rgb(49.3, 209.95, 242.25);
  --bs-btn-hover-border-color: rgb(37.2, 207.3, 241.5);
  --bs-btn-focus-shadow-rgb: 11, 172, 204;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: rgb(61.4, 212.6, 243);
  --bs-btn-active-border-color: rgb(37.2, 207.3, 241.5);
  --bs-btn-active-shadow: 0;
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #0dcaf0;
  --bs-btn-disabled-border-color: #0dcaf0;
}

.btn-warning {
  --bs-btn-color: #000;
  --bs-btn-bg: #ffc107;
  --bs-btn-border-color: #ffc107;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: rgb(255, 202.3, 44.2);
  --bs-btn-hover-border-color: rgb(255, 199.2, 31.8);
  --bs-btn-focus-shadow-rgb: 217, 164, 6;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: rgb(255, 205.4, 56.6);
  --bs-btn-active-border-color: rgb(255, 199.2, 31.8);
  --bs-btn-active-shadow: 0;
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #ffc107;
  --bs-btn-disabled-border-color: #ffc107;
}

.btn-danger {
  --bs-btn-color: #fff;
  --bs-btn-bg: #dc3545;
  --bs-btn-border-color: #dc3545;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgb(187, 45.05, 58.65);
  --bs-btn-hover-border-color: rgb(176, 42.4, 55.2);
  --bs-btn-focus-shadow-rgb: 225, 83, 97;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgb(176, 42.4, 55.2);
  --bs-btn-active-border-color: rgb(165, 39.75, 51.75);
  --bs-btn-active-shadow: 0;
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #dc3545;
  --bs-btn-disabled-border-color: #dc3545;
}

.btn-light {
  --bs-btn-color: #000;
  --bs-btn-bg: #f8f9fa;
  --bs-btn-border-color: #f8f9fa;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: rgb(210.8, 211.65, 212.5);
  --bs-btn-hover-border-color: rgb(198.4, 199.2, 200);
  --bs-btn-focus-shadow-rgb: 211, 212, 213;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: rgb(198.4, 199.2, 200);
  --bs-btn-active-border-color: rgb(186, 186.75, 187.5);
  --bs-btn-active-shadow: 0;
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #f8f9fa;
  --bs-btn-disabled-border-color: #f8f9fa;
}

.btn-dark {
  --bs-btn-color: #fff;
  --bs-btn-bg: #212529;
  --bs-btn-border-color: #212529;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgb(66.3, 69.7, 73.1);
  --bs-btn-hover-border-color: rgb(55.2, 58.8, 62.4);
  --bs-btn-focus-shadow-rgb: 66, 70, 73;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgb(77.4, 80.6, 83.8);
  --bs-btn-active-border-color: rgb(55.2, 58.8, 62.4);
  --bs-btn-active-shadow: 0;
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #212529;
  --bs-btn-disabled-border-color: #212529;
}

.btn-outline-primary {
  --bs-btn-color: #0087ff;
  --bs-btn-border-color: #0087ff;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #0087ff;
  --bs-btn-hover-border-color: #0087ff;
  --bs-btn-focus-shadow-rgb: 0, 135, 255;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #0087ff;
  --bs-btn-active-border-color: #0087ff;
  --bs-btn-active-shadow: 0;
  --bs-btn-disabled-color: #0087ff;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #0087ff;
  --bs-gradient: none;
}

.btn-outline-secondary {
  --bs-btn-color: #6c757d;
  --bs-btn-border-color: #6c757d;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #6c757d;
  --bs-btn-hover-border-color: #6c757d;
  --bs-btn-focus-shadow-rgb: 108, 117, 125;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #6c757d;
  --bs-btn-active-border-color: #6c757d;
  --bs-btn-active-shadow: 0;
  --bs-btn-disabled-color: #6c757d;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #6c757d;
  --bs-gradient: none;
}

.btn-outline-success {
  --bs-btn-color: #198754;
  --bs-btn-border-color: #198754;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #198754;
  --bs-btn-hover-border-color: #198754;
  --bs-btn-focus-shadow-rgb: 25, 135, 84;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #198754;
  --bs-btn-active-border-color: #198754;
  --bs-btn-active-shadow: 0;
  --bs-btn-disabled-color: #198754;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #198754;
  --bs-gradient: none;
}

.btn-outline-info {
  --bs-btn-color: #0dcaf0;
  --bs-btn-border-color: #0dcaf0;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #0dcaf0;
  --bs-btn-hover-border-color: #0dcaf0;
  --bs-btn-focus-shadow-rgb: 13, 202, 240;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #0dcaf0;
  --bs-btn-active-border-color: #0dcaf0;
  --bs-btn-active-shadow: 0;
  --bs-btn-disabled-color: #0dcaf0;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #0dcaf0;
  --bs-gradient: none;
}

.btn-outline-warning {
  --bs-btn-color: #ffc107;
  --bs-btn-border-color: #ffc107;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #ffc107;
  --bs-btn-hover-border-color: #ffc107;
  --bs-btn-focus-shadow-rgb: 255, 193, 7;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #ffc107;
  --bs-btn-active-border-color: #ffc107;
  --bs-btn-active-shadow: 0;
  --bs-btn-disabled-color: #ffc107;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #ffc107;
  --bs-gradient: none;
}

.btn-outline-danger {
  --bs-btn-color: #dc3545;
  --bs-btn-border-color: #dc3545;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #dc3545;
  --bs-btn-hover-border-color: #dc3545;
  --bs-btn-focus-shadow-rgb: 220, 53, 69;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #dc3545;
  --bs-btn-active-border-color: #dc3545;
  --bs-btn-active-shadow: 0;
  --bs-btn-disabled-color: #dc3545;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #dc3545;
  --bs-gradient: none;
}

.btn-outline-light {
  --bs-btn-color: #f8f9fa;
  --bs-btn-border-color: #f8f9fa;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #f8f9fa;
  --bs-btn-hover-border-color: #f8f9fa;
  --bs-btn-focus-shadow-rgb: 248, 249, 250;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #f8f9fa;
  --bs-btn-active-border-color: #f8f9fa;
  --bs-btn-active-shadow: 0;
  --bs-btn-disabled-color: #f8f9fa;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #f8f9fa;
  --bs-gradient: none;
}

.btn-outline-dark {
  --bs-btn-color: #212529;
  --bs-btn-border-color: #212529;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #212529;
  --bs-btn-hover-border-color: #212529;
  --bs-btn-focus-shadow-rgb: 33, 37, 41;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #212529;
  --bs-btn-active-border-color: #212529;
  --bs-btn-active-shadow: 0;
  --bs-btn-disabled-color: #212529;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #212529;
  --bs-gradient: none;
}

.btn-link {
  --bs-btn-font-weight: 400;
  --bs-btn-color: var(--bs-link-color);
  --bs-btn-bg: transparent;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: var(--bs-link-hover-color);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-active-color: var(--bs-link-hover-color);
  --bs-btn-active-border-color: transparent;
  --bs-btn-disabled-color: #6c757d;
  --bs-btn-disabled-border-color: transparent;
  --bs-btn-box-shadow: 0 0 0 #000;
  --bs-btn-focus-shadow-rgb: 0, 115, 217;
  text-decoration: underline;
}

.btn-link:focus-visible {
  color: var(--bs-btn-color);
}

.btn-link:hover {
  color: var(--bs-btn-hover-color);
}

.btn-lg {
  --bs-btn-padding-y: 0.5rem;
  --bs-btn-padding-x: 1rem;
  --bs-btn-font-size: 1.25rem;
  --bs-btn-border-radius: var(--bs-border-radius-lg);
}

.btn-sm {
  --bs-btn-padding-y: 0.25rem;
  --bs-btn-padding-x: 0.5rem;
  --bs-btn-font-size: 0.875rem;
  --bs-btn-border-radius: var(--bs-border-radius-sm);
}

.breadcrumb {
  --bs-breadcrumb-padding-x: 0;
  --bs-breadcrumb-padding-y: 0;
  --bs-breadcrumb-margin-bottom: 1rem;
  --bs-breadcrumb-bg: ;
  --bs-breadcrumb-border-radius: ;
  --bs-breadcrumb-divider-color: var(--bs-secondary-color);
  --bs-breadcrumb-item-padding-x: 0.5rem;
  --bs-breadcrumb-item-active-color: var(--bs-secondary-color);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);
  margin-bottom: var(--bs-breadcrumb-margin-bottom);
  font-size: var(--bs-breadcrumb-font-size);
  list-style: none;
  background-color: var(--bs-breadcrumb-bg);
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: var(--bs-breadcrumb-item-padding-x);
}

.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: var(--bs-breadcrumb-item-padding-x);
  color: var(--bs-breadcrumb-divider-color);
  content: var(--bs-breadcrumb-divider, "/") ;
}

.breadcrumb-item.active {
  color: var(--bs-breadcrumb-item-active-color);
}

.list-group {
  --bs-list-group-color: var(--bs-body-color);
  --bs-list-group-bg: var(--bs-body-bg);
  --bs-list-group-border-color: var(--bs-border-color);
  --bs-list-group-border-width: var(--bs-border-width);
  --bs-list-group-border-radius: var(--bs-border-radius);
  --bs-list-group-item-padding-x: 1rem;
  --bs-list-group-item-padding-y: 0.5rem;
  --bs-list-group-action-color: var(--bs-secondary-color);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-tertiary-bg);
  --bs-list-group-action-active-color: var(--bs-body-color);
  --bs-list-group-action-active-bg: var(--bs-secondary-bg);
  --bs-list-group-disabled-color: var(--bs-secondary-color);
  --bs-list-group-disabled-bg: var(--bs-body-bg);
  --bs-list-group-active-color: #fff;
  --bs-list-group-active-bg: #0087ff;
  --bs-list-group-active-border-color: #0087ff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
}

.list-group-numbered {
  list-style-type: none;
  counter-reset: section;
}

.list-group-numbered > .list-group-item::before {
  content: counters(section, ".") ". ";
  counter-increment: section;
}

.list-group-item {
  position: relative;
  display: block;
  padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);
  color: var(--bs-list-group-color);
  text-decoration: none;
  background-color: var(--bs-list-group-bg);
  border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
}

.list-group-item.disabled,
.list-group-item:disabled {
  color: var(--bs-list-group-disabled-color);
  pointer-events: none;
  background-color: var(--bs-list-group-disabled-bg);
}

.list-group-item.active {
  z-index: 2;
  color: var(--bs-list-group-active-color);
  background-color: var(--bs-list-group-active-bg);
  border-color: var(--bs-list-group-active-border-color);
}

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

.list-group-item + .list-group-item.active {
  margin-top: calc(-1 * var(--bs-list-group-border-width));
  border-top-width: var(--bs-list-group-border-width);
}

.list-group-item-action {
  width: 100%;
  color: var(--bs-list-group-action-color);
  text-align: inherit;
}

.list-group-item-action:not(.active):hover,
.list-group-item-action:not(.active):focus {
  z-index: 1;
  color: var(--bs-list-group-action-hover-color);
  text-decoration: none;
  background-color: var(--bs-list-group-action-hover-bg);
}

.list-group-item-action:not(.active):active {
  color: var(--bs-list-group-action-active-color);
  background-color: var(--bs-list-group-action-active-bg);
}

.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: var(--bs-list-group-border-width);
  border-left-width: 0;
}

.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: calc(-1 * var(--bs-list-group-border-width));
  border-left-width: var(--bs-list-group-border-width);
}

.list-group-flush > .list-group-item {
  border-width: 0 0 var(--bs-list-group-border-width);
}

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

.list-group-item-primary {
  --bs-list-group-color: var(--bs-primary-text-emphasis);
  --bs-list-group-bg: var(--bs-primary-bg-subtle);
  --bs-list-group-border-color: var(--bs-primary-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-primary-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-primary-border-subtle);
  --bs-list-group-active-color: var(--bs-primary-bg-subtle);
  --bs-list-group-active-bg: var(--bs-primary-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-primary-text-emphasis);
}

.list-group-item-secondary {
  --bs-list-group-color: var(--bs-secondary-text-emphasis);
  --bs-list-group-bg: var(--bs-secondary-bg-subtle);
  --bs-list-group-border-color: var(--bs-secondary-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-secondary-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-secondary-border-subtle);
  --bs-list-group-active-color: var(--bs-secondary-bg-subtle);
  --bs-list-group-active-bg: var(--bs-secondary-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-secondary-text-emphasis);
}

.list-group-item-success {
  --bs-list-group-color: var(--bs-success-text-emphasis);
  --bs-list-group-bg: var(--bs-success-bg-subtle);
  --bs-list-group-border-color: var(--bs-success-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-success-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-success-border-subtle);
  --bs-list-group-active-color: var(--bs-success-bg-subtle);
  --bs-list-group-active-bg: var(--bs-success-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-success-text-emphasis);
}

.list-group-item-info {
  --bs-list-group-color: var(--bs-info-text-emphasis);
  --bs-list-group-bg: var(--bs-info-bg-subtle);
  --bs-list-group-border-color: var(--bs-info-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-info-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-info-border-subtle);
  --bs-list-group-active-color: var(--bs-info-bg-subtle);
  --bs-list-group-active-bg: var(--bs-info-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-info-text-emphasis);
}

.list-group-item-warning {
  --bs-list-group-color: var(--bs-warning-text-emphasis);
  --bs-list-group-bg: var(--bs-warning-bg-subtle);
  --bs-list-group-border-color: var(--bs-warning-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-warning-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-warning-border-subtle);
  --bs-list-group-active-color: var(--bs-warning-bg-subtle);
  --bs-list-group-active-bg: var(--bs-warning-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-warning-text-emphasis);
}

.list-group-item-danger {
  --bs-list-group-color: var(--bs-danger-text-emphasis);
  --bs-list-group-bg: var(--bs-danger-bg-subtle);
  --bs-list-group-border-color: var(--bs-danger-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-danger-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-danger-border-subtle);
  --bs-list-group-active-color: var(--bs-danger-bg-subtle);
  --bs-list-group-active-bg: var(--bs-danger-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-danger-text-emphasis);
}

.list-group-item-light {
  --bs-list-group-color: var(--bs-light-text-emphasis);
  --bs-list-group-bg: var(--bs-light-bg-subtle);
  --bs-list-group-border-color: var(--bs-light-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-light-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-light-border-subtle);
  --bs-list-group-active-color: var(--bs-light-bg-subtle);
  --bs-list-group-active-bg: var(--bs-light-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-light-text-emphasis);
}

.list-group-item-dark {
  --bs-list-group-color: var(--bs-dark-text-emphasis);
  --bs-list-group-bg: var(--bs-dark-bg-subtle);
  --bs-list-group-border-color: var(--bs-dark-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-dark-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-dark-border-subtle);
  --bs-list-group-active-color: var(--bs-dark-bg-subtle);
  --bs-list-group-active-bg: var(--bs-dark-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-dark-text-emphasis);
}

.btn-close {
  --bs-btn-close-color: #000;
  --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414'/%3e%3c/svg%3e");
  --bs-btn-close-opacity: 0.5;
  --bs-btn-close-hover-opacity: 0.75;
  --bs-btn-close-focus-shadow: 0 0 0 0.25rem rgba(0, 135, 255, 0.25);
  --bs-btn-close-focus-opacity: 1;
  --bs-btn-close-disabled-opacity: 0.25;
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: var(--bs-btn-close-color);
  background: transparent var(--bs-btn-close-bg) center/1em auto no-repeat;
  -webkit-filter: var(--bs-btn-close-filter);
  filter: var(--bs-btn-close-filter);
  border: 0;
  opacity: var(--bs-btn-close-opacity);
}

.btn-close:hover {
  color: var(--bs-btn-close-color);
  text-decoration: none;
  opacity: var(--bs-btn-close-hover-opacity);
}

.btn-close:focus {
  outline: 0;
  box-shadow: var(--bs-btn-close-focus-shadow);
  opacity: var(--bs-btn-close-focus-opacity);
}

.btn-close:disabled,
.btn-close.disabled {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  opacity: var(--bs-btn-close-disabled-opacity);
}

.btn-close-white {
  --bs-btn-close-filter: invert(1) grayscale(100%) brightness(200%);
}

:root,
[data-bs-theme=light] {
  --bs-btn-close-filter: ;
}

[data-bs-theme=dark] {
  --bs-btn-close-filter: invert(1) grayscale(100%) brightness(200%);
}

@media (max-width: 575.98px) {
  .admin-bar #wpadminbar {
    position: fixed;
  }
}

html {
  color: #191238;
  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: 991.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-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 {
  color: rgb(225.3581081081, 228.25, 231.1418918919);
  text-decoration: none;
}

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

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

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

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

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

#wc-bottom-bar .wc-footer-copyright {
  display: block;
  margin-bottom: 1rem;
  text-align: center;
}

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

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

#wc-bottom-bar .bottom-bar-menu a:hover {
  color: rgb(225.3581081081, 228.25, 231.1418918919);
  text-decoration: none;
}

:root {
  --header-height: 100px;
}

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

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

body main {
  -ms-flex-positive: 1;
  flex-grow: 1;
}

body footer {
  margin-top: auto;
}

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

iframe {
  max-width: 100%;
}

@font-face {
  font-family: "Noto Sans";
  src: url("../fonts/NotoSans.eot?#iefix") format("embedded-opentype"), url("../fonts/NotoSans.woff") format("woff"), url("../fonts/NotoSans.ttf") format("truetype"), url("../fonts/NotoSans.svg#NotoSans") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans";
  src: url("../fonts/NotoSans-ExtraLight.eot");
  src: url("../fonts/NotoSans-ExtraLight.eot?#iefix") format("embedded-opentype"), url("../fonts/NotoSans-ExtraLight.woff2") format("woff2"), url("../fonts/NotoSans-ExtraLight.woff") format("woff"), url("../fonts/NotoSans-ExtraLight.ttf") format("truetype"), url("../fonts/NotoSans-ExtraLight.svg#NotoSans-ExtraLight") format("svg");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans";
  src: url("../fonts/NotoSans-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/NotoSans-Light.woff") format("woff"), url("../fonts/NotoSans-Light.ttf") format("truetype"), url("../fonts/NotoSans-Light.svg#NotoSans-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans";
  src: url("../fonts/NotoSans-Medium.eot");
  src: url("../fonts/NotoSans-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/NotoSans-Medium.woff2") format("woff2"), url("../fonts/NotoSans-Medium.woff") format("woff"), url("../fonts/NotoSans-Medium.ttf") format("truetype"), url("../fonts/NotoSans-Medium.svg#NotoSans-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans";
  src: url("../fonts/NotoSans-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/NotoSans-Bold.woff") format("woff"), url("../fonts/NotoSans-Bold.ttf") format("truetype"), url("../fonts/NotoSans-Bold.svg#NotoSans-Bold") format("svg");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TP Sans";
  src: url("../fonts/TPSans-ThinItalic.eot");
  src: url("../fonts/TPSans-ThinItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/TPSans-ThinItalic.woff2") format("woff2"), url("../fonts/TPSans-ThinItalic.woff") format("woff"), url("../fonts/TPSans-ThinItalic.ttf") format("truetype"), url("../fonts/TPSans-ThinItalic.svg#TPSans-ThinItalic") format("svg");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "TP Sans";
  src: url("../fonts/TPSans-Italic.eot");
  src: url("../fonts/TPSans-Italic.eot?#iefix") format("embedded-opentype"), url("../fonts/TPSans-Italic.woff2") format("woff2"), url("../fonts/TPSans-Italic.woff") format("woff"), url("../fonts/TPSans-Italic.ttf") format("truetype"), url("../fonts/TPSans-Italic.svg#TPSans-Italic") format("svg");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "TP Sans";
  src: url("../fonts/TPSans-ExtraBoldItalic.eot");
  src: url("../fonts/TPSans-ExtraBoldItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/TPSans-ExtraBoldItalic.woff2") format("woff2"), url("../fonts/TPSans-ExtraBoldItalic.woff") format("woff"), url("../fonts/TPSans-ExtraBoldItalic.ttf") format("truetype"), url("../fonts/TPSans-ExtraBoldItalic.svg#TPSans-ExtraBoldItalic") format("svg");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "TP Sans";
  src: url("../fonts/TPSans-MediumItalic.eot");
  src: url("../fonts/TPSans-MediumItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/TPSans-MediumItalic.woff2") format("woff2"), url("../fonts/TPSans-MediumItalic.woff") format("woff"), url("../fonts/TPSans-MediumItalic.ttf") format("truetype"), url("../fonts/TPSans-MediumItalic.svg#TPSans-MediumItalic") format("svg");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "TP Sans";
  src: url("../fonts/TPSans-Medium.eot");
  src: url("../fonts/TPSans-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/TPSans-Medium.woff2") format("woff2"), url("../fonts/TPSans-Medium.woff") format("woff"), url("../fonts/TPSans-Medium.ttf") format("truetype"), url("../fonts/TPSans-Medium.svg#TPSans-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TP Sans";
  src: url("../fonts/TPSans-ExtraLightItalic.eot");
  src: url("../fonts/TPSans-ExtraLightItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/TPSans-ExtraLightItalic.woff2") format("woff2"), url("../fonts/TPSans-ExtraLightItalic.woff") format("woff"), url("../fonts/TPSans-ExtraLightItalic.ttf") format("truetype"), url("../fonts/TPSans-ExtraLightItalic.svg#TPSans-ExtraLightItalic") format("svg");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "TP Sans";
  src: url("../fonts/TPSans-LightItalic.eot");
  src: url("../fonts/TPSans-LightItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/TPSans-LightItalic.woff2") format("woff2"), url("../fonts/TPSans-LightItalic.woff") format("woff"), url("../fonts/TPSans-LightItalic.ttf") format("truetype"), url("../fonts/TPSans-LightItalic.svg#TPSans-LightItalic") format("svg");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "TP Sans";
  src: url("../fonts/TPSans-Black.eot");
  src: url("../fonts/TPSans-Black.eot?#iefix") format("embedded-opentype"), url("../fonts/TPSans-Black.woff2") format("woff2"), url("../fonts/TPSans-Black.woff") format("woff"), url("../fonts/TPSans-Black.ttf") format("truetype"), url("../fonts/TPSans-Black.svg#TPSans-Black") format("svg");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TP Sans";
  src: url("../fonts/TPSans-ExtraBold.eot");
  src: url("../fonts/TPSans-ExtraBold.eot?#iefix") format("embedded-opentype"), url("../fonts/TPSans-ExtraBold.woff2") format("woff2"), url("../fonts/TPSans-ExtraBold.woff") format("woff"), url("../fonts/TPSans-ExtraBold.ttf") format("truetype"), url("../fonts/TPSans-ExtraBold.svg#TPSans-ExtraBold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TP Sans";
  src: url("../fonts/TPSans-Regular.eot");
  src: url("../fonts/TPSans-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/TPSans-Regular.woff2") format("woff2"), url("../fonts/TPSans-Regular.woff") format("woff"), url("../fonts/TPSans-Regular.ttf") format("truetype"), url("../fonts/TPSans-Regular.svg#TPSans-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TP Sans";
  src: url("../fonts/TPSans-Light.eot");
  src: url("../fonts/TPSans-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/TPSans-Light.woff2") format("woff2"), url("../fonts/TPSans-Light.woff") format("woff"), url("../fonts/TPSans-Light.ttf") format("truetype"), url("../fonts/TPSans-Light.svg#TPSans-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TP Sans";
  src: url("../fonts/TPSans-UltraLightItalic.eot");
  src: url("../fonts/TPSans-UltraLightItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/TPSans-UltraLightItalic.woff2") format("woff2"), url("../fonts/TPSans-UltraLightItalic.woff") format("woff"), url("../fonts/TPSans-UltraLightItalic.ttf") format("truetype"), url("../fonts/TPSans-UltraLightItalic.svg#TPSans-UltraLightItalic") format("svg");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "TP Sans";
  src: url("../fonts/TPSans-BlackItalic.eot");
  src: url("../fonts/TPSans-BlackItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/TPSans-BlackItalic.woff2") format("woff2"), url("../fonts/TPSans-BlackItalic.woff") format("woff"), url("../fonts/TPSans-BlackItalic.ttf") format("truetype"), url("../fonts/TPSans-BlackItalic.svg#TPSans-BlackItalic") format("svg");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "TP Sans";
  src: url("../fonts/TPSans-ExtraLight.eot");
  src: url("../fonts/TPSans-ExtraLight.eot?#iefix") format("embedded-opentype"), url("../fonts/TPSans-ExtraLight.woff2") format("woff2"), url("../fonts/TPSans-ExtraLight.woff") format("woff"), url("../fonts/TPSans-ExtraLight.ttf") format("truetype"), url("../fonts/TPSans-ExtraLight.svg#TPSans-ExtraLight") format("svg");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TP Sans";
  src: url("../fonts/TPSans-UltraLight.eot");
  src: url("../fonts/TPSans-UltraLight.eot?#iefix") format("embedded-opentype"), url("../fonts/TPSans-UltraLight.woff2") format("woff2"), url("../fonts/TPSans-UltraLight.woff") format("woff"), url("../fonts/TPSans-UltraLight.ttf") format("truetype"), url("../fonts/TPSans-UltraLight.svg#TPSans-UltraLight") format("svg");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TP Sans";
  src: url("../fonts/TPSans-Thin.eot");
  src: url("../fonts/TPSans-Thin.eot?#iefix") format("embedded-opentype"), url("../fonts/TPSans-Thin.woff2") format("woff2"), url("../fonts/TPSans-Thin.woff") format("woff"), url("../fonts/TPSans-Thin.ttf") format("truetype"), url("../fonts/TPSans-Thin.svg#TPSans-Thin") format("svg");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TP Sans";
  src: url("../fonts/TPSans-Bold.eot");
  src: url("../fonts/TPSans-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/TPSans-Bold.woff2") format("woff2"), url("../fonts/TPSans-Bold.woff") format("woff"), url("../fonts/TPSans-Bold.ttf") format("truetype"), url("../fonts/TPSans-Bold.svg#TPSans-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TP Sans";
  src: url("../fonts/TPSans-BoldItalic.eot");
  src: url("../fonts/TPSans-BoldItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/TPSans-BoldItalic.woff2") format("woff2"), url("../fonts/TPSans-BoldItalic.woff") format("woff"), url("../fonts/TPSans-BoldItalic.ttf") format("truetype"), url("../fonts/TPSans-BoldItalic.svg#TPSans-BoldItalic") format("svg");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

::-moz-selection {
  background: #ff0082;
  color: #fff;
}

::selection {
  background: #ff0082;
  color: #fff;
}

* {
  font-family: "TP Sans";
}

.nmp-last-el h1:last-child,
.nmp-last-el .h1:last-child,
.nmp-last-el h2:last-child,
.nmp-last-el .h2:last-child,
.nmp-last-el h3:last-child,
.nmp-last-el .h3:last-child,
.nmp-last-el h4:last-child,
.nmp-last-el .h4:last-child,
.nmp-last-el h5:last-child,
.nmp-last-el .h5:last-child,
.nmp-last-el h6: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;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  color: #191238;
  line-height: 1;
  font-weight: 200;
  margin: 0;
}

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

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

h1,
.h1 {
  font-size: 50px;
}

h2,
.h2 {
  font-size: 40px;
}

h3,
.h3 {
  font-size: 30px;
}

h4,
.h4 {
  font-size: 25px;
}

h5,
.h5 {
  font-size: 22px;
}

h6,
.h6 {
  font-size: 18px;
}

.section-title {
  font-weight: 200;
}

.subtitle {
  display: block;
  color: #ff0082;
  font-family: "Noto Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0;
  text-transform: uppercase;
}

body:not([class*=body-color]) ul:not(.main-nav):not(.top-nav):not(.sub-menu):not(.lang-nav):not(.footer-nav):not(.gform_fields):not(.usps-list):not(.faq-list):not(.page-numbers):not(.mobile-nav):not(.vacancy-short-info):not(.gfield_checkbox):not(.gfield_radio):not(.lang-submenu):not(.country-list):not(.rsbtn_toollist):not(.rsform-colorlist) {
  margin-bottom: 30px;
  margin-top: 0;
  font-weight: 300;
  list-style: none;
  padding: 0;
}

body:not([class*=body-color]) ul:not(.main-nav):not(.top-nav):not(.sub-menu):not(.lang-nav):not(.footer-nav):not(.gform_fields):not(.usps-list):not(.faq-list):not(.page-numbers):not(.mobile-nav):not(.vacancy-short-info):not(.gfield_checkbox):not(.gfield_radio):not(.lang-submenu):not(.country-list):not(.rsbtn_toollist):not(.rsform-colorlist) li {
  color: #191238;
  font-size: 15px;
  line-height: 1.5;
  position: relative;
  padding-left: 40px;
}

body:not([class*=body-color]) ul:not(.main-nav):not(.top-nav):not(.sub-menu):not(.lang-nav):not(.footer-nav):not(.gform_fields):not(.usps-list):not(.faq-list):not(.page-numbers):not(.mobile-nav):not(.vacancy-short-info):not(.gfield_checkbox):not(.gfield_radio):not(.lang-submenu):not(.country-list):not(.rsbtn_toollist):not(.rsform-colorlist) li:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff0082;
}

body:not([class*=body-color]) ul:not(.main-nav):not(.top-nav):not(.sub-menu):not(.lang-nav):not(.footer-nav):not(.gform_fields):not(.usps-list):not(.faq-list):not(.page-numbers):not(.mobile-nav):not(.vacancy-short-info):not(.gfield_checkbox):not(.gfield_radio):not(.lang-submenu):not(.country-list):not(.rsbtn_toollist):not(.rsform-colorlist) li p {
  margin-bottom: 0;
}

body:not([class*=body-color]) ol {
  margin-bottom: 30px;
  margin-top: 0;
  font-weight: 300;
  list-style: none;
  padding: 0;
}

body:not([class*=body-color]) ol li {
  counter-increment: step-counter;
  color: #191238;
  font-size: 15px;
  line-height: 1.5;
  position: relative;
  padding-left: 40px;
}

body:not([class*=body-color]) ol li:before {
  content: counter(step-counter) ".";
  position: absolute;
  top: 0;
  left: 0;
  color: #ff0082;
  font-size: 15px;
}

body:not([class*=body-color]) ol p {
  margin-bottom: 0;
}

body:not([class*=body-color]) p + ul {
  margin-top: -30px !important;
}

p {
  color: #191238;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  margin: 0 0 30px 0;
}

p:empty {
  display: none;
}

a {
  color: #ff0082;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

a:hover,
a:focus {
  color: #ff0082;
}

/*
b, strong, .bold {
    font-weight: 700;
}*/

.svg-arrow-up-right {
  background: url("sprites.svg") no-repeat;
  background-position: 0 0;
}

.svg-arrow-up-right-dims {
  width: 12px;
  height: 12px;
}

.svg-arrow-up-right-db {
  background: url("sprites.svg") no-repeat;
  background-position: 0.3446295233% 0.3720930233%;
}

.svg-arrow-up-right-db-dims {
  width: 12px;
  height: 12px;
}

.svg-breadcrumbs-home {
  background: url("sprites.svg") no-repeat;
  background-position: 0.6900517539% 0.7451102142%;
}

.svg-breadcrumbs-home-dims {
  width: 16px;
  height: 16px;
}

.svg-icon-add {
  background: url("sprites.svg") no-repeat;
  background-position: 1.1517420098% 1.2437810945%;
}

.svg-icon-add-dims {
  width: 21px;
  height: 21px;
}

.svg-icon-apply-job,
.side-btn:after {
  background: url("sprites.svg") no-repeat;
  background-position: 1.7543859649% 1.8922943293%;
}

.svg-icon-apply-job-dims,
.side-btn:after {
  width: 17px;
  height: 13.4px;
}

.svg-icon-arrow-down,
.custom-filter-select:after,
.custom-select .select-selected:after {
  background: url("sprites.svg") no-repeat;
  background-position: 2.2398989174% 2.3217657803%;
}

.svg-icon-arrow-down-dims,
.custom-filter-select:after,
.custom-select .select-selected:after {
  width: 11.7px;
  height: 6.7px;
}

.svg-icon-arrow-down-bol,
.page-template-client.bol-body-color .language-slider-holder .lang-submenu-toggle:after,
.page-template-client.bol-body-color .main-header.white-header .main-nav > .menu-item.menu-item-has-children > a:after {
  background: url("sprites.svg") no-repeat;
  background-position: 2.5844987508% 2.5384639198%;
}

.svg-icon-arrow-down-bol-dims,
.page-template-client.bol-body-color .language-slider-holder .lang-submenu-toggle:after,
.page-template-client.bol-body-color .main-header.white-header .main-nav > .menu-item.menu-item-has-children > a:after {
  width: 11.7px;
  height: 6.7px;
}

.svg-icon-arrow-down-db,
.job-search-section-re .custom-filter-select:after,
.main-header.white-header .languages-holder .languages-switcher .label:after,
.main-header.white-header .main-nav > .menu-item.menu-item-has-children > a:after,
.mobile-nav-container .languages-holder .languages-switcher .label:after {
  background: url("sprites.svg") no-repeat;
  background-position: 2.9290985843% 2.7551620593%;
}

.svg-icon-arrow-down-db-dims,
.job-search-section-re .custom-filter-select:after,
.main-header.white-header .languages-holder .languages-switcher .label:after,
.main-header.white-header .main-nav > .menu-item.menu-item-has-children > a:after,
.mobile-nav-container .languages-holder .languages-switcher .label:after {
  width: 11.7px;
  height: 6.7px;
}

.svg-icon-arrow-down-ikea,
.page-template-client.ikea-body-color .language-slider-holder .lang-submenu-toggle:after,
.page-template-client.ikea-body-color .main-header.white-header .main-nav > .menu-item.menu-item-has-children > a:after {
  background: url("sprites.svg") no-repeat;
  background-position: 3.2736984177% 2.9718601987%;
}

.svg-icon-arrow-down-ikea-dims,
.page-template-client.ikea-body-color .language-slider-holder .lang-submenu-toggle:after,
.page-template-client.ikea-body-color .main-header.white-header .main-nav > .menu-item.menu-item-has-children > a:after {
  width: 11.7px;
  height: 6.7px;
}

.svg-icon-arrow-down-wehkamp,
.page-template-client.wehkamp-body-color .language-slider-holder .lang-submenu-toggle:after,
.page-template-client.wehkamp-body-color .main-header.white-header .main-nav > .menu-item.menu-item-has-children > a:after {
  background: url("sprites.svg") no-repeat;
  background-position: 3.6182982512% 3.1885583382%;
}

.svg-icon-arrow-down-wehkamp-dims,
.page-template-client.wehkamp-body-color .language-slider-holder .lang-submenu-toggle:after,
.page-template-client.wehkamp-body-color .main-header.white-header .main-nav > .menu-item.menu-item-has-children > a:after {
  width: 11.7px;
  height: 6.7px;
}

.svg-icon-arrow-down-white,
.languages-holder .languages-switcher .label:after,
.main-nav > .menu-item.menu-item-has-children > a:after {
  background: url("sprites.svg") no-repeat;
  background-position: 3.9628980846% 3.4052564777%;
}

.svg-icon-arrow-down-white-dims,
.languages-holder .languages-switcher .label:after,
.main-nav > .menu-item.menu-item-has-children > a:after {
  width: 11.7px;
  height: 6.7px;
}

.svg-icon-arrow-down-ziggo,
.page-template-client.ziggo-body-color .language-slider-holder .lang-submenu-toggle:after,
.page-template-client.ziggo-body-color .main-header.white-header .main-nav > .menu-item.menu-item-has-children > a:after {
  background: url("sprites.svg") no-repeat;
  background-position: 4.307497918% 3.6219546172%;
}

.svg-icon-arrow-down-ziggo-dims,
.page-template-client.ziggo-body-color .language-slider-holder .lang-submenu-toggle:after,
.page-template-client.ziggo-body-color .main-header.white-header .main-nav > .menu-item.menu-item-has-children > a:after {
  width: 11.7px;
  height: 6.7px;
}

.svg-icon-arrow-long,
.client-header-part .section-inner .icon-arrow-down-long,
.home-header-section .section-inner .icon-arrow-down-long {
  background: url("sprites.svg") no-repeat;
  background-position: 4.6551724138% 3.8810641628%;
}

.svg-icon-arrow-long-dims,
.client-header-part .section-inner .icon-arrow-down-long,
.home-header-section .section-inner .icon-arrow-down-long {
  width: 14px;
  height: 42px;
}

.svg-icon-arrow-right-black,
.vacancy-item .info-wrapper .view-link:after,
.pagination-wrapper .page-numbers li .page-numbers.prev .arrow-list-icon:after,
.pagination-wrapper .page-numbers li .page-numbers.next .arrow-list-icon:after {
  background: url("sprites.svg") no-repeat;
  background-position: 5.0468844091% 5.1468080489%;
}

.svg-icon-arrow-right-black-dims,
.vacancy-item .info-wrapper .view-link:after,
.pagination-wrapper .page-numbers li .page-numbers.prev .arrow-list-icon:after,
.pagination-wrapper .page-numbers li .page-numbers.next .arrow-list-icon:after {
  width: 6.7px;
  height: 11.7px;
}

.svg-icon-arrow-right-bol,
.page-template-client.bol-body-color .vacancy-item .info-wrapper .view-link:after {
  background: url("sprites.svg") no-repeat;
  background-position: 5.2476127663% 5.518866462%;
}

.svg-icon-arrow-right-bol-dims,
.page-template-client.bol-body-color .vacancy-item .info-wrapper .view-link:after {
  width: 6.7px;
  height: 11.7px;
}

.svg-icon-arrow-right-ikea,
.page-template-client.ikea-body-color .vacancy-item .info-wrapper .view-link:after {
  background: url("sprites.svg") no-repeat;
  background-position: 5.4483411235% 5.8909248752%;
}

.svg-icon-arrow-right-ikea-dims,
.page-template-client.ikea-body-color .vacancy-item .info-wrapper .view-link:after {
  width: 6.7px;
  height: 11.7px;
}

.svg-icon-arrow-right-purple {
  background: url("sprites.svg") no-repeat;
  background-position: 5.6490694807% 6.2629832884%;
}

.svg-icon-arrow-right-purple-dims {
  width: 6.7px;
  height: 11.7px;
}

.svg-icon-arrow-right-wehkamp,
.page-template-client.wehkamp-body-color .vacancy-item .info-wrapper .view-link:after {
  background: url("sprites.svg") no-repeat;
  background-position: 5.8497978379% 6.6350417015%;
}

.svg-icon-arrow-right-wehkamp-dims,
.page-template-client.wehkamp-body-color .vacancy-item .info-wrapper .view-link:after {
  width: 6.7px;
  height: 11.7px;
}

.svg-icon-arrow-right-white,
.news-archive-overview .pagination-wrapper .page-numbers li .page-numbers.prev .arrow-list-icon:after,
.news-archive-overview .pagination-wrapper .page-numbers li .page-numbers.next .arrow-list-icon:after,
.for-dark-style .news-item .view-link:after {
  background: url("sprites.svg") no-repeat;
  background-position: 6.0527825588% 7.0099255583%;
}

.svg-icon-arrow-right-white-dims,
.news-archive-overview .pagination-wrapper .page-numbers li .page-numbers.prev .arrow-list-icon:after,
.news-archive-overview .pagination-wrapper .page-numbers li .page-numbers.next .arrow-list-icon:after,
.for-dark-style .news-item .view-link:after {
  width: 8px;
  height: 13px;
}

.svg-icon-arrow-right-ziggo,
.page-template-client.ziggo-body-color .vacancy-item .info-wrapper .view-link:after {
  background: url("sprites.svg") no-repeat;
  background-position: 6.2799300318% 7.4101633957%;
}

.svg-icon-arrow-right-ziggo-dims,
.page-template-client.ziggo-body-color .vacancy-item .info-wrapper .view-link:after {
  width: 6.7px;
  height: 11.7px;
}

.svg-icon-btn-arrow-back-white,
.back-link:before {
  background: url("sprites.svg") no-repeat;
  background-position: 6.4830751578% 7.7853598015%;
}

.svg-icon-btn-arrow-back-white-dims,
.back-link:before {
  width: 8px;
  height: 13px;
}

.svg-icon-btn-blue,
main.brand-blue .brand-btn-ghost:after,
main.brand-blue .btn-ghost:after,
main.brand-blue .brand-white-btn:after,
main.brand-blue .gallery-section .btn:after,
main.brand-blue .gallery-section body .wp-block-button__link:after,
body main.brand-blue .gallery-section .wp-block-button__link:after,
main.brand-blue .home-header-section .btn:after,
main.brand-blue .home-header-section body .wp-block-button__link:after,
body main.brand-blue .home-header-section .wp-block-button__link:after,
main.brand-orange .home-header-section main.brand-blue .btn:after,
main.brand-orange .home-header-section body main.brand-blue .wp-block-button__link:after,
main.brand-blue body main.brand-orange .home-header-section .wp-block-button__link:after,
body main.brand-orange .home-header-section main.brand-blue .wp-block-button__link:after,
main.brand-orange .gallery-section main.brand-blue .btn:after,
main.brand-orange .gallery-section body main.brand-blue .wp-block-button__link:after,
main.brand-blue body main.brand-orange .gallery-section .wp-block-button__link:after,
body main.brand-orange .gallery-section main.brand-blue .wp-block-button__link:after {
  background: url("sprites.svg") no-repeat;
  background-position: 6.7125645439% 8.1885856079%;
}

.svg-icon-btn-blue-dims,
main.brand-blue .brand-btn-ghost:after,
main.brand-blue .btn-ghost:after,
main.brand-blue .brand-white-btn:after,
main.brand-blue .gallery-section .btn:after,
main.brand-blue .gallery-section body .wp-block-button__link:after,
body main.brand-blue .gallery-section .wp-block-button__link:after,
main.brand-blue .home-header-section .btn:after,
main.brand-blue .home-header-section body .wp-block-button__link:after,
body main.brand-blue .home-header-section .wp-block-button__link:after,
main.brand-orange .home-header-section main.brand-blue .btn:after,
main.brand-orange .home-header-section body main.brand-blue .wp-block-button__link:after,
main.brand-blue body main.brand-orange .home-header-section .wp-block-button__link:after,
body main.brand-orange .home-header-section main.brand-blue .wp-block-button__link:after,
main.brand-orange .gallery-section main.brand-blue .btn:after,
main.brand-orange .gallery-section body main.brand-blue .wp-block-button__link:after,
main.brand-blue body main.brand-orange .gallery-section .wp-block-button__link:after,
body main.brand-orange .gallery-section main.brand-blue .wp-block-button__link:after {
  width: 8px;
  height: 13px;
}

.svg-icon-btn-bol,
.page-template-client.bol-body-color .btn.btn-white:after,
.page-template-client.bol-body-color body .btn-white.wp-block-button__link:after,
body .page-template-client.bol-body-color .btn-white.wp-block-button__link:after {
  background: url("sprites.svg") no-repeat;
  background-position: 6.94205393% 8.5918114144%;
}

.svg-icon-btn-bol-dims,
.page-template-client.bol-body-color .btn.btn-white:after,
.page-template-client.bol-body-color body .btn-white.wp-block-button__link:after,
body .page-template-client.bol-body-color .btn-white.wp-block-button__link:after {
  width: 8px;
  height: 13px;
}

.svg-icon-btn-ikea,
.page-template-client.ikea-body-color .btn.btn-white:after,
.page-template-client.ikea-body-color body .btn-white.wp-block-button__link:after,
body .page-template-client.ikea-body-color .btn-white.wp-block-button__link:after {
  background: url("sprites.svg") no-repeat;
  background-position: 7.1715433161% 8.9950372208%;
}

.svg-icon-btn-ikea-dims,
.page-template-client.ikea-body-color .btn.btn-white:after,
.page-template-client.ikea-body-color body .btn-white.wp-block-button__link:after,
body .page-template-client.ikea-body-color .btn-white.wp-block-button__link:after {
  width: 8px;
  height: 13px;
}

.svg-icon-btn-orange,
main.brand-orange .brand-btn-ghost:after,
main.brand-orange .btn-ghost:after,
main.brand-orange .brand-white-btn:after,
main.brand-blue .gallery-section main.brand-orange .btn:after,
main.brand-blue .gallery-section body main.brand-orange .wp-block-button__link:after,
main.brand-orange body main.brand-blue .gallery-section .wp-block-button__link:after,
body main.brand-blue .gallery-section main.brand-orange .wp-block-button__link:after,
main.brand-blue .home-header-section main.brand-orange .btn:after,
main.brand-blue .home-header-section body main.brand-orange .wp-block-button__link:after,
main.brand-orange body main.brand-blue .home-header-section .wp-block-button__link:after,
body main.brand-blue .home-header-section main.brand-orange .wp-block-button__link:after,
main.brand-orange .gallery-section .btn:after,
main.brand-orange .gallery-section body .wp-block-button__link:after,
body main.brand-orange .gallery-section .wp-block-button__link:after,
main.brand-orange .home-header-section .btn:after,
main.brand-orange .home-header-section body .wp-block-button__link:after,
body main.brand-orange .home-header-section .wp-block-button__link:after {
  background: url("sprites.svg") no-repeat;
  background-position: 7.4010327022% 9.3982630273%;
}

.svg-icon-btn-orange-dims,
main.brand-orange .brand-btn-ghost:after,
main.brand-orange .btn-ghost:after,
main.brand-orange .brand-white-btn:after,
main.brand-blue .gallery-section main.brand-orange .btn:after,
main.brand-blue .gallery-section body main.brand-orange .wp-block-button__link:after,
main.brand-orange body main.brand-blue .gallery-section .wp-block-button__link:after,
body main.brand-blue .gallery-section main.brand-orange .wp-block-button__link:after,
main.brand-blue .home-header-section main.brand-orange .btn:after,
main.brand-blue .home-header-section body main.brand-orange .wp-block-button__link:after,
main.brand-orange body main.brand-blue .home-header-section .wp-block-button__link:after,
body main.brand-blue .home-header-section main.brand-orange .wp-block-button__link:after,
main.brand-orange .gallery-section .btn:after,
main.brand-orange .gallery-section body .wp-block-button__link:after,
body main.brand-orange .gallery-section .wp-block-button__link:after,
main.brand-orange .home-header-section .btn:after,
main.brand-orange .home-header-section body .wp-block-button__link:after,
body main.brand-orange .home-header-section .wp-block-button__link:after {
  width: 8px;
  height: 13px;
}

.svg-icon-btn-pink,
.btn.btn-white:after,
body .btn-white.wp-block-button__link:after {
  background: url("sprites.svg") no-repeat;
  background-position: 7.6305220884% 9.8014888337%;
}

.svg-icon-btn-pink-dims,
.btn.btn-white:after,
body .btn-white.wp-block-button__link:after {
  width: 8px;
  height: 13px;
}

.svg-icon-btn-wehkamp,
.page-template-client.wehkamp-body-color .btn.btn-white:after,
.page-template-client.wehkamp-body-color body .btn-white.wp-block-button__link:after,
body .page-template-client.wehkamp-body-color .btn-white.wp-block-button__link:after {
  background: url("sprites.svg") no-repeat;
  background-position: 7.8600114745% 10.2047146402%;
}

.svg-icon-btn-wehkamp-dims,
.page-template-client.wehkamp-body-color .btn.btn-white:after,
.page-template-client.wehkamp-body-color body .btn-white.wp-block-button__link:after,
body .page-template-client.wehkamp-body-color .btn-white.wp-block-button__link:after {
  width: 8px;
  height: 13px;
}

.svg-icon-btn-white,
.page-template-client .btn.btn-white:after,
.page-template-client body .btn-white.wp-block-button__link:after,
body .page-template-client .btn-white.wp-block-button__link:after,
main.brand-blue .brand-btn-ghost:hover:after,
main.brand-blue .btn-ghost:hover:after,
main.brand-blue .brand-btn-ghost:focus:after,
main.brand-blue .btn-ghost:focus:after,
main.brand-blue .brand-white-btn:hover:after,
main.brand-blue .gallery-section .btn:hover:after,
main.brand-blue .gallery-section body .wp-block-button__link:hover:after,
body main.brand-blue .gallery-section .wp-block-button__link:hover:after,
main.brand-blue .home-header-section .btn:hover:after,
main.brand-blue .home-header-section body .wp-block-button__link:hover:after,
body main.brand-blue .home-header-section .wp-block-button__link:hover:after,
main.brand-blue .brand-white-btn:focus:after,
main.brand-blue .gallery-section .btn:focus:after,
main.brand-blue .gallery-section body .wp-block-button__link:focus:after,
body main.brand-blue .gallery-section .wp-block-button__link:focus:after,
main.brand-blue .home-header-section .btn:focus:after,
main.brand-blue .home-header-section body .wp-block-button__link:focus:after,
body main.brand-blue .home-header-section .wp-block-button__link:focus:after,
main.brand-orange .brand-btn-ghost:hover:after,
main.brand-orange .btn-ghost:hover:after,
main.brand-orange .brand-btn-ghost:focus:after,
main.brand-orange .btn-ghost:focus:after,
main.brand-orange .brand-white-btn:hover:after,
main.brand-orange .gallery-section .btn:hover:after,
main.brand-orange .gallery-section body .wp-block-button__link:hover:after,
body main.brand-orange .gallery-section .wp-block-button__link:hover:after,
main.brand-orange .home-header-section .btn:hover:after,
main.brand-orange .home-header-section body .wp-block-button__link:hover:after,
body main.brand-orange .home-header-section .wp-block-button__link:hover:after,
main.brand-orange .brand-white-btn:focus:after,
main.brand-orange .gallery-section .btn:focus:after,
main.brand-orange .gallery-section body .wp-block-button__link:focus:after,
body main.brand-orange .gallery-section .wp-block-button__link:focus:after,
main.brand-orange .home-header-section .btn:focus:after,
main.brand-orange .home-header-section body .wp-block-button__link:focus:after,
body main.brand-orange .home-header-section .wp-block-button__link:focus:after,
.mobile-filters-controls .state .btn span:after,
.mobile-filters-controls .state body .wp-block-button__link span:after,
body .mobile-filters-controls .state .wp-block-button__link span:after,
.header-section-dark .btn.btn-ghost:after,
.header-section-dark body .btn-ghost.wp-block-button__link:after,
body .header-section-dark .btn-ghost.wp-block-button__link:after,
.relevant-vacancy-block .btn.btn-ghost:after,
.relevant-vacancy-block body .btn-ghost.wp-block-button__link:after,
body .relevant-vacancy-block .btn-ghost.wp-block-button__link:after,
.home-header-section-re .scroll-label:after,
.call-to-action-section .btn.btn-ghost:after,
.call-to-action-section body .btn-ghost.wp-block-button__link:after,
body .call-to-action-section .btn-ghost.wp-block-button__link:after {
  background: url("sprites.svg") no-repeat;
  background-position: 8.0895008606% 10.6079404467%;
}

.svg-icon-btn-white-dims,
.page-template-client .btn.btn-white:after,
.page-template-client body .btn-white.wp-block-button__link:after,
body .page-template-client .btn-white.wp-block-button__link:after,
main.brand-blue .brand-btn-ghost:hover:after,
main.brand-blue .btn-ghost:hover:after,
main.brand-blue .brand-btn-ghost:focus:after,
main.brand-blue .btn-ghost:focus:after,
main.brand-blue .brand-white-btn:hover:after,
main.brand-blue .gallery-section .btn:hover:after,
main.brand-blue .gallery-section body .wp-block-button__link:hover:after,
body main.brand-blue .gallery-section .wp-block-button__link:hover:after,
main.brand-blue .home-header-section .btn:hover:after,
main.brand-blue .home-header-section body .wp-block-button__link:hover:after,
body main.brand-blue .home-header-section .wp-block-button__link:hover:after,
main.brand-blue .brand-white-btn:focus:after,
main.brand-blue .gallery-section .btn:focus:after,
main.brand-blue .gallery-section body .wp-block-button__link:focus:after,
body main.brand-blue .gallery-section .wp-block-button__link:focus:after,
main.brand-blue .home-header-section .btn:focus:after,
main.brand-blue .home-header-section body .wp-block-button__link:focus:after,
body main.brand-blue .home-header-section .wp-block-button__link:focus:after,
main.brand-orange .brand-btn-ghost:hover:after,
main.brand-orange .btn-ghost:hover:after,
main.brand-orange .brand-btn-ghost:focus:after,
main.brand-orange .btn-ghost:focus:after,
main.brand-orange .brand-white-btn:hover:after,
main.brand-orange .gallery-section .btn:hover:after,
main.brand-orange .gallery-section body .wp-block-button__link:hover:after,
body main.brand-orange .gallery-section .wp-block-button__link:hover:after,
main.brand-orange .home-header-section .btn:hover:after,
main.brand-orange .home-header-section body .wp-block-button__link:hover:after,
body main.brand-orange .home-header-section .wp-block-button__link:hover:after,
main.brand-orange .brand-white-btn:focus:after,
main.brand-orange .gallery-section .btn:focus:after,
main.brand-orange .gallery-section body .wp-block-button__link:focus:after,
body main.brand-orange .gallery-section .wp-block-button__link:focus:after,
main.brand-orange .home-header-section .btn:focus:after,
main.brand-orange .home-header-section body .wp-block-button__link:focus:after,
body main.brand-orange .home-header-section .wp-block-button__link:focus:after,
.mobile-filters-controls .state .btn span:after,
.mobile-filters-controls .state body .wp-block-button__link span:after,
body .mobile-filters-controls .state .wp-block-button__link span:after,
.header-section-dark .btn.btn-ghost:after,
.header-section-dark body .btn-ghost.wp-block-button__link:after,
body .header-section-dark .btn-ghost.wp-block-button__link:after,
.relevant-vacancy-block .btn.btn-ghost:after,
.relevant-vacancy-block body .btn-ghost.wp-block-button__link:after,
body .relevant-vacancy-block .btn-ghost.wp-block-button__link:after,
.home-header-section-re .scroll-label:after,
.call-to-action-section .btn.btn-ghost:after,
.call-to-action-section body .btn-ghost.wp-block-button__link:after,
body .call-to-action-section .btn-ghost.wp-block-button__link:after {
  width: 8px;
  height: 13px;
}

.svg-icon-btn-ziggo,
.page-template-client.ziggo-body-color .btn.btn-white:after,
.page-template-client.ziggo-body-color body .btn-white.wp-block-button__link:after,
body .page-template-client.ziggo-body-color .btn-white.wp-block-button__link:after {
  background: url("sprites.svg") no-repeat;
  background-position: 8.3189902467% 11.0111662531%;
}

.svg-icon-btn-ziggo-dims,
.page-template-client.ziggo-body-color .btn.btn-white:after,
.page-template-client.ziggo-body-color body .btn-white.wp-block-button__link:after,
body .page-template-client.ziggo-body-color .btn-white.wp-block-button__link:after {
  width: 8px;
  height: 13px;
}

.svg-icon-building {
  background: url("sprites.svg") no-repeat;
  background-position: 8.5928489043% 11.4606041732%;
}

.svg-icon-building-dims {
  width: 26px;
  height: 26px;
}

.svg-icon-chat {
  background: url("sprites.svg") no-repeat;
  background-position: 9.331797235% 12.2550544323%;
}

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

.svg-icon-chat-bol,
.page-template-client.bol-body-color .language-slider-holder .text .icon-chat {
  background: url("sprites.svg") no-repeat;
  background-position: 9.965437788% 12.9393468118%;
}

.svg-icon-chat-bol-dims,
.page-template-client.bol-body-color .language-slider-holder .text .icon-chat {
  width: 22px;
  height: 22px;
}

.svg-icon-chat-ikea,
.page-template-client.ikea-body-color .language-slider-holder .text .icon-chat {
  background: url("sprites.svg") no-repeat;
  background-position: 10.599078341% 13.6236391913%;
}

.svg-icon-chat-ikea-dims,
.page-template-client.ikea-body-color .language-slider-holder .text .icon-chat {
  width: 22px;
  height: 22px;
}

.svg-icon-chat-wehkamp,
.page-template-client.wehkamp-body-color .language-slider-holder .text .icon-chat {
  background: url("sprites.svg") no-repeat;
  background-position: 11.232718894% 14.3079315708%;
}

.svg-icon-chat-wehkamp-dims,
.page-template-client.wehkamp-body-color .language-slider-holder .text .icon-chat {
  width: 22px;
  height: 22px;
}

.svg-icon-chat-ziggo,
.page-template-client.ziggo-body-color .language-slider-holder .text .icon-chat {
  background: url("sprites.svg") no-repeat;
  background-position: 11.866359447% 14.9922239502%;
}

.svg-icon-chat-ziggo-dims,
.page-template-client.ziggo-body-color .language-slider-holder .text .icon-chat {
  width: 22px;
  height: 22px;
}

.svg-icon-check-circle-bol,
.page-template-client.bol-body-color .client-text-section ul li:before {
  background: url("sprites.svg") no-repeat;
  background-position: 12.4892086331% 15.6619018024%;
}

.svg-icon-check-circle-bol-dims,
.page-template-client.bol-body-color .client-text-section ul li:before {
  width: 19px;
  height: 19px;
}

.svg-icon-check-circle-ikea,
.page-template-client.ikea-body-color .client-text-section ul li:before {
  background: url("sprites.svg") no-repeat;
  background-position: 13.035971223% 16.2523306401%;
}

.svg-icon-check-circle-ikea-dims,
.page-template-client.ikea-body-color .client-text-section ul li:before {
  width: 19px;
  height: 19px;
}

.svg-icon-check-circle-main,
.page-template-client .client-text-section ul li:before {
  background: url("sprites.svg") no-repeat;
  background-position: 13.5827338129% 16.8427594779%;
}

.svg-icon-check-circle-main-dims,
.page-template-client .client-text-section ul li:before {
  width: 19px;
  height: 19px;
}

.svg-icon-check-circle-wehkamp,
.page-template-client.wehkamp-body-color .client-text-section ul li:before {
  background: url("sprites.svg") no-repeat;
  background-position: 14.1294964029% 17.4331883157%;
}

.svg-icon-check-circle-wehkamp-dims,
.page-template-client.wehkamp-body-color .client-text-section ul li:before {
  width: 19px;
  height: 19px;
}

.svg-icon-check-circle-ziggo,
.page-template-client.ziggo-body-color .client-text-section ul li:before {
  background: url("sprites.svg") no-repeat;
  background-position: 14.6762589928% 18.0236171535%;
}

.svg-icon-check-circle-ziggo-dims,
.page-template-client.ziggo-body-color .client-text-section ul li:before {
  width: 19px;
  height: 19px;
}

.svg-icon-check-filter {
  background: url("sprites.svg") no-repeat;
  background-position: 15.1924181505% 18.5563816605%;
}

.svg-icon-check-filter-dims {
  width: 12px;
  height: 9px;
}

.svg-icon-check-white,
.custom-filter-select.multiselect .option label .style-checkbox:after,
.custom-select .select-items .option label .style-checkbox:after,
body .gform_wrapper .gfield_checkbox li label .style-checkbox:after {
  background: url("sprites.svg") no-repeat;
  background-position: 15.5281285878% 18.8264437219%;
}

.svg-icon-check-white-dims,
.custom-filter-select.multiselect .option label .style-checkbox:after,
.custom-select .select-items .option label .style-checkbox:after,
body .gform_wrapper .gfield_checkbox li label .style-checkbox:after {
  width: 10px;
  height: 7.5px;
}

.svg-icon-city {
  background: url("sprites.svg") no-repeat;
  background-position: 15.8652461849% 19.1721132898%;
}

.svg-icon-city-dims {
  width: 21px;
  height: 24px;
}

.svg-icon-clock-gradient {
  background: url("sprites.svg") no-repeat;
  background-position: 16.4509634743% 19.8757763975%;
}

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

.svg-icon-close {
  background: url("sprites.svg") no-repeat;
  background-position: 16.9155657668% 20.3657780533%;
}

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

.svg-icon-close-white,
.main-pop-up .modal-content .close-btn:after {
  background: url("sprites.svg") no-repeat;
  background-position: 17.240390132% 20.6875193558%;
}

.svg-icon-close-white-dims,
.main-pop-up .modal-content .close-btn:after {
  width: 8px;
  height: 8px;
}

.svg-icon-cutomer-service {
  background: url("sprites.svg") no-repeat;
  background-position: 17.5909878683% 21.0854647536%;
}

.svg-icon-cutomer-service-dims {
  width: 32px;
  height: 31px;
}

.svg-icon-department,
.vacancy-item .info-wrapper .vacancy-short-info .item.department:before {
  background: url("sprites.svg") no-repeat;
  background-position: 18.4343724836% 21.9728990552%;
}

.svg-icon-department-dims,
.vacancy-item .info-wrapper .vacancy-short-info .item.department:before {
  width: 16.8px;
  height: 19.4px;
}

.svg-icon-department-big {
  background: url("sprites.svg") no-repeat;
  background-position: 18.9352517986% 22.6127527216%;
}

.svg-icon-department-big-dims {
  width: 19px;
  height: 22px;
}

.svg-icon-department-bol,
.page-template-client.bol-body-color .vacancy-item .info-wrapper .vacancy-short-info .item.department:before {
  background: url("sprites.svg") no-repeat;
  background-position: 19.4696882549% 23.2782197911%;
}

.svg-icon-department-bol-dims,
.page-template-client.bol-body-color .vacancy-item .info-wrapper .vacancy-short-info .item.department:before {
  width: 16.8px;
  height: 19.4px;
}

.svg-icon-department-ikea,
.page-template-client.ikea-body-color .vacancy-item .info-wrapper .vacancy-short-info .item.department:before {
  background: url("sprites.svg") no-repeat;
  background-position: 19.9585873691% 23.899801094%;
}

.svg-icon-department-ikea-dims,
.page-template-client.ikea-body-color .vacancy-item .info-wrapper .vacancy-short-info .item.department:before {
  width: 16.8px;
  height: 19.4px;
}

.svg-icon-department-wehkamp,
.page-template-client.wehkamp-body-color .vacancy-item .info-wrapper .vacancy-short-info .item.department:before {
  background: url("sprites.svg") no-repeat;
  background-position: 20.4474864834% 24.5213823968%;
}

.svg-icon-department-wehkamp-dims,
.page-template-client.wehkamp-body-color .vacancy-item .info-wrapper .vacancy-short-info .item.department:before {
  width: 16.8px;
  height: 19.4px;
}

.svg-icon-department-ziggo,
.page-template-client.ziggo-body-color .vacancy-item .info-wrapper .vacancy-short-info .item.department:before {
  background: url("sprites.svg") no-repeat;
  background-position: 20.9363855976% 25.1429636997%;
}

.svg-icon-department-ziggo-dims,
.page-template-client.ziggo-body-color .vacancy-item .info-wrapper .vacancy-short-info .item.department:before {
  width: 16.8px;
  height: 19.4px;
}

.svg-icon-education,
.vacancy-info-block.education .inner-block-wrapper:before {
  background: url("sprites.svg") no-repeat;
  background-position: 21.4759296627% 25.7773631841%;
}

.svg-icon-education-dims,
.vacancy-info-block.education .inner-block-wrapper:before {
  width: 25px;
  height: 21px;
}

.svg-icon-email-black,
.recruiter-item .info-wrapper .bottom-row .link.email-link:before {
  background: url("sprites.svg") no-repeat;
  background-position: 22.1455277538% 26.3680357364%;
}

.svg-icon-email-black-dims,
.recruiter-item .info-wrapper .bottom-row .link.email-link:before {
  width: 17px;
  height: 13.4px;
}

.svg-icon-email-blue,
.fixed-contats-wrapper.blue .link.email-link:before {
  background: url("sprites.svg") no-repeat;
  background-position: 22.6344549899% 26.8023327956%;
}

.svg-icon-email-blue-dims,
.fixed-contats-wrapper.blue .link.email-link:before {
  width: 17px;
  height: 13.4px;
}

.svg-icon-email-bol,
.page-template-client.bol-body-color .fixed-contats-wrapper .link.email-link:before {
  background: url("sprites.svg") no-repeat;
  background-position: 23.1233822261% 27.2366298548%;
}

.svg-icon-email-bol-dims,
.page-template-client.bol-body-color .fixed-contats-wrapper .link.email-link:before {
  width: 17px;
  height: 13.4px;
}

.svg-icon-email-ikea,
.page-template-client.ikea-body-color .fixed-contats-wrapper .link.email-link:before {
  background: url("sprites.svg") no-repeat;
  background-position: 23.6123094622% 27.670926914%;
}

.svg-icon-email-ikea-dims,
.page-template-client.ikea-body-color .fixed-contats-wrapper .link.email-link:before {
  width: 17px;
  height: 13.4px;
}

.svg-icon-email-orange,
.fixed-contats-wrapper.orange .link.email-link:before {
  background: url("sprites.svg") no-repeat;
  background-position: 24.1012366983% 28.1052239732%;
}

.svg-icon-email-orange-dims,
.fixed-contats-wrapper.orange .link.email-link:before {
  width: 17px;
  height: 13.4px;
}

.svg-icon-email-pink {
  background: url("sprites.svg") no-repeat;
  background-position: 24.5901639344% 28.5395210324%;
}

.svg-icon-email-pink-dims {
  width: 17px;
  height: 13.4px;
}

.svg-icon-email-wehkamp,
.page-template-client.wehkamp-body-color .fixed-contats-wrapper .link.email-link:before {
  background: url("sprites.svg") no-repeat;
  background-position: 25.0790911705% 28.9738180916%;
}

.svg-icon-email-wehkamp-dims,
.page-template-client.wehkamp-body-color .fixed-contats-wrapper .link.email-link:before {
  width: 17px;
  height: 13.4px;
}

.svg-icon-email-white,
.page-template-client.ikea-body-color .fixed-contats-wrapper .link.email-link:hover:before,
.page-template-client.ziggo-body-color .fixed-contats-wrapper .link.email-link:hover:before,
.page-template-client.wehkamp-body-color .fixed-contats-wrapper .link.email-link:hover:before,
.page-template-client.bol-body-color .fixed-contats-wrapper .link.email-link:hover:before,
.fixed-contats-wrapper .link.email-link:before,
.fixed-contats-wrapper .link:hover.email-link:before {
  background: url("sprites.svg") no-repeat;
  background-position: 25.5680184067% 29.4081151508%;
}

.svg-icon-email-white-dims,
.page-template-client.ikea-body-color .fixed-contats-wrapper .link.email-link:hover:before,
.page-template-client.ziggo-body-color .fixed-contats-wrapper .link.email-link:hover:before,
.page-template-client.wehkamp-body-color .fixed-contats-wrapper .link.email-link:hover:before,
.page-template-client.bol-body-color .fixed-contats-wrapper .link.email-link:hover:before,
.fixed-contats-wrapper .link.email-link:before,
.fixed-contats-wrapper .link:hover.email-link:before {
  width: 17px;
  height: 13.4px;
}

.svg-icon-email-ziggo,
.page-template-client.ziggo-body-color .fixed-contats-wrapper .link.email-link:before {
  background: url("sprites.svg") no-repeat;
  background-position: 26.0569456428% 29.84241221%;
}

.svg-icon-email-ziggo-dims,
.page-template-client.ziggo-body-color .fixed-contats-wrapper .link.email-link:before {
  width: 17px;
  height: 13.4px;
}

.svg-icon-facebook {
  background: url("sprites.svg") no-repeat;
  background-position: 26.4925373134% 30.3265699282%;
}

.svg-icon-facebook-dims {
  width: 10px;
  height: 18.7px;
}

.svg-icon-facebook-hover,
.home-header-section-re .socials-wrapper .social.icon-facebook:hover:before,
.socials-wrapper .social.icon-facebook:hover:before {
  background: url("sprites.svg") no-repeat;
  background-position: 26.7795637199% 30.9169437281%;
}

.svg-icon-facebook-hover-dims,
.home-header-section-re .socials-wrapper .social.icon-facebook:hover:before,
.socials-wrapper .social.icon-facebook:hover:before {
  width: 10px;
  height: 18.7px;
}

.svg-icon-facebook-hover-bol,
.page-template-client.bol-body-color .socials-wrapper .social.icon-facebook:hover:before {
  background: url("sprites.svg") no-repeat;
  background-position: 27.0665901263% 31.5073175279%;
}

.svg-icon-facebook-hover-bol-dims,
.page-template-client.bol-body-color .socials-wrapper .social.icon-facebook:hover:before {
  width: 10px;
  height: 18.7px;
}

.svg-icon-facebook-hover-ikea,
.page-template-client.ikea-body-color .socials-wrapper .social.icon-facebook:hover:before {
  background: url("sprites.svg") no-repeat;
  background-position: 27.3536165327% 32.0976913277%;
}

.svg-icon-facebook-hover-ikea-dims,
.page-template-client.ikea-body-color .socials-wrapper .social.icon-facebook:hover:before {
  width: 10px;
  height: 18.7px;
}

.svg-icon-facebook-hover-wehkamp,
.page-template-client.wehkamp-body-color .socials-wrapper .social.icon-facebook:hover:before {
  background: url("sprites.svg") no-repeat;
  background-position: 27.6406429392% 32.6880651276%;
}

.svg-icon-facebook-hover-wehkamp-dims,
.page-template-client.wehkamp-body-color .socials-wrapper .social.icon-facebook:hover:before {
  width: 10px;
  height: 18.7px;
}

.svg-icon-facebook-hover-ziggo,
.page-template-client.ziggo-body-color .socials-wrapper .social.icon-facebook:hover:before {
  background: url("sprites.svg") no-repeat;
  background-position: 27.9276693456% 33.2784389274%;
}

.svg-icon-facebook-hover-ziggo-dims,
.page-template-client.ziggo-body-color .socials-wrapper .social.icon-facebook:hover:before {
  width: 10px;
  height: 18.7px;
}

.svg-icon-facebook-white,
.home-header-section-re .socials-wrapper .social.icon-facebook:before,
.socials-wrapper .social.icon-facebook:before {
  background: url("sprites.svg") no-repeat;
  background-position: 28.214695752% 33.8688127272%;
}

.svg-icon-facebook-white-dims,
.home-header-section-re .socials-wrapper .social.icon-facebook:before,
.socials-wrapper .social.icon-facebook:before {
  width: 10px;
  height: 18.7px;
}

.svg-icon-fb-chat-icon {
  background: url("sprites.svg") no-repeat;
  background-position: 28.5837651123% 34.4731115947%;
}

.svg-icon-fb-chat-icon-dims {
  width: 20px;
  height: 20px;
}

.svg-icon-filter {
  background: url("sprites.svg") no-repeat;
  background-position: 29.4134727062% 35.4251647317%;
}

.svg-icon-filter-dims {
  width: 50px;
  height: 50px;
}

.svg-icon-finance {
  background: url("sprites.svg") no-repeat;
  background-position: 30.7047949162% 36.7862714509%;
}

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

.svg-icon-footer-link-hover {
  background: url("sprites.svg") no-repeat;
  background-position: 31.3843508169% 37.4922600619%;
}

.svg-icon-footer-link-hover-dims {
  width: 5px;
  height: 7px;
}

.svg-icon-globe {
  background: url("sprites.svg") no-repeat;
  background-position: 31.6637881405% 37.8613615169%;
}

.svg-icon-globe-dims {
  width: 20px;
  height: 20px;
}

.svg-icon-globe-db {
  background: url("sprites.svg") no-repeat;
  background-position: 32.2394933794% 38.4830587504%;
}

.svg-icon-globe-db-dims {
  width: 20px;
  height: 20px;
}

.svg-icon-hours,
.vacancy-item .info-wrapper .vacancy-short-info .item.hours:before {
  background: url("sprites.svg") no-repeat;
  background-position: 32.7812284334% 39.0525564213%;
}

.svg-icon-hours-dims,
.vacancy-item .info-wrapper .vacancy-short-info .item.hours:before {
  width: 16.4px;
  height: 15.7px;
}

.svg-icon-hours-bol,
.page-template-client.bol-body-color .vacancy-item .info-wrapper .vacancy-short-info .item.hours:before {
  background: url("sprites.svg") no-repeat;
  background-position: 33.2700713135% 39.5492503027%;
}

.svg-icon-hours-bol-dims,
.page-template-client.bol-body-color .vacancy-item .info-wrapper .vacancy-short-info .item.hours:before {
  width: 16.4px;
  height: 15.7px;
}

.svg-icon-hours-ikea,
.page-template-client.ikea-body-color .vacancy-item .info-wrapper .vacancy-short-info .item.hours:before {
  background: url("sprites.svg") no-repeat;
  background-position: 33.7589141937% 40.045944184%;
}

.svg-icon-hours-ikea-dims,
.page-template-client.ikea-body-color .vacancy-item .info-wrapper .vacancy-short-info .item.hours:before {
  width: 16.4px;
  height: 15.7px;
}

.svg-icon-hours-news {
  background: url("sprites.svg") no-repeat;
  background-position: 34.2477570738% 40.5426380654%;
}

.svg-icon-hours-news-dims {
  width: 16.4px;
  height: 15.7px;
}

.svg-icon-hours-news-dark {
  background: url("sprites.svg") no-repeat;
  background-position: 34.736599954% 41.0393319467%;
}

.svg-icon-hours-news-dark-dims {
  width: 16.4px;
  height: 15.7px;
}

.svg-icon-hours-wehkamp,
.page-template-client.wehkamp-body-color .vacancy-item .info-wrapper .vacancy-short-info .item.hours:before {
  background: url("sprites.svg") no-repeat;
  background-position: 35.2254428341% 41.5360258281%;
}

.svg-icon-hours-wehkamp-dims,
.page-template-client.wehkamp-body-color .vacancy-item .info-wrapper .vacancy-short-info .item.hours:before {
  width: 16.4px;
  height: 15.7px;
}

.svg-icon-hours-ziggo,
.page-template-client.ziggo-body-color .vacancy-item .info-wrapper .vacancy-short-info .item.hours:before {
  background: url("sprites.svg") no-repeat;
  background-position: 35.7142857143% 42.0327197094%;
}

.svg-icon-hours-ziggo-dims,
.page-template-client.ziggo-body-color .vacancy-item .info-wrapper .vacancy-short-info .item.hours:before {
  width: 16.4px;
  height: 15.7px;
}

.svg-icon-human-resources {
  background: url("sprites.svg") no-repeat;
  background-position: 36.3662622761% 42.626011201%;
}

.svg-icon-human-resources-dims {
  width: 32px;
  height: 23px;
}

.svg-icon-instagram {
  background: url("sprites.svg") no-repeat;
  background-position: 37.1297095197% 43.2608695652%;
}

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

.svg-icon-instagram-hover,
.home-header-section-re .socials-wrapper .social.icon-instagram:hover:before,
.socials-wrapper .social.icon-instagram:hover:before {
  background: url("sprites.svg") no-repeat;
  background-position: 37.6186367558% 43.7888198758%;
}

.svg-icon-instagram-hover-dims,
.home-header-section-re .socials-wrapper .social.icon-instagram:hover:before,
.socials-wrapper .social.icon-instagram:hover:before {
  width: 17px;
  height: 17px;
}

.svg-icon-instagram-hover-bol,
.page-template-client.bol-body-color .socials-wrapper .social.icon-instagram:hover:before {
  background: url("sprites.svg") no-repeat;
  background-position: 38.1075639919% 44.3167701863%;
}

.svg-icon-instagram-hover-bol-dims,
.page-template-client.bol-body-color .socials-wrapper .social.icon-instagram:hover:before {
  width: 17px;
  height: 17px;
}

.svg-icon-instagram-hover-ikea,
.page-template-client.ikea-body-color .socials-wrapper .social.icon-instagram:hover:before {
  background: url("sprites.svg") no-repeat;
  background-position: 38.5964912281% 44.8447204969%;
}

.svg-icon-instagram-hover-ikea-dims,
.page-template-client.ikea-body-color .socials-wrapper .social.icon-instagram:hover:before {
  width: 17px;
  height: 17px;
}

.svg-icon-instagram-hover-wehkamp,
.page-template-client.wehkamp-body-color .socials-wrapper .social.icon-instagram:hover:before {
  background: url("sprites.svg") no-repeat;
  background-position: 39.0854184642% 45.3726708075%;
}

.svg-icon-instagram-hover-wehkamp-dims,
.page-template-client.wehkamp-body-color .socials-wrapper .social.icon-instagram:hover:before {
  width: 17px;
  height: 17px;
}

.svg-icon-instagram-hover-ziggo,
.page-template-client.ziggo-body-color .socials-wrapper .social.icon-instagram:hover:before {
  background: url("sprites.svg") no-repeat;
  background-position: 39.5743457003% 45.900621118%;
}

.svg-icon-instagram-hover-ziggo-dims,
.page-template-client.ziggo-body-color .socials-wrapper .social.icon-instagram:hover:before {
  width: 17px;
  height: 17px;
}

.svg-icon-instagram-white,
.home-header-section-re .socials-wrapper .social.icon-instagram:before,
.socials-wrapper .social.icon-instagram:before {
  background: url("sprites.svg") no-repeat;
  background-position: 40.0632729364% 46.4285714286%;
}

.svg-icon-instagram-white-dims,
.home-header-section-re .socials-wrapper .social.icon-instagram:before,
.socials-wrapper .social.icon-instagram:before {
  width: 17px;
  height: 17px;
}

.svg-icon-learning {
  background: url("sprites.svg") no-repeat;
  background-position: 40.7279029463% 47.1762870515%;
}

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

.svg-icon-linkedin {
  background: url("sprites.svg") no-repeat;
  background-position: 41.4725337935% 47.950310559%;
}

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

.svg-icon-linkedin-hover,
.home-header-section-re .socials-wrapper .social.icon-linkedin:hover:before,
.socials-wrapper .social.icon-linkedin:hover:before {
  background: url("sprites.svg") no-repeat;
  background-position: 41.9614610296% 48.4782608696%;
}

.svg-icon-linkedin-hover-dims,
.home-header-section-re .socials-wrapper .social.icon-linkedin:hover:before,
.socials-wrapper .social.icon-linkedin:hover:before {
  width: 17px;
  height: 17px;
}

.svg-icon-linkedin-hover-bol,
.page-template-client.bol-body-color .socials-wrapper .social.icon-linkedin:hover:before {
  background: url("sprites.svg") no-repeat;
  background-position: 42.4503882657% 49.0062111801%;
}

.svg-icon-linkedin-hover-bol-dims,
.page-template-client.bol-body-color .socials-wrapper .social.icon-linkedin:hover:before {
  width: 17px;
  height: 17px;
}

.svg-icon-linkedin-hover-ikea,
.page-template-client.ikea-body-color .socials-wrapper .social.icon-linkedin:hover:before {
  background: url("sprites.svg") no-repeat;
  background-position: 42.9393155019% 49.5341614907%;
}

.svg-icon-linkedin-hover-ikea-dims,
.page-template-client.ikea-body-color .socials-wrapper .social.icon-linkedin:hover:before {
  width: 17px;
  height: 17px;
}

.svg-icon-linkedin-hover-wehkamp,
.page-template-client.wehkamp-body-color .socials-wrapper .social.icon-linkedin:hover:before {
  background: url("sprites.svg") no-repeat;
  background-position: 43.428242738% 50.0621118012%;
}

.svg-icon-linkedin-hover-wehkamp-dims,
.page-template-client.wehkamp-body-color .socials-wrapper .social.icon-linkedin:hover:before {
  width: 17px;
  height: 17px;
}

.svg-icon-linkedin-hover-ziggo,
.page-template-client.ziggo-body-color .socials-wrapper .social.icon-linkedin:hover:before {
  background: url("sprites.svg") no-repeat;
  background-position: 43.9171699741% 50.5900621118%;
}

.svg-icon-linkedin-hover-ziggo-dims,
.page-template-client.ziggo-body-color .socials-wrapper .social.icon-linkedin:hover:before {
  width: 17px;
  height: 17px;
}

.svg-icon-linkedin-white,
.home-header-section-re .socials-wrapper .social.icon-linkedin:before,
.socials-wrapper .social.icon-linkedin:before {
  background: url("sprites.svg") no-repeat;
  background-position: 44.4060972102% 51.1180124224%;
}

.svg-icon-linkedin-white-dims,
.home-header-section-re .socials-wrapper .social.icon-linkedin:before,
.socials-wrapper .social.icon-linkedin:before {
  width: 17px;
  height: 17px;
}

.svg-icon-location {
  background: url("sprites.svg") no-repeat;
  background-position: 44.8821161587% 51.6620068344%;
}

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

.svg-icon-location-gradient {
  background: url("sprites.svg") no-repeat;
  background-position: 45.3551912568% 52.2536524712%;
}

.svg-icon-location-gradient-dims {
  width: 17px;
  height: 20px;
}

.svg-icon-mail-location,
.locations-section .location-block .info-wrapper .link.mail-link:before {
  background: url("sprites.svg") no-repeat;
  background-position: 45.8309373203% 52.7605459057%;
}

.svg-icon-mail-location-dims,
.locations-section .location-block .info-wrapper .link.mail-link:before {
  width: 16px;
  height: 13px;
}

.svg-icon-map-pin {
  background: url("sprites.svg") no-repeat;
  background-position: 46.3042853034% 53.2794529064%;
}

.svg-icon-map-pin-dims {
  width: 17px;
  height: 20px;
}

.svg-icon-minus {
  background: url("sprites.svg") no-repeat;
  background-position: 46.8471062482% 53.6178107607%;
}

.svg-icon-minus-dims {
  width: 21px;
  height: 3px;
}

.svg-icon-minus_2 {
  background: url("sprites.svg") no-repeat;
  background-position: 47.4517708033% 54.0111940299%;
}

.svg-icon-minus_2-dims {
  width: 21px;
  height: 21px;
}

.svg-icon-mobile-alt {
  background: url("sprites.svg") no-repeat;
  background-position: 48.0426021877% 54.7492992837%;
}

.svg-icon-mobile-alt-dims {
  width: 20px;
  height: 26px;
}

.svg-icon-no-vacancies {
  background: url("sprites.svg") no-repeat;
  background-position: 49.0418118467% 55.9774082209%;
}

.svg-icon-no-vacancies-dims {
  width: 50px;
  height: 50px;
}

.svg-icon-operation {
  background: url("sprites.svg") no-repeat;
  background-position: 50.2310803004% 57.2052401747%;
}

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

.svg-icon-phone-black,
.recruiter-item .info-wrapper .bottom-row .link.phone-link:before {
  background: url("sprites.svg") no-repeat;
  background-position: 50.8908045977% 57.8653428483%;
}

.svg-icon-phone-black-dims,
.recruiter-item .info-wrapper .bottom-row .link.phone-link:before {
  width: 14px;
  height: 14px;
}

.svg-icon-phone-blue,
.fixed-contats-wrapper.blue .link.phone-link:before {
  background: url("sprites.svg") no-repeat;
  background-position: 51.2931034483% 58.2997207571%;
}

.svg-icon-phone-blue-dims,
.fixed-contats-wrapper.blue .link.phone-link:before {
  width: 14px;
  height: 14px;
}

.svg-icon-phone-bol,
.page-template-client.bol-body-color .fixed-contats-wrapper .link.phone-link:before,
.page-template-client.bol-body-color .main-header .contact-mobile-phone-wrapper .mobile-phone {
  background: url("sprites.svg") no-repeat;
  background-position: 51.6954022989% 58.7340986658%;
}

.svg-icon-phone-bol-dims,
.page-template-client.bol-body-color .fixed-contats-wrapper .link.phone-link:before,
.page-template-client.bol-body-color .main-header .contact-mobile-phone-wrapper .mobile-phone {
  width: 14px;
  height: 14px;
}

.svg-icon-phone-ikea,
.page-template-client.ikea-body-color .fixed-contats-wrapper .link.phone-link:before,
.page-template-client.ikea-body-color .main-header .contact-mobile-phone-wrapper .mobile-phone {
  background: url("sprites.svg") no-repeat;
  background-position: 52.0977011494% 59.1684765746%;
}

.svg-icon-phone-ikea-dims,
.page-template-client.ikea-body-color .fixed-contats-wrapper .link.phone-link:before,
.page-template-client.ikea-body-color .main-header .contact-mobile-phone-wrapper .mobile-phone {
  width: 14px;
  height: 14px;
}

.svg-icon-phone-orange,
.fixed-contats-wrapper.orange .link.phone-link:before {
  background: url("sprites.svg") no-repeat;
  background-position: 52.5% 59.6028544834%;
}

.svg-icon-phone-orange-dims,
.fixed-contats-wrapper.orange .link.phone-link:before {
  width: 14px;
  height: 14px;
}

.svg-icon-phone-pink,
.main-header .contact-mobile-phone-wrapper .mobile-phone {
  background: url("sprites.svg") no-repeat;
  background-position: 52.932719954% 60.0745110214%;
}

.svg-icon-phone-pink-dims,
.main-header .contact-mobile-phone-wrapper .mobile-phone {
  width: 16px;
  height: 16px;
}

.svg-icon-phone-wehkamp,
.page-template-client.wehkamp-body-color .fixed-contats-wrapper .link.phone-link:before,
.page-template-client.wehkamp-body-color .main-header .contact-mobile-phone-wrapper .mobile-phone {
  background: url("sprites.svg") no-repeat;
  background-position: 53.3620689655% 60.5336642879%;
}

.svg-icon-phone-wehkamp-dims,
.page-template-client.wehkamp-body-color .fixed-contats-wrapper .link.phone-link:before,
.page-template-client.wehkamp-body-color .main-header .contact-mobile-phone-wrapper .mobile-phone {
  width: 14px;
  height: 14px;
}

.svg-icon-phone-white,
.page-template-client.ikea-body-color .fixed-contats-wrapper .link.phone-link:hover:before,
.page-template-client.ziggo-body-color .fixed-contats-wrapper .link.phone-link:hover:before,
.page-template-client.wehkamp-body-color .fixed-contats-wrapper .link.phone-link:hover:before,
.page-template-client.bol-body-color .fixed-contats-wrapper .link.phone-link:hover:before,
.fixed-contats-wrapper .link.phone-link:before,
.fixed-contats-wrapper .link:hover.phone-link:before {
  background: url("sprites.svg") no-repeat;
  background-position: 53.7643678161% 60.9680421967%;
}

.svg-icon-phone-white-dims,
.page-template-client.ikea-body-color .fixed-contats-wrapper .link.phone-link:hover:before,
.page-template-client.ziggo-body-color .fixed-contats-wrapper .link.phone-link:hover:before,
.page-template-client.wehkamp-body-color .fixed-contats-wrapper .link.phone-link:hover:before,
.page-template-client.bol-body-color .fixed-contats-wrapper .link.phone-link:hover:before,
.fixed-contats-wrapper .link.phone-link:before,
.fixed-contats-wrapper .link:hover.phone-link:before {
  width: 14px;
  height: 14px;
}

.svg-icon-phone-ziggo,
.page-template-client.ziggo-body-color .fixed-contats-wrapper .link.phone-link:before,
.page-template-client.ziggo-body-color .main-header .contact-mobile-phone-wrapper .mobile-phone {
  background: url("sprites.svg") no-repeat;
  background-position: 54.1666666667% 61.4024201055%;
}

.svg-icon-phone-ziggo-dims,
.page-template-client.ziggo-body-color .fixed-contats-wrapper .link.phone-link:before,
.page-template-client.ziggo-body-color .main-header .contact-mobile-phone-wrapper .mobile-phone {
  width: 14px;
  height: 14px;
}

.svg-icon-play-btn,
.image-video-section .image-holder .image-wrapper .play-video,
.gallery-slider .play-video {
  background: url("sprites.svg") no-repeat;
  background-position: 55.4614485981% 62.9302178718%;
}

.svg-icon-play-btn-dims,
.image-video-section .image-holder .image-wrapper .play-video,
.gallery-slider .play-video {
  width: 70px;
  height: 70px;
}

.svg-icon-play-btn-small,
.tp-family-block .info-row .play-video-popup,
.video-reference-block .info-row .play-video-popup {
  background: url("sprites.svg") no-repeat;
  background-position: 57.1718931475% 64.7317226232%;
}

.svg-icon-play-btn-small-dims,
.tp-family-block .info-row .play-video-popup,
.video-reference-block .info-row .play-video-popup {
  width: 50px;
  height: 50px;
}

.svg-icon-play-new {
  background: url("sprites.svg") no-repeat;
  background-position: 58.5387068716% 66.1967418546%;
}

.svg-icon-play-new-dims {
  width: 45px;
  height: 45px;
}

.svg-icon-plus {
  background: url("sprites.svg") no-repeat;
  background-position: 59.4298877052% 67.1228615863%;
}

.svg-icon-plus-dims {
  width: 21px;
  height: 22px;
}

.svg-icon-quote,
.reference-slider-section .quote-slider-wrapper .quote-slider .slick-slide:before {
  background: url("sprites.svg") no-repeat;
  background-position: 61.2694681164% 68.87835703%;
}

.svg-icon-quote-dims,
.reference-slider-section .quote-slider-wrapper .quote-slider .slick-slide:before {
  width: 91px;
  height: 72px;
}

.svg-icon-quote-bol,
.page-template-client.bol-body-color .client-quote-section .quote-block .sign {
  background: url("sprites.svg") no-repeat;
  background-position: 63.3478893741% 70.5734879348%;
}

.svg-icon-quote-bol-dims,
.page-template-client.bol-body-color .client-quote-section .quote-block .sign {
  width: 59px;
  height: 46px;
}

.svg-icon-quote-ikea,
.page-template-client.ikea-body-color .client-quote-section .quote-block .sign {
  background: url("sprites.svg") no-repeat;
  background-position: 65.0655021834% 72.0150423065%;
}

.svg-icon-quote-ikea-dims,
.page-template-client.ikea-body-color .client-quote-section .quote-block .sign {
  width: 59px;
  height: 46px;
}

.svg-icon-quote-main,
.page-template-client .client-quote-section .quote-block .sign {
  background: url("sprites.svg") no-repeat;
  background-position: 66.7831149927% 73.4565966782%;
}

.svg-icon-quote-main-dims,
.page-template-client .client-quote-section .quote-block .sign {
  width: 59px;
  height: 46px;
}

.svg-icon-quote-wehkamp,
.page-template-client.wehkamp-body-color .client-quote-section .quote-block .sign {
  background: url("sprites.svg") no-repeat;
  background-position: 68.500727802% 74.8981510498%;
}

.svg-icon-quote-wehkamp-dims,
.page-template-client.wehkamp-body-color .client-quote-section .quote-block .sign {
  width: 59px;
  height: 46px;
}

.svg-icon-quote-ziggo,
.page-template-client.ziggo-body-color .client-quote-section .quote-block .sign {
  background: url("sprites.svg") no-repeat;
  background-position: 70.2183406114% 76.3397054215%;
}

.svg-icon-quote-ziggo-dims,
.page-template-client.ziggo-body-color .client-quote-section .quote-block .sign {
  width: 59px;
  height: 46px;
}

.svg-icon-salary {
  background: url("sprites.svg") no-repeat;
  background-position: 71.087456847% 76.9612403101%;
}

.svg-icon-salary-dims {
  width: 18px;
  height: 12px;
}

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

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

.svg-icon-search-gradient {
  background: url("sprites.svg") no-repeat;
  background-position: 72.2718111143% 78.2270606532%;
}

.svg-icon-search-gradient-dims {
  width: 21px;
  height: 22px;
}

.svg-icon-share {
  background: url("sprites.svg") no-repeat;
  background-position: 72.7298850575% 78.7154824697%;
}

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

.svg-icon-slider-arrow-left-black,
.client-quote-slider .slick-arrow.slick-prev:before,
.gallery-section .slider-controls .nav-arrows .slick-arrow.slick-prev:before,
.vacancy-process-section .slider-controls .nav-arrows .slick-arrow.slick-prev:before,
.tp-family-slider-container .slider-controls .nav-arrows .slick-arrow.slick-prev:before {
  background: url("sprites.svg") no-repeat;
  background-position: 73.3218092769% 79.1498603785%;
}

.svg-icon-slider-arrow-left-black-dims,
.client-quote-slider .slick-arrow.slick-prev:before,
.gallery-section .slider-controls .nav-arrows .slick-arrow.slick-prev:before,
.vacancy-process-section .slider-controls .nav-arrows .slick-arrow.slick-prev:before,
.tp-family-slider-container .slider-controls .nav-arrows .slick-arrow.slick-prev:before {
  width: 23px;
  height: 14px;
}

.svg-icon-slider-arrow-left-pink,
.reference-slider-section .quote-slider-wrapper .slider-nav .slick-arrow.slick-prev:before {
  background: url("sprites.svg") no-repeat;
  background-position: 73.9844425238% 79.5842382873%;
}

.svg-icon-slider-arrow-left-pink-dims,
.reference-slider-section .quote-slider-wrapper .slider-nav .slick-arrow.slick-prev:before {
  width: 23px;
  height: 14px;
}

.svg-icon-slider-arrow-left-white,
.reference-slider-section .quote-slider-wrapper .slider-nav .slick-arrow:hover.slick-prev:before,
.job-search-section .slider-controls .nav-arrows .slick-arrow.slick-prev:before {
  background: url("sprites.svg") no-repeat;
  background-position: 74.6470757707% 80.0186161961%;
}

.svg-icon-slider-arrow-left-white-dims,
.reference-slider-section .quote-slider-wrapper .slider-nav .slick-arrow:hover.slick-prev:before,
.job-search-section .slider-controls .nav-arrows .slick-arrow.slick-prev:before {
  width: 23px;
  height: 14px;
}

.svg-icon-slider-arrow-right-black,
.client-quote-slider .slick-arrow.slick-next:before,
.gallery-section .slider-controls .nav-arrows .slick-arrow.slick-next:before,
.vacancy-process-section .slider-controls .nav-arrows .slick-arrow.slick-next:before,
.tp-family-slider-container .slider-controls .nav-arrows .slick-arrow.slick-next:before {
  background: url("sprites.svg") no-repeat;
  background-position: 75.3097090176% 80.4529941049%;
}

.svg-icon-slider-arrow-right-black-dims,
.client-quote-slider .slick-arrow.slick-next:before,
.gallery-section .slider-controls .nav-arrows .slick-arrow.slick-next:before,
.vacancy-process-section .slider-controls .nav-arrows .slick-arrow.slick-next:before,
.tp-family-slider-container .slider-controls .nav-arrows .slick-arrow.slick-next:before {
  width: 23px;
  height: 14px;
}

.svg-icon-slider-arrow-right-pink,
.reference-slider-section .quote-slider-wrapper .slider-nav .slick-arrow.slick-next:before,
.faq-list-simple .faq-item-simple a:before {
  background: url("sprites.svg") no-repeat;
  background-position: 75.9723422645% 80.8873720137%;
}

.svg-icon-slider-arrow-right-pink-dims,
.reference-slider-section .quote-slider-wrapper .slider-nav .slick-arrow.slick-next:before,
.faq-list-simple .faq-item-simple a:before {
  width: 23px;
  height: 14px;
}

.svg-icon-slider-arrow-right-white,
.reference-slider-section .quote-slider-wrapper .slider-nav .slick-arrow:hover.slick-next:before,
.job-search-section .slider-controls .nav-arrows .slick-arrow.slick-next:before {
  background: url("sprites.svg") no-repeat;
  background-position: 76.6349755114% 81.3217499224%;
}

.svg-icon-slider-arrow-right-white-dims,
.reference-slider-section .quote-slider-wrapper .slider-nav .slick-arrow:hover.slick-next:before,
.job-search-section .slider-controls .nav-arrows .slick-arrow.slick-next:before {
  width: 23px;
  height: 14px;
}

.svg-icon-suitcase-gradient {
  background: url("sprites.svg") no-repeat;
  background-position: 77.1642220305% 81.8068922695%;
}

.svg-icon-suitcase-gradient-dims {
  width: 17px;
  height: 16px;
}

.svg-icon-time {
  background: url("sprites.svg") no-repeat;
  background-position: 77.7873811582% 82.4572317263%;
}

.svg-icon-time-dims {
  width: 23px;
  height: 22px;
}

.svg-icon-trash {
  background: url("sprites.svg") no-repeat;
  background-position: 78.3146390567% 83.0640149161%;
}

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

.svg-icon-volume-white,
.fixed-contats-wrapper .link.read-speaker-link .icon.read-speaker:before {
  background: url("sprites.svg") no-repeat;
  background-position: 78.9170506912% 83.5765290283%;
}

.svg-icon-volume-white-dims,
.fixed-contats-wrapper .link.read-speaker-link .icon.read-speaker:before {
  width: 22px;
  height: 16px;
}

.svg-icon-whatsapp {
  background: url("sprites.svg") no-repeat;
  background-position: 79.4134560092% 84.0732691711%;
}

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

.svg-icon-youtube {
  background: url("sprites.svg") no-repeat;
  background-position: 79.9654576857% 84.5175302513%;
}

.svg-icon-youtube-dims {
  width: 20px;
  height: 14px;
}

.svg-icon-youtube-hover,
.home-header-section-re .socials-wrapper .social.icon-youtube:hover:before,
.socials-wrapper .social.icon-youtube:hover:before {
  background: url("sprites.svg") no-repeat;
  background-position: 80.5411629246% 84.9519081601%;
}

.svg-icon-youtube-hover-dims,
.home-header-section-re .socials-wrapper .social.icon-youtube:hover:before,
.socials-wrapper .social.icon-youtube:hover:before {
  width: 20px;
  height: 14px;
}

.svg-icon-youtube-hover-bol,
.page-template-client.bol-body-color .socials-wrapper .social.icon-youtube:hover:before {
  background: url("sprites.svg") no-repeat;
  background-position: 81.1168681635% 85.3862860689%;
}

.svg-icon-youtube-hover-bol-dims,
.page-template-client.bol-body-color .socials-wrapper .social.icon-youtube:hover:before {
  width: 20px;
  height: 14px;
}

.svg-icon-youtube-hover-ikea,
.page-template-client.ikea-body-color .socials-wrapper .social.icon-youtube:hover:before {
  background: url("sprites.svg") no-repeat;
  background-position: 81.6925734024% 85.8206639777%;
}

.svg-icon-youtube-hover-ikea-dims,
.page-template-client.ikea-body-color .socials-wrapper .social.icon-youtube:hover:before {
  width: 20px;
  height: 14px;
}

.svg-icon-youtube-hover-wehkamp,
.page-template-client.wehkamp-body-color .socials-wrapper .social.icon-youtube:hover:before {
  background: url("sprites.svg") no-repeat;
  background-position: 82.2682786413% 86.2550418864%;
}

.svg-icon-youtube-hover-wehkamp-dims,
.page-template-client.wehkamp-body-color .socials-wrapper .social.icon-youtube:hover:before {
  width: 20px;
  height: 14px;
}

.svg-icon-youtube-hover-ziggo,
.page-template-client.ziggo-body-color .socials-wrapper .social.icon-youtube:hover:before {
  background: url("sprites.svg") no-repeat;
  background-position: 82.8439838803% 86.6894197952%;
}

.svg-icon-youtube-hover-ziggo-dims,
.page-template-client.ziggo-body-color .socials-wrapper .social.icon-youtube:hover:before {
  width: 20px;
  height: 14px;
}

.svg-icon-youtube-white,
.home-header-section-re .socials-wrapper .social.icon-youtube:before,
.socials-wrapper .social.icon-youtube:before {
  background: url("sprites.svg") no-repeat;
  background-position: 83.4196891192% 87.123797704%;
}

.svg-icon-youtube-white-dims,
.home-header-section-re .socials-wrapper .social.icon-youtube:before,
.socials-wrapper .social.icon-youtube:before {
  width: 20px;
  height: 14px;
}

.svg-main-logo {
  background: url("sprites.svg") no-repeat;
  background-position: 88.5853066181% 88.2978723404%;
}

.svg-main-logo-dims {
  width: 200px;
  height: 41px;
}

.svg-play-btn-bol,
.page-template-client.bol-body-color .gallery-slider .play-video,
.page-template-client.bol-body-color .play-fancy:before {
  background: url("sprites.svg") no-repeat;
  background-position: 90.8508158508% 90.1732283465%;
}

.svg-play-btn-bol-dims,
.page-template-client.bol-body-color .gallery-slider .play-video,
.page-template-client.bol-body-color .play-fancy:before {
  width: 62px;
  height: 62px;
}

.svg-play-btn-ikea,
.page-template-client.ikea-body-color .gallery-slider .play-video,
.page-template-client.ikea-body-color .play-fancy:before {
  background: url("sprites.svg") no-repeat;
  background-position: 92.6573426573% 92.125984252%;
}

.svg-play-btn-ikea-dims,
.page-template-client.ikea-body-color .gallery-slider .play-video,
.page-template-client.ikea-body-color .play-fancy:before {
  width: 62px;
  height: 62px;
}

.svg-play-btn-main,
.page-template-client .gallery-slider .play-video,
.page-template-client .play-fancy:before {
  background: url("sprites.svg") no-repeat;
  background-position: 94.4638694639% 94.0787401575%;
}

.svg-play-btn-main-dims,
.page-template-client .gallery-slider .play-video,
.page-template-client .play-fancy:before {
  width: 62px;
  height: 62px;
}

.svg-play-btn-wehkamp,
.page-template-client.wehkamp-body-color .gallery-slider .play-video,
.page-template-client.wehkamp-body-color .play-fancy:before {
  background: url("sprites.svg") no-repeat;
  background-position: 96.2703962704% 96.031496063%;
}

.svg-play-btn-wehkamp-dims,
.page-template-client.wehkamp-body-color .gallery-slider .play-video,
.page-template-client.wehkamp-body-color .play-fancy:before {
  width: 62px;
  height: 62px;
}

.svg-play-btn-ziggo,
.page-template-client.ziggo-body-color .gallery-slider .play-video,
.page-template-client.ziggo-body-color .play-fancy:before {
  background: url("sprites.svg") no-repeat;
  background-position: 98.0769230769% 97.9842519685%;
}

.svg-play-btn-ziggo-dims,
.page-template-client.ziggo-body-color .gallery-slider .play-video,
.page-template-client.ziggo-body-color .play-fancy:before {
  width: 62px;
  height: 62px;
}

.svg-readspeaker-bol {
  background: url("sprites.svg") no-repeat;
  background-position: 98.5623921794% 98.4486503258%;
}

.svg-readspeaker-bol-dims {
  width: 16px;
  height: 14px;
}

.svg-video-highlight,
.news-item .image-holder .video-highlight {
  background: url("sprites.svg") no-repeat;
  background-position: 100% 100%;
}

.svg-video-highlight-dims,
.news-item .image-holder .video-highlight {
  width: 50px;
  height: 50px;
}

.btn,
body .wp-block-button__link {
  display: inline-block;
  position: relative;
  border: none;
  border-radius: 25px;
  background-color: #ff0082;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  padding: 15px 22px 15px 22px;
  outline: none;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}

.btn span,
body .wp-block-button__link span {
  position: relative;
  z-index: 2;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
}

.btn:hover,
body .wp-block-button__link:hover,
.btn:focus,
body .wp-block-button__link:focus {
  background-color: #191238;
  color: #fff;
  outline: none;
  text-decoration: none;
}

.btn.btn-ghost,
body .btn-ghost.wp-block-button__link {
  background-color: transparent;
  background-image: none;
  color: #191238;
  border: 2px solid #ff0082;
}

.btn.btn-ghost:hover,
body .btn-ghost.wp-block-button__link:hover,
.btn.btn-ghost:focus,
body .btn-ghost.wp-block-button__link:focus {
  color: #fff;
  background-color: #ff0082;
}

.btn.btn-white,
body .btn-white.wp-block-button__link {
  background-color: #fff;
  color: #ff0082;
}

.btn.btn-white:before,
body .btn-white.wp-block-button__link:before {
  background-color: rgb(229.5, 229.5, 229.5);
  transition: all 0.7s ease-in-out;
}

.btn.round,
body .round.wp-block-button__link {
  border-radius: 28px;
}

.btn-no-arrow {
  display: block;
  position: relative;
  border: none;
  border-radius: 0;
  background-color: #ff0082;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
  padding: 15px 25px;
  overflow: hidden;
  outline: none;
  text-decoration: none;
}

.btn-no-arrow span {
  position: relative;
  z-index: 2;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
}

.btn-no-arrow:before {
  content: "";
  position: absolute;
  top: 0;
  right: 110%;
  height: 100%;
  width: 110%;
  background-color: #e70377;
  -webkit-transform: skewX(10deg);
  transform: skewX(10deg);
  transition: all 0.7s ease-in-out;
}

.btn-no-arrow:hover,
.btn-no-arrow:focus {
  color: #fff;
  outline: none;
}

.btn-no-arrow:hover:before,
.btn-no-arrow:focus:before {
  -webkit-transform: skewX(10deg) translateX(105%);
  transform: skewX(10deg) translateX(105%);
}

.btn-no-arrow-re {
  display: block;
  position: relative;
  border: none;
  border-radius: 25px;
  background-color: #ff0082;
  background-image: linear-gradient(to right, #792182 0%, #e60f76 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  padding: 15px 25px;
  overflow: hidden;
  outline: none;
  text-decoration: none;
}

.btn-no-arrow-re span {
  position: relative;
  z-index: 2;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
}

.btn-no-arrow-re:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, #e60f76 0%, #792182 100%);
  border-radius: 25px;
  opacity: 0;
  transition: all 0.6s ease-in-out;
}

.btn-no-arrow-re:hover,
.btn-no-arrow-re:focus {
  color: #fff;
  outline: none;
}

.btn-no-arrow-re:hover:before,
.btn-no-arrow-re:focus:before {
  opacity: 1;
}

.back-link {
  display: inline-block;
  position: relative;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  padding-left: 30px;
  text-decoration: none;
}

.back-link:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s ease-in-out;
}

.back-link:hover,
.back-link:focus {
  color: #fff;
  text-decoration: none;
}

.back-link:hover:before,
.back-link:focus:before {
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px);
}

.side-btn {
  display: inline-block;
  position: relative;
  border: none;
  border-radius: 0;
  background-color: #ff0082;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
  padding: 15px 25px 15px 55px;
  outline: none;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.7s ease-in-out;
}

.side-btn:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 25px;
  z-index: 2;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.side-btn:before {
  content: "";
  position: absolute;
  top: 0;
  right: 110%;
  height: 100%;
  width: 110%;
  background-color: #e70377;
  -webkit-transform: skewX(10deg);
  transform: skewX(10deg);
  transition: all 0.7s ease-in-out;
}

.side-btn span {
  position: relative;
  z-index: 2;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
}

.side-btn:hover,
.side-btn:focus {
  color: #fff;
  outline: none;
  text-decoration: none;
}

.side-btn:hover:before,
.side-btn:focus:before {
  -webkit-transform: skewX(10deg) translateX(105%);
  transform: skewX(10deg) translateX(105%);
}

.open-search {
  display: inline-block;
  width: 21px;
  height: 21px;
  background-size: 21px 21px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-search.svg);
}

.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 {
  margin: 0 8px;
}

.pagination-wrapper .page-numbers li:first-child {
  margin-left: 0;
}

.pagination-wrapper .page-numbers li:last-child {
  margin-right: 0;
}

.pagination-wrapper .page-numbers li .page-numbers {
  width: 45px;
  height: 45px;
  background-color: #191238;
  border-radius: 50%;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  padding: 0 10px;
}

.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 0.3s ease-in-out;
}

.pagination-wrapper .page-numbers li .page-numbers.next,
.pagination-wrapper .page-numbers li .page-numbers.prev {
  width: 25px;
  background-color: transparent;
}

.pagination-wrapper .page-numbers li .page-numbers.prev .arrow-list-icon:after {
  -webkit-transform: rotate(-180deg) translateY(-50%);
  transform: rotate(-180deg) translateY(-50%);
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
}

.pagination-wrapper .page-numbers li .current {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  background-image: linear-gradient(to right, #792182 0%, #e60f76 100%);
}

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

.sticky-contacts {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 50;
}

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

.single-vacancies .sticky-contacts {
  top: 25%;
}

.fixed-contats-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: end;
  align-items: flex-end;
}

.fixed-contats-wrapper .link {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  width: 50px;
  height: 50px;
  background-color: #fff;
  background-color: #ff0082;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}

.fixed-contats-wrapper .link:hover {
  background-color: #ff0082;
}

.fixed-contats-wrapper .link:hover.read-speaker-link {
  /*                &:before {
                        @include sprite_svg('icon-volume-white');
                    }*/
}

.fixed-contats-wrapper .link:hover:after {
  opacity: 1;
}

.fixed-contats-wrapper .link:last-child {
  margin-bottom: 0;
}

.fixed-contats-wrapper .link:before {
  content: "";
  position: relative;
  z-index: 2;
}

.fixed-contats-wrapper .link:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, #e60f76 0%, #792182 100%);
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

.fixed-contats-wrapper .link.read-speaker-link {
  width: auto;
  -webkit-transform: translateX(calc(100% - 50px));
  transform: translateX(calc(100% - 50px));
}

.fixed-contats-wrapper .link.read-speaker-link .icon {
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  position: relative;
  z-index: 2;
  background-image: linear-gradient(to right, #792182 0%, #e60f76 100%);
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  cursor: pointer;
  padding-left: 14px;
  padding-right: 14px;
}

.fixed-contats-wrapper .link.read-speaker-link .icon.read-speaker:before {
  content: "";
  position: relative;
  z-index: 2;
  display: inline-block;
  margin: auto;
}

.fixed-contats-wrapper .link.read-speaker-link .icon:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, #e60f76 0%, #792182 100%);
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

.fixed-contats-wrapper .link.read-speaker-link .icon:hover:after {
  opacity: 1;
}

.fixed-contats-wrapper .link.read-speaker-link .readspeaker-btn-holder {
  padding-left: 0;
}

.fixed-contats-wrapper .link.read-speaker-link.active {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.fixed-contats-wrapper .link.read-speaker-link.active .icon {
  background-image: none;
}

.fixed-contats-wrapper .link.read-speaker-link.active .icon:after {
  display: none;
}

.fixed-contats-wrapper.orange .link {
  background-image: none;
}

.fixed-contats-wrapper.orange .link:after {
  display: none;
}

.fixed-contats-wrapper.orange .link:hover {
  background-color: #ff5c00;
}

.fixed-contats-wrapper.blue {
  background-image: none;
}

.fixed-contats-wrapper.blue:after {
  display: none;
}

.fixed-contats-wrapper.blue .link:hover {
  background-color: #0087ff;
}

body.has-opacity {
  opacity: 0;
}

.preloader {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.preloader .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 #ff0082;
  -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);
  }
}

.rspopup {
  /*    .rsbtn_play {
            background-color: $primary-color;
        }

        .rsbtn_left.rspart {
            background-image: url(../../inc/readspeaker/img/readspeaker-white.svg);
        }*/
}

.readspeaker-btn-holder {
  position: relative;
  background-color: transparent;
  padding: 10px 15px;
}

.readspeaker-btn-holder .rsbtn {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.readspeaker-btn-holder .rs_addtools .rsbtn_toolpanel.vertical,
.readspeaker-btn-holder .rsbtn .rsbtn_toolpanel.vertical {
  position: absolute;
  right: -11px;
}

.readspeaker-btn-holder:hover,
.readspeaker-btn-holder:focus,
.readspeaker-btn-holder.opened {
  /*            .rsbtn_play {
                background-color: $primary-color;
            }

            .rsbtn_colorskin {
                .rsbtn_left.rspart {
                    background-image: url(../../inc/readspeaker/img/readspeaker-white.svg);
                }
            }*/
}

.sticky-side-part {
  /*    display: flex;
        flex-direction: column;
        align-items: flex-end;*/
  position: fixed;
  top: 40%;
  right: 0;
  z-index: 99;
}

@media (max-width: 767px) {
  .sticky-side-part {
    top: auto;
    bottom: 155px;
    /*        flex-direction: row-reverse;
                align-items: stretch;
                justify-content: flex-end;
                top: auto;
                bottom: 0;
                left: auto;
                right: 0;
                transform: translate(0) !important;*/
  }

  .sticky-side-part .readspeaker-btn-holder {
    /*
                    .rsbtn_colorskin {
                        width: 50px !important;
                        height: 100%;
                    }

                    .rsbtn_colorskin .rsbtn_play {
                        width: 50px;
                        height: 100%;
                        background-color: $primary-color;
                        border: none;
                        border-radius: 0;
                    }

                    .rsbtn_colorskin .rsbtn_left .rsbtn_text:after {
                        display: none;
                    }

                    .rsbtn_colorskin .rsbtn_left .rsbtn_text:before {
                        display: none;
                    }

                    .rsbtn_colorskin .rsbtn_pause::after {
                        display: block !important;
                    }

                    .rsbtn_colorskin .rsbtn_left.rspart {
                        width: 50px;
                        background-position: center;
                        background-image: url(../../inc/readspeaker/img/readspeaker-white.svg);
                    }

                    .rsbtn_colorskin .rspart.rsbutton {
                        width: 50px;
                        height: inherit;
                        background-color: $primary-color;
                        border: none;
                        border-radius: 0;
                    }

                    .rsbtn_colorskin .rspart.rsbutton:hover {
                        background-color: $primary-color;
                    }

                    .rsbtn_colorskin.rspaused .rsbtn_pause, .rsbtn_colorskin.rsstopped .rsbtn_pause {
                        &:before,
                        &:after {
                          display: none;
                        }
                    }

                    .rsbtn_colorskin.rsexpanded .rsbtn_exp.rsimg {
                        height: 100%;
                    }

                    .rsbtn_colorskin .rsbtn_box {
                        height: inherit;
                    }

                    .rsbtn_colorskin .rsbtn_pause::before,
                    .rsbtn_colorskin .rsbtn_pause::after {
                        background-color: #fff;
                    }

                    .rsbtn_colorskin.rspaused .rsbtn_pause::after, 
                    .rsbtn_colorskin.rsstopped .rsbtn_pause::after {
                        background-color: transparent;
                        border-left: 14px solid #fff;
                    }*/
  }
}

.main-nav-container {
  -ms-flex-positive: 1;
  flex-grow: 1;
  transition: all 0.4s ease-in-out;
}

.main-nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.main-nav > .menu-item {
  padding: 0 20px;
  line-height: 1;
}

.main-nav > .menu-item:first-child {
  padding-left: 0;
}

.main-nav > .menu-item:last-child {
  padding-right: 0;
}

.main-nav > .menu-item > a {
  display: inline-block;
  position: relative;
  color: #c8c3ca;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  padding: 41px 0;
}

.main-nav > .menu-item > a:hover {
  color: #fff;
}

.main-nav > .menu-item.current-menu-item > a {
  color: #fff;
}

.main-nav > .menu-item.current-menu-item > a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-image: linear-gradient(270deg, #ff0082 0%, #780096 100%);
}

.main-nav > .menu-item.menu-item-has-children > a {
  margin-right: 20px;
}

.main-nav > .menu-item.menu-item-has-children > a:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: -20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}

.main-nav > .menu-item.menu-item-has-children:hover > a:after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transform-origin: 50% 25%;
  transform-origin: 50% 25%;
}

.main-nav > .menu-item.menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
}

.main-nav .sub-menu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: absolute;
  top: 100%;
  left: -15px;
  right: -15px;
  z-index: 600;
  list-style-type: none;
  background-color: #4B4C6A;
  box-shadow: inset 0px 1px 0px 0px #2d274a;
  padding: 50px 0;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.main-nav .sub-menu:before,
.main-nav .sub-menu:after {
  content: "";
  position: absolute;
  top: 0;
  width: 1000000%;
  height: 100%;
  background-color: #4B4C6A;
}

.main-nav .sub-menu:before {
  right: calc(100% - 15px);
}

.main-nav .sub-menu:after {
  left: calc(100% - 15px);
}

.main-nav .sub-menu .menu-item {
  position: relative;
  z-index: 1;
  width: 25%;
  padding: 0 15px;
  margin: 0 0 -1px 0;
  text-align: left;
}

.main-nav .sub-menu .menu-item:after {
  display: none;
}

.main-nav .sub-menu .menu-item a {
  display: block;
  position: relative;
  color: #fff;
  border-top: 1px solid #221b40;
  border-bottom: 1px solid #221b40;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  padding: 16px 0 16px 20px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.main-nav .sub-menu .menu-item a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, #792182 0%, #e60f76 100%);
  border-radius: 26px;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.main-nav .sub-menu .menu-item a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
  width: 10px;
  height: 10px;
  background-size: 10px 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/arrow-up-right.svg);
}

.main-nav .sub-menu .menu-item a:hover {
  border-radius: 26px;
  color: #fff;
}

.main-nav .sub-menu .menu-item a:hover:before {
  opacity: 1;
}

.main-nav .sub-menu .menu-item a:hover:after {
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.main-nav .sub-menu .sub-menu {
  top: 0;
  left: 100%;
  margin-left: 3px;
}

.mobile-nav-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 998;
  width: 100%;
  background-color: #26122D;
  padding: 25px 0 0;
}

.mobile-nav-container .inner-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  padding: 5px 0 25px;
  overflow: auto;
}

.mobile-nav-container .languages-holder {
  margin-bottom: 30px;
}

.mobile-nav-container .languages-holder .languages-switcher {
  background: linear-gradient(#f1f1f1, #f1f1f1) padding-box, linear-gradient(to right, #792182 0%, #e60f76 100%) border-box;
}

.mobile-nav-container .languages-holder .languages-switcher .label {
  color: #191238;
}

.mobile-nav-container .languages-holder .languages-switcher .label:before {
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-globe-db.svg);
}

.mobile-nav-container .wpml-language-switcher-holder {
  max-width: 50px;
  margin-left: 0;
  margin-bottom: 30px;
}

.mobile-nav-container .wpml-language-switcher-holder .wpml-ls-legacy-dropdown a {
  padding-left: 0;
}

.mobile-nav-container .wpml-language-switcher-holder .wpml-ls-legacy-dropdown a.wpml-ls-item-toggle:after {
  color: #000;
}

.mobile-nav-container .wpml-language-switcher-holder .wpml-ls-sub-menu {
  background: #f1f1f1;
}

.mobile-nav-container .mobile-searchform {
  margin-bottom: 40px;
}

.mobile-nav-container .mobile-nav-footer {
  margin-top: auto;
  padding-top: 30px;
}

.mobile-nav-container .mobile-nav-footer .mobile-nav-footer-inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.mobile-nav-container .mobile-nav-footer .btn,
.mobile-nav-container .mobile-nav-footer body .wp-block-button__link,
body .mobile-nav-container .mobile-nav-footer .wp-block-button__link {
  padding-left: 15px;
  padding-right: 25px;
}

.mobile-nav-container .mobile-nav-footer .btn::after,
.mobile-nav-container .mobile-nav-footer body .wp-block-button__link::after,
body .mobile-nav-container .mobile-nav-footer .wp-block-button__link::after {
  right: 11px;
}

.mobile-nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 45px;
  padding: 0;
}

.mobile-nav .menu-item {
  position: relative;
}

.mobile-nav .menu-item a {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}

.mobile-nav .menu-item.menu-item-has-children > .arrow {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 25px;
  height: 25px;
}

.mobile-nav .menu-item.menu-item-has-children > .arrow:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: rotate(0) translateY(-50%);
  transform: rotate(0) translateY(-50%);
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  transition: all 0.3s ease-in-out;
  width: 11px;
  height: 7px;
  -webkit-mask-size: 11px 7px;
  mask-size: 11px 7px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-image: url(../../resources/images/svg/icon-arrow-down.svg);
  mask-image: url(../../resources/images/svg/icon-arrow-down.svg);
  background: #fff;
}

.mobile-nav .menu-item.menu-item-has-children > .arrow.active:after {
  background: linear-gradient(0deg, #FF0082 0%, #792182 100%);
  -webkit-transform: rotate(-180deg) translateY(-50%);
  transform: rotate(-180deg) translateY(-50%);
}

.mobile-nav .menu-item .sub-menu {
  display: none;
  list-style-type: none;
  padding: 30px 0 0;
  margin: 0;
}

.mobile-nav .menu-item .sub-menu .menu-item {
  position: relative;
  margin-bottom: 22px;
  padding-left: 46px;
}

.mobile-nav .menu-item .sub-menu .menu-item::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(90deg, #8E2082 0%, #D02383 100%);
}

.mobile-nav .menu-item .sub-menu .menu-item:last-child {
  margin-bottom: 0;
}

.mobile-nav .menu-item .sub-menu .menu-item a {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
}

.footer-nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.footer-nav .menu-item {
  line-height: 1;
  padding: 0 15px;
}

@media (min-width: 374px) {
  .footer-nav .menu-item:first-child {
    padding-left: 0;
  }

  .footer-nav .menu-item:last-child {
    padding-right: 0;
  }
}

.footer-nav .menu-item a {
  color: #ffffff;
  font-family: "Noto Sans";
  font-size: 12px;
  text-decoration: none;
}

.footer-nav .menu-item a:hover {
  color: #ff0082;
}

.socials-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .socials-wrapper {
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
  }
}

.socials-wrapper .social {
  position: relative;
  margin: 0 10px;
  line-height: 1;
  font-size: 0;
}

.socials-wrapper .social:first-child {
  margin-left: 0;
}

.socials-wrapper .social:last-child {
  margin-right: 0;
}

.socials-wrapper .social:before {
  content: "";
  display: inline-block;
}

.wpml-language-switcher-holder {
  max-width: 65px;
  margin-left: auto;
}

.wpml-language-switcher-holder .wpml-ls-legacy-dropdown > ul {
  margin-bottom: 0 !important;
}

.wpml-language-switcher-holder .wpml-ls-legacy-dropdown a {
  background-color: transparent !important;
  border: none;
}

.wpml-language-switcher-holder .wpml-ls-legacy-dropdown a:hover {
  background: none !important;
}

.wpml-language-switcher-holder .wpml-ls-legacy-dropdown a.wpml-ls-item-toggle:after {
  color: #fff;
}

.wpml-language-switcher-holder .wpml-ls-legacy-dropdown .wpml-ls-item {
  padding: 0 !important;
  margin: 0 !important;
  list-style-type: none !important;
}

.wpml-language-switcher-holder .wpml-ls-legacy-dropdown .wpml-ls-item:before {
  display: none !important;
}

.wpml-language-switcher-holder .wpml-ls-legacy-dropdown .wpml-ls-sub-menu {
  border: none;
}

.breadcrumbs-holder {
  padding-top: 15px;
  padding-bottom: 15px;
  margin-bottom: 77px;
}

.client-intro-holder .breadcrumbs-holder {
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 29px;
}

.breadcrumbs {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  color: #4B4C6A;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
}

.breadcrumbs a.home::before {
  content: "";
  display: inline-block;
  background-color: #4B4C6A;
  width: 16px;
  height: 16px;
  -webkit-mask-size: 16px 16px;
  mask-size: 16px 16px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-image: url(../../resources/images/svg/breadcrumbs-home.svg);
  mask-image: url(../../resources/images/svg/breadcrumbs-home.svg);
}

.breadcrumbs a.home span {
  display: none;
}

.breadcrumbs a,
.breadcrumbs span {
  color: inherit;
  font: inherit;
}

.breadcrumbs .separator {
  margin: 0 8px;
}

.search-item-block {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  background: #FFF;
  border-radius: 5px;
  padding: 20px;
  transition: all 0.3s ease-in-out;
}

.search-item-block .arrow {
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 50%;
  right: 0;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #191238;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.search-item-block .arrow:before,
.search-item-block .arrow:after {
  content: "";
  transition: all 0.3s ease-in-out;
}

.search-item-block .arrow:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-image: linear-gradient(to right, #792182 0%, #e60f76 100%);
  opacity: 0;
}

.search-item-block .arrow:after {
  position: relative;
  z-index: 2;
  margin: auto;
  width: 10px;
  height: 10px;
  background-size: 10px 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/arrow-up-right.svg);
}

.search-item-block .arrow:hover:before {
  opacity: 1;
}

.search-item-block .arrow:hover:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.search-item-block .inner-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
  position: relative;
  width: 100%;
  padding-right: 55px;
}

.search-item-block .title-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 16px;
}

.search-item-block .title-wrapper .type {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.search-item-block .type {
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 9px 13px;
  border-radius: 22px;
  background: linear-gradient(90deg, #E51077 0%, #7E2182 100%);
  color: #EFF0F9;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.search-item-block .block-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0;
}

.search-item-block .excerpt-wrapper {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
}

.search-item-block .excerpt-wrapper p {
  font: inherit;
}

.search-item-block:hover {
  box-shadow: 0 4px 12px 0 rgba(33, 33, 99, 0.1);
}

.search-item-block:hover .arrow:before {
  opacity: 1;
}

.search-item-block:hover .arrow:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.search-item-block .block-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.socials-wrapper-rounded {
  display: -ms-flexbox;
  display: flex;
  gap: 9px;
}

.socials-wrapper-rounded .social {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(90deg, #792182 0%, #E60F76 100%);
  border-radius: 50%;
}

.socials-wrapper-rounded .social::after {
  content: "";
  margin: auto;
  background-color: #fff;
}

.socials-wrapper-rounded .social.icon-facebook::after {
  width: 10px;
  height: 18px;
  -webkit-mask-size: 10px 18px;
  mask-size: 10px 18px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-image: url(../../resources/images/svg/icon-facebook.svg);
  mask-image: url(../../resources/images/svg/icon-facebook.svg);
}

.socials-wrapper-rounded .social.icon-instagram::after {
  width: 17px;
  height: 17px;
  -webkit-mask-size: 17px 17px;
  mask-size: 17px 17px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-image: url(../../resources/images/svg/icon-instagram.svg);
  mask-image: url(../../resources/images/svg/icon-instagram.svg);
}

.socials-wrapper-rounded .social.icon-linkedin::after {
  width: 17px;
  height: 17px;
  -webkit-mask-size: 17px 17px;
  mask-size: 17px 17px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-image: url(../../resources/images/svg/icon-linkedin.svg);
  mask-image: url(../../resources/images/svg/icon-linkedin.svg);
}

.main-header {
  position: relative;
  z-index: 99999;
  /*    &:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background-image: linear-gradient(270deg, #ff0082 0%, #780096 100%);
        }*/
}

.main-header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  transition: all 0.3s ease-in-out;
  overflow: visible !important;
}

.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 .vacancy-info-holder {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  transition: all 0.4s ease-in-out;
  -webkit-filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  opacity: 0;
  visibility: hidden;
}

.main-header.fixed .vacancy-info-holder.active {
  opacity: 1;
  visibility: visible;
}

.main-header.fixed .vacancy-info-holder .vacancy-info-row {
  border-radius: 0;
  margin-right: -19px;
  margin-left: -19px;
  padding-left: 0;
  padding-right: 0;
}

.main-header.dark-header {
  background-color: #4B4C6A;
}

.main-header.dark-header.headroom--not-top .main-header__inner:after,
.main-header.dark-header.header-sub-nav-active .main-header__inner:after,
.main-header.dark-header.mobile-nav-active .main-header__inner:after,
.main-header.dark-header.search-active .main-header__inner:after {
  opacity: 0;
}

.main-header.dark-header .main-header__inner:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  opacity: 0.15;
  transition: all 0.3s ease-in-out;
}

.main-header.dark-header .ham-icon span {
  background-color: #fff;
}

.main-header.dark-header .ham-icon.open span {
  background-color: #fff;
}

.main-header.white-header {
  background-color: #fff;
}

.main-header.white-header .main-nav > .menu-item > a {
  color: #534d6a;
}

.main-header.white-header .main-nav > .menu-item > a:hover {
  color: #191238;
}

.main-header.white-header .sub-menu {
  background-color: #fff;
  box-shadow: inset 0px 1px 0px 0px #f3f3f5;
}

.main-header.white-header .sub-menu:before,
.main-header.white-header .sub-menu:after {
  background-color: #fff;
}

.main-header.white-header .sub-menu .menu-item a {
  color: #191238;
  border-top-color: #f3f3f5;
  border-bottom-color: #f3f3f5;
}

.main-header.white-header .sub-menu .menu-item a:before {
  background-color: #f5f6fb;
  background-image: none;
}

.main-header.white-header .sub-menu .menu-item a:after {
  width: 10px;
  height: 10px;
  background-size: 10px 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/arrow-up-right-db.svg);
}

.main-header.white-header .languages-holder .languages-switcher {
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(to right, #792182 0%, #e60f76 100%) border-box;
}

.main-header.white-header .languages-holder .languages-switcher .label {
  color: #191238;
}

.main-header.white-header .languages-holder .languages-switcher .label:before {
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-globe-db.svg);
}

.main-header .header-stiker {
  position: absolute;
  top: 100%;
  right: 102px;
  font-size: 0;
}

@media (max-width: 991px) {
  .main-header .header-stiker {
    display: none;
  }
}

.main-header .main-header__inner {
  position: relative;
  z-index: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (max-width: 1177px) {
  .main-header .main-header__inner {
    padding: 30px 0;
  }
}

.main-header .main-header__inner .logo {
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 38px;
  transition: all 0.4s ease-in-out;
  max-width: 50px;
  width: 100%;
}

@media (max-width: 1177px) {
  .main-header .main-header__inner .logo {
    margin-right: 15px;
  }

  .main-header .main-header__inner .logo.m-invisible {
    opacity: 0;
  }

  .main-header .main-header__inner .logo {
    /*                img {
                            max-width: 175px; 
                        }*/
  }
}

@media (max-width: 360px) {
  .main-header .main-header__inner .logo img {
    max-width: 175px;
  }
}

.main-header .main-header__inner .main-nav-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-positive: 2;
  flex-grow: 2;
}

.main-header .main-header__inner .main-nav-container .open-search {
  margin-left: 40px;
}

@media (max-width: 1177px) {
  .main-header .main-header__inner .main-nav-container {
    display: none;
  }
}

.main-header .main-header__inner .languages-col {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

@media (max-width: 767px) {
  .main-header .main-header__inner .languages-col {
    display: none;
  }
}

.main-header .main-header__inner .languages-col .header-btn-wrapper {
  margin-left: auto;
}

.main-header .main-header__inner .languages-col .languages-holder {
  margin-left: auto;
}

.main-header .main-header__inner {
  /*        
            .right-part-holder {
                display: flex;
                align-items: center;
            }*/
}

.main-header .main-header__inner .socials-column {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 1177px) {
  .main-header .main-header__inner .socials-column {
    position: absolute;
    left: 0;
    opacity: 0;
    visibility: hidden;
  }

  .main-header .main-header__inner .socials-column .socials-wrapper {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

.main-header .main-header__inner .socials-column.m-visible {
  opacity: 1;
  visibility: visible;
}

.main-header .main-header__inner .socials-column .socials-wrapper {
  position: relative;
}

.main-header .main-header__inner {
  /*        .toggle-shares-wrapper {
                display: flex;

                .toggle-shares {
                    display: inline-block;
                    width: 14px;
                    font-size: 0;
                    text-align: center;

                    @media(min-width: $mobile-min){
                        display: none;
                    }

                    &:before {
                        content: '';
                        display: inline-block;
                        @include sprite_svg('icon-share');
                    }

                    &.opened {
                        &:before {
                            @include sprite_svg('icon-close');
                        }                    
                    }
                }
            }*/
}

.main-header .contact-mobile-phone-wrapper {
  display: -ms-flexbox;
  display: flex;
  margin-left: 30px;
}

/*.language-slider-holder {
    @media( max-width: $mobile-max ){
        display: none;
    }

    display: flex;
    align-items: center;
    flex-grow: 1;
    position: relative;
    //max-width: 200px;
    //flex-wrap: wrap;
    margin-left: 100px;

    .lang-slider-container {
        //display: flex;
        //flex-direction: column;
    }

    .language-slider {
        width: 75px;
        height: 30px;
        overflow: hidden;

        .slick-slide {
            height: 30px;
            overflow: hidden;

            &.slick-active {
                .lang-link {
                    transform: translateY(0);
                }
            }

            .lang-link {
                transform: translateY(100%);
            }

            .lang-link {
                transform: translateY(100%);
            }

            &.text-from-down {
                .lang-link {
                    transform: translateY(0);
                }

                &.text-to-up {

                    .lang-link {
                        transform: translateY(-100%);
                    }
                }
            }
        }
    }

    .text {
        flex-shrink: 0;
        color: #4c4c4c;
        font-family: "Sancoale Softened Medium";
        font-size: 15px;
        margin-right: 5px;

        .icon-chat {
            display: inline-block;
            margin-right: 14px;
            vertical-align: middle;
            @include sprite_svg('icon-chat');
        }
    }

    .lang-link {
        display: inline-block;
        color: #000;
        font-family: "Sancoale Softened Regular";
        font-size: 17px;
        text-decoration: none;
        transition: all .4s ease-in-out;

        &:hover,
        &:focus {
            color: $primary-color;
            text-decoration: none;
        }
    }

    .lang-submenu-toggle {
        display: inline-block;
        position: relative;
        width: 10px;
        height: 10px;
        margin-right: 10px;

        &:after {
            content: '';
            display: inline-block;
            position: absolute;
            top: 50%;
            right: 0;
            left: 0;
            transform: translateY(-50%);
            transition: all .3s ease-in-out;
            @include sprite_svg('icon-arrow-down');
        }

        &.active {
            &:after {
                transform: translateY(-50%) rotate(180deg);
            }
        }
    }

    .lang-submenu {
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 600;
        width: 100%;
        background-color: #f9f9f9;
        border-top: 2px solid $primary-color;
        margin-top: 14px;
        padding: 10px 18px;
        visibility: hidden;
        opacity: 0;
        //transform: translateY(14px);
        transition: opacity .3s ease-in-out, visibility .3s ease-in-out;

        &.active {
            opacity: 1;
            visibility: visible;
        }

        .menu-item {
            display: block;
            padding: 0;
            margin: 0 0 7px;
            text-align: left;

            &:last-child {
                margin-bottom: 0;
            }
            &:after {
                display: none;
            }

            a {
                display: block;                    
                color: #000;
                font-family: "Sancoale Softened Regular";
                font-size: 15px;
                line-height: 1;
                text-decoration: none;                    

                &:hover {
                    color: $primary-color;
                    font-family: "Sancoale Softened Medium";
                }
            }
        }
    }
}*/

.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;
  margin-left: 25px;
}

.ham-icon {
  position: relative;
  width: 25px;
  height: 18px;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  cursor: pointer;
}

.ham-icon span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
  opacity: 1;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  transition: 0.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: 8px;
  width: 80%;
}

.ham-icon span:nth-child(4) {
  top: 15px;
}

.ham-icon.open span {
  left: 0;
  background-color: #000;
}

.ham-icon.open span:nth-child(1) {
  top: 8px;
  left: 50%;
  width: 0;
}

.ham-icon.open span:nth-child(2) {
  top: 8px;
  width: 100%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.ham-icon.open span:nth-child(3) {
  top: 8px;
  width: 100%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.ham-icon.open span:nth-child(4) {
  top: 8px;
  left: 50%;
  width: 0;
}

.languages-holder {
  position: relative;
  width: 106px;
  height: 50px;
  z-index: 601;
}

.languages-holder .languages-switcher {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(#191238, #191238) padding-box, linear-gradient(to right, #792182 0%, #e60f76 100%) border-box;
  border-radius: 25px;
  border: 2px solid transparent;
  line-height: 1;
  padding: 14px 15px;
}

.languages-holder .languages-switcher .label {
  display: inline-block;
  position: relative;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  font-family: "Noto Sans";
  font-weight: 700;
  line-height: 1;
  padding-left: 30px;
  padding-right: 22px;
  text-transform: uppercase;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.languages-holder .languages-switcher .label:before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-globe.svg);
}

.languages-holder .languages-switcher .label:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 4px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}

.languages-holder .languages-switcher.active .label:after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transform-origin: 50% 25%;
  transform-origin: 50% 25%;
}

.languages-holder .languages-list-wrapper {
  display: none;
  position: relative;
  top: 100%;
  padding-left: 30px;
  z-index: 1;
}

.languages-holder .languages-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  align-items: flex-start;
}

.languages-holder .languages-list .link-row {
  padding-top: 13px;
}

.languages-holder .languages-list .lang-link {
  display: block;
  color: #8c889b;
  font-size: 18px;
  font-family: "Noto Sans";
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.languages-holder .languages-list .lang-link:hover {
  text-decoration: none;
}

body .gform_wrapper {
  margin: 0;
}

body .gform_wrapper .gfield_required {
  color: #ff0082;
  margin-right: 0;
}

body .gform_wrapper input.large,
body .gform_wrapper input.medium,
body .gform_wrapper input.small,
body .gform_wrapper select.large,
body .gform_wrapper select.medium,
body .gform_wrapper select.small,
body .gform_wrapper textarea.large,
body .gform_wrapper textarea.medium,
body .gform_wrapper textarea.small {
  background-color: #F8F7FB;
  border: 1px solid #D5D5DE;
  border-radius: 0;
  box-shadow: none;
  color: #000;
  font-size: 15px;
  font-weight: 400;
  outline: none;
}

body .gform_wrapper input:focus,
body .gform_wrapper select:focus,
body .gform_wrapper textarea:focus {
  border-color: #4B4C6A;
}

body .gform_wrapper select {
  background-image: url(../../resources/images/svg/icon-arrow-down.svg);
  background-position: calc(100% - 28px) 50%;
  background-repeat: no-repeat;
  background-size: 11px 6px;
  padding: 13px 21px !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

body .gform_wrapper select::-ms-expand {
  display: none;
}

body .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]) {
  padding: 15px 23px !important;
}

body .gform_wrapper .top_label div.ginput_container {
  margin-top: 0 !important;
}

body .gform_wrapper .top_label .gfield_label {
  color: #141414;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.46;
  margin-bottom: 11px;
}

body .gform_wrapper ul li.gfield {
  margin-top: 0 !important;
  margin-bottom: 28px;
}

body .gform_wrapper .gform_footer {
  margin-top: 0;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

body .gform_wrapper .newsletter-form {
  max-width: 100%;
}

body .gform_wrapper .newsletter-form .gform_ajax_spinner {
  position: absolute;
}

body .gform_wrapper .newsletter-form.gf_simple_horizontal {
  width: 100%;
  margin: 0 auto auto;
}

body .gform_wrapper .newsletter-form.gf_simple_horizontal div.gform_body,
body .gform_wrapper .newsletter-form.gf_simple_horizontal div.gform_footer.top_label {
  display: table-cell;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  position: relative;
}

@media (max-width: 767px) {
  body .gform_wrapper .newsletter-form.gf_simple_horizontal div.gform_body,
  body .gform_wrapper .newsletter-form.gf_simple_horizontal div.gform_footer.top_label {
    display: block;
  }
}

body .gform_wrapper .newsletter-form.gf_simple_horizontal div.gform_body {
  width: 100%;
  max-width: 75%;
  padding-right: 40px;
}

body .gform_wrapper .newsletter-form.gf_simple_horizontal div.gform_body input[type=text] {
  min-height: 50px;
}

@media (max-width: 767px) {
  body .gform_wrapper .newsletter-form.gf_simple_horizontal div.gform_body {
    max-width: 100%;
    padding-right: 0;
  }
}

body .gform_wrapper .newsletter-form.gf_simple_horizontal div.ginput_container,
body .gform_wrapper .newsletter-form.gf_simple_horizontal ul li.gfield {
  margin-top: 0 !important;
}

body .gform_wrapper .newsletter-form.gf_simple_horizontal div.gform_footer.top_label {
  width: auto;
  max-width: 25%;
  padding: 0;
  margin: 0;
}

body .gform_wrapper .newsletter-form.gf_simple_horizontal div.gform_footer.top_label .gform_button {
  min-width: 207px;
}

@media (max-width: 767px) {
  body .gform_wrapper .newsletter-form.gf_simple_horizontal div.gform_footer.top_label {
    max-width: 100%;
  }

  body .gform_wrapper .newsletter-form.gf_simple_horizontal div.gform_footer.top_label .gform_button {
    width: 100%;
  }
}

body .gform_wrapper .newsletter-form.gf_simple_horizontal div.gform_footer.top_label {
  text-align: left;
}

body .gform_wrapper .newsletter-form.gf_simple_horizontal div.gform_body ul.top_label {
  display: table;
  width: 100%;
}

body .gform_wrapper .newsletter-form.gf_simple_horizontal div.gform_body ul.top_label li.gfield {
  display: table-cell;
  padding-right: 1em;
  height: auto;
}

body .gform_wrapper .newsletter-form.gf_simple_horizontal .gfield_description:not(.validation_message),
body .gform_wrapper .newsletter-form.gf_simple_horizontal .ginput_complex label,
body .gform_wrapper .newsletter-form.gf_simple_horizontal label.gfield_label {
  display: block;
  height: 1px;
  width: 1px;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: -9000px;
}

body .gform_wrapper .newsletter-form.gf_simple_horizontal div.gform_body ul.top_label.form_sublabel_above li.gfield,
body .gform_wrapper .newsletter-form.gf_simple_horizontal div.gform_body ul.top_label.form_sublabel_below li.gfield {
  vertical-align: middle;
}

body .gform_wrapper .newsletter-form.gf_simple_horizontal div.gform_body ul.top_label li.gfield input.large,
body .gform_wrapper .newsletter-form.gf_simple_horizontal div.gform_body ul.top_label li.gfield input.medium,
body .gform_wrapper .newsletter-form.gf_simple_horizontal div.gform_body ul.top_label li.gfield input.small,
body .gform_wrapper .newsletter-form.gf_simple_horizontal div.gform_body ul.top_label li.gfield select.large,
body .gform_wrapper .newsletter-form.gf_simple_horizontal div.gform_body ul.top_label li.gfield select.medium,
body .gform_wrapper .newsletter-form.gf_simple_horizontal div.gform_body ul.top_label li.gfield select.small {
  width: 100%;
}

body .gform_wrapper .newsletter-form.gf_simple_horizontal div.gform_footer.top_label input[type=submit],
body .gform_wrapper .newsletter-form.gf_simple_horizontal div.gform_footer.top_label input[type=button],
body .gform_wrapper .newsletter-form.gf_simple_horizontal div.gform_footer.top_label input[type=image] {
  height: auto;
}

body .gform_wrapper .newsletter-form.gf_simple_horizontal .top_label .gfield_error {
  margin-bottom: 0;
}

body .gform_wrapper .newsletter-form.gf_simple_horizontal ul li.gfield .ginput_container_checkbox ul li,
body .gform_wrapper .newsletter-form.gf_simple_horizontal ul li.gfield .ginput_container_radio ul li {
  display: inline-block;
  margin-right: 0.5em;
}

body .gform_wrapper .newsletter-form.gf_simple_horizontal div.ginput_complex.ginput_container.gf_name_has_2 span {
  width: 48.5%;
}

body .gform_wrapper .newsletter-form.gf_simple_horizontal div.ginput_complex.ginput_container.gf_name_has_3 span {
  width: 33%;
}

body .gform_wrapper .newsletter-form.gf_simple_horizontal div.ginput_complex.ginput_container.gf_name_has_4 span {
  width: 24.5%;
}

body .gform_wrapper .newsletter-form.gf_simple_horizontal div.ginput_complex.ginput_container.gf_name_has_5 span {
  width: 19.5%;
}

body .gform_wrapper .newsletter-form.gf_simple_horizontal div.gform_body ul.top_label li.gfield {
  padding-right: 0;
}

body .gform_wrapper .newsletter-form.gf_simple_horizontal input.large,
body .gform_wrapper .newsletter-form.gf_simple_horizontal input.medium,
body .gform_wrapper .newsletter-form.gf_simple_horizontal input.small {
  border: none;
}

body .gform_wrapper .newsletter-form.gf_simple_horizontal input::-webkit-input-placeholder {
  color: #141414;
  font-size: 16px;
  font-weight: 300;
}

body .gform_wrapper .newsletter-form.gf_simple_horizontal input:-moz-placeholder {
  color: #141414;
  font-size: 16px;
  font-weight: 300;
}

body .gform_wrapper .newsletter-form.gf_simple_horizontal input::-moz-placeholder {
  color: #141414;
  font-size: 16px;
  font-weight: 300;
}

body .gform_wrapper .newsletter-form.gf_simple_horizontal input:-ms-input-placeholder {
  color: #141414;
  font-size: 16px;
  font-weight: 300;
}

body .gform_wrapper .newsletter-form.gf_simple_horizontal input:not([type=radio]):not([type=checkbox]):not([type=image]):not([type=file]) {
  line-height: 1;
}

body .gform_wrapper .newsletter-form.gf_simple_horizontal input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
  padding: 15px 21px;
}

body .gform_wrapper .newsletter-form.gf_simple_horizontal li.gfield.gfield_error,
body .gform_wrapper .newsletter-form.gf_simple_horizontal .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
  padding-top: 0;
}

body .gform_wrapper .newsletter-form.gf_simple_horizontal li.gfield_error input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
body .gform_wrapper .newsletter-form.gf_simple_horizontal li.gfield_error textarea {
  border: none;
}

body .gform_wrapper .gfield_checkbox li input[type=checkbox] {
  display: none;
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

body .gform_wrapper .gfield_checkbox li input[type=checkbox]:checked + label {
  font-weight: 300 !important;
}

body .gform_wrapper .gfield_checkbox li input[type=checkbox]:checked + label .style-checkbox {
  background-color: #ff0082;
  border: 1px solid #ff0082;
}

body .gform_wrapper .gfield_checkbox li label {
  position: relative;
  padding-left: 40px;
  font-size: 14px;
  font-weight: 300;
}

body .gform_wrapper .gfield_checkbox li label .style-checkbox {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 2px;
  border: 1px solid #bebebe;
  background-color: #fff;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

body .gform_wrapper .gfield_checkbox li label .style-checkbox:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

body .gform_wrapper .gfield_radio li input[type=radio] {
  display: none;
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

body .gform_wrapper .gfield_radio li input[type=radio]:checked + label {
  font-weight: 300 !important;
}

body .gform_wrapper .gfield_radio li input[type=radio]:checked + label .style-checkbox {
  background-color: #ff0082;
  border: 1px solid #ff0082;
}

body .gform_wrapper .gfield_radio li input[type=radio]:checked + label .style-checkbox:after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #fff;
}

body .gform_wrapper .gfield_radio li label {
  position: relative;
  padding-left: 40px;
  font-size: 14px;
  font-weight: 300;
}

body .gform_wrapper .gfield_radio li label .style-checkbox {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #bebebe;
  background-color: #fff;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

body .gform_wrapper .vacancy-form input[type=text],
body .gform_wrapper .vacancy-form input[type=file] {
  width: 100% !important;
}

body .gform_wrapper .vacancy-form .intl-tel-input input[type=text] {
  min-height: 51px;
}

body .gform_wrapper .vacancy-form .intl-tel-input .flag-dropdown .selected-flag {
  padding: 17px 16px 17px 6px;
}

body .gform_wrapper .vacancy-form .intl-tel-input .flag-dropdown .country-list {
  top: 52px;
}

body .gform_wrapper .vacancy-form .intl-tel-input input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]) {
  padding-left: 50px !important;
}

body .gform_wrapper ul.gform_fields li.gfield {
  line-height: 1;
  padding-right: 0;
}

body .gform_wrapper .top_label input.medium,
body .gform_wrapper .top_label select.medium {
  width: 50%;
}

body .gform_wrapper li.gfield.gfield_error,
body .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
  background-color: transparent !important;
  border: none;
}

body .gform_wrapper.gform_validation_error .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half) {
  max-width: 100% !important;
}

body .gform_wrapper li.gfield_error input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
body .gform_wrapper li.gfield_error textarea {
  border-color: #d16915;
}

.gf_simple_horizontal_wrapper.gf_browser_chrome ul.gform_fields li.gfield span.name_first,
.gf_simple_horizontal_wrapper.gf_browser_chrome ul.gform_fields li.gfield span.name_middle,
.gf_simple_horizontal_wrapper.gf_browser_chrome ul.gform_fields li.gfield span.name_last {
  padding-top: 0 !important;
}

.gf_simple_horizontal_wrapper .field_sublabel_hidden_label .ginput_complex.ginput_container input[type=text],
.gf_simple_horizontal_wrapper .field_sublabel_hidden_label .ginput_complex.ginput_container select {
  margin-bottom: 0 !important;
}

.gf_simple_horizontal_wrapper li.hidden_label input {
  margin-top: 0 !important;
}

body .gf_simple_horizontal_wrapper .top_label div.ginput_container {
  margin-top: 0 !important;
}

.gf_simple_horizontal div.gform_footer.top_label {
  width: auto !important;
  vertical-align: top !important;
}

.gf_simple_horizontal div.gform_footer.top_label input[type=submit] {
  line-height: 26px;
  font-size: 13px;
  padding: 0 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Custom select element */

.custom-select {
  position: relative;
}

.custom-select select {
  display: none;
  opacity: 0;
  visibility: hidden;
}

.custom-select .select-selected {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  border: none;
  padding: 17px 38px 17px 24px;
}

.custom-select .select-selected:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 22px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.custom-select .select-selected.active {
  display: block;
}

.custom-select .select-selected.active:after {
  -webkit-transform: rotate(180deg) translateY(-50%);
  transform: rotate(180deg) translateY(-50%);
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
}

.custom-select .select-items .option,
.custom-select .select-selected {
  background-color: #f9f9f9;
  cursor: pointer;
  font-size: 15px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.custom-select .select-selected {
  min-height: 49px;
}

.custom-select .select-items {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

.custom-select .select-items.active {
  display: block;
}

.custom-select .select-items .option {
  border-top: 1px solid #f1f1f1;
  padding: 17px 24px;
}

.custom-select .select-items .option:hover {
  background-color: #f1f1f1;
}

.custom-select .select-items .option label {
  display: block;
  position: relative;
  margin-bottom: 0;
  padding-left: 40px;
}

.custom-select .select-items .option label input[type=checkbox] {
  display: none;
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

.custom-select .select-items .option label input[type=checkbox]:checked + .style-checkbox {
  background-color: #ff0082;
  border: 1px solid #ff0082;
}

.custom-select .select-items .option label .style-checkbox {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 2px;
  border: 1px solid #f1f1f1;
  background-color: #fff;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.custom-select .select-items .option label .style-checkbox:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.custom-select.multiple-select .option[data-value="0"] {
  display: none;
}

.password-form-title {
  font-weight: 500;
  margin-bottom: 25px;
}

.post-password-form {
  margin-bottom: 50px;
}

.post-password-form .password-info {
  margin-bottom: 50px;
}

.post-password-form label {
  display: block;
  font-size: 20px;
  font-weight: 500;
}

.post-password-form .post_password {
  display: block;
  width: 450px;
  max-width: 100%;
  background-color: #f9f9f9;
  border: none;
  font-size: 15px;
  line-height: 1;
  margin: 20px 0 25px;
  padding: 15px 25px;
}

.main-footer {
  position: relative;
  z-index: 10;
  background-color: #414141;
  padding: 80px 0 50px;
}

.main-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: linear-gradient(90deg, #780096 0%, #FF0082 100%);
}

@media (max-width: 991px) {
  .main-footer {
    padding: 45px 0 29px;
  }
}

.main-footer .footer-top-holder {
  margin-bottom: 50px;
}

.main-footer .footer-top-holder .logo {
  max-width: 50px;
  margin-bottom: 30px;
}

.main-footer .footer-top-holder .border-footer {
  height: 4px;
  background: linear-gradient(90deg, #7C2182 0%, #E11077 94.05%);
  border-radius: 5px;
  margin-top: 30px;
}

.main-footer .footer-content-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 38px;
  margin-bottom: 30px;
}

@media (min-width: 540px) {
  .main-footer .footer-content-columns {
    grid-template-columns: 1fr 1fr;
  }
}

.main-footer .footer-content-columns .footer-content-column .title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  color: #E2DFE8;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 17px;
}

.main-footer .footer-content-columns .footer-content-column .title .icon-wrapper {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-right: 9px;
}

.main-footer .footer-content-columns .footer-content-column .content-wrapper {
  color: #ffffff;
  font-size: 15px;
  font-weight: 300;
  line-height: 2;
}

.main-footer .footer-content-columns .footer-content-column .content-wrapper p {
  font-size: inherit;
  line-height: inherit;
}

.main-footer .footer-content-columns .footer-content-column .content-wrapper a {
  display: inline-block;
  color: #ffffff;
  font-size: inherit;
  text-decoration: none;
}

.main-footer .footer-content-columns .footer-content-column .content-wrapper a:before {
  width: 5px;
  height: 7px;
  background-size: 5px 7px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-footer-link-hover.svg);
  content: "";
  display: inline-block;
  position: absolute;
  top: 11px;
  left: -15px;
  opacity: 0;
  visibility: hidden;
}

.main-footer .footer-content-columns .footer-content-column .content-wrapper a:hover {
  color: #FF0082;
  -webkit-transform: translateX(15px);
  transform: translateX(15px);
}

.main-footer .footer-content-columns .footer-content-column .content-wrapper a:hover:before {
  opacity: 1;
  visibility: visible;
}

.main-footer {
  /*    .footer-shape {
            position: absolute;
            bottom: 100%;
            left: 0;
            width: 100%;
            height: 150px;
            background-color: #f1f1f1;

            &:before {
                content: '';
                position: absolute;
                left: 0;
                bottom: 100%;
                width: 100%;            
                background-image: url(../../resources/images/shapes/swirlshape-header-gray-2.svg);
                background-repeat: no-repeat;
                background-size: 100%;
                background-position: top;
                padding-top: 8.69%;
                transform: scaleX(-1) translateY(1px);
            }

            &.inverse {
                &:before {
                    transform: scaleX(1);
                }
            }
        }*/
}

.main-footer .footer-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1178px;
  margin: 0 auto;
}

.main-footer .footer-row .column {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 19px;
}

.main-footer .footer-row .column.logo-column {
  color: #ffffff;
  -ms-flex-pack: center;
  justify-content: center;
}

.main-footer .footer-row .column.logo-column img {
  max-width: 215px;
  width: 100%;
}

.main-footer .footer-row .column.menu-column {
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.main-footer .footer-row .column.socials-column {
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 991px) {
  .main-footer .footer-row .column.logo-column {
    -ms-flex-order: 1;
    order: 1;
    margin-bottom: 25px;
  }

  .main-footer .footer-row .column.socials-column {
    -ms-flex-order: 2;
    order: 2;
    margin-bottom: 25px;
  }

  .main-footer .footer-row .column.socials-column .socials-wrapper .social {
    margin: 0 20px;
  }

  .main-footer .footer-row .column.menu-column {
    -ms-flex-order: 3;
    order: 3;
  }
}

.home-header-section {
  position: relative;
  margin-bottom: 67px;
}

.home-header-section .section-inner {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 140px;
  padding-bottom: 8.4375%;
  overflow: hidden;
}

.home-header-section .section-inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(270deg, rgba(255, 0, 130, 0.9) 0%, rgba(120, 0, 150, 0.9) 100%);
  opacity: 0.85;
}

.home-header-section .section-inner:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  bottom: -2px;
  z-index: 4;
  width: 100%;
  height: 100%;
  background-image: url(../../resources/images/shapes/swirlshape-home-hero.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: bottom;
}

.home-header-section .section-inner .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}

.home-header-section .section-inner .content-inner {
  position: relative;
  z-index: 5;
  height: 100%;
  text-align: center;
}

.home-header-section .section-inner .subtitle {
  color: #fff;
  font-family: "Noto Sans";
  font-size: 15px;
  font-weight: 300;
  line-height: 25px;
}

.home-header-section .section-inner .title {
  color: #fff;
  font-size: 60px;
}

.home-header-section .section-inner .btn-wrapper {
  padding-top: 23px;
  margin-bottom: 80px;
}

.home-header-section .section-inner .icon-arrow-down-long {
  display: inline-block;
  -webkit-animation: bounce 1s infinite alternate;
  animation: bounce 1s infinite alternate;
}

@media (max-width: 767px) {
  .home-header-section .section-inner {
    padding-top: 50px;
  }

  .home-header-section .section-inner .title {
    font-size: 30px;
  }

  .home-header-section .section-inner .btn-wrapper {
    margin-bottom: 44px;
  }

  .home-header-section .section-inner .icon-arrow-down-long {
    display: none;
  }
}

@keyframes bounce {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
  }
}

.usp-section {
  margin-bottom: 100px;
}

@media (max-width: 767px) {
  .usp-section {
    margin-bottom: 30px;
  }
}

.usp-section .section-title {
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .usp-section .section-title {
    font-size: 25px;
    text-align: center;
  }
}

.usp-section .usp-col {
  margin-bottom: 25px;
}

.usp-block.align-inner-content-left .icon-wrapper {
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.usp-block.align-inner-content-left .title,
.usp-block.align-inner-content-left .description {
  text-align: left;
}

.usp-block .icon-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 65px;
  margin-bottom: 15px;
}

.usp-block .title {
  font-weight: 500;
  margin-bottom: 15px;
  text-align: center;
}

.usp-block .description {
  text-align: center;
}

.department-section {
  margin-bottom: 85px;
}

@media (max-width: 991px) {
  .department-section {
    margin-bottom: 20px;
  }
}

.department-section .content-col {
  margin-bottom: 75px;
}

@media (max-width: 991px) {
  .department-section .content-col {
    margin-bottom: 30px;
  }
}

.department-section .content-col .btn-wrapper {
  margin-top: 15px;
}

@media (max-width: 991px) {
  .department-section .subtitle {
    text-align: center;
  }
}

.department-section .section-title {
  margin-bottom: 25px;
}

@media (max-width: 991px) {
  .department-section .section-title {
    font-size: 25px;
    text-align: center;
  }
}

.department-section {
  /*    .title-w-btn {
            display: flex;
            align-items: center;
            //flex-wrap: wrap;        

            @media( max-width: 767px ){
                flex-direction: column;
            }

            .section-title {
                flex-grow: 1;
                margin-right: 20px;
                margin-bottom: 25px;

                @media( max-width: 767px ){
                    font-size: 25px;
                }
            }

            .btn-wrapper {
                flex-shrink: 0;
                margin-bottom: 25px;
            }
        }*/
}

.department-section .blocks-part {
  position: relative;
}

.department-section .blocks-part:before {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../../resources/images/shapes/wave-department.png);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100%;
}

@media (max-width: 991px) {
  .department-section .blocks-part:before {
    display: none;
  }
}

.department-section .department-col {
  margin-bottom: 38px;
}

@media (max-width: 991px) {
  .department-section .department-col {
    margin-bottom: 30px;
  }
}

.department-block {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  height: 370px;
  border-radius: 5px;
  padding: 30px;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}

.department-block.no-image {
  background-color: #191238;
}

@media (max-width: 991px) {
  .department-block {
    height: 270px;
    padding: 25px;
  }
}

.department-block:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, rgba(135, 51, 142, 0) 0%, rgba(24, 23, 65, 0.5) 100%);
}

.department-block .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 0.7s ease-in-out;
}

.department-block .block-inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: end;
  justify-content: flex-end;
  position: relative;
  width: 100%;
  z-index: 3;
}

.department-block .subtitle {
  color: #fff;
  font-size: 13px;
}

.department-block .title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: 100%;
  z-index: 4;
  color: #fff;
  font-size: 25px;
  font-weight: 500;
  padding-right: 20px;
}

@media (max-width: 991px) {
  .department-block .title {
    font-size: 20px;
  }
}

.department-block .title:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/arrow-up-right.svg);
  transition: all 0.3s ease-in-out;
}

.department-block .block-link {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
}

.department-block:hover .image-wrapper {
  -webkit-transform: scale(1.075);
  transform: scale(1.075);
}

.department-block:hover .title:after {
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.featured-vacancies-section.has-bottom-margin {
  margin-bottom: 55px;
}

.featured-vacancies-section .overview-btn-container {
  background-color: #f1f1f1;
  padding-bottom: 75px;
}

@media (max-width: 767px) {
  .featured-vacancies-section .overview-btn-container {
    padding-bottom: 50px;
  }
}

.featured-vacancies-section .vacancy-col {
  margin-bottom: 15px;
}

.tabs-container .tabs-switcher-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: auto;
}

.tabs-container .tabs-switcher-row .tab-title {
  position: relative;
  color: #b2b2b2;
  font-size: 20px;
  font-weight: 500;
  margin: 0 23px;
  padding: 0 5px 35px;
  cursor: pointer;
}

@media (max-width: 991px) {
  .tabs-container .tabs-switcher-row .tab-title {
    line-height: 1;
    margin: 0 18px;
  }
}

.tabs-container .tabs-switcher-row .tab-title:first-child {
  margin-left: 0;
}

.tabs-container .tabs-switcher-row .tab-title:last-child {
  margin-right: 0;
}

.tabs-container .tabs-switcher-row .tab-title span {
  display: inline-block;
  font-family: inherit;
  font-weight: inherit;
  white-space: nowrap;
}

.tabs-container .tabs-switcher-row .tab-title.active {
  color: #000;
}

.tabs-container .tabs-switcher-row .tab-title.active:after {
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  position: absolute;
  height: 4px;
  background-image: linear-gradient(270deg, #ff0082 0%, #780096 100%);
}

@media (max-width: 767px) {
  .tabs-container .tabs-switcher-row {
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.tabs-container .tabs-content-container {
  background-color: #E2DFE8;
  padding: 75px 0 60px;
}

@media (max-width: 767px) {
  .tabs-container .tabs-content-container {
    padding: 50px 0 35px;
  }
}

.tabs-container .tabs-content-container .tab-content {
  height: 0;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
}

.tabs-container .tabs-content-container .tab-content.active {
  height: auto;
  opacity: 1;
  overflow: initial;
  visibility: visible;
}

.vacancies-slider-container .tab-inner-title {
  margin-bottom: 50px;
}

@media (max-width: 991px) {
  .vacancies-slider-container .tab-inner-title {
    font-size: 25px;
    margin-bottom: 27px;
  }
}

.vacancies-slider-container {
  /*    .slider-controls {
            display: flex;
            align-items: center;
            justify-content: space-between;

            .tab-inner-title {
                margin-bottom: 25px;

                @media( max-width: 767px ){
                    font-size: 25px;
                }
            }

            .nav-arrows {
                flex-shrink: 0;
                margin-bottom: 25px;

                .slick-arrow {
                    background-color: transparent;
                    border: none;
                    padding: 0;
                    margin: 0 10px;
                    outline: none;
                    &:before {
                        content: '';
                        display: inline-block;
                    }
                    &:first-child {
                        margin-left: 0;
                    }
                    &:last-child {
                        margin-right: 0;
                    }
                    &.slick-disabled {
                        opacity: 0.3;
                    }
                    &.slick-prev {
                        &:before {
                            @include sprite_svg('icon-slider-arrow-left-black');
                        }
                    }
                    &.slick-next {
                        &:before {
                            @include sprite_svg('icon-slider-arrow-right-black');
                        }
                    }
                }
            }
        }*/
}

.vacancies-slider-container .slider-controls-line {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: 50px;
  margin-bottom: 100px;
  padding-right: 19px;
}

@media (max-width: 991px) {
  .vacancies-slider-container .slider-controls-line {
    margin-bottom: 50px;
  }
}

.vacancies-slider-container .slider-controls-line .slides-counter {
  color: #002906;
  font-size: 17px;
  font-weight: 600;
  margin-right: 30px;
}

@media (max-width: 767px) {
  .vacancies-slider-container .slider-controls-line .slides-counter {
    display: none;
  }
}

.vacancies-slider-container .slider-controls-line .progress-holder {
  -ms-flex-positive: 1;
  flex-grow: 1;
  position: relative;
  height: 5px;
  background-color: #fff;
}

.vacancies-slider-container .slider-controls-line .progress-holder .line {
  position: absolute;
  left: 0;
  top: 0;
  width: 30%;
  background-image: linear-gradient(to right, #792182 0%, #e60f76 100%);
  height: 4px;
  transition: all 0.3s ease-in-out;
}

.vacancies-slider-container .slider-nav-holder {
  display: -ms-flexbox;
  display: flex;
  margin-left: 25px;
}

.vacancies-slider-container .slick-arrow {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  background-color: #191238;
  border: none;
  border-radius: 50%;
  margin: 0;
  padding: 0;
  outline: none;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.vacancies-slider-container .slick-arrow.slick-prev,
.vacancies-slider-container .slick-arrow.slick-next {
  width: 50px;
  height: 50px;
}

.vacancies-slider-container .slick-arrow.slick-prev:before,
.vacancies-slider-container .slick-arrow.slick-next:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, #792182 0%, #e60f76 100%);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.vacancies-slider-container .slick-arrow.slick-prev:after,
.vacancies-slider-container .slick-arrow.slick-next:after {
  content: "";
  position: relative;
  z-index: 1;
  margin: auto;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 991px) {
  .vacancies-slider-container .slick-arrow.slick-prev,
  .vacancies-slider-container .slick-arrow.slick-next {
    width: 40px;
    height: 40px;
  }
}

.vacancies-slider-container .slick-arrow.slick-prev {
  margin-right: 5px;
}

.vacancies-slider-container .slick-arrow.slick-prev:after {
  width: 14px;
  height: 14px;
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/arrow-up-right.svg);
  -webkit-transform: scale(-1) rotate(90deg);
  transform: scale(-1) rotate(90deg);
}

@media (max-width: 991px) {
  .vacancies-slider-container .slick-arrow.slick-prev:after {
    width: 12px;
    height: 12px;
    background-size: 12px 12px;
  }
}

.vacancies-slider-container .slick-arrow.slick-next {
  margin-left: 5px;
}

.vacancies-slider-container .slick-arrow.slick-next:after {
  width: 14px;
  height: 14px;
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/arrow-up-right.svg);
}

@media (max-width: 991px) {
  .vacancies-slider-container .slick-arrow.slick-next:after {
    width: 12px;
    height: 12px;
    background-size: 12px 12px;
  }
}

.vacancies-slider-container .slick-arrow:hover:before {
  opacity: 1;
}

.vacancies-slider-container .slick-arrow:hover.slick-prev:after {
  -webkit-transform: scale(-1) rotate(45deg);
  transform: scale(-1) rotate(45deg);
}

.vacancies-slider-container .slick-arrow:hover.slick-next:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.vacancies-slider-holder {
  margin: 0 -19px;
}

@media (max-width: 767px) {
  .vacancies-slider-holder {
    padding: 0 19px;
  }
}

.vacancies-slider-holder .vacancies-slider .slick-list .slick-track {
  display: -ms-flexbox;
  display: flex;
}

.vacancies-slider-holder .vacancies-slider .slick-list .slick-track .slick-slide {
  height: inherit;
  padding: 0 19px;
  margin-bottom: 50px;
  outline: none !important;
}

@media (max-width: 991px) {
  .vacancies-slider-holder .vacancies-slider .slick-list .slick-track .slick-slide {
    margin-bottom: 25px;
  }
}

@media (max-width: 767px) {
  .vacancies-slider-holder .vacancies-slider .slick-list {
    padding-right: 19px;
  }

  .vacancies-slider-holder .vacancies-slider .slick-list .slick-track .slick-slide {
    padding: 0 4px;
  }
}

.custom-filter-select {
  position: relative;
  background-color: #f9f9f9;
  color: #4c4c4c;
  font-family: "Noto Sans";
  font-size: 17px;
  cursor: pointer;
}

@media (max-width: 767px) {
  .custom-filter-select {
    font-size: 12px;
  }
}

.custom-filter-select select {
  display: none;
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

.custom-filter-select:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 30px;
  z-index: 1;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 767px) {
  .custom-filter-select:after {
    right: 20px;
  }
}

.custom-filter-select.opened:after {
  -webkit-transform: rotate(180deg) translateY(-50%);
  transform: rotate(180deg) translateY(-50%);
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
}

.custom-filter-select .selected-wrap {
  position: relative;
  z-index: 2;
  padding: 13px 50px 13px 25px;
}

@media (max-width: 767px) {
  .custom-filter-select .selected-wrap {
    padding-left: 15px !important;
    padding-right: 40px !important;
  }
}

.custom-filter-select .selected-wrap .selected-option {
  overflow: hidden;
  white-space: nowrap;
}

.custom-filter-select .selected-wrap .selected-option span {
  display: inline-block;
}

.custom-filter-select .options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10;
  width: 100%;
  background-color: #f9f9f9;
}

.custom-filter-select .options .option {
  display: block;
  border-top: 1px solid #f1f1f1;
  color: #4c4c4c;
  font-size: 14px;
  font-weight: 300;
  padding: 14px 20px;
}

.custom-filter-select .options .option label {
  display: block;
  position: relative;
  margin-bottom: 0;
}

.custom-filter-select .options .option:hover {
  background-color: #f1f1f1;
}

.custom-filter-select.multiselect .option label {
  padding-left: 40px;
}

.custom-filter-select.multiselect .option label input[type=checkbox] {
  display: none;
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

.custom-filter-select.multiselect .option label input[type=checkbox]:checked + .style-checkbox {
  background-color: #ff0082;
  border: 1px solid #ff0082;
}

.custom-filter-select.multiselect .option label .style-checkbox {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 2px;
  border: 1px solid #f1f1f1;
  background-color: #fff;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.custom-filter-select.multiselect .option label .style-checkbox:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.filter-wrapper {
  position: relative;
}

.filter-wrapper.address-search-filter {
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.filter-wrapper.address-search-filter .input-field {
  -ms-flex-positive: 1;
  flex-grow: 1;
  background-color: #f9f9f9;
  border: none;
  border-radius: 0;
  color: #4c4c4c;
  font-size: 17px;
  padding: 10px 25px;
  outline: none;
}

.filter-wrapper.address-search-filter .input-field::-webkit-input-placeholder {
  color: #4c4c4c;
}

.filter-wrapper.address-search-filter .input-field:-moz-placeholder {
  color: #4c4c4c;
}

.filter-wrapper.address-search-filter .input-field::-moz-placeholder {
  color: #4c4c4c;
}

.filter-wrapper.address-search-filter .input-field:-ms-input-placeholder {
  color: #4c4c4c;
}

@media (max-width: 767px) {
  .filter-wrapper.address-search-filter .input-field {
    font-size: 12px;
    padding: 10px 15px;
  }
}

.filter-wrapper.address-search-filter .input-field.address-search-input {
  background-image: url(../../resources/images/svg/icon-location.svg);
  background-repeat: no-repeat;
  background-size: 16px 18px;
  background-position: calc(100% - 30px) 50%;
}

.filter-wrapper.address-search-filter .pac-container {
  top: 100% !important;
  left: 19px !important;
}

.filter-wrapper.address-search-filter .custom-filter-select {
  width: 122px;
  background-color: #f9f9f9;
  border-left: 1px solid #f1f1f1;
}

.filter-wrapper.address-search-filter .custom-filter-select .selected-wrap {
  padding: 13px 50px 13px 13px;
}

.filter-row-wrapper.filter-row-hide-show.hide {
  display: none;
}

.filter-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -19px;
}

.filter-row .filter-wrapper {
  width: 50%;
  margin-bottom: 30px;
  padding: 0 19px;
}

@media (max-width: 991px) {
  .filter-row .filter-wrapper {
    width: 100%;
    margin-bottom: 15px;
  }
}

@-webkit-keyframes wave {
  0% {
    margin-left: 0;
  }

  100% {
    margin-left: -1920px;
  }
}

@keyframes wave {
  0% {
    margin-left: 0;
  }

  100% {
    margin-left: -1920px;
  }
}

.job-search-section {
  position: relative;
  padding-top: 75px;
  padding-bottom: 8.69%;
  margin-bottom: 125px;
}

@media (max-width: 767px) {
  .job-search-section {
    padding-top: 20px;
  }
}

.job-search-section .bg-underlayer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  bottom: 175px;
  z-index: 1;
  background-color: #780096;
  overflow: hidden;
}

.job-search-section .bg-underlayer:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  bottom: -2px;
  z-index: 1;
  width: 6400px;
  height: 167px;
  background-image: url(../../resources/images/shapes/swirlshape-header-white-2.svg);
  background-repeat: repeat-x;
  background-position: bottom;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  -webkit-animation: wave 22s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
  animation: wave 22s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
}

@media (max-width: 767px) {
  .job-search-section .bg-underlayer {
    bottom: 0;
  }
}

.job-search-section .section-inner {
  position: relative;
  z-index: 10;
}

.job-search-section .section-subtitle {
  color: #fff;
}

.job-search-section .section-title {
  color: #fff;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .job-search-section .section-title {
    font-size: 25px;
  }
}

.job-search-section .vacancy-form-redirect {
  margin-bottom: 175px;
}

.job-search-section .vacancy-form-redirect .search-vacancy-btn {
  margin-bottom: 25px;
}

.job-search-section .vacancy-form-redirect .white-link {
  color: #fff;
  font-size: 15px;
  text-decoration: underline;
}

.job-search-section .gallery-slider-container {
  margin-top: -130px;
  margin-bottom: -130px;
}

.job-search-section .slider-controls {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.job-search-section .slider-controls .titles-wrapper {
  margin-bottom: 45px;
}

.job-search-section .slider-controls .titles-wrapper .gallery-subtitle,
.job-search-section .slider-controls .titles-wrapper .gallery-title {
  color: #fff;
}

@media (max-width: 767px) {
  .job-search-section .slider-controls .titles-wrapper .gallery-title {
    font-size: 25px;
  }
}

@media (max-width: 767px) {
  .job-search-section .slider-controls .titles-wrapper {
    padding-right: 19px;
  }
}

.job-search-section .slider-controls .nav-arrows {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-bottom: 45px;
}

.job-search-section .slider-controls .nav-arrows .slick-arrow {
  background-color: transparent;
  border: none;
  padding: 0;
  margin: 0 10px;
  outline: none;
}

.job-search-section .slider-controls .nav-arrows .slick-arrow:before {
  content: "";
  display: inline-block;
}

.job-search-section .slider-controls .nav-arrows .slick-arrow:first-child {
  margin-left: 0;
}

.job-search-section .slider-controls .nav-arrows .slick-arrow:last-child {
  margin-right: 0;
}

.job-search-section .slider-controls .nav-arrows .slick-arrow.slick-disabled {
  opacity: 0.3;
}

.gallery-slider .slick-list {
  padding-right: 45%;
}

@media (max-width: 767px) {
  .gallery-slider .slick-list {
    padding-right: 19px;
  }
}

.gallery-slider .slick-slide {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  height: 270px;
  margin-right: 38px;
}

@media (max-width: 767px) {
  .gallery-slider .slick-slide {
    max-height: 217px;
    margin-right: 4px;
  }
}

.gallery-slider .slick-slide:last-child {
  margin-right: 0;
}

.gallery-slider .slick-slide .image-holder {
  position: relative;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
}

.gallery-slider .slick-slide .image-holder .image-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.gallery-slider .slick-slide .video-wrapper {
  position: relative;
  height: 100%;
}

.gallery-slider .slick-slide .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.gallery-slider .slick-slide.slick-current .image-holder {
  max-height: 420px;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.gallery-slider .play-video {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  right: 0;
  z-index: 5;
  margin: 0 auto;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.vacancy-form .search-vacancy-btn {
  width: 100%;
}

.job-search-section-re {
  background-color: #E2DFE8;
  padding: 100px 0;
  margin-bottom: 125px;
}

@media (max-width: 991px) {
  .job-search-section-re {
    padding: 50px 0;
    margin-bottom: 50px;
  }
}

.job-search-section-re .section-title {
  margin-bottom: 45px;
}

@media (max-width: 767px) {
  .job-search-section-re .section-title {
    font-size: 25px;
    margin-bottom: 35px;
  }
}

.job-search-section-re .buttons-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
}

.job-search-section-re .buttons-wrapper .search-vacancy-btn {
  width: auto;
}

@media (max-width: 991px) {
  .job-search-section-re .filter-row {
    margin-bottom: 7px;
  }
}

@media (max-width: 991px) {
  .job-search-section-re .filter-row .filter-wrapper {
    margin-bottom: 10px;
  }
}

.job-search-section-re .filter-wrapper.address-search-filter .address-search-input {
  background-image: none;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

@media (max-width: 991px) {
  .job-search-section-re .filter-wrapper.address-search-filter .address-search-input {
    font-size: 16px;
  }
}

@media (max-width: 540px) {
  .job-search-section-re .filter-wrapper.address-search-filter .address-search-input {
    background-image: url("../../resources/images/svg/icon-map-pin.svg");
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) 50%;
    background-size: 17px 18px;
    padding-right: 30px;
  }
}

.job-search-section-re .filter-wrapper.address-search-filter .custom-filter-select {
  width: 168px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  text-transform: uppercase;
}

@media (max-width: 540px) {
  .job-search-section-re .filter-wrapper.address-search-filter .custom-filter-select {
    width: auto;
  }
}

.job-search-section-re .filter-wrapper.address-search-filter .custom-filter-select .selected-wrap {
  text-align: right;
}

@media (min-width: 541px) {
  .job-search-section-re .filter-wrapper.address-search-filter .custom-filter-select .selected-wrap {
    padding-left: 50px;
  }
}

.job-search-section-re .filter-wrapper.address-search-filter .custom-filter-select .selected-wrap .selected-option {
  position: relative;
  display: inline-block;
  overflow: visible;
}

@media (min-width: 541px) {
  .job-search-section-re .filter-wrapper.address-search-filter .custom-filter-select .selected-wrap .selected-option:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -32px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 17px;
    height: 18px;
    background-size: 17px 18px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../../resources/images/svg/icon-map-pin.svg);
  }
}

.job-search-section-re .custom-filter-select {
  border-radius: 5px;
  font-size: 18px;
}

@media (max-width: 991px) {
  .job-search-section-re .custom-filter-select {
    font-size: 16px;
  }
}

.text-image-section {
  position: relative;
  margin-bottom: 85px;
  overflow: hidden;
}

.text-image-section.has-bg {
  position: relative;
  margin-bottom: 50px;
  padding-top: 50px;
  padding-bottom: 10px;
  overflow: hidden;
}

.text-image-section.has-bg.lavender-gray {
  background-color: #E2DFE8;
}

.text-image-section.has-bg.lavender-gray .image-col:before {
  background-color: #E2DFE8;
}

.text-image-section.has-bg.light-blue {
  background-color: #F5F6FC;
}

.text-image-section.has-bg.light-blue .image-col:before {
  background-color: #F5F6FC;
}

.text-image-section.has-bg.dark-blue {
  background-color: #191238;
}

.text-image-section.has-bg.dark-blue .image-col:before {
  background-color: #191238;
}

.text-image-section.has-bg.dark-blue .section-title {
  color: #fff;
}

.text-image-section.has-bg.dark-blue .content-wrapper {
  color: #fff;
}

.text-image-section.has-bg.dark-blue .content-wrapper p {
  color: inherit;
}

.text-image-section.has-bg .image-col:before {
  content: "";
  position: absolute;
  top: -100px;
  bottom: -100px;
  z-index: 1;
  width: 100000000%;
  background-color: #fff;
  border-radius: 5px;
}

.text-image-section.has-bg .image-col.image-left:before {
  left: 100px;
}

.text-image-section.has-bg .image-col.image-right:before {
  right: 100px;
}

.text-image-section .video-background {
  position: absolute;
  top: -100px;
  bottom: -100px;
  left: 0;
  width: 100%;
}

.text-image-section .video-background video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 991px) {
  .text-image-section .video-background.hide-mobile {
    display: none;
  }
}

.text-image-section .section-inner {
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .text-image-section {
    margin-bottom: 10px;
  }
}

.text-image-section .content-col {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.text-image-section .content-col .section-title {
  margin-bottom: 28px;
}

@media (max-width: 767px) {
  .text-image-section .content-col .section-title {
    font-size: 25px;
  }
}

@media (max-width: 767px) {
  .text-image-section .content-col {
    -ms-flex-order: 1;
    order: 1;
  }
}

.text-image-section .image-col {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .text-image-section .image-col {
    -ms-flex-order: 2;
    order: 2;
  }
}

.text-image-section .image-col .image-wrapper {
  position: relative;
  z-index: 1;
  padding-top: 40px;
  -webkit-transform: translateZ(-1000px);
  transform: translateZ(-1000px);
}

.text-image-section .image-col .image-wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  z-index: 1;
  width: 608px;
  height: 368px;
  background-image: url(../../resources/images/shapes/image-bg-shape.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: top;
}

@media (max-width: 1258px) {
  .text-image-section .image-col .image-wrapper:before {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .text-image-section .image-col .image-wrapper:before {
    display: none;
  }
}

.text-image-section .image-col .image-wrapper.image-right {
  padding-left: 44px;
}

.text-image-section .image-col .image-wrapper.image-right:before {
  left: 0;
}

@media (max-width: 1258px) {
  .text-image-section .image-col .image-wrapper.image-right:before {
    left: 15px;
  }
}

.text-image-section .image-col .image-wrapper.image-right img {
  -webkit-transform: rotateY(-15deg) translateX(-12px);
  transform: rotateY(-15deg) translateX(-12px);
}

@media (max-width: 767px) {
  .text-image-section .image-col .image-wrapper.image-right {
    padding-left: 0;
  }
}

.text-image-section .image-col .image-wrapper.image-left {
  padding-right: 44px;
}

.text-image-section .image-col .image-wrapper.image-left:before {
  right: 0;
}

@media (max-width: 1258px) {
  .text-image-section .image-col .image-wrapper.image-left:before {
    right: 15px;
  }
}

.text-image-section .image-col .image-wrapper.image-left:before {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.text-image-section .image-col .image-wrapper.image-left img {
  -webkit-transform: rotateY(15deg) translateX(12px);
  transform: rotateY(15deg) translateX(12px);
}

@media (max-width: 767px) {
  .text-image-section .image-col .image-wrapper.image-left {
    padding-top: 0;
    padding-right: 0;
  }
}

.text-image-section .image-col .image-wrapper.no-element {
  padding-top: 0;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.text-image-section .image-col .image-wrapper.no-element:before {
  display: none;
}

.text-image-section .image-col .image-wrapper.no-element img {
  -webkit-transform: rotateY(0) translateX(0);
  transform: rotateY(0) translateX(0);
}

.text-image-section .image-col .image-wrapper img {
  position: relative;
  z-index: 2;
}

.text-image-section .play-fancy {
  position: relative;
}

.text-image-section .play-fancy:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 5;
  margin: 0 auto;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background-size: 45px 45px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-play-new.svg);
}

.default-text-section {
  margin-bottom: 85px;
}

.default-text-section.has-top-padding {
  padding-top: 85px;
}

.default-text-section .section-title {
  margin-bottom: 45px;
}

@media (max-width: 767px) {
  .default-text-section .section-title {
    font-size: 25px;
  }
}

.default-text-section .content-column {
  margin-bottom: 40px;
}

.default-text-section .content-column h1,
.default-text-section .content-column .h1,
.default-text-section .content-column h2,
.default-text-section .content-column .h2,
.default-text-section .content-column h3,
.default-text-section .content-column .h3,
.default-text-section .content-column h4,
.default-text-section .content-column .h4,
.default-text-section .content-column h5,
.default-text-section .content-column .h5,
.default-text-section .content-column h6,
.default-text-section .content-column .h6 {
  margin-bottom: 28px;
}

.default-text-section .content-column ul li:before {
  left: 13px !important;
}

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

.faq-section {
  background-color: #f9f9f9;
  margin-bottom: 85px;
  padding-top: 75px;
  padding-bottom: 75px;
}

@media (max-width: 767px) {
  .faq-section {
    margin-bottom: 55px;
  }
}

.faq-section .section-title {
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .faq-section .section-title {
    font-size: 25px;
  }
}

.faq-section .subtitle {
  color: #4c4c4c;
}

.faq-section .content-wrapper {
  margin-bottom: 40px;
}

.faq-list-simple {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.faq-list-simple .faq-item-simple {
  margin-bottom: 15px;
}

.faq-list-simple .faq-item-simple:last-child {
  margin-bottom: 0;
}

.faq-list-simple .faq-item-simple a {
  position: relative;
  display: block;
  color: #000;
  font-size: 20px;
  line-height: 1;
  padding: 20px 65px 20px 35px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.faq-list-simple .faq-item-simple a:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 35px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.faq-list-simple .faq-item-simple a:hover {
  background-color: #fff;
  font-weight: 500;
}

.video-reference-section {
  margin-bottom: 85px;
}

@media (max-width: 767px) {
  .video-reference-section {
    margin-bottom: 15px;
  }
}

.video-reference-section .titles-wrapper {
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .video-reference-section .titles-wrapper .section-title {
    font-size: 25px;
  }
}

@media (max-width: 767px) {
  .video-reference-section .titles-wrapper {
    margin-bottom: 20px;
  }
}

.video-reference-section .reference-col {
  margin-bottom: 40px;
}

.video-reference-block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
  align-items: flex-end;
  position: relative;
  height: 320px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 30px 44px;
}

.video-reference-block:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: linear-gradient(180deg, #ffffff 0%, #000000 100%);
  opacity: 0.15;
}

.video-reference-block .info-row {
  -ms-flex-align: end;
  align-items: flex-end;
  position: relative;
  z-index: 2;
  width: 100%;
  padding-right: 55px;
}

.video-reference-block .info-row .name {
  color: #fff;
  font-weight: 700;
  margin-bottom: 5px;
}

.video-reference-block .info-row .function {
  color: #fff;
  font-size: 15px;
}

.video-reference-block .info-row .play-video-popup {
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  cursor: pointer;
}

@media (max-width: 767px) {
  .video-reference-block {
    height: 195px;
    padding: 25px 20px;
  }

  .video-reference-block .info-row .name {
    font-size: 20px;
  }

  .video-reference-block .info-row .function {
    font-size: 12px;
  }
}

@-webkit-keyframes goRight {
  from {
    left: 19px;
    right: 100%;
  }

  40% {
    left: 19px;
    right: 19px;
  }

  60% {
    left: 19px;
    right: 19px;
  }

  to {
    left: 100%;
    right: 19px;
  }
}

@keyframes goRight {
  from {
    left: 19px;
    right: 100%;
  }

  40% {
    left: 19px;
    right: 19px;
  }

  60% {
    left: 19px;
    right: 19px;
  }

  to {
    left: 100%;
    right: 19px;
  }
}

/* Masks sizes */

.revealedBox-in.goRight .hide-span {
  height: 100%;
  top: 0;
}

.revealedBox-in.goRight.childrenSpan-2 .hide-span {
  height: 50%;
}

.revealedBox-in.goRight.childrenSpan-2 .hide-span:nth-child(2) {
  top: 50%;
}

/* Reveal the content */

.revealedBox .hide-span {
  display: block;
  position: absolute;
  z-index: 10;
  background: #f1f1f1;
}

.revealedBox .contentBox {
  opacity: 0;
}

.revealedBox-in .contentBox {
  opacity: 1;
  transition-delay: 1.05s;
}

/* Assign animations */

.revealedBox-in.goRight span {
  -webkit-animation: goRight 1.4s;
  animation: goRight 1.4s;
}

/* Add delay */

.revealedBox-in .hide-span:nth-child(1) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.revealedBox-in .hide-span:nth-child(2) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.revealedBox-in .hide-span:nth-child(3) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.revealedBox-in .hide-span:nth-child(4) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.revealedBox-in .hide-span:nth-child(5) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.actual-section {
  background-color: #E2DFE8;
  margin-bottom: 15px;
  overflow: hidden;
  padding: 50px 0 20px;
}

.actual-section .top-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.actual-section .top-row .titles-wrapper {
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-bottom: 50px;
  padding-right: 19px;
}

@media (max-width: 767px) {
  .actual-section .top-row .titles-wrapper .section-title {
    font-size: 25px;
  }
}

@media (max-width: 767px) {
  .actual-section .top-row .titles-wrapper {
    margin-bottom: 20px;
  }
}

.actual-section .top-row .btn,
.actual-section .top-row body .wp-block-button__link,
body .actual-section .top-row .wp-block-button__link {
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .actual-section .top-row .btn,
  .actual-section .top-row body .wp-block-button__link,
  body .actual-section .top-row .wp-block-button__link {
    display: none;
  }
}

.actual-section .news-container {
  position: relative;
}

.actual-section .news-col {
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
}

.actual-section .btn-wrapper {
  margin-bottom: 30px;
  text-align: center;
}

.actual-section.related {
  background-color: #191238;
  padding: 50px 0 20px;
  margin-bottom: 0;
}

.actual-section.related .subtitle,
.actual-section.related .section-title {
  color: #EFF0F9;
}

.actual-section.related .news-container:before {
  background-image: url(../../resources/images/shapes/wave-news.png);
}

.clicktrough-blocks-section {
  margin-bottom: 85px;
}

@media (max-width: 767px) {
  .clicktrough-blocks-section {
    margin-bottom: 15px;
  }
}

.clicktrough-blocks-section .block-col {
  margin-bottom: 40px;
  position: relative;
}

.clicktrough-blocks-section .clickthrough-block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
  align-items: flex-end;
  position: relative;
  height: 250px;
  overflow: hidden;
  padding: 25px;
}

.clicktrough-blocks-section .clickthrough-block:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.15);
}

.clicktrough-blocks-section .clickthrough-block .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 1.5s ease-in-out;
}

.clicktrough-blocks-section .clickthrough-block .inner-content {
  position: relative;
  z-index: 3;
}

.clicktrough-blocks-section .clickthrough-block .inner-content .title {
  color: #fff;
  font-size: 20px;
  margin-bottom: 15px;
}

.clicktrough-blocks-section .clickthrough-block:hover .image-wrapper {
  -webkit-transform: scale(1.075);
  transform: scale(1.075);
}

.call-to-action-section {
  position: relative;
  z-index: 21;
  background-color: #848DAD;
  padding: 50px 0 30px;
  margin-bottom: 125px;
}

@media (max-width: 767px) {
  .call-to-action-section {
    margin-bottom: 55px;
  }
}

.call-to-action-section .btn.btn-ghost,
.call-to-action-section body .btn-ghost.wp-block-button__link,
body .call-to-action-section .btn-ghost.wp-block-button__link {
  color: #fff;
}

@media (max-width: 991px) {
  .call-to-action-section.has-image {
    padding-bottom: 0;
  }

  .call-to-action-section.has-image .call-to-action-inner .row-w-image {
    text-align: center;
  }

  .call-to-action-section.has-image .call-to-action-inner .row-w-image .btns-wrapper {
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.call-to-action-section.has-image .person-image-col {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: end;
  align-items: flex-end;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 19px;
  text-align: center;
}

.call-to-action-section .title {
  color: #fff;
  font-weight: 200;
  margin-bottom: 19px;
}

@media (max-width: 767px) {
  .call-to-action-section .title {
    font-size: 30px;
  }
}

.call-to-action-section .subtitle {
  color: #fff;
}

.call-to-action-section .description {
  margin-bottom: 30px;
}

.call-to-action-section .description p,
.call-to-action-section .description li,
.call-to-action-section .description a {
  color: #fff;
}

.call-to-action-section .btns-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}

.call-to-action-section .person-image-wrapper {
  /*        position: absolute;
            right: 70px;
            bottom: 0;*/
}

.call-to-action-section .row-non-image .btns-wrapper {
  -ms-flex-pack: center;
  justify-content: center;
}

.reference-slider-section {
  margin-bottom: 125px;
}

@media (max-width: 767px) {
  .reference-slider-section {
    margin-bottom: 55px;
  }
}

.reference-slider-section .quote-slider-wrapper {
  position: relative;
  padding: 0 52px;
}

@media (max-width: 767px) {
  .reference-slider-section .quote-slider-wrapper {
    padding: 0 36px;
  }
}

.reference-slider-section .quote-slider-wrapper .slider-nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.reference-slider-section .quote-slider-wrapper .slider-nav .slick-arrow {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  width: 52px;
  height: 52px;
  background-color: #fff;
  border: 2px solid #ff0082;
  border-radius: 50%;
  padding: 0;
  outline: none;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 767px) {
  .reference-slider-section .quote-slider-wrapper .slider-nav .slick-arrow {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
}

.reference-slider-section .quote-slider-wrapper .slider-nav .slick-arrow:before,
.reference-slider-section .quote-slider-wrapper .slider-nav .slick-arrow:after {
  content: "";
}

@media (max-width: 767px) {
  .reference-slider-section .quote-slider-wrapper .slider-nav .slick-arrow.slick-prev {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
}

@media (max-width: 767px) {
  .reference-slider-section .quote-slider-wrapper .slider-nav .slick-arrow.slick-next {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
}

.reference-slider-section .quote-slider-wrapper .slider-nav .slick-arrow:hover {
  background-color: #ff0082;
}

.reference-slider-section .quote-slider-wrapper .quote-slider .slick-track {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.reference-slider-section .quote-slider-wrapper .quote-slider .slick-slide {
  position: relative;
  padding-top: 90px;
}

.reference-slider-section .quote-slider-wrapper .quote-slider .slick-slide:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
}

.reference-slider-section .quote-slider-wrapper .quote-slider .slick-slide .inner-wrapper {
  width: 100%;
  max-width: 786px;
  margin: 0 auto;
  padding: 0 19px;
}

.reference-slider-section .quote-slider-wrapper .quote-slider .slick-slide .description {
  position: relative;
  font-size: 35px;
  line-height: 1.1;
  margin-bottom: 28px;
  padding-bottom: 30px;
  text-align: center;
}

.reference-slider-section .quote-slider-wrapper .quote-slider .slick-slide .description:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 18px;
  height: 3px;
  background-color: #ff0082;
  margin: 0 auto;
}

.reference-slider-section .quote-slider-wrapper .quote-slider .slick-slide .description b,
.reference-slider-section .quote-slider-wrapper .quote-slider .slick-slide .description strong {
  font-weight: 500;
}

@media (max-width: 767px) {
  .reference-slider-section .quote-slider-wrapper .quote-slider .slick-slide .description {
    font-size: 20px;
  }
}

.reference-slider-section .quote-slider-wrapper .quote-slider .slick-slide .info-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.reference-slider-section .quote-slider-wrapper .quote-slider .slick-slide .info-row .image-wrapper {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 25px;
}

.reference-slider-section .quote-slider-wrapper .quote-slider .slick-slide .info-row .image-wrapper img {
  max-width: 60px;
  border-radius: 50%;
}

.reference-slider-section .quote-slider-wrapper .quote-slider .slick-slide .info-row .names {
  line-height: 1;
  padding: 2px 0;
}

.reference-slider-section .quote-slider-wrapper .quote-slider .slick-slide .info-row .names .name {
  display: block;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 3px;
}

.reference-slider-section .quote-slider-wrapper .quote-slider .slick-slide .info-row .names .function {
  color: #4c4c4c;
  font-size: 17px;
}

.logo-section {
  margin-bottom: 85px;
}

@media (max-width: 767px) {
  .logo-section {
    margin-bottom: 15px;
  }
}

.logo-section .section-title {
  font-size: 20px;
  margin-bottom: 10px;
}

.logo-section .logo-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  height: 100%;
  padding: 40px 0;
}

.logo-section .logo-wrapper .logo-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.logos-full-slider .slick-track {
  display: -ms-flexbox;
  display: flex;
}

.logos-full-slider .slick-slide {
  position: relative;
  height: inherit !important;
  padding: 0 19px;
}

.logos-full-slider .slick-slide .logo-wrapper {
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.logos-full-slider .slick-slide .logo-wrapper img {
  margin: auto;
}

.logos-full-slider .slick-slide .logo-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.grayscale {
  /* Firefox 10-34 */
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='saturate' values='0'/></filter></svg>#grayscale");
  /*
      Chrome 19+,
      Safari 6+,
      Safari 6+ iOS,
      Opera 15+
    */
  -webkit-filter: grayscale(1);
  /* Firefox 35+ */
  filter: grayscale(1);
  /* IE 6-9 */
  -webkit-filter: gray;
  filter: gray;
}

.grayscale.grayscale-fade {
  transition: -webkit-filter 0.5s;
  transition: filter 0.5s;
  transition: filter 0.5s, -webkit-filter 0.5s;
}

/* Webkit hack until filter is unprefixed */

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .grayscale.grayscale-fade {
    transition: -webkit-filter 0.5s;
  }
}

.grayscale.grayscale-off,
.grayscale.grayscale-fade:hover {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}

/* Background element */

.grayscale.grayscale-replaced {
  -webkit-filter: none;
  filter: none;
}

.grayscale.grayscale-replaced > svg {
  transition: opacity 0.5s ease;
  opacity: 1;
}

.grayscale.grayscale-replaced.grayscale-off > svg,
.grayscale.grayscale-replaced.grayscale-fade:hover > svg {
  opacity: 0;
}

.tp-family-section {
  margin-bottom: 125px;
}

@media (max-width: 767px) {
  .tp-family-section {
    margin-bottom: 55px;
  }
}

.tp-family-slider-container .slider-controls {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.tp-family-slider-container .slider-controls .titles-wrapper {
  margin-bottom: 45px;
}

@media (max-width: 767px) {
  .tp-family-slider-container .slider-controls .titles-wrapper {
    margin-bottom: 20px;
    padding-right: 19px;
  }

  .tp-family-slider-container .slider-controls .titles-wrapper .gallery-title {
    font-size: 25px;
  }
}

.tp-family-slider-container .slider-controls .nav-arrows {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-bottom: 45px;
}

.tp-family-slider-container .slider-controls .nav-arrows .slick-arrow {
  background-color: transparent;
  border: none;
  padding: 0;
  margin: 0 10px;
  outline: none;
}

.tp-family-slider-container .slider-controls .nav-arrows .slick-arrow:before {
  content: "";
  display: inline-block;
}

.tp-family-slider-container .slider-controls .nav-arrows .slick-arrow:first-child {
  margin-left: 0;
}

.tp-family-slider-container .slider-controls .nav-arrows .slick-arrow:last-child {
  margin-right: 0;
}

.tp-family-slider-container .slider-controls .nav-arrows .slick-arrow.slick-disabled {
  opacity: 0.3;
}

.tp-family-slider {
  margin-left: -19px;
}

.tp-family-slider .slick-list .slick-track .slick-slide {
  margin-left: 19px;
  margin-right: 19px;
}

.tp-family-block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
  align-items: flex-end;
  position: relative;
  height: 320px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 30px 44px;
}

.tp-family-block:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: linear-gradient(180deg, #ffffff 0%, #000000 100%);
  opacity: 0.15;
}

.tp-family-block .info-row {
  -ms-flex-align: end;
  align-items: flex-end;
  position: relative;
  z-index: 2;
  width: 100%;
  padding-right: 55px;
}

.tp-family-block .info-row .name {
  color: #fff;
  font-weight: 700;
  margin-bottom: 5px;
}

.tp-family-block .info-row .function {
  color: #fff;
  font-size: 15px;
}

.tp-family-block .info-row .play-video-popup {
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  cursor: pointer;
}

@media (max-width: 767px) {
  .tp-family-block {
    height: 195px;
    padding: 25px 20px;
  }

  .tp-family-block .info-row .name {
    font-size: 20px;
  }

  .tp-family-block .info-row .function {
    font-size: 12px;
  }
}

.tp-family-block .block-link {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
}

.usp-section-selected {
  margin-bottom: 85px;
}

@media (max-width: 767px) {
  .usp-section-selected {
    margin-bottom: 15px;
  }
}

.usp-section-selected .section-title {
  font-family: "Noto Sans";
  font-size: 25px;
  margin-bottom: 13px;
  overflow: hidden;
}

.usp-section-selected .section-title .text {
  display: inline-block;
  position: relative;
  padding-right: 148px;
}

@media (max-width: 767px) {
  .usp-section-selected .section-title .text {
    padding-right: 30px;
  }
}

.usp-section-selected .section-title .text:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  width: 1000%;
  height: 1px;
  background-color: #f1f1f1;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 767px) {
  .usp-section-selected .section-title {
    font-size: 20px;
  }
}

.usp-section-selected .usps-group-description {
  margin-bottom: 45px;
}

@media (max-width: 767px) {
  .usp-section-selected .usps-group-description {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .usp-section-selected .usps-group-description p {
    font-size: inherit;
  }
}

.usp-section-selected .usp-col {
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .usp-section-selected .usp-col {
    margin-bottom: 20px;
  }
}

.usp-item-vacancy {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  height: 100%;
}

.usp-item-vacancy .title-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  margin-bottom: 8px;
}

.usp-item-vacancy .title-row .icon-wrapper {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 60px;
  max-width: 100%;
  margin-right: 38px;
}

.usp-item-vacancy .title-row .icon-wrapper img {
  max-width: 48px;
}

@media (max-width: 767px) {
  .usp-item-vacancy .title-row .icon-wrapper {
    width: 48px;
    margin-right: 20px;
  }
}

.usp-item-vacancy .title-row .item-title {
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .usp-item-vacancy .title-row .item-title {
    font-size: 17px;
  }
}

.usp-item-vacancy .info-wrapper {
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding-left: 98px;
}

@media (max-width: 767px) {
  .usp-item-vacancy .info-wrapper {
    display: none;
  }
}

.usp-item-vacancy .info-wrapper .description {
  color: #4c4c4c;
  font-size: 15px;
  font-weight: 300;
}

.vacancy-process-section {
  margin-bottom: 125px;
}

@media (max-width: 767px) {
  .vacancy-process-section {
    margin-bottom: 25px;
  }
}

.vacancy-process-section .grey-bg {
  position: relative;
  padding-top: 45px;
  padding-bottom: 55px;
}

.vacancy-process-section .grey-bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 19px;
  right: 19px;
  height: 100%;
  background-color: #f9f9f9;
}

@media (max-width: 1178px) {
  .vacancy-process-section .grey-bg:before {
    left: 0;
    right: 0;
  }
}

.vacancy-process-section .grey-bg .usps-slider-container {
  position: relative;
  z-index: 2;
}

.vacancy-process-section .slider-controls {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.vacancy-process-section .slider-controls .titles-wrapper {
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-bottom: 35px;
}

.vacancy-process-section .slider-controls .titles-wrapper .section-title {
  font-family: "Noto Sans";
  font-size: 25px;
  margin-right: 50px;
  overflow: hidden;
}

.vacancy-process-section .slider-controls .titles-wrapper .section-title .text {
  display: inline-block;
  position: relative;
  padding-right: 45px;
}

@media (max-width: 767px) {
  .vacancy-process-section .slider-controls .titles-wrapper .section-title .text {
    padding-right: 30px;
  }
}

.vacancy-process-section .slider-controls .titles-wrapper .section-title .text:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  width: 1000%;
  height: 1px;
  background-color: #f1f1f1;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 767px) {
  .vacancy-process-section .slider-controls .titles-wrapper .section-title .text {
    padding-right: 0;
  }

  .vacancy-process-section .slider-controls .titles-wrapper .section-title .text:after {
    display: none;
  }
}

@media (max-width: 767px) {
  .vacancy-process-section .slider-controls .titles-wrapper .section-title {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .vacancy-process-section .slider-controls .titles-wrapper {
    padding-right: 19px;
  }

  .vacancy-process-section .slider-controls .titles-wrapper .gallery-title {
    font-size: 25px;
  }
}

.vacancy-process-section .slider-controls .nav-arrows {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-bottom: 35px;
}

@media (max-width: 991px) {
  .vacancy-process-section .slider-controls .nav-arrows {
    display: none;
  }
}

.vacancy-process-section .slider-controls .nav-arrows .slick-arrow {
  background-color: transparent;
  border: none;
  padding: 0;
  margin: 0 10px;
  outline: none;
}

.vacancy-process-section .slider-controls .nav-arrows .slick-arrow:before {
  content: "";
  display: inline-block;
}

.vacancy-process-section .slider-controls .nav-arrows .slick-arrow:first-child {
  margin-left: 0;
}

.vacancy-process-section .slider-controls .nav-arrows .slick-arrow:last-child {
  margin-right: 0;
}

.vacancy-process-section .slider-controls .nav-arrows .slick-arrow.slick-disabled {
  opacity: 0.3;
}

.vacancy-process-section .slider-controls .nav-arrows .slick-arrow.slick-next.animated {
  -webkit-animation: bounce-right 1s infinite alternate;
  animation: bounce-right 1s infinite alternate;
}

.vacancy-process-section .mobile-usps-container .usp-item {
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .vacancy-process-section .usps-slider {
    display: none;
  }
}

.vacancy-process-section .usps-slider {
  margin: 0 -19px;
}

.vacancy-process-section .usps-slider .slick-slide {
  padding: 0 19px;
}

.vacancy-process-section .usp-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  height: 100%;
}

.vacancy-process-section .usp-item .block-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.vacancy-process-section .usp-item .title-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  margin-bottom: 8px;
}

.vacancy-process-section .usp-item .title-row .icon-wrapper {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 70px;
  max-width: 100%;
  margin-right: 30px;
}

.vacancy-process-section .usp-item .title-row .icon-wrapper img {
  max-width: 70px;
}

@media (max-width: 767px) {
  .vacancy-process-section .usp-item .title-row .icon-wrapper {
    width: auto;
    margin-right: 20px;
  }
}

.vacancy-process-section .usp-item .title-row .item-title {
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .vacancy-process-section .usp-item .title-row .item-title {
    font-size: 17px;
  }
}

.vacancy-process-section .usp-item .info-wrapper {
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.vacancy-process-section .usp-item .info-wrapper .description {
  color: #4c4c4c;
  font-size: 15px;
  font-weight: 300;
}

@-webkit-keyframes bounce-right {
  from {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }

  to {
    -webkit-transform: translateX(15px);
    transform: translateX(15px);
  }
}

@keyframes bounce-right {
  from {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }

  to {
    -webkit-transform: translateX(15px);
    transform: translateX(15px);
  }
}

.locations-section {
  margin-bottom: 85px;
}

@media (max-width: 767px) {
  .locations-section {
    margin-bottom: 15px;
  }
}

.locations-section .location-col {
  margin-bottom: 40px;
}

.locations-section .location-block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}

.locations-section .location-block .image-wrapper {
  position: relative;
  height: 250px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 767px) {
  .locations-section .location-block .image-wrapper {
    height: 195px;
  }
}

.locations-section .location-block .block-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.locations-section .location-block .info-wrapper {
  -ms-flex-positive: 1;
  flex-grow: 1;
  background-color: #4B4C6A;
  padding: 20px;
}

.locations-section .location-block .info-wrapper .title {
  color: #E2DFE8;
  font-weight: 400;
  margin-bottom: 2px;
}

.locations-section .location-block .info-wrapper .address {
  color: #E2DFE8;
  font-size: 18px;
  font-weight: 200;
  margin-bottom: 17px;
}

.locations-section .location-block .info-wrapper .links-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  align-items: flex-start;
}

.locations-section .location-block .info-wrapper .link {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  position: relative;
  color: #E2DFE8;
  font-size: 18px;
  font-weight: 200;
  text-decoration: none;
}

.locations-section .location-block .info-wrapper .link:before {
  content: "";
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.locations-section .location-block .info-wrapper .link.phone-link:before {
  width: 20px;
  height: 26px;
  background-size: 20px 26px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-mobile-alt.svg);
}

.locations-section .location-block .info-wrapper .link.phone-link {
  margin-bottom: 4px;
}

.locations-section .location-block .info-wrapper .link.mail-link {
  margin-bottom: 4px;
}

.locations-section .location-block .info-wrapper .link.route-link:before {
  width: 26px;
  height: 26px;
  background-size: 26px 26px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-building.svg);
}

.gallery-section {
  position: relative;
  padding-bottom: 8.69%;
}

.gallery-section.shape-on-top,
.gallery-section.default {
  padding-bottom: 0;
}

.gallery-section.shape-on-top .slider-container,
.gallery-section.default .slider-container {
  position: relative;
  padding-bottom: 50px;
}

.gallery-section.shape-on-top .slider-container:before,
.gallery-section.default .slider-container:before {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  z-index: 1;
  left: 0;
  width: 100%;
  background-color: #4B4C6A;
}

.gallery-section.shape-on-top .slider-container .gallery-slider,
.gallery-section.default .slider-container .gallery-slider {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}

.gallery-section.shape-on-top .slider-controls-wrapper,
.gallery-section.default .slider-controls-wrapper {
  background-color: #4B4C6A;
}

.gallery-section.shape-on-top .slider-controls-wrapper .control-row,
.gallery-section.default .slider-controls-wrapper .control-row {
  padding-bottom: 50px;
}

.gallery-section.shape-on-top .slider-controls-wrapper .slides-counter,
.gallery-section.default .slider-controls-wrapper .slides-counter {
  color: #fff;
}

.gallery-section.shape-on-top .bottom-content-area,
.gallery-section.default .bottom-content-area {
  background-color: #4B4C6A;
  padding-bottom: 50px;
}

.gallery-section.shape-on-top .bottom-spacer,
.gallery-section.default .bottom-spacer {
  background-color: #4B4C6A;
  padding-bottom: 0;
}

.gallery-section.shape-on-top,
.gallery-section.default {
  /*        margin-bottom: 125px;
            padding-bottom: 30px;

            @media( max-width: 767px ){
                margin-bottom: 50px;
            }

            .bg-underlayer {
                top: 60%;

                &:after {
                    top: auto;
                    bottom: 100%;
                    background-image: url(../../resources/images/shapes/swirlshape-header-purple-2.svg);
                }

                @media( max-width: 767px ){
                    top: 40%;
                }
            }

            .bottom-content-area {
                padding-bottom: 0;
            }*/
}

.gallery-section .section-inner {
  position: relative;
  z-index: 10;
}

.gallery-section .slider-controls {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.gallery-section .slider-controls .titles-wrapper {
  margin-bottom: 45px;
}

@media (max-width: 767px) {
  .gallery-section .slider-controls .titles-wrapper .gallery-title {
    font-size: 25px;
  }
}

@media (max-width: 767px) {
  .gallery-section .slider-controls .titles-wrapper {
    padding-right: 19px;
  }
}

.gallery-section .slider-controls .nav-arrows {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-bottom: 45px;
}

.gallery-section .slider-controls .nav-arrows .slick-arrow {
  background-color: transparent;
  border: none;
  padding: 0;
  margin: 0 10px;
  outline: none;
}

.gallery-section .slider-controls .nav-arrows .slick-arrow:before {
  content: "";
  display: inline-block;
}

.gallery-section .slider-controls .nav-arrows .slick-arrow:first-child {
  margin-left: 0;
}

.gallery-section .slider-controls .nav-arrows .slick-arrow:last-child {
  margin-right: 0;
}

.gallery-section .slider-controls .nav-arrows .slick-arrow.slick-disabled {
  opacity: 0.3;
}

.gallery-section .gallery-slider {
  margin-bottom: 50px;
}

.gallery-section .bottom-content-area .title,
.gallery-section .bottom-content-area p,
.gallery-section .bottom-content-area li {
  color: #fff;
}

@media (max-width: 991px) {
  .gallery-section .bottom-content-area {
    padding-bottom: 50px;
  }
}

.image-video-section {
  margin-bottom: 55px;
}

.image-video-section .image-holder {
  position: relative;
  width: 100%;
  height: 350px;
  transition: all 0.3s ease-in-out;
}

.image-video-section .image-holder .image-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.image-video-section .image-holder .image-wrapper:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.15);
}

.image-video-section .image-holder .image-wrapper .play-video {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  right: 0;
  z-index: 2;
  margin: 0 auto;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.image-video-section .video-wrapper {
  position: relative;
  height: 100%;
}

.image-video-section .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.home-header-section-re {
  padding-top: var(--header-height);
  margin-bottom: 100px;
}

@media (max-width: 991px) {
  .home-header-section-re {
    margin-bottom: 50px;
  }
}

.home-header-section-re .section-inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: end;
  justify-content: flex-end;
  position: relative;
  height: 541px;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 75px;
  padding-bottom: 75px;
}

.home-header-section-re .section-inner:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  height: 75%;
  background: linear-gradient(180deg, rgba(9, 2, 34, 0) 0%, rgba(9, 2, 34, 0.75) 100%);
}

@media (max-width: 991px) {
  .home-header-section-re .section-inner {
    height: 570px;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.home-header-section-re .section-inner .video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -o-object-fit: cover;
  object-fit: cover;
  background-size: cover;
}

@media (max-width: 1177px) {
  .home-header-section-re .section-inner .video {
    display: none;
  }
}

.home-header-section-re .section-inner .area {
  position: relative;
  z-index: 2;
}

.home-header-section-re .section-inner .middle-area {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
}

.home-header-section-re .section-inner .titles-wrapper {
  padding: 20px 0;
}

@media (max-width: 991px) {
  .home-header-section-re .section-inner .titles-wrapper {
    padding-bottom: 0;
  }
}

.home-header-section-re .subtitle {
  color: #fff;
  font-family: "Noto Sans";
  font-size: 15px;
  font-weight: 300;
  line-height: 25px;
  margin-bottom: 8px;
}

.home-header-section-re .title {
  color: #fff;
  font-size: 58px;
  font-weight: 200;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .home-header-section-re .title {
    font-size: 32px;
    margin-bottom: 25px;
  }
}

.home-header-section-re .scroll-label {
  display: inline-block;
  position: relative;
  color: #c8c3ca;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1;
  padding-bottom: 14px;
  text-transform: uppercase;
  -webkit-text-orientation: mixed;
  text-orientation: mixed;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.home-header-section-re .scroll-label:after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transform-origin: 25% 50%;
  transform-origin: 25% 50%;
}

.vacancy-process-section-2 {
  background-image: url(../../resources/images/shapes/wave-steps.png);
  background-size: cover;
  background-repeat: repeat-x;
  background-position: center;
  background-size: 1140px 824px;
  margin-bottom: 50px;
}

.vacancy-process-section-2 .section-title {
  margin-bottom: 50px;
}

@media (max-width: 991px) {
  .vacancy-process-section-2 .section-title {
    font-size: 25px;
  }
}

.vacancy-process-section-2 .section-title .text {
  font-size: inherit;
}

.vacancy-process-section-2 .vacancy-steps-slider {
  margin-bottom: 50px;
}

.vacancy-process-section-2 .slider-controls-line {
  margin-bottom: 50px;
}

.vacancy-steps-slider .slick-list {
  padding-right: 10%;
}

.vacancy-steps-slider .slick-track {
  display: -ms-flexbox;
  display: flex;
}

.vacancy-steps-slider .slick-track .slick-slide {
  height: inherit !important;
  padding-bottom: 21px;
  margin-right: 38px;
}

.vacancy-step-block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  height: 100%;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 8px 8px rgba(25, 18, 56, 0.05);
  padding: 30px;
}

.vacancy-step-block .icon-wrapper {
  height: 35px;
  margin-bottom: 22px;
}

.vacancy-step-block .icon-wrapper img {
  max-height: 100%;
}

.vacancy-step-block .item-title {
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 10px;
}

.vacancy-step-block .description {
  font-size: 14px;
  line-height: 1.7;
}

.vacancy-step-block .counter {
  position: absolute;
  bottom: -26px;
  right: 32px;
  color: #191238;
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
}

.vacancy-step-block .block-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slider-section .slider-controls-line {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: 45px;
}

.slider-section .slider-controls-line .slides-counter {
  color: #191238;
  font-size: 18px;
  font-weight: 600;
  margin-right: 50px;
}

@media (max-width: 767px) {
  .slider-section .slider-controls-line .slides-counter {
    display: none;
  }
}

.slider-section .slider-controls-line .progress-holder {
  -ms-flex-positive: 1;
  flex-grow: 1;
  position: relative;
  height: 4px;
  background-color: #fff;
  overflow: hidden;
}

.slider-section .slider-controls-line .progress-holder .line {
  position: absolute;
  left: 0;
  top: 0;
  width: 30%;
  background: linear-gradient(90deg, #7C2182 0%, #E11077 94.05%);
  height: 4px;
  transition: all 0.3s ease-in-out;
}

.slider-section .slider-nav-holder {
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 15px;
  -moz-column-gap: 15px;
  column-gap: 15px;
  margin-left: 46px;
}

.slider-section .slick-arrow {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  background: transparent;
  border: none;
  margin: 0;
  padding: 0;
  outline: none;
  text-indent: -9999px;
  transition: all 0.3s ease-in-out;
}

.slider-section .slick-arrow.slick-prev,
.slider-section .slick-arrow.slick-next {
  width: 45px;
  height: 45px;
  background-color: #191238;
  border-radius: 50%;
}

.slider-section .slick-arrow.slick-prev:after,
.slider-section .slick-arrow.slick-next:after {
  content: "";
  position: relative;
  z-index: 2;
  margin: auto;
}

.slider-section .slick-arrow.slick-prev:before,
.slider-section .slick-arrow.slick-next:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #ff0082;
  opacity: 0;
}

.slider-section .slick-arrow.slick-prev:after {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  width: 10px;
  height: 10px;
  background-size: 10px 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/arrow-up-right.svg);
}

.slider-section .slick-arrow.slick-next:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 10px;
  height: 10px;
  background-size: 10px 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/arrow-up-right.svg);
}

.slider-section .slick-arrow:hover:before {
  opacity: 1;
}

.highlight-section {
  margin-bottom: 50px;
}

.highlight-section {
  overflow: hidden;
}

.highlight-section .content-row {
  margin-bottom: 37px;
}

.highlight-section .content-row .content-col {
  margin-bottom: 38px;
}

.highlight-section .section-title {
  margin-bottom: 0;
}

.highlight-section .text-center .sub-title {
  display: inline-block;
}

.highlight-section .media-container {
  position: relative;
}

.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: 38px;
  }
}

.highlight-section .media-holder .item-wrapper {
  position: relative;
  will-change: transform;
  transition: all 0.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;
  border-radius: 5px;
}

.highlight-section .media-holder .item-wrapper .item.has-overlay:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(135, 51, 142, 0) 0%, rgba(25, 18, 56, 0.75) 100%);
}

.highlight-section .media-holder .item-wrapper .item .play-fancy {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 3;
  cursor: pointer;
}

.highlight-section .media-holder .item-wrapper .item .play-fancy:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 5;
  margin: 0 auto;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background-size: 45px 45px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-play-new.svg);
}

.highlight-section .media-holder .item-wrapper:nth-child(1) {
  width: 100%;
}

.highlight-section .media-holder .item-wrapper:nth-child(1) .item {
  height: 313px;
}

.highlight-section .media-holder .item-wrapper:nth-child(2) .item {
  height: 313px;
}

.highlight-section .media-holder .item-wrapper:nth-child(3) .item {
  height: 313px;
}

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

.seo-section {
  margin-bottom: 50px;
}

.seo-section.has-bg {
  padding-top: 50px;
}

.seo-section.has-bg {
  padding-bottom: 50px;
}

.seo-section.has-bg.lavender-gray {
  background-color: #E2DFE8;
}

.seo-section.has-bg.lavender-gray .slidein-row {
  background-color: #fff;
}

.seo-section .titles-wrapper {
  margin-bottom: 50px;
}

.seo-section .titles-wrapper .section-title {
  margin-bottom: 50px;
}

.seo-section .slidein-row {
  position: relative;
  background-color: #E2DFE8;
  border-radius: 5px;
}

.seo-section .slidein-row + .slidein-row {
  margin-top: 20px;
}

.seo-section .slidein-row .toggle-btn {
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 27px;
  right: 27px;
  width: 21px;
  height: 21px;
}

.seo-section .slidein-row .toggle-btn:after {
  content: "";
  margin: auto;
  width: 21px;
  height: 21px;
  background-size: 21px 21px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-add.svg);
}

.seo-section .slidein-row .toggle-btn.active:after {
  width: 21px;
  height: 3px;
  background-size: 21px 3px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-minus.svg);
}

.seo-section .slidein-row .title-row {
  cursor: pointer;
  padding: 27px 75px 27px 27px;
}

.seo-section .slidein-row .title-row .title {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 0;
}

.seo-section .slidein-row .toggable-area {
  display: none;
}

.seo-section .slidein-row .toggable-area .inner-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.seo-section .slidein-row .toggable-area .content-col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 38px;
}

.seo-section .slidein-row .toggable-area .content-col .title {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 22px;
}

.seo-section .slidein-row .toggable-area .image-col {
  width: 100%;
}

.seo-section .slidein-row .toggable-area .image-col .image-wrapper {
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  min-height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.seo-section .slidein-row .toggable-area .image-col .image-wrapper .play-btn {
  position: relative;
  cursor: pointer;
  margin: auto;
}

.seo-section .slidein-row .toggable-area .image-col .image-wrapper .play-btn:before {
  content: "";
  display: inline-block;
  z-index: 5;
  width: 45px;
  height: 45px;
  background-size: 45px 45px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-play-new.svg);
}

.cta-blocks-section {
  margin-bottom: 50px;
}

.cta-blocks-section .titles-wrapper {
  margin-bottom: 50px;
}

.cta-blocks-section .titles-wrapper .section-title {
  margin-bottom: 34px;
}

.cta-blocks-section .slider-col {
  padding-left: 0;
  padding-right: 0;
}

.cta-blocks-slider {
  position: relative;
}

.cta-blocks-slider .slick-track {
  display: -ms-flexbox;
  display: flex;
}

.cta-blocks-slider .slick-track .slick-slide {
  height: inherit !important;
  padding: 0 19px;
}

.cta-blocks-slider .slick-arrow {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  background: transparent;
  border: none;
  margin: 0;
  padding: 0;
  outline: none;
  text-indent: -9999px;
  transition: all 0.3s ease-in-out;
}

.cta-blocks-slider .slick-arrow.slick-prev,
.cta-blocks-slider .slick-arrow.slick-next {
  width: 45px;
  height: 45px;
  background-color: #191238;
  border-radius: 50%;
}

.cta-blocks-slider .slick-arrow.slick-prev:after,
.cta-blocks-slider .slick-arrow.slick-next:after {
  content: "";
  position: relative;
  z-index: 2;
  margin: auto;
}

.cta-blocks-slider .slick-arrow.slick-prev:before,
.cta-blocks-slider .slick-arrow.slick-next:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #ff0082;
  opacity: 0;
}

.cta-blocks-slider .slick-arrow.slick-prev:after {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  width: 10px;
  height: 10px;
  background-size: 10px 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/arrow-up-right.svg);
}

.cta-blocks-slider .slick-arrow.slick-next:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 10px;
  height: 10px;
  background-size: 10px 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/arrow-up-right.svg);
}

.cta-blocks-slider .slick-arrow:hover:before {
  opacity: 1;
}

.cta-blocks-slider .slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.cta-blocks-slider .slick-arrow.slick-prev {
  left: -3px;
}

.cta-blocks-slider .slick-arrow.slick-next {
  right: -3px;
}

.cta-blocks-slider .cta-block-linked {
  height: 100%;
}

.cta-block-linked {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #EFF0F9;
  border-radius: 5px;
  padding: 20px;
}

.cta-block-linked .info-wrapper {
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 10px 15px 30px;
}

.cta-block-linked .block-title {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 20px;
}

.cta-block-linked .description {
  font-size: 17px;
  line-height: 1.5;
}

.cta-block-linked .description p {
  font: inherit;
}

.cta-block-linked .description span {
  background-color: #ff0082;
}

.cta-block-linked .image-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: end;
  justify-content: flex-end;
  position: relative;
  height: 245px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 5px;
  overflow: hidden;
  padding: 15px 20px 25px;
}

.cta-block-linked .image-wrapper:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 158px;
  background: linear-gradient(180deg, rgba(135, 51, 142, 0) 0%, rgba(25, 18, 56, 0.75) 100%);
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.cta-block-linked .image-wrapper .block-link {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.cta-block-linked .image-wrapper .inner-link {
  display: block;
  position: relative;
  z-index: 2;
  padding-left: 10px;
  padding-right: 45px;
  text-decoration: none;
}

.cta-block-linked .image-wrapper .inner-link .text {
  color: #fff;
  font-size: 18px;
  line-height: 1;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

.cta-block-linked .image-wrapper .inner-link .icon {
  position: absolute;
  top: -11px;
  right: 0;
  display: -ms-flexbox;
  display: flex;
  width: 45px;
  height: 45px;
  background: linear-gradient(90deg, #792182 0.01%, #E60F76 100%);
  border-radius: 50%;
}

.cta-block-linked .image-wrapper .inner-link .icon:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, #e60f76 0%, #792182 100%);
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}

.cta-block-linked .image-wrapper .inner-link .icon:after {
  width: 10px;
  height: 10px;
  background-size: 10px 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/arrow-up-right.svg);
  content: "";
  position: relative;
  z-index: 2;
  margin: auto;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.cta-block-linked .image-wrapper .inner-link:hover {
  text-decoration: none;
}

.cta-block-linked .image-wrapper:hover:before {
  opacity: 1;
}

.cta-block-linked .image-wrapper:hover .inner-link .text {
  opacity: 1;
}

.cta-block-linked .image-wrapper:hover .inner-link .icon:before {
  opacity: 1;
}

.faq-section-cpt {
  background-color: #E2DFE8;
  margin-bottom: 50px;
}

.faq-section-cpt {
  padding-top: 50px;
}

.faq-section-cpt {
  padding-bottom: 50px;
}

.faq-section-cpt .section-title {
  font-size: 25px;
  margin-bottom: 32px;
}

.faq-section-cpt .content-wrapper {
  margin-bottom: 50px;
}

.faq-section-cpt .categories-switcher {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 17px;
  margin-bottom: 24px;
}

.category-label-radio {
  position: relative;
  border-radius: 25px;
  background: linear-gradient(90deg, #792182 0%, #E60F76 100%);
  border: 2px solid transparent;
  border-left-color: #792182;
  border-right-color: #E60F76;
  cursor: pointer;
}

.category-label-radio .category-radio {
  display: none;
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

.category-label-radio .category-radio:checked + .label-text {
  background-color: transparent;
  color: #fff;
}

.category-label-radio .label-text {
  display: block;
  background-color: #fff;
  border-radius: inherit;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.28;
  padding: 9px 28px;
  transition: all 0.3s ease-in-out;
}

.faqs-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: #fff;
  padding: 25px 27px;
  transition: all 0.3s ease-in-out;
}

.faq-item.active {
  padding-left: 38px;
}

.faq-item.active .faq-toggle-desription {
  font-size: 18px;
  padding-top: 10px;
}

.faq-item.active .faq-toggle-desription::after {
  width: 21px;
  height: 21px;
  background-size: 21px 21px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-minus_2.svg);
}

.faq-item .faq-toggle-desription {
  display: block;
  position: relative;
  color: #000;
  font-size: 16px;
  padding-right: 25px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.faq-item .faq-toggle-desription::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 21px;
  height: 21px;
  background-size: 21px 21px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-plus.svg);
}

.faq-item .description {
  display: none;
  color: #000;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
  padding-top: 22px;
  padding-bottom: 15px;
}

.faq-item .description p {
  font: inherit;
}

.main-pop-up {
  display: none;
  position: fixed;
  background-color: rgba(83, 82, 85, 0.5);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  overflow: auto;
  text-align: center;
}

.main-pop-up .modal-content {
  position: relative;
  display: inline-block;
  max-width: 1280px;
  top: 50%;
  margin: 0 auto;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: transparent;
  padding: 30px;
  text-align: center;
}

.main-pop-up .modal-content.video {
  width: 100%;
}

@media (max-width: 767px) {
  .main-pop-up .modal-content {
    top: 20px;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.main-pop-up .modal-content .pop-up-inner {
  position: relative;
}

.main-pop-up .modal-content .pop-up-inner.info-form-popup {
  width: 750px;
  max-width: 100%;
  background-color: #fff;
  border-bottom: 4px solid #ff0082;
  padding: 30px 30px 20px;
  text-align: initial;
}

.main-pop-up .modal-content .pop-up-inner.info-form-popup .title {
  padding-right: 45px;
}

.main-pop-up .modal-content .pop-up-inner.info-form-popup .close-btn {
  top: 30px;
  right: 30px;
}

.main-pop-up .modal-content .close-btn {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 30px;
  height: 30px;
  z-index: 9;
  border: 2px solid #fff;
  border-radius: 50%;
  background-color: #ff0082;
  cursor: pointer;
}

.main-pop-up .modal-content .close-btn:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.main-pop-up .modal-content .video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0;
}

.main-pop-up .modal-content .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.redirection-popup-main {
  position: fixed;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

.redirection-popup-main.active {
  opacity: 1;
  visibility: visible;
}

.redirection-popup-main .popup-inner {
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  padding: 30px;
  overflow: auto;
}

.redirection-popup-main .popup-body {
  position: relative;
  width: 627px;
  max-width: 100%;
  background-color: #fff;
  border-top-left-radius: 15px;
  margin: auto;
  padding: 50px 40px 35px;
}

.redirection-popup-main .popup-body:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-image: url(../../resources/images/shapes/popup-line.svg);
}

.redirection-popup-main .popup-body .title {
  color: #4c4c4c;
  font-size: 45px;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: center;
}

@media (max-width: 991px) {
  .redirection-popup-main .popup-body .title {
    font-size: 30px;
  }
}

.redirection-popup-main .popup-body .content-wrapper {
  margin-bottom: 25px;
}

.redirection-popup-main .popup-body .content-wrapper p {
  color: #4c4c4c;
}

.redirection-popup-main .popup-body .btns-wrapper {
  text-align: center;
}

.redirection-popup-main .popup-body .btns-wrapper .btn,
.redirection-popup-main .popup-body .btns-wrapper body .wp-block-button__link,
body .redirection-popup-main .popup-body .btns-wrapper .wp-block-button__link {
  margin: 0 7px 15px;
}

.mobile-slider-wrapper {
  padding-left: 19px;
  margin-bottom: 40px;
}

.mobile-slider-wrapper .mobile-slider .slick-list {
  padding-right: 23px;
}

.mobile-slider-wrapper .mobile-slider .slick-list .slick-track {
  display: -ms-flexbox;
  display: flex;
}

.mobile-slider-wrapper .mobile-slider .slick-list .slick-track .slick-slide {
  height: inherit;
  margin-right: 4px;
}

.mobile-slider-wrapper .mobile-slider .slick-list .slick-track .slick-slide .news-item .image-holder {
  height: 195px;
}

.mobile-slider-wrapper .mobile-slider .slick-list .slick-track .slick-slide .news-item .info-wrapper .title {
  font-size: 20px;
  margin-bottom: 17px;
}

.standart-header-section {
  position: relative;
  background-color: #780096;
  padding-bottom: 8.44%;
}

.standart-header-section:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  bottom: -2px;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-image: url(../../resources/images/shapes/swirlshape-home-hero.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: bottom;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.standart-header-section.shape-rotated:after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.standart-header-section + .sections-container {
  padding-top: 30px;
}

.standart-header-section .header-section-inner {
  position: relative;
  z-index: 2;
  padding: 30px 0;
}

.standart-header-section .header-section-inner .title {
  color: #fff;
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .standart-header-section .header-section-inner .title {
    font-size: 25px;
  }
}

.standart-header-section .header-section-inner .subtitle {
  color: #fff;
  font-size: 15px;
}

.standart-header-section .header-section-inner .content-wrapper p,
.standart-header-section .header-section-inner .content-wrapper li {
  color: #fff !important;
}

.sections-container {
  position: relative;
  z-index: 20;
}

.client-header-part {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  min-height: 640px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 100px;
}

.client-header-part:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.client-header-part .section-inner {
  position: relative;
  z-index: 5;
  margin-top: auto;
  padding-top: 134px;
  padding-bottom: 70px;
  text-align: center;
}

.client-header-part .section-inner .subtitle {
  color: #fff;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 3px;
}

.client-header-part .section-inner .title {
  color: #fff;
  font-size: 60px;
  font-weight: normal;
}

.client-header-part .section-inner .title strong,
.client-header-part .section-inner .title b {
  font-weight: 500;
}

.client-header-part .section-inner .btn-wrapper {
  padding-top: 23px;
}

.client-header-part .section-inner .arrow-wrapper {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
}

.client-header-part .section-inner .icon-arrow-down-long {
  display: inline-block;
  -webkit-animation: bounce 1s infinite alternate;
  animation: bounce 1s infinite alternate;
}

@media (max-width: 767px) {
  .client-header-part .section-inner .title {
    font-size: 30px;
  }

  .client-header-part .section-inner .btn-wrapper {
    margin-bottom: 44px;
  }

  .client-header-part .section-inner .icon-arrow-down-long {
    display: none;
  }
}

.client-intro-holder {
  position: relative;
  z-index: 10;
  min-height: 184px;
  margin-top: -100px;
  margin-bottom: 75px;
}

.client-intro-holder .client-intro-wrapper {
  min-height: 184px;
  background-color: #fff;
  padding-top: 53px;
  padding-bottom: 34px;
  padding-left: 19px;
  padding-right: 19px;
}

.client-intro-holder h1,
.client-intro-holder .h1,
.client-intro-holder h2,
.client-intro-holder .h2,
.client-intro-holder h3,
.client-intro-holder .h3,
.client-intro-holder h4,
.client-intro-holder .h4,
.client-intro-holder h5,
.client-intro-holder .h5,
.client-intro-holder h6,
.client-intro-holder .h6 {
  margin-bottom: 15px;
}

.client-intro-holder h2,
.client-intro-holder .h2 {
  font-size: 30px;
}

.client-intro-holder h3,
.client-intro-holder .h3 {
  font-size: 25px;
}

.client-text-section {
  margin-bottom: 50px;
}

.client-text-section h2,
.client-text-section .h2 {
  font-size: 30px;
}

.client-text-section h3,
.client-text-section .h3 {
  font-size: 25px;
}

.client-text-section ul {
  list-style-type: none;
  padding: 0;
  margin: 0 0 30px;
}

.client-text-section ul li {
  position: relative;
  color: #000;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
  padding-left: 35px;
}

.client-text-section ul li + li {
  margin-top: 9px;
}

.client-text-section ul li:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
}

.client-image-video-section {
  margin-bottom: 12px;
}

.client-image-video-section .media-col {
  margin-bottom: 38px;
}

.client-image-video-section .col-inner-wrapper {
  position: relative;
  height: 370px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 5px;
  overflow: hidden;
}

.client-image-video-section .col-inner-wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
}

.client-image-video-section .col-inner-wrapper .play-fancy {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.play-fancy {
  display: -ms-flexbox;
  display: flex;
  z-index: 5;
}

.play-fancy:before {
  content: "";
  margin: auto;
}

.client-cta-section {
  margin-bottom: 50px;
}

.client-cta-block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background-color: #3E2666;
  border-radius: 5px;
  padding: 40px 25px;
  gap: calc(38px / 2) 38px;
}

@media (max-width: 991px) {
  .client-cta-block {
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.client-cta-block .image-wrapper {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.client-cta-block .image-wrapper img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}

.client-cta-block .content-part {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 7px;
}

.client-cta-block .title {
  color: #fff;
}

.client-cta-block .title b,
.client-cta-block .title strong {
  font-weight: 500;
}

.client-cta-block .content-wrapper p {
  color: #fff;
  font-size: 16px;
}

.client-cta-block .btn-wrapper {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: auto;
}

.client-slider-section {
  margin-bottom: 50px;
}

.client-slider-section .title {
  font-weight: 500;
  margin-bottom: 40px;
}

.client-slider-section .slider-wrapper {
  margin-right: -19px;
}

.client-image-video-slider .slick-list {
  padding-right: 22%;
}

.client-image-video-slider .slick-list .slick-track {
  display: -ms-flexbox;
  display: flex;
}

.client-image-video-slider .slick-slide {
  position: relative;
  height: inherit;
  margin-right: 38px;
}

.client-image-video-slider .slick-slide .image-wrapper {
  position: relative;
  height: 370px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 5px;
  overflow: hidden;
}

@media (max-width: 991px) {
  .client-image-video-slider .slick-slide .image-wrapper {
    height: 217px;
  }
}

.client-image-video-slider .slick-slide .image-wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
}

.client-image-video-slider .slick-slide .image-wrapper .play-fancy {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.client-quote-section {
  margin-bottom: 50px;
}

.client-quote-section .slider-wrapper {
  border-top: 2px solid #f9f9f9;
  border-bottom: 2px solid #f9f9f9;
  padding: 47px 0;
}

.client-quote-section .quote-block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  max-width: 746px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .client-quote-section .quote-block {
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .client-quote-section .quote-block .sign {
    margin-bottom: 30px;
  }
}

.client-quote-section .quote-block .sign {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.client-quote-section .quote-block .text {
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-size: 25px;
  line-height: 1.2;
}

.client-quote-section .quote-block .text b,
.client-quote-section .quote-block .text strong {
  font-weight: 500;
}

.client-quote-slider .slick-list .slick-track {
  display: -ms-flexbox;
  display: flex;
}

.client-quote-slider .slick-list .slick-track .slick-slide {
  position: relative;
  height: inherit;
  padding: 0 60px;
}

.client-quote-slider .slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  background-color: transparent;
  border: none;
  padding: 0;
  outline: none;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.client-quote-slider .slick-arrow:before {
  content: "";
  display: inline-block;
}

.client-quote-slider .slick-arrow.slick-disabled {
  opacity: 0.3;
}

.client-quote-slider .slick-arrow.slick-prev {
  left: 0;
}

.client-quote-slider .slick-arrow.slick-next {
  right: 0;
}

.client-usp-section {
  margin-bottom: 50px;
}

.client-usp-section .section-title {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 15px;
}

.client-usp-section .usps-group-description {
  margin-bottom: 35px;
}

.client-usp-section .usp-col {
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .client-usp-section .usp-col {
    margin-bottom: 20px;
  }
}

.relevant-vacancy-block {
  display: none;
}

.relevant-vacancy-block .block-inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 100px;
  background-color: #3E2666;
  border-radius: 0 0 5px 5px;
  padding: 25px 19px;
}

@media (max-width: 374px) {
  .relevant-vacancy-block .block-inner {
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.relevant-vacancy-block .btn.btn-ghost,
.relevant-vacancy-block body .btn-ghost.wp-block-button__link,
body .relevant-vacancy-block .btn-ghost.wp-block-button__link {
  color: #fff;
}

.relevant-vacancy-block .text {
  color: #fff;
  font-size: 16px;
}

.relevant-vacancy-block img {
  max-height: 20px;
}

.relevant-vacancy-block .top-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 991px) {
  .relevant-vacancy-block .top-row {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media (max-width: 374px) {
  .relevant-vacancy-block .top-row {
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.relevant-vacancy-block .top-row .title {
  margin-right: 26px;
}

@media (max-width: 991px) {
  .relevant-vacancy-block .top-row .title {
    margin-bottom: 15px;
  }
}

@media (max-width: 374px) {
  .relevant-vacancy-block .top-row .btns-wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .relevant-vacancy-block .top-row .btns-wrapper .btn,
  .relevant-vacancy-block .top-row .btns-wrapper body .wp-block-button__link,
  body .relevant-vacancy-block .top-row .btns-wrapper .wp-block-button__link {
    margin-right: 0;
  }

  .relevant-vacancy-block .top-row .btns-wrapper .btn + .btn,
  .relevant-vacancy-block .top-row .btns-wrapper body .wp-block-button__link + .btn,
  body .relevant-vacancy-block .top-row .btns-wrapper .wp-block-button__link + .btn,
  .relevant-vacancy-block .top-row .btns-wrapper body .btn + .wp-block-button__link,
  body .relevant-vacancy-block .top-row .btns-wrapper .btn + .wp-block-button__link,
  .relevant-vacancy-block .top-row .btns-wrapper body .wp-block-button__link + .wp-block-button__link,
  body .relevant-vacancy-block .top-row .btns-wrapper .wp-block-button__link + .wp-block-button__link {
    margin-top: 15px;
  }
}

.relevant-vacancy-block .top-row .btns-wrapper .btn:first-child,
.relevant-vacancy-block .top-row .btns-wrapper body .wp-block-button__link:first-child,
body .relevant-vacancy-block .top-row .btns-wrapper .wp-block-button__link:first-child {
  margin-right: 15px;
}

.relevant-vacancy-block .confirmations-row {
  text-align: center;
}

.relevant-vacancy-block .confirmations-row .text {
  display: none;
}

.header-section-dark {
  position: relative;
  background-color: #4B4C6A;
  margin-bottom: 125px;
  padding-top: 100px;
}

.header-section-dark:has(+ .breadcrumbs-holder) {
  margin-bottom: 0;
}

.header-section-dark:has(+ .breadcrumbs-holder) + .breadcrumbs-holder {
  background-color: #4B4C6A;
}

.header-section-dark:has(+ .breadcrumbs-holder) + .breadcrumbs-holder a,
.header-section-dark:has(+ .breadcrumbs-holder) + .breadcrumbs-holder span,
.header-section-dark:has(+ .breadcrumbs-holder) + .breadcrumbs-holder i {
  color: #E2DFE8;
}

.header-section-dark:has(+ .breadcrumbs-holder) + .breadcrumbs-holder a.home::before {
  background-color: #E2DFE8;
}

@media (max-width: 767px) {
  .header-section-dark {
    margin-bottom: 55px;
  }
}

.header-section-dark .btn.btn-ghost,
.header-section-dark body .btn-ghost.wp-block-button__link,
body .header-section-dark .btn-ghost.wp-block-button__link {
  color: #fff;
}

.header-section-dark .section-inner {
  padding: 55px 0 25px;
}

.header-section-dark .content-row {
  position: relative;
}

.header-section-dark .content-col {
  margin-bottom: 30px;
}

.header-section-dark .content-col-title {
  position: relative;
}

.header-section-dark .title {
  color: #fff;
  margin-bottom: 19px;
}

.header-section-dark .title.search-title {
  font-size: 40px;
}

@media (max-width: 767px) {
  .header-section-dark .title {
    font-size: 30px;
  }
}

.header-section-dark .subtitle {
  color: #E2DFE8;
}

.header-section-dark .content-wrapper {
  margin-bottom: 24px;
}

.header-section-dark .content-wrapper p,
.header-section-dark .content-wrapper li,
.header-section-dark .content-wrapper a {
  color: #E2DFE8;
  font-size: 17px;
}

.header-section-dark .btns-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -7px -15px;
}

.header-section-dark .btns-wrapper .btn,
.header-section-dark .btns-wrapper body .wp-block-button__link,
body .header-section-dark .btns-wrapper .wp-block-button__link {
  margin: 0 7px 15px;
}

.header-section-dark .image-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: end;
  align-items: flex-end;
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 19px;
  text-align: center;
}

.header-section-dark .image-wrapper img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.active-filters-container {
  display: none;
  padding-bottom: 30px;
}

.active-filters-container .active-filters-inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  border-top: 1px solid #251e42;
  border-bottom: 1px solid #251e42;
  padding-top: 30px;
}

.active-filters-container .active-filters-inner .active-filters-text {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  margin-right: 16px;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .active-filters-container .active-filters-inner .active-filters-text {
    display: none;
  }
}

.active-filters-container .active-filters-inner .active-filters {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .active-filters-container .active-filters-inner .active-filters {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow: auto;
    padding-right: 30px;
  }
}

@media (max-width: 575px) {
  .active-filters-container .active-filters-inner .active-filters {
    margin-right: -19px;
  }
}

.active-filters-container .active-filters-inner .active-filters .filter-in-line {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  border-radius: 23px;
  background-color: #fff;
  color: #4d4a5b;
  line-height: 1.2;
  margin-right: 16px;
  margin-bottom: 30px;
  padding: 11px 55px 11px 20px;
  text-decoration: none;
}

.active-filters-container .active-filters-inner .active-filters .filter-in-line:last-child {
  margin-right: 0;
}

.active-filters-container .active-filters-inner .active-filters .filter-in-line .icon-trash {
  position: absolute;
  top: 50%;
  right: 25px;
  cursor: pointer;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 17px;
  height: 18px;
  background-size: 17px 18px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-trash.svg);
}

.active-filters-container .active-filters-inner .clear-filters {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: #fff;
  font-size: 15px;
  margin-left: 16px;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .active-filters-container .active-filters-inner .clear-filters {
    display: none;
  }
}

@media (max-width: 991px) {
  .vacancies-filter-form-layer {
    position: fixed;
    top: 100px;
    left: 0;
    bottom: 0;
    z-index: 50;
    width: 100%;
    background-color: #fff;
    overflow: auto;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    transition: all 0.3s ease-in-out;
  }

  .vacancies-filter-form-layer.opened {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.mobile-filters-controls {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 51;
  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,
.mobile-filters-controls .state body .wp-block-button__link,
body .mobile-filters-controls .state .wp-block-button__link {
  width: 100%;
  padding-top: 14px;
  padding-bottom: 14px;
}

.mobile-filters-controls .state .btn:after,
.mobile-filters-controls .state body .wp-block-button__link:after,
body .mobile-filters-controls .state .wp-block-button__link:after {
  display: none;
}

.mobile-filters-controls .state .btn span,
.mobile-filters-controls .state body .wp-block-button__link span,
body .mobile-filters-controls .state .wp-block-button__link span {
  position: relative;
  padding-right: 25px;
}

.mobile-filters-controls .state .btn span:after,
.mobile-filters-controls .state body .wp-block-button__link span:after,
body .mobile-filters-controls .state .wp-block-button__link 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,
.mobile-filters-controls .state body .open-filter.wp-block-button__link span:after,
body .mobile-filters-controls .state .open-filter.wp-block-button__link span:after {
  -webkit-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
}

.mobile-filters-controls .state .btn.close-filter span:after,
.mobile-filters-controls .state body .close-filter.wp-block-button__link span:after,
body .mobile-filters-controls .state .close-filter.wp-block-button__link span:after {
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}

.mobile-filters-controls .clear-filters {
  color: #191238;
  margin-top: 15px;
}

.vacancies-filter-form {
  position: relative;
  z-index: 15;
  background-color: #fff;
}

.vacancies-filter-form .form-title {
  position: relative;
  border-bottom: 1px solid #EFF0F9;
  font-size: 20px;
  font-weight: 500;
  margin: 0;
  padding: 20px;
}

.vacancies-filter-form .filter-wrapper.address-search-filter .address-search-input {
  background-color: #fff;
  background-image: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom: 1px solid #EFF0F9;
  font-size: 15px;
  /*                @media ( max-width: 991px ) {
                        font-size: 16px;
                    }*/
}

@media (max-width: 540px) {
  .vacancies-filter-form .filter-wrapper.address-search-filter .address-search-input {
    background-image: url("../../resources/images/svg/icon-map-pin.svg");
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) 50%;
    background-size: 17px 18px;
    padding-right: 30px;
  }
}

.vacancies-filter-form .filter-wrapper.address-search-filter .custom-filter-select {
  width: 128px;
  background-color: #fff;
  border-bottom: 1px solid #EFF0F9;
  border-radius: 0;
  text-transform: uppercase;
}

.vacancies-filter-form .filter-wrapper.address-search-filter .custom-filter-select:after {
  right: 20px;
}

@media (max-width: 540px) {
  .vacancies-filter-form .filter-wrapper.address-search-filter .custom-filter-select {
    width: auto;
  }
}

.vacancies-filter-form .filter-wrapper.address-search-filter .custom-filter-select .selected-wrap {
  padding: 13px 42px 13px 13px;
  text-align: right;
}

@media (min-width: 541px) {
  .vacancies-filter-form .filter-wrapper.address-search-filter .custom-filter-select .selected-wrap {
    padding-left: 50px;
  }
}

.vacancies-filter-form .filter-wrapper.address-search-filter .custom-filter-select .selected-wrap .selected-option {
  position: relative;
  display: inline-block;
  overflow: visible;
}

@media (min-width: 541px) {
  .vacancies-filter-form .filter-wrapper.address-search-filter .custom-filter-select .selected-wrap .selected-option:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -26px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 17px;
    height: 18px;
    background-size: 17px 18px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../../resources/images/svg/icon-map-pin.svg);
  }
}

.vacancies-filter-form .custom-filter-select {
  background-color: #fff;
  border-radius: 5px;
  font-size: 13px;
  /*        @media ( max-width: 991px ) {
                font-size: 16px;
            }*/
}

.vacancies-filter-form .custom-filter-select:after {
  width: 12px;
  height: 7px;
  background-size: 12px 7px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-arrow-down-db.svg);
}

.vacancies-filter-form .custom-filter-checkboxes {
  border-bottom: 1px solid #EFF0F9;
}

.vacancies-filter-form .custom-filter-checkboxes:first-child {
  border-top: 1px solid #EFF0F9;
}

.custom-filter-checkboxes {
  padding: 19px 20px 7px;
}

.custom-filter-checkboxes .filter-name {
  position: relative;
  cursor: pointer;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 13px;
}

.custom-filter-checkboxes .filter-name:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 12px;
  height: 7px;
  background-size: 12px 7px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-arrow-down-db.svg);
}

.custom-filter-checkboxes .filter-name.active:after {
  -webkit-transform: translateY(-50%) rotate(-180deg);
  transform: translateY(-50%) rotate(-180deg);
}

.custom-filter-checkboxes .checkboxes-toggle-holder {
  display: none;
  padding-bottom: 13px;
}

.custom-filter-checkboxes .checkboxes-toggle-holder.opened {
  display: block;
}

.custom-filter-checkboxes .checkboxes-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.custom-filter-checkboxes .checkboxes-wrapper .checkbox-wrapper {
  position: relative;
  padding-left: 33px;
}

.custom-filter-checkboxes .checkboxes-wrapper .checkbox-wrapper .filter-checkbox {
  display: none;
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

.custom-filter-checkboxes .checkboxes-wrapper .checkbox-wrapper .filter-checkbox:checked + .checkbox {
  background-image: linear-gradient(to right, #792182 0%, #e60f76 100%);
}

.custom-filter-checkboxes .checkboxes-wrapper .checkbox-wrapper .filter-checkbox:checked + .checkbox:before {
  display: none;
}

.custom-filter-checkboxes .checkboxes-wrapper .checkbox-wrapper .filter-checkbox:checked + .checkbox:after {
  content: "";
}

.custom-filter-checkboxes .checkboxes-wrapper .checkbox-wrapper .checkbox {
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  left: 0;
  width: 21px;
  height: 21px;
  border-radius: 2px;
  background-color: #EFF0F9;
  transition: all 0.3s ease-in-out;
}

.custom-filter-checkboxes .checkboxes-wrapper .checkbox-wrapper .checkbox:before {
  content: "";
  position: absolute;
  top: 1px;
  right: 1px;
  bottom: 1px;
  left: 1px;
  background-color: #fff;
  border-radius: 2px;
}

.custom-filter-checkboxes .checkboxes-wrapper .checkbox-wrapper .checkbox:after {
  margin: auto;
  width: 11px;
  height: 8px;
  background-size: 11px 8px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-check-filter.svg);
}

.custom-filter-checkboxes .checkboxes-wrapper .checkbox-wrapper .text {
  color: #4d4a5b;
  font-size: 15px;
}

.custom-filter-checkboxes .checkboxes-wrapper .checkbox-wrapper:hover .checkbox {
  background-image: linear-gradient(to right, #792182 0%, #e60f76 100%);
}

.custom-filter-checkboxes .checkboxes-wrapper .more-checkboxes {
  display: none;
}

.custom-filter-checkboxes .checkboxes-wrapper .more-checkboxes .more-checkboxes-inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.custom-filter-checkboxes .checkboxes-wrapper .show-more-less-checkboxes-filter {
  padding-top: 7px;
}

.custom-filter-checkboxes .checkboxes-wrapper .show-more:not(.active),
.custom-filter-checkboxes .checkboxes-wrapper .show-less:not(.active) {
  display: none;
}

.custom-filter-checkboxes .checkboxes-wrapper .show-more,
.custom-filter-checkboxes .checkboxes-wrapper .show-less {
  color: #191238;
  font-size: 15px;
  font-weight: 500;
}

.no-tag-block {
  background-color: #fff;
  box-shadow: 0px 4px 12px rgba(33, 33, 99, 0.1);
  border-radius: 5px;
  padding: 50px;
}

.no-tag-block .title {
  position: relative;
  margin-bottom: 10px;
  padding-top: 70px;
  text-align: center;
}

.no-tag-block .title:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 50px;
  height: 50px;
  background-size: 50px 50px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-filter.svg);
}

.vacancy-recruiter-block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  background-color: #fff;
  box-shadow: 0 8px 8px rgba(25, 18, 56, 0.05);
  padding: 30px;
  text-align: center;
  overflow: hidden;
}

@media (max-width: 374px) {
  .vacancy-recruiter-block {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.vacancy-recruiter-block:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #812182 0%, #DE1278 100%);
}

.vacancy-recruiter-block .image-wrapper {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  width: 87px;
  height: 87px;
  margin-right: 35px;
}

@media (max-width: 374px) {
  .vacancy-recruiter-block .image-wrapper {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

.vacancy-recruiter-block .image-wrapper img {
  position: relative;
  z-index: 1;
  border-radius: 50%;
}

.vacancy-recruiter-block .image-wrapper .link {
  position: absolute;
  right: -6px;
  bottom: -6px;
  z-index: 2;
}

.vacancy-recruiter-block .info-wrapper {
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.vacancy-recruiter-block .name {
  font-size: 20px;
  font-weight: 500;
  font-weight: normal;
}

.vacancy-recruiter-block .function {
  font-size: 15px;
  font-weight: 300;
}

.vacancy-recruiter-block {
  /*    .links-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
        }*/
}

.vacancy-recruiter-block .link {
  display: -ms-flexbox;
  display: flex;
  width: 40px;
  height: 40px;
  background: #191238;
  border-radius: 50%;
  margin: 0 7px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.vacancy-recruiter-block .link:hover {
  background: #ff0082;
}

.vacancy-recruiter-block .link:after {
  content: "";
  position: relative;
  z-index: 2;
  margin: auto;
}

.vacancy-recruiter-block .link.email:after {
  width: 16px;
  height: 13px;
  background-size: 16px 13px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-email-white.svg);
}

.vacancy-recruiter-block .link.phone:after {
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-phone-white.svg);
}

.vacancy-recruiter-block .link.chat:after {
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-whatsapp.svg);
}

.apply-block-part {
  background-color: #191238;
  box-shadow: 0 8px 8px rgba(25, 18, 56, 0.05);
  border-radius: 5px;
  padding: 30px 30px 15px;
  margin-bottom: 35px;
}

.apply-block-part .inner-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-direction: column;
  flex-direction: column;
}

.apply-block-part .inner-wrapper .image-wrapper {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 50px;
  margin-right: 16px;
  margin-bottom: 15px;
}

.apply-block-part .inner-wrapper .image-wrapper img {
  border-radius: 50%;
}

.apply-block-part .inner-wrapper .titles-wrapper {
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  padding-right: 16px;
  margin-bottom: 15px;
  text-align: center;
}

.apply-block-part .inner-wrapper .btn-wrapper {
  margin-bottom: 15px;
}

.apply-block-part .title {
  font-weight: 500;
}

.apply-block-part .title,
.apply-block-part .thin-title {
  color: #fff;
}

.usps-sidebar-block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  background-color: #fff;
  box-shadow: 0 8px 8px rgba(25, 18, 56, 0.05);
  border-radius: 5px;
  padding: 30px;
  margin-top: 40px;
  overflow: hidden;
}

.usps-sidebar-block:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #812182 0%, #DE1278 100%);
}

.usps-sidebar-block .title {
  font-size: 20px;
  margin-bottom: 18px;
}

.usps-sidebar-block .sidebar-usps {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 18px;
}

.usps-sidebar-block .sidebar-usps .item {
  position: relative;
  color: #191238;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  padding-left: 25px;
}

.usps-sidebar-block .sidebar-usps .item .icon-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 1px;
  left: 0;
  width: 15px;
  height: 15px;
}

.usps-sidebar-block .sidebar-usps .item .icon-wrapper img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.wp-block-image {
  margin-bottom: 30px;
}

.wp-element-caption {
  position: relative;
  color: #191238;
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  padding-left: 10px;
}

.wp-element-caption:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background-image: linear-gradient(to bottom, #e60f76 0%, #792182 100%);
  border-radius: 2px;
}

.wp-block-quote {
  position: relative;
  margin-bottom: 30px;
  padding-left: 25px;
}

.wp-block-quote:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background-image: linear-gradient(to bottom, #e60f76 0%, #792182 100%);
  border-radius: 2px;
}

.wp-block-quote p {
  color: #191238;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
}

.search-overlay {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: end;
  justify-content: flex-end;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 251px;
  background-color: #4B4C6A;
  opacity: 0;
  visibility: hidden;
  padding-bottom: 50px;
  transition: all 0.3s ease-in;
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-overlay .searchform {
  margin: auto;
}

.searchform {
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  width: 655px;
  max-width: 100%;
}

.searchform .input-search {
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: 100%;
  background: #FFF;
  border: none;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  padding: 15px 19px;
}

.searchform .input-search::-webkit-input-placeholder {
  color: #8F9193;
}

.searchform .input-search:-moz-placeholder {
  color: #8F9193;
}

.searchform .input-search::-moz-placeholder {
  color: #8F9193;
}

.searchform .input-search:-ms-input-placeholder {
  color: #8F9193;
}

.searchform .btn,
.searchform body .wp-block-button__link,
body .searchform .wp-block-button__link {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.mobile-searchform {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  max-width: 100%;
}

.mobile-searchform .input-search {
  -ms-flex-positive: 1;
  flex-grow: 1;
  background: #fff;
  border: none;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  padding: 15px 19px;
}

.mobile-searchform .input-search::-webkit-input-placeholder {
  color: #8F9193;
}

.mobile-searchform .input-search:-moz-placeholder {
  color: #8F9193;
}

.mobile-searchform .input-search::-moz-placeholder {
  color: #8F9193;
}

.mobile-searchform .input-search:-ms-input-placeholder {
  color: #8F9193;
}

.mobile-searchform .btn-icon {
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  height: 100%;
  background-color: transparent;
  border: none;
  padding: 0 20px;
}

.mobile-searchform .btn-icon::after {
  content: "";
  margin: auto;
  width: 21px;
  height: 22px;
  background-size: 21px 22px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-search-gradient.svg);
}

.vacancy-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  height: 100%;
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}

.vacancy-item .city {
  display: inline-block;
  position: relative;
  z-index: 2;
  background-image: linear-gradient(to right, #792182 0%, #e60f76 100%);
  border-top-right-radius: 5px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  padding: 9px 20px;
  text-transform: uppercase;
}

.vacancy-item .image-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
  align-items: flex-end;
  position: relative;
  height: 250px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  font-size: 0;
  /*        .hover-el {
                content: '';
                position: absolute;
                top: 0;
                right: 100%;
                z-index: 1;
                width: 102%;
                height: 100%;
                background-image: linear-gradient(to right, #780096 0%, #ff0082 100%);
                opacity: 0.75;
                transition: all .5s ease-in-out;

            }

            .hover-el {
                &.hover-in {
                    transform: translateX(100%);
                }

                &.hover-out {
                    transform: translateX(200%);
                }
            }*/
}

.vacancy-item .info-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-positive: 1;
  flex-grow: 1;
  position: relative;
  background-color: #f9f9f9;
  padding: 23px 20px 20px;
}

.vacancy-item .info-wrapper .mobile-city-holder {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
}

.vacancy-item .info-wrapper .title {
  max-width: 100%;
  font-weight: 500;
  margin-bottom: 27px;
}

.vacancy-item .info-wrapper .info-wrapper_bottom {
  margin-top: auto;
}

.vacancy-item .info-wrapper .vacancy-short-info {
  max-width: 100%;
  list-style-type: none;
  margin: 0 0 22px;
  padding: 0;
}

.vacancy-item .info-wrapper .vacancy-short-info .item {
  position: relative;
  color: #4c4c4c;
  font-size: 15px;
  line-height: 1;
  margin-bottom: 13px;
  padding-left: 30px;
}

.vacancy-item .info-wrapper .vacancy-short-info .item:last-child {
  margin-bottom: 0;
}

.vacancy-item .info-wrapper .vacancy-short-info .item:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.vacancy-item .info-wrapper .view-link {
  position: relative;
  color: #000;
  font-size: 17px;
  font-weight: 500;
  margin-top: auto;
  padding-right: 16px;
  text-decoration: none;
}

.vacancy-item .info-wrapper .view-link:after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.vacancy-item .block-link {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  outline: none;
}

.vacancy-item:hover {
  box-shadow: 0 4px 12px 0 rgba(33, 33, 99, 0.1);
}

.vacancies-archive-header {
  position: relative;
  background-color: #4B4C6A;
}

.vacancies-archive-header.header-section-dark {
  margin-bottom: -65px;
}

.vacancies-archive-header.header-section-dark .section-inner {
  padding: 75px 0 65px;
}

@media (max-width: 991px) {
  .vacancies-archive-header.header-section-dark .section-inner {
    padding-top: 30px;
  }
}

.vacancies-archive-header .subtitle {
  color: #fff;
}

.vacancies-archive-header .page-title {
  color: #fff;
  font-size: 60px;
  font-weight: 200;
  margin-bottom: 68px;
  text-align: center;
}

@media (max-width: 991px) {
  .vacancies-archive-header .page-title {
    font-size: 30px;
    margin-bottom: 30px;
  }
}

.vacancies-archive-header .filter-number-result-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.vacancies-archive-header .filter-number-result-row .results-title {
  color: #fff;
  font-size: 20px;
  font-weight: 200;
  margin-bottom: 25px;
  margin-right: 19px;
}

.vacancies-archive-header .filter-number-result-row .found-vacancies-text {
  color: #fff;
  font-size: 20px;
  font-weight: 200;
  line-height: 1;
  margin-bottom: 25px;
}

@media (max-width: 991px) {
  .vacancies-archive-header .filter-number-result-row .found-vacancies-text {
    font-size: 17px;
  }
}

.vacancy-form-search {
  position: relative;
  z-index: 21;
  margin-bottom: 125px;
}

@media (max-width: 767px) {
  .vacancy-form-search {
    margin-bottom: 25px;
  }
}

.vacancy-form-search .filters-holder {
  margin-bottom: -10px;
}

/*.response-vacancies-container {
    @media(min-width: 768px){
        min-height: 124px;
    }
}*/

.response-vacancies {
  position: relative;
  z-index: 20;
  margin-left: -19px;
  margin-right: -19px;
  padding-bottom: 20px;
}

.response-vacancies .preloader {
  width: auto;
  left: 19px;
  right: 19px;
}

.response-vacancies {
  /*    @media(min-width: 768px){
            top: -75px;
            margin-bottom: -75px;
            padding-top: 0;
        }*/
}

.vacancy-term-column {
  margin-bottom: 30px;
}

.vacancy-archive-column {
  margin-bottom: 3px;
}

@media (max-width: 991px) {
  .vacancy-archive-column {
    padding-left: 0;
    padding-right: 0;
  }
}

/*.vacancy-archive-column {
    margin-bottom: 20px;

    @media(min-width: 768px){
        margin-bottom: 40px;
    }

    @media(max-width: 767px){
        .vacancy-item {
            .image-wrapper {
                display: none;
            }

            .info-wrapper {
                padding: 15px 20px;

                .mobile-city-holder {
                    display: block;
                    max-width: 30%;
                }

                .title {
                    max-width: 70%;
                    margin-bottom: 12px;
                }

                .vacancy-short-info {
                    display: flex;
                    align-items: center;
                    margin: 0 0 5px;

                    .item {
                        margin-bottom: 13px;
                        margin-right: 25px;

                        &:last-child {
                            margin-right: 0;
                        }
                    }
                }
            }
        }
    }
}*/

.pagination-vacancies {
  position: relative;
  z-index: 20;
  margin-bottom: 50px;
}

.tax-sections-overview {
  position: relative;
  z-index: 50;
  margin-bottom: 150px;
}

.main-vacancies-archive {
  background-color: #E2DFE8;
}

.news-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  height: 100%;
}

.news-item .image-holder {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
  align-items: flex-end;
  position: relative;
  height: 270px;
  border-radius: 5px 5px 0 0;
  overflow: hidden;
}

.news-item .image-holder .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 1.5s ease-in-out;
}

.news-item .image-holder .video-highlight {
  display: inline-block;
  position: absolute;
  right: 30px;
  bottom: 30px;
}

.news-item .info-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-positive: 1;
  flex-grow: 1;
  background-color: #fff;
  border-radius: 0 0 5px 5px;
  padding: 25px;
  transition: all 0.3s ease-in-out;
}

.news-item .info-wrapper .meta-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.news-item .info-wrapper .date {
  max-width: 100%;
  color: #4c4c4c;
  font-size: 15px;
  margin-bottom: 13px;
}

.news-item .info-wrapper .title {
  max-width: 100%;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 10px;
}

.news-item .info-wrapper .excerpt-wrapper {
  color: #191238;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 15px;
}

.news-item .info-wrapper .view-link {
  position: relative;
  color: #3E2666;
  font-size: 16px;
  font-weight: 500;
  margin-top: auto;
  padding-right: 16px;
  text-decoration: none;
}

.news-item .info-wrapper .view-link:after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 7px;
  height: 12px;
  -webkit-mask-size: 7px 12px;
  mask-size: 7px 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-arrow-right-black.svg);
  mask-image: url(../../resources/images/svg/icon-arrow-right-black.svg);
  background-color: #3E2666;
}

.news-item .block-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  outline: none;
}

.news-item:hover .info-wrapper {
  background-color: #fff;
}

.news-item .reading-time {
  color: #4e4966;
}

.news-item .reading-time:before {
  width: 15px;
  height: 15px;
  background-size: 15px 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-hours-news-dark.svg);
}

.for-dark-style .news-item .info-wrapper {
  border-color: #130C33;
}

.for-dark-style .news-item .info-wrapper .title {
  color: #fff;
}

.for-dark-style .news-item .info-wrapper .excerpt-wrapper {
  color: #EFF0F9;
}

.for-dark-style .news-item .view-link {
  color: #fff;
}

.for-dark-style .news-item:hover .info-wrapper {
  background-color: #130C33;
}

.for-dark-style .news-item .reading-time {
  color: #e1e2ed;
}

.for-dark-style .news-item .reading-time:before {
  width: 15px;
  height: 15px;
  background-size: 15px 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-hours-news.svg);
}

.category-label {
  display: inline-block;
  background-color: #3E2666;
  border-radius: 25px;
  color: #EFF0F9;
  font-size: 16px;
  line-height: 1;
  padding: 8px 15px;
}

.reading-time {
  position: relative;
  color: #b8b7c7;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  padding-left: 23px;
}

.reading-time:before {
  width: 15px;
  height: 15px;
  background-size: 15px 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-hours-news.svg);
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

.vacancy-header {
  position: relative;
  background-color: #4B4C6A;
  margin-bottom: 48px;
}

.vacancy-header .header-inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: end;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
  padding: 77px 0;
}

.vacancy-header .header-inner .title {
  color: #fff;
}

@media (max-width: 767px) {
  .vacancy-header .header-inner .title {
    font-size: 25px;
  }
}

.vacancy-header .header-inner .subtitle {
  color: #fff;
  font-size: 15px;
}

.vacancy-info-row {
  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;
  background-color: #fff;
  padding: 20px 5px 25px;
}

.vacancy-info-row .vacancy-info-blocks-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 5px;
}

.vacancy-info-row .btn-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 25px;
}

.vacancy-info-row .btn-wrapper .apply-text {
  font-size: 16px;
  font-weight: 500;
  margin-right: 15px;
}

@media (max-width: 767px) {
  .vacancy-info-row .btn-wrapper .apply-text {
    display: none;
  }
}

.vacancy-info-block {
  position: relative;
  color: #000;
  font-size: 16px;
  padding: 0 25px;
  margin: 5px 0;
}

.vacancy-info-block:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #f1f1f1;
}

.vacancy-info-block:last-child:after {
  display: none;
}

.vacancy-info-block .inner-block-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.vacancy-info-block .inner-block-wrapper:before {
  content: "";
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 15px;
}

.vacancy-info-block .inner-block-wrapper span {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.vacancy-info-block.time .inner-block-wrapper:before {
  width: 17px;
  height: 17px;
  background-size: 17px 17px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-clock-gradient.svg);
}

.vacancy-info-block.department .inner-block-wrapper:before {
  width: 17px;
  height: 16px;
  background-size: 17px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-suitcase-gradient.svg);
}

.vacancy-info-block.salary .inner-block-wrapper:before {
  width: 18px;
  height: 12px;
  background-size: 18px 12px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-salary.svg);
}

.vacancy-info-block.city .inner-block-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  max-width: 210px;
  padding-left: 32px;
}

.vacancy-info-block.city .inner-block-wrapper:before {
  width: 17px;
  height: 20px;
  background-size: 17px 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-location-gradient.svg);
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.vacancy-main {
  background-color: #E2DFE8;
}

.vacancy-main .mobile-divider {
  border: none;
  border-top: 1px solid #f1f1f1;
  margin: 0 0 25px;
}

.vacancy-main .vacancy-information {
  position: relative;
  z-index: 21;
}

.vacancy-main .vacancy-information .content-container {
  background: #fff;
  padding: 30px;
}

.vacancy-main .vacancy-information .shares-part {
  border-top: 1px solid #EFF0F9;
  padding: 35px 0 5px;
}

.vacancy-main .article-content-row {
  margin-bottom: 50px;
}

.vacancy-main .article-content-row .content-col {
  margin-bottom: 38px;
}

.vacancy-main .sticky-column {
  position: relative;
  height: 100%;
  margin-bottom: 30px;
}

.vacancy-main .shares {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.vacancy-main .shares .share-text {
  font-size: 16px;
  margin-right: 15px;
}

.vacancy-main .shares .a2a_kit {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.vacancy-main .shares .a2a_kit a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 767px) {
  .vacancy-main .shares .a2a_kit a {
    padding: 0 15px;
  }
}

.vacancy-main .shares .a2a_kit a:first-child {
  padding-left: 0;
}

.vacancy-main .shares .a2a_kit a:last-child {
  padding-right: 0;
}

.vacancy-main .shares .a2a_kit.addtoany_list a:hover img,
.vacancy-main .shares .a2a_kit.addtoany_list a:hover span {
  opacity: 1;
}

.vacancy-main .usps-settings-part .section-title {
  font-family: "Noto Sans";
  font-size: 25px;
  margin-bottom: 13px;
}

.vacancy-main .usps-settings-part .usps-group-description {
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .vacancy-main .usps-settings-part .usps-group-description p {
    font-size: inherit;
  }
}

.vacancy-main .usps-settings-part .usp-col {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .vacancy-main .usps-settings-part .usp-col {
    margin-bottom: 20px;
  }
}

.vacancy-main .usps-settings-part .usp-item-vacancy .title-row .icon-wrapper {
  width: 25px;
  margin-right: 20px;
}

.vacancy-main .usps-settings-part .usp-item-vacancy .title-row .icon-wrapper img {
  max-width: 100%;
}

.vacancy-main .usps-settings-part .usp-item-vacancy .info-wrapper {
  padding-left: 45px;
}

.vacancy-main .content-title {
  font-family: "Noto Sans";
  margin-bottom: 15px;
}

.vacancy-main .gallery-section {
  margin-bottom: 50px;
}

.vacancies-section {
  margin-bottom: 75px;
}

.vacancies-section.in-sections {
  background-color: #E2DFE8;
  padding: 100px 0 85px;
}

.vacancies-section.related {
  position: relative;
  z-index: 20;
  margin-bottom: 100px;
  padding-top: 100px;
}

@media (max-width: 991px) {
  .vacancies-section.related .section-title {
    font-size: 25px;
  }
}

.vacancies-section.client {
  position: relative;
  margin-bottom: 100px;
}

.vacancies-section.client .section-title {
  text-align: center;
}

.vacancies-section.client .video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.vacancies-section.client .video-background video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.vacancies-section.client .section-inner {
  position: relative;
  z-index: 2;
}

.vacancies-section.client .button-col {
  padding-top: 35px;
}

.vacancies-section.single {
  padding: 0 !important;
}

.vacancies-section .title-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
  align-items: flex-end;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.vacancies-section .title-row .titles-wrapper {
  margin-right: 15px;
}

.vacancies-section .title-row .btn,
.vacancies-section .title-row body .wp-block-button__link,
body .vacancies-section .title-row .wp-block-button__link {
  margin-bottom: 25px;
}

.vacancies-section.has-bottom-margin {
  margin-bottom: 55px;
}

.vacancies-section .titles-wrapper {
  margin-bottom: 25px;
}

.vacancies-section .vacancy-col {
  margin-bottom: 15px;
}

.vacancies-section .btn-wrapper {
  padding-top: 30px;
}

.apply-form-section .section-title {
  font-weight: 500;
  margin-bottom: 30px;
}

.apply-form-section .content-wrapper {
  margin-bottom: 50px;
}

.apply-form-section .gform_wrapper .gform_footer .gform_button {
  width: 100%;
}

.header-archive-news {
  margin-bottom: 0;
}

.header-archive-news .section-inner {
  position: relative;
  z-index: 21;
}

.header-archive-news .title {
  margin-bottom: 30px;
}

.header-archive-news .filters-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;
  gap: 10px;
  margin-bottom: 5px;
}

.filter-label-checkbox {
  margin: 0;
  padding: 0;
}

.filter-label-checkbox input[type=checkbox] {
  display: none;
  opacity: 0;
  visibility: hidden;
}

.filter-label-checkbox input[type=checkbox]:checked + .label-inner:before {
  opacity: 1;
}

.filter-label-checkbox .label-inner {
  display: inline-block;
  position: relative;
  background-color: transparent;
  background-image: none;
  border: 2px solid #e41077;
  border-radius: 25px;
  cursor: pointer;
  line-height: 1;
  padding: 8px 15px;
}

.filter-label-checkbox .label-inner:before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  width: auto;
  height: auto;
  background-image: linear-gradient(to right, #e60f76 0%, #792182 100%);
  border-radius: 25px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}

.filter-label-checkbox .text {
  position: relative;
  z-index: 2;
  color: #EFF0F9;
  font-size: 16px;
  line-height: 1;
}

.news-archive-overview {
  position: relative;
  z-index: 20;
  background-color: #191238;
  margin-bottom: 25px;
  padding-bottom: 95px;
}

.news-archive-overview:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 100%;
  width: 100%;
  height: 486px;
  background-image: url(../../resources/images/shapes/wave-news.png);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transform: translateY(250px);
  transform: translateY(250px);
}

.news-archive-overview .response-row {
  position: relative;
}

.news-archive-overview .response-row .preloader {
  opacity: 0.3;
}

.news-archive-overview .news-column {
  margin-bottom: 30px;
}

.news-archive-overview .pagination-wrapper {
  padding-top: 20px;
  margin-bottom: 30px;
}

.single-news {
  background-color: #EFF0F9;
}

.header-single-news {
  margin-bottom: 0;
}

.header-single-news .content-col {
  position: relative;
  z-index: 2;
}

.header-single-news .back-link-wrapper {
  margin-bottom: 15px;
}

.header-single-news .meta-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.header-single-news .title {
  margin-bottom: 50px;
}

.header-single-news .image-holder {
  position: relative;
  margin-bottom: 50px;
}

.header-single-news .image-holder:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 94px;
  width: 100%;
  height: 486px;
  background-image: url(../../resources/images/shapes/wave-news-1.png);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

.header-single-news .image-holder .image-wrapper {
  position: relative;
  z-index: 2;
  height: 300px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 5px;
}

.header-single-news .image-holder .image-wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(135, 51, 142, 0) 0%, rgba(25, 18, 56, 0.75) 100%);
}

.header-single-news .second-meta-col {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 50px;
}

.header-single-news .single-news-second-meta .label {
  color: #EFF0F9;
}

.header-single-news .single-news-second-meta .text {
  color: #b9b8c9;
}

.single-news-second-meta {
  display: -ms-flexbox;
  display: flex;
  gap: 37px;
}

.single-news-second-meta .meta-block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.single-news-second-meta .meta-block .label {
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
}

.single-news-second-meta .meta-block .text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1;
}

.news-content-container {
  position: relative;
  z-index: 20;
  margin-top: -38px;
}

.news-content-container .content-holder {
  border-radius: 5px 5px 0 0;
  background: #fff;
  box-shadow: 0 8px 12px 4px rgba(19, 12, 51, 0.05);
  padding: 25px 15px;
}

.news-content-container .content-inner {
  margin-bottom: 50px;
}

.news-content-container h2,
.news-content-container .h2 {
  font-size: 34px;
}

.news-content-container h3,
.news-content-container .h3 {
  font-size: 30px;
}

.news-content-container .content-footer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
  border-top: 2px solid #f3f4fa;
  padding-top: 50px;
  margin-bottom: 25px;
}

.news-content-container .content-footer .shares-part-colored a:before {
  opacity: 1;
}

.shares-part-colored .a2a_kit {
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}

.shares-part-colored .a2a_kit a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  width: 40px;
  height: 40px;
  border: 2px solid #e41077 !important;
  border-radius: 50%;
}

.shares-part-colored .a2a_kit a:before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  width: auto;
  height: auto;
  background-image: linear-gradient(to right, #e60f76 0%, #792182 100%);
  border-radius: 25px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}

.shares-part-colored .a2a_kit a:hover img,
.shares-part-colored .a2a_kit a:hover span {
  opacity: 1;
}

.shares-part-colored .a2a_kit a:hover:before {
  opacity: 1;
}

.shares-part-colored .a2a_svg {
  position: relative;
  z-index: 2;
}

.shares-part-colored .a2a_svg svg path {
  fill: #fff;
}

.recruiter-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  height: 100%;
}

.recruiter-item .image-holder {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
  align-items: flex-end;
  position: relative;
  height: 250px;
  overflow: hidden;
}

.recruiter-item .image-holder .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 1.5s ease-in-out;
}

.recruiter-item .image-holder .label {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  padding: 9px 20px;
  text-transform: uppercase;
}

.recruiter-item .image-holder .label.blue {
  background-color: #0087ff;
}

.recruiter-item .image-holder .label.turquoise {
  background-color: #00af9b;
}

.recruiter-item .image-holder .label.yellow {
  background-color: #f5d200;
}

.recruiter-item .image-holder .label.pink {
  background-color: #ff0082;
}

.recruiter-item .image-holder .label .no-text-transform {
  font-weight: 300;
  text-transform: initial;
}

.recruiter-item .info-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-positive: 1;
  flex-grow: 1;
  background-color: #f9f9f9;
  padding: 20px 20px 26px;
}

.recruiter-item .info-wrapper .top-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 11px;
}

.recruiter-item .info-wrapper .top-row .names-wrapper {
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-right: 20px;
}

.recruiter-item .info-wrapper .top-row .names-wrapper .name {
  font-weight: 500;
  margin-bottom: 4px;
}

.recruiter-item .info-wrapper .top-row .socials-wrapper {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  max-width: 108px;
}

.recruiter-item .info-wrapper .top-row .socials-wrapper .social:first-child {
  margin-left: 0;
}

.recruiter-item .info-wrapper .top-row .socials-wrapper .social:last-child {
  margin-right: 0;
}

.recruiter-item .info-wrapper .top-row .socials-wrapper .social {
  margin: 0 15px;
}

.recruiter-item .info-wrapper .bottom-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-direction: column;
  flex-direction: column;
}

.recruiter-item .info-wrapper .bottom-row .link {
  position: relative;
  max-width: 100%;
  color: #000;
  font-size: 15px;
  margin-bottom: 8px;
  padding-left: 40px;
  text-decoration: none;
}

.recruiter-item .info-wrapper .bottom-row .link:last-child {
  margin-bottom: 0;
}

.recruiter-item .info-wrapper .bottom-row .link:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 5px;
  left: 0;
}

.recruiter-item .block-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  outline: none;
}

.recruiter-item:hover .image-holder .image-wrapper {
  -webkit-transform: scale(1.075);
  transform: scale(1.075);
}

.recruiter-archive-overview {
  position: relative;
  z-index: 11;
  margin-bottom: 25px;
  /*    @media(min-width: 768px){
            top: -100px;
        }*/
}

.recruiter-archive-overview .loop-column {
  margin-bottom: 40px;
}

.recruiter-archive-overview .pagination-wrapper {
  padding-top: 10px;
}

main.brand-new {
  background-color: #f9f9f9;
}

main.brand-new .brand-content-holder {
  position: relative;
  z-index: 5;
  padding-top: 70px;
  margin-bottom: 80px;
}

main.brand-new .brand-content-holder .logo-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

main.brand-new .brand-content-holder .logo-row .logo-wrapper {
  margin-bottom: 50px;
}

main.brand-new .brand-content-holder .logo-row .btn-wrapper {
  margin-bottom: 50px;
}

main.brand-new .brand-content-holder:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
}

main.brand-new .usps-settings-part .section-title {
  font-family: "Noto Sans";
  font-size: 25px;
  margin-bottom: 13px;
}

main.brand-new .usps-settings-part .usps-group-description {
  margin-bottom: 45px;
}

@media (max-width: 767px) {
  main.brand-new .usps-settings-part .usps-group-description {
    margin-bottom: 20px;
  }

  main.brand-new .usps-settings-part .usps-group-description p {
    font-size: inherit;
  }
}

main.brand-new .usps-settings-part .usp-col {
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  main.brand-new .usps-settings-part .usp-col {
    margin-bottom: 20px;
  }
}

main.brand-new .gallery-section.shape-on-top:after {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 125px;
  background-color: #f1f1f1;
}

@media (max-width: 767px) {
  main.brand-new .gallery-section.shape-on-top:after {
    height: 50px;
  }
}

main.brand-new .gallery-section:not(.shape-on-top) + .vacancies-section {
  padding-top: 50px;
}

main.brand-new .gallery-section:not(.shape-on-top) .bg-underlayer:after {
  background-image: url(../../resources/images/shapes/swirlshape-header-gray-2.svg);
}

main.brand-new .vacancies-section {
  background-color: #f1f1f1;
}

main.brand-orange .header-brand {
  background-color: #ff5c00;
}

main.brand-orange .brand-white-btn,
main.brand-blue .gallery-section main.brand-orange .btn,
main.brand-blue .gallery-section body main.brand-orange .wp-block-button__link,
main.brand-orange body main.brand-blue .gallery-section .wp-block-button__link,
body main.brand-blue .gallery-section main.brand-orange .wp-block-button__link,
main.brand-blue .home-header-section main.brand-orange .btn,
main.brand-blue .home-header-section body main.brand-orange .wp-block-button__link,
main.brand-orange body main.brand-blue .home-header-section .wp-block-button__link,
body main.brand-blue .home-header-section main.brand-orange .wp-block-button__link,
main.brand-orange .gallery-section .btn,
main.brand-orange .gallery-section body .wp-block-button__link,
body main.brand-orange .gallery-section .wp-block-button__link,
main.brand-orange .home-header-section .btn,
main.brand-orange .home-header-section body .wp-block-button__link,
body main.brand-orange .home-header-section .wp-block-button__link {
  background-color: #fff;
  color: #ff5c00;
}

main.brand-orange .brand-white-btn:before,
main.brand-blue .gallery-section main.brand-orange .btn:before,
main.brand-blue .gallery-section body main.brand-orange .wp-block-button__link:before,
main.brand-orange body main.brand-blue .gallery-section .wp-block-button__link:before,
body main.brand-blue .gallery-section main.brand-orange .wp-block-button__link:before,
main.brand-blue .home-header-section main.brand-orange .btn:before,
main.brand-blue .home-header-section body main.brand-orange .wp-block-button__link:before,
main.brand-orange body main.brand-blue .home-header-section .wp-block-button__link:before,
body main.brand-blue .home-header-section main.brand-orange .wp-block-button__link:before,
main.brand-orange .gallery-section .btn:before,
main.brand-orange .gallery-section body .wp-block-button__link:before,
body main.brand-orange .gallery-section .wp-block-button__link:before,
main.brand-orange .home-header-section .btn:before,
main.brand-orange .home-header-section body .wp-block-button__link:before,
body main.brand-orange .home-header-section .wp-block-button__link:before {
  background-color: rgb(204, 73.6, 0);
}

main.brand-orange .brand-white-btn:hover,
main.brand-blue .gallery-section main.brand-orange .btn:hover,
main.brand-blue .gallery-section body main.brand-orange .wp-block-button__link:hover,
main.brand-orange body main.brand-blue .gallery-section .wp-block-button__link:hover,
body main.brand-blue .gallery-section main.brand-orange .wp-block-button__link:hover,
main.brand-blue .home-header-section main.brand-orange .btn:hover,
main.brand-blue .home-header-section body main.brand-orange .wp-block-button__link:hover,
main.brand-orange body main.brand-blue .home-header-section .wp-block-button__link:hover,
body main.brand-blue .home-header-section main.brand-orange .wp-block-button__link:hover,
main.brand-orange .gallery-section .btn:hover,
main.brand-orange .gallery-section body .wp-block-button__link:hover,
body main.brand-orange .gallery-section .wp-block-button__link:hover,
main.brand-orange .home-header-section .btn:hover,
main.brand-orange .home-header-section body .wp-block-button__link:hover,
body main.brand-orange .home-header-section .wp-block-button__link:hover,
main.brand-orange .brand-white-btn:focus,
main.brand-blue .gallery-section main.brand-orange .btn:focus,
main.brand-blue .gallery-section body main.brand-orange .wp-block-button__link:focus,
main.brand-orange body main.brand-blue .gallery-section .wp-block-button__link:focus,
body main.brand-blue .gallery-section main.brand-orange .wp-block-button__link:focus,
main.brand-blue .home-header-section main.brand-orange .btn:focus,
main.brand-blue .home-header-section body main.brand-orange .wp-block-button__link:focus,
main.brand-orange body main.brand-blue .home-header-section .wp-block-button__link:focus,
body main.brand-blue .home-header-section main.brand-orange .wp-block-button__link:focus,
main.brand-orange .gallery-section .btn:focus,
main.brand-orange .gallery-section body .wp-block-button__link:focus,
body main.brand-orange .gallery-section .wp-block-button__link:focus,
main.brand-orange .home-header-section .btn:focus,
main.brand-orange .home-header-section body .wp-block-button__link:focus,
body main.brand-orange .home-header-section .wp-block-button__link:focus {
  color: #fff;
}

main.brand-orange .brand-btn,
main.brand-orange main.brand-blue .btn,
main.brand-blue main.brand-orange .btn,
main.brand-orange .btn,
main.brand-orange body .wp-block-button__link,
body main.brand-orange .wp-block-button__link {
  background-color: #ff5c00;
}

main.brand-orange .brand-btn:before,
main.brand-orange .btn:before,
main.brand-orange body .wp-block-button__link:before,
body main.brand-orange .wp-block-button__link:before {
  background-color: rgb(204, 73.6, 0);
}

main.brand-orange .brand-btn-ghost,
main.brand-orange main.brand-blue .btn-ghost,
main.brand-blue main.brand-orange .btn-ghost,
main.brand-orange .btn-ghost {
  background-color: transparent;
  border-color: #ff5c00;
  color: #ff5c00;
}

main.brand-orange .brand-btn-ghost:before,
main.brand-orange .btn-ghost:before {
  background-color: #ff5c00;
}

main.brand-orange .brand-btn-ghost:hover,
main.brand-orange main.brand-blue .btn-ghost:hover,
main.brand-blue main.brand-orange .btn-ghost:hover,
main.brand-orange .btn-ghost:hover,
main.brand-orange .brand-btn-ghost:focus,
main.brand-orange main.brand-blue .btn-ghost:focus,
main.brand-blue main.brand-orange .btn-ghost:focus,
main.brand-orange .btn-ghost:focus {
  background-color: #ff5c00;
  color: #fff;
}

main.brand-orange .home-header-section {
  margin-bottom: 0;
}

main.brand-orange .home-header-section .section-inner:before {
  background-image: none;
  background-color: #ff5c00;
}

main.brand-orange .gallery-section .bg-underlayer {
  background-color: #ff5c00;
}

main.brand-orange .gallery-section.shape-on-top .bg-underlayer:after {
  background-image: url(../../resources/images/shapes/swirlshape-header-orange-2.svg);
}

main.brand-orange .vacancy-item .city {
  background-color: #ff5c00 !important;
}

main.brand-blue .header-brand {
  background-color: #0087ff;
}

main.brand-blue .brand-white-btn,
main.brand-blue .gallery-section .btn,
main.brand-blue .gallery-section body .wp-block-button__link,
body main.brand-blue .gallery-section .wp-block-button__link,
main.brand-blue .home-header-section .btn,
main.brand-blue .home-header-section body .wp-block-button__link,
body main.brand-blue .home-header-section .wp-block-button__link,
main.brand-orange .home-header-section main.brand-blue .btn,
main.brand-orange .home-header-section body main.brand-blue .wp-block-button__link,
main.brand-blue body main.brand-orange .home-header-section .wp-block-button__link,
body main.brand-orange .home-header-section main.brand-blue .wp-block-button__link,
main.brand-orange .gallery-section main.brand-blue .btn,
main.brand-orange .gallery-section body main.brand-blue .wp-block-button__link,
main.brand-blue body main.brand-orange .gallery-section .wp-block-button__link,
body main.brand-orange .gallery-section main.brand-blue .wp-block-button__link {
  background-color: #fff;
  color: #0087ff;
}

main.brand-blue .brand-white-btn:before,
main.brand-blue .gallery-section .btn:before,
main.brand-blue .gallery-section body .wp-block-button__link:before,
body main.brand-blue .gallery-section .wp-block-button__link:before,
main.brand-blue .home-header-section .btn:before,
main.brand-blue .home-header-section body .wp-block-button__link:before,
body main.brand-blue .home-header-section .wp-block-button__link:before,
main.brand-orange .home-header-section main.brand-blue .btn:before,
main.brand-orange .home-header-section body main.brand-blue .wp-block-button__link:before,
main.brand-blue body main.brand-orange .home-header-section .wp-block-button__link:before,
body main.brand-orange .home-header-section main.brand-blue .wp-block-button__link:before,
main.brand-orange .gallery-section main.brand-blue .btn:before,
main.brand-orange .gallery-section body main.brand-blue .wp-block-button__link:before,
main.brand-blue body main.brand-orange .gallery-section .wp-block-button__link:before,
body main.brand-orange .gallery-section main.brand-blue .wp-block-button__link:before {
  background-color: #006ccc;
}

main.brand-blue .brand-white-btn:hover,
main.brand-blue .gallery-section .btn:hover,
main.brand-blue .gallery-section body .wp-block-button__link:hover,
body main.brand-blue .gallery-section .wp-block-button__link:hover,
main.brand-blue .home-header-section .btn:hover,
main.brand-blue .home-header-section body .wp-block-button__link:hover,
body main.brand-blue .home-header-section .wp-block-button__link:hover,
main.brand-orange .home-header-section main.brand-blue .btn:hover,
main.brand-orange .home-header-section body main.brand-blue .wp-block-button__link:hover,
main.brand-blue body main.brand-orange .home-header-section .wp-block-button__link:hover,
body main.brand-orange .home-header-section main.brand-blue .wp-block-button__link:hover,
main.brand-orange .gallery-section main.brand-blue .btn:hover,
main.brand-orange .gallery-section body main.brand-blue .wp-block-button__link:hover,
main.brand-blue body main.brand-orange .gallery-section .wp-block-button__link:hover,
body main.brand-orange .gallery-section main.brand-blue .wp-block-button__link:hover,
main.brand-blue .brand-white-btn:focus,
main.brand-blue .gallery-section .btn:focus,
main.brand-blue .gallery-section body .wp-block-button__link:focus,
body main.brand-blue .gallery-section .wp-block-button__link:focus,
main.brand-blue .home-header-section .btn:focus,
main.brand-blue .home-header-section body .wp-block-button__link:focus,
body main.brand-blue .home-header-section .wp-block-button__link:focus,
main.brand-orange .home-header-section main.brand-blue .btn:focus,
main.brand-orange .home-header-section body main.brand-blue .wp-block-button__link:focus,
main.brand-blue body main.brand-orange .home-header-section .wp-block-button__link:focus,
body main.brand-orange .home-header-section main.brand-blue .wp-block-button__link:focus,
main.brand-orange .gallery-section main.brand-blue .btn:focus,
main.brand-orange .gallery-section body main.brand-blue .wp-block-button__link:focus,
main.brand-blue body main.brand-orange .gallery-section .wp-block-button__link:focus,
body main.brand-orange .gallery-section main.brand-blue .wp-block-button__link:focus {
  color: #fff;
}

main.brand-blue .brand-btn,
main.brand-blue .btn,
main.brand-blue body .wp-block-button__link,
body main.brand-blue .wp-block-button__link,
main.brand-blue main.brand-orange .btn,
main.brand-orange main.brand-blue .btn {
  background-color: #0087ff;
}

main.brand-blue .brand-btn:before,
main.brand-blue .btn:before,
main.brand-blue body .wp-block-button__link:before,
body main.brand-blue .wp-block-button__link:before {
  background-color: #006ccc;
}

main.brand-blue .brand-btn-ghost,
main.brand-blue .btn-ghost,
main.brand-blue main.brand-orange .btn-ghost,
main.brand-orange main.brand-blue .btn-ghost {
  background-color: transparent;
  border-color: #0087ff;
  color: #0087ff;
}

main.brand-blue .brand-btn-ghost:before,
main.brand-blue .btn-ghost:before {
  background-color: #0087ff;
}

main.brand-blue .brand-btn-ghost:hover,
main.brand-blue .btn-ghost:hover,
main.brand-blue main.brand-orange .btn-ghost:hover,
main.brand-orange main.brand-blue .btn-ghost:hover,
main.brand-blue .brand-btn-ghost:focus,
main.brand-blue .btn-ghost:focus,
main.brand-blue main.brand-orange .btn-ghost:focus,
main.brand-orange main.brand-blue .btn-ghost:focus {
  background-color: #0087ff;
  color: #fff;
}

main.brand-blue .home-header-section {
  margin-bottom: 0;
}

main.brand-blue .home-header-section .section-inner:before {
  background-image: none;
  background-color: #0087ff;
}

main.brand-blue .gallery-section .bg-underlayer {
  background-color: #0087ff;
}

main.brand-blue .gallery-section.shape-on-top .bg-underlayer:after {
  background-image: url(../../resources/images/shapes/swirlshape-header-blue-2.svg);
}

main.brand-blue .vacancy-item .city {
  background-color: #0087ff !important;
}

main .brand-logo-container {
  position: relative;
  z-index: 20;
}

main .brand-logo-container .logo-wrapper {
  max-height: 50px;
}

.header-brand {
  position: relative;
  padding-bottom: 8.44%;
}

.header-brand:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  bottom: -2px;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-image: url(../../resources/images/shapes/swirlshape-home-gray_1.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: bottom;
  /*        @media(max-width: 767px){
                background-image: url(../../resources/images/shapes/swirlshape-home-white.svg);
            }*/
}

.header-brand .header-inner {
  position: relative;
  z-index: 2;
  padding: 30px 0;
}

.header-brand .header-inner .title {
  color: #fff;
  text-align: center;
}

@media (max-width: 767px) {
  .header-brand .header-inner .title {
    font-size: 25px;
  }
}

.header-brand .header-inner .subtitle {
  color: #fff;
  font-size: 15px;
}

body.password-protected-page {
  height: 100%;
}

.main-password-protected {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.password-protected-page-container {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  background-color: #780096;
  text-align: center;
  overflow: hidden;
}

.password-protected-page-container .title {
  color: #fff;
  margin-bottom: 30px;
  text-align: center;
}

.password-protected-page-container p {
  color: #fff;
  margin-bottom: 0;
}

.password-protected-page-container:before,
.password-protected-page-container:after {
  content: "";
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 767px) {
  .password-protected-page-container:before,
  .password-protected-page-container:after {
    display: none;
  }
}

.password-protected-page-container:before {
  top: 45%;
  right: 100%;
  width: 1295px;
  height: 1295px;
  background-image: url("../../resources/images/shapes/oval2.svg");
  background-size: 1295px 1295px;
  -webkit-transform: translateX(927px);
  transform: translateX(927px);
}

.password-protected-page-container:after {
  top: -10%;
  left: 100%;
  width: 1629px;
  height: 1629px;
  background-image: url("../../resources/images/shapes/oval.svg");
  background-size: 1629px 1629px;
  -webkit-transform: translateX(-674px);
  transform: translateX(-674px);
}

.password-protected-page-container .content-container {
  position: relative;
  z-index: 2;
}

.page-password-form {
  padding: 40px 0;
  text-align: left;
}

.page-password-form label {
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 12px;
}

.page-password-form label .required {
  color: #ff0082;
}

.page-password-form .password-form-row {
  display: -ms-flexbox;
  display: flex;
}

.page-password-form .password-form-row input[type=password] {
  -ms-flex-positive: 1;
  flex-grow: 1;
  background-color: #f6f6f6;
  border: none;
  margin-right: 26px;
  outline: none;
}

.page-template-client.bol-body-color ::-moz-selection {
  background: #0028ff;
  color: #fff;
}

.page-template-client.bol-body-color ::selection {
  background: #0028ff;
  color: #fff;
}

.page-template-client.bol-body-color {
  background-color: #f1f2f3;
}

.page-template-client.bol-body-color .main-header.white-header .main-nav > .menu-item > a:hover {
  color: #0028ff;
}

.page-template-client.bol-body-color .main-footer:before {
  background-image: linear-gradient(270deg, #0087ff 0%, #3047b0 100%);
}

.page-template-client.bol-body-color .language-slider-holder .lang-submenu {
  border-top-color: #0028ff;
}

.page-template-client.bol-body-color .footer-nav .menu-item a:hover {
  color: #0028ff;
}

.page-template-client.bol-body-color .btn,
.page-template-client.bol-body-color body .wp-block-button__link,
body .page-template-client.bol-body-color .wp-block-button__link {
  background-color: #0028ff;
  background-image: none;
}

.page-template-client.bol-body-color .btn:before,
.page-template-client.bol-body-color body .wp-block-button__link:before,
body .page-template-client.bol-body-color .wp-block-button__link:before {
  background-color: #0020cc;
  background-image: none;
}

.page-template-client.bol-body-color .btn.btn-white,
.page-template-client.bol-body-color body .btn-white.wp-block-button__link,
body .page-template-client.bol-body-color .btn-white.wp-block-button__link {
  color: #0028ff;
  background-color: #fff;
}

.page-template-client.bol-body-color .btn.btn-white:before,
.page-template-client.bol-body-color body .btn-white.wp-block-button__link:before,
body .page-template-client.bol-body-color .btn-white.wp-block-button__link:before {
  background-color: rgb(229.5, 229.5, 229.5);
  transition: all 0.7s ease-in-out;
}

.page-template-client.bol-body-color {
  /* Readspeaker */
}

.page-template-client.bol-body-color .rspopup .rsbtn_play {
  background-color: #0028ff;
}

.page-template-client.bol-body-color .rspopup .rsbtn_pause:after {
  background-color: transparent !important;
  border-left-color: #0028ff;
}

.page-template-client.bol-body-color .rspopup .rsbtn_left.rspart {
  background-image: url(../../inc/readspeaker/img/readspeaker-white.svg) !important;
}

.page-template-client.bol-body-color .rsbtn_colorskin .rsbtn_left.rspart {
  background-image: url(../../resources/images/svg/readspeaker-bol.svg);
}

.page-template-client.bol-body-color .rsbtn_colorskin .rsbtn_left .rsbtn_text:before {
  border-left-color: #0028ff;
}

.page-template-client.bol-body-color .rsbtn_colorskin .rsbtn_pause:before,
.page-template-client.bol-body-color .rsbtn_colorskin .rsbtn_pause:after {
  background-color: #0028ff;
}

.page-template-client.bol-body-color .sticky-side-part {
  /*        .readspeaker-btn-holder {
                &:hover,
                &:focus,
                &.opened {
                    .rsbtn_play {
                        background-color: $main-color;
                    }
                }

                .rsbtn_colorskin {
                    @media (max-width: 767px) {
                        .rsbtn_play {
                            background-color: $main-color;
                        }

                        .rspart.rsbutton {
                            background-color: $main-color;
                        }
                    }
                }
            }*/
}

.page-template-client.bol-body-color {
  /* END Readspeaker */
  /* Sticky contacts */
}

.page-template-client.bol-body-color .fixed-contats-wrapper .link {
  background-image: none;
}

.page-template-client.bol-body-color .fixed-contats-wrapper .link:after {
  display: none;
}

.page-template-client.bol-body-color .fixed-contats-wrapper .link:hover {
  background-color: #0028ff;
}

.page-template-client.bol-body-color .fixed-contats-wrapper .link.read-speaker-link {
  background-image: none;
  background-color: #0028ff;
}

.page-template-client.bol-body-color {
  /* END Sticky contacts */
}

.page-template-client.bol-body-color .client-header-part:before {
  background-image: linear-gradient(to top, #0087ff 0%, #3047b0 100%);
  opacity: 0.35;
}

.page-template-client.bol-body-color .client-header-part .btn,
.page-template-client.bol-body-color .client-header-part body .wp-block-button__link,
body .page-template-client.bol-body-color .client-header-part .wp-block-button__link {
  background-color: #0028ff;
}

.page-template-client.bol-body-color .client-header-part .btn:before,
.page-template-client.bol-body-color .client-header-part body .wp-block-button__link:before,
body .page-template-client.bol-body-color .client-header-part .wp-block-button__link:before {
  background-color: #0020cc;
}

.page-template-client.bol-body-color .client-image-video-section .col-inner-wrapper {
  background-color: #0087ff;
}

.page-template-client.bol-body-color .client-image-video-section .col-inner-wrapper:before {
  background-image: linear-gradient(to top, #0087ff 0%, #3047b0 100%);
  opacity: 0.15;
}

.page-template-client.bol-body-color .client-image-video-slider .slick-slide .image-wrapper:before {
  background-image: linear-gradient(to top, #0087ff 0%, #3047b0 100%);
  opacity: 0.15;
}

.page-template-client.bol-body-color .page-sections-holder .a2a_kit .a2a_svg:hover svg path {
  fill: #0028ff;
}

.page-template-client.bol-body-color .gallery-section .bg-underlayer {
  background-color: #0087ff;
}

.page-template-client.bol-body-color .gallery-section.shape-on-top .bg-underlayer:after {
  bottom: calc(100% - 255px);
  height: 900px;
  background-image: url(../../resources/images/shapes/blue-wave.png);
  background-size: cover;
  -webkit-transform: none;
  transform: none;
}

.page-template-client.bol-body-color .gallery-slider .image-holder .image-wrapper:before {
  background-image: linear-gradient(to top, #0087ff 0%, #3047b0 100%);
  opacity: 0.15;
}

.page-template-client.bol-body-color .vacancy-item .image-wrapper .hover-el {
  background-image: linear-gradient(to top, #0087ff 0%, #3047b0 100%);
  opacity: 0.15;
}

.page-template-client.bol-body-color .vacancy-item .city {
  background-color: #0028ff !important;
}

.page-template-client.wehkamp-body-color ::-moz-selection {
  background: #ff5151;
  color: #000;
}

.page-template-client.wehkamp-body-color ::selection {
  background: #ff5151;
  color: #000;
}

.page-template-client.wehkamp-body-color {
  background-color: #f1f2f3;
}

.page-template-client.wehkamp-body-color .main-header.white-header .main-nav > .menu-item > a:hover {
  color: #ff5151;
}

.page-template-client.wehkamp-body-color .main-footer:before {
  background-image: none;
  background-color: #ff5151;
}

.page-template-client.wehkamp-body-color .language-slider-holder .lang-submenu {
  border-top-color: #ff5151;
}

.page-template-client.wehkamp-body-color .footer-nav .menu-item a:hover {
  color: #ff5151;
}

.page-template-client.wehkamp-body-color .btn,
.page-template-client.wehkamp-body-color body .wp-block-button__link,
body .page-template-client.wehkamp-body-color .wp-block-button__link {
  background-color: #ff5151;
  background-image: none;
}

.page-template-client.wehkamp-body-color .btn:before,
.page-template-client.wehkamp-body-color body .wp-block-button__link:before,
body .page-template-client.wehkamp-body-color .wp-block-button__link:before {
  background-color: #ff1e1e;
  background-image: none;
}

.page-template-client.wehkamp-body-color .btn.btn-white,
.page-template-client.wehkamp-body-color body .btn-white.wp-block-button__link,
body .page-template-client.wehkamp-body-color .btn-white.wp-block-button__link {
  color: #ff5151;
  background-color: #fff;
}

.page-template-client.wehkamp-body-color .btn.btn-white:before,
.page-template-client.wehkamp-body-color body .btn-white.wp-block-button__link:before,
body .page-template-client.wehkamp-body-color .btn-white.wp-block-button__link:before {
  background-color: rgb(229.5, 229.5, 229.5);
  transition: all 0.7s ease-in-out;
}

.page-template-client.wehkamp-body-color {
  /* Readspeaker */
}

.page-template-client.wehkamp-body-color .rspopup .rsbtn_play {
  background-color: #ff5151;
}

.page-template-client.wehkamp-body-color .rspopup .rsbtn_pause:after {
  background-color: transparent !important;
  border-left-color: #ff5151;
}

.page-template-client.wehkamp-body-color .rspopup .rsbtn_left.rspart {
  background-image: url(../../inc/readspeaker/img/readspeaker-white.svg) !important;
}

.page-template-client.wehkamp-body-color .rsbtn_colorskin .rsbtn_left.rspart {
  background-image: url(../../resources/images/svg/readspeaker-wehkamp.svg);
}

.page-template-client.wehkamp-body-color .rsbtn_colorskin .rsbtn_left .rsbtn_text:before {
  border-left-color: #ff5151;
}

.page-template-client.wehkamp-body-color .rsbtn_colorskin .rsbtn_pause:before,
.page-template-client.wehkamp-body-color .rsbtn_colorskin .rsbtn_pause:after {
  background-color: #ff5151;
}

.page-template-client.wehkamp-body-color .sticky-side-part {
  /*        .readspeaker-btn-holder {
                &:hover,
                &:focus,
                &.opened {
                    .rsbtn_play {
                        background-color: $main-color;
                    }
                }

                .rsbtn_colorskin {
                    @media (max-width: 767px) {
                        .rsbtn_play {
                            background-color: $main-color;
                        }

                        .rspart.rsbutton {
                            background-color: $main-color;
                        }
                    }
                }
            }*/
}

.page-template-client.wehkamp-body-color {
  /* END Readspeaker */
  /* Sticky contacts */
}

.page-template-client.wehkamp-body-color .fixed-contats-wrapper .link {
  background-image: none;
}

.page-template-client.wehkamp-body-color .fixed-contats-wrapper .link:after {
  display: none;
}

.page-template-client.wehkamp-body-color .fixed-contats-wrapper .link:hover {
  background-color: #ff5151;
}

.page-template-client.wehkamp-body-color .fixed-contats-wrapper .link.read-speaker-link {
  background-image: none;
  background-color: #ff5151;
}

.page-template-client.wehkamp-body-color {
  /* END Sticky contacts */
}

.page-template-client.wehkamp-body-color .client-header-part:before {
  background-image: linear-gradient(to top, #ff5151 0%, rgba(0, 0, 0, 0.25) 100%);
  opacity: 0.35;
}

.page-template-client.wehkamp-body-color .client-header-part .btn,
.page-template-client.wehkamp-body-color .client-header-part body .wp-block-button__link,
body .page-template-client.wehkamp-body-color .client-header-part .wp-block-button__link {
  background-color: #ff5151;
}

.page-template-client.wehkamp-body-color .client-header-part .btn:before,
.page-template-client.wehkamp-body-color .client-header-part body .wp-block-button__link:before,
body .page-template-client.wehkamp-body-color .client-header-part .wp-block-button__link:before {
  background-color: #ff1e1e;
}

.page-template-client.wehkamp-body-color .client-image-video-section .col-inner-wrapper {
  background-color: #ff5151;
}

.page-template-client.wehkamp-body-color .client-image-video-section .col-inner-wrapper:before {
  background-image: linear-gradient(to top, #ff5151 0%, rgba(0, 0, 0, 0.25) 100%);
  opacity: 0.25;
}

.page-template-client.wehkamp-body-color .client-image-video-slider .slick-slide .image-wrapper:before {
  background-image: linear-gradient(to top, #ff5151 0%, rgba(0, 0, 0, 0.25) 100%);
  opacity: 0.25;
}

.page-template-client.wehkamp-body-color .page-sections-holder .a2a_kit .a2a_svg:hover svg path {
  fill: #ff5151;
}

.page-template-client.wehkamp-body-color .gallery-section .bg-underlayer {
  background-color: #ff5151;
}

.page-template-client.wehkamp-body-color .gallery-section.shape-on-top .bg-underlayer:after {
  display: none;
}

.page-template-client.wehkamp-body-color .gallery-slider .image-holder .image-wrapper:before {
  background-image: linear-gradient(to top, #ff5151 0%, rgba(0, 0, 0, 0.25) 100%);
  opacity: 0.25;
}

.page-template-client.wehkamp-body-color .vacancy-item .image-wrapper .hover-el {
  background-image: linear-gradient(to top, #ff5151 0%, rgba(0, 0, 0, 0.25) 100%);
  opacity: 0.25;
}

.page-template-client.wehkamp-body-color .vacancy-item .city {
  background-color: #ff5151 !important;
}

.page-template-client.ziggo-body-color ::-moz-selection {
  background: #f48c00;
  color: #fff;
}

.page-template-client.ziggo-body-color ::selection {
  background: #f48c00;
  color: #fff;
}

.page-template-client.ziggo-body-color {
  background-color: #f1f2f3;
}

.page-template-client.ziggo-body-color .main-header.white-header .main-nav > .menu-item > a:hover {
  color: #f48c00;
}

.page-template-client.ziggo-body-color .main-footer:before {
  background-image: none;
  background-color: #f48c00;
}

.page-template-client.ziggo-body-color .language-slider-holder .lang-submenu {
  border-top-color: #f48c00;
}

.page-template-client.ziggo-body-color .footer-nav .menu-item a:hover {
  color: #f48c00;
}

.page-template-client.ziggo-body-color .btn,
.page-template-client.ziggo-body-color body .wp-block-button__link,
body .page-template-client.ziggo-body-color .wp-block-button__link {
  background-color: #f48c00;
  background-image: none;
}

.page-template-client.ziggo-body-color .btn:before,
.page-template-client.ziggo-body-color body .wp-block-button__link:before,
body .page-template-client.ziggo-body-color .wp-block-button__link:before {
  background-color: rgb(193, 110.737704918, 0);
  background-image: none;
}

.page-template-client.ziggo-body-color .btn.btn-white,
.page-template-client.ziggo-body-color body .btn-white.wp-block-button__link,
body .page-template-client.ziggo-body-color .btn-white.wp-block-button__link {
  color: #f48c00;
  background-color: #fff;
}

.page-template-client.ziggo-body-color .btn.btn-white:before,
.page-template-client.ziggo-body-color body .btn-white.wp-block-button__link:before,
body .page-template-client.ziggo-body-color .btn-white.wp-block-button__link:before {
  background-color: rgb(229.5, 229.5, 229.5);
  transition: all 0.7s ease-in-out;
}

.page-template-client.ziggo-body-color {
  /* Readspeaker */
}

.page-template-client.ziggo-body-color .rspopup .rsbtn_play {
  background-color: #f48c00;
}

.page-template-client.ziggo-body-color .rspopup .rsbtn_pause:after {
  background-color: transparent !important;
  border-left-color: #f48c00;
}

.page-template-client.ziggo-body-color .rspopup .rsbtn_left.rspart {
  background-image: url(../../inc/readspeaker/img/readspeaker-white.svg) !important;
}

.page-template-client.ziggo-body-color .rsbtn_colorskin .rsbtn_left.rspart {
  background-image: url(../../resources/images/svg/readspeaker-ziggo.svg);
}

.page-template-client.ziggo-body-color .rsbtn_colorskin .rsbtn_left .rsbtn_text:before {
  border-left-color: #f48c00;
}

.page-template-client.ziggo-body-color .rsbtn_colorskin .rsbtn_pause:before,
.page-template-client.ziggo-body-color .rsbtn_colorskin .rsbtn_pause:after {
  background-color: #f48c00;
}

.page-template-client.ziggo-body-color .sticky-side-part {
  /*        .readspeaker-btn-holder {
                &:hover,
                &:focus,
                &.opened {
                    .rsbtn_play {
                        background-color: $main-color;
                    }
                }

                .rsbtn_colorskin {
                    @media (max-width: 767px) {
                        .rsbtn_play {
                            background-color: $main-color;
                        }

                        .rspart.rsbutton {
                            background-color: $main-color;
                        }
                    }
                }
            }*/
}

.page-template-client.ziggo-body-color {
  /* END Readspeaker */
  /* Sticky contacts */
}

.page-template-client.ziggo-body-color .fixed-contats-wrapper .link {
  background-image: none;
}

.page-template-client.ziggo-body-color .fixed-contats-wrapper .link:after {
  display: none;
}

.page-template-client.ziggo-body-color .fixed-contats-wrapper .link:hover {
  background-color: #f48c00;
}

.page-template-client.ziggo-body-color .fixed-contats-wrapper .link.read-speaker-link {
  background-image: none;
  background-color: #f48c00;
}

.page-template-client.ziggo-body-color {
  /* END Sticky contacts */
}

.page-template-client.ziggo-body-color .client-header-part:before {
  background-image: linear-gradient(to top, #f48c00 0%, rgba(0, 0, 0, 0.25) 100%);
  opacity: 0.35;
}

.page-template-client.ziggo-body-color .client-header-part .btn,
.page-template-client.ziggo-body-color .client-header-part body .wp-block-button__link,
body .page-template-client.ziggo-body-color .client-header-part .wp-block-button__link {
  background-color: #ff9200;
}

.page-template-client.ziggo-body-color .client-header-part .btn:before,
.page-template-client.ziggo-body-color .client-header-part body .wp-block-button__link:before,
body .page-template-client.ziggo-body-color .client-header-part .wp-block-button__link:before {
  background-color: rgb(204, 116.8, 0);
}

.page-template-client.ziggo-body-color .client-image-video-section .col-inner-wrapper {
  background-color: #f48c00;
}

.page-template-client.ziggo-body-color .client-image-video-section .col-inner-wrapper:before {
  background-image: linear-gradient(to top, #f48c00 0%, rgba(0, 0, 0, 0.25) 100%);
  opacity: 0.25;
}

.page-template-client.ziggo-body-color .client-image-video-slider .slick-slide .image-wrapper:before {
  background-image: linear-gradient(to top, #f48c00 0%, rgba(0, 0, 0, 0.25) 100%);
  opacity: 0.25;
}

.page-template-client.ziggo-body-color .page-sections-holder .a2a_kit .a2a_svg:hover svg path {
  fill: #f48c00;
}

.page-template-client.ziggo-body-color .gallery-section .bg-underlayer {
  background-color: #f48c00;
}

.page-template-client.ziggo-body-color .gallery-section.shape-on-top .bg-underlayer:after {
  display: none;
}

.page-template-client.ziggo-body-color .gallery-slider .image-holder .image-wrapper:before {
  background-image: linear-gradient(to top, #f48c00 0%, rgba(0, 0, 0, 0.25) 100%);
  opacity: 0.25;
}

.page-template-client.ziggo-body-color .vacancy-item .image-wrapper .hover-el {
  background-image: linear-gradient(to top, #f48c00 0%, rgba(0, 0, 0, 0.25) 100%);
  opacity: 0.25;
}

.page-template-client.ziggo-body-color .vacancy-item .city {
  background-color: #f48c00 !important;
}

.page-template-client.ikea-body-color ::-moz-selection {
  background: #0058ac;
  color: #fff;
}

.page-template-client.ikea-body-color ::selection {
  background: #0058ac;
  color: #fff;
}

.page-template-client.ikea-body-color {
  background-color: #ecf0f5;
}

.page-template-client.ikea-body-color .main-header.white-header .main-nav > .menu-item > a:hover {
  color: #0058ac;
}

.page-template-client.ikea-body-color .main-footer:before {
  background-image: none;
  background-color: #0058ac;
}

.page-template-client.ikea-body-color .language-slider-holder .lang-submenu {
  border-top-color: #0058ac;
}

.page-template-client.ikea-body-color .footer-nav .menu-item a:hover {
  color: #0058ac;
}

.page-template-client.ikea-body-color .btn,
.page-template-client.ikea-body-color body .wp-block-button__link,
body .page-template-client.ikea-body-color .wp-block-button__link {
  background-color: #0058ac;
  background-image: none;
}

.page-template-client.ikea-body-color .btn:before,
.page-template-client.ikea-body-color body .wp-block-button__link:before,
body .page-template-client.ikea-body-color .wp-block-button__link:before {
  background-color: rgb(0, 61.9069767442, 121);
  background-image: none;
}

.page-template-client.ikea-body-color .btn.btn-white,
.page-template-client.ikea-body-color body .btn-white.wp-block-button__link,
body .page-template-client.ikea-body-color .btn-white.wp-block-button__link {
  color: #0058ac;
  background-color: #fff;
}

.page-template-client.ikea-body-color .btn.btn-white:before,
.page-template-client.ikea-body-color body .btn-white.wp-block-button__link:before,
body .page-template-client.ikea-body-color .btn-white.wp-block-button__link:before {
  background-color: rgb(229.5, 229.5, 229.5);
  transition: all 0.7s ease-in-out;
}

.page-template-client.ikea-body-color {
  /* Readspeaker */
}

.page-template-client.ikea-body-color .rspopup .rsbtn_play {
  background-color: #0058ac;
}

.page-template-client.ikea-body-color .rspopup .rsbtn_pause:after {
  background-color: transparent !important;
  border-left-color: #0058ac;
}

.page-template-client.ikea-body-color .rspopup .rsbtn_left.rspart {
  background-image: url(../../inc/readspeaker/img/readspeaker-white.svg) !important;
}

.page-template-client.ikea-body-color .rsbtn_colorskin .rsbtn_left.rspart {
  background-image: url(../../resources/images/svg/readspeaker-ikea.svg);
}

.page-template-client.ikea-body-color .rsbtn_colorskin .rsbtn_left .rsbtn_text:before {
  border-left-color: #0058ac;
}

.page-template-client.ikea-body-color .rsbtn_colorskin .rsbtn_pause:before,
.page-template-client.ikea-body-color .rsbtn_colorskin .rsbtn_pause:after {
  background-color: #0058ac;
}

.page-template-client.ikea-body-color .sticky-side-part {
  /*        .readspeaker-btn-holder {
                &:hover,
                &:focus,
                &.opened {
                    .rsbtn_play {
                        background-color: $main-color;
                    }
                }

                .rsbtn_colorskin {
                    @media (max-width: 767px) {
                        .rsbtn_play {
                            background-color: $main-color;
                        }

                        .rspart.rsbutton {
                            background-color: $main-color;
                        }
                    }
                }
            }*/
}

.page-template-client.ikea-body-color {
  /* END Readspeaker */
  /* Sticky contacts */
}

.page-template-client.ikea-body-color .fixed-contats-wrapper .link {
  background-image: none;
}

.page-template-client.ikea-body-color .fixed-contats-wrapper .link:after {
  display: none;
}

.page-template-client.ikea-body-color .fixed-contats-wrapper .link:hover {
  background-color: #0058ac;
}

.page-template-client.ikea-body-color .fixed-contats-wrapper .link.read-speaker-link {
  background-image: none;
  background-color: #0058ac;
}

.page-template-client.ikea-body-color {
  /* END Sticky contacts */
}

.page-template-client.ikea-body-color .client-header-part:before {
  background-image: linear-gradient(to top, #0058ac 0%, #3047b0 100%);
  opacity: 0.35;
}

.page-template-client.ikea-body-color .client-header-part .btn,
.page-template-client.ikea-body-color .client-header-part body .wp-block-button__link,
body .page-template-client.ikea-body-color .client-header-part .wp-block-button__link {
  background-color: #007df4;
}

.page-template-client.ikea-body-color .client-header-part .btn:before,
.page-template-client.ikea-body-color .client-header-part body .wp-block-button__link:before,
body .page-template-client.ikea-body-color .client-header-part .wp-block-button__link:before {
  background-color: rgb(0, 98.8729508197, 193);
}

.page-template-client.ikea-body-color .client-image-video-section .col-inner-wrapper {
  background-color: #0058ac;
}

.page-template-client.ikea-body-color .client-image-video-section .col-inner-wrapper:before {
  background-image: linear-gradient(to top, #0058ac 0%, #3047b0 100%);
  opacity: 0.25;
}

.page-template-client.ikea-body-color .client-image-video-slider .slick-slide .image-wrapper:before {
  background-image: linear-gradient(to top, #0058ac 0%, #3047b0 100%);
  opacity: 0.25;
}

.page-template-client.ikea-body-color .page-sections-holder .a2a_kit .a2a_svg:hover svg path {
  fill: #0058ac;
}

.page-template-client.ikea-body-color .gallery-section .bg-underlayer {
  background-color: #0058ac;
}

.page-template-client.ikea-body-color .gallery-section.shape-on-top .bg-underlayer:after {
  display: none;
}

.page-template-client.ikea-body-color .gallery-slider .image-holder .image-wrapper:before {
  background-image: linear-gradient(to top, #0058ac 0%, #3047b0 100%);
  opacity: 0.25;
}

.page-template-client.ikea-body-color .vacancy-item .image-wrapper .hover-el {
  background-image: linear-gradient(to top, #0058ac 0%, #3047b0 100%);
  opacity: 0.25;
}

.page-template-client.ikea-body-color .vacancy-item .city {
  background-color: #0058ac !important;
}

.page-template-client {
  background-color: #E2DFE8;
}

.page-template-client .btn.btn-white,
.page-template-client body .btn-white.wp-block-button__link,
body .page-template-client .btn-white.wp-block-button__link {
  color: #fff;
}

.page-template-client .btn.btn-white:before,
.page-template-client body .btn-white.wp-block-button__link:before,
body .page-template-client .btn-white.wp-block-button__link:before {
  transition: all 0.3s ease-in-out;
}

.page-template-client .client-header-part:before {
  background: rgba(0, 0, 0, 0.4);
}

.page-template-client .client-image-video-section .col-inner-wrapper {
  background-color: #191238;
}

.page-template-client .gallery-slider .image-holder .image-wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-template-client .gallery-section .bg-underlayer {
  background-color: #191238;
}

.page-template-client .gallery-section .bottom-content-area .content-row {
  position: relative;
  padding-bottom: 15px;
}

.page-template-client .gallery-section .bottom-content-area .content-row:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 19px;
  right: 19px;
  height: 1px;
  background-color: #fff;
  opacity: 0.75;
}

.page-template-client .gallery-section.shape-on-top {
  padding-bottom: 50px;
}

.page-template-client .gallery-section.shape-on-top .bg-underlayer:after {
  display: none;
}

.page-template-client .page-sections-holder .a2a_kit .a2a_svg:hover svg path {
  fill: #ff0082;
}

.page-template-client .page-sections-holder {
  position: relative;
  z-index: 10;
  background-color: #fff;
  border-radius: 10px;
  padding-top: 53px;
  padding-bottom: 34px;
  margin-bottom: 150px;
}

.page-template-client .page-sections-holder .vacancy-process-section {
  margin-bottom: 50px;
}

.page-template-client .page-sections-holder .vacancy-process-section .section-title {
  font-weight: 500;
}

.page-template-client .page-sections-holder .vacancy-process-section .section-title .text:after {
  display: none !important;
}

.page-template-client .page-sections-holder .section-separator {
  border-top: 2px solid #f9f9f9;
  margin: 0 0 50px;
}

.page-template-client .page-sections-holder .shares-part {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  padding: 30px 0 0;
}

@media (max-width: 991px) {
  .page-template-client .page-sections-holder .shares-part {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.page-template-client .page-sections-holder .shares-part:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #f9f9f9;
}

.page-template-client .page-sections-holder .shares-part .shares {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.page-template-client .page-sections-holder .shares-part .shares .share-text {
  font-size: 16px;
  margin-right: 15px;
}

.page-template-client .page-sections-holder .shares-part .btn-wrapper {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .page-template-client .page-sections-holder .shares-part .btn-wrapper {
    padding-top: 15px;
  }
}

.page-template-client .page-sections-holder .a2a_kit {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.page-template-client .page-sections-holder .a2a_kit a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 767px) {
  .page-template-client .page-sections-holder .a2a_kit a {
    padding: 0 15px;
  }
}

.page-template-client .page-sections-holder .a2a_kit a:first-child {
  padding-left: 0;
}

.page-template-client .page-sections-holder .a2a_kit a:last-child {
  padding-right: 0;
}

.page-template-client .page-sections-holder .a2a_kit.addtoany_list a:hover img,
.page-template-client .page-sections-holder .a2a_kit.addtoany_list a:hover span {
  opacity: 1;
}

.vacancy-item-small {
  position: relative;
  background-color: #fff;
  padding: 20px;
  transition: all 0.3s ease-in-out;
}

.vacancy-item-small .inner-wrapper {
  position: relative;
  padding-right: 55px;
}

.vacancy-item-small .inner-wrapper .arrow {
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 50%;
  right: 0;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #ff0082;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.vacancy-item-small .inner-wrapper .arrow:before,
.vacancy-item-small .inner-wrapper .arrow:after {
  content: "";
  transition: all 0.3s ease-in-out;
}

.vacancy-item-small .inner-wrapper .arrow:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-image: linear-gradient(to right, #792182 0%, #e60f76 100%);
  opacity: 0;
}

.vacancy-item-small .inner-wrapper .arrow:after {
  position: relative;
  z-index: 2;
  margin: auto;
  width: 10px;
  height: 10px;
  background-size: 10px 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/arrow-up-right.svg);
}

.vacancy-item-small .inner-wrapper .arrow:hover:before {
  opacity: 1;
}

.vacancy-item-small .inner-wrapper .arrow:hover:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.vacancy-item-small .title {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 15px;
}

.vacancy-item-small .vacancy-short-info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style-type: none;
  margin: 0 0 -6px;
  padding: 0;
}

.vacancy-item-small .vacancy-short-info .item {
  position: relative;
  font-size: 15px;
  margin-right: 30px;
  margin-bottom: 6px;
  padding-left: 30px;
}

.vacancy-item-small .vacancy-short-info .item:last-child {
  margin-right: 0;
}

.vacancy-item-small .vacancy-short-info .item:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.vacancy-item-small .vacancy-short-info .item.location:before {
  width: 17px;
  height: 20px;
  background-size: 17px 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-location-gradient.svg);
}

.vacancy-item-small .vacancy-short-info .item.hours:before {
  width: 17px;
  height: 17px;
  background-size: 17px 17px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-clock-gradient.svg);
}

.vacancy-item-small .vacancy-short-info .item.department:before {
  width: 17px;
  height: 16px;
  background-size: 17px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-suitcase-gradient.svg);
}

.vacancy-item-small .vacancy-short-info .item.salary:before {
  width: 18px;
  height: 12px;
  background-size: 18px 12px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-salary.svg);
}

.vacancy-item-small .block-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.vacancy-item-small:hover,
.vacancy-item-small:focus {
  box-shadow: 0 4px 12px rgba(33, 33, 99, 0.1);
}

.vacancy-item-small:hover .arrow:before,
.vacancy-item-small:focus .arrow:before {
  opacity: 1;
}

.vacancy-item-small:hover .arrow:after,
.vacancy-item-small:focus .arrow:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.no-vacancies-found {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 460px;
  max-width: 100%;
  margin: 150px auto 30px;
  text-align: center;
}

.no-vacancies-found .icon {
  margin-bottom: 20px;
  width: 50px;
  height: 50px;
  background-size: 50px 50px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../resources/images/svg/icon-no-vacancies.svg);
}

.no-vacancies-found .title {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 10px;
}

.no-vacancies-found p {
  font-size: 18px;
}

.cta-block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 25px;
  background: #191238;
  border-radius: 5px;
  padding: 25px;
  margin-bottom: 32px;
}

.cta-block .left-part {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 7px;
}

.cta-block .text {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.04;
  text-align: center;
}

.cta-block .description {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
}

.cta-block .btn-wrapper {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.search-main {
  background-color: #EFF0F9;
}

.search-results-section {
  margin-bottom: 133px;
}

.search-results-section .search-title {
  color: #000;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 30px;
}

.search-results-section .search-results-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 18px;
}

.search-results-section .pagination-wrapper {
  margin-top: 30px;
}