#homeSection{
    justify-content: space-between;
    display: flex;
}

#homeSection .homeSection{
    height: 100%;
    width: calc(100% / 3);
    padding: 0px;
    position: relative;
    bottom: 0px;
    will-change: background-position;
    -webkit-transition: bottom 0.6s, background-position 0.4s, opacity 0.6s;
    transition: bottom 0.6s, background-position 0.4s, opacity 0.6s;
}

.homeSection .pageTitle{
    color: white;
    /*background-color: rgba(0,0,0,0.6);*/
    background-size: 100% 100%;
    background-position: bottom;
    -webkit-transition: background-color 0.7s;
    transition: background-color 0.7s;
    padding-bottom: 5vh;
}

.homeSection .logo{
    width: 85%;
    position:absolute;
    display:block;
    margin:auto;
    left:0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    z-index: 5;
    pointer-events: none;
    -webkit-transition: opacity 0.7s;
    transition: opacity 0.7s;
}

.homeSection{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
}

.homeSection .content{
    /*height: 0px;*/
    height: 100%;
    width: 100%;
    opacity: 1;
    position: absolute;
    top: 0px;
    left: 0px;
    overflow: hidden;
    will-change: background-color;
    background-color: rgba(0,0,0,0.3);
    color: white;
    -webkit-transition: background-color 0.7s;
    transition: background-color 0.7s;
}

.homeSection .content *{
    opacity: 0;
    will-change: opacity;
    -webkit-transition: opacity 0.7s;
    transition: opacity 0.7s;
}

.homeSection .content .contentChild{
    height: 40%;
    position: absolute;
    margin: auto;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
}

.homeSection .content .pageTitle{
    font-size: 40px;
    margin-top: 110px;
    background-color: rgba(0,0,0,0);
}

.homeSection:hover{
    background-position: 48% 50%;
}

.homeSection:hover .logo{
    opacity: 0;
}

.homeSection:hover .content{
    height: 100%;
    background-color: rgba(140, 1, 55,0.8);
}

.homeSection:hover *{
    opacity: 1;
}

.homeSection:hover .pageTitle{
    background-color: rgba(0,0,0,0);
}