/*
Theme Name: OMB
*/

.contact_form {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background: #f5f5f5;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact_form__title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.contact_form__title span {
    flex: 1;
    height: 1px;
    background: #ccc;
}

.contact_form__title h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.swiper-pagination {
    display: none;
}

.contact_form__group {
    margin-bottom: 20px;
}

.contact_form__input,
.contact_form__textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

.contact_form__textarea {
    min-height: 140px;
    resize: none;
}

.contact_form__input:focus,
.contact_form__textarea:focus {
    border-color: #e5c133;
}

.contact_form__group--submit {
    text-align: center;
    margin-top: 10px;
}

.contact_form__btn {
    background: #e5c133;
    border: none;
    padding: 14px 40px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.contact_form__btn:hover {
    background: #d4b02a;
}

.contact_form__group--submit {
    margin: 0 !important;
}

.wpcf7-spinner {
    display: none;
}

#breadcrumbs {
    margin-top: 20px;
}

#breadcrumbs a {
    text-decoration: none;
}