.header--content {
	width: 1260px;
}

#hero {
	position: relative;
	display: flex;
	align-items: center;
}

#hero-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding-inline: 16px;
	padding-bottom: 32px;
}

#hero-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.25;
	z-index: -1;
}

.hero-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
}

.hero-content p {
	text-align: left;
}

.hero-content button {
	width: 100%;
	max-width: 436px;
}

.btn--primary {
	font-weight: 700;
	font-size: 20px;
	color: white;
	border-radius: 100px;
	background: linear-gradient(270deg, #007696 1.67%, #0d2f89 101.67%),
		linear-gradient(93deg, #00d147 0%, #00bf41 102.32%);
	box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.25);
	height: 67px;
	cursor: pointer;
}

.cards {
	display: flex;
	gap: 16px;
	text-align: start;
}

.card {
	display: flex;
	flex-direction: column;
	gap: 16px;
	background-color: #efefef;
	padding: 16px;
	border-radius: 8px;
	width: calc(100% / 3);
}

.card-title {
	font-size: 20px;
	font-weight: 400;
}

.card-title.films {
	color: #ca8824;
}

.card-title.e-books {
	color: #ca24a5;
}

.card-title.games {
	color: #24acca;
}

.card-title + p {
	font-size: 12px;
}

.container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 20px;
	width: 1260px;
	max-width: 100%;
	padding: 24px 16px;
	margin: 0 auto;
}

.btn--sub {
	width: 100%;
}

#free-trial .container {
	width: 570px;
}

.checks {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 300px;
}

.check {
	width: 100%;
	display: flex;
	gap: 12px;
	align-items: start;
	font-weight: 600;
	font-size: 12px;
}

.check--group {
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: center;
}

.check img {
	width: 20px;
	height: 20px;
}

@media only screen and (max-width: 768px) {
	.phone-desktop {
		display: none;
	}

	.cards {
		flex-direction: column;
		width: 100%;
	}

	.cards .card {
		width: 100%;
	}

	#free-trial .container p {
		text-align: left;
	}
}

@media only screen and (min-width: 769px) {
	.phone-mobile {
		display: none;
	}

	#hero-wrapper {
		width: 1260px;
		max-width: 100%;
		justify-content: space-between;
		flex-direction: row;
		margin: 0 auto;
	}

	#hero .phone-desktop {
		max-height: 80vh;
		max-width: 600px;
	}

	.hero-content {
		width: 436px;
	}

	.hero-content h1,
	.hero-content p {
		width: 100%;
		text-align: right;
	}

	.container {
		gap: 32px;
		padding-block: 64px;
	}

	.checks {
		gap: 32px;
		width: auto;
		flex-direction: row;
		white-space: nowrap;
	}
}

/* Accordion */
#faq .container {
	width: 630px;
	color: black !important;
}

.accordion .accordion-item {
	margin-top: 12px;
	background: #cbf6ff;
}

.accordion button {
	position: relative;
	display: block;
	text-align: left;
	width: 100%;
	padding: 1em 0;
	color: black;
	font-size: 1.15rem;
	font-weight: 400;
	border: none;
	background: none;
	outline: none;
	padding: 16px;
}

.accordion button:hover,
.accordion button:focus {
	cursor: pointer;
	color: black;
}

.accordion button .accordion-title {
	padding: 1em 1.5em 1em 0;
}

.accordion button .icon {
	display: inline-block;
	position: absolute;
	top: 18px;
	right: 12px;
	width: 22px;
	height: 22px;
	transform: scale(1.8);
	color: #24acca;
}

.accordion button .icon::before {
	display: block;
	position: absolute;
	content: '';
	top: 9px;
	left: 5px;
	width: 10px;
	height: 2px;
	background: currentColor;
}
.accordion button .icon::after {
	display: block;
	position: absolute;
	content: '';
	top: 5px;
	left: 9px;
	width: 2px;
	height: 10px;
	background: currentColor;
}

.accordion button[aria-expanded='true'] .icon::after {
	width: 0;
}
.accordion button[aria-expanded='true'] + .accordion-content {
	opacity: 1;
	max-height: 20em;
	transition: all 200ms linear;
	will-change: opacity, max-height, padding;
	padding: 16px;
}

.accordion .accordion-content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 12px;
	width: 100%;
	background-color: white;
}

.accordion .accordion-content {
	background-color: #a4edfd;
	position: relative;
	opacity: 0;
	max-height: 0;
	overflow: hidden;
	transition: opacity 200ms linear, max-height 200ms linear;
	will-change: opacity, max-height;
}
.accordion .accordion-content p {
	padding-block: 12px;
	font-size: 1rem;
	color: black;
	text-align: left;
}

.full-height {
	height: 100vh;
	height: 100dvh;
	display: flex;
	flex-direction: column;
}

#hero {
	flex: 1;
}
