﻿

:root {
    --primary-font: 'Arial-Bold';
    --secondary-font-normal: 'Poppins-normal';
    --secondary-font-light: 'Poppins-Light';
    --secondary-font-bold: 'Poppins-Bold';
    --brand-color: #00EEAE;
    --primary-text-color: #2B3A44;
    --soft-black-color: #2b3a44;
    --link-color: #1931E3;
    --alternate-bg: #e4e8f3;
    --border-color: #8E99A8;
    --white-color: #fff;
    --transition: all 350ms ease-in-out;
    --image-url: url(/Images/lady-with-kid.png);
    font-family: Arial, Helvetica, sans-serif
}

/**Fonts are from UI Gate Review Team and are Gainwell Standard*/
@font-face {
    font-family: 'Arial-Bold';
    src: url('../fonts/ARIALBD 1.TTF') format('tff');
    font-style: normal;
    font-weight: 600;
}

@font-face {
    font-family: 'Poppins-normal';
    src: url('../fonts/Poppins.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins-Light';
    src: url('../fonts/Poppins-Light.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins-bold';
    src: url('../fonts/Poppins-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}


/*Reset box size*/
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
/**/

body {
    min-height: 100vh;
}

.change-color {
    border-bottom: 1.59px solid #EDEDED;
    transition: background-color 1s ease;
}

/*show/hide*/
.hidden-xs {
    display: block;
}

.visible-xs {
    display: none;
}

/*sections*/
.generic-section {
    padding: 100px 0 10px 45px;
    position: relative;
}

.generic-section-container h2 {
    font-weight: 600;
    font-size: 24px;
    font-family: Arial;
    color: #2B3A44;
    letter-spacing: -0.48px;
    margin-bottom: 40px;
    width: 80%;
}

.state-section {
    padding: 100px 0 10px 45px;
    position: relative;
}

.PanelOfLinksOnStatePage {
    margin: -20px 40px 100px 40px;
    padding-bottom:80px;
}

.BlockOfLinksInStatePageLinkPanel {
    display: inline-block;
    vertical-align: top;
    margin: 10px 15px 10px 15px;
    width: max-content;
}


.top-section {
    padding: 40px 0 25px 45px;
    position: relative;
}

    .top-section h4 {
        font-family: var(--secondary-font-bold);
    }

    .top-section div {
        padding: 30px 0;
    }

.general-questions h2 {
    font-weight: 600;
    font-size: 24px;
    font-family: Arial;
    color: #2B3A44;
    letter-spacing: -0.48px;
    margin-bottom: 10px;
}


#divhow-to-help {
    text-align: center;
    margin-top: 20px;
}

.our-commitment {
    text-align: center;
    margin-top: 20px
}

    .our-commitment h2 {
        font-weight: 600;
        font-size: 24px;
        font-family: Arial;
        color: #2B3A44;
        letter-spacing: -0.48px;
        margin-bottom: 40px;
    }

#divhow-to-help h2 {
    font-weight: 600;
    font-size: 30px;
    font-family: var(--secondary-font-bold);
    color: #2B3A44;
    margin-bottom: 20px;
}


.help-links {
    color: #087d5c;
    font-family: Arial;
    font-size: 18px;
    list-style: none;
    text-decoration: none;
}

    .help-links:hover {
        color: #087d5c;
        list-style: none;
        text-decoration: none;
    }

header {
    background: var(--primary-text-color);
    border-bottom: 3px solid var(--brand-color);
    text-align: center;
    height: 65px;
    position: fixed;
    z-index: 996;
    width: 100%;
}


.active-nav {
    margin-left: 0;
}

.bar {
    display: block;
    height: 3px;
    width: 20px;
    background-color: var(--primary-text-color);
    margin: 5px 2px;
    border-radius: 30%;
}

#btn {
    z-index: 998;
}

.button {
    position: absolute;
    background-color: var(--brand-color);
    padding: 1rem;
    right: 0;
    top: 0;
    cursor: pointer;
    height: 65px;
    z-index: 998;
    /*    margin: 0 auto;*/
    -webkit-transition: all .7s ease;
    -moz-transition: all .7s ease;
    -ms-transition: all .7s ease;
    -o-transition: all .7s ease;
    transition: all .7s ease;
}

/*this button is for the state link
  opens the sidebar
*/

.state-link {
    cursor: pointer;
    display: inline-block;
    align-content: center;
    width: auto;
    margin-top: 6px;
}

/*this is the close button for the sidebar*/
.button-close {
    background-color: var(--white-color);
    -webkit-transition: all .20s ease;
    -moz-transition: all .20s ease;
    -ms-transition: all .20s ease;
    -o-transition: all .20s ease;
    transition: all .20s ease;
}


/*sidbar starts here*/
.sidebar {
    height: 100vh;
    width: 290px;
    position: fixed;
    top: 0;
    right: 0;
    background-color: var(--white-color);
    /*  background: rgba:(255,255,255,0.1);*/
    /*  backdrop-filter: blur(15px);*/
    transition: all .35s;
    overflow-y: auto;
    box-shadow: 2px 0 4px rgb(0, 0, 0, 0.5);
    z-index: 999;
}

    /**
   holds the parameters for the expansion/contraction of the sidebar
*/
    .sidebar.collapsed {
        width: 0;
        -webkit-transition: all .7s ease;
        -moz-transition: all .7s ease;
        -ms-transition: all .7s ease;
        -o-transition: all .7s ease;
        transition: all .7s ease;
    }

    .sidebar.expand {
        width: 350px;
        -webkit-transition: all .7s ease;
        -moz-transition: all .7s ease;
        -ms-transition: all .7s ease;
        -o-transition: all .7s ease;
        transition: all .7s ease;
    }

.on-focus-image {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), var(--image-url);
    background-size: cover;
    /*opacity: 0.10;*/
}

