/*!
// Contents
// ------------------------------------------------

 1. Mixins
 2. Helper classes & resets
 3. Loader
 4. Colours
 5. Typography
 6. Spacing
 7. Buttons
 8. Navigation
 9. Slider, Dividers
 10. Speakers & Topics
 11. Schedule
 12. Galleries
 13. Pricing & FAQ
 14. Subscribe
 15. Contact
 16. Forms
 17. Footers

// --------------------------------------------------*/
/*!
// 1. Useful Mixins
// --------------------------------------------------*/
.vertical-align {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.vertical-align-cancel {
  top: 0px;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}
.preserve-3d {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.transition-100 {
  transition: all 0.1s ease-out;
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
}
.transition-300 {
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
}
.transition-700 {
  transition: all 0.7s ease-out;
  -webkit-transition: all 0.7s ease-out;
  -moz-transition: all 0.7s ease-out;
}
.overlay:before {
  background-color: #333333;
  opacity: 0.5;
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0px;
}
.overlay .container {
  position: relative;
  z-index: 2;
}
/*!
// 2. Helper Classes & Resets
// --------------------------------------------------*/
.go-right {
  right: 0px;
}
.go-left {
  left: 0px;
}
img {
  max-width: 100%;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
}
.main-container {
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
}
/*!
// 3. Loader
// --------------------------------------------------*/

/*!
// 4. Colours
// --------------------------------------------------*/
.background-dark {
  background-color: #333333 !important;
}
.color-heading {
  color: #333333;
}
/*!
// 5. Typography
// --------------------------------------------------*/
.text-white {
  color: #fff;
}
.text-dark {
  color: #406679;
}
.text-center {
	text-align: center;
}
body {
  font-family: 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  background: #111;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  margin: 0px;
  color: #fff;
}
h1 {
  font-size: 30px;
  line-height: 36px;
  margin: 20px 0;
}
h2 {
    font-size: 24px;
    margin-bottom: 20px;
}
h3 {
  font-size: 22px;
  line-height: 28px;
  background: #000;
  padding-top: 5px;
  padding-bottom: 5px;
  text-align: center;
}
h4 {
  line-height: 30px;
}
.large-h1 {
  font-size: 42px;
  line-height: 48px;
  font-weight: 300;
}
a {
	color: #ed1c24;
	}
a:hover {
	color: #AD2D15;
	}
p {
  font-size: 16px;
  line-height: 24px;
}
p:last-child {
  margin-bottom: 0px;
}
p.lead {
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
}
span.lead {
  font-weight: 400;
}
.uppercase {
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-right: -1px;
}
strong {
  font-weight: 600;
}
ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
@media all and (max-width: 767px) {
  h1 {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 36px;
  }
  h2 {
    font-size: 20px;
    line-height: 26px;
  }
  .large-h1 {
    font-size: 24px;
    line-height: 28px;
  }
  p {
    font-size: 13px;
    line-height: 22px;
  }
  p.lead {
    font-size: 15px;
    line-height: 26px;
  }
}
/*!
// Spacing Standards
// --------------------------------------------------*/
section {
  padding: 40px 0px;
}
.duplicatable-content {
  padding-bottom: 36px;
}
/*!
// 6. Buttons
// --------------------------------------------------*/
a:hover {
  text-decoration: none;
}
h1 a,
span a,
p a,
.text-link a {
  font-weight: 600;
  color: #fff;
  display: inline-block;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
}

.btn {
  min-width: 180px;
  border-radius: 25px;
  background: #ed1c24;
  text-align: center;
  padding: 12px 15px 12px 15px;
  margin-top: -25px;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}
.btn:hover {
  color: #fff;
  background: #81261b;
}
.btn-hollow {
  background: none;
  border: 2px solid #0072bc;
  color: #0072bc;
}
.btn-hollow:hover {
  background: #0072bc;
}
.btn-white {
  background: #fff;
  color: #0072bc;
}
.btn-white:hover {
  background: #fff;
  color: #005389;
}
.btn-hollow.btn-white {
  background: none;
  border-color: #fff;
  color: #fff;
}
.btn-hollow.btn-white:hover {
  background: #fff;
  color: #0072bc;
}
.btn-lg {
  padding: 20px 20px 20px 20px;
  text-transform: uppercase;
  min-width: 230px;
  border-radius: 35px;
}
/*!
// Backgrounds & Parallax
// --------------------------------------------------*/
.background-image-holder {
  position: absolute;
  width: 100%;
  height: 130%;
  top: -10%;
  background-size: cover !important;
  background-position: 50% 50% !important;
}
.image-holder {
  position: relative;
  overflow: hidden;
}
/*!
// 7. Navigation
// --------------------------------------------------*/
nav .logo {
  max-height: 30px;
  max-width: 430px;
  position: absolute;
  top: -6px;
  opacity: 1;
}
nav .text-right {
  position: relative;
}
nav .container {
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
}
.overlay-nav {
  position: fixed;
  top: 0px;
  z-index: 1000000;
  width: 100%;
  padding-top: 25px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  border-bottom: 1px solid #f5f5f5;
}

.overlay-nav .top-logo {
	height: 50px;
	float: left;
	margin: -10px 0 10px 0;
}

.overlay-nav .logo-dark {
  opacity: 0;
}
.overlay-nav.sticky-nav .logo-light {
  opacity: 0;
}
.overlay-nav.sticky-nav .logo-dark {
  opacity: 1;
}
.overlay-nav h4 {
  margin: 5px 0 0 0;
  line-height: 1.2;
}
.overlay-nav h4 img {
  float: left;
	margin: 0;
}

.bottom-border {
  position: absolute;
  bottom: 2px;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
}
.menu {
  display: inline-block;
  text-align: left;
  line-height: 1;
  margin-top: 20px;
}
.menu li {
  float: left;
  margin-right: 32px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  position: relative;
  top: 0;
}
.menu li:last-child {
  margin-right: 0px;
}
.menu li:nth-las-child(2) {
  margin-right: 12px;
}
.menu li a {
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(0, 0, 0, 0);
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
}
.menu li a:hover {
  border-bottom: 2px solid #AD2D15;
}
.footer .menu li a {
  color: #fff;
}
.nav-dropdown {
  position: absolute;
  z-index: -1;
  max-height: 0px;
  background: rgba(255, 255, 255, 0.9);
  min-width: 200px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
}
.nav-dropdown li:first-child {
  margin-top: 12px;
}
.nav-dropdown li {
  opacity: 0;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  margin-right: 0px;
  float: none;
  margin-bottom: 18px;
}
.nav-dropdown li a {
  padding-bottom: 0px;
  padding-left: 24px;
  color: #333333;
}
.nav-dropdown li a:hover {
  border-color: rgba(0, 0, 0, 0);
}
.has-dropdown:hover .nav-dropdown {
  z-index: 10;
  max-height: 300px;
}
.has-dropdown:hover .nav-dropdown li {
  opacity: 1;
}
.has-dropdown a {
  padding-left: 18px;
}
.has-dropdown:before {
  display: inline-block;
  font-family: 'Pe-icon-7-stroke';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e688";
  color: #fff;
  font-size: 24px;
  position: absolute;
  top: -6px;
}
.menu .social-link {
  font-size: 16px;
  top: 0px !important;
  margin-right: 18px !important;
}
.menu .social-link:nth-last-child(2) {
  margin-right: 18px;
}
.sticky-nav {
  background: rgba(255, 255, 255, 0.9);
}

.sticky-nav .sidebar-menu-toggle,
.sticky-nav .mobile-menu-toggle {
  color: #333333;
}
.sticky-nav .nav-dropdown {
  background: rgba(255, 255, 255, 0.9);
}
.sticky-nav .has-dropdown:before {
  color: #333333;
}
.mobile-menu-toggle {
  display: none;
}

@media all and (max-width: 499px) {
  nav .logo {
    max-width: 80%;
  }
}
/*!
// 8. Sliders & Dividers & Headers
// --------------------------------------------------*/
.hero-slider {
  padding: 0px;
  position: relative;
  overflow: hidden;
}
.hero-slider .slides li {
  height: 780px;
  position: relative;
  overflow: hidden;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.hero-slider .slides li:before {
/*  background-color: #000;
  opacity: 0.4;*/
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0px;
}
.hero-slider .container {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.hero-slider h1 {
	margin: 50px auto 380px auto;
	width: 1000px;
    text-align: center;
    color: #fff;
    font-size: 54px;
    padding: 20px;
    font-weight: 300;
    line-height: 60px;
    background: rgba(233,84,37,0.7);
}

.hero-slider h4 {
    font-size: 18px;
    text-align: center;
    background: rgba(0,0,0,0.7);
    padding: 8px 10px 10px 10px;
    margin: 0 auto;
	width: 300px;
	color: #fff;
}

i {
	padding-left: 10px;
}

.hero-slider .btn-hollow {
  color: #fff;
  border-color: #fff;
  margin-left: 16px;
}
.hero-slider .btn-hollow:hover {
  background: #fff;
  color: #0072bc;
}
@media all and (max-width: 767px) {
  .hero-slider {
    display: none;
  }
  .hero-slider .btn-hollow {
    display: none;
  }
}

.intro {
}

.testimonials {
  text-align: center;
      background: #eee;
}
.testimonials-slider {
  position: relative;
  margin-bottom: 48px;
}
.testimonials-slider .flex-control-nav a {
  background: rgba(0, 0, 0, 0.3);
}
.testimonials-slider .flex-control-nav a.flex-active {
  background: rgba(0, 0, 0, 0.8);
}
.testimonials-slider .flex-control-nav a:hover {
  background: rgba(0, 0, 0, 0.8);
}
.testimonials-slider .flex-control-nav {
  bottom: -48px;
}
.testimonial {
	font-size: 16px;
	font-style: italic;
	line-height: 24px;
}
.primary-overlay:before {
  background-color: #0072bc;
  opacity: 0.8;
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0px;
  background-color: #0072bc !important;
}

.flex-control-nav {
    bottom: 10px;
}

/*!
// 12. Galleries
// --------------------------------------------------*/
.instagram,
.lightbox-gallery {
  position: relative;
  padding: 216px 0px;
}
.gallery-header .logo {
  max-width: 400px;
  display: block;
  margin: 0px auto;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .gallery-header .logo {
    max-width: 200px;
  }
  .gallery-header h1 {
    font-size: 24px !important;
    line-height: 32px !important;
  }
}
.instagram,
.lightbox-gallery {
  overflow: hidden;
  background: #000 !important;
}
.instagram ul,
.lightbox-gallery ul {
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
}
.instagram li,
.lightbox-gallery li {
  float: left;
  width: 20%;
  height: 50%;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  overflow: hidden;
  background-size: cover !important;
  opacity: 0.5;
}
.instagram li:hover,
.lightbox-gallery li:hover {
  opacity: 1 !important;
}
.instagram .container,
.lightbox-gallery .container {
  position: relative;
  z-index: 3;
}
.instagram i,
.lightbox-gallery i {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 16px;
}
.instagram h1,
.lightbox-gallery h1 {
  font-size: 42px;
  line-height: 48px;
  font-weight: 300;
  margin-bottom: 16px;
}
#lightbox {
	padding-top: 20px;
	}
@media all and (max-width: 1200px) {
  .instagram li:nth-child(n+9),
  .lightbox-gallery li:nth-child(n+9) {
    display: none;
  }
  .instagram li,
  .lightbox-gallery li {
    width: 25%;
  }
}
@media all and (max-width: 900px) {
  .instagram li:nth-child(n+7),
  .lightbox-gallery li:nth-child(n+7) {
    display: none;
  }
  .instagram li,
  .lightbox-gallery li {
    width: 33.333333%;
  }
}
@media all and (max-width: 767px) {
  .instagram,
  .lightbox-gallery {
    padding: 144px 0px;
  }
  .instagram li:nth-child(n+5),
  .lightbox-gallery li:nth-child(n+5) {
    display: none;
  }
  .instagram li,
  .lightbox-gallery li {
    width: 50%;
  }
}
.contained-gallery .instagram,
.contained-gallery .lightbox-gallery {
  padding: 185px 0px;
}
.contained-gallery .instagram li:nth-child(n+9),
.contained-gallery .lightbox-gallery li:nth-child(n+9) {
  display: none;
}
.contained-gallery .instagram li,
.contained-gallery .lightbox-gallery li {
  width: 25%;
  opacity: 0.7;
}
@media all and (max-width: 1024px) {
  .contained-gallery .instagram li:nth-child(n+7) {
    display: none;
  }
  .contained-gallery .lightbox-gallery li:nth-child(n+7) {
    display: none;
  }
  .contained-gallery .instagram li,
  .contained-gallery .lightbox-gallery li {
    width: 33.33333%;
  }
  .contained-gallery .instagram,
  .contained-gallery .lightbox-gallery {
    padding: 200px 0px;
  }
}
@media all and (max-width: 768px) {
  .contained-gallery .instagram,
  .contained-gallery .lightbox-gallery {
    margin-bottom: 32px;
  }
  .contained-gallery .btn {
    margin-bottom: 0px;
  }
  .contained-gallery .instagram li:nth-child(n+5),
  .contained-gallery .lightbox-gallery li:nth-child(n+5) {
    display: block !important;
  }
  .contained-gallery .instagram li:nth-child(n+7),
  .contained-gallery .lightbox-gallery li:nth-child(n+7) {
    display: none !important;
  }
  .contained-gallery .instagram li,
  .contained-gallery .lightbox-gallery li {
    width: 33.33333% !important;
  }
}

/*!
// Frequently Asked Questions
// --------------------------------------------------*/
.faq-item {
  margin-bottom: 36px;
}
p.question {
  font-weight: 600;
  color: #333333;
  font-size: 16px;
}

/*!
// 15. Contact
// --------------------------------------------------*/
.contact-tweets {
  color: #fff;
  position: relative;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  padding-top: 300px;
  padding-bottom: 0;
  z-index: 100;
}
.contact-tweets .row {
    background: rgba(0,0,0,0.8);
    padding: 20px 20px 20px 20px;
	margin: 0 auto 50px auto;
}
.contact-tweets h1 {
}
.contact-tweets .social_twitter {
  font-size: 42px;
  margin-bottom: 32px;
  display: inline-block;
}
.contact-tweets .map-holder {
  position: absolute;
  height: 100%;
  padding: 0px;
  top: 0px;
  right: 0px;
}
.contact-tweets .timePosted {
  display: block !important;
}
.map-holder:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
}
.map-holder iframe {
  border: 0px;
  position: absolute;
  width: 100%;
  height: 100%;
}
.contact-tweets span a {
  border-bottom: 2px solid #fff;
  padding-bottom: 1px;
}
.contact-tweets form {
  padding-top: 0px !important;
}
.contact-tweets form .btn {
  background: #fff;
  color: #0072bc;
}
.contact-tweets form ::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.9);
}
.contact-tweets form :-moz-placeholder {
  color: rgba(255, 255, 255, 0.9);
}
.contact-tweets form ::-moz-placeholder {
  color: rgba(255, 255, 255, 0.9);
}
.contact-tweets form :-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.9);
}
.contact-tweets .icon {
  font-size: 60px;
  margin-bottom: 24px;
}
.contact-tweets .form-message {
  max-width: 95.5%;
  width: 95.5%;
}
.contact-tweets i {
	width: 50px;
    position: relative;
    top: 5px;
}
.contact-tweets a i {
	width: auto;
    position: relative;
	top: 2px;
}
.contact-tweets p a {
	color: #fff !important;
	font-weight: 400;
}
.contact-tweets p a:hover {
	color: #AD2D15 !important;
}
.contact-tweets p.lead {
  font-size: 16px;
}
.fullwidth-map {
  padding: 0px;
  position: relative;
  overflow: hidden;
}
.fullwidth-map .map-holder {
  width: 100%;
  height: 400px;
  overflow: hidden;
}
.fullwidth-map.screen:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
}

