.faq-block h2 {
    display: flex;
    flex-direction: column;
    font-size: 30px;
    font-weight: 500;
    color: #484949;
    text-align: center;
}
.faq-block h2:after {
    content: '';
    width: 50px;
    height: 2px;
    background-color: #bfcbb7;
    margin: 20px auto;
}
.faq-block .faq-wrapper .faq-item {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border-bottom: 1px solid #d5d8dc;
    padding: 15px 20px;
}
.faq-block .faq-wrapper .faq-item .faq-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    width: 100%;
    font-size: 15px;
    line-height: 100%;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #484949;
    padding: 15px 20px;
    cursor: pointer;
}
.faq-block .faq-wrapper .faq-item .faq-title::after {
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    transform: rotate(180deg);
    transition: .2s ease-out;
    flex-shrink: 0;
    background: transparent url('../../../assets/img/plus.svg') center/contain no-repeat;
}
.faq-block .faq-wrapper .faq-item.open .faq-title::after {
    background: transparent url('../../../assets/img/minus.svg') center/contain no-repeat;
    transform: rotate(0deg);
}
.faq-block .faq-answer-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: .2s ease-out;
}
.faq-block .faq-answer {
    padding: 20px;
}
.faq-block .faq-answer * {
    color: #7A7A7A;
    font-size: 15px;
    font-weight: 400;
    line-height: 140%;
}
.faq-block .faq-answer ul li::marker {
    color: #bfcbb7;
}
.faq-block .faq-answer a {
    color: #242424;
    transition: .1s ease-out;
}
.faq-block .faq-answer a:hover {
    color: #ff4545;
}
.faq-block .faq-btn {
    display: block;
    width: fit-content;
    background-color: #000000;
    padding: 25px 25px 25px 25px;
    border-radius: 3px;
    outline: none;
    border: none;
    margin: 50px auto 0;
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    color: #FFFFFF;
}

.modal {
    visibility: hidden;
    opacity: 0;
    transform: translateX(100%);

    position: fixed;
    width: 100%;
    height: 100%;
    background-color: transparent;
    top: 0;
    right: 0;
    display: flex;
    z-index: 101;
    justify-content: end;
    transition: .2s linear, transform 0.4s ease-in-out;
}
.modal .wpcf7-spinner {
    display: none;
}
.modal .wpcf7-response-output {
    display: none;
}
.modal.open {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}
.modal .modal-holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 700px;
    width: 100%;
    background-color: #FFFFFF;
    padding: 7%;
}
.modal .close-modal svg {

    width: 35px;
    height: 35px;
}
.modal .close-modal {
    position: absolute;
    top: 35px;
    right: 35px;
    width: 35px;
    height: 35px;
    cursor: pointer;
}
.modal .modal-holder .modal-title {
    color: #484949;
    font-size: 32px;
    font-weight: 500;
    line-height: 1;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 50px;
}
.modal .modal-holder .wpcf7 {
    width: 100%;
}
.modal .modal-holder form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 520px;
    width: 100%;
}
.modal .modal-holder form .input-holder {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}
.modal .modal-holder form .input-holder label {
    position: absolute;
    left: 15px;
    top: 0px;
    bottom: 0px;
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #484949;
    font-weight: 400;
    transition: all 0.3s ease;
    pointer-events: none;
    margin-bottom: 10px;
}
.modal .modal-holder form .input-holder input {
    width: 100%;
    min-height: 30px;
    padding: 5px 0px;
    border: none;
    font-size: 18px;
    color: #444;
    outline: none;
    font-weight: 400;
    border-bottom: solid 1px #bfcbb7;
    transition: .1s ease-out;
}
.modal .modal-holder form .input-holder.error {
    border-bottom: 1px solid #ff4545;
}
.modal .modal-holder form .input-holder.error label {
    color: #ff4545;
}
.modal .modal-holder form .input-holder textarea {
    width: 100%;
    min-height: 30px;
    padding: 5px 0px;
    border: none;
    font-size: 18px;
    color: #444;
    outline: none;
    font-weight: 400;
    border-bottom: solid 1px #bfcbb7;
    height: 50px;
    resize: none;
}
.modal .success-form {
    display: none;
    color: #484949;
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
    font-family: "Montserrat", sans-serif;
}

@media screen and (max-width: 582px) {
    .faq-block .faq-wrapper .faq-item {
        padding: 20px 0;
    }
    .faq-block .faq-wrapper .faq-item .faq-title {
        padding: 15px 0;
    }
    .faq-block .faq-answer {
        padding: 20px 0;
    }
    .modal .modal-holder .modal-title {
        font-size: 24px;
    }
    .modal .close-modal {
        width: 25px;
        height: 25px;
    }
}