#home_tiles{
    opacity: 0;
    -webkit-transition:opacity 0.3s ease-in;
    -o-transition:opacity 0.3s ease-in;
    transition:opacity 0.3s ease-in;
}
#home_tiles.load {
    opacity: 1;
}
#home_tiles h2 {
    color:#008dd2;
    font-size: 21px;
    margin-left: -5px;
    margin-top: 0;
    display: none;
}
#home_tiles .home_tile {
    padding-left: 10px;
    padding-right: 10px;
}
#home_tiles .home_tile a {
    border:1px solid #e9ebee;
    display: block;
    margin: 0px 0 20px;
    min-height:110px;
    outline:none;
    position: absolute;
    top:0;
    left:0;
    width:100%;
    transition:all 0.5s ease; 
}
#home_tiles .home_tile:hover a {
    box-shadow: 6px 6px 5px rgba(0, 0, 0, 0.3);
    opacity: 0.8;
}
.home_tile span {
    background-color: rgba(230, 230, 230, 0.6);
    bottom: 0;
    color: #000;
    float: none;
    font-size: 12pt;
    font-weight: normal;
    left: 0;
    line-height: 1em;
    margin: 0;
    padding: 13px;
    position: absolute;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
}
.home_tile img {
    aspect-ratio: 1;
    display: block;
    object-fit: cover;
    width: 100%;
}

@media only screen and (max-width : 767px) {
    #home_tiles {
        margin-left: 5px;
        margin-right: 5px;
    }
    #home_tiles .home_tile {
        padding-left: 2px;
        padding-right: 2px;
    }
    #home_tiles .home_tile a.home_tile_second_image {
        left: 2px;
        margin-right: 2px;
    }

    #home_tiles .home_tile h3 {
        font-size: 12px;
        right: 5px;
    }
    #home_tiles .home_tile span {
        font-size: 10px;
        padding: 6px;
        right: 5px;
    }
}
/*home tiles second image positioning*/

#home_tiles .home_tile a.home_tile_second_image {
    opacity: 0.01; /* fix iOS requiring to tap twice */
}
#home_tiles .home_tile:hover .home_tile_second_image {
    opacity: 1;
}

/* Home layout content top "Huge selection of shoelaces" */
p.home-content-top-short {
    border-bottom: 1px #e9ebee solid;
    color: #008DD2;
    font-size: 1.5em;
    padding-bottom: 10px;
    text-align: center;
    text-transform: uppercase;
    margin: 0px -4px 20px;
}
h1.home-content-top-short {
    border-top: 1px #e9ebee solid;
    color: #443e32;
    font-size: 1.5em;
    margin-bottom: 0px;
    margin: 0px -4px 0;
    padding-top: 10px;
    text-align: center;
    text-transform: uppercase;
}
@media only screen and (max-width : 767px) {
    h1.home-content-top-short {
        margin: 0px -8px 0;
        font-size: 1.4em;
    }
    p.home-content-top-short {
        margin: 0px -8px 20px;
        font-size: 1.4em;
    }
}
.tile-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 100%;
    margin-bottom: 20px;
}
#home_tiles .home_tile a:hover img {
    transform: scale(1.1,1.1);
    transition: 1s;
}
#home_tiles .home_tile a img {
    transition: 1s;
}