.uk-border-top {
    border-top-style: solid;
    border-color: #e5e5e5;
    border-width: 1px
}

.uk-sentence-case {
    text-transform: lowercase !important;
    /* Make entire text lowercase */
    display: inline-block;
    /* Ensure the pseudo-element works properly */
}

.uk-sentence-case::first-letter {
    text-transform: uppercase !important;
    /* Capitalize the first letter */
}

@media only screen and (min-width: 960px) {
    #contact-form .acf-radio-list {
        column-count: 3;
        column-gap: 100px;
    }
}

@media only screen and (min-width: 640px) and (max-width: 959px) {
    #contact-form .acf-radio-list {
        column-count: 2;
        column-gap: 100px;
    }
}

@media only screen and (max-width: 640px) {
    #contact-form .uk-button {
        width: 100% !important;
    }
}

@media only screen and (max-width: 640px) {
    .uk-button-mobile {
        width: 100% !important;
    }
}

.hidden {
    visibility: hidden !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease-in-out !important; /* Smooth transition for when the element is revealed */
}

.lazy-load {
    visibility: hidden !important; /* These elements are initially hidden and will be revealed lazily */
    opacity: 0 !important;
    transition: opacity 0.3s ease-in-out !important; /* Same transition for lazy loaded items */
}

.uk-sentence-truncate {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}
