:root {
    --black: #1c1d21;
    --blue: #005694;
    --white: #f5f5f5;
    --gray: #66666e;
    --lightgray: #ededed;
    --RomanSilver: #848c8e;
}


/* Classes */

.mainArea {
    margin-left: 150px;
    font-family: 'Poppins', sans-serif;
}

.footer {
    background-color: var(--black);
    color: white;
    text-align: center;
    padding: 10px;
    position: absolute;
    bottom: 0;
    font-family: 'Montserrat', sans-serif;
}

.rowDivide {
    background-color: var(--RomanSilver);
    width: 90%;
    height: 1px;
    margin: auto;
    margin-bottom: 15px;
    
}

.spacer {
    height: 10%;
}

.shopBtn-thank {
    position: absolute;
    top: 70%;
    left: 50%;
}

.shopBtn-thank a {
    background-color: var(--blue);
    padding: 10px;
    border-radius: 16px;
    color: var(--white);
    box-shadow: 0px 5px #013e6b;
    transition: transform .3s, box-shadow .3s;
}

.shopBtn-thank a:hover {
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 0 #013e6b;
}

 .mapouter {
    float: left;
    text-align:right;
    height:700px;
    width:900px;
    margin-bottom: 40px;
}

.gmap_canvas {
    overflow:hidden;
    background: none!important;
    height:700px;
    width:900px;
}

.mapInfo {
    margin: 10px;
    
}

.productCard-location {
    float: left;
    height: 270px;
    width: 30%;
    background-color: var(--lightgray);
    margin: 20px;
    transition: box-shadow .3s;
    box-shadow: 0 4px rgba(0,0,0,0.12), 0 2.5px rgba(0,0,0,0.24);
    text-align: center;
}

.productCard-location h4 {
    text-align: center;
    padding: 20px;
}


.productCard-location p {
    margin-bottom: 30px;
    padding: 10px;
}

.productCard-location:hover {
    box-shadow: 0 16px 32px rgba(0,0,0,0.12), 0 10px 10px rgba(0,0,0,0.24);
}

.photo {
    text-align: center;
}


/* Banner Images */

.bannerImage-home {
    height: 75vh;
    width: 100%;
    background-image: url(../images/basketball.jpg);
    background-attachment: fixed;
    background-size: cover;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
    text-align: center;
}

.bannerImage-products {
    height: 75vh;
    width: 100%;
    background-image: url(../images/ski.jpg);
    background-attachment: fixed;
    background-size: cover;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
    text-align: center;
}

.bannerImage-location {
    height: 75vh;
    width: 100%;
    background-image: url(../images/map.jpg);
    background-attachment: fixed;
    background-size: cover;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
    text-align: center;
}

.bannerImage-thank {
    height: 100vh;
    width: 100%;
    background-image: url(../images/sunset.jpg);
    background-attachment: fixed;
    background-size: cover;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
    text-align: center;
}

.bannerImage-shoes {
    height: 75vh;
    width: 100%;
    background-image: url(../images/shoes.jpg);
    background-attachment: fixed;
    background-size: cover;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
    text-align: center;
}

.bannerImage-backpack {
    height: 75vh;
    width: 100%;
    background-image: url(../images/backpack1.jpg);
    background-attachment: fixed;
    background-size: cover;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
    text-align: center;
}


.bannerImage-sunglasses {
    height: 75vh;
    width: 100%;
    background-image: url(../images/sunglasses.jpg);
    background-attachment: fixed;
    background-size: cover;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
    text-align: center;
}

.bannerImage-ball {
    height: 75vh;
    width: 100%;
    background-image: url(../images/balls.jpg);
    background-attachment: fixed;
    background-size: cover;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
    text-align: center;
}

.bannerImage-gallery {
    height: 75vh;
    width: 100%;
    background-image: url(../images/camera.jpg);
    background-attachment: fixed;
    background-size: cover;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
    text-align: center;
}

.bannerImage-contact {
    height: 75vh;
    width: 100%;
    background-image: url(../images/contact.jpg);
    background-attachment: fixed;
    background-size: cover;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
    text-align: center;
}

.bannerImage-board {
    height: 75vh;
    width: 100%;
    background-image: url(../images/boards.jpg);
    background-attachment: fixed;
    background-size: cover;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
    text-align: center;
}

.bannerImage-golf {
    height: 75vh;
    width: 100%;
    background-image: url(../images/golf.jpg);
    background-attachment: fixed;
    background-size: cover;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
    text-align: center;
}

.bannerText {
    text-align: center;
    padding: 10px;
    font-family: 'Anton', sans-serif;
    position: relative;
    top: 45%;
    background-color: rgba(0,0,0,0.4);
    color: white;
    text-shadow: 1px 1px black;
}

/* About Cards Area */