.on-focus-content {
    position: fixed;
    height: 100vh !important;
    min-height: 100vh !important;
    width: 100% !important;
    opacity: .4;
    background-color: #000;
    z-index: 997;
    -webkit-transition: all .7s ease;
    -moz-transition: all .7s ease;
    -ms-transition: all .7s ease;
    -o-transition: all .7s ease;
    transition: all .7s ease;
    /* background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5));
    background-size: cover;*/
}


/*NOT SURE IF STILL NEEDED */
.sidebar.rightnav {
    float: right;
    margin: 0;
    border: 0;
    background: #F0F0F0;
    padding: 0;
    width: 242px;
}

nav-right {
    grid-column: 4/5;
    position: fixed;
    right: 40px;
    top: 20px;
}

/*.nav-right.visible-xs {
    z-index: 3;
}*/


.middle {
    margin: 0 auto;
}

.bar {
    -webkit-transition: all .7s ease;
    -moz-transition: all .7s ease;
    -ms-transition: all .7s ease;
    -o-transition: all .7s ease;
    transition: all .7s ease;
}

.nav-right.visible-xs .active .bar {
    background-color: #FFF;
    -webkit-transition: all .7s ease;
    -moz-transition: all .7s ease;
    -ms-transition: all .7s ease;
    -o-transition: all .7s ease;
    transition: all .7s ease;
}

.button.active .top {
    -webkit-transform: translateY(15px) rotateZ(45deg);
    -moz-transform: translateY(15px) rotateZ(45deg);
    -ms-transform: translateY(15px) rotateZ(45deg);
    -o-transform: translateY(15px) rotateZ(45deg);
    transform: translateY(5px) rotateZ(45deg);
}

.button.active .bottom {
    -webkit-transform: translateY(-15px) rotateZ(-45deg);
    -moz-transform: translateY(-15px) rotateZ(-45deg);
    -ms-transform: translateY(-15px) rotateZ(-45deg);
    -o-transform: translateY(-15px) rotateZ(-45deg);
    transform: translateY(-11px) rotateZ(-45deg);
}

.button.active .middle {
    width: 0;
}

.move-to-left {
    -webkit-transform: translateX(-400px);
    -moz-transform: translateX(-400px);
    -ms-transform: translateX(-400px);
    -o-transform: translateX(-400px);
    transform: translateX(-400px);
}

/*state and state links start here*/

.sidebar .state-menu {
    margin-top: 10px;
}

    .sidebar .state-menu a {
        color: var(--primary-text-color);
        font-size: 18px;
        font-family: Arial;
        text-decoration: none;
    }

    .sidebar .state-menu h4 {
        margin: 0;
        border-top: 1px solid #FFF;
        border-bottom: 1px solid #CCC;
        padding: 7px 10px;
        margin-top: 70px;
        font-family: Arial;
        font-size: 14px;
        color: var(--primary-text-color);
    }

    .sidebar .state-menu a:hover {
        text-decoration: none;
        color: var(--white-color);
    }

    .sidebar .state-menu .state-item {
        position: relative;
        cursor: pointer;
        -webkit-transform: translateY(-20px);
        -moz-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        -o-transform: translateY(-20px);
        transform: translateY(-20px);
    }

        .sidebar .state-menu .state-item a {
            color: var(--primary-text-color);
            font-family: var(--primary-font);
            font-size: 15px;
            font-weight: 500;
            text-decoration: none;
            display: block;
            /*  padding: 5px 30px;*/
            padding: 5px 30px 0 30px;
        }

            .sidebar .state-menu .state-item a:hover {
                background: var(--primary-text-color);
                color: var(--white-color);
                transition: 0.3s ease;
            }

        .sidebar .state-menu .state-item i {
            position: relative;
            margin-right: 15px;
            color: #6c7785;
        }

        .sidebar .state-menu .state-item a .cs-dropdown {
            position: absolute;
            color: var(--brand-color);
            right: 0;
            margin-right: 20px;
            transition: 0.3s ease;
            padding-top: 3px;
        }

        .sidebar .state-menu .state-item .state-sub-menu {
            background: rgba(255, 255, 255, 0.1);
            display: none;
        }

            .sidebar .state-menu .state-item .state-sub-menu .state-menu-links {
                padding-left: 60px;
                font-family: var(--primary-font);
                font-size: 15px;
                font-weight: 500;
            }

            /*.sidebar .state-menu .state-item .state-sub-menu a {*/
                /*padding for the state link*/
                /*padding-left: 42px;
                font-family: var(--primary-font);
                font-size: 15px;
                font-weight: 500;
            }*/


    /*Manfacturer Bid Forms dropdown menu starts here*/
        .sidebar .state-menu .state-item-forms a:hover {
            background: var(--primary-text-color);
            color: var(--white-color);
            transition: 0.3s ease;
        }

    .sidebar .state-menu .state-item-forms {
        position: relative;
        cursor: pointer;
        -webkit-transform: translateY(-20px);
        -moz-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        -o-transform: translateY(-20px);
        transform: translateY(-20px);
    }

       /* .sidebar .state-menu .state-item-forms a {
            color: var(--primary-text-color);
            font-family: var(--primary-font);
            font-size: 15px;
            font-weight: 500;
            text-decoration: none;
            display: block;
            padding: 5px 0 0 0;
           
        }*/

        .sidebar .state-menu .state-item-forms .pdl-bid {
            padding: 0 0 0 30px;
            color: var(--primary-text-color);
            font-family: var(--primary-font);
            font-size: 15px;
            font-weight: 500;
            text-decoration: none;
            display: block;
            padding: 0 0 0 60px;
        }

        .sidebar .state-menu .state-item-forms .dsp-bid {
            padding: 0 0 0 30px;
            color: var(--primary-text-color);
            font-family: var(--primary-font);
            font-size: 15px;
            font-weight: 500;
            text-decoration: none;
            display: block;
            padding: 0 0 0 60px;
        }
        /* .sidebar .state-menu .state-item-forms a:hover {
                background: var(--primary-text-color);
                color: var(--white-color);
                transition: 0.3s ease;
            }*/
        .sidebar .state-menu .state-item-forms i {
            position: relative;
            margin-right: 15px;
            color: #6c7785;
        }

        .sidebar .state-menu .state-item-forms a .cs-dropdown {
            position: absolute;
            color: var(--brand-color);
            right: 0;
            margin-right: 20px;
            transition: 0.3s ease;
        }

        .sidebar .state-menu .state-item-forms .state-sub-menu-forms {
            background: rgba(255, 255, 255, 0.1);
            display: none;
        }

            /*.sidebar .state-menu .state-item-forms .state-sub-menu-forms .pdl-link {*/
                /*padding for the state link*/
                /*padding-right: 90px;
                font-family: var(--primary-font);
                font-size: 15px;
                font-weight: 500;
            }*/

 
            .sidebar .state-menu .state-item-forms .state-sub-menu-forms .sub-menu-bid-links {
                /*padding for the state sub links*/
                padding-left: 90px;
                font-family: var(--primary-font);
                font-size: 15px;
                font-weight: 500;
            }

