/* stylelint-disable */
/* stylelint-disable max-line-length */
:root {
  --breakpoint-xxl: 1920px;
  --breakpoint-xl: 1440px;
  --breakpoint-lg: 1280px;
  --breakpoint-md: 1024px;
  --breakpoint-md-s: 992px;
  --breakpoint-sm: 768px;
  --breakpoint-sm-s: 550px;
  --breakpoint-xs: 512px;
  --breakpoint-xxs: 390px;
  --breakpoint-xxxs: 375px;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);

  or object-fit and object-position:
  @include object-fit(cover, top);
*/
.wp-block .map__container,
.map__container {
  position: relative;
  padding-top: 35px;
  padding-bottom: 35px;
}
@media (min-width: 992px) {
  .wp-block .map__container,
  .map__container {
    padding-top: 85px;
    padding-bottom: 85px;
  }
}
@media (min-width: 1280px) {
  .wp-block .map__container,
  .map__container {
    padding-top: 110px;
    padding-bottom: 200px;
  }
}
.wp-block .map__title p:first-child,
.map__title p:first-child {
  margin-bottom: 5px;
  font-weight: 300;
}
.wp-block .map__title p:last-child,
.map__title p:last-child {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .wp-block .map__title,
  .map__title {
    width: 44%;
    margin-left: auto;
  }
}
@media (min-width: 992px) {
  .wp-block .map__link,
  .map__link {
    width: 44%;
    margin-left: auto;
    margin-top: 60px;
  }
}
.wp-block .map .swiper-slide,
.map .swiper-slide {
  opacity: 0 !important;
}
.wp-block .map .swiper-slide.swiper-slide-active,
.map .swiper-slide.swiper-slide-active {
  opacity: 1 !important;
}
.wp-block .map__wrapper,
.map__wrapper {
  display: flex;
  flex-wrap: wrap;
}
.wp-block .map-slider,
.map-slider {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .wp-block .map-slider,
  .map-slider {
    margin-left: auto !important;
    margin-right: unset;
    width: 44%;
    margin-bottom: 0;
  }
}
.wp-block .map-slide,
.map-slide {
  cursor: pointer;
}
@media (min-width: 992px) {
  .wp-block .map-slide,
  .map-slide {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
}
.wp-block .map-slide__left,
.map-slide__left {
  margin-bottom: 20px;
  position: relative;
  width: 100%;
}
@media (min-width: 992px) {
  .wp-block .map-slide__left,
  .map-slide__left {
    width: 44%;
    margin-bottom: 0;
  }
}
.wp-block .map-slide__left #map-point,
.map-slide__left #map-point {
  width: 15px;
  height: 15px;
  position: absolute;
  background: #fff;
  bottom: 0;
  left: 0;
  transition: ease-in-out 0.3s;
  box-shadow: 0 0 1px 1px var(--sk-color-third);
  animation: pulse-animation 2s infinite;
}
.wp-block .map-slide__left #main-map,
.map-slide__left #main-map {
  position: relative;
  display: flex;
}
.wp-block .map-slide__left #main-map::before,
.map-slide__left #main-map::before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 64.7619047619%;
}
.wp-block .map-slide__left #main-map::after,
.map-slide__left #main-map::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url("../../img/mapGrey.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.wp-block .map-slide__left img,
.wp-block .map-slide__left svg,
.map-slide__left img,
.map-slide__left svg {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .wp-block .map-slide__right,
  .map-slide__right {
    margin-bottom: 20px;
  }
}
.wp-block .map-slide__logo,
.map-slide__logo {
  margin-bottom: 20px;
  width: 35.2%;
  height: auto;
}
@media (min-width: 992px) {
  .wp-block .map-slide__logo,
  .map-slide__logo {
    margin-bottom: 45px;
    width: 60%;
  }
}
.wp-block .map-slide__logo picture,
.wp-block .map-slide__logo img,
.map-slide__logo picture,
.map-slide__logo img {
  position: relative;
  width: 100%;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}
.wp-block .map-slide__description p:first-child,
.map-slide__description p:first-child {
  margin-bottom: 0;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }
}
