@charset "UTF-8";
/*
Theme Name:
Theme URI: http://www.cssigniter.com/ignite/themes/
Author: CSSIgniter
Author URI: http://www.cssigniter.com
Description:
Tags:
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/
/* -----------------------------------------
	Table of Contents
--------------------------------------------

.. 01. General
.. 02. Main Navigation
.. 03. Header
.. 04. Modules
.. 05. Footer
.. 06. Comments
.. 07. Widgets Styling
.. 08. WordPress defaults
.. 09. Mobile Menu
.. 10. External Plugins
.. 11. Global Mediaqueries

*/
/* -----------------------------------------
	01. General
----------------------------------------- */
.entry-thumb > a, .item > a {
  display: block;
  position: relative;
  transition: all 0.18s ease;
}
.entry-thumb > a:after, .item > a:after {
  content: "";
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  position: absolute;
  top: 15px;
  left: 15px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.entry-thumb > a:before, .item > a:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.18s ease;
}
.entry-thumb > a:hover:before, .item > a:hover:before {
  opacity: 0.74;
}

.entry-thumb > a:before, .item > a:before {
  background-color: #BF4748;
  background-image: -moz-linear-gradient(left, #BF4748 0%, #4D0248 100%);
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0%, #BF4748), color-stop(100%, #4D0248));
  background-image: -webkit-linear-gradient(left, #BF4748 0%, #4D0248 100%);
  background-image: -o-linear-gradient(left, #BF4748 0%, #4D0248 100%);
  background: -ms-linear-gradient(left, #BF4748 0%, #4D0248 100%);
  background: linear-gradient(to right, #BF4748 0%, #4D0248 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$from', endColorstr='$to',GradientType=1 );
}

/* Basic Typography
=================================== */
body {
  /*background-color: #232428;*/
  line-height: 1.5;
  font-size: 14px !important;
  color: #232428;
  font-family: "Source Sans Pro", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, .widget-title, h4, h5, h6 {
  line-height: normal;
  margin: 0 0 15px 0;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: normal;
}

h1 {
  font-size: 32px;
}

h2 {
  font-size: 27px;
}

h3, .widget-title {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 14px;
}

p {
  margin: 0 0 15px 0;
}

img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

/* a {
  transition: color 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
  outline: none;
  color: #C04848;
  text-decoration: none;
}
a:hover, a:focus {
  color: #cd6e6e;
  outline: none;
  text-decoration: none;
}
a:active {
  outline: none;
}

.group:before, .group:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2
}
.group:after {
  clear: both;
}*/

/* General Element Styling
=================================== */
/* Reset figure margin from normalize.css */
figure {
  margin: 0;
}

/* Lists */
ul, ol {
  padding-left: 20px;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

dl {
  margin: 0 0 20px;
}

dt {
  font-weight: bold;
}

dd {
  margin: 0 0 15px;
}

/* Blockquotes */
blockquote {
  margin: 20px 0;
  padding-left: 15px;
  border-left: 3px solid #ccc;
  font-size: 17px;
  font-weight: 300;
}
blockquote cite {
  display: block;
  font-weight: bold;
  font-style: italic;
  margin: 10px 0 0;
  color: rgba(35, 36, 40, 0.8);
  font-size: 14px;
}

/* Tables */
table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
}

.entry-content table {
  border-width: 1px 0 0 1px;
  margin-bottom: 24px;
}
.entry-content th:first-child,
.entry-content td:first-child {
  padding-left: 0;
}
.entry-content th,
.entry-content td {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.entry-content caption,
.entry-content th,
.entry-content td {
  font-weight: normal;
  text-align: left;
  padding: 5px;
  vertical-align: middle;
}
.entry-content th {
  border-width: 0 1px 1px 0;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 85%;
}
.entry-content td {
  border-width: 0 1px 1px 0;
}

/* Code */
code, kbd, tt, var, samp, pre {
  font-family: monospace, serif;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  font-style: normal;
}

pre {
  padding: 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Various */
address {
  margin: 0 0 15px;
}

.sr-only,
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Embeds and iframes
=================================== */
embed,
iframe,
object,
video,
audio {
  border: none;
  margin-bottom: 15px;
  max-width: 100%;
}

p > embed,
p > iframe,
p > object,
p > audio,
span > embed,
span > iframe,
span > object,
span > audio {
  margin-bottom: 0;
}

#map * {
  max-width: none !important;
}

/* General Form Styling
=================================== */
label {
  display: block;
  margin: 0 0 2px;
  font-weight: normal;
  font-family: "Source Sans Pro", sans-serif;
  text-transform: uppercase;
  opacity: 0.8;
}

input,
textarea {
  display: inline-block;
  font-size: inherit;
  width: 100%;
  max-width: 100%;
  height: 46px;
  padding: 10px 15px;
  box-shadow: none;
  line-height: normal;
  -webkit-appearance: none;
  border: 1px solid #E5E5E5;
  background-color: #FFF;
  background-image: none;
  border-radius: 0;
  transition: all 0.18s ease;
}
input:hover,
textarea:hover {
  border-color: #C04848;
}
input:focus,
textarea:focus {
  border-color: #C04848;
  box-shadow: inset 3px 3px 0 0 rgba(0, 0, 0, 0.07);
  outline: none;
}
@media (max-width: 767px) {
  input,
  textarea {
    width: 100%;
  }
}

input[type="search"] {
  /* Restoring box-sizing */
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

textarea {
  height: auto;
}

select {
  max-width: 100%;
}

input[type="checkbox"],
input[type="radio"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
  width: auto;
  height: auto;
}

fieldset {
  margin: 0 0 15px;
  padding: 0;
  border: none;
  min-width: 0;
}

/* Placeholder text color */
::-webkit-input-placeholder {
  color: rgba(35, 36, 40, 0.5);
  font-weight: normal;
  opacity: 1;
}

:-moz-placeholder {
  color: rgba(35, 36, 40, 0.5);
  font-weight: normal;
  opacity: 1;
}

::-moz-placeholder {
  color: rgba(35, 36, 40, 0.5);
  font-weight: normal;
  opacity: 1;
}

:-ms-input-placeholder {
  color: rgba(35, 36, 40, 0.5);
  font-weight: normal;
  opacity: 1;
}

/* Buttons
=================================== */
.btn, .comment-reply-link,
input[type="button"],
input[type="submit"],
input[type="reset"],
button {
  display: inline-block;
  font-weight: normal;
  font-size: 14px;
  text-transform: uppercase;
  margin: 0;
  width: auto;
  min-width: 120px;
  height: auto;
  line-height: normal;
  border: none;
  border-bottom: 2px solid #8b3030;
  box-shadow: none;
  border-radius: 2px;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  white-space: nowrap;
  padding: 19px 22px;
  background-color: #C04848;
  color: #FFF;
  transition: 0.18s background-color ease, color 0.18s ease;
  -webkit-user-selsect: none;
  -moz-user-select: none;
  user-select: none;
  position: relative;
}
.btn:active, .comment-reply-link:active,
input[type="button"]:active,
input[type="submit"]:active,
input[type="reset"]:active,
button:active {
  outline: none;
  top: 2px;
  border-bottom-color: transparent;
}
.btn:hover, .comment-reply-link:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
button:hover {
  background-color: #c75b5b;
  color: #FFF;
  text-decoration: none;
}
.btn:focus, .comment-reply-link:focus,
input[type="button"]:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
button:focus {
  color: #FFF;
  outline: none;
}
.btn.btn-sm, .btn-sm.comment-reply-link,
input[type="button"].btn-sm,
input[type="submit"].btn-sm,
input[type="reset"].btn-sm,
button.btn-sm {
  padding: 12px 22px;
}

/* Flexslider Overrides
=================================== */
.flexslider {
  margin: 0;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
  border: 0;
  background: transparent;
}
.flexslider.loading:before {
  width: 40px;
  height: 40px;
  background-color: #FFF;
  border-radius: 100%;
  -webkit-animation: scaleout 1.0s infinite ease-in-out;
  animation: scaleout 1.0s infinite ease-in-out;
  content: "";
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 1000;
}
.flexslider .slides li:after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1000;
}

@-webkit-keyframes scaleout {
  0% {
    -webkit-transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 0;
  }
}
@keyframes scaleout {
  0% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    opacity: 0;
  }
}
.flex-direction-nav a {
  display: none !important;
  width: 30px;
  height: 30px;
  top: 50%;
  margin: -20px 0 0 0;
  opacity: 0;
  color: #FFF;
  line-height: normal;
}
.flex-direction-nav a:hover {
  color: #FFF;
  opacity: 0;
}
.flex-direction-nav a:before {
  font-family: FontAwesome;
  content: '\f053';
  font-size: 34px;
}
.flex-direction-nav a.flex-next:before {
  content: '\f054';
}
.flex-direction-nav a.flex-next {
  right: 10px;
}
.flex-direction-nav a.flex-prev {
  left: 10px;
}

.flexslider .slides > li:first-child {
  display: block;
  /* Display flexslider's first item no matter if its loading or not */
  -webkit-backface-visibility: visible;
}

.flexslider.loading .slides > li:first-child {
  opacity: 1 !important;
  /* Remove the fade in/out animation when the slider loads */
}

/* -----------------------------------------
	03. Header
----------------------------------------- */
/*.header {
  margin: 70px 0 20px;
}*/

.logo a, .logo a:hover {
  color: #FFF;
  font-weight: bold;
  margin: 0;
  font-size: 36px;
}

/* -----------------------------------------
	02. Main Navigation
----------------------------------------- */
#nav {
  text-align: right;
  margin: 13px 0 0;
}

#nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#navigation {
  text-align: right;
  display: inline-block;
}
#navigation:before, #navigation:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}
#navigation:after {
  clear: both;
}
#navigation li {
  position: relative;
  z-index: 100;
}
#navigation > li {
  float: left;
}
#navigation ul {
  position: absolute;
  z-index: 300;
  top: -999em;
}
#navigation li:hover > ul,
#navigation .sfHover > ul {
  top: auto;
}
#navigation li li:hover > ul,
#navigation li .sfHover > ul {
  top: 0;
  left: 100%;
}
#navigation li li li:hover > ul,
#navigation li li .sfHover > ul {
  top: 0;
  left: 100%;
}
#navigation a, #navigation #navigation a:visited {
  display: block;
  white-space: nowrap;
}
#navigation > li:last-child:hover > ul,
#navigation > li.sfHover:last-child > ul {
  left: auto;
  right: 0;
}
#navigation > li:last-child:hover > ul ul,
#navigation > li.sfHover:last-child > ul ul {
  left: auto;
  right: 100%;
}
#navigation a {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 15px;
  text-transform: uppercase;
  padding: 5px 0;
  color: #FFF;
  /* Global Menu Link Styles */
}
#navigation > li:last-child > a {
  margin-right: 0;
}
#navigation a:hover,
#navigation .sfHover > a {
  text-decoration: none;
  /* First Level & Global Menu Link Hover Styles */
}
#navigation > li > a {
  margin: 0 13px;
  /* First Level Menu Link Styles */
}
#navigation > li ul a {
  background: #232428;
  border-bottom: 1px solid #464646;
  margin: 0;
  padding: 9px 14px;
  font-size: 12px;
  /* All Other Menu Level Link Styles */
}
#navigation > li ul a:hover,
#navigation > li ul .sfHover > a {
  color: #FFF;
  background: #C04848;
  /* All Other Level Menu Link Hover Styles */
}
#navigation > li > a:hover,
#navigation > li.sfHover > a,
#navigation > li.sfHover > a:active,
#navigation > li.current_page_item > a,
#navigation > li.current-menu-item > a,
#navigation > li.current-menu-ancestor > a,
#navigation > li.current-menu-parent > a,
#navigation > li.current > a {
  color: #cd6e6e;
  /* WordPress First Level Current/Ancestor Hover Page Styles */
}
#navigation ul {
  border: 3px solid #464646;
  border-bottom-width: 2px;
  min-width: 200px;
  text-align: left;
  /* All Lower Level Menu Container Styles */
}
#navigation > li > ul {
  margin-left: 13px;
}
#navigation a.sf-with-ul {
  padding-right: 12px;
  position: relative;
  /* Styling for navigation arrows  ---------- */
}
#navigation.sf-arrows .sf-with-ul:after {
  content: '\f078';
  font-family: FontAwesome;
  position: absolute;
  top: 50%;
  right: 1px;
  margin-top: -9px;
  font-size: 8px;
  font-weight: normal;
}
#navigation.sf-arrows ul .sf-with-ul:after {
  right: 8px;
  content: "\f054";
  margin-top: -6px;
  /* Styling for right facing arrows  ---------- */
}

