.headerLandingOAB {
    position: fixed;
    top: 0;
    height: 65px;
    width: 100%;
    z-index: 99;
    transition: all 0.2s linear;
}

.headerLandingOAB.scroll {
    height: 50px !important;
    background: rgba(174, 10, 11, 0.9);
}

.headerLandingOAB .container {
    height: 100%;
}

.headerLandingOAB .container .col-sm-12 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */

.headerLandingOAB #logoLandingOAB img {
    transition: all 0.2s linear;
}

.headerLandingOAB.scroll #logoLandingOAB img {
    max-width: 120px;
    transition: all 0.2s linear;
}

/* Links */

.linksHeader {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.linksHeader a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.linksHeader a + a {
    margin-left: 30px;
}

.linksHeader a span {
    color: #fff;
    font-weight: bold;
    margin-left: 7px;
}

@media only screen and (max-width: 500px) {

    .linksHeader a span {
        display: none;
    }

}