/* ==== Google font ==== */
@import url('http://fonts.googleapis.com/css?family=Lato:100,300,400,700,900,100italic,300italic,400italic,700italic,900italic|Montserrat:700,400|Merriweather:400italic|Oswald:400,700,300');


body {
    width: 100%;
    height: 100%;
    font-family: 'Lato',sans-serif;
	font-weight: 300;
    color: #000;
    background-color: #3B4045;
}

html {
    width: 100%;
    height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 30px;
    text-transform: uppercase;
    font-family: Montserrat,sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
}

p {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 1.6em;
}

p.lead {
	font-weight: 600;
}

a {
    color: #333;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #000;
}

.light {
    font-weight: 400;
}

.navbar {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255,255,255,.3);
	min-width:240px;
	border-radius: 0px!important;
	
}

.triangle {
	width:100%;
	height:10px;
	background: url(../img/triangleup.png) repeat-x top;
	margin-top:-10px;
	border-top:1px #f00;
}
.trianglefuzz {
	width:100%;
	height:10px;
	background:#1A2025 url(../img/fuzztriangle.png) repeat-x bottom;
	
	z-index:12000;
		
}


.footermenu .navbar-nav a:hover {
	border-radius:3px;
	background:#A80002!important;
}
.well {
	background:#F3EEDE;
	border:none;
	padding-top:20px!important;
	
}
.navbar-logo {
	height:35px; 
	width:60px;
	background:url(../../img/logo-01.svg) no-repeat left;
	
	margin-top:2px;
	background-size:100%;
	
	
	
}
.navbar-logo h1 {
	margin-left:20px;
}

.navbar-brand {
    font-weight: 700;
}
.navbar-brand {
  height: 40px;
  padding: 5px 15px;
  font-size: 18px;
  line-height: 1em;
  
}

.navbar-brand h1{
	color: #fff;
  font-size: 20px;
  line-height: 40px;
  padding-left:50px;
}

.navbar-brand:focus {
    outline: 0;
}

.nav.navbar-nav {
    background-color: rgba(255,255,255,.4);
}

.navbar-custom.top-nav-collapse .nav.navbar-nav {
    background-color: rgba(0,0,0,0);
}


.navbar-custom ul.nav li a {
	font-size: 12px;
	letter-spacing: 1px;
    color: #fff;
	text-transform: uppercase;
	font-weight: 700;
}

.navbar-custom.top-nav-collapse ul.nav li a {
	    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
	color: #fff;
}

.navbar-custom ul.nav ul.dropdown-menu {
	  border-radius: 0;	
}

.navbar-custom ul.nav ul.dropdown-menu li {
	border-bottom: 1px solid #f5f5f5;

}

.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;
}

.navbar-custom ul.nav ul.dropdown-menu li a:hover {
	background: #fefefe;
}

.navbar-custom.top-nav-collapse ul.nav ul.dropdown-menu li a {
	color: #666;
}

.navbar-custom .nav li a {
    -webkit-transition: background .3s ease-in-out;
    -moz-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
}

.navbar-custom .nav li a:hover,
.navbar-custom .nav li a:focus,
.navbar-custom .nav li.active {
    outline: 0;
    background-color: rgba(255,255,255,.2);
}
.navbar-custom .nav li a:hover,
.navbar-custom .nav li a:focus,
.navbar-custom .nav li.active {
    outline: 0;
    background-color: rgba(255,255,255,.1);
}

.navbar-toggle {
    padding: 4px 6px;
    font-size: 14px;
    color: #fff;
}

.navbar-toggle:focus,
.navbar-toggle:active {
    outline: 0;
}


/* loader */
#preloader {
    background: #ffffff;
    bottom: 0;
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 999;
}

.copyright {
	padding:3px;
	background:#3B4045;
	text-align:center;
	font-size:30%!important;
	
}

.copyright p{
	color:#798189;
	font-size:12px!important;
	margin-bottom:1px!important;
}
#loaderInner {
    background:#ffffff url(../img/spinner.gif) center center no-repeat;
    height: 60px;
    left: 50%;
    margin: -50px 0 0 -50px;
    position: absolute;
    top: 50%;
    width: 60px;
}

