.acf-fields {
    display: flex;
    flex-wrap: wrap;
    row-gap: 36px;
    justify-content: space-between;
}

.acf-field {
    position: relative;
    width: 100%;
}


textarea,
input {
    transition: 0.4s;
    color: var(--black);
    border-radius: 12px;
    width: 100%;
    padding: 1rem;
    font-family: var(--main);
    background: white;
    border: 1px solid white;
}

input {
    min-height: 56px;
}

textarea:focus,
input:focus {
    border-color: var(--color1);
    outline: none;
}

textarea::placeholder,
input::placeholder {
    font-size: 12px;
    color: var(--placeholder);
}

.acf-label {
    position: absolute;
    top: -1rem;
    right: 1rem;
    font-size: 14px;
    background: white;
    padding-inline: 8px;
    font-family: var(--main);
}

.text-cform .acf-input {
    display: flex;
}

.acf-form-submit .c-btn {
    justify-content: center;
}

.comment-notes {
    color: var(--gray6) !important;
    width: 100%;
}

.comment-notes>* {
    font-size: 14px;
}

@media only screen and (max-width: 768px) {
    .acf-field {
        width: 100% !important;
    }
}