:root {
  --color-black: #000;
}

:root {
  --header-height: 3.75rem;
}
@media (min-width:990px) {
  :root {
    --header-height: 6.25rem;
  }
}

.bg-primary-light {
  background-color: #d4e3dd;
}
.bg-primary-dark {
  background-color: #45836b;
  color: #00cb9c;
}
.bg-grey {
  background-color: #606060;
}
.bg-flare {
  background-color: #bcb1b3;
}
.bg-flare-light {
  background-color: #eeecec;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px);
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50px);
    -moz-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    -o-transform: translateY(-50px);
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
    -moz-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    -o-transform: translateX(-50px);
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px);
    -moz-transform: translateX(50px);
    -ms-transform: translateX(50px);
    -o-transform: translateX(50px);
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes zoomOut {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
.hero__content h2 {
  animation-name: fadeInUp;
  animation-duration: 1s;
  animation-delay: 0s;
  animation-fill-mode: both;
}

.hero .slick-dots,
.homepage .header {
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-delay: 0.3s;
  animation-fill-mode: both;
}

.nazev {
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-delay: 0s;
  animation-fill-mode: both;
}

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

html,
body {
  padding: 0;
  margin: 0;
  font-family: "Bw Gradual DEMO", "Arial", sans-serif;
  font-weight: 500;
  line-height: 1.3;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body:not(.homepage) {
  padding-top: 3.75rem;
}
@media (min-width:750px) {
  body:not(.homepage) {
    padding-top: 6.25rem;
  }
}

input,
textarea,
button,
select {
  font-family: "Bw Gradual DEMO", "Arial", sans-serif;
  outline-color: #00cb9c;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
button::-webkit-input-placeholder,
select::-webkit-input-placeholder {
  font-family: inherit;
  color: inherit;
  opacity: 0.5;
}
input::-moz-placeholder,
textarea::-moz-placeholder,
button::-moz-placeholder,
select::-moz-placeholder {
  font-family: inherit;
  color: inherit;
  opacity: 0.5;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder,
button:-ms-input-placeholder,
select:-ms-input-placeholder {
  font-family: inherit;
  color: inherit;
  opacity: 0.5;
}
input::-ms-input-placeholder,
textarea::-ms-input-placeholder,
button::-ms-input-placeholder,
select::-ms-input-placeholder {
  font-family: inherit;
  color: inherit;
  opacity: 0.5;
}
input:-moz-placeholder,
textarea:-moz-placeholder,
button:-moz-placeholder,
select:-moz-placeholder {
  font-family: inherit;
  color: inherit;
  opacity: 0.5;
}

a {
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-weight: 500;
}
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child,
p:first-child {
  margin-top: 0 !important;
}
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
p:last-child {
  margin-bottom: 0 !important;
}

.list ul:not([class]), .comment__content ul:not([class]), .error-summary ul:not([class]) {
  margin: 0;
  padding: 0;
  list-style: none;
}
.list ul:not([class]) li, .comment__content ul:not([class]) li, .error-summary ul:not([class]) li {
  position: relative;
  padding-left: 0.625rem;
}
.list ul:not([class]) li:not(:last-child), .comment__content ul:not([class]) li:not(:last-child), .error-summary ul:not([class]) li:not(:last-child) {
  margin-bottom: 0.5em;
}
.list ul:not([class]) li:before, .comment__content ul:not([class]) li:before, .error-summary ul:not([class]) li:before {
  display: block;
  content: "";
  width: 4px;
  height: 4px;
  flex-shrink: 0;
  aspect-ratio: 1;
  background-color: currentColor;
  position: absolute;
  left: 0;
  top: 0.55em;
}
.background-tertiary .list ul:not([class]) li:before, .background-tertiary .comment__content ul:not([class]) li:before, .background-tertiary .error-summary ul:not([class]) li:before {
  background-color: currentColor;
}

body.compensate-for-scrollbar {
  overflow: hidden;
}

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden;
}

.fancybox-container {
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  transform: translateZ(0);
  width: 100%;
  z-index: 99992;
}

.fancybox-container * {
  box-sizing: border-box;
}

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

.fancybox-bg {
  background: #fff;
  opacity: 0;
  transition-duration: inherit;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}

.fancybox-is-open .fancybox-bg {
  opacity: 1;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
  direction: ltr;
  opacity: 0;
  position: absolute;
  transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  visibility: hidden;
  z-index: 99997;
}

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
  opacity: 1;
  transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  visibility: visible;
}

.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox-toolbar {
  right: 0;
  top: 0;
}

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  transform: translateZ(0);
  z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  /* Using without prefix would break IE11 */
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  transition-property: transform, opacity;
  white-space: normal;
  width: 100%;
  z-index: 99994;
}

.fancybox-slide::before {
  content: "";
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
  display: block;
}

.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0;
}

.fancybox-slide--image::before {
  display: none;
}

.fancybox-slide--html {
  padding: 6px;
}

.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
  animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  -ms-transform-origin: top left;
  transform-origin: top left;
  transition-property: transform, opacity;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
  cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
  cursor: zoom-in;
}

.fancybox-can-swipe .fancybox-content,
.fancybox-can-pan .fancybox-content {
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox-container [data-selectable=true] {
  cursor: text;
}

.fancybox-image,
.fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}

.fancybox-spaceball {
  z-index: 1;
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%;
}

.fancybox-slide--video .fancybox-content {
  background: #000;
}

.fancybox-slide--map .fancybox-content {
  background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
  background: #fff;
}

.fancybox-video,
.fancybox-iframe {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

/* Fix iOS */
.fancybox-iframe {
  left: 0;
  position: absolute;
  top: 0;
}

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%;
}

.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0;
}

/* Buttons */
.fancybox-button {
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 64px;
  margin: 0;
  padding: 20px;
  position: relative;
  transition: color 0.2s;
  vertical-align: top;
  visibility: inherit;
  width: 64px;
}

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
  color: #000;
}

.fancybox-button:hover {
  color: #00cb9c;
}

.fancybox-button:focus {
  outline: none;
}

.fancybox-button.fancybox-focus {
  outline: 1px dotted;
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
  outline: none;
}

/* Fix IE11 */
.fancybox-button div {
  height: 100%;
}

.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%;
}

.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0;
}

.fancybox-button--play svg:nth-child(2),
.fancybox-button--fsenter svg:nth-child(2) {
  display: none;
}

.fancybox-button--pause svg:nth-child(1),
.fancybox-button--fsexit svg:nth-child(1) {
  display: none;
}

.fancybox-progress {
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -ms-transform-origin: 0;
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  z-index: 99998;
}

/* Close button on the top right corner of html content */
.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: 0.8;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: -44px;
  z-index: 401;
}

.fancybox-close-small:hover {
  color: #fff;
  opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none;
}

/* Navigation arrows */
.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 100px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 50px);
  width: 70px;
}

.fancybox-navigation .fancybox-button div {
  padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
  padding: 31px 26px 31px 6px;
  left: env(safe-area-inset-left);
  left: 2rem;
}
@media (min-width:990px) {
  .fancybox-navigation .fancybox-button--arrow_left {
    left: 3.125rem;
  }
}

.fancybox-navigation .fancybox-button--arrow_right {
  padding: 31px 6px 31px 26px;
  right: env(safe-area-inset-right);
  right: 2rem;
}
@media (min-width:990px) {
  .fancybox-navigation .fancybox-button--arrow_right {
    right: 3.125rem;
  }
}

/* Caption */
.fancybox-caption {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, rgba(0, 0, 0, 0) 100%);
  bottom: 0;
  color: #eee;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 75px 44px 25px 44px;
  pointer-events: none;
  right: 0;
  text-align: center;
  z-index: 99996;
}

@supports (padding: 0px) {
  .fancybox-caption {
    padding: 75px 44px, env(safe-area-inset-right) 25px, env(safe-area-inset-bottom) 44px, env(safe-area-inset-left);
  }
}
.fancybox-caption--separate {
  margin-top: -50px;
}

.fancybox-caption__body {
  max-height: 50vh;
  overflow: auto;
  pointer-events: all;
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none;
}

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Loading indicator */
.fancybox-loading {
  animation: fancybox-rotate 1s linear infinite;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999;
}

@keyframes fancybox-rotate {
  100% {
    transform: rotate(360deg);
  }
}
/* Transition effects */
.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}

/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}

/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  -ms-transform: rotate(-360deg);
  transform: rotate(-360deg);
}

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}

/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
  transform: translate3d(0, 0, 0) scale(1);
}

/* Styling for Small-Screen Devices */
@media all and (max-height: 576px) {
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px;
  }

  .fancybox-slide--image {
    padding: 6px 0;
  }

  .fancybox-close-small {
    right: -6px;
  }

  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px;
  }

  .fancybox-caption {
    padding-left: 12px;
    padding-right: 12px;
  }

  @supports (padding: 0px) {
    .fancybox-caption {
      padding-left: 12px, env(safe-area-inset-left);
      padding-right: 12px, env(safe-area-inset-right);
    }
  }
}
/* Share */
.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center;
}

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px 0;
}

.fancybox-share p {
  margin: 0;
  padding: 0;
}

.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px 5px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  transition: all 0.2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}

.fancybox-share__button:visited,
.fancybox-share__button:link {
  color: #fff;
}

.fancybox-share__button:hover {
  text-decoration: none;
}

.fancybox-share__button--fb {
  background: #3b5998;
}

.fancybox-share__button--fb:hover {
  background: #344e86;
}

.fancybox-share__button--pt {
  background: #bd081d;
}

.fancybox-share__button--pt:hover {
  background: #aa0719;
}

.fancybox-share__button--tw {
  background: #1da1f2;
}

.fancybox-share__button--tw:hover {
  background: #0d95e8;
}

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px;
}

.fancybox-share__button svg path {
  fill: #fff;
}

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%;
}

/* Thumbs */
.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px 2px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  width: 212px;
  z-index: 99995;
}

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}

.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}

.fancybox-thumbs__list {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}

.fancybox-thumbs__list a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px;
}

.fancybox-thumbs__list a::before {
  border: 6px solid #ff5268;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991;
}

.fancybox-thumbs__list a:focus::before {
  opacity: 0.5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active::before {
  opacity: 1;
}

/* Styling for Small-Screen Devices */
@media all and (max-width: 576px) {
  .fancybox-thumbs {
    width: 110px;
  }

  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }

  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px);
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-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);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

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

.mapboxgl-map {
  font: 12px/20px Helvetica Neue, Arial, Helvetica, sans-serif;
  overflow: hidden;
  position: relative;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.mapboxgl-canvas {
  position: absolute;
  left: 0;
  top: 0;
}

.mapboxgl-map:-webkit-full-screen {
  width: 100%;
  height: 100%;
}

.mapboxgl-canary {
  background-color: salmon;
}

.mapboxgl-canvas-container.mapboxgl-interactive, .mapboxgl-ctrl-group button.mapboxgl-ctrl-compass {
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
}

.mapboxgl-canvas-container.mapboxgl-interactive.mapboxgl-track-pointer {
  cursor: pointer;
}

.mapboxgl-canvas-container.mapboxgl-interactive:active, .mapboxgl-ctrl-group button.mapboxgl-ctrl-compass:active {
  cursor: grabbing;
}

.mapboxgl-canvas-container.mapboxgl-touch-zoom-rotate, .mapboxgl-canvas-container.mapboxgl-touch-zoom-rotate .mapboxgl-canvas {
  touch-action: pan-x pan-y;
}

.mapboxgl-canvas-container.mapboxgl-touch-drag-pan, .mapboxgl-canvas-container.mapboxgl-touch-drag-pan .mapboxgl-canvas {
  touch-action: pinch-zoom;
}

.mapboxgl-canvas-container.mapboxgl-touch-zoom-rotate.mapboxgl-touch-drag-pan, .mapboxgl-canvas-container.mapboxgl-touch-zoom-rotate.mapboxgl-touch-drag-pan .mapboxgl-canvas {
  touch-action: none;
}

.mapboxgl-ctrl-bottom-left, .mapboxgl-ctrl-bottom-right, .mapboxgl-ctrl-top-left, .mapboxgl-ctrl-top-right {
  position: absolute;
  pointer-events: none;
  z-index: 2;
}

.mapboxgl-ctrl-top-left {
  top: 0;
  left: 0;
}

.mapboxgl-ctrl-top-right {
  top: 0;
  right: 0;
}

.mapboxgl-ctrl-bottom-left {
  bottom: 0;
  left: 0;
}

.mapboxgl-ctrl-bottom-right {
  right: 0;
  bottom: 0;
}

.mapboxgl-ctrl {
  clear: both;
  pointer-events: auto;
  transform: translate(0);
}

.mapboxgl-ctrl-top-left .mapboxgl-ctrl {
  margin: 10px 0 0 10px;
  float: left;
}

.mapboxgl-ctrl-top-right .mapboxgl-ctrl {
  margin: 10px 10px 0 0;
  float: right;
}

.mapboxgl-ctrl-bottom-left .mapboxgl-ctrl {
  margin: 0 0 10px 10px;
  float: left;
}

.mapboxgl-ctrl-bottom-right .mapboxgl-ctrl {
  margin: 0 10px 10px 0;
  float: right;
}

.mapboxgl-ctrl-group {
  border-radius: 4px;
  background: #fff;
}

.mapboxgl-ctrl-group:not(:empty) {
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

@media (-ms-high-contrast: active) {
  .mapboxgl-ctrl-group:not(:empty) {
    box-shadow: 0 0 0 2px ButtonText;
  }
}
.mapboxgl-ctrl-group button {
  width: 29px;
  height: 29px;
  display: block;
  padding: 0;
  outline: none;
  border: 0;
  box-sizing: border-box;
  background-color: transparent;
  cursor: pointer;
  overflow: hidden;
}

.mapboxgl-ctrl-group button + button {
  border-top: 1px solid #ddd;
}

.mapboxgl-ctrl button .mapboxgl-ctrl-icon {
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: 50%;
}

@media (-ms-high-contrast: active) {
  .mapboxgl-ctrl-icon {
    background-color: transparent;
  }

  .mapboxgl-ctrl-group button + button {
    border-top: 1px solid ButtonText;
  }
}
.mapboxgl-ctrl-attrib-button:focus, .mapboxgl-ctrl-group button:focus {
  box-shadow: 0 0 2px 2px #0096ff;
}

.mapboxgl-ctrl button:disabled {
  cursor: not-allowed;
}

.mapboxgl-ctrl button:disabled .mapboxgl-ctrl-icon {
  opacity: 0.25;
}

.mapboxgl-ctrl button:not(:disabled):hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.mapboxgl-ctrl-group button:focus:focus-visible {
  box-shadow: 0 0 2px 2px #0096ff;
}

.mapboxgl-ctrl-group button:focus:not(:focus-visible) {
  box-shadow: none;
}

.mapboxgl-ctrl-group button:focus:first-child {
  border-radius: 4px 4px 0 0;
}

.mapboxgl-ctrl-group button:focus:last-child {
  border-radius: 0 0 4px 4px;
}

.mapboxgl-ctrl-group button:focus:only-child {
  border-radius: inherit;
}

.mapboxgl-ctrl button.mapboxgl-ctrl-zoom-out .mapboxgl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23333'%3E %3Cpath d='M10 13c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h9c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-9z'/%3E %3C/svg%3E");
}

.mapboxgl-ctrl button.mapboxgl-ctrl-zoom-in .mapboxgl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23333'%3E %3Cpath d='M14.5 8.5c-.75 0-1.5.75-1.5 1.5v3h-3c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h3v3c0 .75.75 1.5 1.5 1.5S16 19.75 16 19v-3h3c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-3v-3c0-.75-.75-1.5-1.5-1.5z'/%3E %3C/svg%3E");
}

