.section-map {
	height: 80vh;
	max-height: 500px;
	position: relative;
}

.map-break {
	position: relative;
	background: #e5eef3;
}

.map-break:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	background: #e5eef3;;
	height: 11.875rem;
	right: 0;
}

#map {
	height: 80vh;
	max-height: 500px;
	display: block !important;
}

.section-map .map-controls {
	display: flex;
	flex-direction: column;
	position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 3;
}

.section-map .map-controls > a {
	outline: none;
  height: 2.75rem;
  width: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hover-skew {
  position: relative;
  overflow: hidden;
}

.hover-skew:hover:before {
	transform: translate3d(10%,0,0);
}

.hover-skew * {
	position: relative;
	z-index: 2;
}
.section-map .map-controls > a img {
	height: 2rem;
}

.hover-skew:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #7ecadd;
  width: 120%;
  left: -30%;
  transform: skew(30deg) translate3d(-100%,0,0);
  transition: transform .4s cubic-bezier(.3,1,.8,1);
}

.section-map > .hero--container {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.slider-map-container {
	background: #e5eef3;
	width: 0;
	border-radius: 0.75rem;
	position: relative;
	z-index: 4;
	overflow: hidden;
	margin-top: 70px;
	overflow: hidden;
	pointer-events: none;
	opacity: 0;
	transition: width .8s cubic-bezier(.7,0,.3,1),opacity .3s cubic-bezier(.7,0,.3,1),transform .3s cubic-bezier(.7,0,.3,1);
}

.slider-map-inner {
	width: 18.75rem;
	padding: 32px 0;
}

.slider-map-container.is-active {
	opacity: 1;
	width: 18.75rem;
	pointer-events: all;
}

.slider-map-container .slick.prev, 
.slider-map-container .slick.next {
	background: transparent;
}

.slider-map-container .slick-track {
	display: flex;
}

.slider-map-nav {
	display: flex;
	align-items: center;
}

.slider-map-nav .slick {
	position: relative !important;
	top: unset;
	left: unset;
	display: flex;
	align-items: center;
	padding: 10px;
	width: auto;
	overflow: hidden;
}

.slider-map-nav .slick:hover {
	background: transparent;
}

.slider-map-nav .slick.prev svg {
	transform: scale(-1);
}

.slider-map-nav .slick:after {
	content: none;
}

.slider-map-slide {
	flex-shrink: 0;
	height: auto !important;
	width: 100%;
	pointer-events: all;
}

.slider-map-slide a {
	color: #303678;
	display: flex;
  flex-direction: column;
  height: 100%;
}

.slider-map-slide span {
	display: block;
}

.slider-map-container .more {
	margin-top: 2.5rem;
	color: #303678;
	position: relative;
	background: transparent;
	border-bottom: 1px solid;
	font-size: 1rem;
  padding: 0.625rem 0;
  transition: padding .3s cubic-bezier(.215,.61,.355,1),color .3s cubic-bezier(.215,.61,.355,1);
}

.slider-map-container .more svg,
.slider-map-container .more span {
	position: relative;
	z-index: 2;
}

.slider-map-container .more:after {
	content: none !important;
}

.slider-map-container .more:before {
	content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: #303678;
  transform-origin: center bottom;
  transform: scaleY(0);
  transition: transform .3s cubic-bezier(.215,.61,.355,1);
}

.slider-map-container .more:hover {
	color: white;
	padding: .625rem 1rem;
}

.slider-map-container .more:hover:before {
	transform: scaleY(1);
}

@media screen and (max-width: 1025px) {
	.slider-map-container:not(.is-active) {
		pointer-events: all;
	}

	.slider-map-container,
	.slider-map-inner {
		margin-bottom: 1rem;
		opacity: 1 !important;
		width: 100% !important;
	}

	.section-map > .hero--container {
		position: static
	}
}