main,
section {
	font-weight: bold;
}

main {
	min-height: 100vh;
}

main .container {
	gap: 50px;
}

main .container>div:first-child {
	filter: drop-shadow(0 5px 8px #000a);
}

main h1 {
	font-size: 3em;
	margin-bottom: 15px;
}

main p {
	font-size: 1.3em;
}

#about_sec .container>* {
	max-width: 400px;
}

#about_content {
	font-size: 1.25em;
	overflow: hidden;
}

#about_content>* {
	display: none;
}

#about_switch {
	gap: 20px;
	margin-top: 20px;
}

#about_switch>input {
	appearance: none;
	--size: 15px;
	width: var(--size);
	height: var(--size);
	border-radius: 50%;
	border: 1px solid var(--color-primary);
	transition: all .2s;
	cursor: pointer;
}

#about_switch>input:checked {
	background-color: var(--color-primary);
}

#about_sec h2::first-letter {
	color: var(--color-primary);
}

#card_sec .cards {
	gap: 30px;
}

#card_sec .cards>div {
	max-width: 300px;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 25px 30px 60px 45px;
	position: relative;
	aspect-ratio: 1.2/1;
	color: white;
}

#card_sec .cards svg:first-child {
	width: 2em;
	height: 2em;
}

#card_sec .cards svg:last-child {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

#card_sec .cards h3 {
	margin: 5px 0 10px 0;
}

#prod_sec .dual {
	--div1: 2fr;
}

#exp_sec h3 {
	margin-bottom: 15px;
}

#exp_sec .cards {
	margin-top: 20px;
	gap: 10px 20px;
}

#exp_sec .cards>img {
	width: 7em;
	aspect-ratio: 5/3;
	background-color: white;
	border-radius: 4px;
	object-fit: contain;
	padding: 8px;
	filter: drop-shadow(0 4px 6px #0006);
}

#sister_sec ul {
	font-size: 1.3em;
	padding: 20px;
}

@media (max-width:500px) {
	main .container {
		align-self: center;
	}
}