.rotate-arrow {
    transform: rotate(90deg);
}

.sidebar-item.active {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
}

.sidebar-anchor {
    color: var(--white-color);
    text-decoration: none;
    font-size: 1.1em;
    position: relative;
    padding-bottom: 7px;
}

    .sidebar-anchor:hover:before {
        width: 100%;
    }


/**main navigation links for screens smaller than 800px
*/
.s-menu-xs {
    margin-top: 50px;
}

.s-menu-m {
    margin-top: 80px;
}

#s-menu-close {
    left: 0;
    margin-left: 4px;
    margin-top: 8px;
    color: #6c7785;
    background-color: var(--white-color);
}

.s-menu-list {
    list-style: none;
    text-align: left;
    list-style-type: none
}

    .s-menu-list a {
        color: #087d5c;
        font-family: Arial;
        font-size: 18px;
    }

.sidebar-list {
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}


/**
 side menu links on active, focs
*/
/*.s-link:active,
.s-link:focus,
.s-link:hover {
    color: white;
    background-color: var(--primary-text-color);
    transition: transform ease-in-out 1ms;
}*/

.gw-links {
    color: #087d5c;
    font-size: 15px;
    font-weight: 600;
    font-family: Arial;
    text-decoration: none;
    padding: 0 0 0 30px;
}

    .gw-links:hover {
        color: #087d5c;
        list-style: none;
        text-decoration: underline;
    }


