/* 

COLORS

blue-1000: #040439
blue-600: #1A63FF
blue-300: #98B9F7
blue-100: #DAE7FF
slate: #4F4F6D
red: #E31E24

 */

.first-screen {
	position: relative;
	background-color: var(--blue-1000);

	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;

	padding-top: 140px;
	padding-bottom: 65px;

	overflow: hidden;
	z-index: 1;
}

.first-screen.animated-background-image::before {
	background-position-y: -90px;
	background-position-x: -250px;
	background-repeat: no-repeat;
	background-size: cover;
}

.first-screen .arrow-button {
	position: absolute;
	top: 105px;
}

.first-screen .arrow-button.left {
	left: 0;
}

.first-screen .arrow-button.right {
	right: 0;
}

.first-screen .slider-container {
	width: 300px;
	overflow: hidden;
}

.first-screen .slides {
	transform: translateX(360px);
}

.first-screen .slide {
	width: 300px;

	display: flex;
	flex-direction: column;
	align-items: center;

	padding: 25px 30px;
	gap: 30px;
}

.first-screen .image {
	width: 230px;
	height: auto;
}

.first-screen .body-container {
	display: flex;
	flex-direction: inherit;
	gap: inherit;

	text-align: center;
	align-items: center;
}

.first-screen .body-container .description {
	font-family: Stapel Light;
}

.first-screen .actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
}

.first-screen .filled {
	width: fit-content;
	font-size: 20px;
}

.first-screen .pagination {
	display: flex;
	align-items: center;
	gap: 20px;
}

.first-screen .pagination .dot {
	width: 10px;
	height: 10px;
	background-color: var(--slate);
	border-radius: 50%;
}

.first-screen .pagination .dot.active {
	background-color: var(--blue-600);
}

@media (min-width: 768px) {
	.first-screen {
		background-position: left;
	}

	.first-screen.animated-background-image::before {
		background-position-y: 0px;
		background-position-x: 250px;
	}

	.first-screen .arrow-button {
		top: 50%;
		transform: translateY(-50%);
	}

	.first-screen .slider-container {
		width: 600px;
	}

	.first-screen .slides {
		transform: translateX(660px);
	}

	.first-screen .slide {
		width: 600px;
		flex-direction: row-reverse;
		justify-content: space-between;
		gap: 0;
	}

	.first-screen .image {
		width: 240px;
	}

	.first-screen .body-container {
		width: 320px;

		flex-direction: column;
		align-items: start;
		gap: 16px;
		text-align: left;
		margin-bottom: 16px;
	}

	.first-screen .actions {
		align-items: flex-start;
		gap: 16px;
	}
}

@media (min-width: 1440px) {
	.first-screen {
		padding-top: 200px;
		padding-bottom: 140px;
	}

	.first-screen .slider-container {
		width: 1000px;
	}

	.first-screen .slides {
		transform: translateX(1060px);
	}

	.first-screen .slide {
		width: 1000px;
	}

	.first-screen .image {
		width: 400px;
	}

	.first-screen .body-container {
		width: 565px;
		gap: 30px;
	}
}
