.offer__item > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer__item > svg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 7;
    object-fit: cover;
}


.offer__item {
    position: relative;
    aspect-ratio: 1/1.1;
}

.offer__image-wrapper img {
    height: 45px;
    width: auto;
}
.offer__content-wrapper {
    position: relative;
    z-index: 5;
    height: calc(100% - 30px);
    padding: 20px;
}

.offer__item::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    opacity: 0.2;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.30) 83.65%), linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%) black 100% / cover no-repeat;
    z-index: 2;
    width: 100%;
    height: 100%;
}

.offer__icon-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: end;
}
.offer__icon-title-wrapper img {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

a.offer__item-link {
    text-decoration: none;
    color: white;
}
h3.offer__title {
    font-weight: 500;
    margin: 0;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
    font-size: var(--font-size-h6);
    text-align: end;
}
span.offer__button {
    padding: 7px 10px;
    display: block;
    border: 1px solid white;
    width: fit-content;
}
.offer__text-button-wrapper {
    display: grid;
    gap: 10px;
}
.offer__content-wrapper {
    position: relative;
    z-index: 5;
    height: calc(100% - 30px);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.offer__header-pagination-wrapper .global__header-wrapper {
    margin-bottom: 0;
}

.offer__header-pagination-wrapper {
    margin-bottom: var(--spacing-md);
}
.offer__header-pagination-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.offer.block--custom.main-section {
    background-color: var(--fade-background);
}
.offer__navigation > div {
    width: 45px;
    height: 45px;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.offer span.swiper-pagination-bullet::after {
	border-bottom-color: var(--fade-background);
}
.offer__navigation {
    display: flex;
    gap: 10px;
}
.offer__swiper-container {
    position: relative;
}
.offer__navigation {
    display: flex;
    gap: 10px;
    position: absolute;
    right: 10px;
    top: 50%;
    z-index: 5;
    transform: translateY(-50%);
}
.swiper-button-disabled {
    opacity: 0.3;
}

@media screen and (max-width: 1600px){
    .offer__item > svg {
        width: 70px;
        height: 70px;
    }
}

.offer__pagination {
    display: flex;
    row-gap: 10px;
    justify-content: end;
}
.offer-bottom-pagination {
    display: none;
}
@media screen and (max-width: 1100px){
.offer-bottom-pagination{
    display: block;
    margin-top: 10px;
    width: 100%;
}
.offer-bottom-pagination span.swiper-pagination-bullet {
    width: 100%;
    flex: 1;
}
.offer-top-pagination {
    display: none;
}
.offer__pagination_bottom {
    display: flex;
    gap: 5px;
}
}

.offer__pagination_bottom span.swiper-pagination-bullet {
    margin: 0 !important;
}

.offer-swiper-button-prev {
    display: none !important;
}

.offer__navigation > div:hover {
    cursor: pointer;
}

h3.faq__form-title {
    font-size: var(--font-size-h6);
    font-weight: 600;
    color: black;
    margin: 0;
}
.faq__form-description {
    font-size: var(--font-size-normal);
}
.faq__content-wrapper {
    display: grid;
    grid-template-columns: 4fr 6fr;
    gap: var(--spacing-md);
}
.faq__content-wrapper span.custom-checkbox {
    border-color: black;
}
.faq__content-wrapper .checkbox-label {
    color: black;
}
.block--faq {
    background: var(--fade-background);
}
.faq__content-wrapper .field-wrapper > label {
    display: none;
}
button.faq__question {
    width: 100%;
    display: flex;
    font-weight: 500;
    justify-content: space-between;
    align-items: center;
    border: none;
    cursor: pointer;
    text-align: left;
    border-radius: 0;
    background: transparent;
    line-height: 120%;
    padding: 15px 10px;
    font-size: var(--font-size-normal);
    color: black;
    transition-duration: 0.2s;
}
button.faq__question:hover {
    background: #1c82e80d;
}
.faq__answer {
    display: none;
}
span.faq__toggle-icon path {
    stroke-width: 1;
    stroke: var(--color);
}

.faq__item.faq__item--active .faq__answer {
    display: block;
    margin-top: 10px;
}
.faq__item.faq__item--active button.faq__question {
    background: var(--color);
    padding: 15px 10px;
    color: white;
    font-weight: 600;
}
.faq__item.faq__item--active button.faq__question svg path{
    stroke: white;
}
.faq__item.faq__item--active button.faq__question svg {
    transform: rotate(180deg);
}
.faq__answer-content {
    padding-left: 20px;
    color: black;
    margin-bottom: 20px;
}
.faq__answer-content strong {
    font-weight: 500;
}

@media screen and (max-width: 1100px){
    .faq__content-wrapper {
        display: flex;
        flex-direction: column-reverse;
        gap: 50px;
    }
}
.faq__question-content {
    display: flex;
    align-items: center;
    gap: 10px;
}
.faq__question-number {
    display: block;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color);
    color: white;
    flex: none;
}

.faq__item.faq__item--active .faq__question-number {
    background: white;
    color: var(--color);
}
.faq__form-container input {
    background: transparent;
}

.faq__form-container .wizard-container { 
    max-width: 100%;
}
.faq__form-container .step-indicator {
    color: var(--color);
}
.faq__form-container .step-connector {
    background: var(--color);
}
.faq__form-container button.btn.btn--su-se-uni-global.btn-next {
    background: transparent;
    color: var(--color);
    border: 1px solid var(--color);
}
.faq__form-container .btn--su-se-uni-global:first-child::after {
    background-color: var(--color);
}
.faq__form-container .field-error {
    color: var(--color);
}
.faq__form-container {
    margin-top: 20px;
}
.faq-contact-form__buttons-wrapper a {
    color: black !important;
    border-color: black !important;
}