/**media queries*/
/*500 and less*/
@media all and (max-width: 625px) {
    header {
        display: grid;
        grid-template-columns: 1fr auto minmax(600px, 1fr) 1fr;
        height: 35px;
    }

    .logo-container {
        display: flex;
        width: 250px;
        height: 30px;
        margin-left: 38px;
        margin-top: 2px;
    }

        .logo-container img {
            width: 100%;
            max-height: 60px;
            max-width: 90px;
            transition: var(--transition);
            height: 35px;
            grid-column: 1 / 2;
        }



    #div-logo {
        margin-bottom: 4px;
    }

    #div-logo-name {
        padding: 3px 3px 6px 9px;
        align-items: center;
        color: white;
        font-family: Arial, sans-serif;
        font-size: 15px;
        font-weight: 600;
        width: max-content;
        white-space: nowrap;
        overflow: hidden;
        position: relative;
        top: 1px;
    }

    .locker {
        margin-top: 4px;
        margin-bottom: 2px;
        border-right: 2px solid #c8c4d4;
        height: 20px;
    }


    nav {
        display: none;
    }

    /*state-nav-menu*/

    .sidebar .state-nav-menu {
        margin-top: 60px;
    }

        .sidebar .state-nav-menu a {
            color: var(--primary-text-color);
            font-size: 18px;
            font-weight: 600;
            font-family: Arial;
            text-decoration: none;
        }

    .sidebar .state-menu h4 {
        margin: 0;
        border-top: 1px solid #FFF;
        border-bottom: 1px solid #CCC;
        padding: 7px 10px;
        margin-top: 70px;
        font-family: Arial;
        font-size: 14px;
        color: var(--primary-text-color);
    }

    .sidebar .state-menu a:hover {
        text-decoration: none;
        color: var(--white-color);
    }

    .sidebar .state-nav-menu .state-nav-item {
        position: relative;
        cursor: pointer;
        -webkit-transform: translateY(-20px);
        -moz-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        -o-transform: translateY(-20px);
        transform: translateY(-20px);
    }

        .sidebar .state-nav-menu .state-nav-item a {
            color: var(--primary-text-color);
            font-family: var(--primary-font);
            font-size: 15px;
            font-weight: 500;
            text-decoration: none;
            display: block;
            padding: 5px 30px;
        }

            .sidebar .state-nav-menu .state-nav-item a:hover {
                background: var(--primary-text-color);
                color: var(--white-color);
                transition: 0.3s ease;
            }

        .sidebar .state-nav-menu .state-nav-item i {
            position: relative;
            margin-right: 15px;
            color: #6c7785;
        }

    .bar {
        display: block;
        height: 2px;
        width: 20px;
        background-color: var(--primary-text-color);
        margin: 4px 3px;
    }

    .button {
        position: absolute;
        padding: .2rem;
        height: 33px;
        right: 0;
        top: 0;
    }


    .alternate-header-section {
        max-width: 100%;
        background-color: var(--alternate-bg);
    }


    .alternate-head-container {
        padding: 40px 10px 40px 10px;
        height: 300px;
        min-height: 270px;
        margin-left: 20px
    }

    .generic-section {
        padding: 50px 0 10px 45px;
        position: relative;
    }

        /**About Learn More button starts here*/
        /**This is the learn more button for the about page only*/

        button-learn {
        position: relative;
        border: 0;
        display: inline-block;
        width: 12rem;
        height: auto;
        cursor: pointer;
        outline: none;
        vertical-align: middle;
        background: transparent;
    }

    .text-learn {
        position: absolute;
        inset: 0;
        padding: 0.9rem 0;
        margin-left: 1.85rem;
        color: var(--primary-text-color);
        line-height: 1.6;
        text-align: center;
        transition: all 0.4s ease-in-out;
        font-weight: 600;
        padding-top: 11px;
    }

        .text-learn a {
            color: #000;
            font-family: Arial,sans-serif;
            font-size: 15px;
            list-style-type: none;
            text-decoration: none;
            transition: all 0.4s ease-in-out;
        }

    .circle-learn {
        position: relative;
        display: block;
        margin: 0;
        width: 3rem;
        height: 3rem;
        background: var(--soft-black-color);
        border-radius: 1.625rem;
        transition: all 0.4s ease-in-out;
    }

    .icon-learn {
        position: absolute;
        top: 0;
        bottom: 0;
        margin: auto;
        background:;
    }

    .arrow-learn {
        left: 0.625rem;
        width: 1.125rem;
        height: 0.125rem;
        background: none;
        transition: all 0.4s ease-in-out;
    }

        .arrow-learn::before {
            content: "";
            position: absolute;
            top: -0.3rem;
            right: 0.0625rem;
            width: 0.625rem;
            height: 0.625rem;
            border-top: 0.125rem solid var(--white-color);
            border-right: 0.125rem solid var(--white-color);
            transform: rotate(45deg);
        }

    button-learn:hover .arrow-ask::before {
        content: "";
        position: absolute;
        top: -0.3rem;
        right: 0.0625rem;
        width: 0.625rem;
        height: 0.625rem;
        border-top: 0.125rem solid #000;
        border-right: 0.125rem solid #000;
        transform: rotate(45deg);
    }

    button-learn:hover .circle-ask {
        width: 100%;
        background: var(--brand-color);
    }

        button-learn:hover .circle-ask a {
            background: #000;
        }

    button-learn:hover .icon-ask {
        background: #000;
    }

    button-learn:hover .arrow-ask {
        border-top: #000;
        border-right: #000;
        transform: translateX(1rem);
    }

    button-learn:hover .text-ask {
        color: #000;
    }

        button-learn:hover .text-ask a {
            color: #000;
            transition: all 0.4s ease-in-out;
        }

    .learn-more-btn-container {
        max-width: 540px;
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
        margin-right: auto;
        margin-left: auto;
    }
    /*About Learn More button ends here*/
   


    /*top navigation nested dropdown menu*/
    /*alternate header with pill bottle*/
    /*  *Page Head Preferred Drug List*/
    .landing-page h1 {
        font-family: var(--secondary-font-bold);
        font-size: 30px;
        font-weight: 700;
        color: var(--primary-text-color);
        line-height: .30;
        letter-spacing: 1px;
        margin: 30px 0 20px 10px;
    }

    .landing-page p {
        margin: 10px 10px 20px 10px;
        font-family: Arial, sans-serif;
        font-size: 15px;
        color: var(--primary-text-color);
    }

    .contact-xl-container {
        max-width: 1140px;
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
        margin-right: auto;
        margin-left: auto;
    }

    .state-page h1 {
        font-family: var(--secondary-font-bold);
        font-size: 40px;
        font-weight: 700;
        color: var(--primary-text-color);
        line-height: 1;
        letter-spacing: 1.04px;
        margin: 40px 0 180px 20px;
    }

    .contact-btn-container {
        display: none;
    }

    .our-commitment {
        font-weight: 600;
        font-size: 24px;
        font-family: Arial;
        color: #2B3A44;
        letter-spacing: -0.48px;
        margin-bottom: 20px;
    }

    #divhow-to-help h2 {
        font-weight: 600;
        font-size: 24px;
        font-family: Arial;
        color: #2B3A44;
        letter-spacing: -0.48px;
        margin-bottom: 20px;
    }


    .mid-section {
        max-width: none;
        margin: 20px 50px 20px 50px;
        position: relative;
    }

        .mid-section p {
            display: block;
            font-family: Arial;
            font-size: 15px;
            line-height: 1.86;
            letter-spacing: 0.4px;
            margin-bottom: 20px;
            color: var(--primary-text-color);
        }

        .mid-section h2 {
            font-weight: 600;
            font-size: 24px;
            letter-spacing: -0.48px;
            font-family: var(--secondary-font-normal);
            color: var(--primary-text-color);
        }

    .content-wrapper {
        display: inline;
        max-width: 100%;
        padding: 0 40px;
    }

    #divservices-contact,
    #divservices-about {
        position: absolute;
        width: 100%;
        background-color: var(--alternate-bg);
        bottom: 0;
    }


    .services-section {
        max-width: 100%;
        background-color: var(--alternate-bg);
    }

    .services-container {
        position: relative;
        width: 100%;
        background-color: var(--alternate-bg);
        bottom: 0;
    }


        .services-container h2 {
            font-weight: 600;
            font-size: 24px;
            font-family: Arial;
            color: #2B3A44;
            letter-spacing: -0.48px;
        }

        .services-container h3 {
            font-family: Arial, sans-serif;
            font-size: 15px;
            letter-spacing: -0.36px;
            font-weight: 500;
        }


    .services-content-wrapper {
        padding: 10px 40px 50px 38px;
    }

    .services-container .services img {
        display: none;
    }



    footer {
        display: grid;
        grid-template-columns: 1fr 1fr;
        height: 35px;
        position: fixed;
        bottom: 0;
        width: 100%;
        background-color: var(--primary-text-color);
    }

    .footer-logo-container {
        display: flex;
        max-height: 35px;
        max-height: 35px;
        align-items: center;
        width: 100px;
        margin-left: 38px;
        margin-top: 15px;
    }

        .footer-logo-container img {
            width: 100%;
            height: 35px;
            max-height: 60px;
            max-width: 90px;
            grid-column: 1 / 2;
        }

    footer a {
        text-decoration: none;
        color: var(--white-color);
    }

    #div-footer {
        padding-bottom: 30px;
    }

    .footer-copyright {
        height: 35px;
    }

    .copyright {
        margin-top: 8px;
        position: fixed;
        right: 0;
        margin-right: 20px;
    }

        .copyright h3 {
            color: var(--white-color);
            font-size: 15px;
            font-family: Arial, sans-serif;
        }

    .minContentOnSmall
    {
        width:min-content !important;
    }
}