@media (-ms-high-contrast: active) {
  .mapboxgl-ctrl button.mapboxgl-ctrl-zoom-out .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23fff'%3E %3Cpath d='M10 13c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h9c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-9z'/%3E %3C/svg%3E");
  }

  .mapboxgl-ctrl button.mapboxgl-ctrl-zoom-in .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23fff'%3E %3Cpath d='M14.5 8.5c-.75 0-1.5.75-1.5 1.5v3h-3c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h3v3c0 .75.75 1.5 1.5 1.5S16 19.75 16 19v-3h3c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-3v-3c0-.75-.75-1.5-1.5-1.5z'/%3E %3C/svg%3E");
  }
}
@media (-ms-high-contrast: black-on-white) {
  .mapboxgl-ctrl button.mapboxgl-ctrl-zoom-out .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23000'%3E %3Cpath d='M10 13c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h9c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-9z'/%3E %3C/svg%3E");
  }

  .mapboxgl-ctrl button.mapboxgl-ctrl-zoom-in .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23000'%3E %3Cpath d='M14.5 8.5c-.75 0-1.5.75-1.5 1.5v3h-3c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h3v3c0 .75.75 1.5 1.5 1.5S16 19.75 16 19v-3h3c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-3v-3c0-.75-.75-1.5-1.5-1.5z'/%3E %3C/svg%3E");
  }
}
.mapboxgl-ctrl button.mapboxgl-ctrl-fullscreen .mapboxgl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23333'%3E %3Cpath d='M24 16v5.5c0 1.75-.75 2.5-2.5 2.5H16v-1l3-1.5-4-5.5 1-1 5.5 4 1.5-3h1zM6 16l1.5 3 5.5-4 1 1-4 5.5 3 1.5v1H7.5C5.75 24 5 23.25 5 21.5V16h1zm7-11v1l-3 1.5 4 5.5-1 1-5.5-4L6 13H5V7.5C5 5.75 5.75 5 7.5 5H13zm11 2.5c0-1.75-.75-2.5-2.5-2.5H16v1l3 1.5-4 5.5 1 1 5.5-4 1.5 3h1V7.5z'/%3E %3C/svg%3E");
}

.mapboxgl-ctrl button.mapboxgl-ctrl-shrink .mapboxgl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath d='M18.5 16c-1.75 0-2.5.75-2.5 2.5V24h1l1.5-3 5.5 4 1-1-4-5.5 3-1.5v-1h-5.5zM13 18.5c0-1.75-.75-2.5-2.5-2.5H5v1l3 1.5L4 24l1 1 5.5-4 1.5 3h1v-5.5zm3-8c0 1.75.75 2.5 2.5 2.5H24v-1l-3-1.5L25 5l-1-1-5.5 4L17 5h-1v5.5zM10.5 13c1.75 0 2.5-.75 2.5-2.5V5h-1l-1.5 3L5 4 4 5l4 5.5L5 12v1h5.5z'/%3E %3C/svg%3E");
}

@media (-ms-high-contrast: active) {
  .mapboxgl-ctrl button.mapboxgl-ctrl-fullscreen .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23fff'%3E %3Cpath d='M24 16v5.5c0 1.75-.75 2.5-2.5 2.5H16v-1l3-1.5-4-5.5 1-1 5.5 4 1.5-3h1zM6 16l1.5 3 5.5-4 1 1-4 5.5 3 1.5v1H7.5C5.75 24 5 23.25 5 21.5V16h1zm7-11v1l-3 1.5 4 5.5-1 1-5.5-4L6 13H5V7.5C5 5.75 5.75 5 7.5 5H13zm11 2.5c0-1.75-.75-2.5-2.5-2.5H16v1l3 1.5-4 5.5 1 1 5.5-4 1.5 3h1V7.5z'/%3E %3C/svg%3E");
  }

  .mapboxgl-ctrl button.mapboxgl-ctrl-shrink .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23fff'%3E %3Cpath d='M18.5 16c-1.75 0-2.5.75-2.5 2.5V24h1l1.5-3 5.5 4 1-1-4-5.5 3-1.5v-1h-5.5zM13 18.5c0-1.75-.75-2.5-2.5-2.5H5v1l3 1.5L4 24l1 1 5.5-4 1.5 3h1v-5.5zm3-8c0 1.75.75 2.5 2.5 2.5H24v-1l-3-1.5L25 5l-1-1-5.5 4L17 5h-1v5.5zM10.5 13c1.75 0 2.5-.75 2.5-2.5V5h-1l-1.5 3L5 4 4 5l4 5.5L5 12v1h5.5z'/%3E %3C/svg%3E");
  }
}
@media (-ms-high-contrast: black-on-white) {
  .mapboxgl-ctrl button.mapboxgl-ctrl-fullscreen .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23000'%3E %3Cpath d='M24 16v5.5c0 1.75-.75 2.5-2.5 2.5H16v-1l3-1.5-4-5.5 1-1 5.5 4 1.5-3h1zM6 16l1.5 3 5.5-4 1 1-4 5.5 3 1.5v1H7.5C5.75 24 5 23.25 5 21.5V16h1zm7-11v1l-3 1.5 4 5.5-1 1-5.5-4L6 13H5V7.5C5 5.75 5.75 5 7.5 5H13zm11 2.5c0-1.75-.75-2.5-2.5-2.5H16v1l3 1.5-4 5.5 1 1 5.5-4 1.5 3h1V7.5z'/%3E %3C/svg%3E");
  }

  .mapboxgl-ctrl button.mapboxgl-ctrl-shrink .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23000'%3E %3Cpath d='M18.5 16c-1.75 0-2.5.75-2.5 2.5V24h1l1.5-3 5.5 4 1-1-4-5.5 3-1.5v-1h-5.5zM13 18.5c0-1.75-.75-2.5-2.5-2.5H5v1l3 1.5L4 24l1 1 5.5-4 1.5 3h1v-5.5zm3-8c0 1.75.75 2.5 2.5 2.5H24v-1l-3-1.5L25 5l-1-1-5.5 4L17 5h-1v5.5zM10.5 13c1.75 0 2.5-.75 2.5-2.5V5h-1l-1.5 3L5 4 4 5l4 5.5L5 12v1h5.5z'/%3E %3C/svg%3E");
  }
}
.mapboxgl-ctrl button.mapboxgl-ctrl-compass .mapboxgl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23333'%3E %3Cpath d='M10.5 14l4-8 4 8h-8z'/%3E %3Cpath id='south' d='M10.5 16l4 8 4-8h-8z' fill='%23ccc'/%3E %3C/svg%3E");
}

@media (-ms-high-contrast: active) {
  .mapboxgl-ctrl button.mapboxgl-ctrl-compass .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23fff'%3E %3Cpath d='M10.5 14l4-8 4 8h-8z'/%3E %3Cpath id='south' d='M10.5 16l4 8 4-8h-8z' fill='%23999'/%3E %3C/svg%3E");
  }
}
@media (-ms-high-contrast: black-on-white) {
  .mapboxgl-ctrl button.mapboxgl-ctrl-compass .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 29 29' xmlns='http://www.w3.org/2000/svg' fill='%23000'%3E %3Cpath d='M10.5 14l4-8 4 8h-8z'/%3E %3Cpath id='south' d='M10.5 16l4 8 4-8h-8z' fill='%23ccc'/%3E %3C/svg%3E");
  }
}
.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate .mapboxgl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23333'%3E %3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E %3Ccircle id='dot' cx='10' cy='10' r='2'/%3E %3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E %3C/svg%3E");
}

.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate:disabled .mapboxgl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23aaa'%3E %3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E %3Ccircle id='dot' cx='10' cy='10' r='2'/%3E %3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' fill='red'/%3E %3C/svg%3E");
}

.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-active .mapboxgl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%2333b5e5'%3E %3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E %3Ccircle id='dot' cx='10' cy='10' r='2'/%3E %3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E %3C/svg%3E");
}

.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-active-error .mapboxgl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23e58978'%3E %3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E %3Ccircle id='dot' cx='10' cy='10' r='2'/%3E %3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E %3C/svg%3E");
}

.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-background .mapboxgl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%2333b5e5'%3E %3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E %3Ccircle id='dot' cx='10' cy='10' r='2' display='none'/%3E %3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E %3C/svg%3E");
}

.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-background-error .mapboxgl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23e54e33'%3E %3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E %3Ccircle id='dot' cx='10' cy='10' r='2' display='none'/%3E %3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E %3C/svg%3E");
}

.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-waiting .mapboxgl-ctrl-icon {
  animation: mapboxgl-spin 2s linear infinite;
}

@media (-ms-high-contrast: active) {
  .mapboxgl-ctrl button.mapboxgl-ctrl-geolocate .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23fff'%3E %3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E %3Ccircle id='dot' cx='10' cy='10' r='2'/%3E %3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E %3C/svg%3E");
  }

  .mapboxgl-ctrl button.mapboxgl-ctrl-geolocate:disabled .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23999'%3E %3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E %3Ccircle id='dot' cx='10' cy='10' r='2'/%3E %3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' fill='red'/%3E %3C/svg%3E");
  }

  .mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-active .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%2333b5e5'%3E %3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E %3Ccircle id='dot' cx='10' cy='10' r='2'/%3E %3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E %3C/svg%3E");
  }

  .mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-active-error .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23e58978'%3E %3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E %3Ccircle id='dot' cx='10' cy='10' r='2'/%3E %3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E %3C/svg%3E");
  }

  .mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-background .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%2333b5e5'%3E %3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E %3Ccircle id='dot' cx='10' cy='10' r='2' display='none'/%3E %3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E %3C/svg%3E");
  }

  .mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-background-error .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23e54e33'%3E %3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E %3Ccircle id='dot' cx='10' cy='10' r='2' display='none'/%3E %3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E %3C/svg%3E");
  }
}
@media (-ms-high-contrast: black-on-white) {
  .mapboxgl-ctrl button.mapboxgl-ctrl-geolocate .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23000'%3E %3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E %3Ccircle id='dot' cx='10' cy='10' r='2'/%3E %3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E %3C/svg%3E");
  }

  .mapboxgl-ctrl button.mapboxgl-ctrl-geolocate:disabled .mapboxgl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='29' height='29' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23666'%3E %3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E %3Ccircle id='dot' cx='10' cy='10' r='2'/%3E %3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' fill='red'/%3E %3C/svg%3E");
  }
}
@keyframes mapboxgl-spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
a.mapboxgl-ctrl-logo {
  width: 88px;
  height: 23px;
  margin: 0 0 -4px -4px;
  display: block;
  background-repeat: no-repeat;
  cursor: pointer;
  overflow: hidden;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='88' height='23' viewBox='0 0 88 23' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' fill-rule='evenodd'%3E %3Cdefs%3E %3Cpath id='logo' d='M11.5 2.25c5.105 0 9.25 4.145 9.25 9.25s-4.145 9.25-9.25 9.25-9.25-4.145-9.25-9.25 4.145-9.25 9.25-9.25zM6.997 15.983c-.051-.338-.828-5.802 2.233-8.873a4.395 4.395 0 013.13-1.28c1.27 0 2.49.51 3.39 1.42.91.9 1.42 2.12 1.42 3.39 0 1.18-.449 2.301-1.28 3.13C12.72 16.93 7 16 7 16l-.003-.017zM15.3 10.5l-2 .8-.8 2-.8-2-2-.8 2-.8.8-2 .8 2 2 .8z'/%3E %3Cpath id='text' d='M50.63 8c.13 0 .23.1.23.23V9c.7-.76 1.7-1.18 2.73-1.18 2.17 0 3.95 1.85 3.95 4.17s-1.77 4.19-3.94 4.19c-1.04 0-2.03-.43-2.74-1.18v3.77c0 .13-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V8.23c0-.12.1-.23.23-.23h1.4zm-3.86.01c.01 0 .01 0 .01-.01.13 0 .22.1.22.22v7.55c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V15c-.7.76-1.69 1.19-2.73 1.19-2.17 0-3.94-1.87-3.94-4.19 0-2.32 1.77-4.19 3.94-4.19 1.03 0 2.02.43 2.73 1.18v-.75c0-.12.1-.23.23-.23h1.4zm26.375-.19a4.24 4.24 0 00-4.16 3.29c-.13.59-.13 1.19 0 1.77a4.233 4.233 0 004.17 3.3c2.35 0 4.26-1.87 4.26-4.19 0-2.32-1.9-4.17-4.27-4.17zM60.63 5c.13 0 .23.1.23.23v3.76c.7-.76 1.7-1.18 2.73-1.18 1.88 0 3.45 1.4 3.84 3.28.13.59.13 1.2 0 1.8-.39 1.88-1.96 3.29-3.84 3.29-1.03 0-2.02-.43-2.73-1.18v.77c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V5.23c0-.12.1-.23.23-.23h1.4zm-34 11h-1.4c-.13 0-.23-.11-.23-.23V8.22c.01-.13.1-.22.23-.22h1.4c.13 0 .22.11.23.22v.68c.5-.68 1.3-1.09 2.16-1.1h.03c1.09 0 2.09.6 2.6 1.55.45-.95 1.4-1.55 2.44-1.56 1.62 0 2.93 1.25 2.9 2.78l.03 5.2c0 .13-.1.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.8 0-1.46.7-1.59 1.62l.01 4.68c0 .13-.11.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.85 0-1.54.79-1.6 1.8v4.5c0 .13-.1.23-.23.23zm53.615 0h-1.61c-.04 0-.08-.01-.12-.03-.09-.06-.13-.19-.06-.28l2.43-3.71-2.39-3.65a.213.213 0 01-.03-.12c0-.12.09-.21.21-.21h1.61c.13 0 .24.06.3.17l1.41 2.37 1.4-2.37a.34.34 0 01.3-.17h1.6c.04 0 .08.01.12.03.09.06.13.19.06.28l-2.37 3.65 2.43 3.7c0 .05.01.09.01.13 0 .12-.09.21-.21.21h-1.61c-.13 0-.24-.06-.3-.17l-1.44-2.42-1.44 2.42a.34.34 0 01-.3.17zm-7.12-1.49c-1.33 0-2.42-1.12-2.42-2.51 0-1.39 1.08-2.52 2.42-2.52 1.33 0 2.42 1.12 2.42 2.51 0 1.39-1.08 2.51-2.42 2.52zm-19.865 0c-1.32 0-2.39-1.11-2.42-2.48v-.07c.02-1.38 1.09-2.49 2.4-2.49 1.32 0 2.41 1.12 2.41 2.51 0 1.39-1.07 2.52-2.39 2.53zm-8.11-2.48c-.01 1.37-1.09 2.47-2.41 2.47s-2.42-1.12-2.42-2.51c0-1.39 1.08-2.52 2.4-2.52 1.33 0 2.39 1.11 2.41 2.48l.02.08zm18.12 2.47c-1.32 0-2.39-1.11-2.41-2.48v-.06c.02-1.38 1.09-2.48 2.41-2.48s2.42 1.12 2.42 2.51c0 1.39-1.09 2.51-2.42 2.51z'/%3E %3C/defs%3E %3Cmask id='clip'%3E %3Crect x='0' y='0' width='100%25' height='100%25' fill='white'/%3E %3Cuse xlink:href='%23logo'/%3E %3Cuse xlink:href='%23text'/%3E %3C/mask%3E %3Cg id='outline' opacity='0.3' stroke='%23000' stroke-width='3'%3E %3Ccircle mask='url(%23clip)' cx='11.5' cy='11.5' r='9.25'/%3E %3Cuse xlink:href='%23text' mask='url(%23clip)'/%3E %3C/g%3E %3Cg id='fill' opacity='0.9' fill='%23fff'%3E %3Cuse xlink:href='%23logo'/%3E %3Cuse xlink:href='%23text'/%3E %3C/g%3E %3C/svg%3E");
}

