/*
  Table of Contents

  #General and Typography
  #Preloader
  #Navigation
  #Logo
  #Main Slider
  #Section - Offer
  #Section - Services
  #Section - Newsletter
  #Section - Testimonials
  #Section - Brands
  #Section - About
  #Section - Stats
  #Section - Menu
  #Section - Gallery
  #Section - Call to Action
  #Section - Contact
  #Section - Opening
  #Section - Map
  #Section - Footer
  #Miscellaneous
  #Inner Menu Pages
  #Media Queries

===========================
  General and Typography
============================ */
html{
  width: 100%;
  height: 100%; 
}

body{
  width: 100%;
  height: 100%;
  font-family: 'Open Sans',sans-serif;
  font-weight: 300;
}

p{
    font-size: 16px;
    line-height: 30px;
    color:#696767;
  margin: 0;
}

/* Headings */

h1 {
  text-transform:uppercase;
  font-size:55px;
  letter-spacing:0.7px;
  margin-bottom: 20px;
  font-weight:700;
  font-family: 'Montserrat',sans-serif;
  text-shadow: 3px 3px rgba(0,0,0, .4);
}
 
h2 {  
  font-size: 32px;
  font-family: 'Montserrat',sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform:uppercase;
  color: #161616;  
  letter-spacing:0.9px;
  display: inline;  
  z-index:999;
  line-height: 60px;
  position: relative;
}
h2:before{
  content: '';
    position: absolute;
    display: block;
    width: 60px;
    height: 3px;
    background: #161616;
    bottom: -18px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
h3 {
  font-family: 'Montserrat',sans-serif;
  font-weight: 700;
  font-size: 24px;
  margin-top: 0px;
  margin-bottom: 18px;
  text-transform:uppercase;
  letter-spacing:1.4px;
  position: relative;
}

h3:after{
    content: "\f111";
  font-family: FontAwesome;
    padding: 0 9px;
  vertical-align:middle;
  font-size:12px;
}

h3:before{
    content: "\f111";
  font-family: FontAwesome;
    padding: 0 9px;
  vertical-align:middle;
  font-size:12px;
}

h4 { 
  font-family: 'Montserrat',sans-serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

h5 {
  font-size: 24px;
    margin: 0;
  font-family:'Montserrat',sans-serif;
  text-transform:uppercase;
  letter-spacing:0.5px;
  font-weight: 600;
}

h6 {
  font-size: 15px;  
  margin: 0;
  text-transform: uppercase;
  font-family: 'Montserrat',sans-serif;
  font-weight: 600;
}

h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
  text-transform:none;
  font-family: 'Open Sans',sans-serif;
}

/* Links */

a {transition: all .2s ease-in-out;}

a:hover,
a:focus {text-decoration: none;}

/* Others */

.subtitle {
  color: #333;
  font-size: 18px;
  letter-spacing: 0.3px;
  margin-bottom: 20px;
  font-weight: 700;
}
 
.text-light {color: #fff;}

/*===========================
  Preloader
============================ */

#preloader {
    bottom: 0;
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 999;
}

/* Preloader effect */

.spinner {
  width: 40px;
  height: 40px;
  position: relative;
  margin: 0 auto;
  top:48%;
}

.double-bounce1, .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #cecece;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
  animation-delay: -1.0s;
}

@keyframes sk-bounce {
  0%, 100% { 
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 50% { 
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}

/*===========================
  Navigation
============================ */

.navbar {
  margin-bottom: 0;
  z-index:900;  
  background-color: transparent;
  height:80px;
      position: absolute;
    left: 0;
    right: 0;
}
  
.navbar-right {
  float: right!important;
  text-align:right;
  margin-right: 65px;
}

.navbar-nav {
    float: none;
    text-align: center;
    margin-top: 15px;
   /*text-align:left;
    margin-left: 45px;*/
}
.navbar-nav>li{
  float: none;
  display: inline-block;
}

.navbar-nav > li > a {
  line-height: 20px;
  padding: 10px; 
  transition: all .2s ease-in-out;
  position: relative;
}
.navbar-nav > li > a:hover{
color: #fff !important;
}
.navbar-nav > li > a:after{
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background: #fff;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}
.navbar-nav > li > a:hover:after { 
  width: 100%; 
  left: 0; 
}

.navbar-nav > li > a:hover,
.navbar-nav > li > a:focus {background:transparent; color: #fff;}

.navbar-custom li:after{
    content: "\f111";
  font-family: FontAwesome;
    padding: 0 5px;
  vertical-align:middle;
  font-size:3px;
  color:#333;
}

.navbar-custom li:last-child:after{display:none;}

.navbar-custom ul.nav li a {
  display: inline-block;
  font-size: 14px;
  text-align: center;
    transition: all .2s ease-in-out;
  font-family: 'Montserrat',sans-serif;
  color:#fff;
  text-transform:uppercase;
  letter-spacing: 0.9px;
  font-weight:700;
  background:transparent;
}
 
.navbar-custom .nav > .active > a {color: #333;}

.navbar-custom ul.nav ul.dropdown-menu li:after{display:none;}

.navbar-custom ul.nav ul.dropdown-menu {border-radius: 0;}

.navbar-custom ul.nav ul.dropdown-menu li:last-child {border-bottom: none;}

.navbar-custom ul.nav ul.dropdown-menu li a {padding: 10px 20px; color:#A7221A;}
.nav .open>a, .nav .open>a:focus, .nav .open>a:hover {
    background-color: transparent;
}

/* Responsive navbar  */

.navbar-toggle:focus,
.navbar-toggle:active {
  outline: 0;
  color:#cecece;
}

.navbar-toggle{
  margin-top: 12px;
  font-size: 25px;
    color: #fff;
    transition: all .2s ease-in-out;
    position: relative;
    float: right;
    border-radius: 0px;
}

.navbar-collapse {background-color: #FBF9F9;}

/*===========================
  Logo
============================ */

.navbar-brand-centered img {
  max-height: 80%;
  max-width: 80%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
    
/* ===========================
 Main Slider
============================ */

.slider-container {
  overflow: hidden;
  position: relative;
  height: 100%;
  cursor: all-scroll;
}

.slider {
  z-index: 1;
  position: relative;
  height: 100%;
  top:0;
}

/*Controls */

.slider-control {
  z-index: 2;
  position: absolute;
  top: 0;
  width: 12%;
  height: 100%;
  transition: opacity 0.3s;
  opacity: 0;
}

.slider-control.inactive:hover {cursor: auto;}

.slider-control:not(.inactive):hover {
  opacity: 1;
  cursor: pointer;
}

.slider-control.left {
  left: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0) 100%);
}

.slider-control.right {
  right: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.18) 100%);
}

/* Pagination */

ul.slider-pagi {padding-left:0px;}

.slider-pagi {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  font-size: 0;
  list-style-type: none;
}

.slider-pagi__elem {
  border: 2px solid;
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 1rem;
  height: 1rem;
  margin: 0 0.5rem;
  border-radius: 50%;
  cursor: pointer;
}

.slider-pagi__elem:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
    transition: transform 0.3s;
    transform: translate(-50%, -50%) scale(0);
}

.slider-pagi__elem.active:before, .slider-pagi__elem:hover:before {
  transform: translate(-50%, -50%) scale(1);
}

/* Slider Animation */

.slider.animating {transition: transform 0.5s;}

.slider.animating .slide__bg {transition: transform 0.5s;}

.slide {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-size: cover;
  background-position:center;
}

.slide.active .slide__overlay,
.slide.active .slide__text {
  opacity: 1;
}

.slide__bg {
  position: absolute;
  top: 0;
  left: -50%;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position:top right;
}

.slide__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Slider Overlay */

.slide__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width:100%;
  min-height: 610px;
  transition: transform 0.5s 0.5s, opacity 0.2s 0.5s;  
  opacity: 0;
}

.slide__overlay  {opacity: 0.4;}

/* Slider Typography */

.slide__text {
    text-align: center;
    position: absolute;
    max-width: 35%;    
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    transition: transform 0.5s 0.8s, opacity 0.5s 0.8s;
    opacity: 0;
}
 
.slide__text-heading {
  margin-bottom: 1.5rem;
  margin-top: 0;
}

.lead {
  font-family: "Open Sans", sans-serif;
  font-size: 2rem;
  color:#fff;
  font-weight:normal;
  margin-bottom: 1.1rem;
}

/* slide1 */
.slide:nth-child(1) {left: 0;}

/* slide2 */
.slide:nth-child(2) {left: 100%;}

/* slide3 */
.slide:nth-child(3) {left: 200%;}

/* slide4 */
.slide:nth-child(4) {left: 300%;}

/* slide5 */
.slide:nth-child(5) {left: 400%;}

/* slide6 */
.slide:nth-child(6) {left: 500%;}

/* slide7 */
.slide:nth-child(7) {left: 600%;}

/* slide8 */
.slide:nth-child(8) {left: 700%;}


/*===========================
  Offer
============================ */

#offer{
    background-image: url(../img/burrito-mexpress/cta.jpg);    
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}
#offer h3 { font-size: 30px; }
#offer .hr{color:#fff;}
#offer .slide__overlay{ min-height: inherit; opacity: 0.7; }
#offer .price{
      font-size: 26px;
    color: #fff;
    font-family: 'Montserrat',sans-serif;
    margin-top: 30px;
    font-weight: 600;
}
#offer p {
  color: #fff;
}