@keyframes boxSpin{
  0%{
    transform: translate(-10px, 0px);
  }
  25%{
    transform: translate(10px, 10px);
  }
  50%{
    transform: translate(10px, -10px);
  }
  75%{
    transform: translate(-10px, -10px);
  }
  100%{
    transform: translate(-10px, 10px);
  }
}


@keyframes shadowSpin{
  0%{
    box-shadow: 10px -10px #39CCCC, -10px 10px #FFDC00;
  }
  25%{
    box-shadow: 10px 10px #39CCCC, -10px -10px #FFDC00;
  }
  50%{
    box-shadow: -10px 10px #39CCCC, 10px -10px #FFDC00;
  }
  75%{
    box-shadow: -10px -10px #39CCCC, 10px 10px #FFDC00;
  }
  100%{
    box-shadow: 10px -10px #39CCCC, -10px 10px #FFDC00;
  }
}

#load {
	z-index: 9999;
  background-color: #FF4136;
  opacity: 0.75;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  margin: -5px auto 0 auto;
  left: 0;
  right: 0;
  border-radius: 0px;
  border: 5px solid #FF4136;
  box-shadow: 10px 0px #39CCCC, 10px 0px #01FF70;
  animation: shadowSpin 1s ease-in-out infinite;
}

/* misc */
hr {
  margin-top: 10px;
}

/* margins */
.marginbot-0{margin-bottom:0 !important;}
.marginbot-10{margin-bottom:10px !important;}
.marginbot-20{margin-bottom:20px !important;}
.marginbot-30{margin-bottom:30px !important;}
.marginbot-40{margin-bottom:40px !important;}
.marginbot-50{margin-bottom:50px !important;}

/* ===========================
--- General sections
============================ */
.mainlogo {
	height:500px;
	background: url(../img/mainlogo-01.png)no-repeat center;
	background-size:140%;
	
}
#splashheader {
	background:#FFDB15 url(../img/topgrade-01.png)no-repeat center top ;
	background-size:100%;
}
.home-section {
    padding-top: 110px;
    padding-bottom: 10px;
	display:block;
    position:relative;
    z-index:120;
	background:#FFDF15;
}
.navbar2 {
	background:#AB0F18 repeat-x bottom;
	padding:8px;
	border-bottom:15px solid #000;
}
.navcell {
	text-align:center;
	
}
.navcell a{
	color:#fff;
	font-weight:400;
	font-family:'Oswald';
	font-size:22px;
	text-shadow:2px 3px 0px #000;
}

.navcell a:hover{
	color:#ff0;
	font-weight:400;
	font-family:'Oswald';
	font-size:22px;
	text-shadow:2px 3px 0px #000;
}
.carousel {
	
}
.carousel-inner>.item>img, .carousel-inner>.item>a>img {
	width:100%!important;
	
	
}
.service-icon>img {max-width:250px;}
.col-right-line:before {
  position: absolute;
  content: " ";
  top: 0;
  right: 0;
  height: 100%;
  width: 1px;
  background-color: @color-neutral;
}
.aboutus{
	background: #AB0F18 url(../img/aboutbg-01.png)top center no-repeat;
	background-size:100%;
}
#menu {
	
	background: #FFDB15 url(../img/bottomgrade-01.png)top center no-repeat;
	
	background-size:100%;
	padding-bottom:100px;
	
}
.home-section h2 {
	font-family:'Oswald';
	font-weight:400;
	font-size:40px;
	text-shadow:3px 3px 0px #000;
	padding-bottom:40px;
}
.subtext {
	text-shadow:1px 2px 0px #000;
	font-weight:400;
}
.menuheader {
	background: url(../img/MenuTitleBg-01.png)no-repeat center ;
	background-size:100%;
	margin-bottom:50px;
}
#menu h2 {
	padding:40px 0 50px;
}

