/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */



.gallery-icon {position: relative;
/* width: 285px; Adjust the width as needed */
/* height: 285px; Adjust the height as needed */
border: none; /* Remove any default borders */
}


.gallery-icon::before {
content: "";
position: absolute;
top: 0;
left: 25%; /* (100% - 50%) / 2 to center the border */
width: 50%;
height: 0;
border-top: 2px solid #0e478a; /* Adjust the border size and color as needed */
}

.gallery-icon::after {
content: "";
position: absolute;
top: 25%; /* (100% - 50%) / 2 to center the border */
left: 0;
width: 0;
height: 50%;
border-left: 2px solid #0e478a; /* Adjust the border size and color as needed */
}