/*===========================
  Services
============================ */

.service h4 {
  text-align:center;
  margin:25px 0 15px 0;
}

.service p{text-align:center;}

.service {
  margin-top:30px;
  padding:30px 20px;
}

/* ornament image */

img.services_image {
  margin-top:-420px;
  position:relative; 
  max-width:100%; 
  bottom: 0;
}


/* ===========================
--- Testimonials
============================ */

#testimonials {
  background: url(../img/coffee2.png),url(../img/bgcoffee.png);
  background-attachment:fixed;
  background-repeat: no-repeat,repeat-y;
}

#testimonials blockquote {
  border-left: none;
  margin:0;
  padding:0;    
}

#testimonials img{
  margin-bottom:25px;
  border:4px solid;
}

/* Quote */
    
.quote-test:before {
  content: "\f10d";
  font-family: 'Fontawesome';
  font-size: 2.3em;
  line-height: 0.1em;
  margin-right: 0.5em;
  vertical-align: 0.2em;
}

.quote-test p {display: inline;}
  
.quote-test small{
  margin-top: 1.2em; 
  font-weight:700;
  text-transform:uppercase;
    text-align:center;  
}

.quote-test i{margin:10px;}

/*===========================
  Google Reviews
============================ */

#reviews {background:url(../img/review-bg.png);}
#reviews img:hover{opacity:0.7;}
#reviews p { color: #fff; }
#reviews h4 {position: relative; padding-bottom: 20px; margin-bottom: 30px;}
#reviews h4:after{ background: #FFFFFF; content: ""; width: 50px; height: 2px; position: absolute; bottom: 0; left: 0;
    right: 0; margin: 0 auto; }
.review-img{ text-align: center; margin-bottom: 40px; }
#reviews .owl-prev { left: -50px;}
#reviews .owl-next { right: -50px;}
/*===========================
  About Us
============================ */

#about h2{z-index: 99; position:relative;}

.row.about-margin {padding: 50px 0 60px;}

#owl-about {margin-top:-156px;}

/* Rounded borders on Slider */

#owl-about img{border-radius:10px;}

/*===========================
  Stats
============================ */

#stats .numscroller{
  font-size:60px;
  font-weight:700;
  margin-top:10px;
}

#stats  h5{
  color:#fff;
  font-weight:normal;     
  line-height: 0.5em;
  text-transform: none;
}

/* Stats icon */

#stats i {
    font-size: 60px;
    padding: 15px 25px;
    border-radius: 50%;
    transition: border 0.2s;
}

#stats i:hover{border: 7px solid;}

/* ===========================
--- Menu
============================ */
#menu{
  background: url(../img/fork.png),url(../img/knife.png);
  background-position:left,right;
  background-repeat: no-repeat;
}

#menu .tab-content{
  background:#F6F6F6; 
  padding:60px;
  border: 5px double;
}

/* fade tab transition */

.fade {
  opacity: 0;
  transition: opacity 0.55s linear;
}

/* Ornament images with effect*/

.image_menu{
  max-width:90%;
  margin-top: 27%;
    position: absolute;
    z-index: 100;
  overflow:hidden;
}

/* Menu styling */

.menu-body {
  max-width: 680px;
  margin: 0 auto;
  padding:20px;
  display: block;
  color: rgb(92, 92, 92);
}

.menu-section-title {
  font-family: georgia;
  font-size: 50px;
  display: block;
  font-weight:normal;
  margin: 20px 0; 
  text-align: center;
}

.menu-item {
  margin: 35px 0;
  font-size: 18px;
}

/* menu featured */

.menu-item.featured{
    margin: -83px 0 10px;
    padding: 15px;
    font-size: 18px;
    color: #fff;
    border-radius: 4px;
    position: relative;
}
.menu-item.featured .menu-item-name{color: #fff;}

/* menu Name */

.menu-item-name{
  font-weight: 600;
  color:#333;
  text-align:left;
  border-bottom: 2px dotted rgb(213, 213, 213);
}

/* menu Description */

.menu-item-description {
  font-size: .8em;
  line-height: 1.5em;
  margin-top:10px;
  text-align:left;
}

/* menu Price */

.menu-item-price{
  color: #fff;
    float: right;
    margin-top: -32px;
    border-radius: 50%;
    height: 60px;
    width: 60px;
    border: solid #fff;
    line-height: 50px;
    font-family: Montserrat;
    font-size: 20px;
}

/* ===========================
--- Gallery
============================ */ 

.portfolio-item{
  margin-top: 30px;
    position:relative;
}

/* Gallery Navigation */
#gallery {padding: 80px 0;}
.nav-gallery{text-align:center;}

#gallery .nav.nav-tabs {margin-bottom:30px;}

#gallery .nav.nav-tabs > li > a {
  font-size:14px;
  padding: 3px 15px;
  border: 2px solid;
  line-height:35px;
  min-height:40px;
  text-transform: uppercase;
}

#gallery .nav.nav-tabs > li > a:focus,
#gallery .nav.nav-tabs > li > a:hover,
#gallery .nav.nav-tabs > li > .active{
    border: 2px solid;
    color: #fff;
}

/* Isotope */

.isotope-item { z-index: 2 }
.isotope-hidden.isotope-item { z-index: 1 }
.isotope,
.isotope .isotope-item {transition-duration: 0.8s;}

.isotope-item {
    margin-right: -1px;
    backface-visibility: hidden;
}

.isotope {transition-property: height, width;}

.isotope .isotope-item {transition-property: transform, opacity;}

/* Gallery */

.gallery-item.selected img {transition: opacity 1s ease-in-out;}

.gallery-thumb {
    display: block;
    position: relative;
    overflow: hidden;
  
}

.scrollimation .gallery-thumb {
    transform: translateY(100px);
    opacity: 0;
    transition: opacity .4s ease-out, transform .4s ease-out;
}

.touch .scrollimation .gallery-thumb,
.scrollimation .gallery-thumb.in {
    transform: translateY(0px);
    opacity: 1;
}

/* thumbnail Overlay */

.gallery-thumb .overlay-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
  
    transition: opacity .3s ease-out;
}

.gallery-thumb:hover .overlay-mask {opacity: 0.8;}

.gallery-thumb .link {
    display: inline-block;
    margin: 0;
    font-size: 50px;
    line-height: 50px;
    color: #fff;
    opacity: 0;
    position: absolute;
    height: 50px;
    width: 64px;
    top: 40%;
    left: 50%;
    text-align: center;
    z-index: 3;
    margin-left: 20px;
    transform: translateX(200px);
    transition: all .3s ease-out;
}

