/*.brand {
    display: flex;
    align-items: center;
    margin-top: -15px;
    padding: 0 1em !important;
}*/

.brand ul {
    list-style: none;
    display: inline-flex;
}

.brand ul li {
    padding: 1.5vw;
    cursor: pointer;
}

.brand ul li:hover {
    background:#0066FF;
    color: white;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.container {
    border-bottom: 1px solid #aaa;
    height: 6.5vh;
}

/*section#general-hero {
    padding: 0 5vh;
}*/

.hero-image {
    background-image: url(/img/dpk-banner-v1.jpg);
    background-position: unset;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    min-height: 45vmin;
    max-height: 960px;
}

.info-content {
    display: flex;
}

.info-img {
    background-image: url(/img/iStock.jpg);
    height: 40vh;
    background-size: cover;
    background-position: center;
    width: 40%;
}

.info-text {
    padding: 0 0 0 5vh;
    width: 60%;
}

.info-text span{
    font-size: 20pt;
    font-weight: bold;
}

.info-text strong {
    color: #0066ff;
    font-weight: 900;
}

section#general-info {
    padding: 5vh;
}

@media screen and (max-width: 1024px) {

    .brand ul {
        display: none;
    }

    .brand {
        display: block;
        padding: 1em !important;
        margin-left: 0em;
        margin-top: 0;
    }
}

@media screen and (max-width: 768px) {

    .container {
        height: auto;
    }

    section#general-hero {
        padding: 0 3vh;
    }

    section#general-info {
        padding: 3vh;
    }

    .info-img {
        height: 20vh;
    }

    .info-content {
        display: block;
        font-size: 13pt;
    }

    .info-text {
        padding: 5vh 0;
    }

    .info-img, .info-text {
        width: auto;
    }
}