/*!
// 17. Footers
// --------------------------------------------------*/

.footer-container {
	background: #000;
    padding: 30px 0 15px 0;
	}
.footer .top-border {
  height: 2px;
  width: 100%;
  background: rgba(255, 255, 255, 0.3);
  margin-bottom: 32px;
}
.footer .menu {
  overflow: visible;
}
.footer .menu li {
  top: 0px;
}
.footer .menu li a {
  padding-bottom: 0px;
}
.footer .menu li .btn {
  min-width: 0px;
  padding: 10px 18px;
  font-size: 16px;
}
.footer .menu li a {
  diplay: inline-block;
  position: relative;
  border: none;
}
.footer .menu li a:hover {
  border: none;
}
.footer .back-to-top {
  padding-right: 42px;
}
.footer .menu li a i {
  font-size: 36px;
  position: absolute;
  right: 0px;
  top: -12px;
}
footer.classic {
  padding: 72px 0px 36px 0px;
  background: #f5f5f5;
}
footer.classic .menu li {
  float: none;
  margin-bottom: 12px;
}
footer.classic .menu li a {
  color: #333333;
  padding-bottom: 0px;
  font-weight: 600;
}
footer.classic span.lead {
  display: inline-block;
  margin-bottom: 12px;
}
footer.short {
  background: #333333;
  color: #fff;
  padding: 72px 0px;
}
footer.short .top-border {
  height: 1px !important;
}
@media all and (max-width: 767px) {
  footer.classic div {
    margin-bottom: 18px;
  }
}
.contact-methods li {
  margin-bottom: 12px;
}
.contact-methods li:last-child {
  margin-bottom: 0px;
}
.contact-methods i {
  font-size: 36px;
  color: #333333;
}
.contact-methods span {
  display: inline-block;
  position: relative;
  bottom: 10px;
  left: 8px;
  font-size: 16px;
}
footer.classic .social-profiles {
  margin-top: 36px;
}
.social-profiles {
  display: inline-block;
  overflow: hidden;
}
.social-profiles li {
  float: left;
  margin-right: 36px;
}
.social-profiles li:last-child {
  margin-right: 0px;
}
.social-profiles li a {
  color: #333333;
  font-size: 20px;
}

