.dcn-home-page-top {
    width: 100%;
    height: 580px;
    background-image: url('/globalassets/dcn/images/home-header-background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 0 67%;
    box-shadow: 0 4px 7px 0 rgb(0 0 0 / 20%), 0 0 1px 0 rgb(0 0 0 / 19%);
    z-index: 1;
}

.home-header {
    width: 100%;
    height: 80px !important;
    min-height: 80px !important;
    display: flex;
    align-content: center;
    justify-content: center;
    font-weight: 300;
    background-color: rgba(20, 50, 70, 0.55);
    /*transition: all 0.3s linear;*/
}

.home-header .content {
    display: flex;
    width: 100%;
    padding: 0 32px;
    gap: 24px;
    margin: 0;
    max-width: 1440px;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}

.home-header .content .mobile-menu-button {
    display: none;
    color: #fff;
}

.home-header .content .left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 64px;
}

.home-header .content .left a.logo:focus {
    display: block;
    outline: 1px solid white;
    background-color: #2b89cd;
    padding: 7px 0;
}

.home-header .content .left .logo img {
    min-width: 177px;
    width: 177px;
    height: auto;
}


.home-header .content .action-buttons {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
    color: #fff;
}

.home-tagline {
    width: 100%;
    max-width: 866px;
    margin: 50px auto 0 auto;
    font-weight: 300;
    font-size: 28px;
    line-height: 36px;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0 0 0 / 0.85);
    padding: 16px;
    color: #fff;
}

@media screen and (max-width: 1279px) {
    .dcn-home-page-top {
        background-position: 0 53%;
    }

    .home-header .content {
        gap: 16px;
    }

    .home-header .content .left {
        gap: 32px;
    }
}

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

    .dcn-home-page-top {
        background-position: 0 6%;
    }

    .home-header .content .mobile-menu-button {
        display: block;
    }

    .home-header .primary-nav {
        display: none;
    }

    .home-header .content .left {
        gap: 8px;
    }

    .home-tagline {
        margin-top: 24px;
        font-size: 20px;
    }
}

@media screen and (max-width: 768px) {
    .dcn-home-page-top {
        background-position: 45% 0;
    }
    
    .home-tagline {
        font-size: 16px;
        line-height: 24px;
    }
}

@media screen and (max-width: 479px) {
    .home-header .content .left .logo img {
        min-width: 125px;
        width: 125px;
    }
}