/*** 
 CARD STYLES
 Added: April 03, 2023 
 */
 .cards {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 2.857rem;
}

.card {
	flex-shrink: 1;
	flex-basis: 49%;
	border: 2px solid #0C62B7;
	border-radius: 8px;
	box-sizing: border-box;
}

.card_ttl {
	padding: 10px 0 8px;
	background: #E2F1FF;
	color: #333333;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	line-height: 1.875;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}

.card_content {
	font-size: 0.9em;
}

.card_btn {
	text-align: center;
}

.card_btn .btn_mod{
	font-size: 0.6em;
}

.card_content p {
	line-height: 1.875;
}

.card_boxwrap {
    display: flex;
    padding: 3%;
    justify-content: space-between;
}

.card_boxwrap .box {
    width: 48%;
    position: relative;
}

.card_boxwrap .box .card_img img {
    width: 100%
}

.flow li {
	list-style: none;
	padding-left: 1.6em;
	text-indent: -1.6em;
}

@media screen and (min-width: 640px) {
	.cards {
		flex-direction: row;
		gap: 0;
		justify-content: space-between;
	}
	.card:nth-of-type(n+3) {
		margin-top: 25px 
	}
	.card_content {
		font-size: 16px;
	}
	.card_btn .btn_mod{
		font-size: 14px;
	}
}