.tall-image-carousel {
	padding-top:0;
}
.tall-image-carousel .all-experiences,
.tall-image-carousel .all-images{
	width:100%;
	padding-left:clamp(20px, 6.25vw, 80px);
	margin-top:4rem;
}
.tall-image-carousel .single-experience,
.tall-image-carousel .slide{
	width:30%;
	margin-right:20px;
	cursor: pointer;
}
.tall-image-carousel .single-experience h4,
.tall-image-carousel .slide h4{
	width:100%;
	color:var(--primary);
	margin-top:16px;
}
.tall-image-carousel .single-experience .img-container{
	height:29.5vw;
	justify-content: center;
	display: flex;
	flex-direction: row;
	overflow: hidden;
	flex-wrap: wrap;
	position: relative;
	cursor: pointer;
}
.tall-image-carousel .single-experience img{
	object-fit: cover;
	flex: 1;
	height:100%;
	transition:.2s all;
}
.tall-image-carousel .slide img{
	width:100%;
}
.tall-image-carousel .bg-overlay{
	opacity: 0;
	cursor: pointer;
	transition: .2s all;
}
.tall-image-carousel .single-experience .img-container:hover .bg-overlay{
	opacity: 1;
}
.tall-image-carousel .single-experience .img-container:hover img{
	filter: blur(4px);
}
.tall-image-carousel .bg-overlay p{
	font-family: 'StRydeRegular';
	line-height: 1.1;
	font-size: clamp(14px, 1.094vw, 14px);
	font-weight: 400;
	text-transform: uppercase;
	position: relative;
}
.tall-image-carousel .bg-overlay p:after{
	content:'';
	width:100%;
	background:var(--white);
	height:1px;
	position: absolute;
	left:0;
	bottom:-5px;
}
.tall-image-carousel .single-experience .img-container:hover .bg-overlay img{
	filter:none;
	margin-top:-3px;
}
.tall-image-carousel .flickity-prev-next-button.previous{
	left:auto;
	right:9rem;
}
.tall-image-carousel .flickity-prev-next-button.next{
	right:3rem;
}
.tall-image-carousel .flickity-prev-next-button{
	top:auto;
	bottom:-10rem;
}
.tall-image-carousel .flickity-button{
	background:var(--primary);
	color:var(--white);
}

.single-villa .tall-image-carousel{
	margin-top:16px;
	padding-top:56px;
	border-top:1px solid #eee;
	padding-bottom:0;
}

.cursor {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-size: contain !important;
  -webkit-background-size: contain !important;
  -moz-background-size: contain !important;
  -o-background-size: contain !important;
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0;
  background: url('../../assets/cursor-drag.svg') center center no-repeat;
}

.single-villa .additional-features{
	padding:52px 0;
	border-top:1px solid #eee;
}

@media only screen and (max-width: 900px) {
	.tall-image-carousel {
		padding-top:50px;
		padding-bottom:100px;
	}
	.tall-image-carousel .single-experience{
		width:70%;
	}
	.tall-image-carousel .flickity-prev-next-button{
		bottom:-7rem;
	}
	.tall-image-carousel .single-experience .img-container{
		height:70vw;
	}
}
@media only screen and (max-width: 500px) {
	.tall-image-carousel h2 + div{
		margin-top:20px;
	}
	.cursor{
		display: none;
	}
}