* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "poppins", sans-serif;
}

.select-container {
	margin-top: 2em;
	margin-bottom: 2em;
	width: 100%;
	padding: 0 8%;
}

.select-container h1 {
	font-size: clamp(1em, 1.7vw, 2em);
	text-align: center;
	/* padding-top: 10%; */
	margin-bottom: 60px;
	/* font-weight: 600; */
	position: relative;
}

.select-container h1::after {
	content: "";
	background: #303ef7;
	width: 100%;
	height: 5px;
	position: absolute;
	bottom: -5px;
	left: 50%;
	transform: translateX(-50%);
}

.select-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 3em;
}

.select-comment {
	background-color: #f8d09f;
	text-align: center;
	border: solid 2px red;
	padding: 10px 50px;
}

.select-comment h2 {
	color: black;
	font-size: clamp(1em, 1.7vw, 2em);
}

.select-option {
	/* display: flex; */
	place-items: center;
	text-align: center;
	margin: 2em auto;
	padding: 25px 10px;
	border: 2px red solid;
	border-radius: 10%;
	font-size: 14px;
	cursor: pointer;
	background: white;
	transition: transform 0.5s, background 0.5s;
}

.select-option i {
	font-size: 60px;
	margin-bottom: 10px;
	color: #f8d09f;
}

.select-option h2 {
	font-weight: 600;
	margin-bottom: 8px;
}

.select-option:hover {
	/* background: #303ef7; */
	background-color: #f8d09f;
	/* color: #fff; */
	transform: scale(1.05);
}

.select-option:hover i {
	color: #fff;
}

.select-option img {
	/* display: block;
	padding: 2em;
	width: 35vw; */
	max-width: 100%;
	align-self: center;
	/* border: 1px solid red; */
	border-radius: 2.8rem;
	margin-bottom: 1rem;
}

.select-option li {
	font-weight: 600;
	font-size: 1.5em;
	list-style: none;
	line-height: 1.5;
}

.select-option h1 {
	font-weight: 800;
	font-size: 1.6em;
	color: #303ef7;
}

.select-option-flex1 {
	display: flex;
	max-height: 80vh;
	flex-direction: row;
	place-items: center;
	place-content: center;
	text-align: center;
	font-size: 24px;
}

.select-option-flex1 h2 {
	font-size: clamp(0.5em, 1.7vw, 1.5em);
	text-align: center;
	color: red;
	padding: 1em;
	/* margin: 5%; */
	border: 0.2em solid black;
	border-radius: 20%;
	background-color: lightgray;
}

.select-option-flex1 img {
	display: block;
	padding: 2em;
	width: clamp(50vw, 60vw, 80vw);
	max-width: 100%;
	align-self: center;
	/* border: 5px solid red; */
	/* border-radius: 2.8rem; */
	border-radius: 50%;
	margin-bottom: 1rem;
}

.select-brochure {
	display: grid;
	place-items: center;
	gap: 1em;
	padding: 1em;
	background-color: aquamarine;
}

.select-brochure img {
	border: solid 1em black;
}

.select-brochure a {
	place-content: center;
}
