body{
    background-color: #353535;
}
header{
    padding: 15px 0px;
}
header img{
    width: 80%;
    display: block;
    margin: 0px auto;
}
.front-text-marquee{
    color: white;
    background-color: #c104041f;
    margin: 10px 0px;
}
.main-home-select{
    margin: 0px;
    padding: 0px;
    position: relative;
}
.main-home-select > li{
    display: inline-block;
    margin: 0px;
    padding: 0px;
    width: 32.33%;
    float: left;
    padding: 0px 0px;
    transform: skewX(-4deg) !important;
    text-align: center;
    transition: all 0.3s ease-in-out;
    min-height: 355px;
    

}
.main-home-select > li:nth-child(1){
    background-color: #e5e5e5;
    margin-right: 15px;
    background-size: 100% 200%;
    background-image: linear-gradient(to bottom, #e5e5e5 50%, #c10404 50%);
    transition: background-position 1s;
    -webkit-animation-fill-mode: inherit !important;
    animation-fill-mode: inherit !important; 

}
.no-fill{
    -webkit-animation-fill-mode: inherit !important;
    animation-fill-mode: inherit !important;  
}
.main-home-select > li:nth-child(1):hover{
    background-position: 0 -100%;

}
.main-home-select > li:nth-child(2){
    background-color: #e5e5e5;
    margin-right: 15px;
    background-size: 200% 100%;
    background-image: linear-gradient(to left, #c10404 50%, #e5e5e5 50%);
    transition: background-position 1s;
}
.main-home-select > li:nth-child(2):hover{
    background-position: -100% 0;

}
.main-home-select > li:nth-child(3){
    background-color: #e5e5e5;
    background-size: 100% 200%;
    background-position: 0 -100%;
    background-image: linear-gradient(to bottom, #c10404 50%, #e5e5e5 50%);
    transition: background-position 1s;
}
.main-home-select > li:nth-child(3):hover{
    background-position: 0 0%;

}
.main-home-select > li > a {
    display: block;
    padding: 40px 0px;
    padding-bottom: 20px;
}
.main-home-select > li > a > img {
    display: block;
    margin: 0px auto;
}
.main-home-select > li > a:hover img{
    animation: shake 5s; 
    /* When the animation is finished, start again */
    animation-iteration-count: infinite;
}
@keyframes shake {
    0% { margin-top: -10px; }
    10% {  margin-top: 0px;  }
    20% {  margin-top: -10px; }
    30% { margin-top: 0px; }
    40% { margin-top: -10px; }
    50% { margin-top: 0px;  }
    60% { margin-top: -10px; }
    70% { margin-top: 0px;  }
    80% {  margin-top: -10px; }
    90% { margin-top: 0px; }
    100% { transform: margin-top: -3px;  }
}
.main-home-select > li > a > h1{
    text-transform: uppercase;
    padding-top: 30px;
    color: #1e1e1e;
    font-size: 20px;
    transition: all 0.5s;

}
.main-home-select > li > a:hover h1{
    color: white;
}
footer{
    position: fixed;
    width: 100%;
    text-align: center;
    bottom: 0px;
}
footer{
    position: fixed;
    width: 100%;
    text-align: center;
    bottom: 0px;
    color: #fff;
    padding-bottom: 15px;
}
footer a{
    color: #c10404;
    transition: all 0.3s;
}
footer a:hover{
    color: white;
}

/*==================================================
= Bootstrap 3 Media Queries =
==================================================*/

/*========== Mobile First Method ==========*/

/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {
.main-home-select > li{
    display: inline-block;
    margin: 0px;
    padding: 0px;
    width: 100%;
    float: left;
    padding: 0px 0px;
    transform: skewX(-4deg) !important;
    text-align: center;
    transition: all 0.3s ease-in-out;
    min-height: 355px;
    margin-bottom: 25px;
    

}
footer{
    position: relative;
    width: 100%;
    text-align: center;
    bottom: 0px;
}
}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {

}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {

}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
.main-home-select > li{
    display: inline-block;
    margin: 0px;
    padding: 0px;
    width: 32.33%;
    float: left;
    padding: 0px 0px;
    transform: skewX(-4deg) !important;
    text-align: center;
    transition: all 0.3s ease-in-out;
    min-height: 355px;
    margin-bottom: 0px;
    

}
footer{
    position: fixed;
    width: 100%;
    text-align: center;
    bottom: 0px;
}
}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {

}