.info-box p {
	margin-bottom: 15px
}
/*!
// 18. MISC
// --------------------------------------------------*/

.banner {
padding: 85px 0 20px 0;
background: #ffecaa; /* Old browsers */
background: -moz-linear-gradient(top,  #ffecaa 0%, #f6aa67 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffecaa), color-stop(100%,#f6aa67)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  #ffecaa 0%,#f6aa67 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  #ffecaa 0%,#f6aa67 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  #ffecaa 0%,#f6aa67 100%); /* IE10+ */
background: linear-gradient(to bottom,  #ffecaa 0%,#f6aa67 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffecaa', endColorstr='#f6aa67',GradientType=0 ); /* IE6-9 */
}

.banner p {
	color: #555;
}

a img {
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  opacity: 1.0;
  filter: alpha(opacity=100); /* For IE8 and earlier */
}
	
a:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70); /* For IE8 and earlier */
}

.alignleft {
	float: left;
	margin: 0 20px 10px 0;
}

.alignright {
	float: right;
	margin: 0 0 10px 20px;
}

.clear {
	clear: both;
}

.map-wrap {
	 position: absolute;
	 top: 0;
	 left: 50%;
	 width: 50%;
}
@media all and (max-width: 767px) {
  .contact-tweets {
	  height: auto;
	}
  .contact-tweets .vertical-align{
	  top: 150px;
	}
  .map-wrap {
	 position: relative;
	 top: 0;
	 left: 0;
	 width: 100%;
	}
  .map-wrap iframe {
	  height: 320px;
	}
}