#menu h5 {
	font-family:'Oswald';
	color:#ffffff;
	text-shadow:2px 2px 0px #000;
	font-size:25px;
	font-weight:700;
}
#menu h3 {
	font-family:'Oswald';
	color:#ffffff;
	text-shadow:2px 2px 0px #000;
	font-size:35px;
	font-weight:700;
	margin-bottom:50px;padding-top:50px;
}
#menu p {
	color:#000;
	text-shadow:1px 1px 0px #FFDB15;
	font-weight:400;
	text-transform:capitalize;
	
}	
.well {
	background:#000;
	color:#fff;
}
.well.form-group {
	color:#fff!important;	
}
.contacthead{
	
	background:url(../img/contactborder-01.png) top repeat-x;
	height:166px;
	margin-bottom:80px;
	
	
	}
	
#contact {
	padding-top:0px!important;	
		
		}


<!----------/elshuko customizations-------->
<!----------/elshuko customizations-------->
<!----------/elshuko customizations-------->

.section-heading h2 {
	font-size: 40px;
}
.section-heading i {
	margin-bottom: 20px;
}


/* --- section bg var --- */

.bg-white {
	background: #fff;
}

.bg-gray {
	background: #f8f8f8;
}


.bg-dark {
	background: #575757;
}

/* --- section color var --- */

.text-light {
	color: #fff;
}


/* ===========================
--- Dragons
============================ */
.topbox {
	height:42px;
	background:url(../img/fuzzbg.png);
	color:	#FFFFFF;
	font-weight:400;
}
.topbox p {
	font-size:15px;
	padding-top:5px;
	font-family:Montserrat;
	font-weight:400;
	}
.dragon2 .dragonlogo {
	height:50%;
	background:url(../img/elshukologo.png)center bottom no-repeat;

	height:220px;
	max-height:220px;
	display:block;
}
.dragon1 .dragonlogo {
	height:50%;
	background:url(../img/DRAGONGRILLELOGO.png)center bottom no-repeat;
	
	height:220px;
	max-height:220px;
	display:block;
}

.dragon1 .truckpic {
	
	background:url(../img/truck1-01.png)center no-repeat;
	background-size:100%;
	min-height:280px;
	margin-bottom:40px;
}

.dragon2 .truckpic {
	
	background:url(../img/truck2-01.png)center no-repeat;
	background-size:100%;
	min-height:280px;
	margin-bottom:40px;
	
	
}


.dragon1 {
	background:#FCFBF8 url(../img/leftdragon-01.png) no-repeat right;
	background-size:80%;
	
	height:auto;
	z-index:100;
	
	
	
}

.dragon2 {
	background:#F3EEDE url(../img/rightdragon-01.png) no-repeat left;
	background-size:80%;
	
}

.para {
	min-height:200px;
	padding-bottom:20px
}
.pagesection {
	padding:50px 0;	
}
.dragonbox {
	overflow: hidden; 
	padding-bottom:10px;
	
}

.center-logo {
	color:#fff;
	left:-20px;
	position:relative;
	margin-top:12px;
	margin-bottom:0px!important;
	width:100%;
	
	


}
.dragonbox h3 {margin-bottom:10px;}

/* ===========================
--- Contact
============================ */
.section-heading h2 {
	margin-bottom:2px;
	color:#fff;
}

#contact {background: url(../img/fuzzbg.png);}
/* ===========================
--- Intro
============================ */

.intro {
	width:100%;
	position:relative;
	padding-bottom:300px!important;
	background: #000 url(../img/bg1.svg) no-repeat center;
	background-size:110%;
	height:900px;
}

#intro.intro {
	padding:20% 0 0 0;
}

.intro .slogan {
	text-align: center;
	height:350px;

}

.intro .page-scroll {
	text-align: center ;
	
}

.brand-heading {
    font-size: 40px;
}

.intro-text {
    font-size: 18px;
}

.intro .slogan h2 {
	color: #565759;
	text-shadow: none;
	font-size: 60px;
	line-height: 60px;
	font-weight: 400;
	font-family: Montserrat, sans-serif;
	background-color: rgba(0, 0, 0, 0);
	text-decoration: none;
	text-transform: uppercase;
	border-width: 0px;
	border-color: #000;
	border-style: none;
}