.gallery-thumb:hover .link {
    transform: translate(0);
    opacity: 1;
    transition: all .3s ease-out .3s;
}

.gallery-thumb .link.centered {
    margin-left: -32px;
    transform: translateY(-200px);
    transition-delay: 0s;
}

.gallery-thumb i {transition: all 0.2s ease-in-out;}

.gallery-thumb i:hover {color: #cecece;}

.gallery-thumb:hover .link.centered {
    transform: translateY(0);
    transition-delay: 0.1s;
}

/*===========================
 Call to Action
============================ */

/* background image */

#call-to-action {background:url(../img/bg_section.png);}

/* Main Image */
    
#call-to-action .container{ 
  background:url(../img/calltoaction.png) no-repeat ; 
  background-position:center right;  
}

/* Buttons Margin */

.m-left{margin-left:20px}

/*===========================
  Contact
============================ */
#contact h5{margin: 30px 0 10px;}
#contact .social-media a i {font-size:25px;}
#contact .form-control,.textarea-field:focus,.input-field:focus {outline:0 none;}
#contact .form-control {
  font-size:16px;
  outline:0;
  box-shadow:none;
  background:none;
  border-radius:0;
  padding-top: 15px;
  border-bottom:2px solid #A09C94;
  padding: 10px 15px;
}

#contact textarea {
  height:150px;
  resize:none;
}
.con-info i { color: #000; font-size: 20px; margin-top: 10px;}
.con-info p,.con-info a { color: #161616 }
.con-info .view-menu { color: #161616; font-size: 18px;  font-weight: 700; text-decoration: underline; display: inline-block; margin-bottom: 15px; }
.con-info p span { display: block; }
.border-b { border-bottom: 1px solid #ddd; padding-bottom: 10px; }

/*===========================
  Opening Times
============================ */

#opening table {
    font-weight: 600;
    text-transform: uppercase;
}
#opening table>tbody>tr>td{line-height: 2em;}
#opening h5{margin-bottom: 20px;}
#opening .sign h5{margin: 30px;}

/*Sign */
.sign {
  float:left;
  width: 100%;
  border: 5px solid #fff;
  padding: 0.15em 1em .65em;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.4), 0 5px 10px rgba(0, 0, 0, 0.4);
  background-color: #333;
  border-radius: 15px;
}

.sign p {
  text-transform: uppercase;
  font-weight: bold;
  color: #fff;
  text-align: center;
  text-shadow: 0 0 2px rgba(0,0,0,1);
  margin: 0 auto;
  line-height: normal;
}

.sign:before {
  position: absolute;
  content: "";
  border: 2px dotted #444;
  border-bottom: none;
  border-left: none;
  width: 100px;
  height: 100px;
  top: -55px;
  left: 50%;
  margin-left: -50px;
  transform: rotate(-45deg);
  border-radius: 0 5px 0 0;
}

.sign:after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  top: -75px;
  left: 50%;
  margin-left: -4px;
  background: #4c4c4c;
}

/*Instagram */

#instafeed a {
  padding:5px 5px 1px 5px;
  margin:10px;
  display:inline-block;
  position:relative;
}

#instafeed img {
  border-radius: 50%;
    width: 150px;
}

#instafeed .likes {
  transition: background .5s ease-in-out;
    font-size: 24px;
    position: absolute;
    color: #333;
    right: 5px;
    top: 5px;
    left: 5px;
    opacity: 0;
    text-align: center;
    line-height: 50px;
    height: 50px;
  font-family: 'Open Sans',sans-serif;
    font-weight: 700;
}

/* Instagram Hover effect */

#instafeed a:hover .likes {
    background: #fff;
    opacity: 1;
    border-radius: 150px 150px 0 0;
    width: 150px;
    height: 50%;
    line-height: 85px;
}

/*===========================
  Map
============================ */

#map-canvas {
  max-width:100%;
  height: 400px;
}

/*===========================
  Footer
============================ */