.aboutCard {
    min-height: 250px ;
    width: 80%;
    background-color: var(--lightgray);
    margin: 20px;
    transition: box-shadow .3s;
    box-shadow: 0 4px rgba(0,0,0,0.12), 0 2.5px rgba(0,0,0,0.24);
    text-align: center;
    border-radius: 5px;
}

.aboutCard h4 {
    text-align: center;
    padding: 20px;
}

.aboutCard h5 {
    margin-bottom: 30px;
    padding: 10px;
}

.aboutCard:hover {
    box-shadow: 0 16px 32px rgba(0,0,0,0.12), 0 10px 10px rgba(0,0,0,0.24);
}

.card-box-home {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


/* Card Product Area */

.productArea { 
    height: auto;
    width: 80%;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}

.card-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.productCard {
    min-height: 550px ;
    width: 30%;
    background-color: var(--lightgray);
    margin: 20px;
    transition: box-shadow .3s;
    box-shadow: 0 4px rgba(0,0,0,0.12), 0 2.5px rgba(0,0,0,0.24);
    text-align: center;
    border-radius: 5px;
}

.productCard h4 {
    text-align: center;
    padding: 20px;
}

.productCard img {
    width: 100%;
    height: 250px;
    margin-bottom: 25px;
}

.productCard p {
    margin-bottom: 30px;
    padding: 10px;
}

.productCard:hover {
    box-shadow: 0 16px 32px rgba(0,0,0,0.12), 0 10px 10px rgba(0,0,0,0.24);
}

.shopBtn {
    
}

.shopBtn a {
    background-color: var(--blue);
    padding: 10px;
    border-radius: 16px;
    color: var(--white);
    box-shadow: 0px 5px #013e6b;
    transition: transform .3s, box-shadow .3s;
}

.shopBtn a:hover {
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 0 #013e6b;
}

/* Gear Cards */

.saleCard {
    text-align: center;
}

.gearCard {
    min-height: 275px ;
    width: 45%;
    background-color: var(--lightgray);
    margin: 20px;
    transition: box-shadow .3s;
    box-shadow: 0 4px rgba(0,0,0,0.12), 0 2.5px rgba(0,0,0,0.24);
    text-align: center;
    overflow: hidden;
    border-radius: 5px;
}

.gearCard img {
    height: 275px;
    width: 50%;
    float: left;
}

.buyRight {
    padding: 10px;
    width: 50%;
    height: 100%;
    float: left;
}



.price {
    font-size: 1.5em;
    background-color: white;
}

.shopBtn-buy {
    
}

.shopBtn-buy a {
    position: relative;
    top: 60%;
    background-color: var(--blue);
    padding: 10px;
    border-radius: 16px;
    color: var(--white);
    box-shadow: 0px 5px #013e6b;
    transition: box-shadow .3s;
}

.shopBtn-buy a:hover {
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 0 #013e6b;
}






/* Gallery - lightbox */

.gallery{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 20px;
}
.card img{
    width: 100%;
    height: 301.45px;
    overflow: hidden;
}

.card img:hover {
    filter: blur(2px) brightness(65%);
    
}

/* Gallery Slider */
.slider {
    margin: auto;
    box-shadow: 0 16px 32px rgba(0,0,0,0.12), 0 10px 10px rgba(0,0,0,0.24);
}

.slider img {
    
}

.banner {
    padding: 20px;
    width: 100%;
    height: 40%;
    margin-bottom: 20px;
}


/* Contact Form */

.contact {
    width: 50%;
    background-color: var(--blue);
    margin: auto;
    padding: 20px;
    color: white;
    box-shadow: 0 16px 32px rgba(0,0,0,0.12), 0 10px 10px rgba(0,0,0,0.24);
    margin-top: 20px;
    margin-bottom: 20px;
}

input[type=text], textarea{
    width: 100%;
    padding: 10px 10px;
    margin: 5px 0;
    display: inline-block;
    border-radius: 4px;
    border: 1px solid var(--lightgray);
}


/* ID's */

#toggle {
    display: none;
}


/* Regular Selectors */




/* Side bar Nav */
.sidebar {
    height: 100%;
    width: 150px;
    background-color: var(--black);
    position: fixed;
    z-index: 1;
    top: 0;
    overflow-x: hidden;
    
}

.sidebar a {
    padding: 6px 8px 6px 16px;
    text-decoration: none;
    display: block;
    color: var(--white);
    border-left: 0px solid var(--white);
    transition: border-left .3s;
    font-family: 'Montserrat', sans-serif;
}

.sidebar a:hover {
    color: var(--white);
    text-decoration: none;
    border-left: 15px solid var(--white);
    transition: border-left .3s;
}

.topImage { 
    height: 15%;
    background-image: url(../images/spartan.png);
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
}



/* Media Queries */


@media(max-width: 768px) {

    
    
    
}





