#product-header {
    width: 100%;
    background-color: #FFFFFF !important;
    position: fixed;
    top: 0;
    left: 0;
    -webkit-box-shadow: var(--shadow);
    -moz-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    cursor: default;
    opacity: 0;
    display: none;
    z-index: 999;
}

#product-header ul {
    padding: 0;
    margin: 0;
    display: inline-flex;
    height: 100%;
}

#product-header ul li {
    display: inline;
    padding-right: 50px;
    position: relative;
    height: 100%;
    cursor: pointer;
}

#product-header ul li a {
    font-family: "Montserrat";
    font-size: 1.2rem;
    color: var(--border-primary);
}

#product-header ul li.active::after {
    content: '';
    background-color: var(--primary-color);
    position: absolute;
    bottom: 0;
    left: 0;
    width: CALC(100% - 50px);
    height: 5px;
    border-radius: 2px;
}

.pHeader-menu {
    padding-right: 40% !important;
    display: table;
}

.pHeader-title h3 {
    vertical-align: middle;
    display: table-cell;
    font-size: 1.3rem !important;
    color: var(--border-primary);
    margin-bottom: 0;
    height: fit-content;
}

.pHeader-title {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
}

.pHeader-title .PI-subtitle {
    font-size: 1rem !important;
    width: 100%;
}

.pHeader-title h3 span {
    font-weight: bolder;
    color: var(--barely-black);
}

.quoteContainer {
    position: absolute;
    width: 25%;
    top: CALC(50% - 0.5rem);
    right: 10%;
}

@media (max-width: 1400px) {

    .pHeader-title,
    .pHeader-menu {
        padding-right: 25% !important;
    }

    .quoteContainer {
        right: 18%;
    }
}

@media (max-width:991px) {

    #product-header ul li {
        padding-right: 20px;
    }

    .quoteContainer .sty-1 {
        font-size: 16px;
    }

    #product-header ul li.active::after {
        width: CALC(100% - 15px);
    }
}

@media (max-width:860px) {

    .quoteContainer {
        top: CALC(50% - 1.5rem);
    }

    .pHeader-title,
    .pHeader-menu {
        padding-right: 0% !important;
    }
}

@media (max-width: 450px) {

    .pHeader-title h3 {
        font-size: 1rem !important;
    }

    .ultrasoundSty-1 {
        padding: 5%;
    }

    .ultrasoundSty-1 span {
        font-size: 8px !important;
    }

    #product-header ul li a {
        font-size: 0.6rem;
    }

    #product-header ul li {
        padding-right: 15px;
    }

    #product-header ul li.active::after {
        width: CALC(100% - 10px);
    }
}


@media (max-width: 350px) {

    #product-header .pHeader-title {
        width: 70%;
    }

    #product-header ul li a {
        font-size: 0.5rem;
    }

    .quoteContainer {
        right: 3%;
    }

}