/* @group Example
------------------------------------ */
.reusable-contact {
    padding: 8rem 0 16rem;
    --main-color: var(--white);
    --opposite-color: var(--black);
}
.reusable-contact :is(h2, h3, h4, h5, p, span, label, button, input, select) {
    color: var(--main-color);
}
.reusable-contact .title-xxl {
    font-weight: 400;
}
.reusable-contact .title .subtitle {
    font-weight: 500;
    margin: 0 0 2rem;
}
.reusable-contact .title .title-xxl {
    margin: 0 0 4rem;
}
.reusable-contact .text {
    display: flex;
}
.reusable-contact .text :is(.select-form, .caption-box) {
    flex: 0 1 100%;
}
.reusable-contact .text::after {
    content: '';
    height: 1px;
    width: 0;
    background-color: var(--main-color);
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    transition: width calc(var(--anim-delay) * 1.5);
    transition-delay: calc(var(--anim-delay) * .5);
}
.reusable-contact.animateActive .text::after {
    width: 100%;
}
.reusable-contact .text .select-form button {
    font-family: var(--termina-font);
    font-weight: 600;
    font-size: 1.6rem;
    line-height: 1.1em;
    letter-spacing: .01em;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}
.reusable-contact .text .select-form button span {
    width: 4.2rem;
    height: 4.2rem;
    display: inline-block;
    margin-right: 1rem;
    border-radius: 100%;
    border: 1px solid var(--main-color);
    position: relative;
}
.reusable-contact .text .select-form button span::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 100%;
    background-color: transparent;
    transition: all var(--anim-delay);
}
.reusable-contact .text .select-form button.active span::before {
    background-color: var(--main-color);
}
.reusable-contact .text .caption-box h4 {
    margin: 0 0 2rem;
}
.reusable-contact .forms {
    padding-top: 5rem;
    position: relative;
}
.reusable-contact .forms .form {
    display: none;
}
.reusable-contact .forms .form.active {
    display: block;
}
.reusable-contact .forms .form input:not([type="submit"]) {
    font-family: var(--termina-font);
    height: unset;
    width: 100%;
    font-size: 1.6rem;
    line-height: 1.5em;
    font-weight: 500;
    padding: 0 0 1.2rem;
    border-bottom: 1px solid var(--main-color);
    margin: 0 0 5rem;
}
.reusable-contact .forms .form input:not([type="submit"]) ::placeholder {
    text-transform: capitalize;
}
.reusable-contact .forms .form input:not([type="submit"]).wpcf7-not-valid {
    border-color: #dc3232;
}
.reusable-contact .forms .form input[type="submit"] {
    font-family: var(--termina-font);
    font-weight: 500;
    font-size: 1.5rem;
    line-height: normal;
    letter-spacing: .03em;
    text-transform: uppercase;
    padding: 1.5rem 2rem;
    border-radius: 3rem;
    border: 1px solid var(--main-color);
    cursor: pointer;
    transition: all var(--anim-delay);
}
.reusable-contact .forms .form .wpcf7-form-control-wrap {
    display: inline-block;
}
.reusable-contact .forms .form .wpcf7-spinner {
    display: none;
}
.reusable-contact .forms .form .wpcf7-response-output {
    position: static;
    color: var(--main-color);
    padding: 1rem 2rem;
}
.reusable-contact .forms .thank-you {
    position: absolute;
    width: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    top: 5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--anim-delay);
}
.reusable-contact .forms .form .wpcf7 {
    transition: opacity var(--anim-delay);
}
.reusable-contact .forms .form .wpcf7.hide {
    opacity: 0;
    pointer-events: none;
}
.reusable-contact .forms .thank-you.show {
    opacity: 1;
    pointer-events: all;
}
@media only screen
and (min-width : 961px) {
    .reusable-contact .title .title-xxl {
        margin: 0 0 5rem;
    }
    .reusable-contact .text {
        align-items: flex-end;
    }
    .reusable-contact .text :is(.select-form, .caption-box) {
        flex: 0 1 50%;
    }
    .reusable-contact .text .select-form {
        padding-bottom: 2.5rem;
    }
    .reusable-contact .text .select-form button {
        font-size: 1.8rem;
    }
    .reusable-contact .text .select-form button:first-of-type {
        margin-right: 5rem;
    }
    .reusable-contact .caption-box {
        padding-left: 9rem;
        padding-bottom: 12.5rem;
        position: relative;
    }
    .reusable-contact .caption-box::after {
        content: '';
        width: 1px;
        height: 0;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        background-color: var(--main-color);
        transition: height var(--anim-delay);
    }
    .reusable-contact.animateActive .caption-box::after {
        height: 100%;
    }
    .reusable-contact .forms .form .wpcf7-form-control-wrap  {
        width: 45%;
    }
    .reusable-contact .forms .form[data-form="submitEventForm"] .wpcf7-form-control-wrap[data-name="your-message"] {
        width: 100%;
    }
    .reusable-contact .forms .form .wpcf7-form-control-wrap:nth-child(even) {
        margin-right: 9.7%;
    }
    .reusable-contact .forms .form input[type="submit"] {
        float: right;
    }
    .reusable-contact .forms .form input[type="submit"]:hover {
        background-color: var(--main-color);
        color: var(--opposite-color);
    }
    .reusable-contact .forms .thank-you {
        text-align: center;
        max-width: 50%;
        margin: 0 auto;
        top: 8rem;
    }
}
@media only screen
and (min-width : 961px)
and (max-width : 1440px) {
}
@media only screen
and (min-width : 0)
and (max-width : 960px) {
    .reusable-contact .text {
        padding-bottom: 5rem;
        padding-left: 9.5rem;
        flex-direction: column;
    }
    .reusable-contact .text::before {
        content: '';
        width: 1px;
        height: 0;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 7.5rem;
        background-color: var(--main-color);
        transition: height var(--anim-delay);
    }
    .reusable-contact.animateActive .text::before {
        height: 100%;
    }
    .reusable-contact .text::after {
        left: 3rem;
    }
    .reusable-contact.animateActive .text::after {
        width: calc(100% - 6rem);
    }
    .reusable-contact .text .caption-box {
        order: -1;
        margin-bottom: 10rem;
    }
    .reusable-contact .text .select-form button:first-of-type {
        margin-bottom: 4rem;
    }
    .reusable-contact .forms .form input[type="submit"] {
        margin-bottom: 1rem;
    }
    .reusable-contact .forms .form .wpcf7-response-output {
        width: 100%;
    }
}

/* @end */
