.form-group {
    position: relative;
    margin-bottom: 60px;
}
.form-group label {
    position: absolute;
    left: 28px;
    top: 12px;
    font-size: 1rem;
    color: var(--bs-gray-400);
    transition: top 0.3s ease, font-size 0.3s ease, color 0.3s ease;
    pointer-events: none;
    transform-origin: left center;
    letter-spacing: 1px;
}
.form-group.focused label,
.form-group.filled label {
    top: -6px;
    font-size: 12px;
    color: var(--bs-gray-600);
    background-color: #ffffff;
    padding: 0 4px;
    border-radius: 4px;
    left: 24px;
    letter-spacing: .5px;
}

.wpcf7-checkbox {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-bottom: 60px;
}
.wpcf7-checkbox .wpcf7-list-item {
    margin: 0 0 .75rem;
}
.wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label {
    margin-left: .5rem;
}

@media (min-width: 768px) {
    .double-col .wpcf7-checkbox {
        display: block;
        columns: 2;
    }
    .double-col .wpcf7-checkbox .wpcf7-list-item {
        display: block;
    }
}