body {
    margin: 0px;
}
    .home-mobile {
        background-image: url('../images/carbon_fiber_texture.jpg');
        background-repeat: no-repeat; 
        background-size: cover;
        background-attachment: fixed;
        height: 100vh;
    }
    .home {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        justify-content: center;
        grid-row-gap: 20px;
        margin-top: 10px;
        background-image: url('../images/carbon_fiber_new.png');
        background-repeat: repeat;
    }
    .home div {
        text-align: center;
        width: 100%;
    }
    .showcase {
        display: none;
    }
    .home .logo {
        display: none;
    }
    .home .contact {
        font-family: 'Roboto', sans-serif;
        color: white;
        font-size: 1.3em;
        padding-top: 20px;
    }
    .home .phone {
        display: none;
    }
    .home .custom_img_wrapper {
        position: relative;   
        left: 50%;
        transform: translateX(-50%);        
    }
    .home .custom #custom_img {
        width: 100%;

    }
    .home .custom #custom_caption {
        position: absolute;
        bottom: 20px;
        font-family: 'Roboto', sans-serif;
        color: white;
        font-size: 1.5em;
        line-height: 30px;
        font-weight: bold;
        width: 85%;
        left: 50%;
        transform: translate(-50% , 0);
    }
        
    
    .showcase {
        display: grid;
        grid-template-columns: repeat(2, minmax(100px, 200px) );
        grid-gap: 5px;
        justify-content: center;
        max-width: 95%;
    }
    .showcase .title {
        font-family: 'Roboto', sans-serif;
        font-weight: bold;
        font-size: 1.2em;
        background-color: blue;
        color: white;
        padding: 3px 0;
        text-align: center;
        border-width: 1px 1px 0px 1px;
        border-color: white;
        border-style: solid;
        border-radius: 5px 5px 0px 0px;        
    }
    .showcase .category a {
        text-decoration: none;
    }
    .showcase .pic {
        overflow: hidden;
        border-width: 0px 1px 1px 1px;
        border-color: white;
        border-style: solid;
        background-color: white;
    }
    .showcase .pic img {
        max-width: 100%;
        transition: transform .2s; /* Animation */
    }
    .showcase .pic img:hover {
        transform: scale(1.2);
    }
    
    @media(min-width: 850px) {
        .showcase {
            grid-template-columns: repeat(4, minmax(110px, 200px));
        }
    }    
    
    
    .polar {
        font-family: 'Roboto', sans-serif;
        color: white;        
        text-align: left;
    }
    .polar .polar_pic_list {
        display: flex;
        flex-flow: row nowrap;
        flex: 50%;
        margin-top:10px;
        align-items: flex-start;
        margin-bottom: 10px;
    }
    .polar #polar_pic {
        max-width: 40%;
    }
    .polar #polar_heading {
        font-weight: bold;
        font-size: 1.8em;
    }
    .polar ul {
        margin: 0;
        text-align: left;
        padding-left: 20px;
        font-size: 0.9em;
    }
    .polar ul li {
        margin-bottom: 10px;
        padding-left: 0px;
        margin-left: 0px;
    }
    .polar button {
        margin-top: 5px;
        border-radius: 5px;
        font-weight: bold;
        padding: 10px;
        color: white;
        background-color: darkblue;
        border: 3px white solid;
    }
    .polar button:hover {
        box-shadow: 0 0 15px rgba(204, 204, 51, 0.6);        
    }    
    .map iframe {
        max-width: 100%;
        height: 350px;
        frameborder: 0;
        border: 0;
    }    

    .footer {
        font-family: 'Roboto', sans-serif;
        text-align: center;
        font-size: 0.8em;
        color: white;
        padding-bottom: 10px;
    }
    .footer a {
        text-decoration: none;
        color: white;
    }
    
    @media(max-width:560px) {
        #scroll {
            display: none;
        }
        #mainlogo {
            max-width: 300px;
        }
    }
    
    @media(min-width: 560px) {
        .home {
            grid-template-columns: auto auto;
            grid-template-rows: auto;
            grid-gap: 20px;
            grid-row-gap: 20px;
            margin-top: 0px;


            grid-template-areas: "logo contact"
                                "teamusa map"
                                "showcase custom"
                                "showcase polar"
                                "showcase onewheel"
                                "footer footer";
            width: none;
            box-sizing: border-box;
            justify-content: center;
            padding-left: 10px;
            padding-right: 10px;
        }
        .home .contact {
            grid-area: contact;
            font-size: 1.5em;
        }
        .home .contact .phone {
            display: inline;
            font-size: 1.5em;
        }
        .home .logo {
            grid-area: logo;
            display: inline;  
            align-self: center;
        }
        .home .logo img {
            max-width: 100%;
        }
        .home .showcase {
            grid-area: showcase;
        }
        .home .custom {
            grid-area: custom;
        }
        .home .custom_img_wrapper {
            max-width: 300px;
        }        
        .home .custom #custom_img {
            width: none;
            min-width: 200px;
            max-width: 100%;
        } 
        .home .polar {
            grid-area: polar;
        }
        .home .map {
            grid-area: map;
            align-self: center;            
        }
        .home .map iframe {
            max-height: 150px;
        }
        .home .onewheel {
            grid-area: onewheel;
        }
        .home .footer {
            grid-area: footer;
        }
        .home .teamusa {
            grid-area: teamusa;
        }
    }

    @media(min-width: 850px) {
        .home {
            grid-template-columns: auto auto;
            grid-template-rows: auto;
            grid-gap: 20px;
            grid-template-areas: "logo contact"
                                "showcase teamusa"
                                "showcase polar"
                                "custom onewheel"
                                "custom map"
                                "footer footer";  
        }
    }
    
    @media(min-width: 1000px) {
        .home {
            grid-template-columns: auto auto auto;
            grid-template-rows: auto;
            grid-gap: 25px;
            grid-template-areas: "logo contact map"
                                "teamusa showcase onewheel"
                                "custom showcase polar"
                                "footer footer footer";
        }        
    }
    
    @media(min-width: 1200px) {
        .home {
            padding-top: 70px;
        }
        .home .logo img {
            max-width: 120%;
        }        
        .home .contact {
            font-size: 2.0em;
        }
        .home .contact .phone {
            font-size: 2.0em;
        }  
        .home .map iframe {
            max-height: 200px;
        }        
    }    

    @media (min-width: 1050px) and (max-width: 1300px) {
        .home .custom #custom_caption { 
        bottom: 10px;
        font-size: 1.2em;
        line-height: 20px;
        }
    }
    @media (min-width: 950px) and (max-width: 1050px) {
        .home .custom #custom_caption { 
        bottom: 10px;
        font-size: 1.1em;
        line-height: 20px;
        }        
    }
    .teamusa {
        padding: 5px;
        background-color: white;
        border-radius: 10px;
        border: 5px solid silver;
        margin: auto;
        max-width: 200px;
    }

    .teamusa button {
        margin-top: 5px;
        border-radius: 5px;
        font-weight: bold;
        padding: 8px;
        background: -webkit-linear-gradient(red, blue); /* For Safari 5.1 to 6.0 */
        background: -o-linear-gradient(red, white, blue); /* For Opera 11.1 to 12.0 */
        background: -moz-linear-gradient(red, white, blue); /* For Firefox 3.6 to 15 */
        background: linear-gradient(red, white, blue); /* Standard syntax (must be last) */
    }
    .teamusa button:hover {
        filter: brightness(120%);
        cursor: pointer;        
    }     
    
    