.faq {
    margin: 24px 0 100px;
}
.faq .e-new-cont {
    display: flex;
    justify-content: space-between;
}
.faq .left-part {
    width: 57%;
}
.faq-title {
    font-weight: 700;
    font-size: 40px;
    line-height: 150%;
    color: #000;
}
.faq-item {
    padding: 20px 0;
    border-bottom: 1px solid #E8E8E8;
    font-size: 18px;
    line-height: 140%;
    color: var(--second-color);
}
.faq-question {
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}
.faq-answer p:last-child {
    margin-bottom: 0;
}
.faq .right-part {
    width: 32%;
}
.faq-btn-wrap {
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 40px 20px;
    background: #f4f4f4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}
.faq-btn-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 150%;
    color: #000;
    margin-bottom: 10px;
    text-align: center;
}
.faq-btn-wrap>a {
    height: 59px;
    width: 213px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background-color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: .2s;
    -moz-transition: .2s;
    -ms-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
}
.faq-btn-wrap>a:hover {
    opacity: .8;
}
.faq-btn-wrap .jivo {
    padding-bottom: 5px;
}
.faq-btn-wrap .wa {
    background-color: #25d366;
    color: #fff;
    font-size: 30px;
}
.faq-btn-wrap .mail {
    font-weight: 700;
    font-size: 18px;
    line-height: 140%;
    color: var(--main-color);
}
@media screen and (max-width: 1279px) {
    .faq .left-part {
        width: 64%;
    }
}
@media screen and (max-width: 1100px) {
    .faq-title {
        font-size: 28px;
        line-height: initial;
    }
    .faq-answer {
        font-size: 16px;
    }
    .faq .right-part {
        width: 330px;
    }
    .faq .left-part {
        width: calc(100% - 370px);
    }
    .faq {
        margin-bottom: 50px;
    }
}
@media screen and (max-width: 900px) {
    .faq {
        margin-top: 53px;
    }
    .faq .e-new-cont {
        flex-direction: column;
    }
    .faq .left-part {
        width: 100%;
    }
    .faq .right-part {
        width: 100%;
        margin-top: 50px;
    }
    .faq-item:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }
    .faq-title {
        margin-bottom: 10px;
    }
}