html {
    //background: url(../img/background-corporate.jpg) no-repeat center center fixed;
    //background-size: cover;
    //background-position-y: 100px;
}

.company-logo-container {
    overflow: hidden;
    height: 110px;
    width: 100%;
    background-color: white;
}

.inner-img {
    //box-shadow: 1px 1px 4px rgba(0,0,0,0.2);
    margin-left: 10px;
    margin-right: 10px;
    height: 100px;
}

@keyframes logo-animation {
    0% { left: 2375px; }
    100% { left: -2375px; }
}

.inner-logo-container {
    margin-top: 5px;
    position: absolute;
    left: 0;
    height: 100%;
    width: 1000px;
    overflow-x: visible;
    animation-name: logo-animation;
    animation-duration: 30s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.inner-logo-container-2 {
    margin-top: 5px;
    position: absolute;
    left: 2375px;
    height: 100%;
    width: 1000px;
    overflow-x: visible;
    animation-name: logo-animation;
    animation-duration: 30s;
    animation-delay: 15s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.main-row {
    background: url(../img/background-corporate.jpg) no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
