.thn-bottom-boxes {
	//TODO: add background with curve at the top
}

.thn-bottom-boxes-inner {
	max-width: var(--thn-content-width);
	margin: 64px auto 0;
	display: flex;
	gap: var(--thn-gallery-gap);
	padding: 0 var(--thn-content-padding);
}

.thn-bottom-box {
	box-sizing: border-box;
	padding: var(--thn-content-padding);
	border-radius: 10px;
	background: var(--thn-color-pink);
	color: #fff;
	width: calc(50% - var(--thn-gallery-gap) / 2);
	flex: 0 0 calc(50% - var(--thn-gallery-gap) / 2);
}

.thn-bottom-box.blue {
	background: var(--thn-color-blue);
}

.thn-bottom-box h2 {
	color: #fff;
}

.thn-bottom-box .et_pb_button {
	display: inline-block;
	background: #fff;
	color: #000;
	border-radius: 5px;
	margin-top: 32px;
	border: 0;
	padding: 10px 50px 10px 30px;
	font-size: 20px;
	box-shadow: 0px 2px 18px 0px rgba(255,255,255,0.39);
	transition: background-color .5s ease;
}

.thn-bottom-box .et_pb_button:hover {
	background: var(--thn-color-pink);
}

@media (max-width: 1024px) {
	.thn-bottom-box {
		width: 100%;
		flex: 0 0 100%;
	}
}
