.cd-main-header {
    overflow: hidden;
    /*background-image: url(../img/bg-header.png);*/
    background-size: cover;
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #3f3f3f;
}

.cd-main-header::after {
    clear: both;
    content: "";
    display: table;
}

.headerMainDiv {
    background-color: #000000;
    height: 85px;
}
.headerMainDiv {
    background-color: #040831;
    display: flex;
    align-items: start;
    justify-content: space-evenly;
    flex-direction: column;
    padding: 0 10px;
}
.headerMainDiv .logo {
    width: 66px;
    height: auto;
}
.headerMainDiv .logo img {
    width: 100%;
    max-width: 100px;
    height: auto;
}
.headerMainDiv .title{
    font-size: 18px;
    color: #fff;
    text-align: center;
    font-weight: 700;
    margin: 0 auto;
}

.headerLeftDiv img {
    margin: auto;
    padding-top: 20px;
}

@media screen and (min-width: 768px) {
    .headerMainDiv{
        justify-content: center;
        align-items: center;
        flex-direction: row;
        padding: 0;
    }
    .headerMainDiv .logo {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 40px;
        width: 100px;
    }
    .headerMainDiv .title {
        width: 100%;
        font-size: 24px;
    }
    .headerLeftDiv {
        width: 33.75%;
        height: 85px;
        background-color: #ffffff;
        display: inline-block;
    }
    .headerRightDiv {
        width: 65.99%;
        height: 85px;
        display: inline-block;
        background: linear-gradient(113deg, rgba(255,255,255,1) 9%, rgba(0,0,0,1) 9.1%);
        margin-left: -3.8px;
    }
}

@media screen and (max-width: 767px) {
    .headerLeftDiv {
        width: 50%;
        height: 85px;
        background-color: #ffffff;
        display: inline-block;
    }

    .headerRightDiv {
        width: 49.15%;
        height: 85px;
        display: inline-block;
        background: linear-gradient(113deg, rgba(255,255,255,1) 24%, rgba(0,0,0,1) 24.1%);
        margin-left: -3.2px;
    }
}