.contact-form form {
    border-radius: 16px;
    border: 1px solid #233d20;
    background: #fefbef;
    box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14);
    padding: 40px;
    width: 80%;
    margin: 60px auto;
}
.contact-form .headline-1 {
    font-size: 26px;
    margin-bottom: 10px;
}
.contact-form .headline-1 sup {
    top: -9px;
    left: -5px;
}
.contact-form_desc {
    text-align: center;
}

/* BEGIN s-faq-1 */
.s-faq-1 .s-box {
    width: 80%;
    margin: 60px auto;
}
.s-faq-1 .item {
    margin-bottom: 10px;
    background-color: #fcf8df;
    padding: 16px;
    border-radius: 16px;
}
.s-faq-1 .item-title {
    font-size: 14px;
    cursor: pointer;
    text-transform: uppercase;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 700;
}
.s-faq-1 .item-title > i:last-child {
    position: relative;
    -webkit-transition: all 150ms linear;
    -o-transition: all 150ms linear;
    transition: all 150ms linear;
}
.s-faq-1 .item-title > span {
    width: 100%;
    padding-right: 15px;
}
.s-faq-1 .item-title:hover {
    color: var(--color-secondary);
}
.s-faq-1 .item-body {
    display: none;
    overflow: hidden;
    margin-top: 10px;
    font-size: 16px;
}
.s-faq-1 .item.is-active .item-title {
    color: var(--color-secondary);
}
.s-faq-1 .item.is-active .item-title > i:last-child {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

/* END s-faq-1 */
@media (max-width: 575px) {
    .contact-form form {
        width: 100%;
        padding: 20px;
        margin: 30px 0;
    }
    .s-faq-1 .s-box {
        width: 100%;
        margin: 30px 0;
    }
}