@media all and (min-width: 625px) and (max-width: 890px) {
    header {
        display: grid;
        grid-template-columns: 1fr 1fr;
        height: 65px;
    }
    /*logo starts here*/
    .logo-container {
        display: flex;
        width: 350px;
        flex-wrap: nowrap;
        margin-left: 38px;
        max-height: 65px;
        margin-top:2px;
    }

    #div-logo {
        max-height: 65px;
        align-items: center;
        width: max-content;
        white-space: nowrap;
    }

    .logo-container img {
        width: 100%;
        height: 80px;
        max-height: 60px;
        max-width: 140px;
        transition: var(--transition);
        grid-column: 1/2;
    }



    #div-logo-name {
        font-family: Arial;
        padding: 14px 3px 3px 14px;
        align-items: center;
        color: white;
        font-weight: 600;
        width: max-content;
        white-space: nowrap;
        overflow: hidden;
        position: relative;
        top: 4px;
    }

    .locker {
        border-right: 2px solid #c8c4d4;
        height: 36px;
        margin-top: 12px;
    }

    /*end logo*/

    /*hamburger menu*/
    .bar {
        display: block;
        height: 3px;
        width: 20px;
        background-color: var(--primary-text-color);
        margin: 5px 2px;
        border-radius: 30%;
    }

    .button {
        position: absolute;
        padding: 1rem;
        right: 0;
        top: 0;
        cursor: pointer;
        height: 65px;
        z-index: 998;
        /*end hamburger menu*/
    }
        nav {
        display: none;
    }

    /*state-nav-menu*/

    .sidebar .state-nav-menu {
        margin-top: 100px;
    }

        .sidebar .state-nav-menu a {
            color: var(--primary-text-color);
            font-size: 18px;
            font-weight: 600;
            font-family: Arial;
            text-decoration: none;
        }

    .sidebar .state-menu h4 {
        margin: 0;
        border-top: 1px solid #FFF;
        border-bottom: 1px solid #CCC;
        padding: 7px 10px;
        margin-top: 70px;
        font-family: Arial;
        font-size: 14px;
        color: var(--primary-text-color);
    }

    .sidebar .state-menu a:hover {
        text-decoration: none;
        color: var(--white-color);
    }

    .sidebar .state-nav-menu .state-nav-item {
        position: relative;
        cursor: pointer;
        -webkit-transform: translateY(-20px);
        -moz-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        -o-transform: translateY(-20px);
        transform: translateY(-20px);
    }

        .sidebar .state-nav-menu .state-nav-item a {
            color: var(--primary-text-color);
            font-family: var(--primary-font);
            font-size: 15px;
            font-weight: 500;
            text-decoration: none;
            display: block;
            padding: 5px 30px;
        }

            .sidebar .state-nav-menu .state-nav-item a:hover {
                background: var(--primary-text-color);
                color: var(--white-color);
                transition: 0.3s ease;
            }

        .sidebar .state-nav-menu .state-nav-item i {
            position: relative;
            margin-right: 15px;
            color: #6c7785;
        }

