/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 14/06/2016, 4:50:31 PM
    Author     : duncanc
*/

/*-----------------------------*/
/* @feature-tile-item */
/*-----------------------------*/
.feature-tile-wrapper {
    position: relative;
    z-index: 1;
    background-color: #000;
}
.feature-tile-wrapper>.container-fluid {
    padding: 0;
}



.feature-tile-item {
    position: relative;
    padding: 0;


}
.feature-tile-background {
    display: block;
    padding-bottom: 100%;
    background-position: center center;
    -moz-background-size: cover;
    -ms-background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}


.feature-tile-background:hover .feature-tile-content {
    background-color: #285c82;
    /*background-color: rgba(236,0,140,0.75);*/
    -webkit-transition: border .25s linear, color .25s linear, background-color .25s linear;
    transition: border .25s linear, color .25s linear, background-color .25s linear;
}

.feature-tile-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;

    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -ms-flex-wrap: wrap;
    -ms-flex-direction: column;
    -ms-flex-align: center;
    -ms-flex-pack: center;

    -ms-flex-flow: column wrap;
    -moz-flex-flow: column wrap;
    -webkit-flex-flow: column wrap;
    flex-flow: column wrap;

    -o-align-items: center;
    -ms-align-items: center;
    -moz-align-items: center;
    -webkit-align-items: center;
    align-items: center;



    -o-align-content: center;
    -ms-align-content: center;
    -moz-align-content: center;
    -webkit-align-content: center;
    align-content: center;

    -o-justify-content: center;
    -ms-justify-content: center;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;


}

h4.feature-tile-title {
    font-size: 1.2em;
    text-shadow: 0 0 3px rgba(0,0,0,0.5);
    width: 100%;
    max-width: 100%;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    padding: 1ex 15px;
}