a.mapboxgl-ctrl-logo.mapboxgl-compact {
  width: 23px;
}

@media (-ms-high-contrast: active) {
  a.mapboxgl-ctrl-logo {
    background-color: transparent;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='88' height='23' viewBox='0 0 88 23' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' fill-rule='evenodd'%3E %3Cdefs%3E %3Cpath id='logo' d='M11.5 2.25c5.105 0 9.25 4.145 9.25 9.25s-4.145 9.25-9.25 9.25-9.25-4.145-9.25-9.25 4.145-9.25 9.25-9.25zM6.997 15.983c-.051-.338-.828-5.802 2.233-8.873a4.395 4.395 0 013.13-1.28c1.27 0 2.49.51 3.39 1.42.91.9 1.42 2.12 1.42 3.39 0 1.18-.449 2.301-1.28 3.13C12.72 16.93 7 16 7 16l-.003-.017zM15.3 10.5l-2 .8-.8 2-.8-2-2-.8 2-.8.8-2 .8 2 2 .8z'/%3E %3Cpath id='text' d='M50.63 8c.13 0 .23.1.23.23V9c.7-.76 1.7-1.18 2.73-1.18 2.17 0 3.95 1.85 3.95 4.17s-1.77 4.19-3.94 4.19c-1.04 0-2.03-.43-2.74-1.18v3.77c0 .13-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V8.23c0-.12.1-.23.23-.23h1.4zm-3.86.01c.01 0 .01 0 .01-.01.13 0 .22.1.22.22v7.55c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V15c-.7.76-1.69 1.19-2.73 1.19-2.17 0-3.94-1.87-3.94-4.19 0-2.32 1.77-4.19 3.94-4.19 1.03 0 2.02.43 2.73 1.18v-.75c0-.12.1-.23.23-.23h1.4zm26.375-.19a4.24 4.24 0 00-4.16 3.29c-.13.59-.13 1.19 0 1.77a4.233 4.233 0 004.17 3.3c2.35 0 4.26-1.87 4.26-4.19 0-2.32-1.9-4.17-4.27-4.17zM60.63 5c.13 0 .23.1.23.23v3.76c.7-.76 1.7-1.18 2.73-1.18 1.88 0 3.45 1.4 3.84 3.28.13.59.13 1.2 0 1.8-.39 1.88-1.96 3.29-3.84 3.29-1.03 0-2.02-.43-2.73-1.18v.77c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V5.23c0-.12.1-.23.23-.23h1.4zm-34 11h-1.4c-.13 0-.23-.11-.23-.23V8.22c.01-.13.1-.22.23-.22h1.4c.13 0 .22.11.23.22v.68c.5-.68 1.3-1.09 2.16-1.1h.03c1.09 0 2.09.6 2.6 1.55.45-.95 1.4-1.55 2.44-1.56 1.62 0 2.93 1.25 2.9 2.78l.03 5.2c0 .13-.1.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.8 0-1.46.7-1.59 1.62l.01 4.68c0 .13-.11.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.85 0-1.54.79-1.6 1.8v4.5c0 .13-.1.23-.23.23zm53.615 0h-1.61c-.04 0-.08-.01-.12-.03-.09-.06-.13-.19-.06-.28l2.43-3.71-2.39-3.65a.213.213 0 01-.03-.12c0-.12.09-.21.21-.21h1.61c.13 0 .24.06.3.17l1.41 2.37 1.4-2.37a.34.34 0 01.3-.17h1.6c.04 0 .08.01.12.03.09.06.13.19.06.28l-2.37 3.65 2.43 3.7c0 .05.01.09.01.13 0 .12-.09.21-.21.21h-1.61c-.13 0-.24-.06-.3-.17l-1.44-2.42-1.44 2.42a.34.34 0 01-.3.17zm-7.12-1.49c-1.33 0-2.42-1.12-2.42-2.51 0-1.39 1.08-2.52 2.42-2.52 1.33 0 2.42 1.12 2.42 2.51 0 1.39-1.08 2.51-2.42 2.52zm-19.865 0c-1.32 0-2.39-1.11-2.42-2.48v-.07c.02-1.38 1.09-2.49 2.4-2.49 1.32 0 2.41 1.12 2.41 2.51 0 1.39-1.07 2.52-2.39 2.53zm-8.11-2.48c-.01 1.37-1.09 2.47-2.41 2.47s-2.42-1.12-2.42-2.51c0-1.39 1.08-2.52 2.4-2.52 1.33 0 2.39 1.11 2.41 2.48l.02.08zm18.12 2.47c-1.32 0-2.39-1.11-2.41-2.48v-.06c.02-1.38 1.09-2.48 2.41-2.48s2.42 1.12 2.42 2.51c0 1.39-1.09 2.51-2.42 2.51z'/%3E %3C/defs%3E %3Cmask id='clip'%3E %3Crect x='0' y='0' width='100%25' height='100%25' fill='white'/%3E %3Cuse xlink:href='%23logo'/%3E %3Cuse xlink:href='%23text'/%3E %3C/mask%3E %3Cg id='outline' opacity='1' stroke='%23000' stroke-width='3'%3E %3Ccircle mask='url(%23clip)' cx='11.5' cy='11.5' r='9.25'/%3E %3Cuse xlink:href='%23text' mask='url(%23clip)'/%3E %3C/g%3E %3Cg id='fill' opacity='1' fill='%23fff'%3E %3Cuse xlink:href='%23logo'/%3E %3Cuse xlink:href='%23text'/%3E %3C/g%3E %3C/svg%3E");
  }
}
@media (-ms-high-contrast: black-on-white) {
  a.mapboxgl-ctrl-logo {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='88' height='23' viewBox='0 0 88 23' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' fill-rule='evenodd'%3E %3Cdefs%3E %3Cpath id='logo' d='M11.5 2.25c5.105 0 9.25 4.145 9.25 9.25s-4.145 9.25-9.25 9.25-9.25-4.145-9.25-9.25 4.145-9.25 9.25-9.25zM6.997 15.983c-.051-.338-.828-5.802 2.233-8.873a4.395 4.395 0 013.13-1.28c1.27 0 2.49.51 3.39 1.42.91.9 1.42 2.12 1.42 3.39 0 1.18-.449 2.301-1.28 3.13C12.72 16.93 7 16 7 16l-.003-.017zM15.3 10.5l-2 .8-.8 2-.8-2-2-.8 2-.8.8-2 .8 2 2 .8z'/%3E %3Cpath id='text' d='M50.63 8c.13 0 .23.1.23.23V9c.7-.76 1.7-1.18 2.73-1.18 2.17 0 3.95 1.85 3.95 4.17s-1.77 4.19-3.94 4.19c-1.04 0-2.03-.43-2.74-1.18v3.77c0 .13-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V8.23c0-.12.1-.23.23-.23h1.4zm-3.86.01c.01 0 .01 0 .01-.01.13 0 .22.1.22.22v7.55c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V15c-.7.76-1.69 1.19-2.73 1.19-2.17 0-3.94-1.87-3.94-4.19 0-2.32 1.77-4.19 3.94-4.19 1.03 0 2.02.43 2.73 1.18v-.75c0-.12.1-.23.23-.23h1.4zm26.375-.19a4.24 4.24 0 00-4.16 3.29c-.13.59-.13 1.19 0 1.77a4.233 4.233 0 004.17 3.3c2.35 0 4.26-1.87 4.26-4.19 0-2.32-1.9-4.17-4.27-4.17zM60.63 5c.13 0 .23.1.23.23v3.76c.7-.76 1.7-1.18 2.73-1.18 1.88 0 3.45 1.4 3.84 3.28.13.59.13 1.2 0 1.8-.39 1.88-1.96 3.29-3.84 3.29-1.03 0-2.02-.43-2.73-1.18v.77c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V5.23c0-.12.1-.23.23-.23h1.4zm-34 11h-1.4c-.13 0-.23-.11-.23-.23V8.22c.01-.13.1-.22.23-.22h1.4c.13 0 .22.11.23.22v.68c.5-.68 1.3-1.09 2.16-1.1h.03c1.09 0 2.09.6 2.6 1.55.45-.95 1.4-1.55 2.44-1.56 1.62 0 2.93 1.25 2.9 2.78l.03 5.2c0 .13-.1.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.8 0-1.46.7-1.59 1.62l.01 4.68c0 .13-.11.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.85 0-1.54.79-1.6 1.8v4.5c0 .13-.1.23-.23.23zm53.615 0h-1.61c-.04 0-.08-.01-.12-.03-.09-.06-.13-.19-.06-.28l2.43-3.71-2.39-3.65a.213.213 0 01-.03-.12c0-.12.09-.21.21-.21h1.61c.13 0 .24.06.3.17l1.41 2.37 1.4-2.37a.34.34 0 01.3-.17h1.6c.04 0 .08.01.12.03.09.06.13.19.06.28l-2.37 3.65 2.43 3.7c0 .05.01.09.01.13 0 .12-.09.21-.21.21h-1.61c-.13 0-.24-.06-.3-.17l-1.44-2.42-1.44 2.42a.34.34 0 01-.3.17zm-7.12-1.49c-1.33 0-2.42-1.12-2.42-2.51 0-1.39 1.08-2.52 2.42-2.52 1.33 0 2.42 1.12 2.42 2.51 0 1.39-1.08 2.51-2.42 2.52zm-19.865 0c-1.32 0-2.39-1.11-2.42-2.48v-.07c.02-1.38 1.09-2.49 2.4-2.49 1.32 0 2.41 1.12 2.41 2.51 0 1.39-1.07 2.52-2.39 2.53zm-8.11-2.48c-.01 1.37-1.09 2.47-2.41 2.47s-2.42-1.12-2.42-2.51c0-1.39 1.08-2.52 2.4-2.52 1.33 0 2.39 1.11 2.41 2.48l.02.08zm18.12 2.47c-1.32 0-2.39-1.11-2.41-2.48v-.06c.02-1.38 1.09-2.48 2.41-2.48s2.42 1.12 2.42 2.51c0 1.39-1.09 2.51-2.42 2.51z'/%3E %3C/defs%3E %3Cmask id='clip'%3E %3Crect x='0' y='0' width='100%25' height='100%25' fill='white'/%3E %3Cuse xlink:href='%23logo'/%3E %3Cuse xlink:href='%23text'/%3E %3C/mask%3E %3Cg id='outline' opacity='1' stroke='%23fff' stroke-width='3' fill='%23fff'%3E %3Ccircle mask='url(%23clip)' cx='11.5' cy='11.5' r='9.25'/%3E %3Cuse xlink:href='%23text' mask='url(%23clip)'/%3E %3C/g%3E %3Cg id='fill' opacity='1' fill='%23000'%3E %3Cuse xlink:href='%23logo'/%3E %3Cuse xlink:href='%23text'/%3E %3C/g%3E %3C/svg%3E");
  }
}
.mapboxgl-ctrl.mapboxgl-ctrl-attrib {
  padding: 0 5px;
  background-color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

@media screen {
  .mapboxgl-ctrl-attrib.mapboxgl-compact {
    min-height: 20px;
    padding: 2px 24px 2px 0;
    margin: 10px;
    position: relative;
    background-color: #fff;
    border-radius: 12px;
  }

  .mapboxgl-ctrl-attrib.mapboxgl-compact-show {
    padding: 2px 28px 2px 8px;
    visibility: visible;
  }

  .mapboxgl-ctrl-bottom-left > .mapboxgl-ctrl-attrib.mapboxgl-compact-show, .mapboxgl-ctrl-top-left > .mapboxgl-ctrl-attrib.mapboxgl-compact-show {
    padding: 2px 8px 2px 28px;
    border-radius: 12px;
  }

  .mapboxgl-ctrl-attrib.mapboxgl-compact .mapboxgl-ctrl-attrib-inner {
    display: none;
  }

  .mapboxgl-ctrl-attrib-button {
    display: none;
    cursor: pointer;
    position: absolute;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill-rule='evenodd'%3E %3Cpath d='M4 10a6 6 0 1 0 12 0 6 6 0 1 0-12 0m5-3a1 1 0 1 0 2 0 1 1 0 1 0-2 0m0 3a1 1 0 1 1 2 0v3a1 1 0 1 1-2 0'/%3E %3C/svg%3E");
    background-color: rgba(255, 255, 255, 0.5);
    width: 24px;
    height: 24px;
    box-sizing: border-box;
    border-radius: 12px;
    outline: none;
    top: 0;
    right: 0;
    border: 0;
  }

  .mapboxgl-ctrl-bottom-left .mapboxgl-ctrl-attrib-button, .mapboxgl-ctrl-top-left .mapboxgl-ctrl-attrib-button {
    left: 0;
  }

  .mapboxgl-ctrl-attrib.mapboxgl-compact-show .mapboxgl-ctrl-attrib-inner, .mapboxgl-ctrl-attrib.mapboxgl-compact .mapboxgl-ctrl-attrib-button {
    display: block;
  }

  .mapboxgl-ctrl-attrib.mapboxgl-compact-show .mapboxgl-ctrl-attrib-button {
    background-color: rgba(0, 0, 0, 0.05);
  }

  .mapboxgl-ctrl-bottom-right > .mapboxgl-ctrl-attrib.mapboxgl-compact:after {
    bottom: 0;
    right: 0;
  }

  .mapboxgl-ctrl-top-right > .mapboxgl-ctrl-attrib.mapboxgl-compact:after {
    top: 0;
    right: 0;
  }

  .mapboxgl-ctrl-top-left > .mapboxgl-ctrl-attrib.mapboxgl-compact:after {
    top: 0;
    left: 0;
  }

  .mapboxgl-ctrl-bottom-left > .mapboxgl-ctrl-attrib.mapboxgl-compact:after {
    bottom: 0;
    left: 0;
  }
}
@media screen and (-ms-high-contrast: active) {
  .mapboxgl-ctrl-attrib.mapboxgl-compact:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill-rule='evenodd' fill='%23fff'%3E %3Cpath d='M4 10a6 6 0 1 0 12 0 6 6 0 1 0-12 0m5-3a1 1 0 1 0 2 0 1 1 0 1 0-2 0m0 3a1 1 0 1 1 2 0v3a1 1 0 1 1-2 0'/%3E %3C/svg%3E");
  }
}
@media screen and (-ms-high-contrast: black-on-white) {
  .mapboxgl-ctrl-attrib.mapboxgl-compact:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill-rule='evenodd'%3E %3Cpath d='M4 10a6 6 0 1 0 12 0 6 6 0 1 0-12 0m5-3a1 1 0 1 0 2 0 1 1 0 1 0-2 0m0 3a1 1 0 1 1 2 0v3a1 1 0 1 1-2 0'/%3E %3C/svg%3E");
  }
}
.mapboxgl-ctrl-attrib a {
  color: rgba(0, 0, 0, 0.75);
  text-decoration: none;
}

