.sbh-service-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 30px;
}

.sbh-service-card {
	width: 100%;
	background: #fff;
	border-radius: 4px;
	padding: 40px 20px 30px 20px;
}

.sbh-service-card__trigger {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 32px;
	padding: 0;
	background: none;
	border: 0;
	cursor: pointer;
	text-align: left;
}

.sbh-service-card__trigger:disabled {
	cursor: default;
}

.sbh-service-card__top {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
}

.sbh-service-card__icon {
	width: 90px;
	height: 90px;
	min-width: 90px;
	border-radius: 5px;
	background: var(--roheline, #5ccb6b);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 22px;
}

.sbh-service-card__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.sbh-service-card__heading {
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
}

.sbh-service-card__title {
	font-size: 30px !important;
	line-height: 1.2;
	font-weight: 600 !important;
	color: var(--color-font, #1f2937);
}

.sbh-service-card__plus {
	position: relative;
	width: 30px;
	height: 30px;
	min-width: 24px;
}
.sbh-service-card__trigger:hover ,
.sbh-service-card__trigger:focus ,
.sbh-service-card__trigger:hover ,
.sbh-service-card__trigger:focus {
    background-color: #fff;
}

.sbh-service-card__plus::before,
.sbh-service-card__plus::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	background-color: var(--roheline, #5ccb6b);
	transform: translate(-50%, -50%);
	transition: all 200ms ease;
}

.sbh-service-card__plus::before {
	width: 25px;
	height: 3px;
}

.sbh-service-card__plus::after {
	width: 3px;
	height: 25px;
}

.sbh-service-card.is-open .sbh-service-card__plus::after {
	opacity: 0;
}

.sbh-service-card__panel {
	display: grid;
	grid-template-rows: 0fr;
	opacity: 0;
	transition: all 300ms ease;
}

.sbh-service-card.is-open .sbh-service-card__panel {
	grid-template-rows: 1fr;
	opacity: 1;
	margin-top: 40px;
}

.sbh-service-card__content {
	overflow: hidden;
}

.sbh-service-card__row {
	padding: 18px 0;
	border-bottom: 1px solid #e5e7eb;
}

.sbh-service-card__row:first-child {
	border-top: 1px solid #e5e7eb;
}

.sbh-service-card__row-title {
	font-size: 18px !important;
	line-height: 1.35;
	font-weight: 600 !important;
	color: var(--color-font, #111827);
}

.sbh-service-card__row-content {
	margin-top: 8px;
	font-size: 16px;
	line-height: 1.65;
	color: var(--color-font, #111827);
	max-width: 900px;
}

.sbh-service-card__row-content p {
	margin-top: 0;
}

.sbh-service-card__row-content p:last-child {
	margin-bottom: 0;
}

@media (max-width: 1024px) {
	.sbh-service-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.sbh-service-card {
		padding: 32px 18px 20px 18px;
	}

	.sbh-service-card__trigger {
		gap: 26px;
	}

	.sbh-service-card__icon {
		width: 82px;
		height: 82px;
		min-width: 82px;
		padding: 18px;
	}

	.sbh-service-card__title {
		font-size: 26px !important;
	}
}
html {
	scroll-padding-top: 120px;
}