/*custom css file*/

/*bootstrap breakpoints

// Extra small devices (portrait phones, less than 576px)
// No media query for `xs` since this is the default in Bootstrap

// Small devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... } sm

// Medium devices (tablets, 768px and up)
@media (min-width: 768px) { ... } md

// Large devices (desktops, 992px and up)
@media (min-width: 992px) { ... } lg

// Extra large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... } xl

*/
@font-face {
    font-family: Pockota-LightItalic;
    src: url("../fonts/Pockota-LightItalic.eot"),
         url("../fonts/Pockota-LightItalic.woff") format("woff"),
         url("../fonts/Pockota-LightItalic.woff2") format("woff2"),
         url("../fonts/Pockota-LightItalic.ttf") format("truetype"),
         url("../fonts/Pockota-LightItalic.svg#Pockota-LigthItalic") format("svg");
}
body {
    font-family: 'Pockota-LightItalic', sans-serif;
}

.hFont {
    font-family: 'Pockota-LightItalic', sans-serif;
    /*text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;*/
}
/*Header styles*/
.bkgrdHead {
    background-image: url("../images/blackglossy4.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.bkgrdHead2 {
    background-image: url("../images/slicedBreadLoaf.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
/*slider*/
.bkgrdSlider {
    background-image: url("../images/bgSlider1.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.smLogo {
    width: 15%;
}
nav ul li {
    background-color: rgba(255,255,255,.1);
}
/*side navbar styles*/
.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 999;
    top: 0;
    right: 0;
    background-color: #232222;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidebar a {
    padding: 8px 8px 8px 20px;
    text-decoration: none;
    font-size: 18px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.sidebar a:hover {
    color: #f1f1f1;
}

.sidebar .closebtn {
    position: absolute;
    top: 0;
    font-size: 36px;
}
.openbtn {

}

.openbtn:hover {
    /*background-color: #efaa2c;*/
    border-bottom: #ffffff 2px solid;
}
.btnOrder {
    color: #FFFFFF;
    background-color: #fbb02a;
    border-color: #cccccc;
}

/*link styles*/
a.bbLink:link {
    text-decoration: none;
    color: #efaa2c;
}
a.bbLink:visited {
    text-decoration: none;
    color: #efaa2c;
}
a.bbLink:hover {
    text-decoration: none;
    color: #3d6d7c;
}
a.on.link {

}
a.on.visited {

}
a.on.hover {

}

/*media styles*/
@media only screen and (min-width: 576px) {

}
@media only screen and (min-width: 768px) {
    .logo {
        width: 70%;
    }
    .smLogo {
        width: 10%;
    }
}
@media only screen and (min-width: 992px) {
    nav ul li {
        background-color: transparent;
    }
}
@media only screen and (min-width: 1200px) {
    .logo {
        width: 50%;
    }
    .hWords {
        width: 85%;
    }
    .smLogo {
        width: 5%;
    }
}