/*Contact use button starts here*/
    button-ask {
        position: relative;
        border: 0;
        display: inline-block;
        width: 12rem;
        height: auto;
        cursor: pointer;
        outline: none;
        vertical-align: middle;
        background: transparent;
    }

    .text-ask {
        position: absolute;
        inset: 0;
        padding: 0.9rem 0;
        margin-left: 1.85rem;
        color: var(--primary-text-color);
        line-height: 1.6;
        text-align: center;
        transition: all 0.4s ease-in-out;
        font-weight: 600;
        margin-bottom: 30px;
    }

        .text-ask a {
            color: #000;
            font-family: Arial,sans-serif;
            font-size: 15px;
            list-style-type: none;
            text-decoration: none;
            transition: all 0.4s ease-in-out;
        }

    .circle-ask {
        position: relative;
        display: block;
        margin: 0;
        width: 3rem;
        height: 3rem;
        background: var(--soft-black-color);
        border-radius: 1.625rem;
        transition: all 0.4s ease-in-out;
    }

    .icon-ask {
        position: absolute;
        top: 0;
        bottom: 0;
        margin: auto;
        background:;
    }

    .arrow-ask {
        left: 0.625rem;
        width: 1.125rem;
        height: 0.125rem;
        background: none;
        transition: all 0.4s ease-in-out;
    }

        .arrow-ask::before {
            content: "";
            position: absolute;
            top: -0.3rem;
            right: 0.0625rem;
            width: 0.625rem;
            height: 0.625rem;
            border-top: 0.125rem solid var(--white-color);
            border-right: 0.125rem solid var(--white-color);
            transform: rotate(45deg);
        }

    button-ask:hover .arrow-ask::before {
        content: "";
        position: absolute;
        top: -0.3rem;
        right: 0.0625rem;
        width: 0.625rem;
        height: 0.625rem;
        border-top: 0.125rem solid #000;
        border-right: 0.125rem solid #000;
        transform: rotate(45deg);
    }

    button-ask:hover .circle-ask {
        width: 100%;
        background: var(--brand-color);
    }

        button-ask:hover .circle-ask a {
            background: #000;
        }

    button-ask:hover .icon-ask {
        background: #000;
    }

    button-ask:hover .arrow-ask {
        border-top: #000;
        border-right: #000;
        transform: translateX(1rem);
    }

    button-ask:hover .text-ask {
        color: #000;
    }

        button-ask:hover .text-ask a {
            color: #000;
            transition: all 0.4s ease-in-out;
        }

    .learn-more-btn-container {
        display: none;
    }

    .contact-btn-container {
        max-width: 540px;
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
        margin-right: auto;
        margin-left: auto;
    }

    .contact-xl-screen {
        display: none;
    }

    .contact-sm-screen {
        display: block;
    }


    /*alternate header */
    .alternate-header-section {
        max-width: 100%;
        background-color: var(--alternate-bg);
    }

    .alternate-head-container {
        padding: 80px 10px 80px 10px;
        height: 380px;
        min-height: 270px;
        margin-left: 20px
    }

    .landing-page h1 {
        font-family: var(--secondary-font-bold);
        font-size: 30px;
        font-weight: 700;
        color: var(--primary-text-color);
        line-height: .60;
        letter-spacing: 1px;
        margin: 10px 0 20px 10px;
    }

    .landing-page p {
        margin: 10px 10px 20px 38px;
        font-family: Arial, sans-serif;
        font-size: 15px;
        color: var(--primary-text-color);
    }

   
    .state-page h1 {
        font-family: var(--secondary-font-bold);
        font-size: 50px;
        font-weight: 700;
        color: var(--primary-text-color);
        line-height: .60;
        letter-spacing: 1px;
        margin: 10px 0 140px 38px;
    }



    #divhow-to-help h2 {
        font-weight: 600;
        font-size: 24px;
        font-family: Arial;
        color: #2B3A44;
        letter-spacing: -0.48px;
        margin-bottom: 40px;
    }


    /*mid section starts here*/
    .mid-section {
        max-width: none;
        margin: 30px 50px 100px 50px;
        position: relative;
    }

        .mid-section p {
            display: block;
            font-family: Arial;
            font-size: 15px;
            line-height: 1.86;
            letter-spacing: 0.4px;
            margin-bottom: 40px;
            color: var(--primary-text-color);
        }

        .mid-section h2 {
            font-weight: 600;
            font-size: 24px;
            letter-spacing: -0.48px;
            font-family: var(--secondary-font-normal);
            color: var(--primary-text-color);
        }

    /*sections start here*/
    .services-section {
        max-width: 100%;
        background-color: var(--alternate-bg);
    }

    .services-container {
        position: relative;
        width: 100%;
        background-color: var(--alternate-bg);
        bottom: 0;
    }


        .services-container h2 {
            font-weight: 600;
            font-size: 24px;
            font-family: Arial;
            color: #2B3A44;
            letter-spacing: -0.48px;
        }

        .services-container h3 {
            font-family: Arial, sans-serif;
            font-size: 15px;
            letter-spacing: -0.36px;
            font-weight: 500;
        }


    .services-content-wrapper {
        padding: 10px 40px 80px 38px;
    }

    .services-container .services img {
        display: none;
    }

    #divservices-contact,
    #divservices-about {
        position: absolute;
        width: 100%;
        background-color: var(--alternate-bg);
        bottom: 0;
    }

    .copyright {
        margin-top: 22px;
        position: fixed;
        right: 0;
        margin-right: 100px;
    }


        .copyright h3 {
            color: var(--white-color);
            font-size: 15px;
            font-family: var(--secondary-font-normal);
            text-decoration: none;
        }

    /*footer starts here*/
    .footer-section {
        position: fixed;
        bottom: 0;
        left: 0;
        height: 180px;
        width: 100%;
    }

    footer {
        display: grid;
        grid-template-columns: 1fr 1fr;
        height: 65px;
        position: fixed;
        bottom: 0;
        width: 100%;
        background-color: var(--primary-text-color);
    }

    .footer-logo-container {
        display: flex;
        max-height: 65px;
        align-items: center;
        width: max-content;
        white-space: nowrap;
        margin-left: 38px;
        max-height: 65px;
        margin-top: 15px;
    }

        .footer-logo-container img {
            width: 100%;
            height: 80px;
            max-height: 60px;
            max-width: 140px;
            grid-column: 1 / 2;
        }

    footer a {
        text-decoration: none;
        color: var(--white-color);
    }

    #div-footer {
        padding-bottom: 30px;
    }

    .footer-logo {
        float: left;
        margin: 0 0 20px 33px;
        bottom: 0;
    }

    .footer-copyright {
        height: 65px;
    }

    .minContentOnSmall {
        width: min-content !important;
    }
}

