#productLandingSection {
    width: 100vw;
    height: calc(100vh + 4px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 600px;
}

#productHeroSection {
    width: 100%;
    flex-grow: 1;
    position: relative;
    overflow: hidden;
    background-position: center;
    background-size: cover;
}

.productMegatronVideo {
    position: absolute;
    min-width: 100vw;
    min-height: 100vh;
    left: 50%;
    top: -1%;
    right: 50%;
    transform: translate(-50%);
}

#productNav {
    width: 100%;
    flex-grow: 0;
    background-color: black;
}

.productNavContainer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 15px;
    padding-right: 15px;
}

#heroOverlay {
    width: 100%;
    height: 100%;
    padding-left: 30px;
    padding-right: 40px;
    padding-top: 100px;
    padding-bottom: 25px;
    background: linear-gradient(rgb(0, 0, 0, 0) 50%,rgb(0, 0, 0, .75));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: absolute;
}

#productHeaderContainer {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;

}

.productNavSec {
    display: flex;
    flex-direction: row;
    color: white !important;
    align-items: center;
}

.productNavItem {
    padding-left: 15px;
    padding-right: 15px;
}

.productNavItem.border-right {
    border-right: 3px solid white;
}

#productHeader {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

#productHeader h1 {
    font-size: 36px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 10px;
    color: white !important;
}

#productHeadertrim {
    display: inline-block;
}

#productHeader h2 {
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 10px;
    color: white !important;
}

#productHeader h2 #startingMSRP {
    font-weight: 600;
    color: white !important;
}

#productHeader p {
    font-size: 10px;
    font-weight: 400;
    margin: 0;
    color: white !important;
}

#headerVideoContainer {
    display: flex;
    align-items: end;
    justify-content: right;
}

#this-product-video-Container {
    transform-origin: bottom right;
    transition: transform .5s ease-in;
    box-shadow: 0px 10px 25px 10px rgba(0,0,0,0.65);
    -webkit-box-shadow: 0px 10px 25px 10px rgba(0,0,0,0.65);
    -moz-box-shadow: 0px 10px 25px 10px rgba(0,0,0,0.65);
}

#this-product-video-Container.open {
    transform: scale(2);
    transform-origin: bottom right;
    transition: transform .5s ease-in;
}

.mobile-btn {
    display: none;
}

.mobile-lrg {
    display: none;
}

.white-text {
    color: white;
}

.black-text {
    color: black;
}

.blue-hover:hover {
    color: #1b3e90;
}

.tablet-hide{
    display: none;
}

#productNavMobileContent {
    display: none;
}

@media only screen and (max-width: 1024px){

    .productHeaderSec {
        display: block;
    }

    .web-lrg {
        display: none;
    }

    .productNavItem {
        font-size: .8em;
        flex-grow: 1;
        text-align: center;
    }

    .web-lrg {
        display: none;
    }

    .btn-sm-black {
        border: none;
        background-color: black;
        color: white;
        margin: 0 !important;
    }

    #productHeader h1 {
        font-size: 28px;
    }

    #productHeader h2 {
        font-size: 20px;
    }

    .btn-sm-blue {
        border: none;
        background-color: #1b3e90;
        color: white;
        margin: 0 !important;
    }

    .btn-sm-black:hover {
        border: none;
        background-color: white;
        color: black;
        margin: 0 !important;
    }

    .btn-sm-blue:hover {
        border: none;
        background-color: white;
        color: black;
        margin: 0 !important;
    }

    .tablet-hide{
        display: none;
    }

}

@media only screen and (max-width: 862px) {
    .productNavItem {
        font-size: .7em;
        padding-left: 10px;
        padding-right: 10px;
    }
}


@media only screen and (max-width: 762px) {
    #mainNav.closed {
        top: -84px !important;
        transition: top .5s ease;
    }

    #productNavMobile.closed {
        padding-top: 0px !important;
        transition: padding .5s ease; 
    }

    #mainNav.open {
        top: -14px !important;
        transition: top .5s ease;
    }

    #productNavMobile.open {
        padding-top: 70px !important;
        transition: padding .5s ease; 
    }

    #productLandingSection {
        height: calc(100dvh - 45px);
    }

    #heroOverlay { 
        background: radial-gradient(rgb(0, 0, 0, 0.6),rgb(0, 0, 0, 0));
    }

    #productNav {
        display: none;
    }

    #productNavMobile {
        display: block;
        background: linear-gradient(180deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.55) 100%);
        transition: padding .5s ease; 
    }

    #productNavMobile.fixed {
        position: fixed;
        padding-top: 52px;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        border: none;
    }

    .productNavContainer {
        padding-left: 30px;
        padding-right: 30px;
        padding-bottom: 12px;
        padding-top: 12px;
    }

    .productNavSec {
        flex-direction: column;
        align-content: center;
        justify-content: center;
        align-items: baseline;
        color: #e0e0e0 !important;
    }

    .productNavSec h2 {
        font-size: .95em;
        font-weight: 500;
        margin-bottom: 2px;
    }

    .productNavSec h3 {
        font-size: .75em;
        font-weight: 300;
        margin: 0;
    }

    .productNavSec h3 span {
        font-weight: 500;
    }

    #productNavMobileContent {
        padding-bottom: 20px;
        display: none;
        height: 100dvh;
        overflow-y: scroll;
        border-top: 2px solid #1b3e90;
    }

    #productNavMobileContent::-webkit-scrollbar {
        display: none;
    }

    #productNavMobileContent .contentTab {
        padding-top: 20px;
        padding-bottom: 20px;
        padding-right: 30px;
        padding-left: 30px;
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        color: #e0e0e0;
    }

    #productNavMobileContent .contentTab:hover {
        color: #1b3e90;
    }

    #productNavArrow{
        transition: transform .2s;
    }

    #productNavArrow.flip {
        transform: rotate(180deg);
        transition: transform .2s;
    }

    #productHeader {
        height: 100%;
        max-height: 550px;
        max-width: 750px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #productHeader h1 {
        font-size: 2.5rem;
        margin: 0;
    }

    #productHeadertrim {
        font-size: 1.5rem;
        font-weight: 300;
    }

    #productHeader h1 span {
        display: block;
    }

    #productHeader h2 {
        font-weight: 200;
        letter-spacing: 2px;
        text-align: Center;
        text-transform: uppercase;
        font-size: .9rem;
        margin-bottom: 0px;
    }

    #productHeader h2 #startingMSRP {
        font-weight: 600;
        display: block;
        font-size: 2.5rem;
        color: white !important;
    }

    #productHeaderContainer {
        flex-grow: 1;
        padding: 25px;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .mobile-lrg {
        width: 100%;
        display: flex;
        flex-direction: row;
    }

    .mobile-lrg-btn {
        flex-grow: 1;
        margin: 0;
    }

    .mobile-lrg-btn .btn {
        max-width: 100% !important; 
        min-width: 100% !important;
        width: 100% !important;
        height: 100%;
    }

    #productNavMobileButtons {
        padding: 0px;
        border-top: none;
        z-index: 10000;
        position: fixed;
        bottom: 0;
    }

    #headerVideoContainer {
        display: none;    
    }

    .productHeaderSec {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        justify-content: center;
        padding-bottom: 25px;
    }

    .mobile-hide {
        display: none;
    }

    .tablet-hide {
        display: flex;
    }

}