footer {padding:35px 0 35px 0; background-color: #A7221A;}
footer a {color:#fff !important;}
footer a:hover{color:#333 !important;}
footer p{
  font-family: Open sans,serif;
  font-size:14px;
  line-height:18px;
  color:#fff;
}

/* Go to top icon */
.back-to-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 12px;
  z-index:119;
}

.back-to-top i {
    display: block;
    width: 44px;
    height: 44px;
    line-height: 40px;
  font-size:22px;
    color: #fff;
  background-color:#333;
    border-radius: 50%;
    text-align: center;
    transition: all 0.2s ease-in-out;
}

/*===========================
  Miscellaneous
============================ */

/* owl-carousel */

.owl-carousel .owl-item {perspective: 1000px;}

.owl-prev, .owl-next {
    position: absolute;
    top: 50%;
  padding:6px;
  width:30px;
  border-radius:50%;
    margin-top: -50px;
    text-align: center;
  background-color:#333;
}

.owl-prev:hover, .owl-next:hover {transition: all .3s ease-in-out;}

.owl-prev i, .owl-next i {color:#fff;}

.owl-next {right: 0px;}

.owl-carousel.owl-loaded {
    display: block;
    clear: both; /* Important fix */
}

.owl-dots{
  text-align:center; 
  margin-top:20px;
} 

.owl-theme .owl-dots .owl-dot{display:inline-block;}

.owl-theme .owl-dots .owl-dot span{
  border: 2px solid;
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 1rem;
  height: 1rem;
  margin: 0 0.5rem;
  border-radius: 50%;
  cursor: pointer;
  color:#333;
}

.owl-theme .owl-dots .owl-dot span:before{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  transition: transform 0.3s; 
  transform: translate(-50%, -50%) scale(0);
}

.owl-theme .owl-dots .owl-dot span:hover:before {
  transform: translate(-50%, -50%) scale(1);
}

.owl-theme .owl-dots .owl-dot.active span:before {
  transform: translate(-50%, -50%) scale(1);
}

/* bootstrap carousel indicators */

.carousel-indicators li {
   width:14px;
  height:14px;
  margin:0px 7px;
  background:transparent;
  border:2px solid ;
  display:inline-block;
  backface-visibility:visible;
  transition:opacity 200ms ease;  
  border-radius:30px
}

.carousel-indicators .active,.carousel-indicators li:hover {
    width: 14px;
    height: 14px;
  margin:0px 7px;
}

/* Section with pattern */

section.pattern{
   background:url(../img/texture.jpg);
  background-repeat:repeat;
} 

/* Space between sections */

section .container  {
  padding-top: 90px;
  padding-bottom: 90px;
}
section.gallery-img .container
{
  padding-top: 30px;
}
.small-section .container {padding: 100px 0 100px 0;}

/* dividers */

.hr {
  max-width:60px;
  padding: 0;
  border-style:solid;
  border-width: 2px 0 0 0;
  text-align: center;
  clear: left;
  display: block;
  height: 0;
  margin: 0px auto 20px auto;
  width: 100%;
}

/* Image zoom Hover effect*/

.img-wrapper {overflow: hidden;}

.img-wrapper img {
    transition: all 2s ease;
    vertical-align: middle;
  display:inline-block;
}

.img-wrapper img:hover {transform:scale(1.2);}

/* Sections heading */

.section-heading{
  margin-bottom:50px;
  text-align:center;
  z-index:99;
}

.gallery-img .section-heading{
  margin-bottom: 40px;
  padding-top: 40px;
}
.gallery-img .row{
  margin-bottom: 35px;
}

/* Pagination */

.pagination>li>a, .pagination>li>span { border-radius: 50% !important;margin: 0 5px;}

.pagination>li>a:hover {color:#fff;}

/* Color blocks */

.white_block{
 background-color: rgba(255,255,255,0.9);
 padding:15px;
 z-index:99;
}

/* Pager */

.pager {margin: 50px 0;}

.pager li > a, .pager li > span {
    display: inline-block;
    padding: 5px 14px;
  font-size:20px;
  font-weight:700;
    background-color: #fff;
    border: 1px solid;
    border-radius: 0px;
}

.pager li > a:hover {color:#fff;}

/* Nav-tabs */

.nav-tabs {
  text-align:center;
  border-bottom: 0;
}

.nav.nav-tabs > li.active > a,
.nav.nav-tabs > li.active > a:hover,
.nav.nav-tabs > li.active > a:focus,
.nav.nav-tabs > li >a:hover{ 
     border: 0;
   background: #E6E3E3;
   color:#333;
}

.nav.nav-tabs > li {
    float:none;
  padding:0 10px 0;
    display:inline-block;
}

.nav.nav-tabs > li > a {
  position: relative;
  display: block;
  font-family: 'Montserrat',sans-serif;
  letter-spacing:0.2px;
  font-weight: 700;
  min-height: 50px;
  line-height: 57px;
  border: 0;
  border-radius:0px;
  padding: 10px 35px;
  color:#333;
  font-size: 22px;
  background-color: #F6F6F6;
}
.nav.nav-tabs > li.active > a, 
.nav.nav-tabs > li.active > a:hover, 
.nav.nav-tabs > li.active > a:focus {
  color:#fff;
}

/* Panels */

.panel {border: 0; background: transparent;}

.panel-title {font-size: 18px;}

.panel-default > .panel-heading + .panel-collapse > .panel-body {border: 0;}

.panel-heading a {
  display: block; 
  text-transform:none;
    color: #fff;
    padding: 10px;
  border:0px;
}

.panel-heading a:focus{color: #C1B7B7;}
 
.panel-group .panel+.panel {margin-top: 0px; }

.panel-group .panel-heading {border-bottom: 0px;}

.panel-group .panel-heading+.panel-collapse>.panel-body {border-top: 0px;}

.panel-heading {padding: 10px 0px;  }

.panel-heading [data-toggle="collapse"]:after {
  content: "\f077";
  font-family: FontAwesome;
  float: right;
  font-size: 18px;
  line-height: 22px;  
}

.panel-heading [data-toggle="collapse"].collapsed:after {transform: rotate(180deg);}

/* Lists */
ul {font-size: 16px;}

/* Buttons */
.input-group-btn .btn{margin-top:0px;}

.btn-theme {
  font-family: "Montserrat",sans-serif;
  font-size: 14px;
  font-weight:700;
  background-image: none;
  border-radius: 0px;
  margin-top:25px;
  text-transform: uppercase;
  transition: all .3s ease-in-out;
  padding:15px 30px;
  letter-spacing:0.2px;
  color:#fff;
  border:0; 
  border-radius: 40px;
  background-color: #A7221A;
  display: inline-block;
}
.btn-theme:hover{border: 0;  background-color: #e23b31; color: #fff; }
.btn-theme:focus {outline: none;}

.btn-primary{ background-color: #A7221A; border-color: #A7221A;}
.btn-primary:hover,.btn-primary:focus,.btn-primary:active:focus{
  background-color: #e23b31; color: #fff; border-color: #e23b31;
}

/* Social Media Icons */

.social-media {
  width:100%;
  padding:0 10px;
  margin-top:20px;
  margin-bottom: 40px;
}

.social-media a {
  display:inline-block;
  font-size:20px;
}

.social-media a i {
  transition:.3s;
  margin: 3px;
  width: 30px;
}

.social-media i{transition: color .3s ease-in-out;}

/* Centered columns */

.col-centered{
    float: none;
    margin: 0 auto;
}

/* Nav-pills */

.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {color: #fff;}

.nav-pills>li>a:hover {color: #fff;}

.nav-pills .nav > li > a:hover, .nav > li > a:focus {color: #fff;}


/* Tables */

.table > tbody > td{
  border-bottom: 1px solid #ddd;
  border-top:none;
  padding: 11px;
  font-size: 17px;
}

.table > tbody > tr:first-child > td {border: none;}

/* Wells */

.well{
  border-radius:0;
  border:0;
  box-shadow: 0 0 0px;
  background-color: #fff;
}

.well .list-unstyled {
    padding-left: 0;
    list-style: none;
    line-height: 37px;
  font-weight:700;
  font-family: 'Open Sans',sans-serif;
}

.well .list-unstyled li:before {    
  font-family: 'FontAwesome';
  content: '\f061';
  font-weight:normal;
  font-size: 13px;
  margin:0 10px 0 15px;
}
  
.well h4 {
  margin-bottom:20px;
  display:inline-block;
}

.well h4:before {
  margin-right:10px;
  content: "\e003";
  font-family: 'Flaticon';
  font-weight: normal;
  vertical-align:middle;
  font-size: 20px;
}

/* Media */

.media {
    margin-top: 45px;
  font-size: 16px;
    line-height: 27px;
}
.media img{max-width:100px;}

.media:last-child {margin-bottom: 65px;}

.media-heading {
    margin-bottom: 15px;
  padding: 10px;
}

.media-heading small {font-weight:700;}

/* Margins */

.margin8{margin-bottom:8px;}

.top-margin{margin-top:20px;}

/* Boxed theme */

.boxed {
  max-width:1200px;
  margin:0 auto;
  box-shadow: 10px 10px 100px -19px rgba(0,0,0,0.75);
  background:#fff;
}
.boxed .navbar{
  max-width:1200px;
  margin:0 auto;
}

/* Full Width theme */

.full{width:100%;}

  
  /* Leaflet styles */

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
  position: absolute;
  left: 0;
  top: 0;
  }
.leaflet-container {
  overflow: hidden;
  }
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
    -webkit-user-drag: none;
  }
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
  image-rendering: -webkit-optimize-contrast;
  }
/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
  width: 1600px;
  height: 1600px;
  -webkit-transform-origin: 0 0;
  }
.leaflet-marker-icon,
.leaflet-marker-shadow {
  display: block;
  }
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg,
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer {
  max-width: none !important;
  max-height: none !important;
  }

.leaflet-container.leaflet-touch-zoom {
  -ms-touch-action: pan-x pan-y;
  touch-action: pan-x pan-y;
  }
.leaflet-container.leaflet-touch-drag {
  -ms-touch-action: pinch-zoom;
  /* Fallback for FF which doesn't support pinch-zoom */
  touch-action: none;
  touch-action: pinch-zoom;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
  -ms-touch-action: none;
  touch-action: none;
}
.leaflet-container {
  -webkit-tap-highlight-color: transparent;
}
.leaflet-container a {
  -webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.leaflet-tile {
  filter: inherit;
  visibility: hidden;
  }
.leaflet-tile-loaded {
  visibility: inherit;
  }
.leaflet-zoom-box {
  width: 0;
  height: 0;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  z-index: 800;
  }
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
  -moz-user-select: none;
  }

.leaflet-pane         { z-index: 400; }

.leaflet-tile-pane    { z-index: 200; }
.leaflet-overlay-pane { z-index: 400; }
.leaflet-shadow-pane  { z-index: 500; }
.leaflet-marker-pane  { z-index: 600; }
.leaflet-tooltip-pane   { z-index: 650; }
.leaflet-popup-pane   { z-index: 700; }

.leaflet-map-pane canvas { z-index: 100; }
.leaflet-map-pane svg    { z-index: 200; }

.leaflet-vml-shape {
  width: 1px;
  height: 1px;
  }
.lvml {
  behavior: url(#default#VML);
  display: inline-block;
  position: absolute;
  }


/* control positioning */

.leaflet-control {
  position: relative;
  z-index: 800;
  pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
  pointer-events: auto;
  }
.leaflet-top,
.leaflet-bottom {
  position: absolute;
  z-index: 1000;
  pointer-events: none;
  }
.leaflet-top {
  top: 0;
  }
.leaflet-right {
  right: 0;
  }
.leaflet-bottom {
  bottom: 0;
  }
.leaflet-left {
  left: 0;
  }
.leaflet-control {
  float: left;
  clear: both;
  }
.leaflet-right .leaflet-control {
  float: right;
  }
.leaflet-top .leaflet-control {
  margin-top: 10px;
  }
.leaflet-bottom .leaflet-control {
  margin-bottom: 10px;
  }
.leaflet-left .leaflet-control {
  margin-left: 10px;
  }
.leaflet-right .leaflet-control {
  margin-right: 10px;
  }


/* zoom and fade animations */

.leaflet-fade-anim .leaflet-tile {
  will-change: opacity;
  }
.leaflet-fade-anim .leaflet-popup {
  opacity: 0;
  -webkit-transition: opacity 0.2s linear;
     -moz-transition: opacity 0.2s linear;
       -o-transition: opacity 0.2s linear;
          transition: opacity 0.2s linear;
  }
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
  opacity: 1;
  }
.leaflet-zoom-animated {
  -webkit-transform-origin: 0 0;
      -ms-transform-origin: 0 0;
          transform-origin: 0 0;
  }
.leaflet-zoom-anim .leaflet-zoom-animated {
  will-change: transform;
  }
.leaflet-zoom-anim .leaflet-zoom-animated {
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
     -moz-transition:    -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
       -o-transition:      -o-transform 0.25s cubic-bezier(0,0,0.25,1);
          transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
  }
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
  -webkit-transition: none;
     -moz-transition: none;
       -o-transition: none;
          transition: none;
  }

.leaflet-zoom-anim .leaflet-zoom-hide {
  visibility: hidden;
  }


/* cursors */

.leaflet-interactive {
  cursor: pointer;
  }
.leaflet-grab {
  cursor: -webkit-grab;
  cursor:    -moz-grab;
  }
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
  cursor: crosshair;
  }
.leaflet-popup-pane,
.leaflet-control {
  cursor: auto;
  }
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor:    -moz-grabbing;
  }

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
  pointer-events: none;
  }

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive {
  pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
  pointer-events: auto;
  }

/* visual tweaks */

.leaflet-container {
  background: #ddd;
  outline: 0;
  }
.leaflet-container a {
  color: #0078A8;
  }
.leaflet-container a.leaflet-active {
  outline: 2px solid orange;
  }
.leaflet-zoom-box {
  border: 2px dotted #38f;
  background: rgba(255,255,255,0.5);
  }


/* general typography */
.leaflet-container {
  font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
  }


/* general toolbar styles */

.leaflet-bar {
  box-shadow: 0 1px 5px rgba(0,0,0,0.65);
  border-radius: 4px;
  }
.leaflet-bar a,
.leaflet-bar a:hover {
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  width: 26px;
  height: 26px;
  line-height: 26px;
  display: block;
  text-align: center;
  text-decoration: none;
  color: black;
  }
.leaflet-bar a,
.leaflet-control-layers-toggle {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: block;
  }
.leaflet-bar a:hover {
  background-color: #f4f4f4;
  }
.leaflet-bar a:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  }
.leaflet-bar a:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom: none;
  }
.leaflet-bar a.leaflet-disabled {
  cursor: default;
  background-color: #f4f4f4;
  color: #bbb;
  }

.leaflet-touch .leaflet-bar a {
  width: 30px;
  height: 30px;
  line-height: 30px;
  }
.leaflet-touch .leaflet-bar a:first-child {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  }
.leaflet-touch .leaflet-bar a:last-child {
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  }

/* zoom control */

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
  font: bold 18px 'Lucida Console', Monaco, monospace;
  text-indent: 1px;
  }

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out  {
  font-size: 22px;
  }


