.aws-slider,
.aws-slider * {
	box-sizing: border-box;
}

.aws-slider {
	position: relative;
	width: 100%;
	height: 480px;
	min-height: 320px;
	overflow: hidden;
	background: #E04F04;
	color: #fff;
}

.aws-track {
	display: flex;
	width: 100%;
	height: 100%;
	transition: transform 650ms ease;
	will-change: transform;
}

.aws-slide {
	position: relative;
	flex: 0 0 100%;
	width: 100%;
	height: 100%;
	background-color: #E04F04;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.aws-slide__shade {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(90deg, rgba(180, 48, 0, .76) 0%, rgba(224, 79, 4, .48) 38%, rgba(224, 79, 4, 0) 74%);
	pointer-events: none;
}

.aws-slide__inner {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	width: min(100%, 1180px);
	height: 100%;
	margin: 0 auto;
	padding: 64px 40px;
}

.aws-slide__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 18px;
	width: min(100%, 460px);
}

.aws-slide__title {
	margin: 0;
	color: #fff;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(30px, 3.2vw, 46px);
	font-weight: 400;
	line-height: 1.1;
	letter-spacing: 0;
}

.aws-slide__text {
	max-width: 38em;
	margin: 0;
	color: rgba(255, 255, 255, .88);
	font-size: 14px;
	line-height: 1.65;
}

.aws-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 11px;
	min-height: 38px;
	padding: 11px 22px;
	border: 1px solid rgba(255,255,255,.86);
	background: transparent;
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0;
}

.aws-button:hover,
.aws-button:focus {
	background: #fff;
	color: #E04F04;
	text-decoration: none;
	outline: none;
}

.aws-nav {
	position: absolute !important;
	top: 50% !important;
	z-index: 9999 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 54px !important;
	height: 54px !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 50% !important;
	background: #fff;
	box-shadow: 0 12px 30px rgba(90, 26, 2, .22);
	color: #E04F04;
	font-family: Arial, Helvetica, sans-serif !important;
	font-size: 48px !important;
	font-weight: 300 !important;
	line-height: 45px !important;
	text-align: center !important;
	text-decoration: none !important;
	opacity: 1 !important;
	visibility: visible !important;
	transform: translateY(-50%) !important;
	cursor: pointer !important;
	user-select: none;
	pointer-events: auto !important;
	text-indent: 0;
	padding-bottom: 7px !important;
}

.aws-nav:hover,
.aws-nav:focus {
	background: #fff;
	color: #E04F04;
	text-decoration: none !important;
	outline: 2px solid rgba(255,255,255,.7);
	outline-offset: 2px;
}

.aws-prev {
	left: 20px !important;
}

.aws-next {
	right: 20px !important;
}

.aws-dots {
	position: absolute;
	right: 24px;
	bottom: 22px;
	left: 24px;
	z-index: 9998;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	pointer-events: none;
}

.aws-dot {
	display: block !important;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: rgba(255,255,255,.55);
	opacity: 1;
	pointer-events: auto;
}

.aws-dot.is-active {
	width: 28px;
	border-radius: 999px;
	background: #fff;
}

@media (max-width: 767px) {
	.aws-slider {
		height: 560px;
		min-height: 440px;
	}

	.aws-slide {
		background-position: center center;
	}

	.aws-slide__shade {
		background: linear-gradient(180deg, rgba(224, 79, 4, .04) 0%, rgba(224, 79, 4, .72) 52%, rgba(180, 48, 0, .96) 100%);
	}

	.aws-slide__inner {
		align-items: flex-end;
		padding: 42px 22px 86px;
	}

	.aws-slide__title {
		font-size: 30px;
	}

	.aws-slide__text {
		font-size: 13px;
	}

	.aws-nav {
		top: auto !important;
		bottom: 22px !important;
		width: 44px !important;
		height: 44px !important;
		font-size: 40px !important;
		line-height: 36px !important;
		transform: none !important;
		padding-bottom: 6px !important;
	}

	.aws-prev {
		left: 18px !important;
	}

	.aws-next {
		right: 18px !important;
	}

	.aws-dots {
		right: 72px;
		bottom: 38px;
		left: 72px;
	}
}
