.section-form .s-title {
    color: #494949;
    padding-bottom: 1rem;
    margin-bottom: clamp(40px, 5vw, 72px);
    position: relative;
    font-family: var(--main);
    font-size: clamp(12px, 2vw, 24px);
    width: max-content;
}
.section-form .s-title:before {
    content: "";
    width: 100%;
    height: 1px;
    background: #C2C2C2;
    position: absolute;
    bottom: 0;
}
.webinja-contact-form textarea,
.webinja-contact-form input {
    border: 1px solid #aeaeae;
}
.webinja-contact-form label {
    color: #AEAEAE;
}
@media only screen and (min-width: 768px) {
    .webinja-contact-form .acf-fields {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        row-gap: 24px;
        column-gap: 40px;
        & .acf-field:nth-child(1) {
            grid-area: 1 / 1 / 2 / 2;
        }
        & .acf-field:nth-child(2) {
            grid-area: 2 / 1 / 3 / 2;
        }
        & .acf-field:nth-child(3) {
            grid-area: 3 / 1 / 4 / 2;
        }
        & .acf-field:nth-child(4) {
            grid-area: 1 / 2 / 4 / 3;
        }
    }
}

