/* 
Theme Name: svd
Theme URI: https://github.com/elementor/hello-theme/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.1
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/*
    Add your custom styles here
*/

/* Make Tiles clickable on pages such as https://wordpress-1621044-6395559.cloudwaysapps.com/uw-werkveld/ */
.clickable-heading {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.clickable-heading a::before {
    content:'';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}


/* Make columns perfect squares in inner sections with class name square-columns-section */
/* make columns perfect squares */
.square-columns-section .elementor-column:before {
    content: "";
    padding-bottom: 100%;
}
/* column width on desktop and tablet */
.square-columns-section .elementor-column.elementor-column {
    width: calc(20% - 16px)
}

/* spacing between columns */
.square-columns-section .elementor-container {
    gap: 20px;
    flex-wrap: wrap;
}

.square-columns-4-width .elementor-column.elementor-column {
    width: calc(25% - 15px);
}

@media (max-width:767px) {
    .square-columns-section .elementor-column.elementor-column {
        width: calc(50% - 5px)
    }

    /* spacing between columns on mobile */
    .square-columns-section .elementor-container {
        gap: 10px;
    }
}