/*
Theme Name: Twenty Thirteen
Theme URI: https://wordpress.org/themes/twentythirteen/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: The 2013 theme for WordPress takes us back to the blog, featuring a full range of post formats, each displayed beautifully in their own unique way. Design details abound, starting with a vibrant color scheme and matching header images, beautiful typography and icons, and a flexible layout that looks great on any device, big or small.
Version: 1.6
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: black, brown, orange, tan, white, yellow, light, one-column, two-columns, right-sidebar, fluid-layout, responsive-layout, custom-header, custom-menu, editor-style, featured-images, microformats, post-formats, rtl-language-support, sticky-post, translation-ready, accessibility-ready
Text Domain: twentythirteen

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/
.policy {
    padding: 40px 0px;
}
.acc-details {
    background-color: #f3f3f3;
    padding: 30px;
}
.acc-details h3{
    color: #a81043;
}
/**
 * Table of Contents:
 *
 * 1.0 - Reset
 * 2.0 - Repeatable Patterns
 * 3.0 - Basic Structure
 * 4.0 - Header
 *   4.1 - Site Header
 *   4.2 - Navigation
 * 5.0 - Content
 *   5.1 - Entry Header
 *   5.2 - Entry Meta
 *   5.3 - Entry Content
 *   5.4 - Galleries
 *   5.5 - Post Formats
 *   5.6 - Attachments
 *   5.7 - Post/Paging Navigation
 *   5.8 - Author Bio
 *   5.9 - Archives
 *   5.10 - Search Results/No posts
 *   5.11 - 404
 *   5.12 - Comments
 *   5.13 - Multisite
 * 6.0 - Sidebar
 *   6.1 - Widgets
 * 7.0 - Footer
 * 8.0 - Media Queries
 * 9.0 - Print
 * ----------------------------------------------------------------------------
 */

/**
 * 1.0 Reset
 *
 * Modified from Normalize.css to provide cross-browser consistency and a smart
 * default styling of HTML elements.
 *
 * @see http://git.io/normalize
 * ----------------------------------------------------------------------------
 */

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing:    border-box;
	box-sizing:         border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
video {
	display: inline-block;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden] {
	display: none;
}

