.select-states-wrap {
	display: flex;
	align-items: center;
	gap: 30px;
	margin: 32px 0 48px;
}

.select-states-wrap a {
	text-decoration: none;
}

.select-states-wrap .state-card {
	height: 200px;
	width: 222px;
	border-radius: 24px;
	border: 1px solid rgba(0, 0, 0, 0.10);
	background: #fff;
	box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.03);

	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.select-states-wrap .state-card img {
	height: 70px;
	width: auto;
}

.select-states-wrap .state-card .state-title {
	margin-top: 24px;
	font-size: 22px;
	font-style: normal;
	font-weight: 600;
	line-height: 120%;
	color: #B1325F;
}

@media (max-width: 992px) {
	.select-states-wrap .state-card {
		width: 100%;
	}

	.select-states-wrap a {
		flex: 1;
	}
}