/* layers control */

.leaflet-control-layers {
  box-shadow: 0 1px 5px rgba(0,0,0,0.4);
  background: #fff;
  border-radius: 5px;
  }
.leaflet-control-layers-toggle {
  background-image: url(images/layers.png);
  width: 36px;
  height: 36px;
  }
.leaflet-retina .leaflet-control-layers-toggle {
  background-image: url(images/layers-2x.png);
  background-size: 26px 26px;
  }
.leaflet-touch .leaflet-control-layers-toggle {
  width: 44px;
  height: 44px;
  }
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
  display: none;
  }
.leaflet-control-layers-expanded .leaflet-control-layers-list {
  display: block;
  position: relative;
  }
.leaflet-control-layers-expanded {
  padding: 6px 10px 6px 6px;
  color: #333;
  background: #fff;
  }
.leaflet-control-layers-scrollbar {
  overflow-y: scroll;
  overflow-x: hidden;
  padding-right: 5px;
  }
.leaflet-control-layers-selector {
  margin-top: 2px;
  position: relative;
  top: 1px;
  }
.leaflet-control-layers label {
  display: block;
  }
.leaflet-control-layers-separator {
  height: 0;
  border-top: 1px solid #ddd;
  margin: 5px -10px 5px -6px;
  }

/* Default icon URLs */
.leaflet-default-icon-path {
  background-image: url(images/marker-icon.png);
  }


/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
  background: #fff;
  background: rgba(255, 255, 255, 0.7);
  margin: 0;
  }
.leaflet-control-attribution,
.leaflet-control-scale-line {
  padding: 0 5px;
  color: #333;
  }
.leaflet-control-attribution a {
  text-decoration: none;
  }
.leaflet-control-attribution a:hover {
  text-decoration: underline;
  }
.leaflet-container .leaflet-control-attribution,
.leaflet-container .leaflet-control-scale {
  font-size: 11px;
  }
.leaflet-left .leaflet-control-scale {
  margin-left: 5px;
  }
.leaflet-bottom .leaflet-control-scale {
  margin-bottom: 5px;
  }
.leaflet-control-scale-line {
  border: 2px solid #777;
  border-top: none;
  line-height: 1.1;
  padding: 2px 5px 1px;
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  -moz-box-sizing: border-box;
       box-sizing: border-box;

  background: #fff;
  background: rgba(255, 255, 255, 0.5);
  }
.leaflet-control-scale-line:not(:first-child) {
  border-top: 2px solid #777;
  border-bottom: none;
  margin-top: -2px;
  }
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
  border-bottom: 2px solid #777;
  }

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  box-shadow: none;
  }
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  border: 2px solid rgba(0,0,0,0.2);
  background-clip: padding-box;
  }


/* popup */

.leaflet-popup {
  position: absolute;
  text-align: center;
  margin-bottom: 20px;
  }
.leaflet-popup-content-wrapper {
  padding: 1px;
  text-align: left;
  border-radius: 12px;
  }
.leaflet-popup-content {
  margin: 13px 19px;
  line-height: 1.4;
  }
.leaflet-popup-content p {
  margin: 18px 0;
  }
.leaflet-popup-tip-container {
  width: 40px;
  height: 20px;
  position: absolute;
  left: 50%;
  margin-left: -20px;
  overflow: hidden;
  pointer-events: none;
  }
.leaflet-popup-tip {
  width: 17px;
  height: 17px;
  padding: 1px;

  margin: -10px auto 0;

  -webkit-transform: rotate(45deg);
     -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
       -o-transform: rotate(45deg);
          transform: rotate(45deg);
  }
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: white;
  color: #333;
  box-shadow: 0 3px 14px rgba(0,0,0,0.4);
  }
.leaflet-container a.leaflet-popup-close-button {
  position: absolute;
  top: 0;
  right: 0;
  padding: 4px 4px 0 0;
  border: none;
  text-align: center;
  width: 18px;
  height: 14px;
  font: 16px/14px Tahoma, Verdana, sans-serif;
  color: #c3c3c3;
  text-decoration: none;
  font-weight: bold;
  background: transparent;
  }
.leaflet-container a.leaflet-popup-close-button:hover {
  color: #999;
  }
.leaflet-popup-scrolled {
  overflow: auto;
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  }

.leaflet-oldie .leaflet-popup-content-wrapper {
  zoom: 1;
  }
.leaflet-oldie .leaflet-popup-tip {
  width: 24px;
  margin: 0 auto;

  -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
  filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
  }
