
	.heroOffer .__content {
		margin-top:104px;
		top:104px;
		height: max-content;
	}

	.heroOffer .__backimg {
		top:-104px;
	}

	.heroOffer .__back {
		z-index: 0;
		transform: scaleX(-1);
		opacity:.1;
	}

	@media only screen and (max-width: 992px) {
		.heroOffer .__content {
			margin-top:0;
			top:0;
			position:relative !important;
		}
	}

	/*--- ACCORDION ---*/

	.heroOffer .accordion-wrapper {
		input.acc-check {
			position: absolute !important;
			opacity: 0 !important;
			z-index: -1 !important;
		}
		padding-bottom: 15px;
		margin-bottom: 15px;
	}
	.heroOffer .accordion-wrapper:last-child {
		border-bottom: none;
	}
	.heroOffer .accordion {
		width: 100%;
		overflow: hidden;
		border-bottom: 1px solid rgb(196, 204, 237,0.2);
		transition: background-color 0.3s ease;
	}
	.heroOffer .accordion:last-child {
		margin-bottom: 0;
		border-bottom: none;
	}
	.heroOffer .accordion-label {
		padding:16px 32px;
		margin-bottom: 0 !important;
		font-weight: 700;
		cursor: pointer;
		font-family: var(--header);
		font-size: 18px;
		color: #FFF;
		display: flex;
		justify-content: space-between;
	}
	.heroOffer .accordion-label:hover {
	}
	.heroOffer .accordion-label::after {
		content: url('/wp-content/themes/zimmerman/assets/img/arrow-down.svg');
		text-align: right;
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
		padding-left: 24px;
		float: right;
	}
	.heroOffer .accordion-content {
		max-height: 0;
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
		padding:0 32px;
	}
	.heroOffer .accordion-content p {
		margin: 0;
		color: #FFF;
		font-size: 16px;
	}
	.heroOffer .accordion-content p strong {
		display: block;
		margin: 24px 0 16px;
	}
	.heroOffer .accordion-content ul {
		list-style: none;
		color: #FFF;
		padding-left: 0;
	}
	.heroOffer .accordion-content ul li {
		list-style: none;
		color: #FFF;
		border-bottom: 1px solid rgb(196, 204, 237,0.2);
		padding-bottom: 15px;
		margin-bottom: 15px;
	}
	.heroOffer .accordion-content ul li:last-child {
		border-bottom: 0px;
	}
	.heroOffer input:checked + .accordion-label {
	}
	.heroOffer input:checked + .accordion-label::after {
		content: url('/wp-content/themes/zimmerman/assets/img/arrow-down.svg');
		transform: scaleY(-1);
	}
	.heroOffer input:checked ~ .accordion-content {
		max-height: 1080px;
		padding: 8px 0 20px 0px;
	}

	/* Zmiana tła rozwiniętej sekcji */
	.heroOffer input.acc-check:checked ~ .accordion-label {
		background-color: rgba(255, 255, 255, 0.05); /* Dodaj dowolny kolor tła */
		padding: 16px 32px;
		transition: all 0.3s ease;
		border-bottom: 1px solid rgb(196, 204, 237,0.2);
	}

	/* Zmiana tła rozwiniętej sekcji */
	.heroOffer input.acc-check:checked ~ .accordion-content {
		background-color: rgba(255, 255, 255, 0.05); /* Dodaj dowolny kolor tła */
		padding:32px;
		transition: all 0.3s ease;
	}

