.block-with-tabs {
	margin-top: 3.125rem;
	margin-bottom: 7.813rem;
}

.tabs-block__title {
	text-align: center;
	width: 100%;
    max-width: 56.25rem;
    margin: 0 auto 1.875rem;
}

.tabs-block__subtitle {
	text-align: center;
	width: 100%;
    max-width: 50.438rem;
    margin: 0 auto;
}

.tabs-block__title span {
	color: var(--c-brand-orange);
}

.tabs-navigation {
	width: 100%;
	display: flex;
	align-items: stretch;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1.25rem;
	margin-top: 3.125rem;
	margin-bottom: 1.875rem;
}

.tabs-navigation__tab {
	border-radius: 1.563rem;
	padding: 1.25rem 1.875rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 0.063rem solid var(--c-brand-blue);
	background: var(--c-white);
	color: var(--c-brand-blue);
	outline: none;
	box-shadow: none;
	font-weight: 600;
	font-size: 1.25rem;
	line-height: 130%;
	letter-spacing: -0.6px;
	transition: var(--transition);
	cursor: pointer;
}

.tabs-navigation__tab.active {
	border: 0.063rem solid var(--c-brand-blue);
	background: var(--c-brand-blue);
	color: var(--c-white);
}

.tabs-content {
	width: 100%;
}

.tabs-content__tab {
	width: 100%;
	display: none;
}

.tabs-content__tab.active {
	display: block;
}

.tabs-content__cards {
	width: 100%;
	display: flex;
	align-items: stretch;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1.313rem;
}

.tabs-content__card {
	width: calc(33.33% - 0.875rem);
	border-radius: 1.563rem;
	padding: 2.5rem 1.25rem;
	background-color: var(--c-light-grey-2);
}

.tabs-content__card:nth-child(2n) {
	margin-bottom: 5.625rem;
	background-color: var(--c-light-grey);
}

.tabs-content__icon-wrapper {
	margin-bottom: 1.875rem;
	width: 4.375rem;
	height: 4.375rem;
	border-radius: 1.125rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--c-light-grey);
}
.tabs-content__card:nth-child(2n) .tabs-content__icon-wrapper {
	background-color: var(--c-light-2);
}

.tabs-content__item-img {
	width: 2.75rem;
	height: 2.75rem;
	object-fit: contain;
	object-position: center;
}

.tabs-content__title {
	margin-bottom: 1rem;
}

.tabs-content__title p {

}

.tabs-content__text ul {
	margin-bottom: 0;
	list-style: disc;
    padding-left: 1.25rem;
}

.tabs-content__text li {
	margin-bottom: 0.625rem;
	list-style: disc;
	max-width: 95%;
}

.tabs-content__button {
	width: calc(33.33% - 0.875rem);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: -4.375rem auto 0;
	position: relative;
    z-index: 1;
}

.tabs-content__tab {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    inset: 0;
    transition: opacity .35s ease;
}

.tabs-content {
    position: relative;
}

.tabs-content__tab.active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
}


@media screen and (max-width: 1023.98px) {
	.block-with-tabs {
		margin: 1.563rem 0 6.25rem;
	}

	.tabs-block__title {
		margin: 0 auto 1.875rem;
		max-width: 18.125rem;
	}	

	.tabs-block__subtitle {
		max-width: 19rem;
	}

	.tabs-navigation {
		gap: 0.938rem;
		margin-top: 1.875rem;
		margin-bottom: 1.875rem;
	}

	.tabs-navigation__tab {
		border-radius: 0.938rem;
		padding: 0.813rem 1.25rem;
		font-size: 0.875rem;
	}

	.tabs-content__cards {
		gap: 0.625rem;		
	}

	.tabs-content__card {
		width: 100%;
		border-radius: 0.938rem;
		padding: 1.875rem;
		order: 2;
	}

	.tabs-content__card:nth-child(2n) {
		height: auto;
		order: 1;
		margin-bottom: 0;
	}

	.tabs-content__card:nth-child(3n) {
		background-color: var(--c-light-grey);
		order: 3;
	}

	.tabs-content__icon-wrapper {
		margin-bottom: 0.938rem;
		width: 3.5rem;
		height: 3.5rem;
		border-radius: 0.938rem;
	}
	.tabs-content__card:nth-child(3n) .tabs-content__icon-wrapper {
		background-color: var(--c-light-2);
	}

	.tabs-content__item-img {
		width: 1.875rem;
		height: 1.875rem;
	}

	.tabs-content__title {
		margin-bottom: 1.25rem;
	}

	.tabs-content__title p {
		font-size: 1.5rem;
		font-weight: 700;
	}	

	.tabs-content__text li {
		margin-bottom: 0.313rem;
		max-width: 100%;
		font-size: 0.875rem;
	}

	.tabs-content__button {
		width: 100%;
		margin: 1.875rem auto 0;
	}

	.tabs-content__text p br,
	.tabs-content__text li br {
		display: none;
	}

	.tabs-content__text p,
	.tabs-content__text ul {
		max-width: 16rem;
	}

	.tabs-content__text ul {
		padding-left: 1rem;	
	}	
}