:root {
	--primary: #023a2a;
}

.flex {
	display: flex;
	align-items: center;
	gap: 20px;
}

.photo {
	border-radius: 2px;
	border: 1px solid var(--primary);
	max-width: 400px;
}

.title-container {
	justify-content: space-around;
	position: relative;
	padding: 0 20px;
}

.title-container span {
	font-size: 16px;
	color: var(--main-color);
	margin: 20px 0;
	display: block;
}

.background {
	position: absolute;
	background: #ffb4c7;
	height: 90%;
	width: 100%;
	z-index: -1;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 2px;
}

.how {
	padding: 20px;
	box-sizing: border-box;
	background: #ffb4c7;
	color: var(--main-color);
	border-radius: 2px;
}

.how h3 {
	color:  var(--main-color);
	text-align: center;
}

.how p {
	color:  var(--main-color);;
}

.num {
	width: 100%;
	text-align: center;
	display: block;
	font-size: 30px;
	padding: 10px;
	font-weight: 800;
}

.accordion {
	background-color: white;
	color: #444;
	cursor: pointer;
	padding: 18px;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	font-size: 15px;
	transition: 0.4s;
	border: 1px solid #ccc;
	margin: 5px;
}

.active,
.accordion:hover {
	border-color: #023a2a;
}

.accordion:after {
	content: '\002B';
	color: #777;
	font-weight: bold;
	float: right;
	margin-left: 5px;
}

.active:after {
	content: '\2212';
}

.panel {
	padding: 0 18px;
	background-color: white;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
}

@media only screen and (max-width: 800px) {
	.flex.klarna {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media only screen and (max-width: 600px) {
	.flex {
		flex-direction: column;
	}

	.flex.klarna {
		align-items: center;
	}

	.photo {
		width: 100%;
	}

	.title-container {
		justify-content: center;
		padding: 20px;
	}

	.title-container span {
		text-align: center;
	}

	.title-container h2 {
		text-align: center;
	}

	.background {
		height: 100%;
	}
}
