@charset "utf-8";
/* ===================================================================
 Avepoint
=================================================================== */

:root {
	--color-primary: #00689f;
}

.solution-arrow {
	position: relative;
	margin: 0 auto;
	max-width: 475px;
	width: 100%;
	padding: .6rem 1rem .9rem;
	background: var(--color-primary);
	box-sizing: border-box;
	border-radius: 100px;
	text-align: center;
	color: #fff;
	font-weight: bold;
}
.solution-arrow::after {
	position: absolute;
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 0.9rem solid transparent;
    border-left: 0.9rem solid transparent;
    border-top: 0.7rem solid var(--color-primary);
    border-bottom: 0;
    bottom: -0.65rem;
    left: 50%;
    transform: translateX(-50%);
}
@media screen and (min-width: 48em) {
	.solution-arrow {
		padding: 1rem 3rem 1.2rem;
	}
	.solution-arrow::after {
		border-right: 1.1rem solid transparent;
		border-left: 1.1rem solid transparent;
		border-top: 0.9rem solid var(--color-primary);
		bottom: -0.85rem;
	}
}

.solution-item {
	border: 2px solid var(--color-primary);
	border-radius: 5px;
	color: var(--color-primary);
	line-height: 1;
	padding: 32px 16px;
	text-align: center;
	font-weight: bold;
	font-size: 18px;
}

.solution-text {
	background-color: #FF9800;
	color: white;
	padding: 24px;
	text-align: center;
	margin: auto;
	line-height: 1.4;
}

.solution-text > span {
	font-size: 24px;
	font-weight: bold;
	display: block;
	margin-top: 12px;
}