﻿.tiles-section {
    background-color: #fff;
    padding: 1.5em 2em 3em;
    box-shadow: 0 0 30px 0 rgba(0,0,0,.1);
    font-family: Roboto;
}

.tiles-title {
    text-align: center;
    color: #5c5c5c;
    margin: 0em auto 2em;
}

.tiles-title h4 {
    font-size: 2.5em;
    margin: 0 0 3px;
    font-weight: 400;
    font-family: 'Roboto',sans-serif !important;
}

.tiles-title p {
    font-size: 1em;
}

.tiles-body {
    padding: 15px;
    text-align: center;
}

.tile {
    display: inline-block;
    font-weight: 100;
    margin: 10px 40px;
    text-transform: uppercase;
    background-color: rgba(255,255,255,.54);
    border-radius: 0;
    text-align: center;
}


.tile .icon .fa {
    font-size: calc(5em + 1vw);

}

.tile .text {
    font-weight: bold;
    font-size: calc(1em + .3vw);
}


.card:hover {
    box-shadow: 5px 0 20px rgba(0,0,0, .2);
}

.card-header {
    padding: .50rem 1.25rem;
    background-color: #3F729B;
    color: white;
}

.card{
    margin-bottom:15px;
}

.non-shadow {
    box-shadow: none;
}

/* Bob */
@-webkit-keyframes hvr-bob {
    0% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }

    50% {
        -webkit-transform: translateY(-4px);
        transform: translateY(-4px);
    }

    100% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }
}

@keyframes hvr-bob {
    0% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }

    50% {
        -webkit-transform: translateY(-4px);
        transform: translateY(-4px);
    }

    100% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }
}

@-webkit-keyframes hvr-bob-float {
    100% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }
}

@keyframes hvr-bob-float {
    100% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }
}

.attachment-small .hvr-bob:hover {
    animation: none;
}

.hvr-bob:hover, .hvr-bob:focus, .hvr-bob:active {
    -webkit-animation-name: hvr-bob-float, hvr-bob;
    animation-name: hvr-bob-float, hvr-bob;
    -webkit-animation-duration: .3s, 1.5s;
    animation-duration: .3s, 1.5s;
    -webkit-animation-delay: 0s, .3s;
    animation-delay: 0s, .3s;
    -webkit-animation-timing-function: ease-out, ease-in-out;
    animation-timing-function: ease-out, ease-in-out;
    -webkit-animation-iteration-count: 1, infinite;
    animation-iteration-count: 1, infinite;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-direction: normal, alternate;
    animation-direction: normal, alternate;
}







