.image-header-container {
    margin: auto;
    width: 100%;
    max-width: 1920px;
    height: 500px;
    position: relative;
}

.image-header-container img {
    width: 100%;
    max-width: 1920px;
    height: 500px;
    object-fit: none;
    transform: scaleX(-1);
}

.image-header-container .gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
    background: linear-gradient(4.58deg, rgba(0, 0, 0, 0.3) -111.78%, #605F41 117.14%);
    z-index: 2;
}

.text-header-image {
    position: absolute;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	top: 0%;
	color: var(--zg-color-white);
	z-index: 3;
    display: flex;
    align-items: center;
    font-size: 7.2rem;
    height: 500px;
}

.block-faqs-container {
    width: 100%;
    max-width: var(--zg-standard-max-width);
    background-color: var(--zg-color-white);
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0 20px 30px 20px;
}

.block-faqs-container .block-faqs-contain {
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-weight: var(--zg-font-weight-bold);
}

.block-faqs-container .block-faqs-contain .title_blockquestion {
    margin-bottom: 25px;
    font-weight: var(--zg-color-primary);
    font-size: var(--zg-font-size-h2);
    line-height: 100%;
    display: flex;
}

.block-faqs-container .block-faqs-contain .title_blockquestion::after {
    content: '';
    position: absolute;
    width: 74.11px;
    height: 4px;
    background-color: var(--zg-color-primary);
    margin-top: 35px;
}

.block-faqs-container .block-faqs-contain .faq-container {
    width: var(--zg-standard-width);
    height: auto;
    border: 1px solid var(--zg-color-primary);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.block-faqs-container .block-faqs-contain .faq-container .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.block-faqs-container .block-faqs-contain .faq-container.open {
    border: 1px solid var(--zg-color-hover-primary);
}

.block-faqs-container .block-faqs-contain .faq-container .question {
    font-weight: var(--zg-font-weight-bold);
    font-size: var(--zg-font-size-body-large);
    color: var(--zg-color-primary);
}

.block-faqs-container .block-faqs-contain .faq-container.open .question,
.block-faqs-container .block-faqs-contain .faq-container.open .question-icon .material-icons.add {
    color: var(--zg-color-hover-primary);
}

.block-faqs-container .block-faqs-contain .faq-container .faq-answer {
    display: none;
    overflow: hidden;
    font-weight: var(--zg-font-weight-regular);
    font-size: var(--zg-font-size-body-large);
    line-height: 140%;
    color: var(--zg-color-text-secondary);
    font-size: 16px;
}

.faq-container:not(.faq-answer.open) .question-icon {
    transform: rotate(360deg);
    transition: transform 0.2s ease-out;
}

.faq-container:has(.faq-answer.open) .question-icon {
    transform: rotate(180deg);
    transition: transform 0.2s ease-out;
}

@media only screen and (max-width: 767px) {
    .block-faqs-container {
        width: var(--zg-tab-width);
    }
    
}


@media only screen and (max-width: 425px) {
    .image-header-container {
        margin: auto;
        width: 100%;
        height: 224px;
        position: relative;
    }
    
    .image-header-container img {
        width: 100%;
        max-width: 100%;
        height: 224px;
        object-fit: cover;
        transform: scaleX(-1);
    }
    
    .image-header-container .gradient {
        height: 224px;
    }
    
    .text-header-image {
        font-size: var(--zg-font-size-h1);
        height: 224px;
    }

    .block-faqs-container {
        width: var(--zg-mobile-width-large);
        font-weight: var(--zg-font-weight-bold);
        padding: 30px 10px 50px 10px;
    }

    .block-faqs-container .block-faqs-contain,
    .block-faqs-container .block-faqs-contain .faq-container {
        width: 100%;
    }

    .block-faqs-container .block-faqs-contain .title_blockquestion {
        font-size: var(--zg-font-size-h3);
    }
}