/*Reset*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, i, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
/*Grid*/
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
a {
  text-decoration: none;
  background-color: transparent;
}
a:active,
a:hover {
  outline: 0;
}
b,
strong {
  font-weight: bold;
}
small {
  font-size: 80%;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.row {
    margin-left: -15px;
    margin-right: -15px;
}
.col-xs-6, .col-md-6, .col-xs-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
.col-xs-6, .col-xs-12 {
  float: left;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-6 {
    width: 50%;
}
@media (min-width: 768px) {
  .col-md-6 {
    float: left;
    width: 50%;
  }
}
/*Floats & Clearfix*/
.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.row:before,
.row:after {
  content: " ";
  display: table;
}
.clearfix:after,
.container:after,
.row:after {
  clear: both;
}
/*Typography*/
html {
    font-family: lato, helvetica, sans-serif;
    font-size: 17px;
}
@font-face {
  font-family: 'Glyphicons Halflings';
  src: url('../fonts/glyphicons-halflings-regular.eot');
  src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
}
.glyphicon {
  position: relative;
  top: 3px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.glyphicon-menu-down:before {
  content: "\e259";
}
/*Header and Nav*/
header{
    height: 66px;
    border-bottom: 1px solid #31313F;;
}
.logo{
    margin-left: 10px;
    margin-top: 20px;
    max-width: 240px;
}
.menu {
    display: none;
    margin-top:20px;
    position: relative;
    z-index: 3;
    background: #fff;
}
.open {
    display: block;
}
.menu li {
    height: 40px;
    text-align: center;
    border-bottom: 1px solid #31313F;;
}
.category{
    background: #F7941D;
    color: #fff;
    padding-top: 12px;
}
.menu li a {
    color: #000;
    display: block;
    height: 40px;
    padding-top: 12px;
}
.menu-button{
    float: right;
    width: 55px;
    height: 46px;
    background: #fff;
    color: #31313F;
    border: 2px solid #31313F;
    border-radius: 3px;
    margin-top: 10px;
    margin-right: 10px;
}
.desktop-nav{
    display: none;
}
/*Dropdown*/
/* Dropdown Button */
.dropbtn {
    color: #000;
    margin-top: -1px;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}
/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}
/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;  
    border-left: 1px solid #aaa;
    border-bottom: 1px solid #aaa;
    border-right: 1px solid #aaa;   
    min-width: 250px;
}
.dropdown-content-small{
    min-width: 170px;
}
/* Links inside the dropdown */
.dropdown-content a {
    color: #000;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}
/* Change color of dropdown links on hover */
.dropdown-content a:hover {    
    background-color: #B0D4F6;
    color: #fff;
}
/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}
/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn,
.dropbtn:hover {
    background-color: #D2143F;
    color: #fff;
}
/*Lead*/
.lead{
    margin-left: -15px;
    margin-right: -15px;
    height:250px;
    background-image: url(../images/store-lead.jpg);
    background-position: 100% 100%;
    background-size :cover;
    padding-top: 80px;
}
.lead h1 {
    font-size: 25px;
    color: #fff;
    text-align: center;
}
/*Section 1*/
.first-section {
    border-top: 1px solid #31313F;;
    border-bottom: 1px solid #31313F;;
    background: #DEEAD7;
    padding-bottom: 100px;
}
.first-section h1, .first-section h2 {
    color: #505050;
    text-align: center;
    margin-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
}
.first-section h1 {
    font-size: 20px;
    font-weight: 700;
}
.product-container {   
    width: 100%;
    height: 370px;
    background: #fff;
    display: block;
    margin: 0 auto;
    margin-top: 100px;
    color: #505050;
}
.case {
    width: 100px;
    margin-top: -50px;
}
.prod-name {  
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;   
}
.offer-description {
    font-weight: 300;
    max-width: 400px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
}
.prices {
    max-width: 400px;
    margin: 0 auto;
}
.offer-price, .discount-price {
    padding-left: 30px;
    padding-right: 30px;
    font-size: 16px;
}
.discount-price p {
    float: right;
    color: #A8A9AB;
}
.discount-price p:last-of-type {
    clear: both;
    text-decoration: line-through;
    color: #A8A9AB;
    font-size: 20px;
}
.offer-price p:last-of-type {
    font-size: 20px;
}
.button {
    display:block;
    text-align: center;
    color: #fff;
    text-shadow: 0 1px 0 #ccc;
    border: 1px solid #2C2D21; 
    border-radius: 3px;
    padding-top: 17px;
    margin: 30px auto;
    width: 150px;
    height: 50px;
    font-size: 17px;
    background-color: #FFC10D;
    background-image: -moz-linear-gradient(top,#FFDA4D, #FFC313);
    background-image: -webkit-gradient(linear,0 0,0 100%,from(#FFDA4D),to(#FFC313));
    background-image: -webkit-linear-gradient(top, #FFDA4D, #FFC313);
    background-image: -o-linear-gradient(top,#FFDA4D, #FFC313);
    background-image: linear-gradient(to bottom,#FFDA4D,#FFC313);
    background-repeat: repeat-x;
    border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff12aa00',endColorstr='#ff0f8e00',GradientType=0);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
    -webkit-box-shadow: inset 0 1px 0 #F3EA50,inset -1px 0 0 #EFBE0C,inset 0 -1px 0 #EFE50C,inset 1px 0 0 #ECEF0C,0 1px 2px -1px rgba(0,0,0,.85);
    -moz-box-shadow: inset 0 1px 0 #F3EA50,inset -1px 0 0 #EFBE0C,inset 0 -1px 0 #EFE50C,inset 1px 0 0 #ECEF0C,0 1px 2px -1px rgba(0,0,0,.85);
    box-shadow: inset 0 1px 0 #F3EA50,inset -1px 0 0 #EFBE0C,inset 0 -1px 0 #EFE50C,inset 1px 0 0 #ECEF0C,0 1px 2px -1px rgba(0,0,0,.85);
}
.button:hover {
    background-color: #FFC10D;
    background-image: -moz-linear-gradient(top,#FFDA4D, #FFC313);
    background-image: -webkit-gradient(linear,0 0,0 100%,from(#FFDA4D),to(#FFC313));
    background-image: -webkit-linear-gradient(top, #FFDA4D, #FFC313);
    background-image: -o-linear-gradient(top,#FFDA4D, #FFC313);
    background-image: linear-gradient(to bottom ,#FFDA4D, #FFD713);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff12aa00',endColorstr='#ff0f8e00',GradientType=0);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
    -webkit-box-shadow: inset 0 1px 0 #F3EA50,inset -1px 0 0 #EFBE0C,inset 0 -1px 0 #EFE50C,inset 1px 0 0 #ECEF0C,0 1px 2px -1px rgba(0,0,0,.85);
    -moz-box-shadow: inset 0 1px 0 #F3EA50,inset -1px 0 0 #EFBE0C,inset 0 -1px 0 #EFE50C,inset 1px 0 0 #ECEF0C,0 1px 2px -1px rgba(0,0,0,.85);
    box-shadow: inset 0 1px 0 #F3EA50,inset -1px 0 0 #EFBE0C,inset 0 -1px 0 #EFE50C,inset 1px 0 0 #ECEF0C,0 1px 2px -1px rgba(0,0,0,.85);
}
/*Footer*/
.footer {
    margin-left: -15px;
    margin-right: -15px;
    height: 655px;
    background: #eeeeee;
}
.footer-container{
    padding-top: 50px;
    position: relative;
    margin: 0 auto;
}
.footer small{
    text-align: center;
}
.footer-list img{   
    display: inline-block;
    height: 26px;
    width: 26px;
    margin-top: -0.30em;
    margin-right: 10px;
    float: left;
}
.footer-list li {
    margin-bottom: 25px;
}
.footer-list a {
    color: #1a1a1a;
}
.footer-list a:visited {
    color: #000;
}
.footer-list a:hover {
    color: #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
}
.footer-list a img {
    border: none;
}
.footer-list  {
    display: block;
    position: relative;
    margin: 0 auto;
}
.ul-wrapper {
    width: 250px;
    position: relative;
    margin: 20px auto;
}
.ul2 {
    margin-bottom: 50px;
}
/*Media Queries*/
@media screen and (min-width: 544px){
    .logo { 
        max-width: 300px;
    }
    .menu {   
        margin-top:14px;
    }
    .lead h1 {
        padding-left: 20px;
        padding-right: 20px;
    }
    .product-container {
        width: 450px;
        height: 350px;
    }
}
@media screen and (min-width: 768px){
    .product-container {
        width: 330px;
    }
    .left {
        -webkit-box-shadow: -10px 10px 15px -5px rgba(71,71,71,0.5);
        -moz-box-shadow: -10px 10px 15px -5px rgba(71,71,71,0.5);
        box-shadow: -10px 10px 15px -5px rgba(71,71,71,0.5);
    }
    .right {
        -webkit-box-shadow: 10px 10px 15px -5px rgba(71,71,71,0.5);
        -moz-box-shadow: 10px 10px 15px -5px rgba(71,71,71,0.5);
        box-shadow: 10px 10px 15px -5px rgba(71,71,71,0.5);
    }
    .product-container {
        width:355px;
        height: 390px;
    }
    .case {
        margin-top: -70px;
        width: 150px;
    }
    .footer{
        height: 365px;
    }
}
@media screen and (min-width: 992px){
    header{
        height: 50px;
    }
    .logo {
        margin-top: 13px;
        max-width: 235px;
    }
    .menu-button, .menu {
        display: none;
    }
    .desktop-nav {
        display: block;
        float: right;
    }
    .lead{
        height: 400px;       
        padding-top:150px;
    }      
    .lead h1 {
        font-size: 35px;    
    }
    .product-container {
        width: 450px;
       
    }
}
@media screen and (min-width: 1200px){
    .logo {
        margin-top: 10px;
        max-width: 300px;
    }
    .lead {      
        padding-top:0;
    }    
    .lead h1 {
        font-size: 45px;    
        padding: 150px;
    }
    .first-section-container {
        width: 1200px;
        margin: 0 auto;
    }
    .product-container {
        width: 500px;
        height: 400px;
    }
}