.leaflet-oldie .leaflet-popup-tip-container {
  margin-top: -1px;
  }

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
  border: 1px solid #999;
  }


/* div icon */

.leaflet-div-icon {
  background: #fff;
  border: 1px solid #666;
  }


/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
  position: absolute;
  padding: 6px;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 3px;
  color: #222;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  box-shadow: 0 1px 3px rgba(0,0,0,0.4);
  }
.leaflet-tooltip.leaflet-clickable {
  cursor: pointer;
  pointer-events: auto;
  }
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
  position: absolute;
  pointer-events: none;
  border: 6px solid transparent;
  background: transparent;
  content: "";
  }

/* Directions */

.leaflet-tooltip-bottom {
  margin-top: 6px;
}
.leaflet-tooltip-top {
  margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
  left: 50%;
  margin-left: -6px;
  }
.leaflet-tooltip-top:before {
  bottom: 0;
  margin-bottom: -12px;
  border-top-color: #fff;
  }
.leaflet-tooltip-bottom:before {
  top: 0;
  margin-top: -12px;
  margin-left: -6px;
  border-bottom-color: #fff;
  }
.leaflet-tooltip-left {
  margin-left: -6px;
}
.leaflet-tooltip-right {
  margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
  top: 50%;
  margin-top: -6px;
  }
.leaflet-tooltip-left:before {
  right: 0;
  margin-right: -12px;
  border-left-color: #fff;
  }
.leaflet-tooltip-right:before {
  left: 0;
  margin-left: -12px;
  border-right-color: #fff;
  }
  .slide-logo{
    margin-bottom: 20px;
  }

.follow-btn { display: flex; justify-content: center; align-items: center; margin-top: 40px; }
.follow-btn a { margin-right: 30px;  }


/************ Menu Pages CSS *************/
.login-nav{
    position: absolute;
    right: 15px;
    top: 2px;
}
.login-nav .btn {
    margin: 9px 0 0 5px;
    border-radius: 5px;
    padding: 8px 20px;
}