.mapboxgl-ctrl-attrib a:hover {
  color: inherit;
  text-decoration: underline;
}

.mapboxgl-ctrl-attrib .mapbox-improve-map {
  font-weight: 700;
  margin-left: 2px;
}

.mapboxgl-attrib-empty {
  display: none;
}

.mapboxgl-ctrl-scale {
  background-color: rgba(255, 255, 255, 0.75);
  font-size: 10px;
  border: 2px solid #333;
  border-top: #333;
  padding: 0 5px;
  color: #333;
  box-sizing: border-box;
}

.mapboxgl-popup {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  will-change: transform;
  pointer-events: none;
}

.mapboxgl-popup-anchor-top, .mapboxgl-popup-anchor-top-left, .mapboxgl-popup-anchor-top-right {
  flex-direction: column;
}

.mapboxgl-popup-anchor-bottom, .mapboxgl-popup-anchor-bottom-left, .mapboxgl-popup-anchor-bottom-right {
  flex-direction: column-reverse;
}

.mapboxgl-popup-anchor-left {
  flex-direction: row;
}

.mapboxgl-popup-anchor-right {
  flex-direction: row-reverse;
}

.mapboxgl-popup-tip {
  width: 0;
  height: 0;
  border: 10px solid transparent;
  z-index: 1;
}

.mapboxgl-popup-anchor-top .mapboxgl-popup-tip {
  align-self: center;
  border-top: none;
  border-bottom-color: #fff;
}

.mapboxgl-popup-anchor-top-left .mapboxgl-popup-tip {
  align-self: flex-start;
  border-top: none;
  border-left: none;
  border-bottom-color: #fff;
}

.mapboxgl-popup-anchor-top-right .mapboxgl-popup-tip {
  align-self: flex-end;
  border-top: none;
  border-right: none;
  border-bottom-color: #fff;
}

.mapboxgl-popup-anchor-bottom .mapboxgl-popup-tip {
  align-self: center;
  border-bottom: none;
  border-top-color: #fff;
}

.mapboxgl-popup-anchor-bottom-left .mapboxgl-popup-tip {
  align-self: flex-start;
  border-bottom: none;
  border-left: none;
  border-top-color: #fff;
}

.mapboxgl-popup-anchor-bottom-right .mapboxgl-popup-tip {
  align-self: flex-end;
  border-bottom: none;
  border-right: none;
  border-top-color: #fff;
}

.mapboxgl-popup-anchor-left .mapboxgl-popup-tip {
  align-self: center;
  border-left: none;
  border-right-color: #fff;
}

.mapboxgl-popup-anchor-right .mapboxgl-popup-tip {
  align-self: center;
  border-right: none;
  border-left-color: #fff;
}

.mapboxgl-popup-close-button {
  position: absolute;
  right: 0;
  top: 0;
  border: 0;
  border-radius: 0 3px 0 0;
  cursor: pointer;
  background-color: transparent;
}

.mapboxgl-popup-close-button:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.mapboxgl-popup-content {
  position: relative;
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  padding: 10px 10px 15px;
  pointer-events: auto;
}

.mapboxgl-popup-anchor-top-left .mapboxgl-popup-content {
  border-top-left-radius: 0;
}

.mapboxgl-popup-anchor-top-right .mapboxgl-popup-content {
  border-top-right-radius: 0;
}

.mapboxgl-popup-anchor-bottom-left .mapboxgl-popup-content {
  border-bottom-left-radius: 0;
}

.mapboxgl-popup-anchor-bottom-right .mapboxgl-popup-content {
  border-bottom-right-radius: 0;
}

.mapboxgl-popup-track-pointer {
  display: none;
}

.mapboxgl-popup-track-pointer * {
  pointer-events: none;
  user-select: none;
}

.mapboxgl-map:hover .mapboxgl-popup-track-pointer {
  display: flex;
}

.mapboxgl-map:active .mapboxgl-popup-track-pointer {
  display: none;
}

.mapboxgl-marker {
  position: absolute;
  top: 0;
  left: 0;
  will-change: transform;
  opacity: 1;
  transition: opacity 0.2s;
}

.mapboxgl-user-location-dot, .mapboxgl-user-location-dot:before {
  background-color: #1da1f2;
  width: 15px;
  height: 15px;
  border-radius: 50%;
}

.mapboxgl-user-location-dot:before {
  content: "";
  position: absolute;
  animation: mapboxgl-user-location-dot-pulse 2s infinite;
}

.mapboxgl-user-location-dot:after {
  border-radius: 50%;
  border: 2px solid #fff;
  content: "";
  height: 19px;
  left: -2px;
  position: absolute;
  top: -2px;
  width: 19px;
  box-sizing: border-box;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.35);
}

.mapboxgl-user-location-show-heading .mapboxgl-user-location-heading {
  width: 0;
  height: 0;
}

.mapboxgl-user-location-show-heading .mapboxgl-user-location-heading:after, .mapboxgl-user-location-show-heading .mapboxgl-user-location-heading:before {
  content: "";
  border-bottom: 7.5px solid #4aa1eb;
  position: absolute;
}

.mapboxgl-user-location-show-heading .mapboxgl-user-location-heading:before {
  border-left: 7.5px solid transparent;
  transform: translateY(-28px) skewY(-20deg);
}

.mapboxgl-user-location-show-heading .mapboxgl-user-location-heading:after {
  border-right: 7.5px solid transparent;
  transform: translate(7.5px, -28px) skewY(20deg);
}

@keyframes mapboxgl-user-location-dot-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  70% {
    transform: scale(3);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 0;
  }
}
.mapboxgl-user-location-dot-stale {
  background-color: #aaa;
}

.mapboxgl-user-location-dot-stale:after {
  display: none;
}

.mapboxgl-user-location-accuracy-circle {
  background-color: rgba(29, 161, 242, 0.2);
  width: 1px;
  height: 1px;
  border-radius: 100%;
}

.mapboxgl-crosshair, .mapboxgl-crosshair .mapboxgl-interactive, .mapboxgl-crosshair .mapboxgl-interactive:active {
  cursor: crosshair;
}

.mapboxgl-boxzoom {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  background: #fff;
  border: 2px dotted #202020;
  opacity: 0.5;
}

@media print {
  .mapbox-improve-map {
    display: none;
  }
}
.mapboxgl-scroll-zoom-blocker, .mapboxgl-touch-pan-blocker {
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif;
  justify-content: center;
  text-align: center;
  position: absolute;
  display: flex;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.75s ease-in-out;
  transition-delay: 1s;
}

.mapboxgl-scroll-zoom-blocker-show, .mapboxgl-touch-pan-blocker-show {
  opacity: 1;
  transition: opacity 0.1s ease-in-out;
}

.mapboxgl-canvas-container.mapboxgl-touch-pan-blocker-override.mapboxgl-scrollable-page, .mapboxgl-canvas-container.mapboxgl-touch-pan-blocker-override.mapboxgl-scrollable-page .mapboxgl-canvas {
  touch-action: pan-x pan-y;
}

