/*** start LANDING ***/
.homeContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.homeItem {
    flex: 0 1 auto;
    width: 450px;
    max-width:100%;
    margin: 30px;
    box-shadow:var(--theme01);
    display: flex;
    flex-wrap: wrap;
}
.homeItem .homeImg {
    background-size: cover;
    background-position: center center;
    height:300px;
    width:100%;
}
.homeItem .homeContent {
    flex:0 1 auto;
    width:100%;
    padding:20px;
}
.homeItem .homeContent h3 {
    margin-top:0;
}
.homeItem .homeBtn {
    flex:0 1 auto;
    width:100%;
    padding:0 20px 20px;
    margin-top:auto;
}
.homeItem .homeBtn .btn-primary {
    transition:.51s ease-in-out;
}
/*** end LANDING ***/