   body,html
            {
                max-width: 100%;
                overflow-x: hidden;
            }
            .telephonelink
            {
                color: #0757ca;
                font-size: 130%;
                text-decoration: none;
            }
            
             .hreflink
            {
                color: #0757ca;
                font-size: 130%;
                text-decoration: none;
            }
            .plantitle
            {
                font-size: 140%;
                width:100%;
                text-align: center;
                padding:10px;
            }
            .pricingdiv{
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                font-family: 'Source Sans Pro', Arial, sans-serif;
                padding: 10px;
            }

            .pricingdiv ul.theplan{
                list-style: none;
                margin: 0;
                padding: 0;
                display: flex;
                flex-direction: column;
                border-top-left-radius: 50px;
                border-bottom-right-radius: 50px;
                color: white;
                background: #7c3ac9;
                position: relative;
                width: 250px; /* width of each table */
                margin-right: 10px; /* spacing between tables */
                margin-bottom: 1em;
                transition: all .5s;
            }

            .pricingdiv ul.theplan:hover{ /* when mouse hover over pricing table */
                transform: scale(1.05);
                transition: all .5s;
                z-index: 100;
                box-shadow: 0 0 10px gray;
            }

            .pricingdiv ul.theplan li{
                margin: 10px 20px;
                position: relative;
            }

            .pricingdiv ul.theplan li.title{
                font-size: 120%;
                font-weight: bold;
                text-align: center;
                margin-top: 20px;                
                border-bottom: 5px solid white;
            }

            .homeunlimited
            {
                background-color:cyan;
            }
            .homeunlimited ul.theplan:nth-of-type(2){
                background: #e53499;
            }

            .homeunlimited ul.theplan:nth-of-type(3){
                background: #2a2cc8;
            }

            .homeunlimited ul.theplan:last-of-type{ /* remove right margin in very last table */
                margin-right: 0;
            }

            .homefup
            {
                background-color:orange;
            }
            .homefup ul.theplan:nth-of-type(2){
                background: #e534ff;
            }

            .homefup ul.theplan:nth-of-type(3){
                background: #2a2aa8;
            }

            .homefup ul.theplan:last-of-type{ /* remove right margin in very last table */
                margin-right: 0;
            }

            .smeplan
            {
                background-color:pink;
            }
            .smeplan ul.theplan:nth-of-type(2){
                background: #1a34ff;
            }

            .smeplan ul.theplan:nth-of-type(3){
                background: #5b2aa8;
            }

            .smeplan ul.theplan:last-of-type{ /* remove right margin in very last table */
                margin-right: 0;
            }

            /*very last LI within each pricing UL */
            .pricingdiv ul.theplan li:last-of-type{
                text-align: center;
                margin-top: auto; /*align last LI (price botton li) to the very bottom of UL */
            }  

            .pricingdiv a.pricebutton{
                background: white;
                text-decoration: none;
                padding: 10px;
                display: inline-block;
                margin: 10px auto;
                border-radius: 5px;
                color: navy;
                text-transform: uppercase;
            }
            #fixed-div-left-top {
                position: fixed;
                top: 1em;
                left: 1em;
                z-index: 2;
            }
            #fixed-div-right-top {
                position: fixed;
                top: 1em;
                right: 1em;
                z-index: 2;
            }

            #fixed-footer-div{
                width: 100%;
                text-align: center;
                padding:4px;
                background-color: yellowgreen;
            }
            @media (max-width: 500px) {
                #fixed-div-left-top {
                    width:100%;
                    margin:0px;
                    padding:0px;
                    padding-bottom: 10px;
                    margin-right: 50px;
                    text-align: right;
                    left:0em;
                    position: relative;
                }
                #fixed-div-right-top {
                    width:100%;
                    margin:0px;
                    padding:0px;
                    padding-bottom: 10px;
                    text-align: center;
                    position: relative;
                    right:0em;
                }
                .pricingdiv ul.theplan{
                    border-radius: 0px;
                    width: 100%;
                    margin-right: 0px;
                }

                .pricingdiv ul.theplan:hover{
                    transform: none;
                    box-shadow: none;
                }

                .pricingdiv a.pricebutton{
                    display: block;
                }
            }
