/*
Theme Name: Beaver Builder Child Theme
Theme URI: https://www.wpbeaverbuilder.com
Version: 1.0
Description: An example child theme that can be used as a starting point for custom development.
Author: The Beaver Builder Team
Author URI: https://www.fastlinemedia.com
template: bb-theme
*/

/* Add your custom styles here...Remember to change the Version number above! */



.home-heading-blocks {
    .home-icon {
        max-height: 38px;
    }
}

.home-services {
    .home-icon {
        max-height: 38px;
    }

    .uabb-post-heading {
        background: #0a265c;
        color: #fff;
    }

    h3 {
        padding: 20px 0 !important;
    }

    .uabb-blog-posts-shadow {
        border-radius: 10px;
        overflow: hidden;
    }

    .uabb-post-thumbnail {
        aspect-ratio: 4/3;
        position: relative;
        overflow: hidden;

        a {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            display: block;
            background: black;
            cursor: pointer !important; /* Forceer de pointer */
            z-index: 10; /* Breng de link naar de voorgrond */

            img {
                object-fit: cover;
                width: 100%;
                height: 100%;
                cursor: pointer;
                pointer-events: none;
                transition: all 0.5s;
            }
        }
    }


    .uabb-blog-post-content:hover {
        img {
            transform: scale(1.1);
        }
    }
}

header {
    .adv-icon-link {
        margin-bottom: 0 !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.singular-hero {
    .fl-col-group {
        width: 100%;
    }

    .fl-row-content-wrap .fl-row-content {
        @media (max-width: 992px) {
            padding-top: 190px;
        }

        @media (min-width: 992px) {
            display: flex;
            align-items: center;
        }
    }
}

@media (max-width: 768px) {
    .fl-col-small:not(.fl-col-small-full-width) {
        max-width: none !important;
    }
}

.gform-theme--foundation .gform_fields {
    row-gap: 20px !important;
}