.intro .slogan h4 {
	color: #565759;
}


/* ===========================
--- About
============================ */

.boxed-grey {
	background: #f9f9f9;
	padding: 20px;
}

.team h5 {
	margin-bottom: 10px;
}

.team p.subtitle {
	margin-bottom: 10px;
}

.avatar {
	margin-bottom: 20px;
}

.team-social {
	margin-left: 0;
	padding-left: 0;
	
}

.team-social {
	text-align: center;
}

.team-social li{
    display: inline-block;
	margin:0 !important;
	padding:0;
}


.team-social a{
	margin:0;
	padding:0;
    display: block;
	width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #3bbec0;
	color: #fff;
    -webkit-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
}
.team-social a i{
	text-align: center;
	margin:0;
	padding:0;
}
.team-social .social-facebook a{background: #3873ae;}
.team-social .social-twitter a{background: #000;}
.team-social .social-instagram a{background: #d74980;}
.team-social .social-deviantart a{background: #8da356;}
.team-social .social-google a{background: #000;}
.team-social .social-vimeo a{background: #51a6d3;}
.team-social .social-facebook a:hover{background: #4893ce;}
.team-social .social-twitter a:hover{background: #333;}
.team-social .social-dribble a:hover{background: #f769a0;}
.team-social .social-deviantart a:hover{background: #adc376;}
.team-social .social-google a:hover{background: #333;}

.fa-youtube{position:relative;top:-1px;font-size:21px!important;}

.subtext {
	text-align:justify;
	padding-top:2.5em;
	color:#fff;
	
}


/* ===========================
--- Menu
============================ */

.menu-item {
	margin-bottom: 20px;
	height:48px;
}	

.menu-desc p{
	padding:0 8px 10px;
}

/* ===========================
--- Gallery
============================ */

.carousel-inner {
	line-height:.1;	
}



.carousel-control.right {
	background:url(../img/rightgradient.png) repeat-y;

	background-size:120%;
	

	}
	
.carousel-control.left {
	background: url(../img/leftgradient.png)center repeat-y;
	background-size:120%;
	border-left:4px solid #000;
	}
.carousel-inner {
	border-radius:3px;
	border:5px solid #000;
	box-sizing:border-box;
  -moz-box-sizing:border-box;
  -webkit-box-sizing:border-box;
}
.arrow-right {
	background: url(../img/rightarrow.svg)right no-repeat;
	height:100%;
	padding:none!important;
}
.arrow-left {
	background: url(../img/leftarrow.svg)left no-repeat;
	height:100%;
	padding:none!important;
}
/* ===========================
--- Contact
============================ */

form#contact-form .form-group label {
	text-align: left !important;
	display: block;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 12px;
	
}

form#contact-form input,form#contact-form select,form#contact-form textarea {
	border-radius: 0px;
	border: 1px solid #fff;
  -webkit-box-shadow: none;
          box-shadow:  none;
}

form#contact-form input:focus,form#contact-form select:focus,form#contact-form textarea:focus {
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
          box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
}
.input-group-addon {
  background-color: #fefefe;
  border: 1px solid #eee;
  border-radius: 5px;;
}


.mapframe {
   width:360px;
   height:380px;
}
.overlay {
   background:transparent; 
   position:relative; 
   width:100%;
   height:380px; /* your iframe height */
   top:380px;  /* your iframe height */
   margin-top:-380px;  /* your iframe height */
}
.widget-contact {
	text-align: left;
}


.company-social {
	margin-left: 0;
	padding-left: 0;
	
}

.company-social {
	text-align: left;
}

.company-social li{
    display: inline-block;
	margin:0 !important;
	padding:0;
}


.company-social a{
	margin:0;
	padding:0;
    display: block;
	width: 50px;
    height: 50px;
    line-height: 50px;
	font-size:20px;
    text-align: center;
    background: #990002;
	color: #fff;
    -webkit-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
	margin-right:5px;
	margin-top:0px;
	border-radius:100%;
	
}

.company-social a:hover{
	background:#640002;	
}
.company-social a i{
	text-align: center;
	margin:0;
	padding:0;
} 
.phonebox {
	text-align:left;
}

.btn-cirlce.social-facebook a{
	text-align: center;
	margin:0;
	padding:0;
	background:#000;
}
address {
	font-size:16px!important;
	line-height:25px;
}

.connectbox address {
	margin-bottom:30px;	
}


/* ===========================
--- Footer
============================ */

footer {
	text-align: center;
	padding: 19px 0 19px 13px ;
	background:#990002;
	
}

footer p {
	color: #ddd;
	margin-bottom:0px;
	font-size:11px;
	line-height:2px;
	
}
.footerinfo {
	float:left;
	
}

.footermenu li a{
	color:#fff;
	text-transform:uppercase;
	font-weight:bold;
	font-size:80%;
	letter-spacing:2px;
}

.footermenu li a:hover{
	color:#000;
}

.nav.navbar-nav {
	background:none!important;
	margin-top:5px;
}

.formbox {margin:0 0 10px;

}

.maps {
  margin:0 0 40px;

}
.wherepic {
height:109px;
background:url(../img/location-01.png) no-repeat center;
margin-top:20px;

	}

/* ==========================
Parallax
============================= */

#parallax1{	
	background-image: url(../img/parallax/1.jpg);
}

#parallax1:after {	
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAEklEQVQImWNgYGD4z0AswK4SAFXuAf8EPy+xAAAAAElFTkSuQmCC);
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
	opacity: 0.7;
	z-index: -1;
}


#parallax2{	
	background-image: url(../img/parallax/2.jpg);

}

#parallax2:after  {	
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAEklEQVQImWNgYGD4z0AswK4SAFXuAf8EPy+xAAAAAElFTkSuQmCC);
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
	opacity: 0.7;
	z-index: -1;
}


/* ===========================
--- Elements
============================ */

.btn {
	border-radius: 0;
    text-transform: uppercase;
    font-family: Montserrat,sans-serif;
    font-weight: 400;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}


.btn-circle {
    width: 70px;
    height: 70px;
    margin-top: 15px;
    padding: 7px 16px;
    border: 2px solid #fff;
    border-radius: 50%;
    font-size: 40px;
    color: #fff;
    background: 0 0;
    -webkit-transition: background .3s ease-in-out;
    -moz-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
	
}

.btn-circle.btn-dark {
    border: 2px solid #990002;
    color: #990002;
}

.btn-circle.btn-dark:hover,
.btn-circle.btn-dark:focus {
    outline: 0;
    color: #990002;
    background:none!important;
}
.btn-circle:hover,
.btn-circle:focus {
    outline: 0;
}

.btn-circle.btn-dark :hover,
.btn-circle.btn-dark :focus {
    outline: 0;
    color: #999;
}

.btn-circle.btn-dark :hover i,
.btn-circle.btn-dark :focus i{
    color: #999;
}

.page-scroll .btn-circle i.animated {
    -webkit-transition-property: -webkit-transform;
    -webkit-transition-duration: 1s;
    -moz-transition-property: -moz-transform;
    -moz-transition-duration: 1s;
}

.page-scroll .btn-circle:hover i.animated {
    -webkit-animation-name: pulse;
    -moz-animation-name: pulse;
    -webkit-animation-duration: 1.5s;
    -moz-animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
}

@-webkit-keyframes pulse {    
    0 {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-moz-keyframes pulse {    
    0 {
        -moz-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -moz-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -moz-transform: scale(1);
        transform: scale(1);
    }
}


#text {
    color: #fff;
    background: #ffcc00;
}

#map {
	height: 500px;
}


.btn-skin:hover,
.btn-skin:focus,
.btn-skin:active,
.btn-skin.active {
  color: #fff;
  background-color: #800003;
  border-color: #800003;
}


.btn-default:hover,
.btn-default:focus {
    border: 1px solid #28c3ab;
    outline: 0;
    color: #000;
    background-color: #28c3ab;
}

.btn-huge {
    padding: 25px;
    font-size: 26px;
}

.banner-social-buttons {
    margin-top: 0;
}
.form-control{color:#000!important;}

.form-group{color:#fff!important;}

#btnContactUs{
	font-size:13px;
	padding:10px 15px;
	border-radius:3px;
	border:none;
	margin-bottom:20px;
	margin-top:7px;
}

.spacer1 {
	height:16px;
	width:20px;


}

/* Media queries */

@-webkit-viewport   { width: device-width; }
@-moz-viewport      { width: device-width; }
@-ms-viewport       { width: device-width; }
@-o-viewport        { width: device-width; }
@viewport           { width: device-width; }

@media(min-width:1656px) {
	.intro {
		
		padding:210px 15px 100px!important;
		max-height:1000px!important;
		background:#000 url(../img/bg1c.svg)center no-repeat;
	
}
	.dragon1 .dragonlogo {
		height:400px!important;
		background: url(../img/DRAGONGRILLELOGOxl.png)no-repeat center bottom;
		max-height:250px;
		
}

	.dragon2 .dragonlogo {
		height:400px!important;
		background: url(../img/elshukologoxl.png)no-repeat center bottom;
		max-height:250px;
		
}
		
}

@media(min-width:1200px) {
		.descpad1 {margin-left:100px;}
		.descpad2 {margin-left:-100px;}
		.descpad1 {padding:0px 60px;}
		.descpad2 {padding:0px 80px;}
	
	
}
@media(max-width:991px) {
	 .intro {
       max-height:600px!important;
	   background:#000 url(../img/bg1b.svg)center no-repeat;
	   background-size:150%;	
    }

	.menu-desc h5{
		font-size:120%;
		
	}
	.dragon2 .dragonlogo { 
		background-size: 150%;
		
		
	}
	.dragon1 .dragonlogo { 
		background-size: 120%;
		
		
	}
}

@media(min-width:844px) {
		
		.soda {padding-top:150px;}
		

}
@media(min-width:768px) {

    .navbar {
        padding: 20px 0;
        border-bottom: 0;
        letter-spacing: 1px;
        background: 0 0;
        -webkit-transition: background .5s ease-in-out,padding .5s ease-in-out;
        -moz-transition: background .5s ease-in-out,padding .5s ease-in-out;
        transition: background .5s ease-in-out,padding .5s ease-in-out;
    }

    .top-nav-collapse {
        padding:/* use to change collapsed menu when scrolling*/ 10px;
        background-color: #000;
    }

    .navbar-custom.top-nav-collapse {
        border-bottom: 1px solid rgba(255,255,255,.2);
    }
	
    .intro {
       
        padding: 0;
    }

    .brand-heading {
        font-size: 100px;
    }
	

    .intro-text {
        font-size: 25px;
    }
	
	.maps {
  		margin:;
		padding:0 25px!important;

}
	.mapframe {
		padding-right:25px;		
}
 	

}
@media (max-width:768px) {
	.well {
		margin:0 20px;
		padding:0 0 40px!important;
	
		
     }
	 	.carousel-inner>.item>img, .carousel-inner>.item>a>img {
	background-size:fixed;
	overflow:hidden;
	min-height:200px!important;
	
}
.aboutus {padding-top:10px!important;}
.aboutus p {font-size:13px;}
.contacthead {margin-bottom:10px!important;}

#menu {padding-top:10px!important;}
	 .contactbox .well{
		padding:1px 0px!important;
		padding-bottom:245px!important;
	}

	.well h3{
		font-size:18px;	
		text-align:center;
	}
	
	.section-heading h2 {
		margin-top:50px!important;
	}
	
	.dragon1 .dragonlogo {
		background-size:70%!important;
	
	}
	.team.boxed-grey {
		margin-bottom: 30px;
	}
	
	.boxed-grey {
		margin-bottom: 30px;
		
	}
	.intro {
		
		padding:210px 15px 100px!important;
		min-height:600px!important;
		background:#000 url(../img/bg1.svg)center no-repeat;
		background-size:120%;
}
	.navbar {
		background-color: #000;
}
	.navbar-logo {
		margin-top:0px;
}
	.navbar-custom ul.nav li a{
		color:#ffffff;
}
	.footermenu {		
}
	
	.mapframe {
	   width:100% !important;
	   height:380px;
}

	.subtext {
		padding:0 60px;		
}

	.menu-desc {
		padding:0 60px;		
}


	.padbox-sm {
		padding:20px 12px;
}
.carousel-control.right {

	width:30%;

	
	}
	
.carousel-control.left {

	width:30%;
	}
	
.carousel-inner {
	
}

.navbar-toggle {
	font-size:23px!important;
	margin:2px;
	padding:5px 10px 0 0;
}
.navbar-logo {
	background-size:80%;
	margin-left:-3px!important;}
.navbar-logo h1 {
	font-size:90%;
	margin-left:5px!important;}
	


.dragon2 .dragonlogo {
		background:url(../img/elshukologosm.png)no-repeat  bottom !important;
		height:220px!important;
	
	}
	.dragon1 .dragonlogo {
		background:url(../img/DRAGONGRILLELOGOsm.png)no-repeat  bottom !important;
		height:220px!important;
	
	}
	.mainlogo {height:400px!important;background-size:180%!important;}
}


@media (max-width:580px)

{
	.dragon2 .dragonlogo {
		background:url(../img/elshukologosm.png)no-repeat  bottom !important;
		height:220px!important;
	
	}
	.dragon1 .dragonlogo {
		background:url(../img/DRAGONGRILLELOGOsm.png)no-repeat  bottom !important;
		height:220px!important;
	
	}
	
	
	.dragon1 .truckpic {
		background-size:120%!important;
		height:100%;
		background: url(../img/truck1-02.png)center right!important;
	}
	.dragon2 .truckpic {
		background-size:120%!important;
		height:100%;
		background: url(../img/truck2-02.png)center right!important;
	}
	
	.navbar-custom .nav.navbar-nav {
    background-color: rgba(255,255,255,.4);
	
	}
	
	.navbar.navbar-custom.navbar-fixed-top {
		margin-bottom: 30px;
	}
	
	.tp-banner-container {
		padding-top:40px;
	}

	.page-scroll a.btn-circle {
		width: 40px;
		height: 40px;
		margin-top: 10px;
		padding: 7px 0;
		border: 2px solid #fff;
		border-radius: 50%;
		font-size: 20px;
	}
	
	.slogan h2{
		font-size:25px!important;
		line-height:25px!important;
		vertical-align:middle!important;
		
}

	.subtext {
		padding:0 30px;		
}

.slogan h4{
		font-size:15px!important;
		vertical-align:middle!important;
		margin-bottom:0px!important;
		
}
.intro {
		padding-bottom:20px!important;
		padding:110px 15px 20px!important;
		man-height:300px!important;
}

.map {
		width:100%!important;	
}



	.menu-desc {
		padding:0 10px;		
}

h2 {
font-size: 25px!important;
margin:0px!important;

}


.button-white {
	color:#ffffff;
	
}

.para p{
	font-size:13px!important;
}

.navcell a{
	color:#fff;
	font-weight:400;
	font-family:'Oswald';
	font-size:12px;
	text-shadow:none!important;
}
.navcell a:hover{
	color:#ff0;
	font-weight:400;
	font-family:'Oswald';
	font-size:12px;
}

.mainlogo {height:300px!important;background-size:200%;background-image:url(../img/mainlogo-02.png)center no-repeat!important;}
}
@media (max-width:371px)
	
{ 
	.mainlogo {height:200px!important;background-size:210%;background-image:url(../img/mainlogo-02.png)center no-repeat}
	
	
.dragon1 .dragonlogo {
		background:url(../img/DRAGONGRILLELOGOsm.png)no-repeat center bottom !important;
		height:190px!important;
		background-size:170%!important;
	
	}
	
	.dragon2 .dragonlogo {
		background:url(../img/elshukologosm.png)no-repeat center bottom !important;
		height:170px!important;
		background-size:180%!important;
	
	}
	.navbar-logo h1 {
		font-size:13px;		
	}


}