.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 500;
  transition: 0.2s;
  padding: 0 2rem;
}
@media (min-width:990px) {
  .header {
    padding: 0 3.125rem;
  }
}
@media (max-width:989px) {
  .menu-active .header {
    background-color: #fff;
    color: #000 !important;
  }
}
.scroll-down .header {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}
.header__container {
  display: flex;
  align-items: center;
  max-width: 101.25rem;
  margin: 0 auto;
  height: 3.75rem;
}
@media (min-width:990px) {
  .header__container {
    height: 6.25rem;
  }
}
.header__logo {
  display: inline-block;
  height: 3.75rem;
  background-image: url(../files/vector/logo.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 3.75rem;
  margin: 0 auto 0 0;
  color: inherit;
  position: relative;
}
@media (min-width:990px) {
  .header__logo {
    height: 6.25rem;
    width: 6.25rem;
  }
}
.header-light .header__logo {
  background-image: url(../files/vector/logo-white.svg);
}
.scrolled .header__logo {
  background-image: url(../files/vector/logo.svg);
}
@media (max-width:989px) {
  .menu-active .header__logo {
    background-image: url(../files/vector/logo.svg);
  }
}
.header-light .header {
  color: #fff;
}
.scrolled .header {
  background-color: #fff;
  border-bottom: 1px solid #f3f3f3;
  color: #000;
}

.nav__arrow {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
@media (min-width:990px) {
  .nav__arrow {
    display: inline-block;
  }
}
.nav__arrow::after {
  display: inline-block;
  content: "";
  width: 0.4em;
  height: 0.4em;
  margin: 0 0 0.2em 0.2em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}
.nav ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav ul li {
  font-size: 1.25rem;
  margin: 0 0 0 2em;
  position: relative;
}
@media (min-width:990px) {
  .nav ul li {
    font-size: 1rem;
  }
}
@media (min-width:1400px) {
  .nav ul li {
    font-size: 1.25rem;
  }
}
.nav ul li.active {
  color: #00cb9c;
}
.nav ul li a {
  display: inline-block;
  text-decoration: none;
  color: #000;
  text-transform: uppercase;
}
.header-light .nav ul li a {
  color: #fff;
}
.footer .nav ul li a {
  color: #fff !important;
}
.scrolled .nav ul li a {
  color: #000;
}
.nav ul li a:hover {
  text-decoration: underline;
}
.nav ul li > ul {
  display: none;
  padding-left: 2em;
}
@media (min-width:990px) {
  .nav ul li > ul {
    display: block;
    opacity: 0;
    pointer-events: none;
    text-align: right;
    padding-left: 0;
    padding-top: 1em;
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 100%;
    right: 0;
  }
}
.nav ul li > ul li {
  margin: 0;
}
.nav ul li > ul a {
  display: block;
  white-space: nowrap;
  background-color: #fff;
  color: #000 !important;
  padding: 0.5em 0.75em;
}
.nav ul li:hover .nav__arrow::after, .nav ul li.open .nav__arrow::after {
  transform: rotate(-135deg);
}
.nav ul li:hover ul, .nav ul li.open ul {
  display: block;
  opacity: 1;
  pointer-events: visible;
}
@media (max-width:989px) {
  .nav ul {
    flex-direction: column;
  }
  .nav ul li {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
  }
  .nav ul li a {
    width: calc(100% - 5.8rem);
    padding: 1em 1em 1em 3em;
  }
  .nav ul li .nav__arrow {
    width: 5.8rem;
    text-align: center;
    position: relative;
    z-index: 100;
  }
  .nav ul li ul {
    width: 100%;
  }
  .nav ul li ul a {
    font-size: 5.5vw !important;
  }
  .header .nav {
    position: fixed;
    top: 3.75rem;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: auto;
    text-align: left;
    opacity: 0;
    pointer-events: none;
    transition: 0.2s;
    background-color: #fff;
  }
  .header .nav ul {
    color: #000;
  }
  .header .nav ul li a {
    font-size: 7vw;
    padding: 0.4em 2rem;
    color: #000 !important;
  }
  .menu-active .nav {
    opacity: 1;
    pointer-events: visible;
  }
}
@media (max-width:1199px) {
  .footer .nav {
    margin: 1.5625rem 0 0 0;
  }
  .footer .nav ul {
    flex-direction: column;
  }
  .footer .nav ul li {
    margin: 0;
  }
  .footer .nav ul li a {
    padding: 0;
  }
  .footer .nav ul li + li {
    margin-top: 1em;
  }
}
@media (min-width:1200px) {
  .footer .nav {
    margin: 0 0 0 auto;
  }
}
.footer .nav a {
  transition: 0.2s;
}
.footer .nav a:hover {
  text-decoration: none;
  color: #00cb9c;
}

.burger {
  width: 3.75rem;
  height: 3.75rem;
  margin-right: -1.1rem;
  transition: 0.3s;
  color: inherit;
  position: relative;
  cursor: pointer;
}
@media (min-width:990px) {
  .burger {
    display: none;
  }
}
.burger:before, .burger__inner, .burger:after {
  display: block;
  content: "";
  height: 2px;
  background-color: currentColor;
  transition: 0.3s;
  position: absolute;
  top: 50%;
  right: 30%;
  bottom: auto;
  left: 30%;
}
.burger:before {
  -webkit-transform: translateY(-7px);
  -moz-transform: translateY(-7px);
  -ms-transform: translateY(-7px);
  -o-transform: translateY(-7px);
  transform: translateY(-7px);
}
.menu-active .burger:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.menu-active .burger__inner {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  opacity: 0;
}
.burger:after {
  -webkit-transform: translateY(7px);
  -moz-transform: translateY(7px);
  -ms-transform: translateY(7px);
  -o-transform: translateY(7px);
  transform: translateY(7px);
}
.menu-active .burger:after {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

.hero {
  position: relative;
  padding: 20vh 2rem;
}
@media (min-width:750px) {
  .hero {
    height: 100vh;
    padding: 0 3.125rem;
  }
}
.hero__container {
  height: 100%;
}
.hero__backgrounds {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.hero__backgrounds::after {
  display: block;
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.hero__background {
  background-size: cover;
  background-position: center;
}
.hero__contents {
  height: 100%;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 1;
}
.hero__contents .slick-track {
  display: flex;
}
.hero__contents .slick-track .slick-slide {
  display: flex;
  height: auto;
  align-items: center;
  justify-content: center;
}
.hero__content h2 {
  font-size: 13vw;
  line-height: 1.075;
}
@media (min-width:1900px) {
  .hero__content h2 {
    font-size: 15rem;
  }
}
.hero .slick-list,
.hero .slick-track {
  height: 100%;
}
.hero .slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  right: 0;
  bottom: 1.625rem;
  left: 0;
  z-index: 2;
}
.hero .slick-dots li {
  margin: 0 0.5rem;
}
.hero .slick-dots li button {
  width: 0.625rem;
  height: 0.625rem;
  margin: 0;
  padding: 0;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 50%;
  text-indent: -9999rem;
  overflow: hidden;
  cursor: pointer;
}
.hero .slick-dots li.slick-active button {
  background-color: #fff;
}

.section {
  padding: 3.125rem 2rem;
}
@media (min-width:750px) {
  .section {
    padding: 6.25rem 3.125rem;
  }
}
.section__container {
  max-width: 101.25rem;
  margin: 0 auto;
  opacity: 0;
  transition: 0.8s;
}
.section__container.inViewportAnimated {
  opacity: 1;
}
.section__header {
  width: 100%;
}
.section__header--flex {
  display: flex;
  flex-direction: column;
}
@media (min-width:990px) {
  .section__header--flex {
    flex-direction: row;
    padding: 0 9.25rem 0 0;
  }
}
.section__header--small {
  margin-bottom: 50px;
}
.section__header--small .section__title h2 {
  text-transform: none;
}
@media (min-width:750px) {
  .section__header--small .section__title h2 {
    font-size: 2.1875rem;
  }
}
@media (min-width:1400px) {
  .section__header--small .section__title h2 {
    font-size: 2.1875rem;
  }
}
.section__header--medium {
  margin-bottom: 50px;
}
.section__header--medium .section__title h2 {
  text-transform: none;
}
@media (min-width:750px) {
  .section__header--medium .section__title h2 {
    font-size: 2.1875rem;
  }
}
@media (min-width:1400px) {
  .section__header--medium .section__title h2 {
    font-size: 3.125rem;
  }
}
.section__title {
  position: relative;
  text-transform: uppercase;
  margin: 0 auto 1.5625rem 0;
}
@media (min-width:750px) {
  .section__title {
    margin: 0 auto 2.1875rem 0;
  }
}
.section__title h2 {
  font-size: 8vw;
  line-height: 1.1;
}
@media (min-width:750px) {
  .section__title h2 {
    font-size: 4.5vw;
  }
}
@media (min-width:1700px) {
  .section__title h2 {
    font-size: 6.25rem;
  }
}
.section__title--underline {
  padding: 0 0 1.5625rem 0;
}
@media (min-width:750px) {
  .section__title--underline {
    padding: 0 0 3.125rem 0;
    margin: 0 0 3.125rem 0;
  }
}
.section__title--underline:after {
  display: block;
  content: "";
  height: 1px;
  background-color: #000;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}
.section__title--small {
  text-transform: none;
}
.section__title--small h1,
.section__title--small h1 {
  font-size: 1.5625rem;
}
@media (min-width:750px) {
  .section__title--small h1,
.section__title--small h1 {
    font-size: 3.125rem;
  }
}
.section__header--flex .section__title {
  padding-right: 3.125rem;
}
.section__perex {
  max-width: 41.875rem;
  margin-bottom: 3.125rem;
}
@media (min-width:750px) {
  .section__perex {
    margin-bottom: 6.25rem;
  }
}
.section__perex p {
  font-size: 0.9375rem;
}
@media (min-width:1200px) {
  .section__perex p {
    font-size: 1.5625rem;
  }
}
.section__content img {
  display: block;
  width: 100%;
}
.section__link {
  margin: 1.875rem 0 0 0;
}
@media (min-width:750px) {
  .section__link {
    margin: 3.75rem 0 0 0;
    text-align: center;
  }
}
@media (min-width:750px) {
  .section--first {
    padding-top: 4.375rem;
  }
}
.section--overflow {
  overflow: hidden;
}
.section--narrow .section__container {
  max-width: 1068px;
}
.section--small .section__container {
  max-width: 31.25rem;
}
.section--dashboard .section__title strong {
  color: #00cb9c;
}
.section.noPaddingTop {
  padding-top: 0 !important;
}
.section.noPaddingBottom {
  padding-bottom: 0 !important;
}

.hp-info {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
.hp-info__text {
  margin: 0 0 3.125rem 0;
  width: 100%;
}
.hp-info__text:last-child {
  margin-bottom: 0;
}
@media (min-width:990px) {
  .hp-info__text {
    margin: 0 auto 0 0;
    padding-right: 3.125rem;
    width: 60%;
  }
}
.hp-info__text p {
  font-size: 1.25rem;
}
@media (min-width:990px) {
  .hp-info__text p {
    font-size: 3vw;
  }
}
@media (min-width:1900px) {
  .hp-info__text p {
    font-size: 3.75rem;
  }
}
.hp-info__link {
  width: 100%;
}
@media (min-width:990px) {
  .hp-info__link {
    width: 40%;
    text-align: right;
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font-family: "Bw Gradual DEMO", "Arial", sans-serif;
  text-decoration: underline;
  font-size: 1.25rem;
  color: inherit;
  transition: 0.2s;
  cursor: pointer;
}
@media (min-width:750px) {
  .button {
    font-size: 1.5625rem;
  }
}
@media (min-width:1700px) {
  .button {
    font-size: 2.1875rem;
  }
}
.button:hover {
  color: #00cb9c;
}
.bg-primary-dark .button:hover {
  color: #000;
}
.button__arrow, .button__icon {
  display: inline-block;
  flex-shrink: 0;
  width: 1.714em;
  height: 1.714em;
  margin: 0 0 0 0.8em;
  border-radius: 50%;
  position: relative;
}
.button__arrow svg, .button__icon svg {
  display: block;
  width: 60%;
  height: 60%;
  fill: #fff;
  position: absolute;
  top: 20%;
  left: 20%;
}
.bg-primary-dark .button__arrow svg, .bg-primary-dark .button__icon svg {
  fill: #45836b;
}
.button--down .button__arrow svg, .button--down .button__icon svg {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.button__arrow {
  background-color: currentColor;
}
.button__icon {
  width: 1.257em;
  height: 1.257em;
  margin: 0 0.571em 0 0;
}
.button__icon svg {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  fill: currentColor;
}
.button--loading {
  display: flex;
  text-align: center;
  margin: 1.875rem 0 0 0;
}
@media (min-width:750px) {
  .button--loading {
    margin: 3.75rem 0 0 0;
  }
}
.button--left {
  flex-direction: row-reverse;
}
.button--left .button__arrow {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  margin: 0 0.8em 0 0;
}
.button--font-small {
  font-size: 0.9375rem;
}
@media (min-width:750px) {
  .button--font-small {
    font-size: 1.25rem;
  }
}
@media (min-width:1700px) {
  .button--font-small {
    font-size: 1.5625rem;
  }
}
.button--simple-icon .button__arrow {
  margin-left: 0;
  background: none;
}
.button--simple-icon .button__arrow svg {
  fill: currentColor;
}
.button.disabled {
  opacity: 0.2;
  pointer-events: none;
}

.ib__items {
  display: flex;
  flex-wrap: wrap;
  margin: -1.375rem;
}
@media (min-width:750px) {
  .ib__items {
    margin: -2.1875rem -1.375rem;
  }
}
.ib__item {
  display: block;
  color: inherit;
  text-decoration: none;
  width: calc(100% - 1.375rem* 2);
  margin: 1.375rem;
}
@media (min-width:750px) {
  .ib__item {
    width: calc(50% - 1.375rem* 2);
    margin: 2.1875rem 1.375rem;
  }
}
.ib__item:hover .ib__image-in {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.ib__item:hover .ib__title h3:after {
  opacity: 1;
  -webkit-transform: translateX(1em);
  -moz-transform: translateX(1em);
  -ms-transform: translateX(1em);
  -o-transform: translateX(1em);
  transform: translateX(1em);
}
.ib__image {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.ib__image:after {
  display: block;
  content: "";
  padding-top: 60%;
}
.ib__image-in {
  background-size: cover;
  background-position: center;
  transition: 0.4s;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.ib__content {
  padding: 1.5625rem 0 0 0;
}
.ib__title h3 {
  font-size: 1.25rem;
  display: inline-block;
  position: relative;
}
@media (min-width:750px) {
  .ib__title h3 {
    font-size: 1.5625rem;
    max-width: calc(100% - 1.44em - 1em);
  }
  .ib__title h3:after {
    display: block;
    content: "";
    width: 1.44em;
    height: 1.44em;
    opacity: 0;
    background-image: url(../files/vector/arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: 0.2s;
    position: absolute;
    left: 100%;
    top: calc(50% - 0.72em);
  }
}
.ib__perex p {
  font-size: 0.9375rem;
}
@media (min-width:750px) {
  .ib__perex p {
    font-size: 1.25rem;
  }
}
.ib__tags ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0.5rem 0 0 0;
  padding: 0 0 0 0;
  list-style: none;
}
.ib__tags ul li {
  font-size: 0.9375rem;
  margin: 0.5em 1.25em 0 0;
  padding: 0 0 0 0.5em;
  color: #00cb9c;
  position: relative;
}
@media (min-width:750px) {
  .ib__tags ul li {
    font-size: 1.25rem;
  }
}
.ib__tags ul li:before {
  display: block;
  content: "";
  font-size: inherit;
  width: 5px;
  height: 5px;
  background-color: #00cb9c;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: calc(50% - 1px);
}
.ib[data-grid-container=rows] .ib__items {
  margin-top: -5px;
  margin-bottom: -5px;
}
.ib[data-grid-container=rows] .ib__item {
  display: flex;
  align-items: center;
  width: calc(100% - 1.375rem* 2);
  margin-top: 0;
  margin-bottom: 0;
  padding: 10px 0;
  position: relative;
}
@media (min-width:750px) {
  .ib[data-grid-container=rows] .ib__item {
    padding-right: 4rem;
  }
}
.ib[data-grid-container=rows] .ib__item:hover .ib__title h3::after {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.ib[data-grid-container=rows] .ib__item + .ib__item {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.ib[data-grid-container=rows] .ib__image {
  display: none;
}
@media (min-width:480px) {
  .ib[data-grid-container=rows] .ib__image {
    display: block;
    flex-shrink: 0;
    width: 9.375rem;
  }
}
@media (min-width:750px) {
  .ib[data-grid-container=rows] .ib__image {
    width: 15.625rem;
  }
}
.ib[data-grid-container=rows] .ib__content {
  padding: 10px 20px;
  flex-grow: 1;
}
.ib[data-grid-container=rows] .ib__title h3 {
  position: static;
}
.ib[data-grid-container=rows] .ib__title h3::after {
  -webkit-transform: translateX(-1em);
  -moz-transform: translateX(-1em);
  -ms-transform: translateX(-1em);
  -o-transform: translateX(-1em);
  transform: translateX(-1em);
  left: unset;
  right: 0;
}
.ib[data-grid-container=rows] .ib__perex p {
  font-size: 0.9375rem;
}
.ib[data-grid-container=rows] .ib__tags ul {
  margin-top: 0;
}
.ib[data-grid-container=rows] .ib__tags li {
  font-size: 0.875rem;
  margin-right: 0.75em;
}
.ib[data-grid-container=rows] .ib__tags li::before {
  width: 4px;
  height: 4px;
}

.social {
  display: flex;
  align-items: center;
}
.social p {
  font-size: 1.25rem;
  margin: 0 1em 0 0;
}
.social ul {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.social ul li {
  margin: 0 0.62rem;
}
.social ul li a {
  display: block;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  color: inherit;
  border: 1px solid currentColor;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  text-indent: -9999rem;
  overflow: hidden;
  transition: 0.2s;
}
.social ul li a:hover {
  background-color: #00cb9c;
  border-color: #00cb9c;
  color: #000;
}
@media (max-width:749px) {
  .footer .social {
    flex-direction: column;
    align-items: flex-start;
    margin: 1.5625rem 0 0 0;
  }
  .footer .social p {
    margin-bottom: 1.5625rem;
  }
}
.social__facebook a {
  background-image: url(../files/vector/facebook-white.svg);
  background-size: 20%;
}
.social__facebook a:hover, .social--big .social__facebook a, .rate .social__facebook a {
  background-image: url(../files/vector/facebook.svg);
}
.social__linkedIn a {
  background-image: url(../files/vector/linkedin-white.svg);
  background-size: 45%;
}
.social__linkedIn a:hover, .social--big .social__linkedIn a, .rate .social__linkedIn a {
  background-image: url(../files/vector/linkedin.svg);
}
.social__instagram a {
  background-image: url(../files/vector/instagram-white.svg);
  background-size: 54%;
}
.social__instagram a:hover, .social--big .social__instagram a, .rate .social__instagram a {
  background-image: url(../files/vector/instagram.svg);
}
.social__youtube a {
  background-image: url(../files/vector/youtube-white.svg);
  background-size: 54%;
}
.social__youtube a:hover, .social--big .social__youtube a, .rate .social__youtube a {
  background-image: url(../files/vector/youtube.svg);
}
.social--big ul {
  margin: 0 -0.5rem;
}
@media (min-width:750px) {
  .social--big ul {
    margin: 0 -1.5625rem;
  }
}
.social--big ul li {
  margin: 0 0.5rem;
  flex-grow: 1;
  flex-basis: 0;
  flex-shrink: 0;
  position: relative;
}
@media (min-width:750px) {
  .social--big ul li {
    margin: 0 1.5625rem;
  }
}
.social--big ul li::after {
  display: block;
  content: "";
  padding-top: 100%;
}
.social--big ul li a {
  background-color: #fff;
  border-color: #fff;
  width: auto;
  height: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.help__item .social ul {
  width: 100%;
}

.footer {
  background-color: #000;
  color: #fff;
  margin-top: auto;
  padding: 1.5625rem 2rem;
}
@media (min-width:990px) {
  .footer {
    padding: 1.5625rem 3.125rem;
  }
}
.footer__container {
  display: flex;
  flex-direction: column;
  max-width: 101.25rem;
  margin: 0 auto;
}
@media (min-width:1200px) {
  .footer__container {
    flex-direction: row;
    align-items: center;
  }
}
.footer__logo {
  display: inline-block;
  height: 3.75rem;
  background-image: url(../files/vector/logo-white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 3.75rem;
  margin: 0 4rem 0 0;
  color: inherit;
  position: relative;
}
@media (min-width:750px) {
  .footer__logo {
    height: 6.25rem;
    width: 6.25rem;
  }
}
@media (min-width:1400px) {
  .footer__logo {
    margin: 0 11rem 0 0;
  }
}

.flinks {
  color: #000;
  background-color: #606060;
  padding: 1.5625rem 2rem;
}
@media (min-width:750px) {
  .flinks {
    padding: 1.5625rem 3.125rem;
  }
}
.flinks__container {
  display: flex;
  align-items: center;
  max-width: 101.25rem;
  margin: 0 auto;
}
@media (min-width:990px) {
  .flinks__container {
    justify-content: flex-end;
  }
}
.flinks ul {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width:990px) {
  .flinks ul {
    flex-direction: row;
  }
}
.flinks ul li {
  font-size: 0.9375rem;
  margin: 1em 0 0 0;
}
.flinks ul li:first-child {
  margin-top: 0;
}
@media (min-width:990px) {
  .flinks ul li {
    margin: 0 0 0 3em;
  }
}
.flinks ul li a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  text-transform: uppercase;
}
.flinks ul li a:hover {
  text-decoration: underline;
}

.map {
  position: relative;
  background-color: #d9d9d9;
}
.map::after {
  display: block;
  content: "";
  padding-top: 45%;
}
.info__map .map::after {
  padding-top: 100%;
}
@media (max-width:989px) {
  .map--device-square::after {
    padding-top: 100%;
  }
}
.map__inner {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.map__inner-static {
  background-size: cover;
  background-position: center;
  z-index: 1;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  position: absolute;
}
.map__inner-static:hover p {
  opacity: 1;
}
.map__inner-static p {
  transition: 200ms;
  background-color: #00000099;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  top: 20px;
  bottom: 75%;
  right: 20px;
  left: 20px;
  position: absolute;
  padding: 1em;
  min-height: 5em;
}
@media (min-width:990px) {
  .map__inner-static p {
    opacity: 0;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
  }
}
.map__marker {
  background-image: url("../files/vector/marker.svg");
  background-size: contain;
  background-position: bottom center;
  background-repeat: no-repeat;
  width: 2rem;
  height: 2.75rem;
  cursor: pointer;
}
.map__marker:after {
  background-image: url("../files/vector/marker-hover.svg");
  background-size: contain;
  background-position: bottom center;
  background-repeat: no-repeat;
  display: block;
  opacity: 0;
  transition: 0.2s;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.map__marker:hover:after {
  opacity: 1;
}
.map .mapboxgl-popup {
  max-width: 200px;
}
.map .mapboxgl-popup-close-button {
  background: none;
  background-image: url(../files/vector/cross.svg);
  background-size: 60%;
  background-position: center;
  background-repeat: no-repeat;
  outline: transparent;
  width: 1rem;
  height: 1rem;
  text-indent: -9999rem;
  overflow: hidden;
}
.map .mapboxgl-popup-content {
  padding: 0;
  font-family: "Bw Gradual DEMO", "Arial", sans-serif;
}
.map .mapboxgl-popup-content img {
  display: block;
  width: 100%;
}
.map .mapboxgl-popup-content h1,
.map .mapboxgl-popup-content h2,
.map .mapboxgl-popup-content h3,
.map .mapboxgl-popup-content p {
  font-size: 0.9375rem;
  font-weight: 500;
  margin: 0 0 1em 0;
}
.map .mapboxgl-popup-content h1:last-child,
.map .mapboxgl-popup-content h2:last-child,
.map .mapboxgl-popup-content h3:last-child,
.map .mapboxgl-popup-content p:last-child {
  margin-bottom: 0 !important;
}
.map .mapboxgl-popup-inner {
  padding: 1rem 3.5rem 1rem 1rem;
  position: relative;
}
.map .mapboxgl-popup-button {
  width: 1.25rem;
  height: 1.125rem;
  outline: transparent;
  position: absolute;
  right: 1rem;
  bottom: 1rem;
}
.map .mapboxgl-popup-button svg {
  display: block;
  transition: 0.2s;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.map .mapboxgl-popup-button:hover svg {
  fill: #00cb9c;
}
.map .mapboxgl-ctrl-logo,
.map .mapboxgl-ctrl-attrib-inner {
  display: none;
}

.search {
  margin: 1.5625rem 0;
}
@media (min-width:990px) {
  .search {
    margin: 3.125rem 0;
  }
}
.search input {
  display: block;
  width: 100%;
  max-width: 31.25rem;
  border: none;
  font-size: 1.25rem;
  background: none;
  border-radius: 0;
  border-bottom: 1px solid #000;
  font-weight: 500;
  color: #000;
  outline: transparent;
  -webkit-appearance: none;
}
.search input::-webkit-input-placeholder {
  color: #000;
  opacity: 1;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1.25rem;
}
.search input::-moz-placeholder {
  color: #000;
  opacity: 1;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1.25rem;
}
.search input:-ms-input-placeholder {
  color: #000;
  opacity: 1;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1.25rem;
}
.search input::-ms-input-placeholder {
  color: #000;
  opacity: 1;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1.25rem;
}
.search input:-moz-placeholder {
  color: #000;
  opacity: 1;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1.25rem;
}
.search input:focus {
  border-color: #00cb9c;
}

.filter {
  margin: 0 0 20px 0;
}
.filter__items {
  display: flex;
  flex-wrap: wrap;
  margin: -0.25rem;
}
@media (min-width:750px) {
  .filter__items {
    margin: -0.875rem;
  }
}
.filter__item {
  width: calc(100% - 1em);
  margin: 0.25rem;
}
@media (min-width:750px) {
  .filter__item {
    width: auto;
    margin: 0.875rem;
  }
}
.filter__button {
  font-size: 1.25rem;
  text-transform: uppercase;
  color: #000;
  background-color: #d4e3dd;
  border-radius: 2em;
  padding: 0.5em 3.5em 0.5em 1.25em;
  position: relative;
  cursor: pointer;
  transition: 0.2s;
}
@media (min-width:750px) {
  .filter__button {
    font-size: 1.25rem;
  }
}
.filter__button:after {
  display: block;
  content: "";
  width: 0.4em;
  height: 0.4em;
  position: absolute;
  right: 1.25em;
  top: calc(50% - 0.3em);
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media (min-width:750px) {
  .filter__button:hover {
    background-color: #45836b;
  }
  .filter__button:hover::after {
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
}
.filter__button--active {
  background-color: #00cb9c;
}
.active .filter__button {
  background-color: #00cb9c;
}
.active .filter__button::after {
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.filter__checkboxes {
  max-height: 0;
  overflow: hidden;
  transition-timing-function: ease-in-out;
  transition: max-height 0.3s;
}
.active .filter__checkboxes {
  transition: max-height 0.6s;
  max-height: 50rem;
}
.filter__checkbox {
  display: block;
  opacity: 0;
}
.active .filter__checkbox {
  animation-name: fadeInDown;
  animation-duration: 0.4s;
  animation-fill-mode: both;
}
.filter__checkbox:nth-child(1) {
  animation-delay: 0.05s;
}
.filter__checkbox:nth-child(2) {
  animation-delay: 0.1s;
}
.filter__checkbox:nth-child(3) {
  animation-delay: 0.15s;
}
.filter__checkbox:nth-child(4) {
  animation-delay: 0.2s;
}
.filter__checkbox:nth-child(5) {
  animation-delay: 0.25s;
}
.filter__checkbox:nth-child(6) {
  animation-delay: 0.3s;
}
.filter__checkbox:nth-child(7) {
  animation-delay: 0.35s;
}
.filter__checkbox:nth-child(8) {
  animation-delay: 0.4s;
}
.filter__checkbox:nth-child(9) {
  animation-delay: 0.45s;
}
.filter__checkbox:nth-child(10) {
  animation-delay: 0.5s;
}
.filter__checkbox:nth-child(11) {
  animation-delay: 0.55s;
}
.filter__checkbox:nth-child(12) {
  animation-delay: 0.6s;
}
.filter__checkbox:nth-child(13) {
  animation-delay: 0.65s;
}
.filter__checkbox:nth-child(14) {
  animation-delay: 0.7s;
}
.filter__checkbox:nth-child(15) {
  animation-delay: 0.75s;
}
.filter__checkbox:nth-child(16) {
  animation-delay: 0.8s;
}
.filter__checkbox:nth-child(17) {
  animation-delay: 0.85s;
}
.filter__checkbox:nth-child(18) {
  animation-delay: 0.9s;
}
.filter__checkbox:nth-child(19) {
  animation-delay: 0.95s;
}
.filter__checkbox:nth-child(20) {
  animation-delay: 1s;
}
.filter__checkbox:first-child {
  margin: 0.625rem 0 0 0.5rem;
}
.filter__checkbox + .filter__checkbox {
  margin: 0.625rem 0 0 0.5rem;
}
.filter__checkbox-input {
  display: none;
}
.filter__checkbox-input:checked ~ .filter__checkbox-text {
  background-color: #00cb9c;
}
.filter__checkbox-text {
  display: block;
  font-size: 1.25rem;
  padding: 0.25em 0.9em;
  color: #000;
  border: 1px solid #d4e3dd;
  border-radius: 2em;
  cursor: pointer;
  transition: 0.2s;
}
@media (min-width:750px) {
  .filter__checkbox-text {
    display: inline-block;
  }
}
.filter__checkbox-text:hover {
  background-color: #00cb9c;
}
.filter__info {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  text-align: right;
  margin: 0.625rem 0 0 0;
}
.filter__info p {
  font-size: 0.875rem;
  margin: 0;
}

.about__image img {
  display: block;
  width: 100%;
}
.about__text {
  margin: 1.5625rem 0 0 0;
  max-width: 62.5rem;
}
@media (min-width:990px) {
  .about__text {
    margin: 6.25rem 0 0 0;
  }
}
.about__text p {
  font-size: 2.1875rem;
}
@media (min-width:750px) {
  .about__text p {
    font-size: 3vw;
  }
}
@media (min-width:1900px) {
  .about__text p {
    font-size: 3.75rem;
  }
}

.numbers__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 2.5rem 0;
  border-bottom: 1px solid #000;
}
.numbers__item:first-child {
  padding-top: 0;
}
.numbers__main {
  width: 100%;
}
@media (min-width:990px) {
  .numbers__main {
    width: 50%;
  }
}
.numbers__main p {
  font-size: 3.125rem;
}
@media (min-width:750px) {
  .numbers__main p {
    font-size: 6vw;
  }
}
@media (min-width:1400px) {
  .numbers__main p {
    font-size: 6.25rem;
  }
}
.numbers__text {
  width: 100%;
  margin: 1.5625rem 0 0 0;
}
@media (min-width:990px) {
  .numbers__text {
    width: 50%;
    margin: 0 0 0 0;
    padding-left: 16%;
  }
}
.numbers__text p {
  font-size: 0.9375rem;
}
@media (min-width:1200px) {
  .numbers__text p {
    font-size: 1.5625rem;
  }
}

.who {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.who__images {
  width: 100%;
}
@media (min-width:990px) {
  .who__images {
    width: 45%;
  }
}
.who__images img {
  display: none;
  width: 100%;
}
.who__images img.active {
  display: block;
  animation-name: fadeIn;
  animation-duration: 0.6s;
  animation-delay: 0s;
  animation-fill-mode: both;
}
.who__items {
  width: 100%;
}
@media (min-width:990px) {
  .who__items {
    width: 55%;
    padding: 0 0 0 6.25rem;
  }
}
.who__item {
  margin-top: 1.5rem;
}
@media (min-width:990px) {
  .who__item + .who__item {
    margin-top: 3.75rem;
  }
}
.who__control {
  color: #bcb1b3;
  transition: 0.2s;
  cursor: pointer;
}
.who__control:hover, .open .who__control {
  color: #000;
}
.who__control h3 {
  display: block;
  position: relative;
  font-size: 7vw;
  padding-right: 1.5em;
}
@media (min-width:990px) {
  .who__control h3 {
    font-size: 3.5vw;
  }
}
@media (min-width:1900px) {
  .who__control h3 {
    font-size: 3.125rem;
  }
}
.who__control h3 span {
  display: block;
  content: "";
  width: 1em;
  height: 1em;
  border-radius: 50%;
  background-color: currentColor;
  transition: 0.2s;
  position: absolute;
  right: 0;
  top: calc(50% - 0.5em);
}
.who__control h3 span:before, .who__control h3 span:after {
  display: block;
  content: "";
  height: 2px;
  background-color: #fff;
  transition: 0.2s;
  position: absolute;
  top: calc(50% - 1px);
  right: 16%;
  left: 16%;
}
.who__control h3 span:before {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.open .who__control h3 span:before {
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
}
.who__inner {
  padding: 1.5625rem 0 0 0;
  max-width: 32.5rem;
}
.who__inner p {
  font-size: 0.9375rem;
}
@media (min-width:1200px) {
  .who__inner p {
    font-size: 1.5625rem;
  }
}

.gallery__items {
  display: flex;
  flex-wrap: wrap;
  margin: -1.375rem;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  width: calc(50% - 1.375rem*2);
  margin: 1.375rem;
}
@media (min-width:750px) {
  .gallery__item {
    width: calc(33.333% - 1.375rem*2);
  }
  .gallery--two-items .gallery__item {
    width: calc(50% - 1.375rem*2);
  }
}
.gallery__item:after {
  display: block;
  content: "";
  padding-top: 100%;
}
.gallery__item:hover .gallery__inner {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.gallery__inner {
  background-size: cover;
  background-position: center;
  transition: 0.4s;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.radio {
  margin: 0 0 1.5625rem 0;
}
.radio__items {
  display: flex;
  flex-wrap: wrap;
}
.radio__item {
  font-size: 1.25rem;
  margin: 0 1em 1.25em 0;
}
@media (min-width:990px) {
  .radio__item {
    margin: 0 3em 1.25em 0;
  }
}
.radio__item:hover span {
  background-color: #00cb9c;
}
.radio input {
  display: none;
}
.radio input:checked ~ span {
  background-color: #00cb9c;
}
.radio span {
  font-size: inherit;
  display: inline-block;
  padding: 0.5em 1em;
  background-color: #DDD8D9;
  border-radius: 2em;
  transition: 0.2s;
  cursor: pointer;
}

.partners {
  display: flex;
  flex-wrap: wrap;
}
.partners__group {
  width: 100%;
}
@media (min-width:990px) {
  .partners__group {
    width: 50%;
  }
}
.partners__group--wide {
  width: 100%;
}
.partners__title {
  margin: 0 0 3.125rem 0;
}
.partners__title h3 {
  display: block;
  padding: 0 0 0.5em 0;
  border-bottom: 1px solid #000;
  font-size: 0.9375rem;
}
@media (min-width:1200px) {
  .partners__title h3 {
    font-size: 1.5625rem;
  }
}
.partners__items {
  display: flex;
  flex-wrap: wrap;
  padding: 0 3.125rem 3.125rem 0;
  margin: -1rem;
}
.partners__item {
  display: inline-block;
  width: calc(50% - 2rem);
  margin: 1rem;
}
@media (min-width:990px) {
  .partners__group--wide .partners__item {
    width: calc(25% - 2rem);
  }
}
.partners__item img {
  display: block;
  max-height: 6rem;
  max-width: 100%;
  height: auto;
  width: auto;
}

.help__items {
  display: flex;
  flex-wrap: wrap;
  margin: -1.375rem;
}
.help__item {
  width: calc(100% - 1.375rem*2);
  margin: 1.375rem;
  padding: 3.125rem;
}
@media (min-width:990px) {
  .help__item {
    width: calc(50% - 1.375rem*2);
  }
}
@media (min-width:1700px) {
  .help__item {
    padding: 6.25rem;
  }
}
.help__item h3 {
  margin: 0 0 0.56em 0;
  line-height: 1.1;
  font-size: 1.5625rem;
}
@media (min-width:750px) {
  .help__item h3 {
    font-size: 3.125rem;
  }
}
.help__item p {
  font-size: 0.9375rem;
}
@media (min-width:750px) {
  .help__item p {
    font-size: 1.5625rem;
  }
}
.help__item > img {
  margin: 3.125rem 0 0 0;
  max-width: 100%;
}
.help__item .social {
  margin-top: 1.5625rem;
}
@media (min-width:1400px) {
  .help__item .social {
    margin-top: 6.25rem;
  }
}
.help__item__link {
  padding-top: 1.5625rem;
}
.help__item__link .button {
  font-size: 0.9375rem;
}
@media (min-width:750px) {
  .help__item__link .button {
    font-size: 1.5625rem;
  }
}
.help__item--linkable {
  text-decoration: none;
}
.help__item--linkable:hover .button {
  color: #00cb9c;
}
.bg-primary-dark .help__item--linkable:hover .button {
  color: #000;
}

.sc {
  display: flex;
  flex-direction: column;
}
@media (min-width:1700px) {
  .sc {
    flex-direction: row;
    align-items: center;
  }
}
.help .sc {
  margin: 1.5625rem 0 0 0;
}
@media (min-width:750px) {
  .help .sc {
    margin: 3.125rem 0 0 0;
  }
}
.sc__image {
  width: 50%;
  margin: 0 0 1.5625rem 0;
}
@media (min-width:750px) {
  .sc__image {
    margin: 0 0 3.125rem 0;
  }
}
@media (min-width:1700px) {
  .sc__image {
    width: 40%;
    margin: 0 0 0 0;
  }
}
.sc__image img {
  display: block;
  width: 100%;
}
.sc__content {
  width: 100%;
}
@media (min-width:1700px) {
  .sc__content {
    padding: 0 0 0 2rem;
    width: 60%;
  }
}
.sc__content p {
  font-size: 0.9375rem;
}
@media (min-width:750px) {
  .sc__content p {
    font-size: 1.5625rem;
  }
}
.sc__content a {
  color: inherit;
}
.sc__content a:hover {
  text-decoration: none;
}

.team__items {
  display: flex;
  flex-wrap: wrap;
  margin: -1.375rem;
}
.team__item {
  width: calc(100% - 1.375rem*2);
  margin: 1.375rem;
}
@media (min-width:750px) {
  .team__item {
    width: calc(50% - 1.375rem*2);
  }
}
@media (min-width:1200px) {
  .team__item {
    width: calc(33.333% - 1.375rem*2);
  }
}
.team__image {
  background-size: cover;
  background-position: center;
}
.team__image:after {
  display: block;
  content: "";
  padding-top: 50%;
}
.team__content {
  padding: 3.125rem 0 0 0;
}
.team__content h3 {
  margin: 0 0 0.56em 0;
  font-size: 1.5625rem;
  text-transform: uppercase;
}
.team__content p {
  font-size: 0.9375rem;
}
@media (min-width:1200px) {
  .team__content p {
    font-size: 1.5625rem;
  }
}
.team__content a {
  color: inherit;
}
.team__content a:hover {
  text-decoration: none;
}

.downloads ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.downloads ul li {
  font-size: 0.9375rem;
}
@media (min-width:750px) {
  .downloads ul li {
    font-size: 1.25rem;
  }
}
@media (min-width:1700px) {
  .downloads ul li {
    font-size: 1.5625rem;
  }
}
.downloads ul li a {
  border-bottom: 1px solid currentColor;
  display: block;
  font-size: inherit;
  text-decoration: none;
  color: inherit;
  padding: 1em 3em 1em 0;
  transition: 0.2s;
  position: relative;
}
.downloads ul li a:after {
  display: block;
  content: "";
  font-size: inherit;
  width: 1.6em;
  height: 1.6em;
  background-image: url(../files/vector/download.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
  position: absolute;
  top: calc(50% - 0.8em);
  right: 0;
}
@media (min-width:750px) {
  .downloads ul li a:after {
    opacity: 0;
  }
}
.downloads ul li a:hover {
  color: #00cb9c;
}
.downloads ul li a:hover:after {
  animation-name: fadeInDown;
  animation-duration: 0.4s;
  animation-delay: 0s;
  animation-fill-mode: both;
}
.downloads ul li:first-child a {
  padding-top: 0;
}
.downloads--arrow-right a::after {
  background-image: url(../files/vector/arrow.svg) !important;
  opacity: 1 !important;
}
.downloads--arrow-right a:hover::after {
  animation-name: fadeInRight !important;
}

.carousel .slick-list {
  overflow: visible;
  padding: 0 !important;
}
.carousel__items {
  margin: 0 -1.375rem;
}
.carousel__item {
  position: relative;
  overflow: hidden;
  margin: 0 1.375rem;
  background-color: #d4e3dd;
}
.carousel__item::before {
  display: block;
  content: "";
  padding-top: 100%;
}
.carousel__item::after {
  display: block;
  content: "";
  width: 3.75rem;
  height: 3.75rem;
  background-color: #000;
  background-image: url(../files/vector/plus.svg);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  background-size: 60%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  border-radius: 50%;
  transition: 0.2s;
  opacity: 0;
  position: absolute;
  top: calc(50% - 1.875em);
  left: calc(50% - 1.875em);
}
.carousel__item:hover::after {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.carousel__item:hover .carousel__inner {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.carousel__item:hover .carousel__inner::after {
  opacity: 1;
}
.carousel__item--video::after {
  background-image: url(../files/vector/play.svg);
  background-size: 40%;
  background-position: 60% 50%;
}
.carousel__inner {
  background-size: cover;
  background-position: center;
  transition: 0.4s;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.carousel__inner::after {
  display: block;
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
  transition: 0.2s;
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.carousel__control {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5625rem 0 0 0;
  width: 100%;
}
@media (min-width:990px) {
  .carousel__control {
    margin: 3.125rem 0 0 0;
  }
}
.carousel__arrow {
  display: block;
  width: 2.25rem;
  height: 2rem;
  position: relative;
  cursor: pointer;
}
.carousel__arrow svg {
  display: block;
  width: 100%;
  height: 100%;
  transition: 0.2s;
  position: absolute;
  top: 0;
  left: 0;
}
.carousel__arrow:hover svg {
  fill: #00cb9c;
}
.carousel__arrow--prev {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.carousel__dots {
  margin: 0 10rem;
}
.carousel__dots ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.carousel__dots ul li {
  margin: 0 0.5rem;
  width: 0.625rem;
  height: 0.625rem;
}
.carousel__dots ul li button {
  width: 0.625rem;
  height: 0.625rem;
  margin: 0;
  padding: 0;
  background-color: transparent;
  border: 1px solid #000;
  border-radius: 50%;
  text-indent: -9999rem;
  overflow: hidden;
  cursor: pointer;
}
.carousel__dots ul li.slick-active button {
  background-color: #000;
}

.intro {
  padding: 0 2rem;
}
@media (min-width:750px) {
  .intro {
    padding: 0 3.125rem;
  }
}
.intro__container {
  display: flex;
  flex-direction: column-reverse;
  max-width: 101.25rem;
  margin: 0 auto;
}
@media (min-width:990px) {
  .intro__container {
    flex-direction: column;
    min-height: 700px;
  }
}
.intro__image {
  margin: 0 0 1.5625rem 0;
}
@media (min-width:990px) {
  .intro__image {
    min-height: 450px;
    margin: 0 0 0 0;
    overflow: hidden;
    position: relative;
    flex-grow: 1;
  }
}
.intro__inner {
  display: block;
  width: 100%;
}
@media (min-width:990px) {
  .intro__inner {
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
.intro__content {
  padding: 3.125rem 0 1.5625rem 0;
}
@media (min-width:990px) {
  .intro__content {
    padding: 3.125rem 0;
  }
}
.intro__title {
  width: 100%;
  padding: 0 3.125rem 0 0;
}
@media (min-width:990px) {
  .intro__title {
    width: 55%;
  }
}
.intro__title:not(:last-child) {
  margin-bottom: 1.5625rem;
}
@media (min-width:990px) {
  .intro__title:not(:last-child) {
    margin-bottom: 3.125rem;
  }
}
.intro__title h1 {
  line-height: 1;
  font-size: 2.1875rem;
}
@media (min-width:750px) {
  .intro__title h1 {
    font-size: 3vw;
  }
}
@media (min-width:1900px) {
  .intro__title h1 {
    font-size: 3.75rem;
  }
}
.intro__title p {
  font-size: 0.9375rem;
}
@media (min-width:1200px) {
  .intro__title p {
    font-size: 1.5625rem;
  }
}
.intro__cols {
  display: flex;
  flex-direction: column-reverse;
}
@media (min-width:750px) {
  .intro__cols {
    margin: -3.125rem;
    flex-direction: row;
  }
}
@media (max-width:749px) {
  .intro__col + .intro__col {
    padding-bottom: 1em;
    margin-bottom: 1em;
    border-bottom: 1px solid #606060;
  }
}
@media (min-width:750px) {
  .intro__col {
    width: calc(50% - 3.125rem*2);
    margin: 3.125rem;
  }
}
.intro__col p {
  font-size: 0.9375rem;
}
@media (min-width:1200px) {
  .intro__col p {
    font-size: 1.5625rem;
  }
}

.info {
  display: flex;
  flex-wrap: wrap;
}
.info__content {
  width: 100%;
  margin: 0 0 3.125rem 0;
}
@media (min-width:990px) {
  .info__content {
    width: 50%;
    margin: 0 0 0 0;
  }
}
.info__map {
  width: 100%;
}
@media (min-width:990px) {
  .info__map {
    width: 50%;
    padding-left: 3.125rem;
  }
}
.info__icons {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 1.5625rem 0;
}
@media (min-width:990px) {
  .info__icons {
    margin: 0 0 3.125rem 0;
  }
}
.info__icon {
  display: flex;
  align-items: center;
  font-size: 0.9375rem;
  width: calc(100% - 3.5em);
  margin: 0 3.5em 1em 0;
}
@media (min-width:750px) {
  .info__icon {
    width: calc(50% - 3.5em);
  }
}
@media (min-width:990px) {
  .info__icon {
    font-size: 1.25rem;
  }
}
.info__icon:last-child {
  margin-bottom: 0;
}
.info__image {
  font-size: inherit;
  display: block;
  background-color: #000;
  background-size: 60%;
  flex-shrink: 0;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  margin: 0 0.75em 0 0;
  width: 3em;
  height: 3em;
}
.info__label {
  font-size: inherit;
  line-height: 1;
}
.info__perex {
  max-width: 48.75rem;
}
.info__perex p {
  font-size: 0.9375rem;
}
@media (min-width:990px) {
  .info__perex p {
    font-size: 1.25rem;
  }
}
@media (min-width:1700px) {
  .info__perex p {
    font-size: 1.5625rem;
  }
}
.info__perex .button {
  margin-top: 1em;
}
.info a {
  color: inherit;
}

.content {
  max-width: 60rem;
}
.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
  line-height: 1;
}
.content h1 {
  font-size: 6.25rem;
}
.content h2 {
  font-size: 3.75rem;
}
.content h3 {
  font-size: 3.125rem;
}
.content h4 {
  font-size: 2.1875rem;
}
.content h5 {
  font-size: 1.5625rem;
}
.content h6 {
  font-size: 1.25rem;
}
.content p,
.content li {
  font-size: 0.9375rem;
  line-height: 1.37;
}
@media (min-width:750px) {
  .content p,
.content li {
    font-size: 1.25rem;
  }
}
@media (min-width:990px) {
  .content p,
.content li {
    font-size: 1.5625rem;
  }
}
.content p {
  margin-bottom: 1.5em;
}
.content a {
  color: #00cb9c;
  transition: color 0.2s;
}
.content a:hover {
  color: inherit;
}
.content ul {
  margin: 2em 0;
  padding: 0;
  list-style: none;
}
.content ul li {
  position: relative;
  padding-left: 1em;
}
.content ul li::before {
  display: block;
  content: "";
  background-color: currentColor;
  border-radius: 50%;
  width: 0.25em;
  height: 0.25em;
  position: absolute;
  left: 0;
  top: 0.55em;
}
.content img {
  display: block;
  max-width: 100%;
  margin: 2em 0;
}
.content img:first-child {
  margin-top: 0;
}
.content img:last-child {
  margin-bottom: 0;
}

.blog {
  --spacing: 23px;
}
.blog__items {
  display: flex;
  flex-wrap: wrap;
  margin: calc(var(--spacing) * -1) 0;
}
@media (min-width:750px) {
  .blog__items {
    margin: calc(var(--spacing) * -1);
  }
}
.blog__item {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: var(--spacing) 0;
  color: inherit;
  background-color: rgba(221, 216, 217, 0.5);
  text-decoration: none;
}
@media (min-width:750px) {
  .blog__item {
    width: calc(50% - var(--spacing) * 2);
    margin: var(--spacing);
  }
}
@media (min-width:990px) {
  .blog__item {
    width: calc(33.333% - var(--spacing) * 2);
  }
}
.blog__item:hover .button {
  color: #00cb9c;
}
@media (min-width:990px) {
  .blog--two-items .blog__item {
    width: calc(50% - var(--spacing) * 2);
  }
}
.blog__item--main {
  width: calc(100% + 2rem*2);
  margin-left: -2rem;
  margin-right: -2rem;
}
@media (min-width:750px) {
  .blog__item--main {
    width: calc(100% - var(--spacing) * 2);
    margin: var(--spacing);
    flex-direction: row;
  }
}
@media (min-width:1700px) {
  .blog__item--main {
    margin-bottom: calc(100px - var(--spacing));
  }
}
@media (min-width:750px) {
  .blog__item--main .blog__media {
    width: 50%;
  }
  .blog__item--main .blog__media::after {
    padding-top: 90%;
  }
}
@media (min-width:1200px) {
  .blog__item--main .blog__media {
    width: 66%;
  }
  .blog__item--main .blog__media::after {
    padding-top: 55%;
  }
}
@media (min-width:750px) {
  .blog__item--main .blog__content {
    width: 50%;
    padding: 45px;
    justify-content: center;
    position: relative;
  }
}
@media (min-width:1200px) {
  .blog__item--main .blog__content {
    width: 34%;
  }
}
.blog__item--main .blog__title {
  --font-size: 1.25rem;
}
@media (min-width:990px) {
  .blog__item--main .blog__title {
    --font-size: 1.5625rem;
  }
}
@media (min-width:1900px) {
  .blog__item--main .blog__title {
    --font-size: 3.125rem;
  }
}
@media (min-width:750px) {
  .blog__item--main .blog__button {
    position: absolute;
    right: 45px;
    bottom: 45px;
  }
}
.blog__media {
  background-size: cover;
  background-position: center;
}
.blog__media::after {
  display: block;
  content: "";
  padding-top: 62%;
}
.blog__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 35px;
}
.blog__info {
  margin-bottom: 25px;
}
.blog__info ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
.blog__info ul li {
  color: #45836b;
  font-size: 0.9375rem;
}
.blog__info ul li:not(:last-child)::after {
  content: "/";
  margin-right: 0.5em;
  margin-left: 0.35em;
}
.blog__title {
  --font-size: 1.25rem;
}
@media (min-width:1700px) {
  .blog__title {
    --font-size: 1.5625rem;
  }
}
.blog__title h3,
.blog__title p {
  font-size: var(--font-size);
}
.blog__button {
  text-align: right;
  margin-top: auto;
  padding-top: 35px;
}
@media (min-width:990px) {
  .blog__button {
    padding-top: 60px;
  }
}

.blog-detail:not(:last-child) {
  margin-bottom: 50px;
}
.blog-detail__info {
  margin-bottom: 35px;
}
.blog-detail__info ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
.blog-detail__info ul li {
  color: #45836b;
  font-size: 0.9375rem;
}
@media (min-width:990px) {
  .blog-detail__info ul li {
    font-size: 1.25rem;
  }
}
.blog-detail__info ul li:not(:last-child)::after {
  content: "/";
  margin-right: 0.5em;
  margin-left: 0.35em;
}
.blog-detail__title:not(:last-child) {
  margin-bottom: 100px;
}
.blog-detail__title h1 {
  font-size: 1.5625rem;
}
@media (min-width:750px) {
  .blog-detail__title h1 {
    font-size: 2.1875rem;
  }
}
@media (min-width:1400px) {
  .blog-detail__title h1 {
    font-size: 3.125rem;
  }
}
.blog-detail__media:not(:last-child) {
  margin-bottom: 50px;
}
.blog-detail__media img {
  display: block;
  width: 100%;
}
.blog-detail__perex {
  max-width: 790px;
}
.blog-detail__perex p {
  font-size: 1.25rem;
}
@media (min-width:750px) {
  .blog-detail__perex p {
    font-size: 1.5625rem;
  }
}
@media (min-width:1400px) {
  .blog-detail__perex p {
    font-size: 2.1875rem;
  }
}

.rate {
  border-top: 1px solid #000000;
  padding-top: 25px;
  display: flex;
  flex-direction: column;
}
@media (min-width:750px) {
  .rate {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
@media (max-width:749px) {
  .rate__text {
    margin-bottom: 20px;
  }
}
.rate__text p {
  font-size: 0.9375rem;
}
@media (min-width:750px) {
  .rate__text p {
    font-size: 1.25rem;
  }
}
@media (min-width:1400px) {
  .rate__text p {
    font-size: 1.5625rem;
  }
}
.rate .social li:first-child {
  margin-left: 0;
}
.rate .social li:last-child {
  margin-right: 0;
}

.sorting {
  margin: 1.5625rem 0 10px 0;
}
@media (min-width:990px) {
  .sorting {
    margin: 1.5625rem 0;
  }
}
.sorting__open {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background-color: #00cb9c;
  font-size: 1.25rem;
  padding: 0.5em 1em;
  border-radius: 2em;
}
@media (min-width:990px) {
  .sorting__open {
    display: none;
  }
}
.sorting__open svg {
  display: inline-block;
  height: 1em;
  transform: translateY(0.05em);
  width: auto;
}
@media (max-width:989px) {
  .sorting__hideable {
    transform: translateX(-100%);
    overflow: auto;
    transition: 0.3s;
    padding: 3.125rem 2rem;
    background-color: #fff;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 500;
  }
  .sorting-active .sorting__hideable {
    transform: translateX(0);
  }
  .sorting__hideable .search {
    margin-bottom: 3.125rem;
  }
}
.sorting__close {
  width: 3.125rem;
  height: 3.125rem;
  position: absolute;
  top: 0;
  right: 0;
}
@media (min-width:990px) {
  .sorting__close {
    display: none;
  }
}
.sorting__close::before, .sorting__close::after {
  display: block;
  content: "";
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 50%;
  right: 10px;
  left: 10px;
}
.sorting__close::before {
  transform: rotate(45deg);
}
.sorting__close::after {
  transform: rotate(-45deg);
}
.sorting__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1em 2em;
}

.form {
  --_input-padding-block: 0.625rem;
  --_input-padding-inline: 0.625rem;
}
@media (min-width:750px) {
  .form {
    --_input-padding-block: 1.25rem;
  }
}
.form__item {
  font-size: 1rem;
}
@media (min-width:750px) {
  .form__item {
    font-size: 1.25rem;
  }
}
.form__item + .form__item {
  margin-top: 1.875rem;
}
@media (min-width:750px) {
  .form__item + .form__item {
    margin-top: 2.5rem;
  }
}
.form__item-in {
  position: relative;
}
.form__item-in::before, .form__item-in::after {
  display: block;
  content: "";
  height: 1px;
  transition-duration: 0.3s;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}
.form__item-in::before {
  background-color: var(--color-black);
  opacity: 0.2;
}
.focused .form__item-in::before {
  opacity: 1;
}
.form__item--label-default .form__label {
  opacity: 0.4 !important;
  font-size: inherit !important;
  position: static;
  padding-left: var(--_input-padding-inline);
}
.form__item.error .form__input {
  border-color: #c5092c;
}
.form__item.error .form__error {
  display: block;
}
.form__input {
  display: block;
  width: 100%;
  background: none;
  border: none;
  font-size: inherit;
  padding: var(--_input-padding-block) var(--_input-padding-inline);
  outline: transparent;
}
.form__input--textarea {
  resize: none;
}
.form__input--select {
  cursor: pointer;
}
.form__label {
  opacity: 0.4;
  position: absolute;
  top: var(--_input-padding-block);
  left: var(--_input-padding-inline);
  transition: 0.3s;
  pointer-events: none;
}
.focused .form__label, .completed .form__label {
  font-size: 0.625rem;
  top: 0;
}
@media (min-width:750px) {
  .focused .form__label, .completed .form__label {
    font-size: 0.8125rem;
  }
}
.focused .form__label {
  opacity: 1;
}
.form__error {
  display: none;
  font-size: 0.75rem;
  padding: 0.5em var(--_input-padding-inline);
  background-color: #fdf2f6;
  color: #c5092c;
  margin-top: 0.625rem;
  position: relative;
}
.error + .form__error {
  display: block;
}
.form__hint {
  font-size: 0.75rem;
  margin-left: var(--_input-padding-inline);
  opacity: 0.4;
  margin-top: 1.25rem;
  color: var(--color-black);
}
.form__checkboxes:not(:first-child), .form__buttons:not(:first-child) {
  margin-top: 1.875rem;
}
@media (min-width:750px) {
  .form__checkboxes:not(:first-child), .form__buttons:not(:first-child) {
    margin-top: 3.75rem;
  }
}
.form__buttons {
  display: flex;
  gap: 1.25rem;
  justify-content: space-between;
}
.form__buttons .button {
  font-size: 1.25rem;
}

.checkbox {
  display: flex;
  cursor: pointer;
}
.checkbox:hover .checkbox__fake::before {
  opacity: 1;
}
.checkbox + .checkbox {
  margin-top: 1.25rem;
}
.checkbox input {
  display: none;
}
.checkbox input:checked ~ .checkbox__fake::after,
.checkbox input:checked ~ .checkbox__fake svg {
  opacity: 1 !important;
}
.checkbox input[type=radio] ~ .checkbox__fake::before {
  border-radius: 50%;
}
.checkbox input[type=radio] ~ .checkbox__fake::after {
  display: block;
  content: "";
  opacity: 0;
  background-color: #00cb9c;
  border-radius: 50%;
  position: absolute;
  top: 6px;
  right: 6px;
  bottom: 6px;
  left: 6px;
}
.checkbox__fake {
  flex-shrink: 0;
  width: 1.875em;
  height: 1.875em;
  margin-right: 1.25em;
  position: relative;
}
.checkbox__fake::before {
  display: block;
  content: "";
  pointer-events: none;
  opacity: 0.2;
  transition: 0.3s;
  border: 1px solid var(--color-black);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.checkbox__fake svg {
  opacity: 0;
  fill: #00cb9c;
  width: 1em;
  height: auto;
  transform: translate(-45%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
}
.checkbox__text {
  font-size: 0.875rem;
  line-height: 1.2;
}
@media (min-width:750px) {
  .checkbox__text {
    margin-top: 0.15em;
    font-size: 1rem;
    line-height: 1.5;
  }
}

.signpost__items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
  gap: 1.25rem;
}
.signpost__item {
  background-color: #d4e3dd;
  text-decoration: none;
  transition-duration: 0.15s;
}
.signpost__item.highlighted {
  background-color: #b5cfc5;
}
.signpost__item:hover {
  background-color: #45836b;
  color: #00cb9c;
}
.signpost__item::before {
  display: block;
  content: "";
  padding-top: 100%;
  float: left;
}
.signpost__item-in {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  height: 100%;
  padding: 1.875rem;
}
.signpost__title h3 {
  margin: 0;
  font-size: 2.1875rem;
  line-height: 1.2;
}
.signpost__title strong {
  font-weight: 900;
}

.db-news {
  max-width: 50rem;
}
.db-news__item:not(:last-child) {
  margin-bottom: 2.5rem;
}
.db-news__info {
  background-color: #000;
  color: #FFF;
  padding: 0.625rem;
  margin-bottom: 0.625rem;
  font-size: 0.875rem;
}
.db-news__info ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.625rem 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.db-news__text p {
  line-height: 1.5;
}

.error-summary {
  font-size: 0.875rem;
  padding: 1.25rem 1.875rem;
  background-color: #fdf2f6;
  color: #c5092c;
}
.error-summary:not(:first-child) {
  margin-top: 1.25rem;
}
.error-summary:not(:last-child) {
  margin-bottom: 1.25rem;
}

.wrapper {
  --_side-width: 21.875rem;
  display: flex;
  flex-direction: column-reverse;
  position: relative;
}
@media (min-width:750px) {
  .wrapper {
    align-items: flex-start;
    flex-direction: row;
  }
}
@media (min-width:750px) {
  .wrapper__main {
    width: calc(100% - var(--_side-width));
    padding-right: 2.5rem;
  }
}
.wrapper__side {
  background-color: #eeecec;
  padding: 1.875rem;
  margin-bottom: 2.5rem;
}
@media (min-width:750px) {
  .wrapper__side {
    margin-bottom: 0;
    transition: 0.2s;
    width: var(--_side-width);
    position: sticky;
    top: calc(var(--header-height) + 1.25rem);
  }
  .scroll-down .wrapper__side {
    top: 1.25rem;
  }
}
.wrapper__side table {
  width: 100%;
}
.wrapper__status {
  font-size: 1.5625rem;
  padding: 0.5em;
  margin-bottom: 1.875rem;
  background-color: #bcb1b3;
  text-align: center;
}
.wrapper__status.completed {
  background-color: #00cb9c;
}
.wrapper__status.check {
  background-color: #ffff5c;
}
.wrapper__status.progress {
  background-color: rgba(128, 128, 128, 0.52);
}
.wrapper__status.cancelled {
  background-color: #c5092c;
}

@media (min-width:750px) {
  .comment:not(:first-child) {
    margin-top: 3.125rem !important;
  }
}
.comment__main-title {
  position: relative;
  text-transform: uppercase;
  margin: 0 auto 1.5625rem 0;
}
@media (min-width:750px) {
  .comment__main-title {
    margin: 0 auto 2.1875rem 0;
  }
}
.comment__main-title h1,
.comment__main-title h1 {
  font-size: 1.5625rem;
}
@media (min-width:750px) {
  .comment__main-title h1,
.comment__main-title h1 {
    font-size: 3.125rem;
  }
}
.comment__inner {
  background-color: #eeecec;
  padding: 1.875rem;
  max-width: 50rem;
}
.comment:not(:first-child) {
  margin-top: 2.5rem;
}
.comment__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.comment__time span {
  opacity: 0.35;
}
.comment__content p,
.comment__content details,
.comment__content summary,
.comment__content li {
  color: #606060;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.grid-buttons {
  --_size: 1.25rem;
  --_gap: 0.25rem;
  margin-left: 1rem;
}
.grid-buttons ul {
  display: flex;
  margin: calc(var(--_gap) * -1);
  padding: 0;
  list-style: none;
}
.grid-buttons li {
  width: var(--_size);
  height: var(--_size);
  border-radius: 3px;
  cursor: pointer;
  margin: var(--_gap);
  opacity: 0.25;
  transition: 0.25s;
}
.grid-buttons li:hover, .grid-buttons li.active {
  opacity: 1;
}
.grid-buttons li.active {
  cursor: default;
}
.grid-buttons svg {
  display: block;
  height: 100%;
  width: 100%;
}

.cookies-bar {
  /* ------------------------- */
  display: none;
  font-family: "Data Neo", sans-serif;
  line-height: 1.5;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999999;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
}
.cookies-bar-active .cookies-bar {
  display: block;
  animation-name: fadeIn;
  animation-duration: 0.4s;
  animation-delay: 0.1s;
  animation-fill-mode: both;
}
.cookies-bar__bg {
  display: none;
  background: #c7f1e7;
  mix-blend-mode: multiply;
  pointer-events: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9998;
}
.cookies-bar-active .cookies-bar__bg {
  display: block;
  animation-name: fadeIn;
  animation-duration: 0.4s;
  animation-delay: 0.1s;
  animation-fill-mode: both;
}
.cookies-bar__bar {
  display: flex;
  flex-direction: column;
  background-color: #45836b;
  color: #fff;
  margin: 0 auto;
  padding: 10px 40px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
}
@media (min-width: 990px) {
  .cookies-bar__bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.cookies-bar-active .cookies-bar__bar {
  animation-name: fadeInUp;
  animation-duration: 0.4s;
  animation-delay: 0.1s;
  animation-fill-mode: both;
}
.cookies-bar__popup {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 1.25rem;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 99999999;
  display: none;
  max-height: 100%;
  overflow: auto;
  transition: 0.3s;
  transition-delay: 0.3s;
  opacity: 0;
}
@media (min-width:990px) {
  .cookies-bar__popup {
    padding: 3.125rem;
  }
}
.popup-open .cookies-bar__popup {
  display: block;
  animation-name: fadeIn;
  animation-duration: 0.4s;
  animation-delay: 0.1s;
  animation-fill-mode: both;
}
.cookies-bar__inner {
  background-color: #ffffff;
  color: #10151C;
  padding: 1.25rem;
  max-width: 50em;
  max-height: calc(100% - 2.5rem);
  overflow: auto;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 990px) {
  .cookies-bar__inner {
    padding: 3.125rem;
    max-height: calc(100% - 6.25rem);
  }
}
@media (max-width:989px) {
  .cookies-bar__inner {
    max-width: 85%;
  }
}
.cookies-bar__close {
  width: 3.75rem;
  height: 3.75rem;
  border: none;
  background-color: transparent;
  position: absolute;
  top: 10px;
  right: 10px;
  text-indent: -9999px;
  overflow: hidden;
  cursor: pointer;
}
.cookies-bar__close:before {
  display: block;
  content: "";
  background-color: #e0e0e0;
  border-radius: 50%;
  transition: 0.3s;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.cookies-bar__close span {
  display: block;
}
.cookies-bar__close span:before, .cookies-bar__close span:after {
  display: block;
  content: "";
  height: 2px;
  background-color: #10151C;
  position: absolute;
  left: 24%;
  top: calc(50% - 1px);
  right: 24%;
}
.cookies-bar__close span:before {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}
.cookies-bar__close span:after {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}
.cookies-bar__title {
  margin: 0 0 0.5rem 0;
}
.cookies-bar__title h1,
.cookies-bar__title h2,
.cookies-bar__title h3,
.cookies-bar__title p {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
}
.cookies-bar__perex {
  margin: 0 0 1.25rem 0;
}
@media (min-width: 990px) {
  .cookies-bar__perex {
    margin: 0 0 0 0;
  }
}
.cookies-bar p {
  font-size: 0.875rem;
  margin: 0 0 1rem 0;
}
.cookies-bar p:last-child {
  margin-bottom: 0 !important;
}
.cookies-bar__items {
  margin: 2.5rem 0 0 0;
}
.cookies-bar__item {
  display: block;
  position: relative;
}
.cookies-bar__item + .cookies-bar__item {
  margin-top: 2.5rem;
}
.cookies-bar__item + .cookies-bar__item:before {
  display: block;
  content: "";
  height: 1px;
  background-color: rgba(16, 21, 28, 0.2);
  position: absolute;
  left: 0;
  top: -1.25rem;
  right: 0;
}
.cookies-bar__input {
  display: none;
}
.cookies-bar__input:checked ~ .cookies-bar__fake {
  background-color: #45836b;
}
.cookies-bar__input:checked ~ .cookies-bar__fake::after {
  left: 50%;
}
.cookies-bar__input[disabled] ~ .cookies-bar__fake {
  cursor: not-allowed !important;
  /* &::after {
      background-color: grey !important;
  } */
}
.cookies-bar__fake {
  display: block;
  width: 3rem;
  height: 1.5rem;
  border-radius: 5em;
  border: 1px solid #000;
  transition: 0.15s;
  position: absolute;
  right: 0;
  top: 5px;
}
.cookies-bar__fake:after {
  display: block;
  content: "";
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  transition: 0.3s;
  border: 1px solid #000;
  background-color: #d4e3dd;
  position: absolute;
  top: -1px;
  left: -1px;
}
.cookies-bar__fake:not(.checked):hover {
  cursor: pointer;
}
.cookies-bar__fake.checked:after {
  left: 50%;
}
.cookies-bar__fake.disabled:after {
  background-color: #4d4d4d;
}
.cookies-bar__text {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.625em 0;
}
.cookies-bar__info {
  padding-right: 5rem;
}
@media (min-width: 990px) {
  .cookies-bar__info {
    padding-right: 9, 375rem;
  }
}
.cookies-bar__info p {
  font-size: 0.875rem;
}
.cookies-bar__content {
  padding: 0 0 20px 0;
}
@media (min-width: 990px) {
  .cookies-bar__content {
    padding: 0 40px 0 0;
  }
}
.cookies-bar__buttons {
  display: flex;
  margin: -5px -10px;
}
@media (min-width: 990px) {
  .cookies-bar__buttons {
    justify-content: flex-end;
  }
}
.cookies-bar__buttons .cookies-bar__button {
  margin: 5px 10px;
}
.cookies-bar__popup .cookies-bar__buttons {
  margin-top: 2.5rem;
}
.cookies-bar__button {
  display: inline-block;
  white-space: nowrap;
  font-weight: 600;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.cookies-bar__button:hover {
  text-decoration: underline;
}

/*# sourceMappingURL=main.css.map */