@media all and (min-width: 890px) {

    header {
        display: grid;
        grid-template-columns: 1fr 1fr;
        height: 65px;
    }
    /*logo starts here*/
    .logo-container {
        display: flex;
        width: 350px;
        flex-wrap: nowrap;
        margin-left: 38px;
        max-height: 65px;
        margin-top:2px;
    }

    #div-logo {
        max-height: 65px;
        align-items: center;
        width: max-content;
        white-space: nowrap;
    }

    .logo-container img {
        width: 100%;
        height: 80px;
        max-height: 60px;
        max-width: 140px;
        transition: var(--transition);
        grid-column: 1/2;
    }



    #div-logo-name {
        font-family: Arial;
        padding: 14px 3px 3px 14px;
        align-items: center;
        color: white;
        font-weight: 600;
        width: max-content;
        white-space: nowrap;
        overflow: hidden;
        position: relative;
        top: 4px;
    }

    .locker {
        border-right: 2px solid #c8c4d4;
        height: 36px;
        margin-top: 12px;
    }

    .sidebar .state-nav-menu {
        display: none;
    }

    .sidebar .state-menu {
        margin-top: 100px;
    }

    /*    navigation starts here*/
    nav {
        /* all: unset;  this causes issues with Edge, since it's unsupported 
         the following lines are not from my video, but add Edge support */
        position: relative;
        text-align: left;
        transition: none;
        transform: scale(1,1);
        background: none;
        top: initial;
        left: initial;
       /* end Edge support stuff */
        grid-column: 4 / 4;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        margin-right: 1rem;
    }

        nav .c-nav-list {
            display: flex;
            margin-right: 120px;
            margin-bottom: 13px;
            width: 180px;
            position: relative;
            top: 3px;
        }

        nav .c-list-item {
            margin-left: 2em;
            margin-bottom: 0;
            list-style-type: none;
            text-decoration: none;
        }

            nav .c-list-item a {
                opacity: 1;
                position: relative;
                color: var(--white-color);
                font-family: Arial,sans-serif;
                font-size: 13px;
                font-weight: 600;
                text-transform: uppercase;
            }

            nav .c-list-item .underline::after {
                content: '';
                display: block;
                height: 5px;
                background: var(--brand-color);
                position: absolute;
                top: 2.7em;
                left: 0;
                right: 0;
                transform: scale(0, 1);
                transition: transform ease-in-out 200ms;
            }

            nav .c-list-item a:hover::after {
                transform: scale(1,1);
            }

        nav a:hover {
            color: #FFF;
            text-decoration: none;
        }
    /*
    top navigation nested dropdown menu
    alternate header with pill bottle*/
    .alternate-head-container {
        height: 465px;
        background-color: var(--alternate-bg);
        padding-top: 55px;
    }

    /*      Page Head Preferred Drug List*/
    .landing-page h1 {
        font-family: var(--secondary-font-bold);
        font-size: 50px;
        font-weight: 700;
        color: var(--primary-text-color);
        line-height: .30;
        letter-spacing: 1px;
        margin: 10px 0 40px 120px;
    }

    .landing-page p {
        margin: 10px 0 20px 120px;
        font-family: Arial, sans-serif;
        font-size: 18px;
        color: var(--primary-text-color);
        display: block;
    }

    .contact-btn-container {
        max-width: 1140px;
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
        margin-right: auto;
        margin-left: auto;
    }

    .state-page h1 {
        font-family: var(--secondary-font-bold);
        font-size: 50px;
        font-weight: 700;
        color: var(--primary-text-color);
        line-height: .60;
        letter-spacing: 1px;
        margin: 10px 0 180px 120px;
    }

    /*sections start here*/

    .alternate-header-section {
        max-width: 100%;
    }

    .landing-page .contact-sm-screen {
        display: none;
    }

    .landing-page .contact-xl-container {
        display: block;
    }

    .landing-page {
        padding-top: 40px;
        height: 410px;
        background-image: url("/Images/pdl_banner.jpg");
        background-repeat: no-repeat;
        background-position-x: right;
        background-color: var(--alternate-bg);
    }

    .state-page {
        padding-top: 40px;
        height: 410px;
        background-image: url("/Images/pdl_banner_red_pill.jpg");
        background-repeat: no-repeat;
        background-position-x: right;
        background-color: var(--alternate-bg);
    }

    .landing-page-sm-screen {
        height: 296px;
        min-height: 196px;
        background-image: url("/Images/pdl_banner.jpg");
        background-repeat: no-repeat;
        background-position-x: right;
        background-color: var(--alternate-bg);
    }

    .state-page-sm-screen {
        height: 296px;
        min-height: 196px;
        background-image: url("/Images/pdl_banner_red_pill.jpg");
        background-repeat: no-repeat;
        background-position-x: right;
        background-color: var(--alternate-bg);
    }

    /*  Contact us button start*/
    button-ask {
        position: relative;
        border: 0;
        display: inline-block;
        width: 12rem;
        height: auto;
        cursor: pointer;
        outline: none;
        vertical-align: middle;
        background: transparent;
    }

    .text-ask {
        position: absolute;
        inset: 0;
        padding: 0.9rem 0;
        margin-left: 1.85rem;
        color: var(--primary-text-color);
        line-height: 1.6;
        text-align: center;
        transition: all 0.4s ease-in-out;
        font-weight: 600;
        padding-top: 11px;
    }

        .text-ask a {
            color: #000;
            font-family: Arial,sans-serif;
            font-size: 15px;
            list-style-type: none;
            text-decoration: none;
            transition: all 0.4s ease-in-out;
        }

    .circle-ask {
        position: relative;
        display: block;
        margin: 0;
        width: 3rem;
        height: 3rem;
        background: var(--soft-black-color);
        border-radius: 1.625rem;
        transition: all 0.4s ease-in-out;
    }

    .icon-ask {
        position: absolute;
        top: 0;
        bottom: 0;
        margin: auto;
        background:;
    }

    .arrow-ask {
        left: 0.625rem;
        width: 1.125rem;
        height: 0.125rem;
        background: none;
        transition: all 0.4s ease-in-out;
    }

        .arrow-ask::before {
            content: "";
            position: absolute;
            top: -0.3rem;
            right: 0.0625rem;
            width: 0.625rem;
            height: 0.625rem;
            border-top: 0.125rem solid var(--white-color);
            border-right: 0.125rem solid var(--white-color);
            transform: rotate(45deg);
        }

    button-ask:hover .arrow-ask::before {
        content: "";
        position: absolute;
        top: -0.3rem;
        right: 0.0625rem;
        width: 0.625rem;
        height: 0.625rem;
        border-top: 0.125rem solid #000;
        border-right: 0.125rem solid #000;
        transform: rotate(45deg);
    }

    button-ask:hover .circle-ask {
        width: 100%;
        background: var(--brand-color);
    }

        button-ask:hover .circle-ask a {
            background: #000;
        }

    button-ask:hover .icon-ask {
        background: #000;
    }

    button-ask:hover .arrow-ask {
        border-top: #000;
        border-right: #000;
        transform: translateX(1rem);
    }

    button-ask:hover .text-ask {
        color: #000;
    }

        button-ask:hover .text-ask a {
            color: #000;
            transition: all 0.4s ease-in-out;
        }

 .learn-more-btn-container {
     display: none;
 }


    .mid-section {
        max-width: none;
        margin: 30px 50px 100px 50px;
        position: relative;
    }

        .mid-section p {
            display: block;
            font-family: Arial;
            font-size: 18px;
            line-height: 1.3em;
            letter-spacing: 0.4px;
            color: var(--primary-text-color);
        }

        .mid-section .about {
            display: block;
            font-family: Arial;
            font-size: 18px;
            line-height: 1.3em;
            letter-spacing: 0.4px;
            color: var(--primary-text-color);
            padding: 0 90px 0 0;
        }

        .mid-section h2 {
            font-weight: 600;
            font-size: 24px;
            font-family: Arial;
            color: #2B3A44;
            letter-spacing: -0.48px;
            margin-bottom: 40px;
        }

    .services-container {
        display: flex;
        height: auto;
        min-height: auto;
        background: var(--alternate-bg);
    }

        .services-container .services img {
            position: relative;
            right: 0;
            top: 0;
            max-width: 843px;
            max-height: 435px;
            width: 100%;
            height: auto;
        }

    .services-content-wrapper {
        display: inline;
        max-width: 470px;
        text-align: left;
        width: 100%;
        margin: 20px 80px;
    }

        .services-content-wrapper h2 {
            font-weight: 600;
            font-size: 24px;
            font-family: Arial;
            color: #2B3A44;
            letter-spacing: -0.48px;
            margin-bottom: 40px;
            white-space: nowrap;
        }

        .services-content-wrapper h3 {
            font-family: Arial;
            font-size: 18px;
            line-height: 1.86;
            letter-spacing: 0.4px;
            letter-spacing: -0.36px;
            font-weight: 500;
        }


    .copyright {
        margin-top: 22px;
        position: fixed;
        right: 0;
        margin-right: 100px;
    }


        .copyright h3 {
            color: var(--white-color);
            font-size: 15px;
            font-family: var(--secondary-font-normal);
            text-decoration: none;
        }

    /*footer starts here*/
    .footer-section {
        position: fixed;
        bottom: 0;
        left: 0;
        height: 180px;
        width: 100%;
    }

    footer {
        display: grid;
        grid-template-columns: 1fr 1fr;
        height: 65px;
        position: fixed;
        bottom: 0;
        width: 100%;
        background-color: var(--primary-text-color);
    }

    .footer-logo-container {
        display: flex;
        max-height: 65px;
        align-items: center;
        width: max-content;
        white-space: nowrap;
        margin-left: 38px;
        max-height: 65px;
        margin-top: 15px;
    }

        .footer-logo-container img {
            width: 100%;
            height: 80px;
            max-height: 60px;
            max-width: 140px;
            grid-column: 1 / 2;
        }

    footer a {
        text-decoration: none;
        color: var(--white-color);
    }

    #div-footer {
        padding-bottom: 30px;
    }

    .footer-logo {
        float: left;
        margin: 0 0 20px 33px;
        bottom: 0;
    }

    .footer-copyright {
        height: 65px;
    }
}

@media all and (min-width: 1000px) and (max-width: 1410px)
{
    .mid-section .about {
        display: block;
        font-family: Arial;
        font-size: 18px;
        line-height: 1.3em;
        letter-spacing: 0.4px;
        color: var(--primary-text-color);
        padding: 0 90px 0 0;
    }
}

@media all and (min-width: 1410px)
{
    .mid-section .about {
        display: block;
        font-family: Arial;
        font-size: 18px;
        line-height: 1.3em;
        letter-spacing: 0.4px;
        color: var(--primary-text-color);
        padding: 0 100px 0 0;
    }
}

.GainwellLink, .GainwellLink:visited {
    color: #007958 !important;
    text-decoration: none;
}

    .GainwellLink:hover {
        color: #007958 !important;
        text-decoration: underline !important;
    }