.photo-gallery {
	background: #000;
	padding: 0;
}

.photo-gallery img {
	width: 20%;
	float: left;
    opacity: 0.6;
    filter: alpha(opacity=60); /* For IE8 and earlier */
}

.photo-gallery img:hover {
    opacity: 1.0;
    filter: alpha(opacity=100); /* For IE8 and earlier */
}

.media {
	background: #000;
}

.panel-title>a {
    display: block;
}

.foodmenu {
	padding-top: 0;
	background: #222;
}

.foodmenu h2 {
	padding: 15px 0 20px 0;
	background: #000;
	text-align: center;
	font-size: 28px;
}

.foodmenu-item {
	width: 40px;
	text-align: right;
}

.foodmenu td:first-line {
	color: #AB0024;
}

.foodmenu .btn {
	margin-bottom: 20px;
}

.foodmenu figcaption { text-align: center; font-size: 14px; font-weight: bold; padding-top: 0; margin-top: -10px; }

.menu-img { width: 35%; float: right; margin-left: 15px; }

.drink-img { width: 15%; float: right; margin-left: 15px; }

.ultra_vp_title {
font-size: 16px;
line-height: 1.2;
}

.ultra_vp_thumbnail_image, .ultra_vp_thumbnail_imageSelected {
width: 70px;
height: 50px;
}

