.heroslider {
	position: relative;
}

.heroslider .swiper-slide {
	height: 100vh;
	height: calc(100vh * (1 / var(--zoom)));
}

.heroslider .backgroundimage {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
}

.heroslider img {
	width: 100%;
	height: 100%;
	position: relative;
	object-fit: cover;
	object-position: top center;
}

.heroslider .swiper-pagination {
	z-index: 100;
	bottom: 100px;
}

.heroslider .swiper-pagination-bullet {
	border: 1px solid #73C6F0;
	width: 14px;
	height: 14px;
	border-radius: 100%;
	opacity: .2;
}

.heroslider .swiper-pagination-bullet-active {
	background-color: #707070;
	opacity: 1;
}

.heroslider .swiper-button-prev,
.heroslider .swiper-button-next {
	color: var(--colorWhite);
}

.heroslider .content {
	position: absolute;
	width: 50%;
	top: 50%;
	transform: translateY(-50%);
	margin-left: 5%;
	z-index: 10;
}

.heroslider .hero-bold {
	display: block;
	font-size: 72px;
	line-height: 72px;
	font-weight: 900;
	color: #EDFC15;
	text-transform: uppercase;
}

.heroslider .hero-semibold {
	display: block;
	font-size: 72px;
	line-height: 85px;
	font-weight: 600;
	color: #EDFC15;
	text-transform: uppercase;
}

.heroslider p {
	font-size: 32px;
	line-height: 42px;
	font-weight: 400;
	color: #fff;
}

.heroslider .btn-default {
	background-color: var(--colorWhite);
	color: var(--colorBody);
	border-color: var(--colorWhite);
}

.heroslider .btn-default:hover {
	background-color: var(--colorYellow);
	color: var(--colorBody);
	border-color: var(--colorYellow);
}

@media(max-width: 991px) {
	.heroslider .swiper-slide {
		height: calc(100vh - 80px);
		height: calc((100vh - 80px) * (1 / var(--zoom)));
	}
	.heroslider .content {
		width: 50%;
		margin: 0;
		padding: 0 15px;
	}
	.heroslider .hero-bold,
	.heroslider .hero-semibold {
		font-size: 32px;
		line-height: 42px;
	}
	.heroslider p {
		font-size: 22px;
		line-height: 32px;
	}
	.heroslider img {
		object-position: top right;
	}
}

@media(min-width: 768px) {
	.heroslider .swiper-slide .backgroundimage::after {
		position: absolute;
		content:"";
		width: 100%;
		height: 100%;
		display: block;
		background: rgb(8, 170, 175);
		background: -moz-linear-gradient(90deg, rgba(8, 170, 175, 1) 0%, rgba(255, 255, 255, 0) 40%);
		background: -webkit-linear-gradient(90deg, rgba(8, 170, 175, 1) 0%, rgba(255, 255, 255, 0) 40%);
		background: linear-gradient(90deg, rgba(8, 170, 175, 1) 0%, rgba(255, 255, 255, 0) 40%);
		filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#08aaaf", endColorstr="#ffffff", GradientType=1);
		left: 0;
		top: 0;
	}
}

@media(max-width: 767px) {
	.heroslider {
		background-color: var(--colorDarkPurple);
	}
	.heroslider .swiper-slide {
		height: calc(70vh - 60px);
		height: calc((70vh - 60px) * (1 / var(--zoom)));
		display: flex;
		align-items: flex-end;
	}
	.heroslider .content {
		top: auto;
		transform: none;
		width: 100%;
		position: relative;
		padding-top: 0;
		padding-bottom: 30px;
		flex-grow: 1;
	}
	
	.heroslider .swiper-slide .backgroundimage::after {
		position: absolute;
		content:"";
		width: 100%;
		height: 100%;
		display: block;
		background: rgb(8, 170, 175);
		background: -moz-linear-gradient(0deg, rgba(8, 170, 175, 1) 0%, rgba(255, 255, 255, 0) 40%);
		background: -webkit-linear-gradient(0deg, rgba(8, 170, 175, 1) 0%, rgba(255, 255, 255, 0) 40%);
		background: linear-gradient(0deg, rgba(8, 170, 175, 1) 0%, rgba(255, 255, 255, 0) 40%);
		filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#08aaaf", endColorstr="#ffffff", GradientType=1);
		left: 0;
		top: 0;
	}
	
	.heroslider .backgroundimage {
		height: 100%;
		position: absolute;
	}
	.heroslider .swiper-pagination {
		top: 65px;
		bottom: auto;
		display: flex;
		flex-direction: row;
	}
	.heroslider .swiper-button-prev,
	.heroslider .swiper-button-next {
		display: none;
	}
	.heroslider .hero-bold,
	.heroslider .hero-semibold {
		font-size: 26px;
		line-height: 32px;
	}
	.heroslider p {
		font-size: 17px;
		line-height: 25px;
	}
	.heroslider .swiper-pagination-bullet {
		border: none;
		width: auto;
		height: 3px;
		border-radius: 2px;
		opacity: .2;
		background: #ffffff;
		flex-grow: 1;
		position: relative;
	}
	.heroslider .swiper-pagination-bullet:before {
		content: "";
		display: block;
		position: absolute;
		left: 0;
		top: -6px;
		height: 6px;
		width: 100%;
	}
	.heroslider .swiper-pagination-bullet:after {
		content: "";
		display: block;
		position: absolute;
		bottom: -6px;
		left: 0;
		height: 6px;
		width: 100%;
	}
	.heroslider .swiper-pagination-bullet-active {
		background: #ffffff;
		opacity: 1;
	}
}