html {
	font-size: 100%;
	overflow-y: scroll;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

html,
button,
input,
select,
textarea {
	font-family: "Source Sans Pro", Helvetica, sans-serif;
}

body {
	    margin: 0;
    padding: 0;
    font-family: 'open-sans', sans-serif;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.75;
    box-sizing: border-box;
    color: #000;
   
    position: relative;
}

a {
	color: #ca3c08;
	text-decoration: none;
}

a:visited {
	color: #fff;
}

a:focus {
	outline: thin dotted;
}

a:active,
a:hover {
	color: #ea9629;
	outline: 0;
}

a:hover {
	text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	font-family: Bitter, Georgia, serif;
	line-height: 1.3;
}

h1 {
	font-size: 2.5rem;
}

h2 {
	font-size: 30px;
	margin: 25px 0;
}

h3 {
	font-size: 22px;
	margin: 22px 0;
}

h4 {
	font-size: 18px;
}

h5 {
	font-size: 18px;
	margin: 30px 0;
}

h6 {
	font-size: 16px;
	margin: 36px 0;
}

address {
	font-style: italic;
	margin: 0 0 24px;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

mark {
	background: #ff0;
	color: #000;
}

p {
	margin: 0 0 20px;
}

code,
kbd,
pre,
samp {
	font-family: monospace, serif;
	font-size: 14px;
	-webkit-hyphens: none;
	-moz-hyphens:    none;
	-ms-hyphens:     none;
	hyphens:         none;
}

pre {
	background: #f5f5f5;
	color: #666;
	font-family: monospace;
	font-size: 14px;
	margin: 20px 0;
	overflow: auto;
	padding: 20px;
	white-space: pre;
	white-space: pre-wrap;
	word-wrap: break-word;
}

blockquote,
q {
	-webkit-hyphens: none;
	-moz-hyphens:    none;
	-ms-hyphens:     none;
	hyphens:         none;
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
	content: none;
}

blockquote {
	font-size: 18px;
	font-style: italic;
	font-weight: 300;
	margin: 24px 40px;
}

blockquote blockquote {
	margin-right: 0;
}

blockquote cite,
blockquote small {
	font-size: 14px;
	font-weight: normal;
	text-transform: uppercase;
}

blockquote em,
blockquote i {
	font-style: normal;
	font-weight: 300;
}

blockquote strong,
blockquote b {
	font-weight: 400;
}

small {
	font-size: smaller;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

dl {
	margin: 0 20px;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 0 20px;
}

menu,
ol,
ul {
	margin: 16px 0;
	padding: 0 0 0 40px;
}

ul {
	list-style-type: square;
}

nav ul,
nav ol {
	list-style: none;
	list-style-image: none;
}

li > ul,
li > ol {
	margin: 0;
}

img {
	-ms-interpolation-mode: bicubic;
	border: 0;
	vertical-align: middle;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 0;
}

form {
	margin: 0;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
	white-space: normal;
}

button,
input,
select,
textarea {
	font-size: 100%;
	margin: 0;
	max-width: 100%;
	vertical-align: baseline;
}

button,
input {
	line-height: normal;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
input[disabled] {
	cursor: default;
}

input[type="checkbox"],
input[type="radio"] {
	padding: 0;
}

input[type="search"] {
	-webkit-appearance: textfield;
	padding-right: 2px; /* Don't cut off the webkit search cancel button */
	width: 270px;
}

input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
	vertical-align: top;
}

table {
	border-bottom: 1px solid #ededed;
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 14px;
	line-height: 2;
	margin: 0 0 20px;
	width: 100%;
}

caption,
th,
td {
	font-weight: normal;
	text-align: left;
}

caption {
	font-size: 16px;
	margin: 20px 0;
}

th {
	font-weight: bold;
	text-transform: uppercase;
}

td {
	border-top: 1px solid #ededed;
	padding: 6px 10px 6px 0;
}

del {
	color: #333;
}

ins {
	background: #fff9c0;
	text-decoration: none;
}

hr {
	background: url(images/dotted-line.png) repeat center top;
	background-size: 4px 4px;
	border: 0;
	height: 1px;
	margin: 0 0 24px;
}

.slides:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-color: rgba(27, 30, 34, 0.6);*/
     background: linear-gradient(to right, rgba(33, 13, 64, 0.4), rgba(168, 16, 67, 0.51));
    z-index: 99;
}
/*gallerypage */
.gallerypage 
{
 margin: 0px;   
}
.gallerypage .img_wrapper
{
margin-top: 25px;
    text-align: center;
    display: inline-block;
    width: 100%;
    padding: 0px 40px;
}
.gallerypage .img_wrapper figure
{
    max-width: 21.33%;
    display: inline-block;
    margin: 0px 10px 24px;
    text-align: center;
    float: none;
}
.gallerypage .img_wrapper figure img
{
 padding: 4px;
    border: 2px solid #BC8D3F;
}
.hm-gallery .img_wrapper figure figcaption {
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    top: 15px;
}
.gallerypage .img_wrapper figure:hover figcaption {
    left: 15px;
}


.hm-gallery
{
 margin: 45px 0px;   
}
.hm-gallery .img_wrapper figure {
    width: 25%;
    float: left;
    position: relative;
}
.hm-gallery .img_wrapper figure figcaption
{
 display: block;
    position: absolute;
    left: -10px;
    top: 10px;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    filter: alpha(opacity=0);
    transition: all 0.5s ease;
    width: calc(100% - 20px);
    height: calc(100% - 20px); 
}
.hm-gallery .img_wrapper figure figcaption h4
{
    position: absolute;
    left: 50%;
    top: 45%;
    color: #C5A46D;
    transform: translateX(-50%) translateY(-32%);
    font-weight: bold;
    margin: 0px;
    display: inline-block;
    text-align: center;
}
.hmgallery-block .img_wrapper figure figcaption h4
{
    font-size: 21px;
    margin-top: -7px;

}
.hm-gallery .img_wrapper figure figcaption h4 span
{
 margin-right: 5px;   
    font-weight: 100;
}
.hm-gallery .img_wrapper figure:hover figcaption {
    opacity: 1;
    filter: alpha(opacity=100);
    left: 15px;
}
.hm-gallery .img_wrapper figure img
{
    border: none;
    padding: 0px;
    box-shadow: none;
    width: 100% !important;
}
.hm-gallery h4.gtitle {
    display: none;
}
.hm-gallery .sec-title{margin-bottom: 30px;}
.hmgallery-block .sec-title
{
 margin-bottom: 0px;   
    border-radius: 4px 4px 0 0;
background: #f8f8f8;
    border-bottom: 1px solid #ddd;
    padding: 15px;
}
.hmgallery-block {
    display: inline-block;
    border-radius: 4px;
    padding: 0;
    margin: 25px 0px;
}

.hm-gallery .details
{
    margin-top: 40px;
}
.ez_img
{
 margin: 0px;   
}
/*homegallery*/
.hm-gallery
{
 margin: 45px 0px;   
}
.hm-gallery .img_wrapper figure {
    width: 25%;
    float: none;
    position: relative;
}
.hm-gallery .img_wrapper figure figcaption
{
 display: block;
    position: absolute;
    left: -10px;
    top: 10px;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    filter: alpha(opacity=0);
    transition: all 0.5s ease;
    width: calc(100% - 20px);
    height: calc(100% - 20px); 
}
.hm-gallery .img_wrapper figure figcaption h4
{
    position: absolute;
    left: 50%;
    top: 45%;
    color: #fff;
    transform: translateX(-50%) translateY(-32%);
    font-weight: bold;
    margin: 0px;
    display: inline-block;
    text-align: center;
}
.hmgallery-block .img_wrapper figure figcaption h4
{
    font-size: 18px;
    margin-top: 0px;
    width: 100%;

}
.hm-gallery .img_wrapper figure figcaption h4 span
{
 margin-right: 7px;   
    font-weight: 100;
}
.hm-gallery .img_wrapper figure:hover figcaption {
    opacity: 1;
    filter: alpha(opacity=100);
    left: 10px;
}
.hm-gallery .img_wrapper figure img
{
    border: none;
    padding: 0px;
    box-shadow: none;
    width: 100% !important;
}
.hm-gallery h4.gtitle {
    display: none;
}
.hm-gallery .sec-title{margin-bottom: 30px;}
.hmgallery-block .sec-title
{
 margin-bottom: 0px;   
    border-radius: 4px 4px 0 0;
background: #f8f8f8;
    border-bottom: 1px solid #ddd;
    padding: 15px;
}
.hmgallery-block {
    display: inline-block;
    border-radius: 4px;
    padding: 0;
    margin: 25px 0px;
}
.hm-gallery .details
{
    margin-top: 40px;
}
.ez_img
{
 margin: 0px;   
}

/*calltoaction*/
.calltoaction
{
 padding: 15px 0px;
background: #e9e9e9;
    border-top: 1px solid #dfdfdf;
}
.calltoaction h2
{
    float: left;
    font-size: 22px;
    color: #444444; 
}
.calltoaction .bknowstrip
{
    float: right;
}
.homepagecontent .hentry
{
 padding-bottom: 0px;   
}
/**
 * 2.0 Repeatable Patterns
 * ----------------------------------------------------------------------------
 */

.genericon:before,
.menu-toggle:after,
.featured-post:before,
.date a:before,
.entry-meta .author a:before,
.format-audio .entry-content:before,
.comments-link a:before,
.tags-links a:first-child:before,
.categories-links a:first-child:before,
.edit-link a:before,
.attachment .entry-title:before,
.attachment-meta:before,
.attachment-meta a:before,
.comment-awaiting-moderation:before,
.comment-reply-link:before,
.comment-reply-login:before,
.comment-reply-title small a:before,
.bypostauthor > .comment-body .fn:before,
.error404 .page-title:before {
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font: normal 16px/1 Genericons;
	vertical-align: text-bottom;
}

/* Clearing floats */
.clear:after,
.attachment .entry-header:after,
.site-footer .widget-area:after,
.entry-content:after,
.page-content:after,
.navigation:after,
.nav-links:after,
.gallery:after,
.comment-form-author:after,
.comment-form-email:after,
.comment-form-url:after,
.comment-body:after {
	clear: both;
}

.clear:before,
.clear:after,
.attachment .entry-header:before,
.attachment .entry-header:after,
.site-footer .widget-area:before,
.site-footer .widget-area:after,
.entry-content:before,
.entry-content:after,
.page-content:before,
.page-content:after,
.navigation:before,
.navigation:after,
.nav-links:before,
.nav-links:after,
.gallery:before,
.gallery:after,
.comment-form-author:before,
.comment-form-author:after,
.comment-form-email:before,
.comment-form-email:after,
.comment-form-url:before,
.comment-form-url:after,
.comment-body:before,
.comment-body:after {
	content: "";
	display: table;
}

/* Assistive text */
ul.abt-list {
    list-style-type: disc!important;
    font-family: 'open-sans', sans-serif;
}
ul.abt-list li {
    font-family: 'open-sans', sans-serif;
        line-height: 2;
    font-size: 14px;
        color: #000;
    letter-spacing: .5px;
}

.tariff-pg {
    margin-top: 50px;
}
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	overflow: hidden;
	position: absolute !important;
	height: 1px;
	width: 1px;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-weight: bold;
	height: auto;
	line-height: normal;
	padding: 15px 23px 14px;
	position: absolute;
	left: 5px;
	top: 5px;
	text-decoration: none;
	width: auto;
	z-index: 100000; /* Above WP toolbar */
}

/* Form fields, general styles first. */
button,
input,
textarea {
	border: 2px solid #d4d0ba;
	font-family: inherit;
	padding: 5px;
}

input,
textarea {
	color: #141412;
}

input:focus,
textarea:focus {
	border: 2px solid #c3c0ab;
	outline: 0;
}

.post-password-required input[type="submit"] {
	padding: 7px 24px 4px;
	vertical-align: bottom;
}

.post-password-required input[type="submit"]:active {
	padding: 5px 24px 6px;
}

/* Placeholder text color -- selectors need to be separate to work. */
::-webkit-input-placeholder {
	color: #7d7b6d;
}

:-moz-placeholder {
	color: #7d7b6d;
}

::-moz-placeholder {
	color: #7d7b6d;
}

:-ms-input-placeholder {
	color: #7d7b6d;
}

/*
 * Responsive images
 *
 * Fluid images for posts, comments, and widgets
 */
.entry-content img,
.entry-summary img,
.comment-content img,
.widget img,
.wp-caption {
	max-width: 100%;
}

/* Make sure images with WordPress-added height and width attributes are scaled correctly. */
.entry-content img,
.entry-summary img,
.comment-content img[height],
img[class*="align"],
img[class*="wp-image-"],
img[class*="attachment-"] {
	height: auto;
}

img.size-full,
img.size-large,
img.wp-post-image {
	height: auto;
	max-width: 100%;
}

/* Make sure videos and embeds fit their containers. */
embed,
iframe,
object,
video {
	max-width: 100%;
}

/* Override the Twitter embed fixed width. */
.entry-content .twitter-tweet-rendered {
	max-width: 100% !important;
}

/* Images */
.alignleft {
	float: left;
}

.alignright {
	float: right;
}

.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

figure.wp-caption.alignleft,
img.alignleft {
	margin: 5px 20px 5px 0;
}

.wp-caption.alignleft {
	margin: 5px 10px 5px 0;
}

figure.wp-caption.alignright,
img.alignright {
	margin: 5px 0 5px 20px;
}

.wp-caption.alignright {
	margin: 5px 0 5px 10px;
}

img.aligncenter {
	margin: 5px auto;
}

img.alignnone {
	margin: 5px 0;
}

.wp-caption .wp-caption-text,
.entry-caption,
.gallery-caption {
	color: #220e10;
	font-size: 18px;
	font-style: italic;
	font-weight: 300;
	margin: 0 0 24px;
}

div.wp-caption.alignright img[class*="wp-image-"] {
	float: right;
}

div.wp-caption.alignright .wp-caption-text {
	padding-left: 10px;
}

img.wp-smiley,
.rsswidget img {
	border: 0;
	border-radius: 0;
	box-shadow: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

.wp-caption.alignleft + ul,
.wp-caption.alignleft + ol {
	list-style-position: inside;
}
/* himesha */

.logo {
    
    margin: 10px 0 10px 0;
    width: 200px;
    float: left;
}
.navigation .nav-menu .current_page_item > a {
    color: #a81043;
    border-top: 5px solid #a81043;
}
.carousel-inner
{
    overflow: inherit;
}
.facpage-block h4
{
 font-size: 16px;   
    text-transform: capitalize;
}
/* himesha */




/**
 * 3.0 Basic Structure
 * ----------------------------------------------------------------------------
 */
.site {
	background-color: #fff;
	margin: 0 auto;
	width: 100%;
   
}

.site-main {
	position: relative;
}

.site-main .sidebar-container {
	height: 0;
	position: absolute;
	top: 40px;
	width: 100%;
	z-index: 1;
}

.site-main .sidebar-inner {
	margin: 0 auto;
	max-width: 1040px;
}



/**
 * 4.2 Navigation
 * ----------------------------------------------------------------------------
 */

.main-navigation {
	clear: both;
	margin: 0 auto;
	min-height: 45px;
	position: relative;
}

ul.nav-menu,
div.nav-menu > ul {
	margin: 0;
	padding: 0 120px 0 0;
}

.nav-menu li {
	display: inline-block;
	position: relative;
}

.nav-menu li a {
	color: #141412;
	display: block;
	font-size: 15px;
	line-height: 1;
	padding: 15px 15px;
	text-decoration: none;
}



.nav-menu .sub-menu,
.nav-menu .children {
    box-shadow: 0px -1px 2px 1px rgba(0, 0, 0, 0.22);
	background-color: #fff;
	
	border-top: 0;
	padding: 0;
	position: absolute;
	left: -2px;
	z-index: 99999;
	height: 1px;
	width: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
}

.nav-menu .sub-menu ul,
.nav-menu .children ul {
	border-left: 0;
	left: 100%;
	top: 0;
}

ul.nav-menu ul a,
.nav-menu ul ul a {
	color: #000;
	margin: 0;
	width: 200px;
}

ul.nav-menu ul a:hover,
.nav-menu ul ul a:hover,
ul.nav-menu ul a:focus,
.nav-menu ul ul a:focus {
	background-color: #a81043;
    color: white!important;
}

.nav-menu .sub-menu .navigation .nav-menu .current_page_item > a:hover{color: #fff!important;}
ul.nav-menu ul a:focus,
.nav-menu ul ul a:focus {
	background-color: #a81043;
    color: white;
}
img.loc-img{
    height: 385px;
    width: 600px;
    float: right;
}

.dining {
    margin-top: 50px;
    margin-bottom: 50px;
}
.table-bordered>tbody>tr>td, .table-bordered>tbody>tr>th, .table-bordered>tfoot>tr>td, .table-bordered>tfoot>tr>th, .table-bordered>thead>tr>td, .table-bordered>thead>tr>th{    border: 2px solid #a81043;}
.tariff-pg .table {
    width: 50%;
    max-width: 100%;
    margin-bottom: 20px;
}ul.nav-menu li:hover > ul,
.nav-menu ul li:hover > ul,
ul.nav-menu .focus > ul,
.nav-menu .focus > ul {
	clip: inherit;
	overflow: inherit;
	height: inherit;
	width: inherit;
}

.nav-menu .current_page_item > a,
.nav-menu .current_page_ancestor > a,
.nav-menu .current-menu-item > a,
.nav-menu .current-menu-ancestor > a {
	color: #000;
	font-style: normal;
}

.menu-toggle {
	display: none;
}

/* Navbar */
.navbar {
	background-color: #F4F4F4;
	margin: 0 auto;
	width: 100%;
}

.site-header .search-form {
	position: absolute;
	right: 20px;
	top: 1px;
}

.site-header .search-field {
	background-color: transparent;
	background-image: url(images/search-icon.png);
	background-position: 5px center;
	background-repeat: no-repeat;
	background-size: 24px 24px;
	border: none;
	cursor: pointer;
	height: 37px;
	margin: 3px 0;
	padding: 0 0 0 34px;
	position: relative;
	-webkit-transition: width 400ms ease, background 400ms ease;
	transition:         width 400ms ease, background 400ms ease;
	width: 1px;
}

.site-header .search-field:focus {
	background-color: #fff;
	border: 2px solid #c3c0ab;
	cursor: text;
	outline: 0;
	width: 230px;
}

/*footer widget*/
.sidebar-container .widget
{
	float: left;
	width: 180px;
	padding: 7px 15px;
	display: inline-block;
}
.sidebar-container .widget-title
{
	font-size: 18px;
	border-bottom: 1px dotted #fff;
	padding: 10px 0px ;
}
.site-footer
{
	background: #ccc;
}
.sidebar-container .widget_search
{
	width: 180px;
}
.sidebar-container .widget_recent_entries
{
	width: 180px;
}
.sidebar-container .widget_recent_comments
{
	width: 210px;
}
@media (max-width: 991px){
    .col-md-7.dine-slider {
    margin-top: 25px;
}
   .gallerypage .img_wrapper figure{max-width: 28.33%}   
}
@media (max-width: 715px){
   .hm-gallery .img_wrapper figure{width: 40%;}
    .gallerypage .img_wrapper figure{max-width: 36%;}
}
@media (max-width: 643px) {
	.site-title {
		font-size: 30px;
	}

  

	#content .format-status .entry-content,
	#content .format-status .entry-met {
		padding-left: 35px;
	}
}
@media (max-width: 600px) {
  .gallerypage .img_wrapper figure {
    max-width: 40.33%;
}
    .hm-gallery .img_wrapper figure {
    width: 61%;
    float: none;
    position: relative;
}
}
@media (max-width: 450px) {
  .gallerypage .img_wrapper figure {
    max-width: 70.33%;
}
    .hm-gallery .img_wrapper figure {
    width: 81%;
    float: none;
    position: relative;
}
}
	/* Small menu */

li:focus{outline: none!important;}
a:focus{outline: none!important;}
	.toggled-on .nav-menu, .toggled-on .nav-menu > ul{top: :-13px;right: 60px;}



.jumbotron {
    padding: 30px 15px!important;
    margin-bottom: 50px;
    color: inherit;
    background-color: rgba(238, 238, 238, 0.54);
    border: 2px double #a81043;
    border-style: dashed;
}