body{
	background-color: #FFFFFF;
	margin: 0;
}

.clear:after,
.clear:before{
    display:table;
    content:" ";
}
.clear:after{
    clear: both;
}

a {
    /*background-color: #ecf0f1;*/
    background-color: #eaeaea;
    box-shadow: 0 2px 1px rgba(0, 0, 0, 0.2);
    color: #2980b9;
    display: block;
    font-weight: bold;
    /*margin-bottom: 10px;*/
    padding: 15px 0;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
}

a:hover{
    color: #FFFFFF;
}

.col-4{
    float: left;
    margin: 10px 0;
    width: 100%;
}
.col-4:nth-child(3n){
    margin-right: 0;
}

/* Rectangle In - Out */
.rectangle-in {
    background-color: #2098d1 !important;
    position: relative;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition: color 400ms;
    transition: color 400ms;
}

.rectangle-in:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ecf0f1;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    transition: 300ms ease-out;
}

.rectangle-in:hover:before {
    -webkit-transform: scale(0);
    transform: scale(0);
}

.rectangle-out {
    position: relative;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition: color 400ms;
    transition: color 400ms;
}

.rectangle-out:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #2098d1;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition: 400ms ease-out;
    transition: 400ms ease-out;
}

.rectangle-out:hover:before {
    -webkit-transform: scale(1);
    transform: scale(1);
}