.inner-header{ 
  padding: 20px 0;
}
.inner-title{
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../img/bg-croissant.jpg);
    padding: 40px 0;
    color: #fff;
    text-align: center;
}
.inner-title .container{
  padding: 0;
}
.inner-title h1 { 
  font-size: 50px;
}.bg-dark {
    background-color: #282b2e!important;
}.menu-grid-item {
    line-height: 1.2;
    margin-bottom: 1.5rem;
}.mb-4, .my-4 {
    margin-bottom: 1.5rem!important;
}.mt-4, .my-4 {
    margin-top: 1.5rem!important;
}
.align-items-center {
    align-items: center!important;
}
.bg-white{ background-color: #fff;}
.shadow {
    box-shadow: 1px 1px 30px 0 rgba(0,0,0,.1);
}

.food-cat{ padding-top: 20px;}
.food-cat .nav>li>a { color: #000; padding: 7px 15px; background: #f1f1f1; margin-bottom: 3px; font-size: 15px; }
.food-cat .nav>li>a:hover{ background:#A7221A; color: #fff;  }

.menu-category-title{ margin-top: 15px; }
.menu-category-content .menu-grid-item { margin-bottom: 1rem; }
.menu-category-content .menu-item { margin: 18px 0; }
.menu-item .btn-cart { margin-top: 0; padding: 9px 19px; font-size: 12px; background-color: transparent; color: #A7221A;
    border: 2px solid #A7221A; }
.menu-item .btn-cart:hover { color: #fff; background-color: #A7221A;  }
.menu-category .menu-category-title {
    position: relative;
    height: 35vh;
    min-height: 160px;
    color: #fff;
    padding: 3rem;
    background-color: #282b2e;
}
.menu-category-title .title {
    position: absolute;
    bottom: 42px;
    bottom: 3rem;
    left: 56px;
    left: 4rem;
    font-size: 70px;
    font-size: 5rem;
    z-index: 2;
    margin-bottom: 0;
    color: #fff;
    text-transform: none;
}
.menu-category-title .title:before,.menu-category-title .title:after{
  display: none;
}
.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
}
.bg-image:after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: " ";
    background-image: linear-gradient(0deg,rgba(0,0,0,.5),transparent);
}
.affix {
    top:0;    
    width: 262px;
}
.res-menu .container { padding-top: 20px; }
.menu-grid-item span.text-md.mr-4 {
  font-weight: 600;
    margin-top: 4px;
    display: inline-block;
}
/*------Details Popup-----*/
.item-name {font-size: 20px;text-transform: none; line-height: 30px; color: #A7221A }
.item-name:before{ display: none;}
.item-desc {font-size: 14px; line-height: 23px; color: #8e8b8b;}
.item-price {font-weight: 700; font-size: 18px; color: #000; margin-top: 10px;}
.item-choose { background: #f1f1f1; padding: 9px 15px; border-radius: 6PX; margin-top: 15px; }
.spe-ins { margin-top: 15px; }
.mt-0 { margin-top: 0; }
/*---Custome Radio---*/
.radio-sel { margin-top: 10px;  }
.radio-sel label {  
  display: inline-block;
  position: relative;
  padding-left: 22px;
  cursor: pointer;
  margin-right: 20px;
  font-weight: normal;
}

.radio-sel input {
  height: 1px;
  width: 1px;
  opacity: 0;
}

.outside {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -8px;
  width: 16px;
  height: 16px;
  border: 2px solid #A7221A;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: none;
}

.inside {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: inline-block;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  background: #A7221A;
  left: 2px;
  top: 2px;
  -webkit-transform: scale(0, 0);
          transform: scale(0, 0);
}
.no-transforms .inside {
  left: auto;
  top: auto;
  width: 0;
  height: 0;
}
.radio-sel input:checked + .outside .inside {
  -webkit-animation: radio-select 0.1s linear;
          animation: radio-select 0.1s linear;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.no-transforms input:checked + .outside .inside {
  width: 10px;
  height: 10px;
}



/*-----Login/Register CSS-------*/
.animated {
  -webkit-animation-duration: 1s;
     -moz-animation-duration: 1s;
       -o-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
     -moz-animation-fill-mode: both;
       -o-animation-fill-mode: both;
          animation-fill-mode: both;
}

.animated.hinges {
  -webkit-animation-duration: 2s;
     -moz-animation-duration: 2s;
       -o-animation-duration: 2s;
          animation-duration: 2s;
}

.animated.slow {
  -webkit-animation-duration: 3s;
     -moz-animation-duration: 3s;
       -o-animation-duration: 3s;
          animation-duration: 3s;
}

.animated.snail {
  -webkit-animation-duration: 4s;
     -moz-animation-duration: 4s;
       -o-animation-duration: 4s;
          animation-duration: 4s;
}

@-webkit-keyframes shake {
  0%, 100% {-webkit-transform: translateX(0);}
  10%, 30%, 50%, 70%, 90% {-webkit-transform: translateX(-10px);}
  20%, 40%, 60%, 80% {-webkit-transform: translateX(10px);}
}

@-moz-keyframes shake {
  0%, 100% {-moz-transform: translateX(0);}
  10%, 30%, 50%, 70%, 90% {-moz-transform: translateX(-10px);}
  20%, 40%, 60%, 80% {-moz-transform: translateX(10px);}
}

@-o-keyframes shake {
  0%, 100% {-o-transform: translateX(0);}
  10%, 30%, 50%, 70%, 90% {-o-transform: translateX(-10px);}
  20%, 40%, 60%, 80% {-o-transform: translateX(10px);}
}

@keyframes shake {
  0%, 100% {transform: translateX(0);}
  10%, 30%, 50%, 70%, 90% {transform: translateX(-10px);}
  20%, 40%, 60%, 80% {transform: translateX(10px);}
}

.shake {
  -webkit-animation-name: shake;
  -moz-animation-name: shake;
  -o-animation-name: shake;
  animation-name: shake;
}
.modal-open .fade{ transition: none; }
.login .modal-dialog{
    width: 550px;
}
.login .modal-footer{
    border-top: 0;
    margin-top: 0px;
    padding: 10px 20px 20px;
}
.login .modal-header {
    border: 0 none;
    padding: 15px 15px 15px;
/*     padding: 11px 15px; */
}
.login .modal-body{
/*     background-color: #eeeeee; */
}
.login .division {
    float: none;
    margin: 0 auto 18px;
    overflow: hidden;
    position: relative;
    text-align: center;
    width: 100%;
}
.login .division .line {
    border-top: 1px solid #DFDFDF;
    position: absolute;
    top: 10px;
    width: 34%;
}
.login .division .line.l {
    left: 0;
}
.login .division .line.r {
    right: 0;
}
.login .division span {
    color: #424242;
    font-size: 17px;
}
.login .box .social {
    float: none;
    margin: 0 auto 30px;
    text-align: center;
}


.login .forgot {
    color: #797979;
    margin-left: 0;
    overflow: hidden;
    text-align: center;
    width: 100%;
}
.login .btn-login, .registerBox .btn-register{
    background-color: #A7221A;
    border-color: #A7221A;
    border-width: 0;
    color: #FFFFFF;
    display: block;
    margin: 15px auto;
    padding: 15px 50px;
    text-transform: uppercase;
    width: 64%;
}
.login .btn-login:hover, .registerBox .btn-register:hover{
    background-color: #e23b31;
    color: #FFFFFF;
}
.login .form-control{
    border-radius: 3px;
    background-color: rgba(0, 0, 0, 0.09);
    box-shadow: 0 1px 0px 0px rgba(0, 0, 0, 0.09) inset;
    color: #FFFFFF;
}
.login .form-control:hover{
    background-color: rgba(0,0,0,.16);
}
.login .form-control:focus{
    box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.04) inset;
    background-color: rgba(0,0,0,0.23);
    color: #FFFFFF;
}
.login .box .form input[type="text"], .login .box .form input[type="password"] {
    border-radius: 3px;
    border: none;
    color: #333333;
    font-size: 16px;
    height: 46px;
    margin-bottom: 5px;
    padding: 13px 12px;
    width: 100%;
}
/*----Login With Social CSS-----*/
.loginBtn {
    box-sizing: border-box;
    position: relative;
    margin: 0.2em;
    padding: 0 30px 0 56px;
    border: none;
    text-align: left;
    line-height: 50px;
    white-space: nowrap;
    border-radius: 0.2em;
    font-size: 16px;
    color: #FFF;
}
.loginBtn:before {
  content: "";
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    width: 42px;
    height: 100%;
}
.loginBtn:focus {
  outline: none;
}
.loginBtn:active {
  box-shadow: inset 0 0 0 32px rgba(0,0,0,0.1);
}


/* Facebook */
.loginBtn--facebook {
  background-color: #2B5C93;  
  text-shadow: 0 -1px 0 #354C8C;
}
.loginBtn--facebook:before {
  border-right: #364e92 1px solid;
  background: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/14082/icon_facebook.png') 9px 15px no-repeat;
}
.loginBtn--facebook:hover,
.loginBtn--facebook:focus {
  background-color: #3272b9;  
}


/* Google */
.loginBtn--google {  
  background: #ED3739;
}
.loginBtn--google:before {
  border-right: #BB3F30 1px solid;
  background: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/14082/icon_google.png') 9px 15px no-repeat;
}
.loginBtn--google:hover,
.loginBtn--google:focus {
  background: #E74B37;
}


@media (max-width:400px){
    .login .modal-dialog{
        width: 100%;
    }
}

.big-login, .big-register{
    background-color: #00bbff;
    color: #FFFFFF;
    border-radius: 7px;
    border-width: 2px;
    font-size: 14px;
    font-style: normal;
    font-weight: 200;
    padding: 16px 60px;
    text-transform: uppercase;
    transition: all 0.3s ease 0s;
}
.big-login:hover{
    background-color: #00A4E4;
    color: #FFFFFF;
}
.big-register{
    background-color: rgba(0,0,0,.0);
    color: #00bbff;
    border-color: #00bbff;
}
.big-register:hover{
    border-color: #00A4E4;
    color:  #00A4E4;
}

/*Inner Head*/
.inner-head {
  padding: 90px 0 60px;
  text-align: center;
  background: url("../img/gallery/gallery-img-10.png") no-repeat center;
  background-size: cover;
  position: relative;
}

/*===========================
  Media Queries
============================ */

/************ min width 1400px *************/

@media (min-width: 1400px) {
  h1{font-size:40px;}    
}

/************ max width 1200px *************/

@media (max-width: 1200px) {
  
  h1{font-size:40px;}

  .navbar-brand-centered img {
    max-height: 60%;
    max-width: 60%;
  }

  .navbar-nav > li > a {padding: 10px 5px;}
    
  .social-media a i{margin:0px;}
  
    .navbar-custom ul.nav li a {font-size: 13px;}
  
    .wow {
        visibility: visible !important;      
        animation: none !important;
        /* turns off animations in smaller screens for better performance */
    }
  #menu{background:none;}
} 
.navbar-collapse{
  background: transparent;
}

.blinking-btn{
    display: flex;
    align-items: center;
    width: 320px;
    justify-content: center;
    margin: 0 auto;
  /*   -webkit-animation: glowing 1500ms infinite;*/
  /*-moz-animation: glowing 1500ms infinite;*/
  /*-o-animation: glowing 1500ms infinite;*/
  /*animation: glowing 1500ms infinite;*/
  margin-top: 30px;
}

.blinking-btn i { 
    font-size: 36px;
    margin-right: 10px;
    
}

/************ max width 1024px *************/
@media (max-width: 1024px) {
  .affix { width: auto;}
}
/************ max width 991px *************/
@media (max-width: 991px) {
  
  /*navbar */
      
    .navbar-header {
        float: none;
    }
    .navbar-toggle {
        display: block;
    }
    .navbar-collapse.collapse {
        display: none !important;
    }
    .navbar-collapse.collapse.in {
        display: block !important;
        overflow-y: auto !important;
    }
    .navbar-nav {
        margin: 0;
        float: none !important;
        height: 100%;
    }
    .navbar-right {
        line-height: 0px;
    }
    .navbar-nav li {
        float: none;
    text-align:center;    
    }
    .navbar-nav>li{
      display: block;
    }
    .navbar-nav li > .dropdown-menu {
        border: 0;
        float: none;
        width: auto;
        position: static;
        box-shadow: none;
    text-align:center;
        background: inherit;
    }
  
  .navbar-fixed-bottom .navbar-collapse, .navbar-fixed-top .navbar-collapse {
    max-height: 200px;
    }
  .navbar-collapse.collapse.in {
    display:block!important;
    padding-bottom: 40px;  
  }
  .navbar-collapse::-webkit-scrollbar {
    width: 20px;
  }
  .navbar-collapse::-webkit-scrollbar-track {
    background-color: lightgray;
  }
  .navbar-collapse::-webkit-scrollbar-thumb {
    background-color: darkgray;
  }

  .navbar-nav {
    margin: 0;
    float: none !important; 
    height: 100%;
    background: rgba(0,0,0,0.9);
  }
  .navbar-nav .open .dropdown-menu .dropdown-header, .navbar-nav .open .dropdown-menu>li>a {
      padding: 10px; 
    }
    .navbar-custom li:after{display:none;}
  
  /* Logo */
  
    #navbar-brand-centered.collapse.in {
        display: block!important;
        max-height: none;
   /* box-shadow: 0px 4px 7px #cecece;
    background: rgba(0,0,0,0.8);*/
    }
  .navbar-brand {line-height:30px;}

  .navbar-brand-centered img {
    max-height:80%;
    max-width: 80%;
    }
    .navbar-nav > li > a{
      line-height: 25px;
    }
  /* Main Slider */
  
  .slider {top:0px;}
  
  .slide .slide__text{padding:20px; top: 0}

  .slide__text {
    left: 0;
    bottom: 0;
    min-width: 100%;
    text-align: center;
    transform: none;
    transition: none;
    padding: 0 1rem;
    }
  
  .slide__overlay {display: none;}
  #offer .slide__overlay {display: block;}
  
  .slider-pagi {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 1rem;
    transform: translateX(-50%);
    font-size: 0;
    list-style-type: none;
  } 
  
  /* Space between sections */
  
  .section-heading {margin-bottom: 9rem;}
   
  /* Stats */
  
  #stats h5 {margin-bottom: 60px;}

    /* Menu */
   
  #menu .tab-content {
     border: 0px; 
     margin-top:40px;
  }
    
  .menu-body { padding: 0px;}
  
  #menu .tab-content{padding:20px;}
  
  .menu-item.featured {margin: -39px 0 10px;}
  
  /* Team */

  .team .teamcaption {padding-left: 40px;}
  
  /*Opening Sign */

  .sign {margin-bottom:40px;}

  /* Nav tabs */

  .nav-tabs > li {margin-bottom: 10px;}
  
  .nav-tabs {border-bottom: 0;} 
  
  .nav.nav-tabs > li > a {border-radius: 0;}
  
  /* typography */

    h2 {font-size: 35px;}
  
  /* Sections background */
  
  #newsletter {background: none;}
    
    #testimonials{background: none;}
  
    #call-to-action .container {background: none;}
  
  #contact .container{background: none;}
  
  #opening .container {background: none;}
  
  #offer .container {background: none;}
          
  /* miscellaneous */
      
    .res-margin {margin-bottom: 15px;}
  
  .margin  {margin-bottom: 40px;}
  
  .row.about-margin {padding: 0px 0 0px; }  
}

/************ max width 767px *************/
@media (max-width: 767px) {
/*--Product Page--*/
.affix { position: unset; width: 100%;}
.inner-title .container { padding: 15px;}
.inner-title { padding-bottom: 0; }
.inner-title h1 { font-size: 30px;text-align: center;}
.login-nav { right: 0; top: 0; width: 100%; text-align: right;padding: 8px 12px; }
.login-nav .btn { margin-top: 0; }
.logo-img { margin:0 auto; }
.menu-category .menu-category-title { height: 20vh;min-height: 150px;padding: 3rem; }
.menu-category-title .title{ bottom: 2rem; left: 2rem; font-size: 3rem; }
.menu-item h6{font-size: 14px; }
.menu-item .mt-4{ margin-top: 0.5rem!important; }
.menu-item .btn-cart { margin-top: 12px; }
.gallery-img .row { margin-bottom: 0;}
.gallery-img .col-sm-4 { margin-bottom: 30px; }
}
/* prettyPhoto styling for small screens */
@media (max-width: 500px)
{
    .pp_pic_holder
    {
        width: 100% !important;
        margin-top:-100px !important;
        left: 0 !important;
        overflow: hidden;
    }
    .pp_content_container .pp_left
    {
        padding-left: 0 !important;
    }
    .pp_content_container .pp_right
    {
        padding-right: 0 !important;
    }
    .pp_content
    {
        width: 100% !important;
        height: auto !important;
    }
    .pp_fade
    {
        width: 100% !important;
        height: 100% !important;
    }
    a.pp_expand,
    a.pp_contract,
    .pp_hoverContainer,
    .pp_gallery,
    .pp_top,
    .pp_bottom
    {
        display: none !important;
    }
    #pp_full_res img
    {
        width: 100% !important;
        height: auto !important;
    }
    .pp_details
    {
        box-sizing: border-box;
        width: 100% !important;
        padding-left: 3%;
        padding-right: 4%;
        padding-top: 10px;
        padding-bottom: 10px;
        background-color: #fff;
        margin-top: -2px !important;
    }
    a.pp_close
    {
        right: 10px !important;
        top: 10px !important;
    }
    .pp_social { display: none; }
    .pp_nav { margin: 0;
    display: flex;
    align-items: center; }
}

/************ max width 480px *************/
@media (max-width: 480px) {  
  /* navbar */  
  .navbar-toggle {
    margin-top: 16px;
    font-size: 18px;
    color: #fff;
  } 
  .slide-logo{
    margin-top: 80px;
  }
  .slide-logo img {
    max-width: 100%;
}
.follow-btn{ justify-content: space-between; flex-wrap: wrap;}
.follow-btn a{ width: 45%;margin-right: 0; margin-bottom: 15px;}
.follow-btn img { max-width: 100%;}
.follow-btn img.yelp-icon { max-width: 85%;}
.follow-btn img.trip-icon { max-width: 90%;}
#offer .price{ font-size: 18px; margin-top: 15px;}
#owl-brands .owl-nav{ display: none; }
/* section */

section .container { padding-top: 60px; padding-bottom: 60px;}
.small-section .container {padding: 40px 0 40px 0;}
.section-heading h2{ padding: 6px 12px; border: 0; line-height:30px; letter-spacing: 0px; font-size:26px; word-wrap: break-word;}
    
/* team */
.teamcaption p{ display:none;}
.team .teamcaption {padding-left: 20px;}
  
  /* menu */
.menu-item-price {
    margin-top: 10px;
    height: 60px;
    width: 60px;
    line-height: 50px; }
.menu-item-name {border-bottom: 0;}
.menu-item.featured {padding: 8px;}
  /* slider  */
.slider-pagi {display:none;}
.slide__text-heading {
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
    }      
  /* text*/
h1 {font-size:32px;}
h3 {font-size:22px;}
h3:after,h3:before{display:none;}  
h4 {font-size:22px;}
h5 {font-size:18px;}  
.subtitle {
  font-size: 16px;
  line-height:18px;
}

  /* Miscellaneous */

.m-left{margin-left:0px}
.section-heading{margin-bottom:3em;}
.navbar.navbar-custom.navbar-fixed-top {margin-bottom: 30px;}
.nav-pills> li.active:after, .nav-pills> li.active:before {top: -45%;}
.nav-pills > li + li {margin-bottom: 20px;}
.nav-pills > li {float: none;}




}

/************ max width 300px *************/
@media (max-width: 300px) {
        
  /* titles*/
  
  h1 {font-size:26px;}
  
  h3 {font-size:22px;}
    
  /* logo */

  .navbar-brand-centered img {
    max-height: 60%;
    max-width: 60%;
    }
  /* extras */
  
  .white_block {
      padding: 20px 10px 20px;
        margin: 5px;
    }
  .btn {padding:10px;}
  
  .form-control {height: 48px; }
  
  #opening .sign h5{margin:10px 0px 10px;}
  
  .panel-heading [data-toggle="collapse"]:after {display:none;}

  /* team */  
  .teamcaption .icons {display:none;}
  .team .teamcaption {padding-left:10px;}
}



@-webkit-keyframes glowing {
  0% { background-color: #B20000; -webkit-box-shadow: 0 0 3px #B20000; }
  50% { background-color: #FF0000; -webkit-box-shadow: 0 0 40px #FF0000; }
  100% { background-color: #B20000; -webkit-box-shadow: 0 0 3px #B20000; }
}

@-moz-keyframes glowing {
  0% { background-color: #B20000; -moz-box-shadow: 0 0 3px #B20000; }
  50% { background-color: #FF0000; -moz-box-shadow: 0 0 40px #FF0000; }
  100% { background-color: #B20000; -moz-box-shadow: 0 0 3px #B20000; }
}

@-o-keyframes glowing {
  0% { background-color: #B20000; box-shadow: 0 0 3px #B20000; }
  50% { background-color: #FF0000; box-shadow: 0 0 40px #FF0000; }
  100% { background-color: #B20000; box-shadow: 0 0 3px #B20000; }
}

@keyframes glowing {
  0% { background-color: #B20000; box-shadow: 0 0 3px #B20000; }
  50% { background-color: #FF0000; box-shadow: 0 0 40px #FF0000; }
  100% { background-color: #B20000; box-shadow: 0 0 3px #B20000; }
}