/* -----------------------------------------
	04. Modules
----------------------------------------- */
.main {
  background-color: #FFF;
  padding: 90px 0;
}

.hero {
  height: 160px;
  background-repeat: no-repeat;
  background-position: top center;
  padding: 50px 0 0;
  position: relative;
}
.hero:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #BF4748;
  background-image: -moz-linear-gradient(left, #BF4748 0%, #4D0248 100%);
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0%, #BF4748), color-stop(100%, #4D0248));
  background-image: -webkit-linear-gradient(left, #BF4748 0%, #4D0248 100%);
  background-image: -o-linear-gradient(left, #BF4748 0%, #4D0248 100%);
  background: -ms-linear-gradient(left, #BF4748 0%, #4D0248 100%);
  background: linear-gradient(to right, #BF4748 0%, #4D0248 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$from', endColorstr='$to',GradientType=1 );
  opacity: 0.76;
}

.hero-title {
  color: #FFF;
  font-size: 48px;
  text-align: center;
  font-weight: 300;
  position: relative;
}

.home-widgets {
  background-color: #FFF;
}

/* Homepage Slider */
.home-slider {
  margin: 0;
  overflow: hidden;
}
.home-slider .slides li {
  height: 600px;
  background-position: top center;
  background-repeat: none;
  position: relative;
}
.home-slider .slides li:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #BF4748;
  background-image: -moz-linear-gradient(left, #BF4748 0%, #4D0248 100%);
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0%, #BF4748), color-stop(100%, #4D0248));
  background-image: -webkit-linear-gradient(left, #BF4748 0%, #4D0248 100%);
  background-image: -o-linear-gradient(left, #BF4748 0%, #4D0248 100%);
  background: -ms-linear-gradient(left, #BF4748 0%, #4D0248 100%);
  background: linear-gradient(to right, #BF4748 0%, #4D0248 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$from', endColorstr='$to',GradientType=1 );
  opacity: 0.76;
}
.home-slider .flex-control-nav {
  bottom: 20px;
  z-index: 10;
}
.home-slider .flex-control-nav a {
  background-color: #FFF;
  opacity: 0.6;
  box-shadow: none;
}
.home-slider .flex-control-nav a.flex-active {
  background-color: #FFF;
  opacity: 1;
}
.home-slider .flex-control-nav a:hover {
  opacity: 1;
  background-color: #FFF;
}

/* .slide-content {
  color: #FFF;
  text-align: center;
  padding: 260px 0 0;
  position: relative;
}

.slide-title {
  font-size: 48px;
  font-weight: 300;
}*/

/* Section / Page Titles */
.section-title {
  text-transform: uppercase;
  font-size: 30px;
  font-weight: normal;
  margin: 0 0 25px;
}

/* Event List */
.event-list {
  margin: 0 0 40px;
}
.widget .event-list {
  margin: 0;
}

.event-item {
  display: table;
  width: 100%;
  border: 1px solid #ccc;
  margin: -1px 0 0;
  height: 106px;
  font-family: "Source Sans Pro", sans-serif;
  position: relative;
}
.event-list.dark .event-item {
  border: 1px solid #464646;
}
.event-item:before {
  content: "";
  width: 100%;
  width: calc( 100% - 10px );
  max-width: 0;
  height: 100%;
  height: calc( 100% - 10px );
  position: absolute;
  top: 5px;
  left: 5px;
  opacity: 0.4;
  transition: all 0.38s ease;
  background-color: #fff;
  background-image: -moz-linear-gradient(left, #fff 0%, #e3e3e3 100%);
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0%, #fff), color-stop(100%, #e3e3e3));
  background-image: -webkit-linear-gradient(left, #fff 0%, #e3e3e3 100%);
  background-image: -o-linear-gradient(left, #fff 0%, #e3e3e3 100%);
  background: -ms-linear-gradient(left, #fff 0%, #e3e3e3 100%);
  background: linear-gradient(to right, #fff 0%, #e3e3e3 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$from', endColorstr='$to',GradientType=1 );
}
.event-list.dark .event-item:before {
  background-color: #BF4748;
  background-image: -moz-linear-gradient(left, #BF4748 0%, #4D0248 100%);
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0%, #BF4748), color-stop(100%, #4D0248));
  background-image: -webkit-linear-gradient(left, #BF4748 0%, #4D0248 100%);
  background-image: -o-linear-gradient(left, #BF4748 0%, #4D0248 100%);
  background: -ms-linear-gradient(left, #BF4748 0%, #4D0248 100%);
  background: linear-gradient(to right, #BF4748 0%, #4D0248 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$from', endColorstr='$to',GradientType=1 );
}
.event-item:hover:before {
  max-width: 100%;
}
.event-item .btn, .event-item .comment-reply-link {
  font-family: "PT Serif", serif;
}

.event-date,
.event-info {
  display: table-cell;
  vertical-align: middle;
  position: relative;
}

.event-date {
  text-align: center;
  width: 110px;
  border-right: 1px solid #ccc;
}
.event-list.dark .event-date {
  border-right: 1px solid #464646;
}

.event-day {
  display: block;
  font-size: 36px;
  font-weight: 300;
  line-height: 1;
}

.event-month {
  opacity: 0.65;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.28em;
}

.event-info {
  padding: 0 30px;
}
.event-info .btn, .event-info .comment-reply-link {
  position: absolute;
  right: 30px;
  top: 23px;
}
.event-info .btn:active, .event-info .comment-reply-link:active {
  top: 25px;
}

.event-title {
  font-size: 36px;
  font-weight: 300;
  margin: 0;
  line-height: 1;
}

.event-subtitle {
  opacity: 0.7;
  text-transform: uppercase;
  font-size: 14px;
  margin: 0;
}

.sidebar .event-date {
  width: 64px;
}
.sidebar .event-info {
  padding: 0 15px;
}
.sidebar .event-day {
  font-size: 20px;
}
.sidebar .event-month {
  font-size: 13px;
}
.sidebar .event-title {
  font-size: 17px;
  margin: 0 0 3px;
}
.sidebar .event-subtitle {
  font-size: 12px;
  line-height: 1.2;
}
.sidebar .event-info .btn, .sidebar .event-info .comment-reply-link {
  font-size: 11px;
  padding: 5px 10px;
  position: relative;
  margin-top: 7px;
  min-width: 0;
  top: auto;
  right: auto;
}
.sidebar .event-info .btn:active, .sidebar .event-info .comment-reply-link:active {
  top: 2px;
}

/* Entry Styles */
.entry {
  margin: 0 0 50px;
}
.entry:only-of-type {
  margin: 0;
}
.entry.menu-item {
  margin: 0 0 5px;
}

.entry-title, .menu-item-title h3, .menu-item-title .widget-title {
  font-size: 24px;
  margin: 0 0 25px;
}
.entry-title a, .menu-item-title h3 a, .menu-item-title .widget-title a {
  color: #232428;
}
.entry-title a:hover, .menu-item-title h3 a:hover, .menu-item-title .widget-title a:hover {
  color: #C04848;
}

.entry-meta {
  text-transform: uppercase;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 13px;
  margin: -20px 0 15px;
}
.entry-meta i {
  color: #C04848;
  margin-right: 4px;
}
.entry-meta time {
  margin-right: 15px;
}

.entry-thumb {
  margin: 0 0 30px;
}

.entry-content {
  margin: 0 0 30px;
}
.entry-content:before, .entry-content:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}
.entry-content:after {
  clear: both;
}

.entry-fields th {
  width: 23%;
}

.table-price span {
  font-size: 0.8em;
  font-style: italic;
}
.table-price b {
  margin-left: 10px;
}
.table-price b:first-of-type {
  margin-left: 0;
}

.feature-video {
  margin: 0 0 50px;
}

/* Pagination */
#paging a, #paging > span {
  border-radius: 2px;
  background-color: #C04848;
  color: #FFF;
  display: inline-block;
  position: relative;
  border-bottom: 2px solid #8b3030;
  padding: 4px 12px;
}
#paging a:hover {
  background-color: #c75b5b;
}
#paging a:active {
  outline: none;
  top: 1px;
  border-bottom-color: transparent;
}
#paging .current {
  background-color: #232428;
  border-bottom-color: #000;
}

/* Menu Pages */
.menu-category {
  margin: 0 0 20px;
}
.menu-category:last-of-type {
  margin: 0;
}

.menu-category-desc {
  margin: -10px 0 25px;
}

.menu-item-title {
  margin: 0 0 10px;
}
.menu-item-title:before, .menu-item-title:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}
.menu-item-title:after {
  clear: both;
}
.menu-item-title h3, .menu-item-title .widget-title {
  float: left;
  margin: 0;
}

.menu-item-price {
  float: right;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: bold;
  letter-spacing: -0.05em;
  font-size: 20px;
  margin: 0;
  position: relative;
  padding-left: 10px;
}
.menu-item-price span {
  font-size: 12px;
  font-weight: 300;
  position: absolute;
  top: -10px;
  width: calc(100% - 10px);
  text-align: center;
}

.menu-list {
  margin: 0 0 60px;
}
.menu-list .menu-item {
  margin: 0 0 15px;
}
.menu-list .menu-item-title {
  border-bottom: 1px dotted #cccccc;
  margin: -7px 0 3px;
}
.menu-list .menu-item-title h3, .menu-list .menu-item-title .widget-title {
  margin-bottom: -5px;
  position: relative;
  top: 11px;
  background: #FFF;
  padding-right: 10px;
  color: #4c4c4c;
}
.menu-list .menu-item-title h3 a, .menu-list .menu-item-title .widget-title a {
  color: #4c4c4c;
}
.menu-list .menu-item-title h3 a:hover, .menu-list .menu-item-title .widget-title a:hover {
  color: #C04848;
}
.menu-list .menu-item-price {
  position: relative;
  top: 10px;
  background: #FFF;
}

.menu-item-small-desc {
  font-style: italic;
  color: rgba(35, 36, 40, 0.7);
}
.menu-item-small-desc p {
  margin: 0 0 -12px;
}

/* Ci Carousel */
.ci-carousel-nav {
  margin: 0 0 50px;
}
.ci-carousel-nav .slides li a {
  display: block;
  background: #000;
}
.ci-carousel-nav .slides li a img {
  opacity: 0.6;
  transition: opacity 0.18s ease;
}
.ci-carousel-nav .slides li.flex-active-slide a img {
  opacity: 1;
}

/* Reservations form */
form.reservations input, form.reservations select, form.reservations textarea {
  margin: 0 0 20px;
}

.ci-select {
  position: relative;
}
.ci-select select {
  background: #fff;
  border: 1px solid #E5E5E5;
  color: #232428;
  width: 100%;
  border-radius: 0;
  height: 46px;
  padding: 10px 15px;
  box-shadow: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  cursor: pointer;
  transition: all 0.18s ease;
}
.ci-select select:hover {
  border-color: #C04848;
}
.ci-select:after {
  font-family: FontAwesome;
  content: "\f0d7";
  position: absolute;
  right: 1px;
  top: 1px;
  line-height: 44px;
  width: 25px;
  background: #FFF;
  pointer-events: none;
  height: 44px;
}

/* Items / Handpicked Items */
.item {
  margin: 0 0 30px;
  overflow: hidden;
}
.item:hover .item-title {
  opacity: 1;
}
.item .item-title {
  color: #FFF;
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 24px;
  font-weight: 300;
  margin: -20px 0 0;
  opacity: 0;
  line-height: 1.2;
  transition: all 0.58s ease;
  padding: 0 20px;
}
.item .item-title:hover {
  color: #FFF;
}
@media (min-width: 992px) {
  .col-md-4 .item .item-title {
    font-size: 18px;
    margin-top: -12px;
  }
}
.item.half {
  height: 155px;
}
.item.half > a {
  height: 155px;
}
.item.half .item-title {
  font-size: 18px;
  margin: -15px 0 0;
}
@media (max-width: 1199px) {
  .item.half {
    height: 124px;
  }
  .item.half > a {
    height: 124px;
  }
}
@media (max-width: 991px) {
  .item.half {
    height: auto;
  }
  .item.half > a {
    height: auto;
  }
  .item.half .item-title {
    font-size: 24px;
    margin: -20px 0 0;
  }
}

/* -----------------------------------------
	05. Footer
----------------------------------------- */
.copy {
  margin-top: 40px;
  margin-bottom: 10px;
  color: #696a70;
  text-transform: uppercase;
  font-size: 12px;
  font-family: "Source Sans Pro", sans-serif;
}

.text-right {
  text-align: right;
}

/* -----------------------------------------
   06. Comments
----------------------------------------- */
#comments {
  margin: 40px 0 0;
}

#comment-list {
  margin: 0;
  list-style: none;
  padding: 0;
}
#comment-list ol {
  list-style: none;
}
@media (max-width: 767px) {
  #comment-list ol {
    margin: 0;
    padding: 0;
  }
}
#comment-list .comment-body {
  margin-bottom: 20px;
  padding-top: 20px;
}
#comment-list > .comment:first-child > .comment-body {
  border-top: none;
  padding-top: 0;
}

.post-comments {
  margin: 0 0 45px;
}

.comment-author .avatar {
  width: 64px;
  height: 64px;
  float: left;
  margin: 0 15px 15px 0;
  overflow: visible;
}
@media (max-width: 767px) {
  .comment-author .avatar {
    display: none;
  }
}

.comment-content {
  overflow: hidden;
  zoom: 1;
  font-size: 13px;
}

.comment-metadata {
  font-size: 12px;
  margin: 0 0 5px;
}

.comment-reply-link {
  font-size: 10px;
  text-transform: uppercase;
  padding: 4px 10px;
  margin-left: 80px;
  height: auto;
  min-width: 0;
}
@media (max-width: 767px) {
  .comment-reply-link {
    margin: 0;
  }
}

.bypostauthor > article .fn:before {
  font-family: FontAwesome;
  content: "\f005";
  margin: 0 2px 0 -2px;
  position: relative;
  top: -1px;
  font-size: 11px;
}

#cancel-comment-reply-link {
  font-size: 13px;
  font-weight: normal;
  margin-left: 5px;
}

.form-allowed-tags,
.comment-notes {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(35, 36, 40, 0.8);
}

/* -----------------------------------------
	07. Widgets Styling
----------------------------------------- */
/* Homepage Sections/Widgets
========================================= */
section.widget {
  margin: 0;
}

section .widget-wrap {
  padding: 40px 0;
}
section .widget-wrap.nopad {
  padding-bottom: 0;
}

.widget {
  margin: 0 0 35px;
}

.sidebar .widget:last-child,
.widget p:last-child {
  /* Nullify bottom margin for last elements in widgets and sidebars */
  margin-bottom: 0;
}

/* WIDGET: #Contact Info Widget
========================================= */
.widget_contact-info {
  background-color: #FFF;
  text-transform: uppercase;
  font-size: 13px;
  text-align: center;
  padding: 34px 0;
  margin: 0;
}
.footer .widget_contact-info {
  border-top: 1px solid #E5E5E5;
}
.widget_contact-info i {
  color: #C04848;
  font-size: 17px;
  margin: 0 3px 0 0;
  position: relative;
  top: 1px;
}
.widget_contact-info span {
  margin: 0 12px;
}

/* WIDGET: #Upcoming Events Widget
========================================= */
section.widget_ci-events {
  background-color: #18181A;
  color: #FFF;
}

/* WIDGET: #Split Content Widget
========================================= */
.widget_ci-split-content {
  font-size: 16px;
  line-height: 1.625;
}

/* WIDGET: #Testimonial Slider
========================================= */
section.widget_ci-testimonial {
  color: #FFF;
}
section.widget_ci-testimonial .section-title {
  text-align: center;
}
section.widget_ci-testimonial .widget-wrap {
  position: relative;
}
section.widget_ci-testimonial .widget-wrap:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #0078a8;
  background-image: -moz-linear-gradient(left, #000000 0%, #0078a8 100%);
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0%, #000000), color-stop(100%, #0078a8));
  background-image: -webkit-linear-gradient(left, #000000 0%, #0078a8 100%);
  background-image: -o-linear-gradient(left, #000000 0%, #0078a8 100%);
  background: -ms-linear-gradient(left, #000000 0%, #0078a8 100%);
  background: linear-gradient(to right, #000000 0%, #0078a8 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$from', endColorstr='$to',GradientType=1 );
  opacity: 0.76;
}

section.Cbg {

  background-color: #0078a8;
  background-image: -moz-linear-gradient(left, #FFF 0%, #FFF 100%) !important;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0%, #FFF), color-stop(100%, #FFF)) !important;
  background-image: -webkit-linear-gradient(left, #FFF 0%, #FFF 100%) !important;
  background-image: -o-linear-gradient(left, #FFF 0%, #FFF 100%) !important;
  background: -ms-linear-gradient(left, #FFF 0%, #FFF 100%) !important;
  background: linear-gradient(to right, #FFF 0%, #FFF 100%) !important;
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$from', endColorstr='$to',GradientType=1 );
  opacity: 1;


  color: #000000 !important;
  background: transparent;
}

.testimonials {
  background: none;
  margin-bottom: 0;
}
.sidebar .testimonials {
  margin: 0;
}

.testimonials .slides img {
  display: inline-block;
  width: auto;
  border-radius: 100%;
  margin: 0;
  max-width: 168px;
  height: auto;
}

.testimonials .flex-direction-nav li,
.testimonials .slides li {
  border: none;
  margin: 0;
  padding: 0;
}

.testimonials .flex-direction-nav a {
  width: 30px;
  height: 30px;
  margin: -20px 0 0;
  top: 50%;
  text-shadow: none;
  color: inherit;
  opacity: 0.7;
}

.testimonials .flex-direction-nav a:hover {
  color: inherit;
  opacity: 1;
}

.testimonials .flex-direction-nav .flex-prev, .testimonials .flexslider:hover .flex-prev {
  left: 0;
}

.testimonials .flex-direction-nav .flex-next, .testimonials .flexslider:hover .flex-next {
  right: 0;
}

.testimonials .flex-direction-nav a:before {
  font-size: 30px;
}

.testimonials .flex-control-nav {
  bottom: -90px;
}
.testimonials .flex-control-nav a {
  background-color: #122938;
  opacity: 0.6;
}
.testimonials .flex-control-nav a.flex-active {
  background-color: #FFF;
  opacity: 1;
}
.testimonials .flex-control-nav a:hover {
  opacity: 1;
  background-color: #FFF;
}

.testimonial blockquote {
  display: block;
  text-align: center;
  padding: 0;
  margin: 50px 0 0;
  border-left: none;
  font-style: italic;
  font-weight: 300;
  /* font-family: "Source Sans Pro", sans-serif; */
  line-height: normal;
  position: relative;
}
.testimonial blockquote p {
  margin-bottom: 20px;
}
section.widget .testimonial blockquote p {
  font-size: 28px;
}
.testimonial blockquote:before {
  content: "“";
  font-size: 100px;
  font-style: normal;
  font-weight: bold;
  position: absolute;
  left: 50%;
  margin-left: -22px;
  line-height: 1;
  top: -60px;
}

.testimonial cite {
  font-size: 16px;
  font-style: normal;
  font-weight: normal;
  color: inherit;
  font-family: "PT Serif", serif;
}

.testimonial cite span {
  display: block;
  padding: 20px 0 40px;
}

.sidebar .testimonials {
  margin: 0;
}
.sidebar .testimonials > div[class^='col'] {
  padding: 0;
}
.sidebar .testimonials {
  padding: 0;
  margin: 0;
}
.sidebar .testimonials ul li {
  border: none;
  margin: 0;
  padding: 0;
}
.sidebar .testimonials blockquote {
  font-size: 20px;
  padding: 0;
}
.sidebar .testimonials blockquote cite img {
  border-radius: 50%;
}
.sidebar .testimonials .flex-control-nav,
.sidebar .testimonials .flex-direction-nav {
  display: none;
}

/* WIDGET: #Book Event
========================================= */
.widget_book-event {
  text-align: center;
  color: #FFF;
}
.widget_book-event .widget-wrap {
  padding: 25px;
  position: relative;
}
.widget_book-event .widget-wrap:before {
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background-color: #BF4748;
  background-image: -moz-linear-gradient(left, #BF4748 0%, #4D0248 100%);
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0%, #BF4748), color-stop(100%, #4D0248));
  background-image: -webkit-linear-gradient(left, #BF4748 0%, #4D0248 100%);
  background-image: -o-linear-gradient(left, #BF4748 0%, #4D0248 100%);
  background: -ms-linear-gradient(left, #BF4748 0%, #4D0248 100%);
  background: linear-gradient(to right, #BF4748 0%, #4D0248 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$from', endColorstr='$to',GradientType=1 );
  opacity: 0.74;
}
.widget_book-event p {
  position: relative;
  font-size: 24px;
  font-family: "Source Sans Pro", sans-serif;
  margin: 0 0 8px;
  line-height: 1.1;
}
.widget_book-event span {
  display: inline-block;
  position: relative;
  width: 100%;
  line-height: 1.4;
  margin: 0 0 30px;
}

/* WIDGET: #List Widgets
========================================= */
.widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.widget ul li {
  padding: 5px 0;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.1);
  display: block;
  margin: 0;
}

.widget ul ul.children li:first-child {
  border-top: 1px dotted rgba(0, 0, 0, 0.1);
  margin-top: 6px;
}

.widget ul li:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.widget ul.children li {
  padding-left: 15px;
}

.widget .current-cat > a,
.widget .current-cat-parent > a {
  font-weight: bold;
}

/* WIDGET: #Ads125
========================================= */
#ads125,
.ads125 {
  margin: 0;
  padding: 0;
  list-style: none;
}
#ads125 li,
.ads125 li {
  background: none;
  border: none;
  float: left;
  margin: 0 15px 10px 0;
  padding: 0;
  max-width: 125px;
  height: auto;
}

/* WIDGET: #Search
========================================= */
.searchform > div {
  position: relative;
}
.searchform .searchsubmit {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  padding-top: 14px;
  min-width: 0;
}
.searchform .searchsubmit:active {
  top: 1px;
}

/* WIDGET: #Flickr
========================================= */
.flickr_badge_image {
  float: left;
  margin: 0 15px 15px 0;
}
.flickr_badge_image a {
  display: block;
  line-height: 0;
}

/* WIDGET: #About
========================================= */
.widget_about {
  margin-top: -5px;
}
.widget_about img {
  max-width: 100px;
  height: auto;
}
.widget_about .alignleft {
  float: left;
  margin: 5px 15px 6px 0;
}
.widget_about .alignright {
  float: right;
  margin: 5px 0 6px 15px;
}

/* WIDGET: #Text Widget
========================================= */
.widget_text p:last-child {
  margin-bottom: 0;
}

/* WIDGET: #Twitter
========================================= */
.widget_ci_twitter_widget ul li {
  margin-bottom: 12px;
}
.widget_ci_twitter_widget ul li:first-child {
  padding-top: 0;
}
.widget_ci_twitter_widget .twitter-time {
  display: block;
  font-size: 0.85em;
}

/* WIDGET: #Calendar
================================================== */
#wp-calendar {
  width: 100%;
}
#wp-calendar a {
  font-weight: bold;
  font-style: italic;
}
#wp-calendar caption {
  text-align: left;
  margin-top: 10px;
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0.03);
  padding: 9px;
}
#wp-calendar thead {
  font-size: 10px;
}
#wp-calendar thead th {
  background: rgba(0, 0, 0, 0.1);
  font-weight: bold;
  padding: 8px;
}
#wp-calendar tbody td {
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 3px;
}
#wp-calendar tbody td:hover {
  background: rgba(0, 0, 0, 0.1);
}
#wp-calendar tbody .pad {
  background: none;
}
#wp-calendar tfoot #next {
  font-size: 10px;
  text-transform: uppercase;
  text-align: right;
}
#wp-calendar tfoot #prev {
  font-size: 10px;
  text-transform: uppercase;
  padding-top: 10px;
}

/* WIDGET: #Social Icons (HTML only)
========================================= */
.social-icon i {
  width: 36px;
  height: 36px;
  line-height: 36px;
  background-color: #333;
  color: #FFF;
  border: 1px solid #333;
  font-size: 24px;
  border-radius: 36px;
  text-align: center;
  display: inline-block;
}

.social-icon:hover i {
  background-color: #575757;
}

/* -----------------------------------------
	08. WordPress Defaults
----------------------------------------- */
/* WordPress Galleries
=================================== */
.gallery {
  margin-left: -5px;
  margin-right: -5px;
  margin-bottom: 15px;
}
.gallery:before, .gallery:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}
.gallery:after {
  clear: both;
}

.gallery-item {
  margin-bottom: 10px;
}
.gallery-item img {
  width: 100%;
}

.gallery-columns-1 .gallery-item {
  position: relative;
  min-height: 1px;
  padding-left: 5px;
  padding-right: 5px;
  position: relative;
  float: left;
  min-height: 1px;
  padding-left: 5px;
  padding-right: 5px;
  width: 50%;
}
@media (min-width: 768px) {
  .gallery-columns-1 .gallery-item {
    float: left;
    width: 100%;
  }
}

.gallery-columns-2 .gallery-item {
  position: relative;
  min-height: 1px;
  padding-left: 5px;
  padding-right: 5px;
  position: relative;
  float: left;
  min-height: 1px;
  padding-left: 5px;
  padding-right: 5px;
  width: 50%;
}
@media (min-width: 768px) {
  .gallery-columns-2 .gallery-item {
    float: left;
    width: 50%;
  }
}

.gallery-columns-3 .gallery-item {
  position: relative;
  min-height: 1px;
  padding-left: 5px;
  padding-right: 5px;
  position: relative;
  float: left;
  min-height: 1px;
  padding-left: 5px;
  padding-right: 5px;
  width: 50%;
}
@media (min-width: 768px) {
  .gallery-columns-3 .gallery-item {
    float: left;
    width: 33.33333%;
  }
}

.gallery-columns-4 .gallery-item {
  position: relative;
  min-height: 1px;
  padding-left: 5px;
  padding-right: 5px;
  position: relative;
  float: left;
  min-height: 1px;
  padding-left: 5px;
  padding-right: 5px;
  width: 50%;
}
@media (min-width: 768px) {
  .gallery-columns-4 .gallery-item {
    float: left;
    width: 25%;
  }
}

.gallery-columns-5 .gallery-item {
  position: relative;
  min-height: 1px;
  padding-left: 5px;
  padding-right: 5px;
  position: relative;
  float: left;
  min-height: 1px;
  padding-left: 5px;
  padding-right: 5px;
  width: 50%;
}
@media (min-width: 768px) {
  .gallery-columns-5 .gallery-item {
    float: left;
    width: 20%;
  }
}

.gallery-columns-6 .gallery-item {
  position: relative;
  min-height: 1px;
  padding-left: 5px;
  padding-right: 5px;
  position: relative;
  float: left;
  min-height: 1px;
  padding-left: 5px;
  padding-right: 5px;
  width: 50%;
}
@media (min-width: 768px) {
  .gallery-columns-6 .gallery-item {
    float: left;
    width: 16.66667%;
  }
}

.gallery-columns-7 .gallery-item {
  position: relative;
  min-height: 1px;
  padding-left: 5px;
  padding-right: 5px;
  position: relative;
  float: left;
  min-height: 1px;
  padding-left: 5px;
  padding-right: 5px;
  width: 50%;
}
@media (min-width: 768px) {
  .gallery-columns-7 .gallery-item {
    float: left;
    width: 14.28571%;
  }
}

.gallery-columns-8 .gallery-item {
  position: relative;
  min-height: 1px;
  padding-left: 5px;
  padding-right: 5px;
  position: relative;
  float: left;
  min-height: 1px;
  padding-left: 5px;
  padding-right: 5px;
  width: 50%;
}
@media (min-width: 768px) {
  .gallery-columns-8 .gallery-item {
    float: left;
    width: 12.5%;
  }
}

.gallery-columns-9 .gallery-item {
  position: relative;
  min-height: 1px;
  padding-left: 5px;
  padding-right: 5px;
  position: relative;
  float: left;
  min-height: 1px;
  padding-left: 5px;
  padding-right: 5px;
  width: 50%;
}
@media (min-width: 768px) {
  .gallery-columns-9 .gallery-item {
    float: left;
    width: 11.11111%;
  }
}

.gallery-caption {
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 12px;
  line-height: 1.5;
  margin: 0 0 0 5px;
  max-height: 50%;
  opacity: 0;
  padding: 6px 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: left;
  width: calc(100% - 10px);
  transition: opacity 0.18s ease;
}

.gallery-caption:before {
  content: "";
  height: 100%;
  min-height: 49px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
}

.gallery-columns-6 .gallery-caption,
.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
  display: none;
}

/* WordPress Classes
=================================== */
/* Alignment */
.alignnone {
  margin: 5px 0 20px 0;
}
p .alignnone {
  margin-bottom: 0;
}

.aligncenter {
  display: block;
  margin: 7px auto 7px auto;
}

.alignright {
  float: right;
  margin: 7px 0 7px 24px;
}

.alignleft {
  float: left;
  margin: 7px 24px 7px 0;
}

/* Captions */
.wp-caption {
  max-width: 100%;
  margin-bottom: 15px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 12px;
  line-height: 17px;
  margin: 3px 0 5px;
  padding: 5px 0 0 0;
  text-align: left;
  font-style: italic;
}

/* -----------------------------------------
  09.  MOBILE MENU
----------------------------------------- */
#mobilemenu {
  display: none;
}
@media (max-width: 767px) {
  #mobilemenu {
    display: block;
  }
}

#mobile-bar {
  display: none;
  text-align: center;
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: #FFF;
  padding: 15px 10px 0 10px;
  height: 48px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
@media (max-width: 767px) {
  #mobile-bar {
    display: block;
  }
}

.menu-trigger,
.menu-trigger:focus {
  width: 24px;
  height: 21px;
  background: none;
  cursor: pointer;
  opacity: 0.85;
  margin: 0;
  outline: none;
  position: absolute;
  left: 10px;
  top: 9px;
  color: #333;
  font-size: 30px;
  line-height: 1;
}

.menu-trigger:hover {
  opacity: 0.95;
  color: #333;
}

.menu-trigger:active {
  opacity: 1;
}

.mob-title {
  color: #222;
  font-family: sans-serif;
  font-weight: bold;
  font-size: 14px;
  line-height: 1;
  margin: 0;
  padding: 0;
}

/* -----------------------------------------
	10. External Plugins
----------------------------------------- */
/* Jetpack Sharing */
.sharedaddy {
  margin-top: 30px;
}

/* WP Instagram */
.null-instagram-feed p {
  padding-top: 10px;
}

.widget .instagram-pics:before, .widget .instagram-pics:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}
.widget .instagram-pics:after {
  clear: both;
}

.widget .instagram-pics li {
  border-bottom: 0;
  padding: 0;
  float: left;
  width: 33.33333333333%;
}
.widget .instagram-pics li a {
  display: block;
}

/* -----------------------------------------
	11. Global Mediaqueries
----------------------------------------- */
@media (max-width: 991px) {
  .main {
    padding: 50px 15px;
  }

  .sidebar {
    margin-top: 55px;
  }

  section.widget .widget-wrap {
    padding: 70px 15px;
  }

  .home-slider .slides li {
    height: 400px;
  }
  .home-slider .slide-content {
    padding-top: 145px;
  }

  section.widget .testimonial blockquote p {
    font-size: 28px;
  }

  .testimonials .flex-control-nav {
    bottom: -60px;
  }

  .event-item .event-date {
    width: 64px;
  }
  .event-item .event-info {
    padding: 0 15px;
  }
  .event-item .event-day {
    font-size: 20px;
  }
  .event-item .event-month {
    font-size: 13px;
  }
  .event-item .event-title {
    font-size: 17px;
    margin: 0 0 3px;
  }
  .event-item .event-subtitle {
    font-size: 12px;
    line-height: 1.2;
  }
  .event-item .event-info .btn, .event-item .event-info .comment-reply-link {
    font-size: 11px;
    padding: 5px 10px;
    position: static;
    margin-top: 7px;
    min-width: 0;
  }

  .entry-content {
    margin: 0;
  }

  .ci-carousel-nav .slides li {
    max-width: 100px;
  }
  .ci-carousel-nav .slides li img {
    max-width: 100px;
    height: auto;
  }
}
@media (max-width: 767px) {
  #page {
    padding-top: 0px;
    /* For mobile bar */
  }

  #nav {
    display: none;
  }

  .header {
    margin-top: 0px;
  }

  .home-slider .slides li {
    height: 300px;
  }
  .home-slider .slide-content {
    padding: 55px 15px 0;
  }
  .home-slider .slide-content .btn, .home-slider .slide-content .comment-reply-link {
    padding: 16px 15px;
  }
  .home-slider .slide-title {
    font-size: 34px;
    line-height: 1;
    margin: 0 0 25px;
  }

  .widget_contact-info {
    padding: 10px 10px;
  }
  .widget_contact-info i {
    font-size: 12px;
    top: 0;
  }
  .widget_contact-info span {
    display: block;
    margin: 5px 0;
    font-size: 11px;
  }

  .widget_ci-split-content .col-sm-3 img {
    margin-bottom: 25px;
  }

  .hero {
    height: 100px;
    padding: 30px 0 0;
  }

  .hero-title {
    font-size: 32px;
  }

  .section-title {
    font-size: 24px;
    margin: 0 0 20px;
  }

  section.widget .testimonial blockquote p {
    font-size: 20px;
  }

  .menu-item-title h3, .menu-item-title .widget-title {
    background: transparent;
    float: none;
    top: auto;
    line-height: 1.1;
  }

  .menu-item-price {
    float: left;
    background: transparent;
    top: auto;
    padding: 0;
    margin: 15px 10px 8px 0;
  }
  .menu-item-price span {
    width: 100%;
  }

  .menu-list .menu-item {
    margin-bottom: 25px;
    border-bottom: 1px solid #E5E5E5;
    padding-bottom: 32px;
  }
  .menu-list .menu-item-title {
    border: none;
  }

  .footer {
    text-align: center;
  }
  .footer .text-right {
    text-align: center;
  }
  .testimonials {
    margin-left: 0% !important;
  }

}

/*# sourceMappingURL=style.css.map */
