/* Basic mobile
--------------------------------- */
* {
    margin: 0; 
    padding: 0;
}

html {
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: green;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
    background-color: #1a1a1a;
    font-family: arial, verdana, tahoma;
    margin: 0;
}





/* Header mobile
--------------------------------- */
header {
    background-color: #fff;
    text-align: center;
}
header img {
    margin: 15px auto;
    max-width: 100%;
}

/* Accordion mobile (shop)
--------------------------------- */
section.shop {
    background-color: #b0bad3;
    padding-bottom: 30px;
    padding-top: 30px;
}
.accordion {
    height: auto;
}
.accordion li {
    margin: 0 auto;
    margin-bottom: 15px;
}
.accordion li img {
    display: block;
    max-width: 100%;
}
.accordion ul li,
.accordion ul li:hover,
.accordion ul:hover li,
.accordion ul:hover li:hover {
    position: relative;
    display: table;
    table-layout: fixed;
}


.image_title {
    background: rgba(0, 0, 0, 0.5);
    left: 0; bottom: 0;
    width: 100%;
    position: absolute;
}
.image_title a {
    display: block;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    padding: 20px;
}



/* History mobile
--------------------------------- */
.history {
    text-align: center;
    margin-bottom: 90px;
}
.history ul {
    list-style-type: none;
}
.history span {
    font-size: 1.2em;
    font-weight: 900;
}
.history h2 {
    color: #fff;
}



/* Footer mobile
--------------------------------- */
footer {
    padding: 30px 0 100px 0;
    background-color: #1a1a1a;
}
footer a {
    color: #9a9a9a;
    font-size: 0.8em;
    text-decoration: none;
}
footer a:hover, footer a:active {
    text-decoration: underline;
}
footer ul {
    list-style-type: none;
}


/*  480px breakpoint
--------------------------------------------------------------------------------------- */
@media only screen and (min-width: 480px) {
    
}




/*  600px breakpoint
--------------------------------------------------------------------------------------- */
@media only screen and (min-width: 600px) {
    body {
        background: url(../images/background-03.jpg) no-repeat;
        background-color: #1a1a1a;
        background-size: cover;
    }
    header img {
        margin: 15px auto;
        max-width: auto;
    }
    section.shop {
        background-color: transparent;
    }
}




/*  768px breakpoint
--------------------------------------------------------------------------------------- */
@media only screen and (min-width: 768px) {

    section.shop {
        padding-bottom: 80px;
        padding-top: 120px;
    }

    /* Accordion Slider
    ------------------------------------------------------------------------ */
    /*
    Width of image = 640px
    total images = 6
    so width of hovered image = 640px
    width of un-hovered image = 32px - you can set this to anything
    so total container width = 640 + 32*5 = 800px;
    default width = 800/6 = 133,33px;

    Width of image = 640px
    total images = 7
    so width of hovered image = 640px
    width of un-hovered image = 42px - you can set this to anything
    so total container width = 640 + 42*6 = 800px;
    default width = 892/7 = 127,43px;
    */

    .accordion {
        width: 892px; height: 320px;
        overflow: hidden;
        margin: 0 auto;
        /*box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.35);
        -webkit-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.35);
        -moz-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.35);*/
    }

    /*A small hack to prevent flickering on some browsers*/
    .accordion ul {
        width: 2000px;
    }

    .accordion ul li {
        position: relative;
        display: block;
        width: 127.43px;
        float: left;

        box-shadow: 0 0 25px 10px rgba(0, 0, 0, 0.5);
        -webkit-box-shadow: 0 0 25px 10px rgba(0, 0, 0, 0.5);
        -moz-box-shadow: 0 0 25px 10px rgba(0, 0, 0, 0.5);

        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
    }
    .accordion li img {
        display: block;
        max-width: none;
    }
    .image_title {
        max-width: none;
        width: 640px;
    }

    /*Reduce with of un-hovered elements*/
    .accordion ul:hover li { width: 42px; }
    /*Lets apply hover effects now*/
    /*The LI hover style should override the UL hover style*/
    .accordion ul li:hover { width: 640px; }

}




/*  992px breakpoint  
--------------------------------------------------------------------------------------- */
@media only screen and (min-width: 992px) {
    
}




/*  1382px breakpoint
--------------------------------------------------------------------------------------- */
@media only screen and (min-width: 1382px) {
    body {
        margin: 0 auto;
    }
}
