.service-box {
	display: grid;
	grid-template-columns: repeat(auto-fill,minmax(250px, 1fr));
	grid-template-rows: repeat(auto-fill,minmax(300px, 1fr));
	grid-gap: 15px;
}

.service-item {
	padding: 25px;
	background: #f6f6f3;
}

.service-item:not(.other) {
	display: grid;
	align-items: self-end;
	grid-gap: 40px;
}

div.service-item:hover {
	background: transparent;
}

.service-item img {
	width: 100%;
	max-height: 200px;
}

.advantage {
  background: rgba(0, 38, 69, 0.05);
  padding: 25px;
  border-radius: 30px;
  border: 1px dashed rgba(0, 38, 69, 0.1);
  margin-bottom: 10px;
}

.advantage.bonus {
	position: relative;
}

.advantage.bonus::before {
	content: '';
    position: absolute;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path fill="%23edc619" d="M3 2.5a2.5 2.5 0 0 1 5 0 2.5 2.5 0 0 1 5 0v.006c0 .07 0 .27-.038.494H15a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H1a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h2.038A2.968 2.968 0 0 1 3 2.506V2.5zm1.068.5H7v-.5a1.5 1.5 0 1 0-3 0c0 .085.002.274.045.43a.522.522 0 0 0 .023.07zM9 3h2.932a.56.56 0 0 0 .023-.07c.043-.156.045-.345.045-.43a1.5 1.5 0 0 0-3 0V3zm6 4v7.5a1.5 1.5 0 0 1-1.5 1.5H9V7h6zM2.5 16A1.5 1.5 0 0 1 1 14.5V7h6v9H2.5z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    width: 50px;
    height: 50px;
    top: -30px;
    right: 15px;
}

.advantage p:last-of-type {
	margin-bottom: 0;
}

ul.flat-service-list {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
}

ul.flat-service-list li {
	font-size: 0.8rem;
	padding-left: 5px;
	flex: 1 0 100%;
	border-left: 3px solid var(--main-yellow);
}

@media (min-width: 600px) {
	ul.flat-service-list li { flex: 1 0 30%; }
}