.ultra_vp_item {
background: #2a2a2a;
border-top: 1px solid #2a2a2a;
border-bottom: 1px solid #2a2a2a;
}

.ultra_vp_scrollbarBgRight {
background: #2a2a2a;
}

.ultra_vp_itemUnselected {
background: #000;
}

.btn-register {
	margin-top: 90px;
}

@media (max-width: 1199px) {
.container {
	width: 96%;
}
}

@media (max-width: 1079px) {
.hero-slider h1 {
    width: 90%;
    font-size: 50px;
}
}

@media (max-width: 991px) {
.nav-container {
	text-align: center;
}
.nav-container .overlay-nav .top-logo {
    height: 40px;
	float: none;
    margin: -10px auto 10px auto;
}
.nav-container .text-right {
    text-align: center;
}
.nav-container .menu li a {
    padding-bottom: 5px;
    padding-top: 10px;
}
.hero-slider h1 {
    font-size: 46px;
	padding: 10px;
}
.menu {
	margin-top: 0;
}
.menu .btn {
	margin-top: -5px;
}
.contact-tweets {
    padding-top: 200px;
	padding-bottom: 0;
}
.menu-img { width: 40%; }
}

@media (max-width: 919px) {
.hero-slider h1 {
    font-size: 42px;
}
}

@media (max-width: 879px) {
.hero-slider h1 {
    font-size: 38px;
}
.menu-img { width: 45%; }
.drink-img { width: 20%; }
}

@media (max-width: 767px) {
.nav-container .overlay-nav .top-logo {
    height: 30px;
	float: none;
    margin: -15px auto 10px auto;
}
.menu li {
visibility: visible;
}
section {
    padding: 30px 0px;
}
.menu-img { width: 50%; }
}

@media (max-width: 599px) {
.testimonials h1 i, .footer .back-to-top {
display: none;
}
.footer .menu li, .footer .menu li a {
    padding: 0;
	margin: 0 5px;
}
.drink-img { width: 25%; }
}

@media (max-width: 479px) {
.testimonials h4 {
font-size: 14px;
}
}